/*----- Default -----*/
*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html, body {
  padding: 0px;
  margin: 0px;
  background: transparent;
  font-family: Ubuntu, 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  /*text-transform: uppercase;*/
  font-size: 150%;
}

h2 {
  text-transform: uppercase;
  font-size: 32px;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: bold;
  line-height: 120%;
  color: #333;
  /*color:#1eaee8;*/
}

@media screen and (max-width: 1280px) {
  h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 540px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 22px;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

p, div {
  line-height: 140%;
  margin: 0;
}

p {
  font-family: 'Open Sans';
  font-size: 18px;
}

p.subhead {
  font-size: 24px;
  padding: 20px 0 0 0;
}

@media screen and (max-width: 1280px) {
  p.subhead {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  p.subhead {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  p.subhead {
    font-size: 16px;
  }
}

li {
  font-size: 18px;
  line-height: 140%;
}

a {
  text-decoration: none;
  color: #4e3c3e;
  outline: none;
}

a:hover, a:focus {
  color: #dc7628;
}

a.linkstyle {
  color: #ffffff;
}

a.linkstyle:hover, a.linkstyle:focus {
  color: #f48b95;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table, td, th {
  /*border: 1px solid #725100;*/
  text-align: left;
  padding: 8px;
}

th {
  background-color: #896100;
  color: #ffffff;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

td {
  vertical-align: top;
}

.t-scrollbar {
  overflow-x: auto;
}

#error {
  display: block;
  margin: 5px;
  color: #4d4948;
  background-color: #fffebe;
  border: 1px solid #cbcbcb;
  font-size: 90%;
}

#success {
  margin: 5px;
  color: #4d4948;
  background-color: #bce9b5;
  border: 1px solid #7ace6c;
  font-size: 90%;
}

.clr {
  clear: both;
  margin: 0;
  padding: 0;
}

.form-error-style {
  color: red;
}

/*for layout and menu */
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

/* for input */
/* END of input */
input[type=text], input[type=password], select {
  padding: 20px;
  margin: 10px 0;
  border: none;
  width: 100%;
  font-size: 18px;
}

input[type=text]:focus, input[type=password]:focus {
  border: none;
  border-radius: 5px;
}

input[type="text"]::-webkit-input-placeholder,
input[type="text"]::-moz-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="text"]:-moz-placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea:-moz-placeholder {
  font-family: 'Open Sans';
  font-size: 18px;
  font-weight: 600;
  color: #8b8b8b;
  text-align: center !important;
}

textarea.contact {
  padding: 20px;
  margin: 10px 0;
  height: 100px;
  width: 100%;
  font-size: 18px;
  border: none;
  border-radius: 5px;
}

/*for button */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cf:before,
.cf:after {
  content: '';
  display: table;
}

.cf:after {
  clear: both;
}

/* Button Color */
.button {
  float: left;
  min-width: 150px;
  max-width: 300px;
  display: inline-block;
  margin: 1em 0em;
  padding: 1em 2.4em;
  border: none;
  background: none;
  color: inherit;
  font-family: 'Open Sans';
  vertical-align: middle;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.button:focus {
  outline: none;
}

.button > span {
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .button {
    padding: 0.8em 1.7em;
  }
}

@media screen and (max-width: 390px) {
  .button {
    min-width: 120px;
  }
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
.bg-1 .button {
  color: #37474f;
  border-color: #37474f;
}

.bg-2 .button {
  color: #ECEFF1;
  border-color: #ECEFF1;
}

.bg-3 .button {
  color: #fff;
  border-color: #fff;
}

/* Sizes */
.button--size-s {
  font-size: 14px;
}

.button--size-m {
  font-size: 16px;
}

.button--size-l {
  font-size: 22px;
}

@media screen and (max-width: 1024px) {
  .button--size-l {
    font-size: 18px !important;
  }
}

@media screen and (max-width: 390px) {
  .button--size-l {
    font-size: 16px !important;
  }
}

/* Typography and Roundedness */
.button--text-upper {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button--text-thin {
  font-weight: 300;
}

.button--text-medium {
  font-weight: 500;
}

.button--text-thick {
  font-weight: 600;
}

.button--round-s {
  border-radius: 5px;
}

.button--round-m {
  border-radius: 15px;
}

.button--round-l {
  border-radius: 40px;
}

/* Borders */
.button--border-thin {
  /* border: 1px solid; */
}

.button--border-medium {
  border: 2px solid;
}

.button--border-thick {
  border: 3px solid;
}

/* Individual button styles */
/* Saqui */
.button.button--saqui {
  overflow: hidden;
  color: #fff;
  background: #37474f;
  -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
}

.button--saqui.button--inverted {
  background: #dc7628;
  color: #fff;
}

.button--saqui::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em 2em;
  color: #970000;
  -webkit-transform-origin: -25% 50%;
  transform-origin: -25% 50%;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
}

@media screen and (max-width: 1024px) {
  .button--saqui::after {
    padding: 0.8em 1.7em;
  }
}

.button--saqui.button--inverted::after {
  color: #fff;
}

.button--saqui:hover::after,
.button--saqui:hover {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.button--saqui:hover {
  background-color: #7986cb;
  color: #7986cb;
}

.button--saqui.button--inverted:hover {
  background-color: #1eaee8;
  color: #fff;
}

.button--saqui:hover::after {
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
}

/* END Button Color */
/************ Content Area ****************/
#main-content {
  overflow: hidden;
  margin: 0 auto 0 auto;
  width: 100%;
  /*width: 980px;*/
}

/****************** HEADER SECTION ***************************/
.header {
  background: #fff;
  position: fixed;
  top: 0px;
  margin-top: 0px;
  z-index: 500;
  left: 0px;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
  /* Menu Start */
}

.header #logo {
  margin: 14px 0 14px 100px;
  padding: 0px;
  /*width:27%;*/
  float: left;
  display: block;
  line-height: 0;
  font-size: 0;
}

.header #logo img {
  width: 120px;
}

.header #menu {
  margin: 30px 68px 30px 0px;
  padding: 0px;
  float: right;
  display: block;
}

