/*==================================================
    General
==================================================*/

html,body{
  padding: 0;
  margin: 0; 
} 
html{height: 100% }
body{  
  font-family: 'Kanit', sans-serif;
  color:#323232;
  font-size: 18px; 
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0px;
  padding:0;  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 

  position: relative;
  overflow-x: hidden;

  background-color: #fff;
}



/*
font-family: 'Roboto', sans-serif;*/
 
b, strong{
  font-weight: 500; 
  font-family: inherit;
}
h1,h2,h3,h4,h5,h6{   
  margin:0;  
  color:#323232; 
  line-height: 1.4; 
  font-weight: 500; 
  font-family: inherit;
}  

.nowrap{ white-space: nowrap; }
 
a{
  color:inherit;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: none; color: var(--color-secondary); }
a.orange{ color: var(--color-orange) }

.input-block{
  display: block; 
  position: relative;
  padding-bottom: 20px
}
.input-text{
  display: block; 
  padding-bottom: 7px
}
   
.form-control{
 -webkit-appearance: none;
  font-family: inherit;
  border-radius: 0; 
  color: #000000 !important;   
  font-size: inherit;
  
  height: auto;
  line-height: 30px;
  padding: 10px 0 10px 20px;

  border:0; /**/
  font-family: inherit;
    -webkit-transition: all 0.2s ease-in-out;
       -moz-transition: all 0.2s ease-in-out;
         -o-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
}
.form-control.rounded{
  border-radius: 50px !important;
}
textarea.form-control{
  height: 150px;
  line-height: normal;
  padding-top: 15px;
}
 
.radio-group, 
.checkbox-group{ 
  padding-left:0; 
  position:relative;
  list-style-type:none;
  margin:0px;
  padding:0px;
  text-align:center;
  display:inline-block;
  vertical-align:top
}
.radio-group{ display:inline-block; position:relative}


