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

html,body{
  padding: 0;
  margin: 0; 
} 
html{height: 100% }
body{  
  font-family: 'Chakra Petch', sans-serif;
  color:#171717;
  font-size: 24px; 
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  margin: 0px;
  padding:0;  
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 

  position: relative;
  overflow-x: hidden;
}

/*
    font-family: 'Chakra Petch', sans-serif;
    font-family: 'Lora', 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:inherit; }

.input-block{
  display: block; 
  position: relative;
  padding-bottom: 10px
}
.input-text{
  display: block; 
  padding-bottom: 7px
}
   
.form-control{
 -webkit-appearance: none;
  font-family: inherit;
  border-radius: 0; 
  color: inherit !important;  
  padding: 0 15px;
  font-size: 16px;
  height: 40px;
  line-height: 40px; 
  border:1px solid #d0cecc;  
  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;
}
.form-control.gray{
  background-color: #e2e2e2;
  border-color: #c7c7c7;
  color:#000000 !important;
}
textarea.form-control{
  height: 150px;
  line-height: normal;
  padding-top: 15px;
}

.input-group.custom{  
  position: relative;
  height: 50px;
  line-height: 50px;
  display: block;
  margin-bottom: 20px;
}  
.input-group.custom > .input-group-prepend{
  display: inline-block;
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  z-index: 9;
}
.input-group.custom > .input-group-prepend img{ 
  width: 23px;
  height: 23px; 
  vertical-align: top;
  margin-top: 14px;
}
.input-group.custom > .form-control{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0 20px 0 60px;
  display: block;
  border-radius: 50px !important; 
}

.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.block{display: block; margin-left:0 !important }


.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:#f7f7f7;
  border:1px solid #c2c2c2;
  width:20px;
  height:20px; 

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

.radio-group label:before { 
  top:5px; 
  width:18px;
  height:18px;
  border:1px 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:400;
  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:#00aaff; 
  position:absolute;
  left: 4px;
  top: 9px;
  width: 10px;
  height: 10px;

  -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-check-mark.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px; 
  position:absolute;
  left: -2px;
  top: 1px;
  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: inherit;
  opacity: 0.7;
}

.form-control::-moz-placeholder {
  color: inherit;
  opacity: 0.7;
}

.form-control:-ms-input-placeholder {
  color: inherit;
  opacity: 0.7;
}

.form-control::-ms-input-placeholder {
  color: inherit;
  opacity:0.7;
}

.form-control::placeholder {
  color: inherit;
  opacity:0.7;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e2e2e2;
  border-color: #c7c7c7;
}
.select-block.small{
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 35px;
  margin-left:10px; 
}
.select-block.small:before{
  content: '';
  position: absolute;
  top: 0;
  right:10px;
  bottom: 0;
  width: 14px;
  background-image: url(../img/icons/iocn-sort-down.svg);
  background-size: 10px;
  background-position:center center ;
  background-repeat: no-repeat;
} 
 
.custom-select{
  height: 40px;
  line-height: 40px;
  padding: 0 30px 0 10px;
  font-size: 16px;
  border-radius: 0; 
  border: 1px solid #d0cecc;
  font-family: inherit;
  color:inherit;
}

 
span.error{
  font-family: inherit;
  font-size: 11px;
  padding-top: 5px;
  color: red;
  display: block;   
  text-align: right;
  display: none !important;
}  
.form-control.error,
.custom-select.error{
  border-color: red
}
.form-control.error:focus,
.custom-select.error:focus {
    box-shadow: 0 0 0 .2rem rgba(255,5,5,.25);
}
 
.btn{
  padding: 0 40px;
  position: relative;
  
  border-radius: 5px;
  border:0;
  height:42px;
  line-height: 42px; 
  font-family:inherit; 
  font-weight: 600;
  font-size:18px;
  color: #1F1F1F;
  overflow: hidden;  
  background-color: #FBB146;

  -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.rounded{ border-radius: 15px  !important } 

.btn .icons{ vertical-align: middle;}
 
.pc .btn:hover{
  background-color: #FFC064;
  border-color: #FFC064;
  color: #1F1F1F;
}
.btn-black{
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.pc .btn-black:hover{
  background-color: #303030;
  border-color: #303030;
  color: #ffffff;
}
  

.btn.btn-sm{
  height: 40px;
  line-height: 40px;
  padding: 0 30px;
}

.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;
}  
.btn.btn-lg{
  height: 70px;
  line-height: 73px;
  font-size: 28px;
  font-weight: 700;
  padding: 0 50px;
}
.btn.btn-lg .icon-phone{
  margin: -3px 8px 0 0;
}
.btn.btn-md{
  border-width: 3px;
  height: 62px;
  line-height:57px;
  font-size: 20px;
  font-weight: 600;
}
.btn.btn-md svg{ height: 16px; }

.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;
  padding-top: 50px;
  padding-bottom: 20px;
}
.buttons .btn{ margin:0 5px  }

svg path,
svg rect,
svg line,
svg circle,
svg polygon{ 
  -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
}

.icon-phone{
  width: 21px;
  height: 21px;
  background-image: url(../img/icons/icon-phone.svg);
}

 
/**/

.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;    
 
}   
@media (min-width: 1920px) {
  .page{
    width: 100%;
    /* max-width: 1920px;  */
  }
}
@media (min-width: 1025px) {
  .page{padding-top: 0 !important}
}
 
.container-fluid{ ;  
  max-width:100%;
  padding-left:50px;
  padding-right:50px;
  position: relative; 
}

.container{
  max-width:100%;
  padding-left: 140px;
  padding-right:140px; 
  position: relative;
  z-index: 9
}
@media (max-width:1366px) {
  .container{
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1199px) {
  .container{
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 991.98px) {
  .container,
  .container-fluid{
    padding-left: 30px;
    padding-right: 30px;
  }
}
@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  }
 
/*==================================================
    Header Setup
==================================================*/  

.header{
  display: block;
  position: fixed;
  padding:0;
  top: 0;
  left: 0;
  right: 0;
  padding:0; 
  z-index: 1020; 
     
  border-bottom: 1px solid transparent;
  background-color: #000;
}  

.pc .modal-open .header{
    padding-right: 17px
}
 

.header-inner,
.navbar-brand,
.navbar-main,
.nav-main li a,
.header::before{
   -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;
}

.header .col-left{}
.header .col-right{ position: static; text-align: right; }

.header:before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom:-3.12vw;

  background-repeat: no-repeat;
  background-size:100%;
  background-position: bottom center;
  background-image: url(../img/header-texture.png); 
}

.navbar-brand img{
  width: 100%
}

.btn-booknow{
  text-transform: uppercase;
}
 
/*==================================================
    Section - menu mobile
==================================================*/ 
    
.preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 1022;
} 


.btn-icon{
  padding: 0;
  background-color: transparent !important;
  width:auto; 
  height: 30px;
  line-height: 30px; 
  display: inline-block;
  vertical-align: middle;
  z-index: 9; 

  position: absolute;
  top: 18px;
  right: 30px;
 
}
.btn-icon:before{display: none;}

.btn-icon .group{
  display: block;
  position: relative;
  width: 27px; 
  height:20px;
  margin: -1px auto 0
}
.btn-icon .group span{ 
  height: 2px;
  background:#000000;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-transform-origin: 25px, 1px;
  -ms-transform-origin: 25px, 1px;
  transform-origin: 25px, 1px
}

.btn-icon .group span:nth-child(1) {
    top: 0;
    -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}

.btn-icon .group span:nth-child(2) {
    top: 8px; 
    -webkit-transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.175s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}

.btn-icon .group span:nth-child(3) {
    top: 16px;
    -webkit-transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0s cubic-bezier(0.72, 0.01, 0.28, 0.98)
}


.btn.btn-icon.circle .group span:nth-child(1){
    -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: rotate(45deg) translate3d(10px, 10px, 0);
    transform: rotate(45deg) translate3d(10px, 10px, 0)
}

.btn.btn-icon.circle .group span:nth-child(2){
    -webkit-transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.21s 0.25s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: scaleX(0) translateZ(0);
    transform: scaleX(0) translateZ(0)
}

.btn.btn-icon.circle .group span:nth-child(3) {
    -webkit-transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    transition: transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98), -webkit-transform 0.33s 0.45s cubic-bezier(0.72, 0.01, 0.28, 0.98);
    -webkit-transform: rotate(-45deg) translate3d(1px, -2px, 0);
    transform: rotate(-45deg) translate3d(1px, -2px, 0)
}

.page-blocker {}
 

/*==================================================
    Responsive media queries
================================================*/
.scrolling .header{} 