.header .menu {
  line-height: 1;
  margin: 0 auto 0px;
}

.header .menu .menu__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .menu .menu__list .menu__item {
  display: block;
  margin: 0 1em;
}

.header .menu .menu__list .menu__item a.menu__link {
  font-size: 18px;
  font-family: Ubuntu;
  display: block;
  padding: 0.7em 1em;
  cursor: pointer;
  position: relative;
  text-align: center;
  color: #000;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.header .menu .menu__list .menu__item a.menu__link:hover, .header .menu .menu__list .menu__item a.menu__link:focus {
  color: #dc7628;
}

.header .menu .menu__list .menu__item a.menu__link::before, .header .menu .menu__list .menu__item a.menu__link::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 7px;
  opacity: 0;
  background: #e26b10;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.header .menu .menu__list .menu__item a.menu__link::before {
  bottom: -5px;
  height: 2px;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.header .menu .menu__list .menu__item a.menu__link::after {
  bottom: 0;
}

.header .menu .menu__list .menu__item a.menu__link:hover:before, .header .menu .menu__list .menu__item a.menu__link:hover:after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
  transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

@media screen and (max-width: 1024px) {
  .header .menu .menu__list .menu__item a.menu__link {
    font-size: 16px;
    padding: 0.6em 0.8em;
  }
}

.header .menu .menu__list .menu__item.menu__item--current a.menu__link {
  color: #dc7628;
}

.header .menu .menu__list .menu__item.menu__item--current a.menu__link::before, .header .menu .menu__list .menu__item.menu__item--current a.menu__link::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
  transition-timing-function: cubic-bezier(0, 1.54, 0.34, 1);
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

@media screen and (max-width: 1440px) {
  .header #logo img {
    width: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .header #logo {
    margin: 24px 0 30px 60px;
  }
  .header #menu {
    margin: 30px 38px 0px 0px;
  }
}

