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

html,body{
  padding: 0;
  margin: 0; 
  height: 100%; 
}  

html{
  scroll-behavior:unset !important
}
body{     
  
  margin:0; 
  padding:0;  
 
  position: relative;
  overflow-x: hidden;

  /* overscroll-behavior: contain; */
}
 
:root {    

  --bs-body-color:var(--black);
  --bs-body-bg:#F7F7F7;
  --bs-body-text-align:left;
  --bs-body-font-weight:var(--fw-400);
  --bs-body-line-height:1.60; 
  --bs-body-font-size:var(--fs-16);
  --bs-body-font-family:'Kanit', sans-serif; 
  --bs-link-hover-color:var(--color-primary);

  --fs-13:13px;
  --fs-14:14px;
  --fs-16:16px;
  --fs-18:18px;
  --fs-20:20px;
  --fs-22:22px;
  --fs-28:28px;
  --fs-32:32px;


  --black:#222222;
  --orange:#FF650A;
 
  --body-rgb-a:1;
  --rgb-white:255,255,255; 
 
  --color-primary:var(--orange);  
  --color-title:#1C1F35;

  --card-border-radius:12px; 

  --animation-primary: 0.4s cubic-bezier(.75, 0, .25, 1);
  --animation-navigation-fade: 0.3s ease-in-out; 
  
  --header-height:80px;  
  --navbar-brand:96px;
  
  --padding-90:90px;
  --padding-80:80px;
  --padding-75:70px;
  --padding-50:50px;
  --padding-30:30px;
 
  --fw-200:200;
  --fw-300:200;
  --fw-400:300;
  --fw-500:400;
  --fw-600:500; 
  --fw-700:600;
  --fw-800:700;
  --fw-900:800;

  /* --fw-200:200;
  --fw-300:300;
  --fw-400:400;
  --fw-500:500;
  --fw-600:600; 
  --fw-700:700;
  --fw-800:800;
  --fw-900:900;  */
  
}  
 
@media (max-width:1700px) {
  :root{}
}
@media (max-width:1550px) {
  :root{
    --padding-90:70px;
  }
}

@media (max-width:1500px) {
  :root{ }
}
 
@media (max-width:1280px) {
  :root{ }
}
 
@media (max-width:991.98px) {
  :root{
    
  }
}
@media (max-width:680px) {
  :root{
    --navbar-brand:84px;
    --bs-body-bg:#fff;
  }
}

@media (max-width:575px) {
  :root{
   
  } 
}  
.highlight{color: var(--color-secondary);}

.modal-open{
  touch-action: none; 
  overscroll-behavior: contain;
}
 

.modal-backdrop{
  overscroll-behavior: contain;
  --bs-backdrop-opacity: 0.8;
  --bs-backdrop-zindex: 1051;
}
 
a{
  color:inherit;
  text-decoration: none; 
  transition: all 0.2s ease-in-out;
}
a:hover{ text-decoration: none;   }
 