@media (min-width: 768px){
 
  .header .btn.btn-booknow{ 
    font-size: 18px;
    height: 45px;
    line-height: 48px;
    padding: 0 20px;
  }
  .header .btn.btn-booknow .icon-phone{
    width: 17px;
    height: 17px;
  } 

  .navbar-brand{
    width:210px;
    position: relative;
    z-index: 9
  }
}
@media (min-width: 992px){
  .btn-icon,
  .btn-icon-close,
  .header .float-right{display: none;}

  .section-target .id-target#section1{top: -85px}
  .section-target .id-target#section2{top: -85px}
  .section-target .id-target#section3{top: -7.5vw}
  .section-target .id-target#section4{top: -4.4vw}
  .section-target .id-target#section5{top: -7.7vw}
   
  .header{ padding: 30px 0 10px; } 
  .nav-panel{
    padding: 0 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    -ms-flex-align:center !important;
    align-items:center !important;

    height: auto !important;
  }
  .nav-menu{    
   display: block;
   margin: 5px auto 0;
   padding-left: 4vw;
   font-size: 0;
  }
  .nav-menu .nav-item{
    padding:0 0;
    display: inline-block;
    vertical-align: top;
  }
  .nav-menu .nav-item a{
    display: block;
    padding: 0 10px;
    height: 47px;
    line-height: 47px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color:#171717;
  }
  .nav-menu .nav-item a span{
    display: block;
    position: relative;
    padding: 0 5px;
  }
  .nav-menu .nav-item a.active,
  .pc .nav-menu .nav-item a:hover{ color:#FBB146 }
 
}  
@media (min-width: 1200px){

   .nav-menu .nav-item a{padding: 0 15px;}
}
@media (min-width: 1250px){
  .section-target .id-target#section1{top: -85px}
  .section-target .id-target#section2{top: -115px}
  .section-target .id-target#section3{top: -6.5vw}
  .section-target .id-target#section4{top: -2.4vw}
  .section-target .id-target#section5{top: -7.7vw}

  .header .btn.btn-booknow{ 
    font-size: 20px;
    height: 55px;
    line-height: 58px;
    padding: 0 30px;
  }
  .header .btn.btn-booknow .icon-phone{
    width: 21px;
    height: 21px;
  }
  .nav-menu .nav-item a{
    font-size: 20px;
    
  }
  .navbar-brand{width: 240px;}
}
@media (min-width: 1301px){
  .nav-menu .nav-item a{
    padding: 0 20px;
  } 
   
}
@media (min-width: 1441px){
  
  .header .btn.btn-booknow{ 
    font-size: 24px;
    height: 65px;
    line-height: 68px;
    padding: 0 40px;
  }
  .header .btn.btn-booknow .icon-phone{
    width: 21px;
    height: 21px;
  }
  .nav-menu .nav-item a{
    font-size: 24px;
  }
  .navbar-brand{width: 300px;}

  .section-target .id-target#section1{top: -85px}
  .section-target .id-target#section2{top: -145px}
  .section-target .id-target#section3{top: -75px}
  .section-target .id-target#section4{top: -30px}
  .section-target .id-target#section5{top: -110px}
}
 
@media (min-width: 1681px){
  .section-target .id-target#section1{top: -95px}
  .section-target .id-target#section2{top: -185px}
  .section-target .id-target#section3{top: -95px}
  .section-target .id-target#section4{top: -40px}
  .section-target .id-target#section5{top: -110px}
  .navbar-brand{width: 330px;}
  .nav-menu{ padding-left: 0 }
  .nav-menu .nav-item a{
    font-size: 28px;
  }
 
  .header .btn.btn-booknow{ 
    font-size: 28px;
    height: 70px;
    line-height: 73px;
    padding: 0 50px;
  }
  .header .btn.btn-booknow .icon-phone{
    width: 21px;
    height: 21px;
  }
}

/*Mobile*/

@media (max-width: 991.98px){
  .btn.btn-icon-close{
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0 !important;
    border:0 !important;

    position: absolute;
    opacity: 0;
    right: 24px;
    top: 13px;
     overflow: visible; 
     z-index: 999;

    background-color:transparent !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icons/btn-icon-close.svg);

    -webkit-transition: all 1.2s cubic-bezier(.19,1,.22,1) .5s;
    -moz-transition: all 1.2s cubic-bezier(.19,1,.22,1) .5s;
    -o-transition: all 1.2s cubic-bezier(.19,1,.22,1) .5s;
    transition: all 1.2s cubic-bezier(.19,1,.22,1) .5s;
  }

  .nav-opened .btn-icon-close{opacity: 1}

  .nav-panel{display: none;}
  .header{ padding: 20px 0 10px; } 
  .header .btn.btn-booknow{ margin-right:55px;  }

  .nav-panel{
    position: fixed;
    top: 0;
    left: 0;
    right:-100%; 
    /*bottom: 0;8*/ 
    bottom: 0;
    width: 100%;
    background-color:#FBB146;
    z-index: 5;

    display: flex;
     -ms-flex-align: center;
    align-items: center ;

     opacity: 0;
     visibility: hidden;
    -webkit-transition: all 1s cubic-bezier(.19,1,.22,1) .5s;
    -moz-transition: all 1s cubic-bezier(.19,1,.22,1) .5s;
    -o-transition: all 1s cubic-bezier(.19,1,.22,1) .5s;
    transition: all 1s cubic-bezier(.19,1,.22,1) .5s;
  }
  .nav-opened .nav-panel{
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s;
    right:  0;
  }
  .nav-panel .nav{
    display:block;
    width: 100%;
    padding: 0 40px;
    margin:-12vw auto 0;
    list-style: none;
    text-align: center;
  }
  .nav-panel .nav li{
    display: block;
    padding: 0;
    margin: 0;
    position: relative;

    /* -webkit-backface-visibility: hidden;
      -webkit-transform: translateZ(0) scale(1.0, 1.0);
      transform: translateZ(0);*/
      -webkit-transition: all 1000ms linear;
    -moz-transition: all 1000ms linear;
    -o-transition: all 1000ms linear;
    transition: all 1000ms linear;
   /* filter: blur(20px);*/
    opacity: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transform: translateZ(0) scale(1.0, 1.0);
      transform:translateZ(0) scale(1.0, 1.0);
  }
  .nav-panel .nav li a{
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    color:#1F1F1F;
    opacity: 1 !important;

    font-size: 40px;
    font-weight: 700; 
    line-height: 1.8;
    text-transform: uppercase;

     
  }
  .nav-panel .nav li:hover a{ color: #fff; 
  -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;  
  }
  .nav-panel .nav li.active a{ }

  .nav-opened .nav-panel .nav li  {
      opacity: 1;
  }
   
  .nav-panel .nav li.nav-followus{ padding-top: 7vw }
  .nav-panel .nav li.nav-followus a{
    padding: 0;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
  }
  .nav-panel .nav li.nav-followus a img{
    width:55px;
    height: 55px;
  }

  .nav-panel .nav li.nav-booknow{
    position: absolute;
    left: 60px;
    right: 60px;
    bottom:60px;
  }
  .nav-panel .nav li a.btn-device-booknow{
    background-color: #000;
    color: #fff;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    width: 100%;
  }
  a.btn-device-booknow .icon-phone-w{
    position: absolute;
    left: 40px;
    top: 17px;
    width:28px;
    height: 28px;
    background-image: url(../img/icons/icon-phone-w.svg);
  }
}

@media (max-width: 767px){

  .btn-icon{
    right: 24px;
    top: 12px
  }

  .btn-icon .group{
    width: 22px;
  }

  .btn-icon .group span:nth-child(2) {
    top: 6px; 
  }
  .btn-icon .group span:nth-child(3) {
    top: 12px; 
  }

  .btn.btn-icon-close{
    width: 30px;
    height: 30px;
    top: 8px;
    right: 18px;
  }
  /*.btn.btn-icon.circle{
    right: 23px;
    top: 13px;
  }
  .btn.btn-icon.circle::after{
    top: -2px;
    left: -11px;
    width: 30px;
    height: 30px;
  }
  .btn.btn-icon.circle .group{
    width: 16px;
  }

  .nav-opened .btn-icon .group span:nth-child(1){
    -webkit-transform: rotate(45deg) translate3d(8px, 6px, 0);
    transform: rotate(45deg) translate3d(8px, 6px, 0)
  }

  .btn.btn-icon.circle .group span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate3d(-1px, 1px, 0);
    transform: rotate(-45deg) translate3d(-1px, 1px, 0)
  }
*/
  .header .btn.btn-booknow{ margin-right:43px  }

  .header{ padding: 10px 0 0px; } 

  .header::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    background-color: #fff;
  } 
  .header .container-fluid{ z-index: 9 }
  .header .btn.btn-booknow{ 
    font-size: 12px;
     height: 30px;
    line-height: 33px;
    padding: 0 20px;
    margin-top:-1px; 
  }
  .header .btn.btn-booknow .icon-phone{
    width: 13px;
    height: 13px;
    top: -1px;
    margin-right:4px; 
  } 

  .navbar-brand{
    width:180px;
    position: relative;
    z-index: 9
  }

  .nav-panel .nav{ margin-top: -18vw; }
  
  .nav-panel .nav li a{
    font-size: 30px;
  }
  .nav-panel .nav li.nav-followus a{
    padding: 0 15px;
  }
  .nav-panel .nav li.nav-followus a img{
    width: 40px;
    height: 40px;
  }

  .nav-panel .nav li.nav-booknow{
    position: absolute;
    left: 40px;
    right: 40px;
    bottom:40px;
  }
  .nav-panel .nav li a.btn-device-booknow{
    background-color: #000;
    color: #fff;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
    width: 100%;
  }
  a.btn-device-booknow .icon-phone-w{
    width: 22px;
    height: 22px;
    left: 20px;
    top: 19px
  }

  @media (max-height: 576px){
    .nav-panel .nav{ margin-top: 0 }
    .nav-panel .nav li a{
      font-size: 16px;
    }
    .nav-panel .nav li.nav-followus{ padding-top: 10px; }
    .nav-panel .nav li.nav-followus a {
      padding: 0 5px
    }
    .nav-panel .nav li.nav-followus a img{
      width: 25px;
    }
    .nav-panel .nav li.nav-booknow{ display: none; }

    .nav-panel .nav li.nav-booknow{ display: none !important; }
  }
}
@media (max-width: 576px){
  .header{ padding: 10px 0 5px; }
  .header .btn.btn-booknow{
    padding: 0 10px;
  }
  .navbar-brand{
    width:140px; 
  } 

  .nav-panel .nav li a{
    font-size: 26px;
  }
  .nav-panel .nav li.nav-followus a{
    padding: 0 12px;
  }
  .nav-panel .nav li.nav-followus a img{
    width: 37px;
    height: 37px;
  }
}
@media (max-width: 350px){
  .container-fluid, .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-icon{ right: 20px; top: 10px}
  .navbar-brand {
    width: 123px;
  }
  .header .btn.btn-booknow .icon-phone {
    width: 10px;
    height: 10px;
    top: 1px;
    margin-right: 4px;
  }
}
/*==================================================
    Section - setup
==================================================*/ 