@media screen and (max-width: 890px) {
  .header #menu .icon {
    float: right;
    display: block;
    font-size: 36px;
    padding: 40px 60px 40px 0px;
    position: absolute;
    top: 0;
    right: 0;
    color: #000;
  }
  .header #menu .icon:hover {
    color: #dc7628 !important;
  }
  .header .menu li {
    display: none !important;
  }
  .header .menu .menu__list {
    height: 100%;
  }
  .header .menu .menu__list .menu__item a.menu__link {
    font-size: 22px;
    padding: 1em;
    padding: 40px 0;
  }
  .header .menu .menu__list .menu__item a.menu__link::before, .header .menu .menu__list .menu__item a.menu__link::after {
    width: 0px;
    height: 0px;
    border: 0px;
  }
  .header .section {
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    width: 100%;
    display: block;
    margin-top: 63px;
    z-index: 9999;
  }
  .header .responsive {
    height: 100vh;
  }
  .header .responsive li {
    width: 100%;
    display: block !important;
    color: #fff;
    font-size: 0;
  }
  .header .responsive li a.icon:active {
    color: #dc7628 !important;
  }
}

@media screen and (max-width: 540px) {
  .header #logo {
    margin: 34px 0 30px 30px;
  }
  .header #menu .icon {
    padding: 40px 30px 40px 0px;
  }
}

.header .icon {
  display: none;
}

/* END OF MENU */
/* CLONE MENU */
.header.cloned {
  opacity: 0.8;
}

.header.cloned #logo img {
  width: 100px;
}

@media screen and (max-width: 890px) {
  .header.cloned #logo {
    width: 15%;
  }
}

/* END OF CLONE MENU */
/****************** END HEADER SECTION **********************/
/****************** Content Area **********************/
#content {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  overflow: hidden;
}

/* START OF Carousel */
.bxslider {
  background: #F5F5F5;
}

.bxslider #slide-1 {
  background: #F5F5F5 url(../img/masthead_01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  overflow: hidden;
  width: 100%;
  min-height: 800px;
}

.bxslider #slide-1 div {
  width: 45%;
  padding: 16% 0 0 50px;
}

.bxslider #slide-2 {
  background: #F5F5F5 url(../img/masthead_02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  overflow: hidden;
  width: 100%;
  min-height: 800px;
}

.bxslider #slide-2 div {
  width: 45%;
  padding: 14% 0 0 50px;
}

.bxslider h1 {
  font-size: 36px;
  font-family: Ubuntu;
  font-weight: bold;
  line-height: 120%;
  padding: 0 0 0 50px;
  color: #1eaee8;
}

.bxslider h2 {
  font-size: 24px;
  font-family: 'Open Sans';
  font-weight: lighter;
  line-height: 120%;
  padding: 0px 0 0 50px;
  color: #4d4948;
  text-transform: none;
}

.bxslider button {
  font-size: 20px;
  font-family: 'Open Sans';
  font-weight: 700;
  margin: 20px 0 0 50px;
}

@media screen and (max-width: 1440px) {
  .bxslider #slide-1, .bxslider #slide-2 {
    min-height: 650px;
  }
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    padding: 14% 0 0 70px;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    font-size: 32px;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .bxslider #slide-1, .bxslider #slide-2 {
    min-height: 550px;
  }
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    padding: 20% 0 0 0px;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    font-size: 32px;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .bxslider #slide-1, .bxslider #slide-2 {
    min-height: 450px;
  }
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    width: 50%;
    padding: 18% 0 0 0;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    font-size: 26px;
    padding: 0 0 0 60px;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    font-size: 18px;
    padding: 0 0 0 60px;
  }
  .bxslider #slide-1 button, .bxslider #slide-2 button {
    font-size: 20px;
    margin: 20px 0 0 60px;
  }
}

@media screen and (max-width: 890px) {
  .bxslider #slide-1, .bxslider #slide-2 {
    background-size: 100%;
    background-position: top right;
    height: 400px;
  }
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    width: 50%;
    padding: 20% 0 0 0;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    line-height: 140%;
  }
  .bxslider #slide-1 button, .bxslider #slide-2 button {
    font-size: 18px;
  }
}

@media screen and (max-width: 740px) {
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    width: 50%;
    padding: 20% 0 0 0;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    font-size: 24px;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    width: 50%;
    padding: 22% 0 0 0;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    padding: 0 0 0 30px;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    padding: 0 0 0 30px;
  }
  .bxslider #slide-1 button, .bxslider #slide-2 button {
    margin: 20px 0 0 30px;
  }
}

@media screen and (max-width: 540px) {
  .bxslider #slide-1 {
    background-position: 36% 0%;
  }
  .bxslider #slide-1, .bxslider #slide-2 {
    min-height: 450px;
  }
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    width: 80%;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    font-size: 24px;
    width: 70%;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    font-size: 18px;
  }
  .bxslider #slide-1 button, .bxslider #slide-2 button {
    font-size: 18px;
  }
}