.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  width: 0
}
.checkbox-group label:before,
.radio-group label:before {
  content: "";
  display: inline-block;

  margin-right: 5px;
  position: absolute;
  left:0;
  top:3px;
  background-color:#ffffff;
  border:2px solid var(--color-secondary);
  width:25px;
  height:25px; 

   -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.radio-group label:before { 
   top:1px;
  width:22px;
  height:22px; 
  border:2px solid #c2c2c2;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}

.thead-dark .checkbox-group label:before{border:2px solid #fff;}

.radio-group label,
.checkbox-group label {
  position:relative;
  padding-left:30px;
  padding-right:15px;
  text-align:left;
  margin:1px 0;
  display:block;
  font-weight:300;
  font-size:inherit;
  line-height:inherit;
  cursor:pointer;

  -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.checkbox-group label{color: inherit;}
.checkbox-group label span{ font-size: 12px; font-style: italic; color: #8f8f8f } 
.radio-group label{color: inherit; padding-left: 35px} 

 
.radio-group input[type="radio"]:checked + label:after{
  content: "";
  color: #ea6f21;
  background-color:var(--color-primary); 
  position:absolute;
  left: 4px;
  top: 5px;
  width: 14px;
  height: 14px;

  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
}
.checkbox-group input[type="checkbox"]:checked + label:after {
    content: "";
    color: #ea6f21;
  background-color:transparent;
  background-image: url(../img/icons/icon-radio-checked.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 17px; 
  position:absolute;
  left: 0px;
  top: 3px;
  width: 25px;
  height: 25px;
}

 
  
.checkbox-disable.checkbox-group label:before{
  background-color:#c0c0c0;
  border:2px solid #b1b1b1;
  cursor:default !important
}
.checkbox-disable.checkbox-group input[type="checkbox"]:checked + label:after {
  content:'';
}

.radio-group + .radio-group{ margin-left: 15px; }

.radio-group.no-text,
.checkbox-group.no-text{
  width: 29px;
  height: 29px;
  margin-top:-2px; 
} 
.form-control::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.4;
}

.form-control::-moz-placeholder {
  color: #000000;
  opacity: 0.4;
}

.form-control:-ms-input-placeholder {
  color: #000000;
  opacity: 0.4;
}

.form-control::-ms-input-placeholder {
  color: #000000;
  opacity:0.4;
}

.form-control::placeholder {
  color: #000000;
  opacity:0.4;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #EFECEC;
 
}

.custom-select{
  height: 45px;
  line-height: 41px;
  padding: 0 15px;
  font-size: inherit;
  color: var(--black);
  border-radius: 0;
  border: 2px solid #d2d2d2;
  font-family: inherit;
}
.custom-select option{ }

.select-block{
  position: relative;
  display: block;
}
.select-block:after{
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  width: 45px;
  pointer-events: none;

  background: rgb(17,71,135); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(17,71,135,1) 0%, rgba(21,88,167,1) 33%, rgba(21,88,167,1) 50%, rgba(21,88,167,1) 67%, rgba(17,71,135,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(17,71,135,1) 0%,rgba(21,88,167,1) 33%,rgba(21,88,167,1) 50%,rgba(21,88,167,1) 67%,rgba(17,71,135,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(17,71,135,1) 0%,rgba(21,88,167,1) 33%,rgba(21,88,167,1) 50%,rgba(21,88,167,1) 67%,rgba(17,71,135,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#114787', endColorstr='#114787',GradientType=0 ); /* IE6-9 */
}
.select-block:before{
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width:10px;
  height:10px;
  margin-top: -7px;
  z-index: 9;
  vertical-align:top;
-webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  

  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

.select-block.red:after{
  background: rgb(199,37,47); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(199,37,47,1) 16%, rgba(220,50,62,1) 50%, rgba(199,37,47,1) 83%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(199,37,47,1) 16%,rgba(220,50,62,1) 50%,rgba(199,37,47,1) 83%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(199,37,47,1) 16%,rgba(220,50,62,1) 50%,rgba(199,37,47,1) 83%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c7252f', endColorstr='#c7252f',GradientType=0 ); /* IE6-9 */

}
 
  
span.error{
  font-family: inherit;
  font-size: 12px;
  color: red;
  display: block;  
  
  position: absolute;
  top: 19px;
  left: 0;
  right: 0;

  display: none !important;
}  
 
.btn{
  padding: 0 20px;
  position: relative;
  
  border-radius: 0;
  border:0;
  height:50px;
  line-height: 50px; 
  font-family:'Kanit' ,sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size:18px;
  overflow: hidden; 
  color: #fff; 

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eb8117+0,ea580a+100 */
  background: rgb(235,129,23); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(235,129,23,1) 0%, rgba(234,88,10,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(235,129,23,1) 0%,rgba(234,88,10,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(235,129,23,1) 0%,rgba(234,88,10,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb8117', endColorstr='#ea580a',GradientType=1 ); /* IE6-9 */

  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
.btn:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0;

  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ea580a+0,eb8117+100 */
  background: rgb(234,88,10); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(234,88,10,1) 0%, rgba(235,129,23,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(234,88,10,1) 0%,rgba(235,129,23,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(234,88,10,1) 0%,rgba(235,129,23,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea580a', endColorstr='#eb8117',GradientType=1 ); /* IE6-9 */

}
.btn.rounded{ border-radius: 15px  !important } 
.btn span{
  display: block;
  position: relative;
  z-index: 9;
  white-space: nowrap;
}
 
.pc .btn:hover{
  border-color: #000;
  color: #fff;
}
.pc .btn:hover:before{
  height: 100%;
  opacity: 1; 
}

.btn-outline{
  border:3px solid var(--color-orange);
  background-color:transparent;
  color: var(--color-orange);
  line-height: 45px
}
.pc .btn-outline:hover {
  color: #fff !important;
  background-color: var(--color-orange); 
  border-color: var(--color-orange);
} 

.btn-outline-white{
  border:1px solid #fff;
  background-color:transparent;
  color: #fff;
}
.pc .btn-outline-white:hover {
  color: #000 !important;
  background-color: #fff; 
  border-color: #fff;
} 
.pc .btn-outline-white:hover svg path { fill: #000 }

.btn svg,
.btn img{
  position: relative;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}
/*.pc .btn:hover svg,
.pc .btn:hover svg{
  left:7px;
}*/
 
.btn-link, 
.btn-link:hover, 
.btn-link:focus, 
.btn-link:active{
  background-color: transparent;
}
 

.btn:focus,.btn:active,
button:focus,button:active,
a:focus,a:active {
   outline: none !important;
   box-shadow: none!important;
}
 
.buttons{
  display: block; 
  text-align: center;
}
 
svg path,
svg rect,
svg line{ 
  -webkit-transition: all 0.2s ease-in-out;
     -moz-transition: all 0.2s ease-in-out;
       -o-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}



/*==================================================
    Icon Setup
==================================================*/  

.icons{
  display:inline-block;
  position:relative;
  vertical-align:top;
  /*background-image:url(../img/icons.png);*/
  background-size: contain;
  background-repeat:no-repeat;
  background-position: 0 0;
}
 
.inline-black{
  display: inline-block;
  padding: 0 10px
}
 
/**/

.arrow-left,
.arrow-right,
.arrow-up,
.arrow-down{
  position: absolute;
  left: 0;
  top: 0;
  width:5px;
  height:5px;
  vertical-align:top;

  border-top: 1px solid #676767;
  border-left: 1px solid #676767;

   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.arrow-left{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);  
}

.arrow-right{
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);  
}

.arrow-up{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.arrow-down{
   margin-left:1px; 
   -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);  
}
 
.page{
  position: relative; 
  display: block;   
  overflow: hidden;   
  padding:0;

  min-height: 400px;
  
}   
.container-fluid{
  max-width:100% ;  
  padding-left:100px;
  padding-right:100px;
  position: relative; 
}

.container{
  max-width: calc(1280px + 200px);
  padding-left: 100px;
  padding-right:100px; 
  position: relative;
  z-index: 9
}

@media (max-width: 1380px) {
  .container-fluid{
    padding-left: 50px;
    padding-right: 50px;
  }
  .container{
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media (max-width: 1024px) {
  .container-fluid,
  .container{
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container-fluid,
  .container{
    padding-left: 25px;
    padding-right: 25px;
  }
}
.compensate-for-scrollbar{ margin-right: 0 !important } 
.compensate-for-scrollbar .header{ right: 0 } 
body.fancybox-active{ overflow: visible !important;padding-right: 0 !important  }
 
:root { 
  --color-orange:#EB7117;
  --color-red:#c91339; 
  --bordergray:#d3d2d2;
}
  
.italic{font-style: italic;}
/*==================================================
    Header Setup
==================================================*/  

.header{
  display: block;
  position: fixed;
  padding:0;
  top: 0;
  left: 0;
  right: 0;
  padding:22px 0; 
  z-index: 1020; 
  background-color:rgba(255,255,255,0);   
  border-bottom: 1px solid rgba(255,255,255,0.5) 
}   
.header .row > div{ position: static; }
/*.scrolling .header{ background-color:rgba(0,0,0,1); border-bottom: 1px solid rgba(0,0,0,1) }*/

.navbar-main,
.navbar-nav{
  display: block;

}
 
.navbar-brand{ 
  width: auto;
  font-family: 'HelveticaNeue'; 
  font-size: 24px;
  font-weight: bold;
  color: #EB7117;
  white-space: nowrap;
  position: relative;
  z-index: 99
}
.navbar-brand .white{
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
} 
.scrolling .header{ padding: 15px 0; }
.scrolling .header{ background-color:rgba(255,255,255,1); border-bottom: 1px solid #f1f1f1 }
.scrolling .navbar-brand .white{ color:#000 !important; }

.header,
.navbar-brand,
.navbar-brand img,
.nav-menu .nav-item a span:before,
.nav-menu .nav-item a span:after{
   -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}
.nav-header{ display: none; }



 
/*==================================================
    Section - menu mobile
==================================================*/ 

.btn-icon{
  padding: 0;
  background: transparent !important;
  border:0 !important;
  width: 30px;
  height: 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 999;
  padding:0 0;
  float: right;

  top: 1px;
  overflow: visible;  
}
.btn-icon:before{
  display: none;
}
.btn-icon .bar{
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 3px;
  background:#000;
}
.btn-icon .bar:before, 
.btn-icon .bar:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    content: "";
 
}
.btn-icon .bar:before {
  top: -9px;
}
.btn-icon .bar:after {
  top: 9px;
}
.pc .btn-icon:hover .bar:before, 
.pc .btn-icon:hover .bar:after {
  width: 70%;
}
  
.navbar-topbar .row{ position: relative; }
.navbar-topbar .row > div{ position: static; }

.preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1022;
}
.nav-header,
.nav-footer{display: none;}
/*==================================================
    Responsive media queries
==================================================*/


@media (min-width: 992px) {
  .btn-icon{display: none !important;}

  .navbar-nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    top: 0;
  }

  .nav-panel{ 
    position: absolute;
    top: -22px;
    left: 0;
    right: 0; 
  }
  .nav-menu{
    display: block;
    text-align: center;
    font-size: 0;
    padding-left: 10vw
  }
  .nav-menu .nav-item{
    padding:0 0;
    display: inline-block;
    vertical-align: top;
  }
  .nav-menu .nav-item.nav-lang{
    position: absolute;
    top: 0;
    right: 215px;
  }
  .pc .nav-menu .nav-item.nav-lang a:hover{ opacity: 0.75 }
  .nav-menu li a{
    color: #fff;
    display: block;
    padding: 0 15px;
    font-size: 18px;
    font-family: 'HelveticaNeue';
    font-weight: 500;
    line-height: 93px;
  }
  .nav-menu li a span{
    display: inline-block;
    position: relative;
  }
  .nav-menu li a span:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background-color: #fff;
    opacity: 0;
  }
  .nav-menu li a.active span:before{ opacity: 1 }
  .pc .nav-menu li a:hover span:before{ opacity: 1 }
  .scrolling .nav-menu li a {height: 86px; line-height: 86px}
  .scrolling .nav-menu li a span:before{background-color: #000;}

  .header .btn.btn-form{ 
    font-family: 'HelveticaNeue';
    font-weight: 500;
    padding: 0 25px; 
    text-transform: none;
    float: right;
    height: 45px;
    line-height: 45px;
  }
  
  .scrolling .nav-menu li a{ color:#000; }
  
}
@media (min-width: 1000px) { 
}
@media (min-width: 1199px) {
  .nav-menu{ padding-left: 0 }
  .nav-menu li a{ padding: 0 20px }

  .nav-menu .nav-item.nav-lang{ right: 220px }
}
@media (min-width: 1381px) {
  .nav-menu .nav-item.nav-lang{ right: 270px }
}
 
@media (max-width:991.98px) { 
  .page{ padding-top: 79px }
  .header{
    padding: 20px 0;
    background-color: #fff;
    background-color:rgba(255,255,255,1);
  }  
  .scrolling .header{padding: 20px 0;}
  .navbar-brand{ padding: 0 }
  .navbar-brand .white{ color:#000 !important; }

  .nav-panel{
    position: fixed;
    top: 0; 
    left: 0;
    height: 100vh;
    width: 380px; 
    background-color:#1a1a1a;

    padding:0; 
    z-index: 1051;
 
    pointer-events: none;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;

    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  } 
  .closing .nav-panel{ opacity: 1; pointer-events: auto; } 

  .nav-header{
    display: flex;
    background-color:transparent;
    height:79px;
    padding: 0 30px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    border-bottom:1px solid rgba(255,255,255,0.3);
    -ms-flex-align: center;
    align-items: center;
    display: block;
  }
  .nav-header .navbar-brand{ 
    margin-top: 22px;
    font-size: 20px
  }
  .nav-title{
    display: inline-block;
    line-height: 79px;
  }

  .nav-footer{
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    
    height: 79px;
    line-height: 79px;
    color: rgba(255,255,255,0.5);
    border-top:1px solid rgba(255,255,255,0.3);
    padding-left: 50px;
    font-size: 12px; 
  }

  .nav-menu-wrap{
    display:flex;
    height: calc(100vh - 160px);
    -ms-flex-align: center;
    align-items: center;
  }
  .nav-menu {
    display: block;
  }
  .nav-menu{ 
    margin: 0;
    padding: 20px 30px 20px 50px;
  }
  .nav-menu .nav-item{
    display: block;
  }
  .nav-menu .nav-item a{
    display: block;
    font-size: 21px;
    font-weight: 300;
    padding:10px 0;  
    position: relative;
    color: rgba(255,255,255,1);
    font-size: 20px;
  } 
  .nav-menu .nav-item a.lang{ margin-top: 3px; }
  .nav-menu .nav-item a.lang img{ width: 33px; height: 33px }
  .nav-menu .nav-item a.active{color: rgba(255,255,255,1);} 

  .nav-close{
    position: absolute;
    right: 26px;
    top: 23px;
    cursor: pointer;
    height: 30px;
    width: 30px; 

    background-repeat: no-repeat;
    background-size: 21px;
    background-position: center center;
    background-image: url(../img/icons/icon-close-orange.svg);
  }
   

  .page-blocker{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:transparent;
    z-index: 1050;

    pointer-events: none;
    display: block;
    opacity: 0;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;

    background-color: rgba(26,26,26,0.95);
  }
 
  .menu-opened .page-blocker{
    pointer-events: auto;
    opacity: 1;
    cursor: pointer;
  }

  .menu-opened .nav-panel{
   -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }

  .menu-opened, .menu-opened body { overflow: hidden; position: relative; }
}

@media (max-width:767px) {
  .page{ padding-top: 57px }
  .btn-icon{ width: 30px; top: 0 }
  .btn-icon span{ height: 2px; }
  .btn-icon .bar:before {top: -8px;}
  .btn-icon .bar:after {top: 8px;}
  .header{padding: 15px 0; }
  .scrolling .header{padding: 15px 0;}
  .header .container-fluid{ padding: 0 20px }
  .navbar-brand{font-size: 20px; padding: 0}
  
  .nav-panel{width: calc(100% - 70px);}
  
  .nav-header{ height: 62px; padding-left: 20px; padding-right: 20px; }
  .nav-close{ top: 15px;right: 16px; }
  .nav-title{ line-height: 62px }
  .nav-footer{ padding-left: 40px }
  .nav-menu{ padding-left: 40px; padding-right: 40px; } 
 
}

@media (max-width:576px) {
  
}
/*==================================================
    Section - setup
==================================================*/ 

.section{
  display: block;
  position: relative;  
  padding:60px 0 ;
}  
.section-target{
  display: block;
  position: relative;
}
.section-target .id-target{
  position: absolute;
  top:-74px;
  bottom: 0px;
  left: 0;
  right: 0;

  pointer-events: none; 
}
.background{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  pointer-events: none; 
}
.background.contain{background-size: contain;}
.background.fixed{background-attachment: fixed;}
 
.section-body{
  background-color: #f5f5f8;
  padding: 40px 0;
} 

.row.space-0{ margin:0}
.row.space-0 > div{ padding:0}

.row.spaceL-1{ margin:0 0 0 -1px}
.row.spaceL-1 > div{ padding:0 0 0 1px}

.row.space-20{ margin:0 -20px; }
.row.space-20 > div{ padding:0 20px}
 
.thin{ font-weight: 300 !important }
.light{ font-weight: 300 !important }
.regular{ font-weight: 400 !important }
.medium{ font-weight: 500 !important }
.bold{font-weight: 600 !important }
.italic{font-style: italic;}
 
.white{ color:  #fff !important }
.section-title{
  display: block;
  text-align: center;
}
.section-title h2{
  color: var(--color-orange);
  font-size: 42px;
  font-weight: bold;
}


.card{
  border:0;
  border-radius: 0;
}
.card-photo{
  display: block;
  position: relative;
  overflow: hidden;
  
}
 .card-photo .photo{
  display: block;   
  transform: scale(1.02);
  -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
 .card-photo .photo:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-color: rgba(0,0,0,0.5);
  -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-in-out;
   -o-transition: all 0.3s ease-in-out;
   -ms-transition: all 0.3s ease-in-out;
   transition: all 0.3s ease-in-out;
 }
.card-photo .photo img{ width: 100% }
.card:hover .card-photo .photo{transform: scale(1.1);}
.card:hover .card-photo .photo:before{background-color: rgba(0,0,0,0.75)}
 
.card-photo.video:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  pointer-events: none;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80px;
  background-image: url(../img/icons/icon-play.png);
}
  
.article {
  display: block; 
}

.article ul{
  list-style-type: none;
  margin:0;
  padding: 0; 
}
.article ul li{ 
  position: relative;
  padding: 0 0 0 18px;
  margin:0; 
}
.article ul li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background-color: var(--color-black);
  border-radius: 50%
}

.article ol{ padding-left: 30px }

.article ol {
    counter-reset: list;
    margin: 0;
}

.article ol > li {
    list-style: none;
    position: relative;
}

.article ol > li:before {
    counter-increment: list;
    content:"(" counter(list) ") ";
    position: absolute;
    left: -1.4em;
}

.article h2{
  font-size: 35px;
  margin-bottom: 10px
}
.article h3{
  font-size: 25px;
  margin-bottom: 20px
}
.article p,
.article ul,
.article ol{ margin-bottom: 25px; }

.article ol li,
.article ul li{ margin-bottom: 9px }

.article ul.checklist,
.article ul.pluslist{
  padding-left: 40px;
}
.article ul.checklist li,
.article ul.pluslist li{
  position: relative;
  list-style-type: none;
  padding-left: 40px;
}
.article ul.checklist li:before,
.article ul.pluslist li:before{
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width:15px;
  height:15px;

  background-image: url(../img/icons/icon-checklist.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border-radius: 0;
}
.article ul.pluslist li{ padding-left: 25px }
.article ul.pluslist li:before{
  top: 9px;
  width:11px;
  height:11px;
  background-image: url(../img/icons/icon-plus-orange.svg);
}
.article p.text-indent{ text-indent:40px }
.article .img-right{
  float: right;
  padding: 10px;
  position: relative;
  margin:0 0 10px 20px; 
  background-image: url(../img/thumb/img-texture.png);
  background-size: 99%;
  background-position: bottom right;
  background-repeat: no-repeat; 
  max-width:52%
}
.article .img-right img{ width: 100% }
.hgroup{ display: block; padding-bottom: 25px }
.hgroup h2{ margin-bottom: 0; font-size: 35px;}
.hgroup p{ font-size: 28px; font-weight: 300; margin-bottom: 0 }

.hgroup.center{ text-align: center; }

 

/*==================================================
    Section - banner
==================================================*/ 

.section-banner{ 
  background-color: #000;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}  

.flex-banner li.slide-item{
  height: 100vh;
  position: relative;
}

.flex-banner .background:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-color: rgba(15,28,65,.50);
}

.flex-banner .background img{ display: none; }
 
.flex-paging-custom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.flex-paging-custom ul{
  padding: 0;
  margin: 0 -35px;
  list-style-type: none;
  text-align: center;
  font-size: 0;
}
.flex-paging-custom ul li{
  display: inline-block;
  vertical-align: top;;
  padding: 0;
  margin: 0;
  width: 33.333%;
  padding: 0 35px
}
 

.flex-paging-custom .paging-group{
  display: table;
  width: 100%;
  height: 115px;
  background-color: #000;
  position: relative;
  cursor: pointer;
}
.flex-paging-custom .paging-group:before{
  content: '';

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

  background: rgb(235,129,23);
  background: -moz-linear-gradient(left, rgba(235,129,23,1) 0%, rgba(234,88,10,1) 100%);
  background: -webkit-linear-gradient(left, rgba(235,129,23,1) 0%,rgba(234,88,10,1) 100%);
  background: linear-gradient(to right, rgba(235,129,23,1) 0%, rgba(234,88,10,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eb8117', endColorstr='#ea580a',GradientType=1 );
}
.flex-paging-custom .paging-group .group{
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;

}
.flex-paging-custom .paging-group .icon{
  display: inline-block;
  width: 65px;
  height: 65px;
  vertical-align: middle;
  position: relative;
  z-index: 9
}
.flex-paging-custom .paging-group .text{
  display: inline-block;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
  padding-left: 20px;
  position: relative;
  z-index: 9
}

.flex-paging-custom li:hover .paging-group:before{ opacity: 1 }
.flex-paging-custom li.flex-active .paging-group:before{ opacity: 1 }

.flex-banner .flex-direction-nav{}
.flex-caption{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  z-index: 2;

  -ms-flex-align: center;
  align-items: center;
}
.flex-caption .caption{
  margin: 0 auto;
}
.flex-caption .c-row{
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 10px;
}
.flex-caption .c-row + .c-row{margin: 30px 0 0}
.flex-caption h3{
  font-size: 52px;
  font-weight: 500;
  color: #fff;
}
.flex-caption hr{ margin: 0 auto !important }

.flex-caption h3,
.flex-caption hr  {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
.flex-active-slide .flex-caption h3{
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s; 
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.flex-active-slide .flex-caption hr{
    -webkit-animation-delay: 0.9s;
    animation-delay:  0.9s; 
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

ul.flex-direction-nav li{
  position: absolute;
  top: 50%;
  width: 65px;
  height: 65px;
  margin-top: -26px;
   opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
ul.flex-direction-nav li a{
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;

 
}

ul.flex-direction-nav li.flex-nav-prev{ left: 70px }
ul.flex-direction-nav li.flex-nav-prev a{ background-image: url(../img/icons/icon-prev.svg); }

.flex-direction-nav > li.flex-nav-next {left: auto; right: 70px}
ul.flex-direction-nav li.flex-nav-next a{ background-image: url(../img/icons/icon-next.svg);}

.pc .flexslider ul.flex-direction-nav li a:hover{ opacity: 0.5 }
.pc .flexslider:hover ul.flex-direction-nav li.flex-nav-prev { left: 90px; opacity: 1 }
.pc .flexslider:hover ul.flex-direction-nav li.flex-nav-next { right: 90px; opacity: 1 }

/*==================================================
    Section - About us
==================================================*/ 
.section-aboutus { padding: 90px 0 }
.section-aboutus .section-title{ padding-right: 19px; }
.section-aboutus .container{ max-width:  }
.section-aboutus .article{
  /*max-width: 700px;*/
  padding-right: 7vw;
  padding-left: 10px;
}
.section-aboutus .article h5{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}
.section-aboutus .article p{
  margin-bottom: 15px;
}

/*==================================================
    Section - Our Product
==================================================*/ 

.section-ourproduct{
  padding: 0 !important
}
.section-ourproduct .section-title{
  border-top: 1px solid #D0D0D0;
  padding: 35px 0;
}
.card-product{
  position: relative;
  background-color: #000;
  margin-bottom: 1px;
}
 
.card-product .card-title {
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  font-size: 32px;
  color: #fff;
  font-weight: bold
}
.card-product .card-title:before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  height: 6px;
  width: 60px;

  -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;

  background: rgb(234,88,10); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(234,88,10,1) 0%, rgba(235,129,23,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(234,88,10,1) 0%,rgba(235,129,23,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(234,88,10,1) 0%,rgba(235,129,23,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea580a', endColorstr='#eb8117',GradientType=1 ); /* IE6-9 */
}
.card-product:hover .card-title:before{ width: 130px }
.card-product .card-body{
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  padding: 0;

  color: #fff;
  font-weight: 500;
}
.card-product .card-body ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.card-product .card-body ul li{
  margin: 0;
  padding: 8px 0 8px 30px;
  position: relative;
}
.card-product .card-body ul li:before{
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  width: 11px;
  height: 11px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/icons/icon-list.svg);
}

.device .card-product .card-photo,
.device .card-product .card-body,
.device .card-product .card-title{ pointer-events: none; }


/*==================================================
    Section - Contact
==================================================*/

.section-contact{ padding: 0 !important; background-color: #222 }
.section-contact .background{ 
  background-position: top center; 
  bottom: auto;
  height: calc(100% - 180px)
}
.company-profile{
  display: block;
  text-align: center;
  color: #fff;
  font-size: 21px;
  padding-bottom: 110px;
}
.company-profile .section-title{
  padding: 85px 0 60px;
  color: #fff;
}

.company-profile h3{
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

hr.line{
  border:0;
  height: 6px;
  width: 60px;
  margin:30px auto 25px;

  background: rgb(234,88,10); /* Old browsers */
  background: -moz-linear-gradient(left,  rgba(234,88,10,1) 0%, rgba(235,129,23,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  rgba(234,88,10,1) 0%,rgba(235,129,23,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  rgba(234,88,10,1) 0%,rgba(235,129,23,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea580a', endColorstr='#eb8117',GradientType=1 ); /* IE6-9 */
}

.contact-wrap{
  display: block;
  background-color: #fff;
  padding: 0 0 80px;
  position: relative;
  text-align: center;z
}
.contact-item{
  text-align: center;
  display: inline-block;
  margin-top:-52px;
}
.contact-item .icon-wrap{
  display: block;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto 15px;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.contact-item .icon-wrap img{
  margin: 0 auto
}
.contact-item p{
  font-size: 24px;
  font-family: 'HelveticaNeue';
  font-weight: 500;
  margin: 0
}
.contact-item p .email{ font-size: 21px }

.contact-item p span{
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-item p span:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: var(--color-orange);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-item:hover span{
  color: var(--color-orange);
}
.contact-item:hover span:before{
  opacity: 1
}



/*==================================================
    Section - Contact Form
==================================================*/
.section-form{
  padding: 105px 0;
}
.section-form .background:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.section-form .section-title{
  text-align: left;
  padding-left: 80px;
}
.admin-group{
  display: flex;
  position: relative;
  font-size: 18px;
  color: #fff;
  margin-top:20px ;
  -ms-flex-align: center;
  align-items: center;
}
.admin-group .avatar,
.thanks-box .avatar{
  display: block;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #fff;
  padding: 3px;
}
.admin-group .avatar .photo,
.thanks-box .avatar .photo{
  display: block;
  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #ccc;
  border-radius: 50%;
}
.admin-group p{ margin-bottom: 0; padding-left: 18px; }
.form-contact{
  display: block;
  padding-right: 80px;
}
.form-contact .btn{
  height: 50px;
  line-height: 50px;
  width: 185px;
  margin-top: 20px;
  font-weight: 500;
  text-transform: none;
  font-family: inherit;
}
 
.form-control.error {
  color: #495057;
  background-color:#fff;
  border-color:#e10000;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(255,0,0,.55);
}

/*.form-control.error + span.error{
  display: block !important;
}*/

span.error{
  position: relative;
  text-align: right;
  top: 7px;
  color: #fff;
  font-style: italic 
}

/*==================================================
    Page - Thanks
==================================================*/
.page-thanks{
  padding: 0 !important;
}
.page-thanks .header{
  background-color: transparent !important;
}
.page-thanks .header h3{
  font-size: 24px;
  font-weight: bold;
  font-family: 'HelveticaNeue', sans-serif;
  color: #fff;
}
.page-thanks .header .goback{
  float: right;
  width: 21px;
  height: 21px;
}
.page-thanks .header .goback img{
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: top;
}

.pc .page-thanks .header .goback:hover{ opacity: 0.7 }

.section-thanks{
  background-color: #000;
  height: 100vh;
  padding: 0 !important
}
.section-thanks .background{
  background-position: top center;
}
.thanks-box{
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.thanks-box .thanks-row {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 10px;
}
.thanks-box .thanks-row.c3{
  margin-top: 40px;
}

.thanks-box .group{
  display: block;
  position: relative;
  margin:50px auto 0; 
}
.thanks-box .avatar{
  margin:0 auto 
}
.thanks-box h3{
  font-size: 21px;
  font-weight: bold;
  color: #fff;
  margin:25px 0 10px;
}
.thanks-box .btn{
  font-family: 'HelveticaNeue';
  text-transform: none;
  font-weight: 500;
  width: 180px;
}
/*==================================================
    Footer
==================================================*/
.footer{
  background-color:#0F1C41;
  border-top:1px solid #fff;
  padding:0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
} 
.footer:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background-repeat: no-repeat;
  background-position: top right;
  background-size: 900px;
  background-image: url(../img/thumb/photo-footer.jpg);
}
.footer-primary{
  display: block;
  padding: 90px 0;
  text-align: center;
  display: block;
  position: relative;
  z-index: 9;  
}
.footer-primary .small{
  color: rgba(255,255,255,0.55);
  display: inline-block;
  vertical-align: middle;
  padding-right: 25px;
  margin-top: -18px;
  font-size: 15px;
} 
.footer-primary .domaim-name{
  color: var(--color-orange);
  font-size: 45px;
  font-weight: bold;
}
.footer-primary  .domaim-name span{
  display: inline-block;
  color: #fff
}

.footer-secondary{
  border-top: 1px solid var(--color-orange);
  text-align: center;
  padding:25px 0; 
  font-size: 16px;
  position: relative;
  z-index: 9;
}
.footer-secondary p{ margin-bottom: 0 }
.footer-secondary .icidea{ 
  color: rgba(255,255,255,0.55);
  display: inline-block;
  padding-left: 4px;
}
.pc .footer-secondary .icidea a:hover{color: var(--color-orange)}

/*==================================================
    Responsive media queries
==================================================*/

@media (min-width: 1119px) and (max-width: 1440px) {}    
@media (max-width: 1700px) {}
@media (max-width: 1650px) {}
@media (max-width: 1600px) {}
@media (max-width: 1550px) {}
@media (max-width: 1450px) {}
@media (max-width: 1380px) {}
@media (max-width: 1350px) {

  .section-title h2{font-size: 35px;}
  hr.line{ height: 5px }

  .section-aboutus{ padding: 70px 0; }
  .section-aboutus .article h5{font-size: 26px}
  .company-profile{font-size: 18px}
  .company-profile h3{font-size: 26px}

  .card-product .card-title{font-size: 28px}
  .card-product .card-title::before{ height: 5px; }
  
  .contact-item p{font-size: 21px}

  .footer-primary .domaim-name{font-size: 40px}
}
@media (max-width: 1300px) {}   
@media (max-width: 1280px) {
  .flex-paging-custom ul{ margin: 0 -25px; }
  .flex-paging-custom ul li{ padding: 0 25px }
  .flex-paging-custom .paging-group{ height: 90px; }
  .flex-paging-custom .paging-group .icon{ width: 55px; height: 55px; }
  .flex-paging-custom .paging-group .icon img{ width: 100% }
}
@media (max-width: 1199px) {
  body{font-size: 16px}
  .section-title h2{font-size: 30px;}
  hr.line{ height: 3px }
  .section-aboutus .article h5{font-size: 22px}

  .flex-caption h3{font-size: 45px;}
  .flex-caption hr.line{ height: 5px; }
  .flex-paging-custom .paging-group .text{font-size: 21px;}
}

@media (max-width: 1199px) and (min-width: 992px) {
  .card-product .card-title{font-size: 25px}
  .card-product .card-title::before{ bottom: -16px; height: 3px; width: 45px }
  .card-product .card-body ul li{ padding: 5px 0 5px 30px; }
  .card-product .card-body ul li::before{top: 16px}

  .card-product:hover .card-title::before{ width: 80px; }
}
@media (max-width: 1024px) {
  .section-ourproduct .section-title{ padding: 25px 0 }

  .flex-banner .background{
    position:relative;
  }
  .flex-banner li.slide-item{ height: auto; }
  .flex-banner .background img{ display: block; }
  .flex-caption { padding-top: 70px }
  .flex-caption .c-row + .c-row{ margin-top: 25px; }
  .flex-paging-custom {
    position: relative;
    bottom: auto;
    top: auto;
  }
  .flex-paging-custom .container{ padding: 0 }
  .flex-paging-custom ul{ margin: 0 0; border-top:1px solid #fff; }
  .flex-paging-custom ul li:first-child{border:0;}
  .flex-paging-custom ul li{ 
    padding: 0 0; 
    border-left:1px solid #fff; 
  }

  .flex-paging-custom .paging-group{ height: 100px; }

  .section-form .section-title{ padding-left: 50px; }
  .form-contact{ padding-right: 50px; }

  .admin-group{font-size: 16px;}
  .admin-group .avatar{ width: 70px; height: 70px; }
}
@media (max-width: 991.98px) {
  .section-target .id-target { top: -77px }
  .section-aboutus{ padding: 50px 0 }
  .section-aboutus .article{ padding-right: 2vw }
  .section-aboutus .article h5{font-size: 20px}

  .card-product .card-photo .photo img{ display: none; }
  .card-product .card-photo .photo{ height: 80vh }

  .card-product .card-body ul li{ padding: 5px 0 5px 30px; }
  .card-product .card-body ul li::before{top: 12px}

  .flex-caption{ padding-top: 0 }
  .flex-caption h3{font-size: 35px;}
  .flex-paging-custom .paging-group .text{font-size: 20px; padding-left: 15px}

  .company-profile h3{font-size: 24px;}

  .section-form{ padding: 70px 0; }
  .section-form .section-title{padding-left: 0}
  .form-contact{ padding-right: 0 }
  .admin-group{font-size: 15px;}
  .admin-group p{ padding-left: 10px;}

  .footer-primary .domaim-name{font-size: 35px}
  .footer::before{ background-size: contain; }
  .footer-secondary{font-size: 14px;}

  @media (max-height: 600px) {
    .card-product.fiberglass .card-photo{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .card-product.fiberglass .card-photo .photo{
      height: 100%;
    }  

    .card-product.fiberglass .card-title{
      position: relative;
      top: auto;
      margin: 80px 0;
    }
    .card-product.fiberglass .card-body{
      position: relative;
      bottom: auto; 
    }
  }

}
@media (max-width: 991.98px) and (min-width: 768px) {
  .card-product .card-title{top: 80px; left: 80px;}
  .card-product .card-body{ bottom: 80px; left: 80px;}

  .card-product .card-body ul{ margin-bottom: 10vh }

  .section-contact .background{ height: calc(100% - 100px); }
  
  .contact-wrap{ padding-bottom: 60px; }
  .contact-item .icon-wrap{ width: 90px; height: 90px; }
  .contact-item .icon-wrap img { width: 80px ; height: 80px; }
  .contact-item p{font-size: 18px}
  .contact-item p .email{font-size: 17px}
}
 
@media (max-width: 767px) {
  .section-target .id-target{ top: -60px; }
  .flex-paging-custom .paging-group .icon{
    display:block;
    margin:0 auto;
    width: 45px;
    height: 45px;
  }
  .flex-paging-custom .paging-group .text{
    display: block;
    padding:5px 0 0;
    font-size: 16px;
    font-weight: 500;
  }

  .section-title h2{ font-size: 24px; }
  .section-aboutus{ padding: 35px 0 }
  .section-aboutus .section-title { padding-bottom: 20px; text-align: left; }

  .section-aboutus .article h5{ font-weight: 400; font-size: 17px; margin-bottom: 15px; }
  .section-aboutus .article{font-size: 15px; padding-left: 0; padding-right: 0;}

  .section-ourproduct .section-title{ padding: 20px 0; }

  .card-product .card-title{
    font-size: 24px; 
    margin-bottom: 10px;
    top: 60px;
    left: 50px;
  }
  .card-product .card-title::before{height: 4px; width: 40px;bottom: -18px;}

  .card-product .card-body{
    left: 50px;
    bottom: 45px;
  }
  .card-product .card-body ul,
  .card-product .card-body p{ margin-bottom: 3vh !important} 

  .contact-wrap{ padding-bottom: 60px; }
  .company-profile h3{font-size: 22px;}
  .contact-item:not(.first){ margin-top: 40px; }
  .contact-item.first{ margin-top: -52px; }
  .contact-item p{font-size: 22px;  }
  .contact-item .icon-wrap{ margin-bottom: 12px}

  .section-form{ padding: 50px 0; }
  .section-form .section-title{
    padding-left: 0;
    padding-bottom: 30px;
    text-align: center;
  }
  .admin-group{
    display: block;
  }
  .admin-group .avatar{ margin:25px auto 20px  }

  .form-contact{
    display: block;
    margin: 0 auto; 
    padding: 0 15px;
    max-width: 550px;
  }
  .form-contact .btn{ 
    margin-top: 0;
    height: 45px;
    line-height: 45px;
  }
  .form-control{ padding-top: 7px; padding-bottom: 7px }
  textarea.form-control{ height: 100px }
  .input-block{ padding-bottom: 15px }

  .page-thanks .header {padding: 20px 0 }
  .page-thanks .header h3{ font-size: 16px }
  .page-thanks .header .goback{ width: 18px; height: 18px; }

  .thanks-box .thanks-row.c2 p{font-size: 15px}
  .thanks-box .thanks-row.c2 p span{display: block;}
  .thanks-box .thanks-row.c3 {margin-top: 30px;}
  .thanks-box .group{ margin-top: -20px }

  @media (max-height: 390px) {
    .page-thanks{ min-height: 0 }
    .thanks-box h3{ margin-top: 15px }
    .thanks-box .btn{
      height: 40px;
      line-height: 40px;
      width: 150px;
    }
    .thanks-box .thanks-row.c3{ margin-top: 20px }
    .thanks-box .avatar{width: 75px;height: 75px;}

  }

  .footer::before{ 
    width: 200vw;
    height:200vw;
    left: auto;
    right:-98vw;
    top: auto;
    bottom:-35vw;

    background-position: bottom right;
  }

  .footer-primary{ padding: 80px 0 70px; }
  .footer-primary .small{ 
    margin-top: 0; 
    margin-bottom: 5px; 
    padding-right: 0;
    display: block;
  }
  .footer-primary .domaim-name{
    display: block;
  }
  .footer-secondary{font-size: 12px;}

  @media (max-height: 600px) {
    .card-product.fiberglass .card-title{ margin: 60px 0 }
    .card-product.fiberglass .card-body{ margin-bottom: 40px }
  }
    
}
@media (max-width: 576px) {
  .flex-caption h3{font-size: 28px;}
  .flex-caption hr.line{ height: 4px; }
  .flex-caption .c-row + .c-row{ margin-top: 15px; }
  .flex-paging-custom .paging-group .text{ font-size: 14px }

  hr.line{
    height: 4px;
    width: 40px;
    margin: 25px auto 20px;
  }
  .section-aboutus .article{font-size: 14px;}
  .section-aboutus .article h5{ font-size: 16px; }
  .section-aboutus .article .img-iso{ max-width: 100px; }

  .company-profile{ padding-bottom: 27vh }
  .company-profile .section-title {
    padding: 50px 0 35px;
  }
  .company-profile{
    margin: 0 -20px;
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .card-product .card-photo .photo{
    height: 70vh
  }
  .card-product .card-body{
    left: 30px;
  }
  .card-product .card-title{
    top: 40px;
    left: 30px;
  }
}


/*========Lang=============*/

html[lang="th"] body{ font-family: 'Kanit', sans-serif;}
html[lang="en"] body{ font-family: 'HelveticaNeue', sans-serif;}

.nav-menu .nav-item a,
.flex-caption h3,
.flex-paging-custom .paging-group,
.section-title h2,
.card-product .card-title,
.card-product .card-body ul,
.company-profile h3,
.footer {
  font-family: 'HelveticaNeue', sans-serif;
}