.navbar .container, 
.navbar .container-fluid, 
.navbar .container-lg, 
.navbar .container-md, 
.navbar .container-sm, 
.navbar .container-xl{
  display: block;
}
 

.section{
  display: block;
  position: relative;  
  padding:130px 0 ;
 }  

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

  pointer-events: none; 
}

.section-title{
  display: block;
  position: relative; 
  text-align: center;
  padding-bottom: 80px 
} 
.section-title h2{
  font-size: 80px;
  color: #051D6B;
  font-family: 'Lora', serif;
  font-weight: 600
}
.section-title h3{
  font-size: 54px;
  color: #051D6B;
  font-family: 'Lora', serif;
  font-weight: 600
}
.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;}
 
.hgroup{
  display: block; 
  position: relative;
}
 
.row.space-0{ margin:0}
.row.space-0 > div{ padding:0}

.row.space-10{ margin:0 -10px}
.row.space-10 > div{ padding:0 10px}
 
.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 }

.card{
  border:0;
  border-radius: 0;
}
.card-photo{
  display: block;
  position: relative;
  overflow: hidden;
  background-color:#000;
}
 .card-photo .photo{
  display: block;
  transform: scale(1.02);   

  -webkit-transition: all 0.3s ease-in-out;
   -moz-transition: all 0.3s ease-i.n-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 img{ width: 100% }
.pc .card-photo:hover .photo{transform: scale(1.1); opacity: 0.7}

/*==================================================
    Section - banner
==================================================*/ 
.section-banner{
  height: 95vh; 
  min-height: 600px;
  padding:0 0 0 !important;
  overflow: hidden;
}
.section-banner #tubular-container{ 
  margin-top: 3vw;
  height: 100vh !important 
}

@media (max-width: 1366px) {
  .section-banner{ height: 93.5vh  }
  .section-banner #tubular-container{margin-top: 2.8vw;}
}

.scrolldown{
  position: absolute;
  right: 50px;
  bottom: 60px;
  width: 36px;
  z-index: 99;
  cursor: pointer;
  padding-bottom: 27px;
  cursor: pointer;
  
}
.scrolldown:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 36px;

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../img/icons/icon-arrow-down.svg);

  opacity: 0.6;
  -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;
}
.scrolldown .text{
  width: 10px;
  height: 10px;
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);

  opacity: 0.6;
  -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 .scrolldown:hover:after,
.pc .scrolldown:hover .text{ opacity: 1 }

/*==================================================
    Section - Experience
==================================================*/
.section-experience{
  background-color: #ffffff; 
  z-index: 9;
}

.section-experience .container{
  position: relative;   
}
 
.section-experience .background{
  height: 200px;
  background-size: 100%;
} 
.section-experience .background.top{
  top: -2vw;
  bottom: auto;
  background-position: top center
}
.section-experience .background.bottom{
  top: auto;
  bottom: -2vw;
  background-position: bottom center
}

.section-title.experience{
  padding: 0
}
.section-title.experience{
  position: relative;  
  z-index: 99
}


.section-title.experience h2{
  font-size:62px; 
  position: absolute;
  top: 310px;
  left:-22px;
  width: 20px;
  height: 20px;
}
.section-title.experience h2 span{
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}