@media screen and (max-width: 390px) {
  .bxslider #slide-1 {
    background-position: 36% 0%;
  }
  .bxslider #slide-1, .bxslider #slide-2 {
    min-height: 500px;
  }
  .bxslider #slide-1 div, .bxslider #slide-2 div {
    width: 100%;
    padding: 22% 0 0 0;
  }
  .bxslider #slide-1 h1, .bxslider #slide-2 h1 {
    font-size: 24px;
    padding: 0 0 0 30px;
  }
  .bxslider #slide-1 h2, .bxslider #slide-2 h2 {
    width: 90%;
  }
  .bxslider #slide-1 button, .bxslider #slide-2 button {
    font-size: 16px !important;
  }
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 30px;
  width: 100%;
}

.line {
  width: 200px;
  height: 2px;
  display: block;
  margin: 30px auto;
  background: #dc7628;
}

.line.left {
  margin: 30px 0;
}

/* END Carousel */
/* START OF Services */
#service-title {
  margin: 0px auto;
  padding: 100px 0px;
  background: #f1f4f9;
  text-align: center;
  float: left;
  display: block;
  width: 100%;
}

#service-title h2 {
  margin: 0px;
}

@media screen and (max-width: 1024px) {
  #service-title {
    padding: 60px 0px;
  }
}

@media screen and (max-width: 768px) {
  #service-title p.subhead {
    padding: 20px 60px 0 60px;
  }
}

@media screen and (max-width: 540px) {
  #service-title p.subhead {
    padding: 20px 30px 0 30px;
  }
}

#product {
  height: 200px;
  padding: 0 100px;
  display: block;
}

#product #panel {
  width: 20%;
  float: left;
  padding: 20px;
  background-color: white;
  height: 200px;
}

#product .product {
  border-bottom: dotted  1px #e26b10;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}

#product .product::after {
  content: '';
  clear: both;
}

#product .product img {
  width: 150px;
  height: 150px;
}

#product #detail {
  width: calc(80% - 20px);
  float: right;
  margin: 0;
  padding: 0 0 0 20px;
  text-align: left;
  min-height: 500px;
}

#product #detail h3 {
  margin-top: 0;
}

#product #detail h3.no_gap {
  margin: 0;
}

#product #detail img {
  height: 300px;
  width: 300px;
  float: left;
  padding-right: 20px;
}

#product #detail ul {
  display: inline;
}

#product #detail ul li {
  display: list-item;
  list-style-position: inside;
  margin: 0 40px;
}

@media screen and (max-width: 1280px) {
  #product #panel {
    width: 25%;
    float: left;
    padding: 20px;
    background-color: white;
    height: 200px;
  }
  #product #detail {
    width: calc(75% - 20px);
    float: right;
    margin: 0;
    padding: 0 0 0 20px;
    text-align: left;
    min-height: 500px;
  }
}

@media screen and (max-width: 1280px) {
  #product {
    padding: 0 60px;
  }
}

@media screen and (max-width: 890px) {
  #product #panel {
    display: none;
  }
  #product #detail {
    width: calc(100% - 20px);
    float: right;
    margin: 0;
    padding: 0;
    text-align: left;
    min-height: 500px;
  }
}

@media screen and (max-width: 640px) {
  #product {
    padding: 0 20px;
  }
  #product #detail {
    width: 100%;
  }
  #product #detail img {
    height: auto;
    width: 100%;
    float: left;
    padding: 40px 0;
    margin: 0;
  }
  #product #detail ul li {
    margin: 20px;
  }
}

.dropbtn {
  background-color: #FFF;
  background: #FFF url(../img/select-dropdown-arrow.png) no-repeat center right;
  border: 1px solid #69747a;
  border-radius: 4px;
  cursor: pointer;
  color: #69747a;
  padding: 12px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  min-width: 150px;
  width: 400px;
}

@media screen and (max-width: 540px) {
  .dropbtn {
    width: 100%;
  }
}

.mobile-dropdown {
  display: none;
  width: 100%;
  padding: 50px 100px 50px 100px;
}