.star{ color: #FF3E40 }

.form-control,
.form-select,
.form-selects{
  --input-h:44px;
 -webkit-appearance: none; 
  padding:0 15px;
 
  font-weight:var(--fw-400); 
  font-family:inherit;  
  font-size:var(--fs-16); 
  border:2px solid #C7DAFF;

  height:var(--input-h);
  line-height:calc(var(--input-h) - 2px);  
  background:#fff; 
  border-radius:4px;  
 
    -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::placeholder {   
  opacity:1;  
  color: #8D93A5; 
}

.form-control:-ms-input-placeholder {   
  opacity:1;  
  color: #8D93A5;
}

.form-control::-ms-input-placeholder {   
  opacity:1;  
  color: #8D93A5;
}

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

.form-control.bg-light{
  background-color: #F7F7FC !important;
  border-color: #F7F7FC !important;
}
 
.form-select,
.form-selects{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); 
  background-position:right .75rem center;
  background-size: 15px;
  background-repeat: no-repeat;
 
} 
 
.form-control:focus,
.form-select:focus{
  background-color: #fff; 
  outline: 0; 
  box-shadow: 0 0 0 0.2rem rgba(14, 106, 199, 0.1);
 
}

.form-select.h-40,
.form-control.h-40{
  --input-h:40px;
}
.form-select.w-200{width: 200px;}
textarea.form-control{
  height: 120px;
  line-height: normal;
  padding-top: 10px;  
}
textarea.form-control.h-180{
  height: 180px;
} 

div.form-control{
  display: flex;
  align-items: center;
  gap:10px
}
.form-check {
  position: relative;
  padding-left:0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #27273F;
}
.form-check .form-check-input{
  width:16px;
  height:16px;
  margin-right: 0; 
  border-width: 1px;
  position: relative;
  margin-left:0;
  margin-top: 0;
  border-radius:2px; 
  flex-shrink: 0;
  border-color:#717171;
  box-shadow: none !important;
}
.form-check .form-check-input[type=radio],
.form-check .form-check-input[type=checkbox].circle{
  border-radius: 50%; 
}

.form-check .form-check-input[type=radio]:checked,
.form-check .form-check-input[type=checkbox].circle:checked {
  background-color: transparent; 
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%234F8F85'/%3e%3c/svg%3e");
}
.form-check label{
  margin-bottom:0;
  font-weight: var(--fw-400);
  font-size: inherit; 
}
.form-check-input:checked[type=checkbox], 
.form-check-input.rounded:checked[type=radio]{
  background-color:transparent; 
}

.form-check-input:checked[type=checkbox]{
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-color: #0E6AC7;
  border-color: #0E6AC7; 
}
.form-select [data-bs-toggle]{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap:5px; 
  padding-top: 2px;
  opacity: 0.5;
  outline: 0 !important;
  color:#222222;
}
.form-select [data-bs-toggle].selected{opacity: 1;}
.form-select [data-bs-toggle] .icons{top: -2px;}
.form-select.dropdown{padding: 0 10px; position: relative; z-index: 100;}
.form-select.dropdown:hover{
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(14, 106, 199, 0.1);
}
.form-select .dropdown-menu{  
  border-radius: 8px;
  margin-top: 0;
  padding: 0px; 
  top: 100%;
  left: 0;
  z-index: 11;
  margin-top: 4px;

  transition: all .45s;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  
}
.form-select .dropdown-menu:before,
.form-select .dropdown-menu:after{display: none;}
.form-select .dropdown-menu > li{
  border-bottom: 0;
}
.form-select .dropdown-menu > li {
  font-size: var(--fs-16);
  padding: 7px 10px;
  outline: none;
  text-align: left;
  transition: all 0.2s;
  list-style: none; 
  display: flex;
  gap:8px;
  align-items: center;
  line-height: normal;
  border-bottom: 0;
  cursor: pointer;
  transition: all 0.25s;
}
.form-select .dropdown-menu > li:hover ,
.form-select .dropdown-menu > li.active {
  background-color: var(--bs-dropdown-link-hover-bg);
}
.form-group{
  display: block;
  position: relative;  
  z-index: 10;
} 
.form-group h6{ 
  font-weight:var(--fw-600); 
  font-size: var(--fs-16);
  margin-bottom:10px;
  color:#222222;
}
.form-group label.title{
  display: flex;
  gap:10px;
  align-items: center;
  padding-bottom: 13px;
}
.form-group label.title h6{
  margin: 0;
}
.form-group span.error{
  color:#DF1642; 
  padding-top: 5px; 
  /* margin-top: -15px;  */
  display: block;
}
 
.form-group .group{
  position: relative;
  display: block;
} 
.form-group .group .icons{
  position: absolute;
  top: 0 !important;
  right: 15px;
  bottom: 0 !important;
  width: 16px; 
  height: auto;

  transition: none;
  z-index: 1;
} 
  
.form-group .group .icons.left{
  left: 10px;
  right: auto;
}
.form-group .group .icons.left.w-20{
  left: 14px;
}
.form-group .group .icons.left + .form-control{
  padding-left: 45px;
}
 

.form-group  .error + .icons{bottom: 31px !important;}
.form-group  .error[style] + .icons{bottom: 0 !important;}
.error + .form-select{border-color: #DF1642; }

.form-select + .error{
  position: absolute;
  left: 0;
  top: 100%;
  line-height: 0.9;
}

select.form-select.error{display: none !important;}

.btn{
  --btn-h:52px; 
  position: relative; 
  padding:0 30px;       
  height:var(--btn-h); 
  line-height:calc(var(--btn-h) - 2px);  
  transition: all 0.25s ease-in-out;    
  font-weight: var(--fw-600);    
  font-size: var(--fs-20); 
  display: flex;
  align-items: center;
  justify-content: center; 
  gap:12px;   
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  --bs-btn-border-width:0;
  --bs-btn-border-radius:100px;

  --bs-btn-color:#fff; 
  --bs-btn-bg: var(--orange);  
  --bs-btn-hover-color:#fff; 
  --bs-btn-hover-bg:#062C80;
  
  --bs-btn-active-color:var(--bs-btn-color);  
  --bs-btn-active-bg:var(--bs-btn-hover-bg); 
 
}   
.btn{
  display: flex;
  align-items: center;
  justify-content: center;
} 
.btn span{
  position: relative;
  z-index: 10;
}
.btn.next .icons{left: 0; margin-left: 5px;}
.btn.next .icons path{fill: #fff;}
.pc .btn.next:hover .icons{left: 10px;}
 
.btn-outline svg{left:0;}
.pc .btn-outline:hover svg path{fill:#fff;}

.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;
}
.btn.rounded {border-radius: 50px !important;}
 
.btn:focus,.btn:active,
button:focus,button:active,
a:focus,a:active {
   /* outline: none;
   box-shadow: none; */
} 

.btn.disabled, .btn:disabled{  pointer-events: none;}
 
.shadow-0{box-shadow: none !important;}
  
.buttons{
  display: flex; 
  text-align: center; 
  justify-content: center;
  gap:25px;  
  padding: 30px 0 0;
} 
 
.pc .buttons .btn:hover .icons{left: 10px;}
.btn.w-110{width: 110px;}
.btn.w-150{width: 150px;}
.btn.w-210{width: 210px;}

.rounded-3{border-radius: 3px !important;}
.rounded-12{border-radius: 12px !important;}
.rounded{border-radius: 50% !important;}

.py-90{padding: var(--padding-90) 0 !important;}
.pt-90{padding-top: var(--padding-90) !important;}
.pb-90{padding-bottom: var(--padding-90) !important;}

.py-80{padding: var(--padding-80) 0 !important;}
.pt-80{padding-top: var(--padding-80) !important ;}
.pb-80{padding-bottom: var(--padding-80) !important ;}

.py-70{padding: var(--padding-75) 0 !important;}
.pt-70{padding-top: var(--padding-75) !important;}
.pb-70{padding-bottom: var(--padding-75)!important ;}

.py-50{padding: var(--padding-50) 0 !important;}
.pt-50{padding-top: var(--padding-50) !important;}
.pb-50{padding-bottom: var(--padding-50)!important ;}

.py-30{padding: var(--padding-30) 0 !important;}
.pt-30{padding-top: var(--padding-30) !important;}
.pb-30{padding-bottom: var(--padding-30)!important ;}

hr{border-color: #EBEBEB; opacity: 1;}

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;
} 

@media (max-width:1280px){}

@media (max-width:670px){
  .form-group label.title{padding-bottom: 8px;}
} 
 
/*==================================================
    Icon Setup
==================================================*/  

.icons{
  display:inline-block;
  position:relative;
  vertical-align:middle; 
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center center;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  
  --icon-size:24px;
  flex-shrink: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  
}
.icons.before:before,
.icons.before:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat:no-repeat;
  background-position: center center;
  transition: all 0.35s ease-in-out;
  opacity: 0;
}
.btn .icons.before:before{ opacity: 1; }
.btn .icons.before:after{ opacity: 0; }
.pc .btn:hover .icons.before:before{ opacity: 0; }
.pc .btn:hover .icons.before:after{ opacity: 1; }

img.icons,
svg.icons{ 
  object-fit: contain;
  object-position:center;
  flex-shrink: 0;
}
.icons.w-18{--icon-size:18px;}
.icons.w-20{--icon-size:20px;}
.icons.w-32{--icon-size:32px;}
.static-container-fluid{
  max-width: 1920px;
  --padding-x:60px;
  padding-left:var(--padding-x);
  padding-right:var(--padding-x); 
  position: relative;
  z-index: 9;    
}

.static-container{ 
  --padding-x:80px;
  max-width: calc(735px + (var(--padding-x) * 2));
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  position:relative;
  margin: 0 auto;
  z-index:9; 
}

.static-container-930{  
  --padding-x:80px;
  max-width: calc(930px + (var(--padding-x) * 2));
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  position:relative;
  z-index:9; 
}

.static-section-target{
  position: absolute; 
  top: calc((var(--header-height)  + 0px) * -1); 
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; 
}
 
.static-section{
  display: block;
  position: relative; 
  flex: 1 1 auto;
  --padding-top:40px;
  --padding-bottom:40px;

  padding: var(--padding-top) 0 var(--padding-bottom);
}
 
.compensate-for-scrollbar{ margin-right: 0 !important } 
.compensate-for-scrollbar .header{ right: 0 } 
body.fancybox-active{ overflow: visible !important;padding-right: 0 !important  }
 
@media (max-width:1199px) {
  .static-container{
    --padding-x:50px;
    margin: 0 auto;
  } 
  .static-container-fluid{
    --padding-x:30px;
  } 
}
  
@media (max-width:991.98px) { 
  .static-container-fluid{
    --padding-x:30px;
  }  
  .static-container{
    --padding-x:30px;
    margin: 0 auto;
  } 
}
@media (max-width: 670px) {
  
  .btn{
    --btn-h:48px; 
  }
}
@media (max-width: 575px) {
  .static-container,
  .static-container-fluid{
    --padding-x:20px;
    margin: 0 auto;
  }
  

  /* .static-section-target{top: -60px;} */
   
}

/*==================================================
    Header Setup
==================================================*/  
.page-white{background-color: #fff !important;}
.fw-light{font-weight: var(--fw-300) !important;}
.fw-400{font-weight: var(--fw-400) !important;}
.fw-500{font-weight: var(--fw-500) !important;}
.fw-600{font-weight: var(--fw-600) !important;}   
.fw-700{font-weight: var(--fw-700) !important;}    
 
b, strong{
  font-weight: var(--fw-600); 
  font-family: inherit;
}
.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6{   
  margin:0;    
  font-weight:var(--fw-600);
  font-style: normal;  
  line-height:1.2;    
  position: relative;   
  color: var(--color-title);
}   
.nowrap{ white-space: nowrap; }    
 
.h1, h1{
  font-size:var(--fs-32);
}
.h2, h2{
  font-size: var(--fs-28);
}
.h3, h3{
  font-size: var(--fs-22);
}
.h4, h4{}
.h5, h5{}
.h6, h6{}
 
.header,
.navbar-brand,
.navbar-brand img{
  transition: all 0.3s;
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
 
  height: auto;
  z-index: 1020;      
  display: block;    
  height: var(--header-height);   
} 
.header-dark,
.scrolling .header{
  background-color: #062254;
} 
.header .static-container,
.header .static-container-fluid{  
  display: flex;   
  align-items:center;  
  height: 100%; 
  z-index: 400;
  position: relative;  
} 
 
.navbar-brand{
  margin:auto 0;  
  padding: 0;   
  flex-shrink: 0;
  z-index: 200;  
  flex-shrink: 0; 
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
 
.navbar-brand a{
  display: block;
  position: relative;
  width: var(--navbar-brand);
}
.navbar-brand img,
.navbar-brand svg{
  width: 100%; 
  height: auto;  
}
.navbar-brand .logo-2{display: none;}   
 
.btn-menu{display: none;} 
.nav-btn-menu{display: none;}
 
.dropdown-menu{
  --bs-dropdown-border-radius:0;
  --bs-dropdown-menu-border-radius:6px;
  --bs-dropdown-border-color:#fff;
  --bs-dropdown-bg:#fff;
  --bs-dropdown-font-size:var(--fs-16);
  --bs-dropdown-color:#222;
  --bs-dropdown-padding-x:20px;
  --bs-dropdown-padding-y:8px;
  --bs-dropdown-spacer:0;
  --bs-dropdown-min-width:0;
  --bs-dropdown-link-hover-bg:rgba(0, 0, 0, 0.05); 
  --bs-dropdown-border-width:0;
  
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: all 0.35s;
  top: 110%;
  padding:10px 0;
} 
.dropdown-menu.right{
  left: auto;
  right: 0;
}
.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu.show{
  opacity: 1;
  top: 100%;
  pointer-events: all;
}
 
.dropdown-menu > li{
  position: relative;
  z-index: 10; 
}

.dropdown-menu > li > a{
  font-size: var(--fs-16);
  display: block;
  position: relative;
  padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);  
} 
.pc .dropdown-menu > li > a:hover,
.dropdown-menu > li.active > a{color: rgba(255, 255, 255, 0.5);} 
.btn-icon,.navbar-slider{display: none;}

.form-select .dropdown-menu{  
  box-shadow: 0px 4px 10px rgba(27, 59, 119, 0.15);
}
.form-select:hover .dropdown-menu{
  opacity: 0;
  pointer-events: none;
}
.form-select .dropdown-menu.show{
  opacity: 1;
  pointer-events: all;
}

.form-select .dropdown-menu li:hover{
  background-color:var( --bs-dropdown-link-hover-bg) ;
}
.nav-main{
  gap:var(--menu-gap); 
  height: 100%; 
  --menu-padding-x:0;   
  --menu-font-size:18px; 
  --menu-gap:35px;
  margin-left: auto;
}
 
.nav-main > li {
  display: flex;
}
.nav-main > li > a {
  display: flex;
  flex-direction: column; 
  height: 100%; 
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 var(--menu-padding-x);
  font-size: var(--menu-font-size); 
  height:var(--header-height); 
  color:#fff;
  font-weight: var(--fw-400);
}   
.nav-main > li:hover > a,
.nav-main > li.active > a {
  color: #fff;
} 

.nav-main .line-animate{
  height: 2px;
  width: 100%; 
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
}
.nav-main .line-animate:before{
  transition: all 0.65s;
  transition-delay:0.1s; 
  width: 0%;
  height: 2px;
  bottom:0; 
  top: auto; 
  /* left: 50%;
  transform: translateX(-50%); */
}
.nav-main .active .line-animate:before,
.pc .nav-main a:hover .line-animate:before{
 opacity: 1;
 width: 100%;
}
  
.nav-general{
  gap:var(--menu-gap); 
  height: 100%;    
  margin-left: 40px;
  --menu-gap:35px; 
}
 
.nav-general > li {
  display: block;
}
.nav-general > li > a {
  display: flex;
  flex-direction: column; 
  height: 100%; 
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0; 
  height:var(--header-height); 
  color:#fff; 
}   
.nav-general .icon-user,
.nav-main .icon-user{
  --icon-size:36px;
} 
.navbar-brand a,
.navbar-primary,
.navbar-secondary,
.header:after{
  transition: all 0.3s;
}



@media (min-width:1025px) { 
  .btn-icon{display: none;}
}
  
/*==================================================
   Mobile
==================================================*/  
 
@media (max-width:1280px) { 
  .header .static-container,
  .header .static-container-fluid{
    --padding-x:50px;
  }  

  .nav-main{
    --menu-font-size:16px
  }
  .nav-general .icon-user{--icon-size:30px}
}

@media (max-width:1199px) {
  .header .static-container,
  .header .static-container-fluid{ 
    --padding-x:30px;
  }   
  .nav-general{
    margin-left: 25px;
  }
  .nav-main{
    --menu-gap:25px
  }
}
@media (max-width:1024px) {
  .header .nav-main{display: none;}
  .nav-general{margin-left: auto;}
  .navbar-brand .logo-1{display: none;}
  .navbar-brand .logo-2{display: block;}
  .scrolling .navbar-brand .logo-2 path{fill: #fff !important;}
  .header-dark .navbar-brand .logo-2 path{fill: #fff !important;} 

  .btn.btn-icon{
    padding: 0 !important;
    border:0 !important;   
    z-index: 1060; 
    border-radius: 8px;
    position: relative; 
    margin: auto 0 auto auto; 
    width: 40px; 
    height: 40px;
    background-color:#fff !important;
    overflow: visible;  
    --bs-btn-bg:transparent;
    box-shadow: none;
    opacity: 1 !important;
    display: flex;
    gap:12px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  }
 
  .btn-icon:before{display: none;}
  .btn-icon .group{
    display: block;
    position: relative;
    width:18px;
    height:15px;
    margin: 0 auto 0
  }
  .btn-icon .group span{
    height: 2px;

    position: absolute;
    left: 0;
    right: 0;
    border-radius: 10px;
    -webkit-transform-origin: 25px, 1px;
    -ms-transform-origin: 25px, 1px;
    transform-origin: 25px, 1px
  }
  .btn-icon .group span:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background:#111827;
    transition: all 0.25s ease-in-out;
  } 
  

  .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: 6px; 
      -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: 12px;
      -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)
  }
  .nav-opened .btn-icon .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(5px, 5px, 0);
    transform: rotate(45deg) translate3d(5px, 5px, 0)
  }

  .nav-opened .btn-icon .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)
  }

  .nav-opened .btn-icon .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(5px, -5px, 0);
    transform: rotate(-45deg) translate3d(5px, -5px, 0)
  }

  
  /**/

  .header-slideout,
  .page-slideout {
      transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
      transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
  .page-slideout {
      position: relative;
      background-color: #fff;
      overflow: hidden;
  }
  .closing .page-slideout,
  .nav-opened .page-slideout {
      z-index: 1040;
  }
  .closing .header-slideout,
  .nav-opened .header-slideout {
      z-index: 1043;
  }
  .page-blocker {
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0);
      z-index: 1090;
      pointer-events: none;
      transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
      transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
  .nav-opened .header-slideout,
  .nav-opened .page-blocker,
  .nav-opened .page-slideout {
      /*-webkit-transform: translate(-280px, 0);
      -ms-transform: translate(-280px, 0);
      transform: translate(-280px, 0);
      -webkit-transform: translate3d(-280px, 0, 0);
      transform: translate3d(-280px, 0, 0);*/
  }
  .nav-opened .page-blocker {
      background-color: rgba(0, 0, 0, 0.6);
  }
  .nav-opened .page-blocker {
      pointer-events: auto;
      display: block;
      cursor: pointer;
  }
  .navbar-slider {
    --navbar-width:440px;
    --navbar-width-column:220px;
  
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1095;
      width: var(--navbar-width);
      overflow: hidden;
      padding: 0; 
      display:block;
      background-color:#062254;
      align-items: normal;
      -ms-flex-align: normal;
      -webkit-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
      transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
      transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }
  .nav-opened .navbar-slider {
      -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      transform: translate(0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
  }
  .nav-opened .header {
      pointer-events: none;
  }

  .navbar-inner{
    position: relative;
    overflow: hidden;
    height: 100%;
  }
 
  .nav.mainmenu {
      position: absolute;
      top: 0;
      bottom: 0;
      display: block;
      height: 100%; 
      right: calc(-1 * var(--navbar-width));
      width: calc(var(--navbar-width) * 2);
      overflow: hidden;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch; 
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
  }
  .nav.mainmenu li {
      display: block;
      position: static;
  }
  .nav.mainmenu li {
      padding-left: 30px !important;
  }
  .nav.mainmenu > li > a {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-weight: 400;
      font-size:17px;
      height: auto!important;
      line-height: normal !important; 
      display: block;
      position: relative;
      color: #fff;
      outline: 0 !important;
  } 
  .nav.mainmenu > li > a {
      /* width: var(--navbar-width-column);; */
      position: relative;
  }
    
  .level-1-opened .nav.mainmenu {
      right: 0;
  } 
  .nav.mainmenu .dropdown-menu > li{border: 0;} 

  .nav.mainmenu .nav-account{
    display: flex;
    align-items: center;
    gap:20px;
    position: relative;
    padding: 21px 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .nav.mainmenu hr{
    border-color: rgba(255, 255, 255, 0);
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .nav.mainmenu .nav-account a{
    color: #fff;
  }
 
}
@media (max-width:991.98px) {
  .header .static-container, .header .static-container-fluid { 
    --padding-x:15px;
  }
 
}
@media (max-width:575px) {
  .navbar-slider {
    --navbar-width:calc(100vw - 50px);
  }
  .nav-main li {
    padding-left:20px !important;
  }
  .nav.mainmenu .nav-account{gap:12px}
}
 

/*==================================================
   static-section
==================================================*/  
 
.page{
  display: flex;
  position: relative;
  overflow: hidden;   
  padding-top: var(--header-height); 
  flex-direction: column;
  min-height: 100%;
} 
.page-light{
  background-color: #F5F5F5;
}
.preload{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color:var(--bs-body-bg);
  z-index: 1090; 
  display:flex;   
} 


.loader {
  width: 34px;
  height:34px;
  margin:  auto;
  display: block;
  border-top: 3px solid var(--color-primary);
  border-right: 3px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 2505, 0.2);
  border-left: 3px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  animation: spin 1s infinite linear;
}
 
 
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.static-section-full{
  min-height: 100vh;
  min-height: calc(var(--vhs, 1vh) * 100) !important;
  display: flex;
}
 
.background{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
 
.background.fixed{
  background-attachment: fixed;
}
.device .background.parallaxie,
.device .background.fixed{
  background-attachment: scroll !important;
  background-position: center center !important;
}

@media (max-width:1199px) {
  .background.parallaxie{
    background-attachment: scroll !important;
    background-position: center center !important;
  }
}
 
.static-section{ 
  position: relative; 
}
.static-section.h-full{
  min-height: 100vh;
}

.static-section-title{  
  position: relative;       
}   
   
.hgroup{
  display: block;
  padding:30px 0;
}
.hgroup.center{
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.hgroup .group{
  position: relative;
}
.hgroup h2{font-size: var(--fs-28);}
.title-label{
  position: relative;
  font-size: 13px;
  font-weight: var(--fw-400);
  padding-left: 10px;
  margin-bottom: 8px;
}
.title-label:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width:4px;
  background-color: var(--orange);
  z-index: 100;
}
.card{ 
  position: relative;
}
.card-photo{
  position: relative;
  overflow: hidden;
  display: block;   
}

.card-photo .photo{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.35s ease 0s;  
}
.card-photo .photo img{
  width: 100%
}

.card-photo.rounded,
.card-photo.rounded .photo{
  border-radius: 10px;
}
.card-body{color: inherit;}
 
.card-link{
  position: absolute !important;
  top: 0;
  left: 0; 
  right: 0;
  height: 100%;
  z-index: 100;
  z-index: 20 !important;
}
.card h3,
.card p,
.card .card-body{transition: all 0.2s ease 0s;}
    
.static-section-banner{ 
  position: relative;
  padding: 0 !important;
  flex: unset;
}

.static-section-body{
  flex: 1 1 auto;
  /* padding-top:var(--header-height); */ 
}
.static-section-breadcrumb{
  padding-top:var(--header-height);
}
.textrow{
  position: relative;
  overflow: hidden;
  display: block;
}
.textrow > span{
  display: inline-block;
}
 
.link-effect{
  position: relative;
  display: inline-block; 
  color: var(--color-primary);
}
.link-effect:before{
  content: '';
  position: absolute;
  bottom:0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0) rotate(0.001deg);
  transform-origin: right;
  transition: transform var(--animation-primary), background-color var(--animation-navigation-fade);
}

 .pc .link-effect:hover:before{
  transform: scaleX(1) rotate(0.001deg);
  transform-origin: left;  
}
.link-effect.link-white{color: #fff;}
.link-effect.link-white:before{ background-color:#fff;} 
.pc .link-effect.link-white:hover{opacity: 0.8;}

@media (max-width:1440px) { }
@media (max-width:991.98px) { }
@media (max-width:670px) {
  .hgroup{
    padding: 40px 0 20px;
  }
}
  
/*==================================================
  Banner
==================================================*/ 
.pt-body{padding-top: var(--header-height) !important;}

.static-section-banner.mainpage{
  --banner-height:300px;
  height:var(--banner-height);
  position: relative;
  background-color: #4e96cc;
  overflow: hidden;
}

.static-section-banner.mainpage .background{
  background-image: url("/img/thumb/banner-bg-desktop.jpg");
}
 
.line-animate{ 
  height:1px;
  position: relative;
  width:39px;

  --line-color:var(--orange);
}
.line-animate:before{
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  display: inline-block;
  top: 0;
  background:var(--line-color);
 
  transition: all 0.8s;
  transition-delay: 0.2s;
} 
.line-animate.center{
  margin-left: auto;
  margin-right: auto;
}
.line-animate.center:before{
  left: 50%;
  transform: translateX(-50%);
}
.line-animate.aos-animate:before {width: 100%;}
 
.banner-mainpage{
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1090px;
  margin: 0 auto; 

  --object-man:226px;
  --object-plane:332px;
  --object-fast:155px;
}
.banner-mainpage .object{
  position: absolute;
  height: auto;
}
.banner-mainpage .object.man{
  width:var(--object-man);
  left: 0;
  bottom: 0;
}
.banner-mainpage .object.plane{
  width:var(--object-plane);
  right: 0;
  top: 80px;
  right: 19%;

}
.banner-mainpage .object.textgroup{ 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:7px; 
  font-size: 17px;
  color: #fff;

  left: 21%;
  top:130px;
}
.banner-mainpage .object.textgroup img{
  width: var(--object-fast);
  height: auto;
}

@media (max-width:1199px) {
  .banner-mainpage{ 
    --object-fast: 145px;
    max-width: 1000px;
  }
  .banner-mainpage .object.textgroup{
    left: 230px;
    font-size: 16px;
  }
   
}

@media (max-width:1024px) {
  .static-section-banner.mainpage .background{
    background-image: url("/img/thumb/banner-bg-tablet.jpg");
    background-position: center center;
  }
  .banner-mainpage{
    max-width:550px;
    margin-left: auto;
    margin-right: auto;

    --object-man:180px;
    --object-fast: 110px;
    --object-plane: 282px;
  }
  
  .banner-mainpage .object.man{
    bottom:50px;
  }
  .banner-mainpage .object.textgroup{
    left: 180px;
    font-size: 13px;
    top: auto;
    bottom: 67px;
  }

  .banner-mainpage .object.plane{
    top: 50px;
    right: 0;
  }
  
}

@media (max-width:670px) {
  .static-section-banner.mainpage{
    --banner-height:245px;
  }

  .banner-mainpage{
    max-width:300px;
    margin-left: auto;
    margin-right: auto;

    --object-man:110px;
    --object-fast:90px;
    --object-plane: 142px;
  }

  .banner-mainpage .object.textgroup{
    font-size: 10px;
    left: 113px;
    top: auto;
    bottom: 60px;
    gap:5px
  }
  .banner-mainpage .object.plane{
    top: auto;
    bottom: 117px;
    right:  0px;
  }
  .static-section-banner.mainpage .background{
    background-image: url("/img/thumb/banner-bg-mobile.jpg");
    background-position: left;
  }
}

@media (max-width:500px) {
  .banner-mainpage{
    max-width:240px;
    --object-plane: 112px;
    position: relative;
    left: -20px;
  }
  .banner-mainpage .object.plane{
    right: -30px;
  }
 
}

/*==================================================
  price-estimation
==================================================*/ 
 
.card-price-estimation{
  background-color: #fff;
  border-radius: 12px;
  padding:26px 32px;
  position: relative;
  z-index: 100;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
  position: relative; 
  box-shadow: 0px 4px 10px rgba(27, 59, 119, 0.25);
}
.card-price-estimation .card-title{
  font-size: var(--fs-22);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap:10px
}
.card-price-estimation .card-title .icons{
  --icon-size:36px;
}
.card-price-estimation .card-body{
  padding: 25px 0;
}
.card-price-estimation .card-body > .row{
  --bs-gutter-y: 1.5rem;
  --bs-gutter-x: 1.75rem;
}
.card-price-estimation .card-footer{
  display: flex;
  justify-content: center;
  padding:0;
}
.card-price-estimation .card-footer .btn{
  width: 265px;
  top: 0;
}
.fs-14{font-size:var(--fs-14);}
/* .pc .card-welink:hover .card-icon{
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
} */

@keyframes trin {

  from {
      transform:rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
      transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
      transform: rotate3d(0,0,1,15deg);
  }
  26%, 38%, 50%, 62%, 74% {
      transform: rotate3d(0,0,1,0deg);
  }
  29%, 41%, 53%, 65%, 77% {
      transform: rotate3d(0,0,1,-15deg);
  }
  80% {
      transform:rotate3d(0, 0, 1, 0deg);
  }
  
}

@media (max-width:720px) {
  .card-price-estimation .card-body > .row{ 
    --bs-gutter-x: 1.25rem;
  }
}

 
/*==================================================
   Select option
==================================================*/  
 
.z-index-100{
  position: relative;
  z-index: 100;
}

.form-group .group  .icon-calendar{
  --icon-size:24px;
  pointer-events: none;
  right: 10px;
  width: var(--icon-size);
  background-image: url("/img/icons/icon-calendar-2.svg");
}
/*==================================================
  datepicker
==================================================*/
.datepicker thead tr:nth-child(2) th{
  cursor: pointer;
}
.datepicker-inline thead th{
  padding: 10px;
}
 
.datepicker-dropdown {
  padding:10px !important;
  border: 0 !important;
  box-shadow:none;
  box-shadow: 0px 2px 10px rgba(27, 59, 119, 0.1);
  opacity: 1;
  display: none;
  background-color: #fff;
  color: #222;
  pointer-events: all;
  border-radius: 6px;
}
.datepicker table{
  width: 100%;
  font-size: 15px;
  text-align: center;
}
.datepicker table th{
  font-weight: var(--fw-600); 
}
.datepicker table td{
  text-align: center;
  padding:5px 0;
  min-width: 30px;
}
.datepicker table td.old,
.datepicker table td.new{
  opacity: 0.4;
}

.datepicker table tr td > span{
  display: block;
  width: 34px;
  height: 34px;
  line-height: 30px;
  border-radius: 50%;
  margin: auto;
  border: 2px solid transparent;
  cursor: default;
}
.datepicker table tr td.today > span,
.datepicker table tr td.day:hover > span,
.datepicker table tr td.focused  > span,
.datepicker table tr td.active  > span{

  background-color: #eee;
  transition: all 0.25s;
}
.datepicker table tr td.active{  pointer-events: none;}
.datepicker table tr td.active  > span{
  background-color: #062C80;
  color: #fff;

}
.datepicker table tr td.today > span{
  color: #fff;
  background:#0E6AC7;
}
.datepicker table tr td.focused > span{
  background: #eee;
  cursor: pointer;
}

.datepicker-switch{
  text-align: center;
}

.datepicker table th.prev,
.datepicker table th.next{
  cursor: pointer;
}
.datepicker table th.prev{text-align: left;}
.datepicker table th.next{ text-align: right;}
.datepicker .icon-next,
.datepicker .icon-prev{
  width: 40px;
  height: 40px; 
 
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23222222' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-size:15px;

  display: block;
  margin: auto;
  transition: all 0.25s;
}

.datepicker .icon-next{
  top: -1px;
  transform: rotate(-90deg);

}
.datepicker .icon-prev{
  top: -1px;
  transform: rotate(90deg);
}
 
 
.datepicker table td{ padding:2px 0;}
.datepicker-inline table td{  padding:7px 0;}
.datepicker-months span.month,
.datepicker-years span.year{
  display:inline-block;

  border-radius: 50px;
  height:32px;
  width: 65px;
  border:1px solid var(--border-color);
  margin: 2px;
  cursor: pointer;
  transition: all 0.25s;
}
.datepicker-months span.month.focused,
.datepicker-years span.year.focused{
  background:#062C80 !important; 
  color: #fff !important;
}
.pc .datepicker-months span.month:hover,
.pc .datepicker-years span.year:hover{background-color:#eee;}
 

.datepicker-months,
.datepicker-years{
  max-width: 320px;
}

@media (max-width:1199px) {
  .form-control.w-45{
    --input-h:34px;
    width:38px;
    border-radius: 5px;
  }
}
@media (max-width:670px) {
  .card-price-estimation{
    padding: 26px 15px;
  }
}
@media (max-width:575px) { 
  .card-price-estimation .card-footer .btn{
    padding: 0;
    width: 100%;
    max-width: 280px;
  }
}
/*==================================================
  Why You choose us?
==================================================*/  
.card-feather{
  display: flex;
  font-size: 14px;
  gap:10px
}
.card-feather h4{
  font-size: var(--fs-18);
  margin-bottom: 7px;
}
.card-feather h3{
  font-size: var(--fs-22); 
  font-weight: var(--fw-400);
}
.card-feather p{
  margin: 0;
  color: #666C89;
  line-height: 1.3;
}
.card-feather .card-body{
  border-left: 1px solid #CBD4E6;
  padding-left: 10px;
}

.icons.w-48{--icon-size:48px}
.icons.w-58{--icon-size:58px}
.pc .card-feather:hover .card-icon .icons{
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@media (max-width:440px) {
  .card-feather p br{display: none;}
}

/*==================================================
  Why US
==================================================*/  

.static-section-whyus{
  padding-top: 0 !important;
  padding-bottom: 0;
}
.static-section-whyus .background{
  height: 250px; 
  width: auto;
  left: -100px;
  right: -200px; 
  overflow: hidden;
  z-index: 10;
}
.static-section-whyus .background:before{
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/thumb/bg-whyus.jpg");
  background-position:center center;
  background-repeat: no-repeat;
  background-size: cover; 
  opacity: 0.5;

}
.static-section-whyus .background:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 106, 199, 0.85);
  mix-blend-mode: multiply;
  z-index: 100;
}
.static-section-whyus .static-container{
  position: relative;
  z-index: 100;
}
.whyus-boxed{
  background-color: #fff;
  padding:24px 0px;
  position: relative;
  z-index: 100;
  margin-top: 125px;
  color: #666C89;
  font-size: 14px;
  line-height: 1.4;
}
.whyus-boxed .hgroup{
  padding-top: 0;
  padding-bottom:15px;
}
.card-feather.whyus{
  align-items: center;
}
.card-feather.whyus .card-body{
  border: 0;
  padding-left: 5px;
}

.static-section-whyus .d-block-custom{display:none;}
.static-section-whyus .d-none-custom{display:block;}


@media (max-width:767px) {
   
  .whyus-boxed .row.main > div{width: 50%;}
  .whyus-boxed .hgroup h2 br{display: none;}
}
@media (max-width:690px) {
  .static-section-whyus .background{
    position: relative;
    left: 0;
    right: 0; 
    z-index: 200;
  }
  .static-section-whyus .background:before{
    top: -100px; 
    background-size:150%;
    background-position: left center;
    background-image: url("/img/thumb/bg-whyus-mobile.jpg");
  }
  .static-section-whyus .img{
    position: absolute; 
    width:266px;
    z-index: 300;
    right: 0;
    top: 53px;
  }
  .whyus-boxed .hgroup h2 br{display: block;}
  .whyus-boxed{
    margin:10px 0 0;
    box-shadow: none;
    padding: 40px 0 0;
  }
  .whyus-boxed .row.main > div{width: 100%;}
  .static-section-whyus .d-block-custom{display:block;}
  .static-section-whyus .d-none-custom{display:none;}
}

/*==================================================
  About us
==================================================*/  
.about-us-image{
  --bs-gutter-x:20px;
  --bs-gutter-y:18px;
} 
.about-us-image img{
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(27, 59, 119, 0.25);
}
.about-us-image .col-md-7{width:61.5% ;}
.about-us-image .col-md-5{width:38.5% ;}
.about-us-image .col-md-4{width: 33.33%;}
.about-us-image .col-md-4 img{
  border-radius: 6px;
  box-shadow: 0px 3px 6px rgba(27, 59, 119, 0.25);
} 
.swiper-overflow.service{display: none;}

.swiper-pagination.static{
  justify-content: center;
}
@media (max-width:670px) {
  .about-us-image{
    --bs-gutter-x:15px;
    --bs-gutter-y:12px;
  } 
}
@media (max-width:450px) {
  .row.about-us-image{
    display: none;
  }

  .swiper-overflow.service{display: block;  }

  .swiper-card.service img{
    width: 100%;
    border-radius: 10px; 

  }
  .swiper-card.service .swiper-slide{width: 100%;  }
}

/*==================================================
  Testimonail
==================================================*/  

.swiper-overflow.testimonail{
  margin-left: -10px;
  margin-top: -10px;
  margin-right: -10px;
}
.swiper-card.testimonail{
  --card-width:260px;
  --card-padding-right:12px;
}
 
.swiper-card.testimonail .swiper-slide{ 
  width: calc(var(--card-width) + var(--card-padding-right)); 
  padding-top:10px;
  padding-bottom: 10px;
  padding: 10px var(--card-padding-right) 10px 10px ;
}
.card-testimonail{
  background-color: #fff;
  border-radius:8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 10px rgba(27, 59, 119, 0.25);
  color: #062254;
  padding:16px;
  height: 100%;
  --avatar-size:85px;
}

.card-testimonail .card-header{
  display: flex;
  align-items: center;
  gap:8px;
}
.card-testimonail .card-header p{
  margin: 0;
  font-size: 14px;
}
.card-testimonail .card-header h4{
  margin: 0;
  color:inherit;
  font-size:17px;
}
.card-testimonail .avatar{
  width: var(--avatar-size);
  height:var(--avatar-size);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.card-testimonail .card-body{
  padding: 10px 0 25px;
  line-height: 1.4;
  font-size: 14px;
}
.card-testimonail .card-body p:last-child{
  margin: 0;
}

.card-ratting{
  display: flex;
  gap:5px
}
.card-ratting .icons{
  --icon-size:18px;
  background-image: url("/img/icons/star.svg");
}

.swiper-button-group{
  position: relative;
  display: flex;
  gap:15px;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.swiper-button-group .swiper-button{
  position: relative;
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
  background-color: #EBEBEB;
  border:2px solid #DDDDDD;
  width: 44px;
  height: 44px;
  display: flex !important;
  opacity: 1;
  transition: all 0.35s;
}
.swiper-button-group .swiper-button .icons{
  margin: auto;
  flex-shrink: 0;
}
.swiper-button-group .swiper-button-prev .icons{ transform: rotate(-180deg);}
.swiper-button-group .swiper-button .icons path{stroke:#DDDDDD;}
.pc .swiper-button-group .swiper-button:hover .icons path{stroke:#fff;}
.pc .swiper-button-group .swiper-button:hover{
  background-color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
 
@media (max-width:720px) {
  .swiper-card.testimonail{
    --card-width:260px;
    --card-padding-right:5px;
    overflow: visible;
  }
   
}
@media (max-width:575px) {
  .swiper-card.testimonail{
    --card-width:280px;
    --card-padding-right:0px;
    overflow: visible;
  }
  .swiper-overflow.testimonail{
    margin-top: -5px;
  }
}

/*==================================================
  About us
==================================================*/  

.static-section-banner.medium{ 
  height: 200px;
  position: relative; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.static-section-banner.medium .background{
  background-image: url("/img/thumb/bg-whyus.jpg");  
  opacity: 0.5;
  left: -100px;
  right: -200px;
  /* top: -70px; */
}
.static-section-banner.medium .background-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0E6AC7;
  mix-blend-mode: multiply;
  z-index: 100;
}

.static-section-banner .static-container{
  position: relative;
  z-index: 100;
}
.hgroup.in-banner{
  color: #fff;
  padding: 0;
}
.hgroup.in-banner .title-label,
.hgroup.in-banner h2{
  color: inherit;
}
.hgroup.in-banner .title-label{
  gap:0;
  display: flex;
  padding-left:4px;
}
.hgroup.in-banner .title-label > span{
  background-color: #041C37;
  padding:3px 10px;
}
.article{
  --margin-bottom:13px;
  line-height: 1.35;
  color: #666C89;
}
.article h3{
  font-size: var(--fs-20);
  margin-bottom: var(--margin-bottom);
}

.static-section-about.about-01 .col-md-8{ width: 64%;}
.static-section-about.about-01 .col-md-4{ width: 36%;}
.static-section-about.about-01 .article{padding-right: 10px;}
.d-block-670{display: none;}
@media (max-width:991.98px) {
  .static-section-banner.medium{height: 160px;}
}
@media (max-width:670px) {
  .d-none-670{display: none !important}
  .d-block-670{display: block;}
  .static-section-banner.medium{height: 160px;}
  .static-section-banner.medium.about{display: none;}
  .static-section-about.about-01 .col-md-8{ width: 100%;}
  .static-section-about.about-01 .col-md-4{ display: none;}
  .article{
    --margin-bottom:8px;
  }

  .static-section-banner.small{
    height:120px;
    background-color: #ccc;
  }
  .static-section-banner.small .background{
    background-image: url("/img/thumb/banner-bg-mobile.jpg"); 
    top: -11vw;
    left: -4vw;
    right: -2vw;
  }

  .banner-small{
    max-width:250px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden; 

    --object-man:100px;
    --object-plane:132px;
    --object-fast:95px;
  }
  .banner-small .object {
    position: absolute;
    height: auto;
  }
  .banner-small .object.man {
    width: var(--object-man);
    left: 0;
    bottom: 0;
    z-index: 10;
  }
  .banner-small .object.textgroup{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:4px;
    font-size: 11px;
    color: #fff;
    bottom:10px;
    right: 0;
  }
  .banner-small .object.textgroup img{
    width: var(--object-fast);
  }
  .banner-small .object.plane {
    width: var(--object-plane);
    left: 50px; 
    top: 0;
  }
}
@media (max-width:575px) {
  .static-section-banner.small .background{ 
    top: -1vw;
    left: -4vw;
    right: -2vw;
  }

  .static-section-banner.small{
    height:100px;
  }
  .banner-small{
    max-width:215px; 

    --object-man:85px;
    --object-plane:90px;
    --object-fast:92px;
    left: -20px;
  }
  .banner-small .object.plane {
    top:3px;
  }
  .static-section-about.about-01{
    padding-top: 25px;
  }

  .static-section-about.about-01 .article{
    font-size: 14px;
  }
}

/*==================================================
  About us 02
==================================================*/ 
.static-section-about.about-02{
  padding-top: 20px;
}
.static-card-service{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  background-color: rgba(235, 235, 235, 0.4);
  height: 342px;
}
.static-card-service .card-icon{
  margin-bottom:5px;
}
.static-card-service .card-icon .icons{
  width: 210px;
  height: 150px;
}
.static-card-service .card-body{
  flex: unset;
  line-height: 1.3;
}
.static-card-service h3{
  font-size: var(--fs-32);
  color: #1B2653;
  font-weight:var(--fw-600);
}
.static-card-service p{
  margin: 0;
  color: #656565;
}
.static-card-service p small{
  color: var(--orange);
  font-size: 14px;
}
 
@media (max-width:575px) {
  .swiper-card.about{
    --card-width:343px;
    --card-padding-right:10px;
  }
  .swiper-card.about{
    overflow: visible;
  }
  .swiper-card.about .swiper-slide{
    width: calc(var(--card-width) + var(--card-padding-right)); 
    padding-right:var(--card-padding-right)
  }
  .static-card-service{height: 320px;}
  .static-card-service .card-icon{margin-top: -15px; margin-bottom: 5px;}
}

@media (max-width:460px) {
  .swiper-card.about{
    overflow: hidden;
  }
  .swiper-card.about .swiper-slide{
    width: 100%;
    padding: 0;
  }
}

/*==================================================
  About us 03
==================================================*/ 
hr{border-color: #CBD4E6;}
.static-section-about .full-line {
  margin: -5px 0  30px;
}

.card-info{
  display: flex;
  flex-direction: column;
  gap:12px;
  padding:0 30px;
  margin-bottom:15px;
  color: #666C89;
  line-height: 1.4;
}
.card-info h3{
  font-size: 20px;
  align-items: center;
  gap:8px
}
.card-info h3 .icons{
  --icon-size:32px
}

.static-section-ads{
  background-color: #f8f8f8;
}
.static-section-ads img{
  margin: 0 auto;
  display: block;
}

.partner-boxed{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px ;
}
.partner-boxed img.img-h-80{
  height: 80px;
  width: auto;
}
.partner-boxed img.img-h-40{
  height: 40px;
  width: auto;
}
.partner-boxed img.img-h-48{
  height: 48px;
  width: auto;
}
.partner-boxed img.img-h-56{
  height: 56px;
  width: auto;
}

@media (max-width:800px) {
  .partner-boxed img.img-h-80{
    height: 60px;
  }
  .partner-boxed img.img-h-40{
    height: 35px;
  }
  .partner-boxed img.img-h-48{
    height: 48px;
    width: auto;
  }  
  .partner-boxed img.img-h-56{
    height: 56px;
    width: auto;
  }
  .static-section-about.about-04 h2{font-size: 24px;}
}
@media (max-width:690px) {
  .card-info{
    padding: 0 0;
  }
}
@media (max-width:575px) {
  .static-section-about.about-03{
    padding-bottom: 10px; 
  }
  .static-section-about .full-line {
    display: none;
  }
  .card-info{
    font-size: 14px;
    gap:6px;
    margin-bottom:10px;
  }
  .card-info h3.d-flex .icons{
    display: none;
    font-size: 22px;
  }

  .partner-boxed img.img-h-80{
    height: 40px;
  }
  .partner-boxed img.img-h-40{
    height: 30px;
  }
  .partner-boxed img.img-h-48{
    height: 48px;
    width: auto;
  }  
  .partner-boxed img.img-h-56{
    height: 56px;
    width: auto;
  }
  .static-section-about.about-04{padding-top:30px; padding-bottom:30px;}
  .static-section-about.about-04 h2{font-size: 22px; padding-bottom: 15px !important;}
}

@media (max-width:400px) {
  .partner-boxed img.img-h-80{
    height: 35px;
  }
  .partner-boxed img.img-h-40{
    height: 28px;
  }
  .partner-boxed img.img-h-48{
    height: 48px;
    width: auto;
  }  
  .partner-boxed img.img-h-56{
    height: 56px;
    width: auto;
  }
  .partner-boxed.partner-02{
    justify-content: flex-start;
    gap:10px  
  }
 
}

@media (max-width:350px) {
  .partner-boxed.partner-01{
    justify-content: flex-start;
    gap:10px  
  }
 
}

/*==================================================
  Footer
==================================================*/  

.static-section-h160{
  height: 160px;
  padding: 0;
}
 
@media (max-width:1024px) {
  .static-section-h160{
    height: 120px;
  }
}
@media (max-width:575px) {
  .static-section-h160{
    height:90px;
  }
}

.footer{
  background-color: #062254;
  color: #fff;
  padding: 35px 0;
  font-size: 12px;
}
.footer .static-container{
  max-width: 1280px;
}
.footer h3,
.footer h4{
  color: #fff;
}
.footer h3{
  font-size: 18px;
  margin-bottom: 7px;
}
.footer h4{
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: var(--fw-400);
}
.footer p{
  margin: 0;
  line-height: 1.3;
}
.footer-infos{
  display: flex;
  gap:30px;
  align-items: center;
}
.footer-infos .logo{
  width: 73px;
  height: auto;
}

.footer-contact{
  display: flex;
  justify-content: space-between;
}
.footer-contact .cols{
  max-width: 178px;
}

.link-icon{
  display: flex;
  align-items: center;
  gap:10px;
  margin-bottom: 5px;
}
.footer-contact .link-icon{color: #fff;}
.pc .footer-contact .link-icon:hover{opacity: 0.6;}

.footer hr{border-color: #CBD4E6; opacity: 0.7;}
.footer-copyright{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.followus{
  display: flex;
  gap:10px;
}

@media (max-width:1024px) {
  .footer-infos{
    gap:20px
  }
}
@media (max-width:991.98px) {
  .footer-infos{
   padding-bottom: 35px;
   flex-direction: column;
   align-items: flex-start;
  }

  .footer-contact .cols{max-width: 240px;}
}
@media (max-width:670px) {
  .footer-contact {padding-bottom: 10px;}
  .footer-contact .cols{max-width: 180px;}
}
@media (max-width:575px) {
  .footer{
    padding: 30px 0;
  }
  .footer-infos{
    padding-bottom: 20px;
  }
  .footer-contact{
    flex-direction: column;
    gap:20px;
    padding-bottom: 0;
  }
  .footer-contact .cols{max-width:100%;}

  .footer hr{
    margin: 10px 0;
  }
}



/*==================================================
  Table
==================================================*/  
.table{
  border: transparent;
  border-collapse: separate;
  border-spacing: 8px;
  text-align: center;
  padding: 0 32px;
}

.table thead td {
  font-size: var(--fs-20);
  font-weight: 600;
  text-align: center;
  /* width: 50%; */
  background-color: #fff;
}

.table thead td .title{
  display: flex;
  justify-content: center;
}

.table thead td .icons{
  --icon-size:32px;
}

.table td{
  font-size: 20px;
}

.table>tbody>tr:nth-of-type(odd)>*{
  background-color: #EBEBEB;
}
.table>tbody>tr:nth-of-type(even)>* {
  background-color: #D1D1D1;
}


@media (max-width:670px) {
  .hidden{
    display: none;
  }

  .table{
    padding: 0;
  }

  .table thead td {
    font-size: 16px;
  }

  .table thead td {
    width: auto;
  }

  .table td{font-size: 14px;}
  .table td:last-child{font-weight: 600}
}


/*==================================================
  static-section
==================================================*/  
.static-section-content ul li{
  font-size: 24px;
  text-decoration: underline;
  font-weight: 500;
  padding: 8px 0;
}


.static-section-content.content-01 .col-md-8{ width: 64%;}
.static-section-content.content-01 .col-md-4{ width: 36%;}

.static-section-about.content-01 .article{padding-right: 10px;}

@media (max-width:991.98px) {
  .static-section-banner.medium{height: 160px;}
}
@media (max-width:670px) {
  .static-section-content.content-01 .col-md-8{ width: 100%;}
  .static-section-content.content-01 .col-md-4{ display: none;}

  .static-section-content.rate .hgroup h2{
    font-size: 22px;
  }
}

@media (max-width:575px) {
  .static-section-content.content-01{
    padding-top: 25px;
  }

  .static-section-content.content-01 .article{
    font-size: 14px;
  }

  .static-section-content{
    padding: 24px 0;
  }
}


/*==================================================
  static-section - Rate
==================================================*/ 
.static-section-content.rate hr.full-line{
  display: none;
}

@media (max-width:670px) {
  .static-section-content.rate hr.full-line{
    display: block;
  }
}


/*==================================================
  static-section - serviceareas
==================================================*/ 

/* .table.table-serviceareas thead td:first-child {
  width: 75%;
} */

/* @media (max-width:575px) {
  .table.table-serviceareas thead td:first-child {
    width: 70%;
  }  
} */



/*==================================================
  static-section - shipments
==================================================*/

.static-section-content.content-01.shipments .col-md-8{ width: 60%;}
.static-section-content.content-01.shipments .col-md-4{ width: 40%;}


.card-shipments-lists{
  --bs-gutter-x:1.5rem;
  --bs-gutter-y:1.5rem;
}
.card-shipments{
  height: 100%;
  background-color: #F7F7F7;
}
.card-shipments .card-product{
  background-color: #EBEBEB;
  display: flex;
  justify-content: center;
  height: 256px;
  align-items: center;
}

.card-shipments .card-product .img-product{
  width: 95%;
  height: auto;
}

.card-shipments .card-product-not-allow{
  background-color: #EBEBEB;
  display: flex;
  justify-content: center;
  height: 192px;
  align-items: center;
}

.card-shipments .card-product-not-allow .img-product-not-allow{
  width: 90%;
  height: auto;
}

.card-shipments .card-body{
  padding: 10px 10px 20px 10px;

}

.card-shipments .card-body h4{
  font-size: 18px;
}

.card-shipments .card-body p{
  font-size: 13px;
  margin-bottom: 0;
}


@media (max-width:670px) {
  .static-section-content.content-01.shipments .col-md-8{ width: 100%;}
  .static-section-content.content-01.shipments .col-md-4{ width: 100%; display: block;}
  .static-section-content.content-01.shipments .col-md-4 img{ display: none;}



  .card-shipments-lists{
  --bs-gutter-x:0.5rem;
  --bs-gutter-y:0.5rem;
  }
}


/*==================================================
  static-section - contact
==================================================*/
.contactus {
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.card-contact {
    display: flex;
    position: relative;
    color: #666C89;
    gap: 16px;
    margin-bottom: 24px;
}

.card-contact .card-icon .icons{
  --icon-size: 24px;
}

.card-contact .card-body {
    padding: 0;
    margin: auto 0;
}




/*==================================================
  static-section - contact
==================================================*/
.static-section-map {
    padding: 0;
    height: 320px;
}

.static-section-map iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}