.section-experience .swiper-overflow {
  padding-left: 130px;
  position: relative;
}
.section-experience .swiper-overflow .texture{
  position: absolute;
  top: -2px;
  left:-180px;
  bottom: -2px;
  width: 310px;
  background-color: #fff;
  z-index: 9;
  overflow: hidden;
}
.section-experience .swiper-overflow .texture:after{
  content: '';
  position: absolute;
  top: 0;
  left: -140px;
  width: 600px;
  height: 322px;

  background-image: url(../img/experience-texture-title.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.swiper-experience{
  overflow: visible;
  margin-bottom:30px 
}
.device .swiper-experience{ pointer-events: none !important; }
.swiper-button{ 
   -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;
}
.swiper-button.swiper-button-disabled{
  opacity: 0.4 !important;
  display: block !important;
}

.swiper-button.circle{
  top: auto;
  margin-top:0 ;
  width: 62px;
  height: 62px;
  bottom: -110px;
}

.swiper-button-prev.experience{
  left: auto;
  right: 85px;
  background-image: url(../img/icons/icon-arrow-circle-prev.svg);
}
.swiper-button-next.experience{
  left: auto;
  right: 0;
  background-image: url(../img/icons/icon-arrow-circle-next.svg);
}

/*==================================================
    Section - Why tuktukboat
==================================================*/

.section-tuktukboat{ padding-bottom: 50vw !important }
.section-tuktukboat .section-title{ margin-bottom: 20px }
.section-tuktukboat .background.static{ 
  top: auto; 
}
.texture-logo-1{ display: block; }
.texture-logo-1 img,
.texture-logo-2 img,
.texture-logo-3 img{
  position: absolute;
}
.texture-logo-1 img{
  width: 9vw;
  right: 8vw;
  bottom: 31vw;
}
.texture-logo-2 img{
  width: 11vw;
  left: 26.7vw;
  bottom: 30.5vw;
}
.texture-logo-3 img{
  width: 7vw;
  left: 7.5vw;
  bottom: 15vw;
}

@media (min-width: 992px) {
  .swiper-tuktukboat .swiper-wrapper{
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;

    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .swiper-tuktukboat .swiper-slide{
    padding: 0 15px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 0 !important
  }
  .swiper-tuktukboat .swiper-slide.swiper-slide-duplicate{display: none !important;}

  .swiper-button.tuktukboat,
  .swiper-pagination.tuktukboat { display: none;}
}

.tuktukboat-item{
  position: relative;
  display: block;
  padding-left: 170px;
  min-height: 170px;
  margin-bottom: 60px;
}
.tuktukboat-item .icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
}
.tuktukboat-item .icon img{ width: 100% }

.tuktukboat-item .wrap{
  display: block;
  padding-left: 40px;
  padding-right: 40px;
}

.tuktukboat-item h3{
  font-size: 42px;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: #051D6B;
  margin-bottom: 10px
}
.tuktukboat-item .font-xs{
  font-style: italic;
  font-size: 18px;
}
/*==================================================
    Section - Service
==================================================*/


.section-service{
  background-color: #fff;
  margin-top:-100px;  
}
.section-service .background {
    
    background-size: 100%;
}
.section-service .background.top {
    height: 200px;
    top:-4vw;
    bottom: auto;
    background-position: top center;
}
.section-service .background.bottom {
    height: 40vw; 
    top: auto;
    bottom: 0;
    background-position: top center;
    z-index: 6
}
.section-service .background.left {
    width: 52vw; 
    height: 52vw;
    top: auto;
    bottom:10vw;
    background-size: contain;
    background-position: bottom left;
}

.section-service .button{
  display: block;
  text-align: center;
  padding-top: 70px;
}

.service-lotus-1 img,
.service-lotus-2 img,
.service-lotus-3 img{
  position: absolute;
}
.service-lotus-1 img{
  width: 26vw;
  top: -19vw;
  right: 18vw;
}
.service-lotus-2 img{
  width: 13vw;
  top: 0;
  left: 8vw;
}
.service-lotus-3 img{
  width: 11vw;
  top: -7vw;
  left: 0;
}

.section-title.service{ 
  margin-top:-100px; 
}
.section-title.service h2{
  position: relative;
  z-index: 9
}
.section-title.service .texture{
  position: absolute;
  top: -100px;
  left: 50%;
  width: 510px;
  height: 350px;
  margin-left:-274px; 

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;

  background-image: url(../img/service-texture-title.svg);
}

.service-info {
  display: block;
  margin: 50px auto 16vw;
  width: 100%;
  max-width: 1050px;
}
.service-info .row{margin: 0;}
.service-info .row > div{padding: 0;}

.table-bordered.table-service{
  border:0;
}
.table-bordered.table-service.left{
  border-right: 0
}
.table-bordered.table-service.right{
  margin-left: -1px;
}
.table-bordered.table-service td, 
.table-bordered.table-service th{
  border:1px dashed #1F1F1F;
}
.table-bordered.table-service tr.r1 td, 
.table-bordered.table-service tr.r1 th{ border-top: 0 }

.table-service tr th{ border-top: 0 !important}

.table-service tr th,
.table-service tr td{
  text-align: center;
  padding: 25px 0;
  vertical-align: middle;
}
.table-service tr th .icon{
  display: inline-block;
  vertical-align:middle;
  margin: -7px 7px 0 0
}
.table-service tr.r3 th,
.table-service tr.r3 td{ height: 190px }
.table-service tr th{
  background-color:#051D6B;
  color: #fff;
  font-size: 42px;
  font-family: 'Lora', serif;
  padding: 40px 0;
  font-weight: 600;
}
.table-service h2{
   font-family: 'Lora', serif;
   font-size: 36px;
   font-weight: 600;
   color: #051D6B;
}
.table-service h3{
   font-family: 'Chakra Petch', sans-serif;
   font-size: 46px;
   font-weight: 600; 
} 
.table-service p{
  margin: 0
}

.table-service .btn{
  text-transform: none;
  font-weight: 600;
  margin: 10px 0
}
.table-service .btn .icon{
  display: inline-block;
  width: 26px;
  height: 26px;
  margin:-7px 7px 0 0 
}
.modal-backdrop{ background-color: #fff; }
.modal-backdrop.show{ opacity: 1 }

.btn-modal-close{
  width: 40px;
  height: 40px;

  position: fixed;
  top: 30px;
  right:50px;
  padding: 0;
  z-index: 10;

  cursor: pointer;

  border:0 !important;
  background-color: transparent !important;

  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icons/icon-close-blue.svg);
}
.pc .btn-modal-close:hover{ opacity: 0.7 }
.modal.fade .modal-dialog{transition: none !important}

 
.modal.modal-service {
  display: none; 
  z-index: 0; 
}
.modal-open .modal.modal-service.show{
  z-index: 1050; 

}
.modal-service .modal-dialog{
  max-width: 1280px;
  transition: none !important
}
.modal-service .modal-content{
  border:0;
}
.modal-service .section-title h3{
  position: relative;
  z-index: 9;
  margin: 50px 0;
}
.modal-service .section-title svg.steering,
.modal-service .section-title svg.clock{
  width: 45px;
  height: 45px;
  display: inline-block;
  margin:-8px 10px 0 0;
}
.modal-service .section-title svg path{ fill: #051D6B }

.modal-service .section-title .texture{
  position: absolute;
  top: -140px;
  left: 50%;
  width: 436px;
  height: 300PX;
  margin-left: -322px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
  background-image: url(../img/peopletalk-texture-title.svg);
} 
.modal-service .article p{ 
  margin: 0 0 40px
}
.modal-service .article p.bold{
  font-weight: 700 !important;
  color: #051D6B;
}
.modal-service .article .img{
  margin: 50px auto 70px;
  display: block;
  max-width: 100%;
  width: 100%;
}
.modal-service .article h4{ font-size: 26px; font-weight: 700; color:#051D6B; margin-bottom: 20px; }
.modal-service .article strong{ font-weight: 700; }
.modal-service .article .pink{color:#ff3897}
.modal-service .article .img.mw-700{ max-width: 700px; }

.modal-service .table-responsive-lg{ margin:40px 0 }
.modal-service .table.hourly{
  width: 100%;
  margin: 0 0;
  text-align: center; 
}
.modal-service .table.hourly tr th{
  background-color:#051D6B;
  color: #fff;
  font-weight: 600;
  font-size: 23px;
}
.modal-service .table.hourly tr th,
.modal-service .table.hourly tr td{
  padding: 20px 20px;
  font-weight: 600;
}
.modal-service .table.hourly tr th .icon{ width: 50px; height: 50px; display: block; margin: 0 auto 10px }
.modal-service .table.hourly tr th .icon img{ width: 100% }
.modal-service .table.hourly tr td .star{ color:#FBB146 }
.modal-service .table.hourly tr td .font-light{ font-weight: 300; display: block; }
.modal-service .table.hourly tr td .recommend{
  position: relative;
  font-size: 20px; 
}
.modal-service .table.hourly tr td .recommend{
  background-size:18px;
  background-position: 0 4px;
  background-repeat: no-repeat;
  background-image: url(../img/icons/icon-star.svg); 
  padding: 0 0 0 25px;
}
.modal-service .table.hourly .col_1{ width: 13% }
.modal-service .table.hourly .col_2, 
.modal-service .table.hourly .col_3,
.modal-service .table.hourly .col_4{ width: 23% } 
.modal-service .table.hourly .col_5{ width: 17% }

.modal-service ul.note-list{
  margin: 40px 0;
  padding: 0;
  list-style-type: none;
}
.modal-service ul.note-list li{
  display: block;
  position: relative;
  font-size: 20px;
  padding: 5px 0 5px 24px;
}
.modal-service ul.note-list li:before{
  content: '*';
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 32px;
}
.modal-service ul.note-list strong{
  font-weight: 600;
  text-decoration: underline;
}
.modal-service ul.note-list li.highlight{
  color: #FBB146;
  font-weight: 600;
}
.modal-service ol.number {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

.modal-service ol.number > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

.modal-service ol.number > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 15px;    
}
.modal-service .table.fasttrack{ margin-bottom: 0 }
.modal-service .table.fasttrack tr th{
  background-color:#051D6B;
  color: #fff;
  font-weight: 600;
  font-size: 23px;
}
.modal-service .table.fasttrack tr th,
.modal-service .table.fasttrack tr td{
  padding: 20px 20px;
  font-weight: 600;
}
.modal-service .table.fasttrack tr td{ padding-top: 10px; padding-bottom: 10px; }
.modal-service .table.fasttrack tr th.col_2,
.modal-service .table.fasttrack tr th.col_3{ width: 38% }

.modal-service .table.fasttrack .icon-bts{ width: 25px; display: inline-block; }
.modal-service .table.fasttrack .icon-mrt{ width: 29px; display: inline-block; }

.modal-service .icon-star{
  width: 15px;
  height: 15px;
  background-image: url(../img/icons/icon-star.svg);
  vertical-align: middle;
  margin:-5px 10px 0 0; 
}

.modal-service .video-group{
  max-width: 850px;
  margin:50px auto 
}

/*==================================================
    Section - Facilities
==================================================*/
.section-facilities{
  margin-top:-15vw; 
  padding-bottom: 8vw

}
.section-facilities .background.top{
  background-size: 100%;
  background-position: top center;
  z-index: 5
}
.section-facilities .background.bottom{
  background-size: 100%;
  background-position: bottom center;
  top: auto;
  bottom:0vw;
  height: 10vw; 
}
.section-facilities .background.bottom:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom:100px;
  top:-20vw;
  background-color: #1b2770;
}

.section-title.facilities h2{
  color: #fff;
}
.section-title.facilities h5{
  color: #F9B83B;
  font-weight: 500;
  font-size: 36px;
  margin:20px 0  2px
}
.section-title.facilities p{
  color: #fff;
}
.facilities-wrap{ margin-top:-10px; margin-bottom: 30px  }
.facilities-wrap .row{ margin:0 -10px; }
.facilities-wrap .row > div{ padding: 0 10px; }
.card-facilities{
  position: relative;
  margin: 20px 0;
}
.card-facilities .card-body{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 30px; 
  pointer-events: none;
}
.card-facilities .card-body:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 400px;
  pointer-events: none;

  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
  background-image: url(../img/thumb/facilities-shadow.png);
}
.card-facilities .card-body h2{
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  z-index: 9
}
.card-facilities.lg{
  height: calc(100% - 40px)
}
.card-facilities.lg .card-photo,
.card-facilities.lg .card-photo .photo{ height: 100%; }
.card-facilities.lg .card-photo img{ display: none; }

/*==================================================
    Section - About us
==================================================*/
.section-aboutus{
  margin-top:-5vw;
  z-index: 10
}
.section-aboutus .background{
  background-position: bottom center;
  background-size: 100%;
}
.section-aboutus .background.left{
  top: auto;
  left: 0;
  bottom: -11vw;
}
.section-aboutus .background.left img{
  width: 42vw
}

.section-aboutus .background.right{
  top: auto;
  left: auto;
  right: 0;
  bottom:-8vw;
}
@media (max-width: 1700px) {
  .section-aboutus .background.right img{
    display: inline-block;
    width: 28vw 
  }
}

.about-lotus-1 img,
.about-lotus-2 img{
  position: absolute;
}
.about-lotus-1 img{
  width: 13vw;
  left: 5vw;
  bottom: -12vw
}
.about-lotus-2 img{
  width: 10vw;
  left: 25vw;
  bottom: -10vw;
}

.section-title.aboutus{
  margin-top:50px;
}
.section-title.aboutus h2{
  position: relative;
  z-index: 9;
} 
.section-title.aboutus .texture {
  position: absolute;
  top: -70px;
  left: 50%;
  width: 400px;
  height:300px;
  margin-left:-175px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
  background-image: url(../img/aboutus-texture-title.svg);
}

.section-aboutus .article{ 
  line-height: 1.7;
  display: block; 
  text-align: center;
  margin:0 auto 7vw; 
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.section-aboutus .article .button{
  display: block;
  padding: 20px 0 0 0;
}

.btn.btn-xl{
  height: 87px;
  line-height: 87px;
  font-size: 28px;
  font-weight: 700;
  padding: 0 40px 0 35px
}
.btn.btn-xl .icon{
  display: inline-block;
  vertical-align: middle;
  margin: -4px 7px 0 0;
}
.btn.btn-xl .icon.pin{ width: 35px; }
.section-aboutus .article p{ margin-bottom:30px  }
.section-aboutus .article p:last-child{ margin-bottom:0  }

.service-info .btn-xl{ width:363px; padding: 0}

.section-aboutus.video {
  margin-top:-7vw;
  z-index: 9;
  padding-bottom:3vw
}
.section-aboutus.video .background.main{
  background-position: top left;
  background-size: 85vw;
}
.section-aboutus.video .background.bottom{
  background-position: bottom left;
  background-size: 100%;

  top: auto;
  bottom: -7.2vw;
  height: 10vw;
}
.section-aboutus.video .background.right{
  background-position: bottom left; 
}
.section-aboutus.video .background.right img{
  width: 27vw
}

.video-clip{
  display: block;
  padding-top: 100px;
}
.video-clip .section-title{ padding-bottom: 50px }

.swiper-overflow{ position: relative; }

.swiper-video{
  width: 100%;
  max-width:820px;
  margin: 0 auto 
}

.swiper-pagination{
  position: relative;
  left: 0;
  right: 0;
  text-align: center;
  padding: 50px 0 0
}
.swiper-pagination .swiper-pagination-bullet{
  width: 18px;
  height: 18px;
}

.swiper-button:not(.circle){ 
  width: 72px;
  height: 72px;
  margin-top:-36px;  
  top: calc(50% - 40px)
}

.swiper-button-prev:not(.circle){ 
  left: 0;
  background-image: url(../img/icons/icon-arrow-prev.svg);
}
.swiper-button-next:not(.circle){ 
  right: 0;
  background-image: url(../img/icons/icon-arrow-next.svg);
}

.video-box {
    margin: 0;
    display: block;
    width: 100%; 
    position: relative;
    background-color: #000
}

.video-box .img-hidden {
    width: 100%;
}

.video-box .youtube {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.45;
    -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;
}

.video-box .youtube .play {
    display: none;
}

.video-box .play-button {
    background-image: url(../img/icons/icon-play-button.png);
    background-size: 110px 110px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    height: 100%;
    width: 100%;
    pointer-events: none;
    display: block;
}

.video-box .video-logo {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 80px;
    display: block;
}

.video-box .video-logo img {
    width: 100%
}

.pc .video-box.playing .play-button {
    display: none;
}

.video-box.playing .video-logo {
    display: none;
}

.pc .video-box:hover .youtube {
    opacity: 0.35
}

.pc .video-box:hover .play-button {
    opacity: 1;
    filter: alpha(opacity=100);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.20%;
    /* 16:9 */
    padding-top: 0;
    height: 0;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fancybox-slide--video .fancybox-content {
  position: relative;
    padding-bottom: 56.20%;
    /* 16:9 */
    padding-top: 0;
    height: 0;

    width: 100%;
    height: auto;
    max-width: none;
    max-height: 0
}
.fancybox-slide--video .fancybox-iframe{
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.device .video-box .youtube{pointer-events: none;}
.device .youtube-device{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*==================================================
    Section - Hashtag
==================================================*/
.section-hashtag{ 
    z-index: 2
}
.section-hashtag .section-title{
  padding-top: 5vw
}
.section-hashtag .section-title h3{
  color: #ffffff;
}

.section-hashtag .background.main{ 
  background-position:bottom center
}
.section-hashtag .background.bottom{
  background-size: 100%;
  background-position: bottom center; 
}


.instagram-feed{
  display: block;
  position: relative;
  padding:0 70px 30px ;
  margin-top: -20px;
}
.instagram_gallery{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}
.instagram_gallery a{
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 12px; 
  position: relative;
}
.instagram_gallery a img{
  max-width: 100%;
 
}
.instagram_gallery a:before{
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;

  background-color: rgba(0,0,0,0);
   -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out
}
.pc .instagram_gallery a:hover:before{
  background-color: rgba(0,0,0,0.4)
}


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

.section-contact{
  margin-top: -3vw;
  padding-bottom: 0 !important
}
.section-contact .background{

}
.section-contact .section-title{
  padding: 60px 0 40px
}
.contact-box{
  display: block;
  float: right;
  width: 775px;
  background-color: #fff;
}
.contact-top{
  display: block; 
  padding: 0 75px 65px;
  font-size: 22px;
}
.contact-top h4{ 
  font-size: 28px;
  color: #1F1F1F;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-top .inner{
  display: block;
  position: relative;
  padding-left: 135px;
  padding-top: 15px;
  line-height: 1.6
}
.contact-top .logo{
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-top .logo img{ width: 100% }

.contact-top hr{
  border-top:5px solid #F9B83B;
  margin:30px 0 
}
.contact-top .time svg{
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right:8px; 
}
.contact-top .time svg path{fill:#1F1F1F}

.contact-bottom{
  background-color: #051D6B;
}
.contact-bottom .inner{
  display: block;
  padding:65px 75px 65px;
}
.contact-bottom hr{
  border-top:5px solid rgba(255,255,255,0.4);
  margin:45px 0 
}

.contact-bottom .box{ 
  position: relative;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px 0 60px
}

.contact-bottom .box .left{
  -ms-flex: 0 0 23%;
  flex: 0 0 23%;
  max-width: 23%; 
}
.contact-bottom .box .right{
  -ms-flex: 0 0 78%;
  flex: 0 0 78%;
  max-width: 78%;
}

.contact-bottom .box.phone-number{
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.4;

}
.contact-bottom .box.phone-number a{
  display: block;
}
 
.contact-bottom .box.line-contact{
  padding-top:10px; 
}
.contact-bottom .box.line-contact a.lineid{
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-top:15px; 
}
.contact-bottom .box.line-contact .right{ text-align: center;  padding-right: 100px;}

.contact-bottom .box.followus{
  display: block;
  text-align: center;
  padding-top: 20px;
  padding-left:0;
  padding-right:0
}
.contact-bottom .box.followus a{
  display: inline-block;
  vertical-align: top;
  margin: 0 20px;
}


/*==================================================
    Section - People talk
==================================================*/

.section-peopletalk {
  padding-bottom: 26vw !important
}

.section-peopletalk .background.main{
  top:-10vw;
  background-position: top center;
}

.peopletalk-texture-1 img,
.peopletalk-texture-2 img,
.peopletalk-texture-3 img{
  position: absolute;
}

.peopletalk-texture-1 img{
  left: 11vw;
  bottom: 11vw;
  width: 10vw;
}
.peopletalk-texture-2 img{
  right: -7.7vw;
  bottom: 5vw;
  width: 45vw;
}
.peopletalk-texture-3 img{
  right: 13vw;
  bottom: 22vw;
  width: 8vw;
}


.section-title.peopletalk{ margin-top: 2.5vw }
.section-title.peopletalk h2{ 
  z-index: 9 ; 
  position: relative;
  font-size: 54px;
}
.section-title.peopletalk .texture,
.section-title.partner .texture{
  position: absolute; 
  top: -140px;
  left: 50%;
  width:436px;
  height: 300PX;
  margin-left: -322px;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;

  background-image: url(../img/peopletalk-texture-title.svg);
}

.card-peopletalk{
  background-color: transparent;
  text-align: center;
  max-width: 400px;
  display: block;
  margin:0 auto; 
}
.card-peopletalk .card-photo{
  display: block;
  margin:0 auto; 
  width: 230px;
  height: 230px;
  border-radius: 50%; 
  background-color: transparent;
}
.card-peopletalk .card-photo .photo{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.card-peopletalk .card-body{
  background-color: transparent;
  padding: 30px 20px;
  font-size: 18px;
  line-height: 1.6
}
.card-peopletalk .card-body h5{
  color: #F9B83B;
  font-size: inherit;
  font-weight: 600;
}

.swiper-peopletalk{ 
  margin-top: 3vw;
  max-width: 1200px;
}
.swiper-button.peopletalk{
  top:80px;
  margin-top: 0
}


/*==================================================
    Section - Our Partner
==================================================*/

.section-partner .background{
  background-image: url(../img/header-texture.png);
  background-position: top center;
  height: 10vw;
  bottom: auto;
  top: -10vw
}

.partner-wrap{ 
  padding-top: 50px;
  text-align: center;
  -ms-flex-align: center;
  align-items: center ; 
  margin-left: auto;
  margin-right: auto; 
}
.partner-wrap img{ max-width: 270px; display: inline-block; }

.section-title h3{ position: relative; z-index: 100 }

/*========================================================
    Footer
==================================================*/
 
.footer{     
  text-align: center;
  padding:0; 
}

.footer-primary{
  display: block;
  position: relative;
  z-index: 9;
  padding: 95px 0 55px;
  overflow: hidden;
}
.footer-primary .background.top{
  background-position: bottom center;
  height: 50px;
  bottom: auto;
  z-index: 10
}
.footer-primary .background.main:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:-100px;

   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,fbb146+100&0+0,1+100 */
  background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(251,177,70,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(251,177,70,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(251,177,70,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#fbb146',GradientType=0 ); /* IE6-9 */
}
.footer-logo{
  display: block;
  position: relative;
  z-index: 9;
  width: 416px;
  margin: 0 auto;
  z-index: 9
}
.footer-logo img.i1{ 
  display: inline-block; 
  width: 156px; 
}
.footer-logo img.i2{ 
  display: block;  
  width: 100%;
  margin-top: 40px;
}

.footer-secondary{
  background-color: #000;
  font-size: 18px;
  color: #fff;
  padding: 30px 0
}
.footer-secondary p{ margin:7px 0 } 
.footer-secondary p.icidea{
  font-size: 14px;
  color: rgba(255,255,255,0.44);
}
.footer-secondary p.icidea a{color: rgba(255,255,255,0.44);}
.pc .footer-secondary p.icidea a:hover{color: rgba(255,255,255,0.9);}

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

@media (min-width: 1119px) and (max-width: 1440px) {}    
 
@media (max-width: 1680px) {
  body{font-size: 20px;}
  .section-title h2{ font-size: 70px }
  .section-title h3{font-size: 55px}

  .tuktukboat-item{ padding-left:140px; margin-bottom: 40px }
  .tuktukboat-item .wrap{ padding-right: 20px }
  .tuktukboat-item h3{ font-size: 36px }
  .tuktukboat-item .icon{ width: 140px; height: 140px; }

  .section-title.service .texture{ 
    top: -82px; 
    width: 430px;
    height: 300px;
    margin-left: -227px;
  }

  .service-info{ 
    margin-top: 35px;
    max-width: 950px; 
  }

  .table-service tr th{
    padding: 30px 0;
    font-size: 36px
  }

  .table-service h2{
    font-size: 32px
  }
  .table-service h3{
    font-size: 36px
  }

  .btn.btn-lg {
    font-size: 24px;
    height: 65px;
    line-height: 65px;
    padding: 0 40px;
  }

  .table-service .btn .icon{
    width: 22px;
    height: 22px;
    margin-top:-4px; 
  }

  .section-title.facilities h5{font-size: 32px;}
  .facilities-wrap{ margin-top: -40px }

  .section-title.aboutus .texture{ margin-left:-199px  }

  .contact-box{width: 600px}
  .contact-top h4{ font-size: 22px }
  .contact-top .logo{ width: 80px }

  .contact-top{ padding: 0 65px 40px }
  .contact-top .inner{ padding-left: 110px }
  .contact-bottom .box.phone-number{font-size: 35px}
  .contact-bottom .box.phone-number .icon img{ width: 65px }
  .contact-bottom .box.line-contact .icon img{ width: 85px }
  .contact-bottom .box.line-contact .qr-code{ width: 120px }
  .contact-bottom .box.line-contact a.lineid{font-size: 26px}
  .contact-bottom .box.line-contact .right{ padding-right: 50px }
  .contact-bottom .inner{padding: 55px 65px 55px}
  .contact-bottom hr{ margin:35px 0  }

  .contact-bottom .box .left{
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
  }
  .contact-bottom .box .right{
    -ms-flex: 0 0 73%;
    flex: 0 0 73%;
    max-width: 73%;
  }

  .contact-bottom .box.followus a{ width: 75px; height: 75px; margin: 0 15px}
  .contact-bottom .box.followus a img{ width: 100% }
}
@media (max-width: 1550px) { 
  .tuktukboat-item{ padding-left:120px; margin-bottom: 40px; min-height: 120px }
  .tuktukboat-item .wrap{padding-left: 25px }
  .tuktukboat-item h3{ font-size: 30px; margin-bottom: 3px;}
  .tuktukboat-item .icon{ width: 120px; height: 120px; }

   .btn.btn-xl{
    height: 80px;
    line-height: 80px; 
   }
 
  
  .swiper-experience{ margin-bottom:0  }
  .swiper-button.circle{
    width: 55px;
    height: 55px;
    bottom: -98px;
  }
  .swiper-button-prev.experience{ right: 75px }

  .footer-logo{ width: 280px;}
  .footer-logo img.i1{ width: 100px }
  .footer-logo img.i2{ margin-top: 30px; }
}
@media (max-width: 1450px) {
  body{ font-size: 18px }
  .section{ padding: 100px 0 }
  .section-title{ padding-bottom: 45px; }
  .section-title h2{ font-size: 55px }
  .section-title h3{font-size: 45px}

  .scrolldown{ width: 30px; }
  .scrolldown:after{ width: 30px; height: 30px; }
  .scrolldown .text{ font-size: 18px; }

  .section-title.experience h2{
    font-size: 50px;
  }
  .section-title.experience h2{ top: 246px }
  .section-experience .swiper-overflow { padding-left: 110px; }
  .section-experience .swiper-overflow .texture{ width: 290px }
  .section-experience .swiper-overflow .texture::after{
    width: 600px;
    height: 300px;
  }

  .tuktukboat-item{ padding-left:100px; margin-bottom: 40px; min-height: 110px }
  .tuktukboat-item .wrap{padding-left: 25px }
  .tuktukboat-item h3{ font-size: 27px; margin-bottom: 3px;}
  .tuktukboat-item .icon{ width: 100px; height: 100px; }

  .section-tuktukboat{ padding-bottom: 48vw !important}

  .section-service .background.top{ top: -2.3vw }
  .section-title.service{ margin-top: -50px;   }
  .section-title.service .texture {
    top: -83px;
    width: 334px;
    height: 270px;
    margin-left: -175px;
  }
  .service-info{ margin-top:45px; max-width: 860px }

  .table-service tr th,
  .table-service h3{ font-size: 32px }
  .table-service h2{font-size: 27px}

  .table-service tr th .icon{
    width: 40px;
    height: 40px;
  }
  .table-service tr th .icon.clock{
    width: 36px;
    height: 36px;
  }

  .section-title.facilities h5{font-size: 27px; margin-bottom:5px }
  .facilities-wrap{ margin-top: -20px; margin-bottom:50px;  }
  .card-facilities .card-body{ padding: 20px 20px 25px; }
  .card-facilities .card-body h2{ font-size: 20px; }

  .section-aboutus .article{ max-width: 70% }

  .section-title.aboutus .texture{
    top: -86px;
    width: 293px;
    height: 290px;
    margin-left: -130px;
  }
 
  .btn.btn-xl {
    height: 70px;
    line-height: 70px;
    font-size: 24px;
  }

  .service-info .btn-xl{ width: 300px; }
  .btn.btn-xl .icon.pin{ width: 30px }

  .contact-box{ margin-top:30px  }

  .swiper-button.circle{
    width: 45px;
    height: 45px;
    bottom: -78px;
  }
  .swiper-button-prev.experience{ right: 60px }

  .section-title.peopletalk{ margin-top: 4vw; margin-bottom:4vw; }
  .section-title.peopletalk h2{ font-size: 45px }
  .section-title.peopletalk .texture,
  .modal-service .section-title .texture{
    width: 366px;
    height:288PX;
    margin-left: -264px;
  }
  .section-title.partner .texture{
    width: 300px;
    height:317PX;
    margin-left: -231px;
  }

  .swiper-peopletalk{ max-width: 1000px }
  .swiper-pagination.peopletalk{ padding-top:30px  }
  .swiper-button.peopletalk{ top: 67px }
  .card-peopletalk .card-photo{
    width: 190px;
    height: 190px;
  }
  .card-peopletalk .card-body{ font-size: 16px }
 
  .partner-wrap img{ max-width: 230px;}

  .section-hashtag .section-title{padding-top: 7vw}
  .instagram-feed{ margin-top: 0 }
  .instagram_gallery{ margin-left: -8px; margin-right:-6px;  }
  .instagram_gallery a{ padding: 8px; }
  .instagram_gallery a::before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .modal-service ul.note-list li{font-size: 16px}

  .modal-service .table.hourly tr th .icon{ width: 40px; height: 40px;}

}
@media (max-width: 1400px) {}
@media (max-width: 1366px) {
  .section{ padding: 70px 0 } 
  .section-tuktukboat{ padding-bottom: 45vw !important}
  .section-service .background.top{ top: -3vw }

  .section-title.service{ margin-top: -30px }

  .table-service tr.r3 th, .table-service tr.r3 td{
    height: 170px
  }

  .section-contact .section-title{ padding: 45px 0 25px }
  .contact-box{width: 480px}
  .contact-top h4{ font-size: 18px;margin-bottom: 10px; }
  .contact-top .logo{ width: 65px }

  .contact-top{ padding: 0 45px 30px; font-size: 16px }
  .contact-top .inner{ padding-left: 88px }
  .contact-top hr {
    border-top: 3px solid #F9B83B;
    margin: 20px 0;
  }
  .contact-top .time svg{ width: 24px; height: 24px }
  .contact-bottom .box{ padding-left: 45px }
  .contact-bottom .box.phone-number{font-size: 27px}
  .contact-bottom .box.phone-number .icon img{ width: 47px }
  .contact-bottom .box.line-contact .icon img{ width: 64px }
  .contact-bottom .box.line-contact .qr-code{ width: 100px }
  .contact-bottom .box.line-contact a.lineid{font-size: 20px}
  .contact-bottom .box.line-contact .right{ padding-right: 50px }
  .contact-bottom .inner{padding: 55px 45px 55px}
  .contact-bottom hr{ margin:25px 0; border-top: 3px solid rgba(255,255,255,0.4)  }

  .contact-bottom .box .left{
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
  }
  .contact-bottom .box .right{
    -ms-flex: 0 0 73%;
    flex: 0 0 73%;
    max-width: 73%;
  }

  .contact-bottom .box.followus a{ width: 65px; height: 65px; margin: 0 10px}

  .swiper-experience{ margin-bottom: 45px;  }
  .swiper-button.circle{bottom: -80px;} 

  .video-box .play-button{ background-size: 90px } 
  
  .btn-modal-close{ width: 30px; height: 30px; right: 50px }
  .modal-service .modal-dialog{ max-width: 1000px }

  .modal-service .table-responsive-lg,
  .modal-service ul.note-list,
  .modal-service .article p{ margin-bottom: 30px }

  .modal-service .article .img{ margin-bottom: 40px; margin-top:40px  }

  .modal-service .table.hourly tr th, .modal-service .table.hourly tr td{
    padding-left: 10px; padding-right: 10px;
  }
  .modal-service .table.hourly tr th{font-size: 18px}
  .modal-service .table.hourly tr td .recommend{
    font-size: 15px;
    background-size: 15px;
    background-position: 0 2px;
    padding: 0 0 0 20px
  }

  .modal-service .table.fasttrack tr th{ padding-top: 10px; padding-bottom: 10px; font-size: 18px; }

} 
@media (max-width: 1280px) {
  .section-title.peopletalk {
    margin-top: 7vw;
    margin-bottom: 4vw;
  }

  .instagram_gallery{ margin-left: -5px; margin-right:-5px;  }
  .instagram_gallery a{ padding: 5px; }
  .instagram_gallery a::before {
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
  }

  .partner-wrap img{ max-width: 180px }

}  
@media (max-width: 1199px) {
  .section{ padding: 70px 0}

  .section-service .background.top{ top: -2vw }
  .section-title.service{ margin-top: 0 }

  .section-aboutus .article{  margin-bottom:14vw }

  .footer-primary{padding: 75px 0 30px;}
  .footer-secondary{ padding: 20px 0 }
}
@media (max-width: 1024px) {
  .section-banner{ 
    height: auto; 
    min-height: 0;
  } 
  .banner-video-device{
    display: block;
    position: relative;
  }
  #tubular-container,
  #tubular-shield{
    display: none !important;
  }

  .banner-video-device img{ width: 100%; }
  .section-title{ padding-bottom: 35px }
  .section-title h2{font-size: 40px}
  .section-title h3{font-size: 30px; }
  .section-title.experience {
    position: absolute;
    z-index: 99;
    top: 0;
    bottom: 0;
  }
  .section-title.experience h2{
    font-size: 35px
  }
  .section-title.experience h2{ top: 50%; left: -20px }
  .section-title.experience h2 span{ top: 70px; position: relative; }
  .section-experience .swiper-overflow { padding-left: 70px; }
  .section-experience .swiper-overflow .texture{ width: 250px }
  .section-experience .swiper-overflow .texture::after{
    width: 343px;
    height: auto;
    left: -5px;
    bottom: 0
  }
  
  .section-service{ margin-top: -10vw }
  .section-title.service .texture {
    top: -77px;
    width: 257px;
    height: 230px;
    margin-left: -139px;

  }

  .table-service tr th, .table-service h3{
    font-size: 28px
  }
  .table-service tr th, .table-service tr td{
    padding: 20px 0;
  }
  .table-service tr.r3 th, .table-service tr.r3 td{
    height: 140px
  }
  .table-service h2{ font-size: 24px }

  .btn.btn-lg {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
  }

  .btn.btn-xl {
      height: 60px;
      line-height: 60px;
      font-size: 20px;
      padding: 0 30px;
  }
  .btn.btn-xl .icon,
  .btn.btn-xl .icon.pin {
    width: 30px;
    height: 30px;
  }
  .btn.btn-xl .icon.pin { width: 25px; height: 25px }
  .service-info .btn.btn-xl{ padding: 0; width: 290px ; font-size: 23px}
  .table-service .btn .icon {
    width: 18px;
    height: 18px;
    margin-top: -3px;
  }

  .section-service .button{ padding-top: 40px; }
  .section-tuktukboat .background.static{ margin:0 -10vw 0 -17vw  }
  .section-tuktukboat {padding-bottom: 57vw !important;}

  .section-title.facilities h5{font-size: 24px;}
  .facilities-wrap{ margin-top: -15px; }
  .facilities-wrap .row{ margin: 0 -5px }
  .facilities-wrap .row > div{ padding: 0 5px; }

  .card-facilities{margin-top:10px; margin-bottom:10px;}
  .card-facilities .card-body{ padding: 10px 10px 15px }

  .card-facilities .card-body h2{ font-size: 18px }
  .card-facilities.lg {height: calc(100% - 20px);}

  .section-title.aboutus .texture{
    top: -88px;
    width: 247px;
    height: 258px;
    margin-left: -118px;
  }
 
  .section-aboutus .article{ max-width: 80%; margin-top: 20px;}

  .section-aboutus .background{
    top: 0;
    background-size: cover;
  }
  
  .section-title.aboutus{ margin-top: 30px; } 

  .video-clip .section-title{ padding-bottom:30px  }

  .section-aboutus.video .swiper-overflow{ padding: 0 70px }
  .swiper-video{ max-width: 640px; }
  .swiper-button:not(.circle){ width: 60px; height: 60px; margin-top:-30px;  }

  .swiper-experience{ margin-bottom: 25px;  }
  .swiper-button.circle{
    width: 35px;
    height: 35px;
    bottom: -65px;
  }
  .swiper-button-prev.experience{ right: 45px }

  .swiper-pagination { padding-top: 30px }
  .swiper-pagination .swiper-pagination-bullet{ 
    width: 14px; 
    height: 14px; 
    margin: 0 10px
  }

  .section-title.peopletalk h2{ font-size: 30px; }
  .section-title.peopletalk .texture ,
  .modal-service .section-title .texture {
    width: 256px;
    height: 221PX;
    margin-left: -177px;
    top: -115px;
  }

  .modal-service .section-title .texture{
    top:-102px
  }
  .modal-service .section-title svg.steering,
  .modal-service .section-title svg.clock{ width: 40px; height: 40px; }
  .section-title.partner .texture{
     width: 225px;
    height: 247;
    margin-left: -177px;
    top: -149px
  }

  .card-peopletalk .card-photo {
    width: 150px;
    height: 150px;
  }

  .modal-service .modal-body{ padding-left: 40px; padding-right: 40px; }
  .modal-service .article .img.mw-700{ max-width: 500px }

  .modal-service .article h4{font-size: 22px}

  .fancybox-navigation .fancybox-button--arrow_left{ left: 5px; }
  .fancybox-navigation .fancybox-button--arrow_right{ right: 5px; }

  .device .fancybox-navigation .fancybox-button--arrow_left,
  .device .fancybox-navigation .fancybox-button--arrow_right{display: none;}

}
@media (max-width: 991.98px) {
  .section-title p{ font-size: 16px; }

  .scrolldown{ width: 25px; right: 30px; bottom: 40px ; padding-bottom: 20px}
  .scrolldown:after{ width: 25px; height: 25px; }
  .scrolldown .text{ font-size: 16px; }

  .tuktukboat-item{
    text-align: center;
  }
  .tuktukboat-item{
    padding-left: 0
  }
  .tuktukboat-item .icon{
    position: relative;
    left: auto;
    right: auto;
    margin: 0 auto 0
  }
  .tuktukboat-item h3{ margin: 30px 0 10px }
  .tuktukboat-item .wrap{ padding: 0 100px }

  .section-facilities .background.bottom::before{
    bottom: 9vw;
  }
  .facilities-wrap{ margin-bottom:20px; }
  .card-facilities .card-body h2{ font-size: 14px; font-weight: 500; }
  .section-aboutus .article{ max-width: 90% }
  .section-aboutus .article p{ margin-bottom:20px  }
  .section-aboutus .article .button{ padding-top: 10px; }

  .section-aboutus:not(.video) .background.right img{width: 35vw; margin-right: -9.5vw;}
  .section-aboutus:not(.video) .background.left{ bottom:-18vw }
  .section-aboutus:not(.video) .background.left img{ width: 70vw;margin-left: -22.5vw; }

  .section-contact .background{
    height: 60vh;
    right: -17vw;
    bottom: auto;
    background-position: top center
  }
  .section-contact .background:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top:96%;
    height: 41vw;

    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url(../img/contact-texture.png);
  }

  .contact-box{
    margin: 45vw auto 0;
    float: none;
    width: 600px;
  }
  .contact-bottom .box {
    padding-left: 105px;
  }
  .contact-bottom .box.line-contact .right {
    padding-right: 100px;
  }

  .section-experience .container{ padding-left: 50px }
  .section-aboutus.video .swiper-overflow{ padding: 0 100px; }
  .swiper-button:not(.circle) {
    width: 50px;
    height: 50px;
    margin-top: -20px;
  }
  .video-box .play-button { background-size: 70px;}

  .swiper-peopletalk{ padding:0 40px }
  
  .section-title.peopletalk {
    margin-top: 10vw;
    margin-bottom: 8vw;
  }

  .peopletalk-texture-1 img{
    left: 0;
    bottom: 16vw;
    width: 21vw;
  }
  .peopletalk-texture-2 img {
    right: -26.7vw;
    bottom: 0;
    width: 75vw;
  }
  .peopletalk-texture-3 img {
    right: 7vw;
    bottom: 25vw;
    width: 9vw;
  }

  .section-partner .section-title{ padding-top: 5vw }
  .section-partner { padding-bottom: 3vw }
  
  .section-title.partner .texture{ top: -111px }
  .partner-wrap{ padding-top: 30px }
  .partner-wrap img{max-width: 140px;}

  .modal-service .table-responsive-lg{border:1px solid #dee2e6;}
  .modal-service .table-responsive-lg table.hourly{ width: 992px; }
  .modal-service .table-responsive-lg table.fasttrack{ width: 100%; }

  .modal-service .table.fasttrack .icon-bts{ width: 20px;}
  .modal-service .table.fasttrack .icon-mrt{ width: 23px;}

  .modal-service .video-group{margin:30px auto }


  .footer-logo{ width: 220px;}
  .footer-logo img.i1{ width: 74px }
  .footer-logo img.i2{ margin-top: 20px; }

  .footer-secondary{font-size: 16px;}

} 
@media (max-width: 767px) {
  body{ font-size: 15px } 
  
  .btn.btn-lg {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
  }

  .scrolldown{ width: 17px; right: 15px; bottom: 20px }
  .scrolldown{ width: 17px; right: 15px; bottom: 20px ; padding-bottom: 15px}
  .scrolldown:after{ width: 17px; height: 17px; }
  .scrolldown .text{ font-size: 12px; font-weight: 500 }

  .section-target .id-target{ top: -50px }

  .table-service .btn .icon {
    width: 15px;
    height: 15px;
  }
  .table-service .btn .icon{ margin-right: 4px }
  
  .section-title{ padding-bottom: 25px }
  .section-title h2{font-size: 24px}
  .section-title h3{ font-size: 20px; }
  .video-clip .section-title {padding-bottom:15px;}
  .section-experience .background.top{ top: -2vw; }
  .section-title.experience h2{
    font-size: 28px
  }
  .section-title.experience h2{ top: 48%; left: -10px }
  .section-title.experience h2 span{ top: 62px; position: relative; }
  .section-experience .swiper-overflow { padding-left: 55px; padding-right: 60px; }
  .section-experience .swiper-overflow .texture{ width: 235px }
  .section-experience .swiper-overflow .texture::after{
    width: 237px; 
    left: 60px; 
  }

  .section-experience .container{ padding-left: 25px }

  .section-tuktukboat .section-title{ margin-top: 20px; margin-bottom: 10px }
  .tuktukboat-item .icon{ width: 70px; height: 70px }
  .tuktukboat-item .wrap{ padding: 0 0 }
  .tuktukboat-item h3{font-size: 24px; margin-top: 25px; margin-bottom: 10px}

  .swiper-button:not(.circle).tuktukboat{
    top: 22px;
    margin-top: 0;
  }
  .swiper-button-prev:not(.circle).tuktukboat{left: -5px;}
  .swiper-button-next:not(.circle).tuktukboat{right: -5px;}

  .section-title.service .texture {
    top: -58px;
    width: 152px;
    height: 163px;
    margin-left: -78px;
  }

  .service-info{  
    margin:20px 5vw 20vw; 
    width: auto;
  } 
  .table-service{ margin-bottom: 20px  }
  .table-service tr th{
    font-size: 20px;
  }
  .table-service tr.r3 th, 
  .table-service tr.r3 td{ height: 110px }

  .table-service h3{
    font-size: 21px;
    margin: 2px 0
  }
  .table-service h2{
    font-size: 17px;
  }
  .table-service p{font-size: 12px}

  .table-service .btn{ margin: 0 }

  .table-service tr th .icon{
    width: 24px;
    height: 24px;
    margin-top:-5px 
  }

  .table-service tr th .icon.clock{
    width: 22px;
    height: 22px;
  }

  .section-service .background.left {
    width: auto;
    height: 100%;
    bottom: auto;
    top: 6%;
    left: -89%;
    background-size: cover;
  }

  .section-facilities .background.top{
    background-size: cover;
    background-position: top center ;
     bottom: 10vw
  }
  .section-facilities .background.bottom{
    background-size: cover;
    background-position: bottom center;

  }
   .section-facilities .background.bottom:before{ display: none; }
  .facilities-wrap{ margin-bottom: 10px ; }

  .facilities-wrap .row > div.right{ margin-top:-10px  }

  .section-title.facilities{ margin-top:20px  }
  .section-title.facilities h5{ font-size: 15px; margin-top: 15px}
  .section-title.facilities p{ font-size: 12px; }
  .card-facilities .card-body h2{ font-size: 12px; font-weight: 600}

  .section-title.aboutus .texture {
    top: -88px;
    width: 168px;
    height: 226px;
    margin-left: -84px;
  }
  .section-aboutus .article{ max-width: 100% }

  .btn.btn-xl {
      height: 50px;
      line-height: 50px;
      font-size: 16px; 
  }
  .btn.btn-xl .icon,
  .btn.btn-xl .icon.pin {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }

  .section-service .button{ padding-top: 20px; }
  .section-service .button .btn{ width: 100%; max-width: 300px }

  .service-info .btn.btn-xl{ font-size: 18px }

  .tuktukboat-item .font-xs{font-size: 12px;}

  .section-aboutus .background.right{ bottom: -14vw }
  .section-aboutus .background.left img {
    width: 79vw;
    margin-left: -25.5vw;
  }
  .section-aboutus .background.left{ bottom: -30vw; }
  .fancybox-button.fancybox-button--close img{ top: 3px; }

  .section-aboutus .article{ margin-top: 10px; }

  .swiper-video{ max-width: 640px;}

  .section-contact .background{ height: 100vw }
  .section-contact .section-title{ padding: 30px 0 20px;}
  .section-contact .section-title h2{ font-size: 33px }
  .contact-box{
    margin: 58vw auto 0;
    float: none;
    width: auto;
  }
  .contact-bottom .box {
    padding-left: 105px;
  }
  .contact-bottom .box.line-contact .right {
    padding-right: 100px;
  }

  .contact-top h4{ font-size: 13px;margin-bottom: 10px; }
  .contact-top .logo{ width: 41px }

  .contact-top{ padding: 0 30px 20px; font-size: 13px }
  .contact-top .inner{ padding-left: 55px; padding-top: 0 }
  .contact-top hr {
    border-top: 2px solid #F9B83B;
    margin: 20px 0;
  }
  .contact-top .time svg{ width: 19px; height: 19px }
  .contact-bottom .box{ 
    padding-left: 35px; 
    padding-right: 15px;
    max-width: 300px;
    margin: 0 auto 
  }
  .contact-bottom .box.phone-number{font-size:19px}
  .contact-bottom .box.phone-number .icon img{ width:33px }
  .contact-bottom .box.line-contact .icon img{ width: 44px }
  .contact-bottom .box.line-contact .qr-code{ width: 73px }
  .contact-bottom .box.line-contact a.lineid{font-size: 14px}
  .contact-bottom .box.line-contact .right{ padding-right: 50px }
  .contact-bottom .box.line-contact{ padding-top: 5px }
  .contact-bottom .inner{padding: 35px 30px 35px}
  .contact-bottom hr{ margin:25px 0; border-top: 2px solid rgba(255,255,255,0.4)  }

  .contact-bottom .box .left{
    -ms-flex: 0 0 27%;
    flex: 0 0 27%;
    max-width: 27%;
  }
  .contact-bottom .box .right{
    -ms-flex: 0 0 73%;
    flex: 0 0 73%;
    max-width: 73%;
  }
  .contact-bottom .box.followus{ padding-top: 10px }
  .contact-bottom .box.followus a{ width: 40px; height: 40px; margin: 0 6px}

  .section-contact .background::after{ height: 77vw; background-size: cover; background-position: 0 0 }


  .swiper-experience{ margin-bottom: 30px;  }
  .swiper-button.circle{
    width: 25px;
    height: 25px;
    bottom: -40px;
  }
  .swiper-button-prev.experience{ right: 30px }

  .section-aboutus.video .container-fluid{
    padding: 0
  }
  .swiper-button:not(.circle) {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    top: calc(50% - 20px)

  }
  .swiper-button-prev:not(.circle){ left: 10px }
  .swiper-button-next:not(.circle){ right: 10px }
  .swiper-pagination { padding-top: 15px }
  .swiper-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 5px
  }
  .section-aboutus.video .swiper-overflow{
    padding: 0 50px
  }
  .section-title.peopletalk {margin-top: 15vw;}
  .section-title.peopletalk h2{ font-size: 20px; }
  .section-title.peopletalk .texture,
  .modal-service .section-title .texture{
    width: 177px;
    height: 200PX;
    margin-left: -129px;
    top: -101px;
  }
  .modal-service .section-title .texture{top: -86px}
  .modal-service .section-title svg.steering,
  .modal-service .section-title svg.clock{ width: 35px; height: 35px }

  .section-title.partner .texture {
    width: 155px;
    height: 200PX;
    margin-left:-115px;
    top: -69px;
  }

  .section-peopletalk .container-fluid{ padding: 0 0 }
  .section-peopletalk .background.main{ background-image: url(../img/peopletalk-texture-mobile.png) !important; }
  .swiper-peopletalk{
    padding: 0;
    margin: 0 0;
  }

  .swiper-button.peopletalk {
    top: 51px;
    margin-top: 0;
  }
  .card-peopletalk .card-body{ padding-left: 40px; padding-right: 40px }
  .card-peopletalk .card-photo{ width: 130px; height: 130px; }
  .swiper-pagination.peopletalk{ padding-top: 0px }
  .swiper-button-prev:not(.circle).peopletalk{ left: 20px; }
  .swiper-button-next:not(.circle).peopletalk{ right: 20px; }

  .peopletalk-texture-1 img{ display: none; }
  .peopletalk-texture-2 img{
    right: -33.7vw;
    bottom: 0;
    width: 97vw;
  }
  .peopletalk-texture-3 img {
    right: 10vw;
    bottom: 33vw;
    width: 13vw;
  }
 
  .section-peopletalk{ padding-bottom: 36vw !important }
  .partner-wrap{
    display: block;
    max-width: none; 
     margin-left: -3vw 
  }
  .partner-wrap > div{
    display: inline-block;
    padding: 0;
    width: auto;

  }
  .partner-wrap > div img{ max-width: 19vw }
  .partner-wrap img.iconsiam{ margin-left:6vw  }

  .instagram-feed{
    padding: 0 0 5vw 0
  }
  .instagram_gallery a {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .instagram_gallery a:nth-child(7) ,
  .instagram_gallery a:nth-child(8) { display: none; }

  .section-contact{ margin-top: -7vw }

  .modal-service .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .modal-service ul.note-list, .modal-service .article p{
    margin-bottom: 20px;
  }
  .modal-service .table-responsive-lg{margin-top: 30px; margin-bottom: 30px;}
  .modal-service .article .img{ margin-bottom: 30px; margin-top:30px;  }
  .btn-modal-close {
    width: 25px;
    height: 25px;
    right: 20px;
  }

  .modal-service .table.hourly tr th,
  .modal-service .table.hourly tr td{ padding-top: 10px; padding-bottom: 10px }

  .modal-service .table.hourly tr th .icon{ width: 30px; height: 30px;}
  .modal-service .article h4{font-size: 18px;}

  .modal-service .table-responsive-lg table.fasttrack{ width: 600px; }



  .footer-secondary,
  .footer-secondary p.icidea{font-size: 12px;}

  .footer-secondary{ padding: 15px 0; }

  .footer-logo{width: 150px;}
  .footer-logo img.i1{ width: 55px; }
  .footer-logo img.i2{ margin-top: 15px }

  .footer-primary{padding: 35px 0 30px;}

  .footer-primary{padding: 10vw 0 30px;}
  .footer-secondary{ padding: 20px 0 }

  .footer-primary .background.top{ 
    height: 7vw;
    background-size: 1300px;
    background-position: bottom center;
  }

}
@media (max-width: 576px) {
  .section{ padding:40px 0} 
  .section-aboutus .background.left img{ width: 69vw;margin-left: -22.5vw; }
  .video-clip{ padding-top: 22vw }
  .video-box .play-button{ background-size: 50px }

  .modal-service .table-responsive-lg table.fasttrack{ width: 600px; }
}
@media (max-width: 375px) {
  .footer-secondary,
  .footer-secondary p.icidea{font-size: 11px;}
}

@media (max-width: 350px) {
  .contact-bottom .inner{ padding-left: 20px; padding-right: 20px; }
  .contact-bottom .box{
    padding-left: 25px;
    padding-right: 15px;
  }
  .contact-bottom .box.phone-number {
    font-size: 17px;
  }
  .contact-bottom .box.line-contact .qr-code{
    width: 60px
  }
  .contact-bottom .box.line-contact .right{ padding-right: 30px; }

  .section-contact .background::after {height: 111vw;}
}