@media screen and (max-width: 890px) {
  .mobile-dropdown {
    display: inline-block;
    padding: 30px 50px 30px 50px;
  }
}

@media screen and (max-width: 768px) {
  .mobile-dropdown {
    padding: 30px 30px 30px 30px;
  }
}

@media screen and (max-width: 640px) {
  .mobile-dropdown {
    padding: 40px 20px;
    text-align: left;
  }
}

.product_dropdown {
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 540px) {
  .product_dropdown {
    width: 80%;
  }
}

.product_dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 400px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.product_dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.product_dropdown-content a:hover {
  background-color: #f1f1f1;
}

.product_dropdown-content:hover .service_dropdown-content {
  display: block;
}

.product_dropdown-content:hover .service_dropdown-content .dropbtn {
  background: #69747a url(../img/select-dropdown-arrow-white.png) no-repeat center right;
  color: white;
}

.hide {
  display: none !important;
}

.item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  background: #ffffff;
  padding: 30px;
  margin: 20px 0px;
  text-align: left;
}

.item .left-img {
  float: left;
  width: 18%;
}

.item .icon {
  display: block;
  width: 102px;
  height: 102px;
}

.item .right-content {
  float: left;
  width: 78%;
}

.item .right-content p {
  padding: 0px;
}

.item h3 {
  margin: 0px 0px 20px 0px;
  line-height: 120%;
}

@media screen and (max-width: 890px) {
  .item .icon {
    width: 86px;
    height: 86px;
  }
}

@media screen and (max-width: 768px) {
  .item {
    /* Start OF Carousel */
    /* End OF Carousel */
    /* START OF services */
  }
  .item .left-img {
    float: none;
    width: 100%;
    padding: 0 0 30px 0;
  }
  .item .icon {
    width: 86px;
    height: 86px;
    margin: 0 auto;
  }
  .item .right-content {
    float: none;
    width: 100%;
    text-align: center;
  }
}

/* END Services */
/* START OF About */
#about-title {
  width: 100%;
  min-height: auto;
}

#about-title .inner-wrapper {
  margin: 0 auto;
  width: 100%;
}

#about-title h2, #about-title h3, #about-title p {
  margin: 0px;
  color: #ccc;
}

#about-title div h2, #about-title p {
  padding: 20px 0;
}

#about-title h3 {
  padding-top: 60px;
}

#about-title p {
  font-weight: normal;
}

#about-title .line {
  text-align: center;
  background-color: #fff;
}

#about-left {
  width: 25%;
  float: left;
  background-color: #ccc2b7;
  height: 620px;
}

#about-left img {
  width: 100%;
  max-width: 400px;
}

#about-right {
  width: 75%;
  background: #69747a url(../img/about_right.png) no-repeat center right;
  background-size: cover;
  float: right;
  height: 620px;
  padding: 40px;
  text-align: left;
}

#about-achievement {
  text-align: center;
  padding: 40px 20px;
  background-color: #132f35;
}

#about-achievement h2 {
  padding: 0 0 40px 0;
}

#about-achievement #achieve {
  list-style: none;
  margin: 0 auto;
  display: block;
  padding: 0;
  width: 100%;
}

#about-achievement #achieve li {
  float: left;
  padding: 20px 20px;
  margin: 0px 0;
  width: 20%;
  min-height: 180px;
}

#about-achievement #achieve li h2 {
  padding: 10px;
  color: #dc7628;
}

@media screen and (max-width: 1320px) {
  #about-achievement #achieve li {
    width: 33%;
  }
}

@media screen and (max-width: 890px) {
  #about-achievement #achieve li {
    width: 49%;
  }
}

@media screen and (max-width: 640px) {
  #about-achievement #achieve li {
    min-height: 220px;
  }
}

@media screen and (max-width: 540px) {
  #about-achievement #achieve li {
    width: 98%;
    min-height: 0;
  }
}

@media screen and (max-width: 1024px) {
  #about-left, #about-right {
    height: 670px;
  }
}

@media screen and (max-width: 768px) {
  #about-left {
    display: none;
  }
  #about-right {
    width: 100%;
    height: auto;
  }
}

/* END OF ABOUT */
/* START OF WTB */
#wtb-title {
  margin: 0px auto;
  padding: 50px 0px;
  background: #fff;
  text-align: center;
  float: left;
  display: block;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  #wtb-title {
    padding: 40px 60px;
    margin: 0;
  }
}

#collection_wtb {
  list-style: none;
  margin: 0 auto;
  display: block;
  padding: 0;
  width: 90%;
}

#collection_wtb li.retail {
  float: left;
  padding: 20px 20px;
  margin: 0px 0;
  width: 16.6%;
}

#collection_wtb li.retail img {
  width: 140px;
  height: 140px;
}

@media screen and (max-width: 1280px) {
  #collection_wtb li.retail {
    width: 33%;
  }
}

@media screen and (max-width: 890px) {
  #collection_wtb li.retail {
    width: 49%;
  }
}

@media screen and (max-width: 540px) {
  #collection_wtb li.retail {
    width: 98%;
  }
}

/* END WTB */
/* START OF portfolio */
#portfolio-title {
  width: 100%;
  min-height: auto;
}

#portfolio-title .inner-wrapper {
  padding: 100px 2%;
  margin: 0 auto;
  text-align: center;
}

#portfolio-title .inner-wrapper button {
  float: none;
}

#portfolio-title h2 {
  margin: 0;
}

#portfolio-title p {
  font-weight: 600;
}

/* END OF portfolio */
/* START OF Contact */
#contact-title {
  width: 100%;
  min-height: auto;
  background: url(../img/contact_bg.gif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

#contact-title h2 {
  color: #333;
}

#contact-title p {
  color: #333;
  font-weight: 500;
  margin: 20px 0;
}

#contact-title a {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  padding: 20px 0 0 0;
}

#contact-title iframe {
  margin: 0 auto;
}

#contact-title div.appform-container {
  padding: 50px 0;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

#contact-title div.appform-container .line2 {
  width: 200px;
  height: 2px;
  display: block;
  margin: 10px auto 30px auto;
  background: #484848;
}

#contact-title div.appform-container input {
  /*padding:20px;*/
  float: none;
}

@media screen and (max-width: 1024px) {
  #contact-title div.appform-container {
    padding: 40px 0;
  }
}

#contact-title #success-message {
  font-size: 24px;
  font-weight: bold;
  display: none;
  color: #396339;
}

#contact-title #fail-message {
  font-size: 24px;
  font-weight: bold;
  display: none;
  color: #F00;
}

#contact-title .formcontainer {
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #contact-title .formcontainer {
    width: 90%;
  }
}

/* END OF Contact */
/****************** END Content Area **********************/
/****************** START footer Area **********************/
#footer {
  width: 100%;
  background: #1e1e1e;
}

#footer p {
  font-family: 'Open Sans';
  font-size: 16px;
  color: #bdbdbd;
  margin: 0;
  padding-left: 100px;
}

@media screen and (max-width: 1024px) {
  #footer {
    padding-left: 60px;
  }
}

@media screen and (max-width: 768px) {
  #footer {
    text-align: center;
  }
  #footer p {
    padding: 20px 0px;
  }
}

/****************** END footer Area **********************/
/**************** Start Of Product Page ****************/
.product_list {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 60px 0 0 0;
}

.product_list > div {
  display: block;
  width: calc(100% - 100px);
  margin: 0 auto;
}

.product_list > div > ul {
  text-align: left;
  list-style: none;
  padding: 0;
  width: 100%;
}

.product_list > div > ul li {
  display: inline-block;
  width: 22%;
  margin: 20px 1%;
  vertical-align: top;
  border: 1px solid #ebebeb;
}

.product_list > div > ul li div {
  text-align: center;
  height: 320px;
}

.product_list > div > ul li div img {
  width: 210px;
  padding-top: 20px;
}

.product_list > div > ul li div span {
  padding: 20px 0;
  font-size: 16px;
  line-height: 24px;
  display: block;
  font-weight: bold;
}

.product_list > div > ul li div.active {
  opacity: 1 !important;
}

.product_list > div > ul li div.active:after {
  display: block;
  content: '';
  background: url("../img/product_list_detail_arrow.png") no-repeat;
  background-position: center center;
  height: 25px;
}

.product_list > div > ul li div.detail {
  position: absolute;
  width: 100vw;
  left: 0;
  height: auto;
  background-color: #F7F7F7;
  display: none;
  margin-top: 24px;
}

.product_list > div > ul li div.detail .content {
  background-color: #F7F7F7;
  width: 1094px;
  height: auto;
  margin: 20px auto;
  padding: 0;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  .product_list > div > ul li div.detail .content {
    width: 880px;
  }
}

@media screen and (max-width: 985px) {
  .product_list > div > ul li div.detail .content {
    width: 664px;
  }
}

@media screen and (max-width: 680px) {
  .product_list > div > ul li div.detail .content {
    width: 448px;
  }
}

.product_list > div > ul li div.detail .content a.close {
  float: right;
  padding-right: 30px;
}

@media screen and (max-width: 1100px) {
  .product_list > div > ul li div img {
    width: 90%;
  }
}

@media screen and (max-width: 990px) {
  .product_list > div {
    width: calc(100% - 60px);
  }
  .product_list > div > ul li {
    width: 30%;
    margin: 15px 1%;
  }
  .product_list > div > ul li div {
    height: 320px;
  }
  .product_list > div > ul li div span {
    padding: 20px 20px;
    font-size: 16px;
    line-height: 24px;
    display: block;
    font-weight: bold;
  }
}

@media screen and (max-width: 650px) {
  .product_list > div > ul li {
    width: 47%;
    margin: 10px 1%;
  }
  .product_list > div > ul li div {
    height: 320px;
  }
}

@media screen and (max-width: 460px) {
  .product_list > div {
    width: calc(100% - 80px);
  }
  .product_list > div > ul li {
    width: 98%;
  }
  .product_list > div > ul li div {
    height: auto;
  }
}

.loadmore_button {
  text-align: center;
  margin-bottom: 60px;
  display: block;
  width: 100%;
}

.loadmore_button button {
  float: none;
}

.product_tab {
  width: 100%;
  text-align: center;
  background-color: #F7F7F7;
  padding: 15px 0;
}

.product_tab .product_tab_link {
  width: 860px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .product_tab .product_tab_link {
    width: 100%;
  }
}

.product_tab .product_tab_link ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 640px) {
  .product_tab .product_tab_link ul {
    padding-top: 20px;
  }
  .product_tab .product_tab_link ul li {
    padding: 10px 0;
    display: block;
  }
}

.product_tab .product_tab_link li {
  padding: 0 24px;
  display: inline;
}

.product_tab .product_tab_link li:not(:first-child) {
  border-left: solid 1px #999999;
}

.product_tab .product_tab_link li:last-child {
  padding-right: 0px;
}

.product_tab .product_tab_link li a {
  color: #333333;
  padding-bottom: 10px;
  font-size: 16px;
}

.product_tab .product_tab_link li a:hover, .product_tab .product_tab_link li a.active {
  border-bottom: 3px solid #FF0000;
}

.product_detail {
  width: 860px;
  margin: 40px 20px 100px 20px;
}

.product_detail h2 {
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  margin: 20px 0;
}

.product_detail h3 {
  font-size: 24px;
  line-height: 34px;
}

.product_detail p {
  font-size: 16px;
  line-height: 26px;
}

.product_detail p.highlight {
  font-size: 18px;
  line-height: 28px;
  padding-top: 20px;
}

.product_detail ul {
  padding: 17px;
  margin: 0;
}

.product_detail ul li {
  font-size: 16px;
  line-height: 26px;
}

@media screen and (max-width: 960px) {
  .product_detail div {
    text-align: center;
  }
  .product_detail div p, .product_detail div h3, .product_detail div h2 {
    padding: 20px 0;
  }
}

.product_detail img {
  display: block;
  margin: 0 auto;
  max-width: 600px;
}

.product_detail hr {
  border: none;
  height: 1px;
  color: #FF0000;
  background-color: #FF0000;
  margin: 60px 0 20px 0;
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .product_detail div.big {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .product_detail img.big {
    max-width: 80%;
    display: block;
    width: auto;
    margin: 0 auto;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 960px) {
  .product_detail {
    width: 96%;
    margin: 20px auto;
  }
  .product_detail img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    width: auto;
  }
  .product_detail img.right {
    margin: 0 auto;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 960px) {
  .product_detail {
    width: 94%;
  }
}

/**************** End Of Product Page ****************/
/*# sourceMappingURL=style.css.map */