@font-face {
  font-family: 'NP Naipol All in One';
  src: url('../fonts/NPNaipolAllinOne-Bold.woff2') format('woff2'),
      url('../fonts/NPNaipolAllinOne-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NP Naipol All in One';
  src: url('../fonts/NPNaipolAllinOne.woff2') format('woff2'),
      url('../fonts/NPNaipolAllinOne.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NP Naipol All in One';
  src: url('../fonts/NPNaipolAllinOne-BoldItalic.woff2') format('woff2'),
      url('../fonts/NPNaipolAllinOne-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'NP Naipol All in One';
  src: url('../fonts/NPNaipolAllinOne-Italic.woff2') format('woff2'),
      url('../fonts/NPNaipolAllinOne-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}



/*==================================================
    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:#fff;
  --bs-body-bg:var(--dark-gray);
  --bs-body-text-align:left;
  --bs-body-font-weight:var(--fw-300);
  --bs-body-line-height:1.60; 
  --bs-body-font-size:var(--fs-16);
  --bs-body-font-family:'Noto Sans Thai', sans-serif;   
  --bs-link-hover-color:var(--color-primary);

  --h1:40px;
  --h2:40px;
  --h3:32px;
  --h4:24px;

  --fs-65:65px;
  --fs-18:18px;
  --fs-16:16px;
  --fs-14:14px;  
  
  --dark-gray:#111111;  
  --medium-gray:#9194A0; 
  --main-orange:#FF9900;
  --second-orange:#FF4800;

  --body-rgb-a:1;
  --rgb-white:255,255,255; 
 
  --color-primary:var(--second-orange); 
  --color-secondary:var(--main-orange); 

  --card-border-radius:20px; 

  --animation-primary: 0.4s cubic-bezier(.75, 0, .25, 1);
  --animation-navigation-fade: 0.3s ease-in-out; 
  
  --header-height:120px; 
  --navbar-brand:175px;

  --header-height-scrolling:90px; 
  --navbar-brand-scrolling:140px; 

  --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:1550px) {
  :root{
    --padding-90:70px;  

    --h3:30px;
    --h4:22px;
  }
}

@media (max-width:1500px) {
  :root{ }
}

@media (max-width:1440px) {
  :root{ }
}

@media (max-width:1280px) {
  :root{
    --header-height:110px; 
    --navbar-brand:140px;

    --h3:26px;
    --h4:20px;
    --fs-65:55px;
    --fs-16:15px;
  }
}

@media (max-width:1199px) {
  :root{
    --padding-90:50px;
 
    --fs-18:16px;
  }
}


@media (max-width:1024px) {
  :root{ 
    --header-height:100px;
    --header-height-scrolling:var(--header-height);
    --navbar-brand-scrolling:var(--navbar-brand);
  }
}

@media (max-width:991.98px) {
  :root{ 
  }
}
@media (max-width:670px) {
  :root{ 
    
    --padding-90:40px;     
    --header-height:90px;
    --navbar-brand:120px;

    --fs-16:15px;
    --fs-18:var(--fs-16);
    --fs-65:44px;
    
    --h4:18px;
    --h3:20px;
 }
}

@media (max-width:575px) {
  :root{
    --fs-16:14px;
  }
  
}  
.highlight{color: var(--color-primary);}

.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:48px;
 -webkit-appearance: none; 
  padding:0 15px;
 
  font-weight:var(--fw-400); 
  font-family:inherit;  
  font-size:var(--fs-16); 
  border:1px solid #F0F0F0;

  height:var(--input-h);
  line-height:calc(var(--input-h) - 2px);  
  background:#fff; 
  border-radius: 12px; 
  color: var(--title-color);  
 
    -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-select.secondary{
  color: #2F9AB9;
  border-color: #2F9AB9;
  background-color: #EBF5F8;
  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='%232F9AB9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}
 
.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='%238D93A5' 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: 12px;
  background-repeat: no-repeat;
 
} 
 
.form-control:focus,
.form-select:focus{
  background-color: #fff; 
  outline: 0;
  border-color:rgba(86, 208, 201, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(80, 203, 239, 0.25);
 
}

.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;
  gap: 10px;
}
.form-check .form-check-input{
  width: 20px;
  height: 20px;
  margin-right: 0; 
  border-width: 2px;
  position: relative;
  margin-left:0;
  margin-top: 0;
  border-radius: 3px; 
  flex-shrink: 0;
  border-color:#F0F0F0;
  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: 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: #25C870;
  border-color: #25C870; 
}
.form-select [data-bs-toggle]{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap:5px;
  color: var(--title-color); 
  padding-top: 2px;
  opacity: 0.5;
  outline: 0 !important;
}
.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{
  border-color: rgba(86, 208, 201, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(80, 203, 239, 0.25);
}
.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: 14px;
  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-500); 
  font-size: var(--fs-18);
  margin-bottom:10px;
  color: #1F1F1F;
}
.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:64px; 
  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-500);    
  font-size: var(--fs-18); 
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap:6px;   
  --bs-btn-border-width:0;
  --bs-btn-border-radius:100px;

  --bs-btn-color:#fff; 
  --bs-btn-bg: var(--color-primary);  
  --bs-btn-hover-color:#fff; 
  --bs-btn-hover-bg:#FBA321;
  
  --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-outline{
  --bs-btn-border-width:2px; 
  --bs-btn-bg:rgba(255,255,255,0.05) ; 
  --bs-btn-color: #fff;  
  --bs-btn-border-color:#fff; 
 
  --bs-btn-hover-bg:var(--color-primary);
  --bs-btn-hover-border-color:var(--color-primary);

}
.btn-outline svg{left:0;}
.pc .btn-outline:hover svg path{fill:#fff;}
.pc .btn-outline:hover svg{
  transform: rotate(45deg);
  /* left: 10px; */
}
.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; 
  gap:20px;
  justify-content: center;

  padding: 30px 0;
} 
.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){
  .btn{
    --btn-h:56px;
    font-size: 16px;
    padding: 0 25px;
  }
}

@media (max-width:670px){
  .btn{
    --btn-h:48px;
    font-size: 14px;
    padding: 0 20px;
  }

  .buttons{
    padding: 15px 0;
  }
} 
 
/*==================================================
    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:16px;
  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;}
.container-fluid{
  max-width: 1920px;
  --padding-x:50px;
  padding-left:var(--padding-x);
  padding-right:var(--padding-x); 
  position: relative;
  z-index: 9;    
}

.container{ 
  --padding-x:80px;
  max-width: calc(1440px + (var(--padding-x) * 2));
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  position:relative;
  z-index:9; 
}
 
.section-target{
  position: absolute; 
  top: calc((var(--header-height-scrolling)  + 0px) * -1); 
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; 
}
 
.section{
  display: block;
  position: relative; 
  --padding-top:100px;
  --padding-bottom:100px;

  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) {
  .container{
    --padding-x:50px;
  } 
  .container-fluid{
    --padding-x:30px;
  }
  .section{ 
    --padding-top:60px;
    --padding-bottom:60px;
  }
}
  
@media (max-width:991.98px) { 
  .container-fluid{
    --padding-x:30px;
  }  
}
@media (max-width: 670px) {
  .container{
    --padding-x:30px;
  }

  .section{ 
    --padding-top:40px;
    --padding-bottom:40px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid{
    --padding-x:20px;
  }

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

/*==================================================
    Header Setup
==================================================*/  
.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;}    

.title-main{color: var(--title-color);}
 
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-500);
  font-style: normal;  
  line-height:1.2;    
  position: relative;  
  padding-top: 2px; 
}   
.nowrap{ white-space: nowrap; }    
 
.h1, h1{
  font-size: var(--h1);
}
.h2, h2{
  font-size: var(--h2);
}
.h3, h3{
  font-size: var(--h3);
}
.h4, h4{
  font-size: var(--h4);
}
.h5, h5{ }
.h6, h6{ }
 
.header,
.navbar-brand,
.navbar-brand img{
  transition: all 0.3s;
}
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  height: auto;
  z-index: 1020;      
  display: block;    
  height: var(--header-height);  
  background-color:#28282a;    
} 
 
.header-trans{ 
  background-color: transparent;
}
.page.p-0 .header{background-color:rgba(33, 33, 35, 0); }
.scrolling .page.p-0 .header{ background-color:rgba(17, 17, 17, 0.9);}

.scrolling .header{
  height: var(--header-height-scrolling);  
  background-color:#28282a;    
}
.scrolling .header-trans{  
  background-color: #0A0A0A;
}
.header .container,
.header .container-fluid{  
  display: flex;   
  align-items:center;  
  height: 100%; 
  z-index: 400;
  position: relative; 
  justify-content:space-between;
} 
  
.navbar-brand{
  margin:auto 0;  
  padding: 0;   
  flex-shrink: 0;
  z-index: 200;  
  flex-shrink: 0; 
  width: var(--navbar-brand);
}
.scrolling .navbar-brand{
  width: var(--navbar-brand-scrolling);
}
.navbar-brand a{
  display: block;
  position: relative;
}
.navbar-brand img,
.navbar-brand svg{
  width: 100%; 
  height: auto;  
}  
   
.btn-menu{display: none;} 
.nav-btn-menu{display: none;}

.nav-general{
  gap:0; 
  height: 100%;
  padding: 0; 
  display: flex;
  justify-content: end;
}
.nav-general > li{
  display: flex;
  align-items: center;
} 
.nav-general > li > a{
  color: #fff;
  font-size: 14px;
  font-weight: var(--fw-500);
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap:5px;
}
.nav-general > li.nav-lang{display: none;}
.scrolling .nav-general > li > a{
  height: var(--header-height-scrolling);
}
.nav-general .dropdown-menu > li > a{justify-content: center;}
.dropdown-menu{
  --bs-dropdown-border-radius:0;
  --bs-dropdown-border-color:rgba(17, 17, 17, 1);
  --bs-dropdown-bg:rgba(17, 17, 17, 0.9);
  --bs-dropdown-font-size:var(--fs-16);
  --bs-dropdown-color:var(--bs-body-color);
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y:4px;
  --bs-dropdown-spacer:0;
  --bs-dropdown-min-width:0;
  --bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.05);
  --bs-dropdown-border-width:0;
  
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: all 0.35s;
  top: 110%;
} 
.dropdown-menu > li > a{
  display: flex;
  gap:10px;
  padding:8px 15px;
  color:#fff;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}
.dropdown-menu > li{
  border-bottom: 1px solid var(--bs-dropdown-border-color);
}
.dropdown-menu > li:last-child{
  border: 0;
}
.dropdown-menu > li > a:hover{
  background-color: var(--bs-dropdown-link-hover-bg);
}
.nav-general a[data-bs-toggle] .icon-arrow{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-image: url(../img/icons/icon-arrow-white.svg);
}
.nav-general .nav-lang .dropdown-menu{
  width: 100px;
  left: auto;
  right: -15px;
  text-align: center;
}
.pc li.dropdown:hover .dropdown-menu,
.dropdown-menu.show{
  top: 100%;
  pointer-events: all;
  opacity: 1;
}
 
.avatar{
  --avatar-size:40px;
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  object-position: center;
  object-fit: cover;
  flex-shrink: 0;
} 

 
.btn-icon,.navbar-slider{display: none;}
 
@media (min-width:1025px) { 
  .btn-icon{display: none;}

  .nav-main{
    --padding:15px;
    position: absolute;
    top: 0;
    left: 5%;
    right: 0;
    bottom: 0;
    justify-content: center;
  }
  .nav-main > li > a{
    color:#fff;
    font-size: 14px;
    font-weight: var(--fw-500);
    padding: 0 var(--padding);
    height: var(--header-height);
    text-transform: uppercase;
    display: block;
    display: flex;
    align-items: center;
  }
  .pc .nav-main > li:hover > a,
  .nav-main > li > a.active{
    color: var(--color-primary);
  }

  .scrolling .nav-main > li > a{
    height: var(--header-height-scrolling);
  }
}
 
@media (min-width:1100px) {
  .nav-main{--padding:20px;}
  .nav-main > li > a{font-size: 15px;}
  .nav-general > li > a{font-size: 15px;}
} 
 

@media (min-width:1281px) {
  .nav-main{--padding:30px;}
  .nav-main > li > a{font-size: 16px;}
  .nav-general > li > a{font-size: 16px;}
} 

@media (min-width:1441px) { }
/*==================================================
   Mobile
==================================================*/  
@media (max-width:1024px) {
  .nav-general{gap:15px;}
  .header .nav-main{display: none;}

  .btn-menu{
    --bs-btn-color:transparent;
    --bs-btn-bg:transparent;
    --btn-h:35px;
    padding: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    filter:none;
  
    width: var(--btn-h);
  }
  .btn-menu .icons{
    --icon-size:24px;
    background-image: url(../img/icons/icon-menu.svg);
  }

  .btn-menu:before,
  .btn-menu:after{display: none;}


  /**/

  .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:#151515;
      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-main {
      position: absolute;
      top: 0;
      bottom: 0;
      display: block;
      height: 100%; 
      right:0;
      width: calc(var(--navbar-width) * 1);
      overflow: hidden;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch; 
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
  }
  .nav-main li {
      display: block;
      position: static;
  }
  .nav-main li {
      padding-left: 30px !important;
  }
  .nav-main 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;
      text-transform: uppercase;
  } 
  .nav-main > li > a { 
      position: relative;
  } 
}

@media (max-width:575px) {
  .navbar-slider {
    --navbar-width:calc(100vw - 50px);
  }
  .nav-main li a{
    font-size: 15px;
  }
}

/*==================================================
   Section
==================================================*/  
 
.page{
  display: flex;
  position: relative;
  overflow: hidden;   
  /* padding-top: var(--header-height); */
  padding: 0;
  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(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  animation: spin 1s infinite linear;
}
 
 
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.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;
  }
}
 
.section{ 
  position: relative; 
}
.section.h-full{
  min-height: 100vh;
}

.section-title{  
  position: relative;       
}   
   
.hgroup{
  display: block;
  padding:0;
}
.hgroup.center{
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.hgroup .group{
  position: relative;
}
.hgroup .line-animate{
  margin-top: 8px;
}
 
.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;}
    
.section-banner{ 
  position: relative;
  padding: 0 !important;
}

.section-body{
  flex: 1 1 auto;
  /* padding-top:var(--header-height); */ 
}
.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) { }

/*==================================================
   Home - Banner
==================================================*/ 
.pt-body{padding-top: var(--header-height) !important;}
 
.section-banner{ 
  height: 100vh;
}
.banner-caption{
  position: absolute;
  top: 25%;
  left: 0;
  right: 0; 

  text-align: center;
}
.banner-caption h1,
.banner-caption h5{
  color: #fff;
  font-family: 'NP Naipol All in One';
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.banner-caption h1{
  font-size:75px; 
  line-height: 1;
}
.banner-caption h5{
  font-size:55px;
}

.page-scroll{
  position: absolute;
  left: 50%;
  right: 0;
  bottom: 40px;
  display: flex;
  width: 18px;
  margin-left: -9px;
}
.page-scroll .inner{
  position: relative; 
  display: flex; 
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap:15px; 
  margin: 0 auto;
}
.page-scroll .icon-arrow{
  width: 100%;
  height: 15px;
  background-image: url(../img/icons/icon-next-section.svg);
  top: 0;
}
.page-scroll p{
  color: #fff;
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 10px;
}
.page-scroll .line{
  position: absolute;
  height: 40px;
  width: 1px;
  left: 50%;
  bottom: 100%;
  margin-bottom: 15px;
}
.page-scroll .line:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  transition: all 0.8s;
  transition-delay: 0.5s;
}
.page-scroll .line.aos-animate.line:before{height: 100%;}
.mousey {
  width:12px;
  height:21px;
  padding: 0; 
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px; 
  box-sizing: content-box;
  margin:0;
  position: relative; 
  flex-shrink: 0; 
}
.scroller {
  width:2px;
  height: 4px;
  margin: auto; 
  border-radius: 50px;
  background-color:var(--color-primary);
  position: relative;
  top:5px;
  animation-name: scroll;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

.pc .page-scroll:hover .icon-arrow{
  top: 6px;
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    opacity: 1; 
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}


@media (max-width:1440px) {
  .banner-caption h1{
    font-size: 66px;
  }
  .banner-caption h5{
    font-size: 45px;
  }

  .page-scroll p{
    padding-top:5px;
    font-size: 11px;
  }

  .page-scroll .line{height:30px; margin-bottom: 10px;}
}

@media (max-width:1280px) {
  .banner-caption h1{
    font-size:55px;
  }
  .banner-caption h5{
    font-size: 35px;
  }
}

@media (max-width:991.98px) {
  .section-banner{
    height: calc(var(--vhs, 1vh) * 100) !important;
  }
  .banner-caption h1{
    font-size: 66px;
  }
  .banner-caption h5{
    font-size: 45px;
  }

  .page-scroll{
    bottom: 60px;
  }
}
@media (max-width:670px) {
  .banner-caption h1{
    font-size:40px;
  }
  .banner-caption h5{
    font-size: 25px;
  }

  .page-scroll{
    bottom: 40px;
  }
  .page-scroll p{
    display: none;
  }


}
/*==================================================
   Home - aboutus
==================================================*/ 

.section-aboutus{
  background-color: #101012;
}
.section-aboutus .background:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height:250px;

  background: linear-gradient(180deg, #0F0C15 0%, rgba(0, 0, 0, 0) 27.25%);
}
.section-aboutus .hgroup{
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  text-align: center;
  font-size: var(--fs-18);
  font-weight: var(--fw-500);
  color: rgba(255, 255, 255, 0.8);
}

.section-aboutus .card-video{
  margin: 60px 0;
}
.card-video video{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%    !important;
  height: 100%   !important;
  object-fit: cover;
  object-position: center center;
}
.card-video{
  position: relative;
}
.card-video .photo{
  width: 100%;
  height: 100%;
}
.card-video .photo img{
  width: 100%;
}

.section-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  margin-bottom:10px;
  position: relative;
}
.section-header .text-group{
  text-align: justify;
  color: rgba(255, 255, 255, 0.8);
  width: 100%;
  max-width: 750px;
  position: relative;
  font-weight: var(--fw-400);
}
 
.section-header .text-group .icons{
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/icon-corner.svg);
}
.section-header .text-group .icons.top{
  top: -20px;
  left: -20px;
}
.section-header .text-group .icons.bottom{
  bottom: -10px;
  right: -15px;
  transform: rotate(-180deg);
}
.section-header h3{
  font-weight: var(--fw-600);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.section-header h2{
  color: var(--color-primary);
  font-weight:800;
  text-transform: uppercase;
  font-size: var(--fs-65);
  position: relative;
  overflow: hidden;
  padding-right:30px;
}
.section-header h5.stroke{
  color: transparent;
  -webkit-text-stroke: 1px  rgba(255, 255, 255, 0.3);
  font-size: var(--fs-65);
  font-weight: 800;
}
.section-header .group{
  display: flex;
  align-items: flex-end;
  gap:12px;
  font-weight: var(--fw-600);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.section-header .group p{
  position: relative;
  margin: 0 0 25px;
}
.section-header .group p:after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  border-bottom: 2px solid var(--color-primary);
}
.title-group{
  display: flex;
  flex-direction: column;
}
.title-group .line-skew{
  position: absolute;
  z-index: -1;
  left: 23px;
  bottom:5px;
  height: 36px; 
  right: 13px;
  --bg:#4D4D4D;
}
.title-group .line-skew:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width:0;
  bottom: 0;

  background-color:var(--bg);
  transform: skew(-15deg);
  transition: all 0.8s;
  transition-delay: 0.3s;
}
.title-group .line-skew.aos-animate:before{
  width: 100%;
}

.card-service{
  display: flex;
  position: relative;
  border: 1px solid #3E3E41;
  padding: 10px;
  align-items: center;
  height: 100%;
}

.card-service:before{
  content: '';
  position: absolute;
  top:20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color:rgba(59, 59, 59, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}
.pc .card-service:hover:before{background-color:rgba(59, 59, 59, 1);}
.card-service .card-photo,
.card-service .card-body{
  position: relative;
  z-index: 10;
}
.card-service .card-photo{
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-service .card-photo img{
  width: 150px;
  height: 150px;
  object-position: center;
  object-fit: contain;
}

.card-service .card-body{
  width: 55%;
  padding: 45px 30px  45px 0;
}
.card-service h4{
  text-transform: uppercase;
  color: #fff;
  font-weight: var(--fw-700);
  margin-bottom: 15px;
}
.card-service p{ 
  margin: 0;
}

.service-lists{
  --bs-gutter-x:50px;
  --bs-gutter-y:50px;
  margin-bottom: 45px;
  padding-top: 30px;
}

.vector-lists.aboutus .icon-1{
  --icon-size:510px;
  bottom: 12%;
  left: -420px; 
}
.vector-lists.aboutus .icon-1 svg{animation: rotate-animation1 40s infinite linear;}

.section-aboutus{overflow: hidden;}
 
canvas.stars{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  z-index: 0;
}
@media (max-width:1280px) {

  .section-header .text-group{
    max-width: calc(100% - 400px);
  }
  .service-lists{padding-top: 15px;}
  .card-service {
    font-size: 14px;
  }
  .card-service:before{
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .card-service .card-body{
    padding: 35px 30px 35px 0;
  }
  .card-service h4{
    font-size: 18px;
  }
  .service-lists {
    --bs-gutter-x:40px;
    --bs-gutter-y:40px;
  }
}

@media (max-width:1199px) {
  .card-service{font-size: 13px;}
  .card-service .card-photo img{
    width: 120px;
    height: 120px;
  }
  .card-service h4{font-size: var(--fs-16); margin-bottom: 7px;}
  .service-lists {
    --bs-gutter-x:25px;
    --bs-gutter-y:25px;
  }
}

@media (max-width:991.98px) {
  .section-header {
    flex-direction: column;
    margin-bottom:20px;
    text-align: center;
  }
  .section-header .text-group{
    width:100%;
    max-width:100%;
    margin-top:50px;
  }
  .section-header .group{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px
  }
  .section-header h5.stroke{display: none;}
  .section-aboutus .card-video{
    margin:40px 0;
  }

  .card-service{
    flex-direction: column;
  }
  .card-service .card-body{
    width: 100%;
    padding: 30px;
    text-align: center;
  }
  .card-service .card-photo{
    margin-top:30px;
  }
  .service-lists{padding-top: 0px;}
}

@media (max-width:575px) {
  .section-header{padding: 30px 0;}
  .section-header h2{padding-right:20px;}
  .section-header .text-group{max-width:90%; text-align: left;}
  .title-group .line-skew{height: 28px; left: 16px;}
  .card-service h4{font-size: 16px;}
  .card-service .card-body{padding-top: 20px;}
}

/*==================================================
   Home - Project
==================================================*/ 

.section-project{
  background-color: #464646;
  overflow: hidden;
}
.section-project .buttons{
  padding: 30px 0 10px; 
}
 

.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative; 
  display: block; 
  width: 100%;
   
  overflow: hidden;  
  padding:  0;
  margin-bottom:40px;

}
.marquee > div{
  display: flex;
  align-items: center;
  height: 100%; 
}
.marquee div.d-flex{
  gap:0
}
 
.marquee-text .item{
  font-size:120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 800;
  padding: 0 20px; 
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.nav-filter-boxed{ 
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.nav-filter{
  display: flex;
  /* gap:55px;  */
  justify-content: center;
}
.nav-filter li.title{
  margin: auto 0;
  padding-right: 20px;
}
.nav-filter li .link-item{
  font-size: var(--fs-18); 
  color: rgba(255, 255, 255, 1);
  font-weight: var(--fw-500);
  padding:25px 25px;
  display: block;
  cursor: pointer;
}
.nav-filter li .link-item span{
  position: relative;
  display:inline-block;
  padding: 3px 0;
}
.nav-filter li .link-item span:before{
  content: '';
  position: absolute;
  left: 0;
  width:0;
  bottom: 0;
  height: 3px;
  background-color: var(--color-primary); 
  transition: all 0.25s;
}
.nav-filter li .link-item:hover,
.nav-filter li .link-item.active{color: #fff;}
.nav-filter li .link-item:hover span:before,
.nav-filter li .link-item.active span:before{
  width: 100%;
}

.project-lists.mixitup > div{display: none;}
.gallery-hidden{
  pointer-events: none;
}
.card-project{
  position: relative;
  display:flex;
}
.card-project .label{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #000000;
  color: #fff;
  font-size: 14px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-weight: var(--fw-500);
  text-transform: uppercase;
}
.card-project .card-photo{
  background-color: #ccc;
  width: 100%;
  height: 100%;
}
.card-project .card-body{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events:none;
  opacity: 0;
  transition: all 0.55s;
}
.card-project p{margin: 0; display: none;}
.pc .card-project:hover .card-body{
  opacity: 1;
}
.card-project .card-body .group{
  padding: 0 50px;
}
.card-project .icons{
  --icon-size:70px;
  background-image: url(../img/icons/icon-plus.svg); 
}
.card-project h4{
  margin:20px 0;
  padding-top: 10px;
}
.card-project .label{
  transition: all 0.55s;
}
.card-project .icons,
.card-project h4,
.card-project p{
  transition: all 0.6s;
  opacity: 0;
 
}
.card-project .icons{
  position: relative;
  top: 30px;
}
.pc .card-project:hover .label{background-color: var(--color-primary);}
.pc .card-project:hover .icons,
.pc .card-project:hover h4,
.pc .card-project:hover p{
  top: 0;
  opacity: 1;
}
 
.project-lists{
  --bs-gutter-x: 50px;
  --bs-gutter-y: 50px;

  margin-top: 1px;
  margin-bottom: 40px;
}

.vector-lists{
  padding: 0;
  margin: 0;
}
.vector-lists .icons{
  position: absolute;  
}
.vector-lists .icons img,
.vector-lists .icons svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center; 
}
.vector-lists.projects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2460px;
}
.vector-lists.projects .icon-1,
.vector-lists.projects .icon-3{
  --icon-size:184px;  
}
.vector-lists.projects .icon-1{
  top: 160px;
  right: 55px;
}
.vector-lists.projects .icon-1 svg{transform: rotate(25deg);animation: rotate-animation1 40s infinite linear;}
.vector-lists.projects .icon-3 svg{transform: rotate(25deg); animation: rotate-animation2 40s infinite linear;}
.vector-lists.projects .icon-1 path,
.vector-lists.projects .icon-3 path{fill:rgba(253, 76, 0, 0.5) ;}

.vector-lists.projects .icon-2{
  --icon-size:56px; 
  /* transform: rotate(25deg); */
  top: 330px;
  right: 20px;
} 
.vector-lists.projects .icon-2 svg,
.vector-lists.projects .icon-4 svg{animation: rotate-animation1 10s infinite linear;}
.vector-lists.projects .icon-2 path,
.vector-lists.projects .icon-4 path{stroke:#FD4C00 !important; opacity: 1 !important;}

.vector-lists.projects .icon-3{
  top: 750px;
  left: 5%;
}
.vector-lists.projects .icon-4{
  --icon-size:85px;  
  top: 930px;
  left: 30px;
} 

.vector-lists.projects .icon-5{
  --icon-size:430px;  
  top: 37%;
  right: 40px;
}
.vector-lists.projects .icon-6{
  --icon-size:430px;  
  top:56%;
  left: -70px;
}
.vector-lists.projects .icon-5 svg,
.vector-lists.projects .icon-6 svg,
.vector-lists.projects .icon-7 svg{animation: rotate-animation1 40s infinite linear;}

.vector-lists.projects .icon-7{
  --icon-size:285px;  
  bottom:290px;
  right:50px;
}
.vector-lists.projects .icon-7 path{fill:rgba(93, 86, 86, 0.5) ;}
@keyframes rotate-animation1 {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes rotate-animation2 {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(-180deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

.vector-lists.projects.main {
  margin-top:-130px;
}
.vector-lists.projects.main .icon-7{
  bottom: auto;
  top: 60%;
}

@media (max-width:1550px) {
  .vector-lists.projects .icon-3,
  .vector-lists.projects .icon-4{margin-left: -50px;}
}

@media (max-width:1440px) {
  .marquee-text .item{
    font-size: 100px;
  }

  .vector-lists.projects {height: 2400px;}
}

@media (max-width:1280px) {
  .marquee{
    margin-bottom:10px;
    margin-top: -20px;
  }
  .marquee-text .item{
    font-size:95px;
    line-height: 0.9;
  }
  .nav-filter li .link-item{ 
    font-size: var(--fs-16);
  }
  .project-lists {
    --bs-gutter-x:40px;
    --bs-gutter-y:40px;
    margin-bottom: 20px;
  }
  .nav-filter li .link-item span:before{height: 2px;}
 
  .card-project .icons {
    --icon-size: 55px;
  }
  .card-project h4{margin: 10px 0;}
  .card-project .label{height: 32px; padding: 0 10px;}


  .vector-lists.projects .icon-5,
  .vector-lists.projects .icon-6{
    --icon-size:330px;
    margin-top: 100px;
  }
}
@media (max-width:1199px) {
  .marquee{
    margin-top: 20px;
  }
  .vector-lists.projects {height:1500px;}
}
@media (max-width:1024px) {
  .nav-filter-boxed{
    margin-top: -25px;
  }
  .nav-filter li .link-item{
    padding-top:15px;
    padding-bottom:15px;
  }
  .project-lists {
    --bs-gutter-x:30px;
    --bs-gutter-y:30px;
  }

  .card-project h4{
    font-size: var(--fs-18);
  }
  .card-project p{
    font-size: 14px;
  }

  .card-project .label{height:28px; font-size: 12px;}

  .vector-lists.projects .icon-1, 
  .vector-lists.projects .icon-3{--icon-size: 134px;}
  .vector-lists.projects .icon-1{top:7%;}
  .vector-lists.projects .icon-2{top: 15%;--icon-size:44px;}
  .vector-lists.projects .icon-3{top:35%;}
  .vector-lists.projects .icon-4{top: 43%;--icon-size:44px;}

  .vector-lists.projects.main .icon-5{top:25%;}
  .vector-lists.projects.main .icon-7{top:50%; right: -100px;}
}
@media (max-width:991.98px) {
  /* .nav-filter{gap:35px} */
  .nav-filter li .link-item{padding: 25px 17px;}
 
  .card-project p{
    font-size: 12px;
  }
  .card-project .icons {
    --icon-size:40px;
  }

  .marquee{margin-bottom: 40px;}

  .section-project .buttons{
    padding:20px 0 20px; 
  }

  .vector-lists.projects .icon-5,
  .vector-lists.projects .icon-6{
    --icon-size:240px;
    margin-top: 100px;
  }
  .vector-lists.projects .icon-5{ right: -70px; top: 45%;}

  .vector-lists.projects .icon-1, 
  .vector-lists.projects .icon-3{--icon-size: 114px;}
  .vector-lists.projects .icon-1{top:7%;}
  .vector-lists.projects .icon-2{top: 15%;}
  .vector-lists.projects .icon-3{top:48%;}
  .vector-lists.projects .icon-4{top:55%;}
}

@media (max-width:690px) {
  .nav-filter-boxed{
    margin-top: -15px;
  }
  .project-lists {
    --bs-gutter-x:20px;
    --bs-gutter-y:20px;
    margin-top: 15px;
  }

  .marquee-text .item{
    font-size:65px;
  }
  
  .nav-filter li.title{display: none;}
}

@media (max-width:575px) {
  .marquee{margin-bottom: 20px;}
  .nav-filter {
    gap:0;  
  }
 
  .project-lists {
    --bs-gutter-x:12px;
    --bs-gutter-y: 12px;
    margin-top: 15px;
  }
  .card-project .label {
    height: 24px;
    font-size: 11px;
  }

  .vector-lists.projects .icon-1, 
  .vector-lists.projects .icon-3{--icon-size: 90px;}

  .vector-lists.projects .icon-1{right: 10px;}
  .vector-lists.projects .icon-2{right: -15px;}

  .vector-lists.projects .icon-3{top: 65%;}
  .vector-lists.projects .icon-4{top: 75%;}

  .vector-lists.projects .icon-5,
  .vector-lists.projects .icon-6{
    display: none;
  }

  .vector-lists.projects.main .icon-3{top:25%;}

  .vector-lists.projects.main{height: 1000px; margin-top: -50px;}
}

@media (max-width:480px) {
  .nav-filter{
    gap:0;
    justify-content: space-between;
  }
  .nav-filter li .link-item{
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width:390px) {
  .nav-filter li .link-item{
    font-size: 14px;
  }
}
/*==================================================
   Home - Our Clients
==================================================*/ 

.section-client{
  background-color:#3d3d3d;
}
.section-client:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0; 
  background-color:rgba(255, 72, 0, 0.5);
  box-shadow: 0px 5px 20px #FF4800;
  height: 2px;
  z-index: 100;
  width: 0;
  transition: all 1s;
  transition-delay: 0.2s;
}
.section-client.aos-animate:before{width: 100%;}
.section-client .background{
  background-position: bottom center; 
}

.swiper-overflow.client{
  overflow: hidden;
  position: relative;
}
.swiper-client{
  background-color:rgba(45, 45, 45, 1);
  overflow: visible;
  margin: 50px 0 0;
} 
.swiper-client .swiper-slide{ 
  width: 20%;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}
.swiper-client .swiper-slide:before{
  content: '';
  position: absolute;
  top:50%;
  left: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/icon-plus-orange.svg);
  opacity: 1;
  transition: all 0.25s;
}
.swiper-client .swiper-slide:first-child{
  border-left-color: transparent;
}
.swiper-client .card-photo{
  width:100%;
}
.swiper-client .card-photo:first-child{
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.swiper-client .photo{
  background-size: 70%;
}

.swiper-button-group{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.swiper-pagination-bullet,
.swiper-pagination-bullet-active{
  border-radius: 0;
  width: 24px;
  height: 3px;
}
.swiper-pagination-bullet{
  background-color: #909090;
}
.swiper-pagination-bullet-active{
  background-color: var(--color-primary);
}
.swiper-pagination{
  gap:5px;
  justify-content: center;
  position: relative;
  bottom: auto;
}
.swiper-button-next, .swiper-button-prev{
  width: 50px;
  height:50px;
  border:1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  left: auto;
  right: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
}
.swiper-button .icons{
  --icon-size:24px;
  background-image: url(../img/icons/icon-arrow-white.svg);
}
.swiper-button-next .icons{
  transform: rotate(-90deg);
}
.swiper-button-prev .icons{
  transform: rotate(90deg);
}
.pc .swiper-button:hover{
  background-color: rgba(255, 255, 255, 0.15);
}
.swiper-client .swiper-slide-active:before{opacity: 0;}
@media (min-width:992px) { 
  .swiper-client .swiper-slide-active + div + div + div + div + div:before{opacity: 0;}
}
@media (min-width:576px) and (max-width:991.98px) {
  .swiper-client .swiper-slide{ 
    width: 25%;
  }
  .swiper-client .swiper-slide-active + div + div + div + div:before{opacity: 0;}
}
@media (min-width:451px) and (max-width:575px) {
  .swiper-client .swiper-slide{ 
    width: 33.33%;
  }
  .swiper-client .swiper-slide-active + div + div + div:before{opacity: 0;}
}
@media (min-width:0) and (max-width:450px) {
  .swiper-client .swiper-slide{ 
    width:50%;
  }
  .swiper-client .swiper-slide-active + div + div:before{opacity: 0;}
}
@media (max-width:1440px) {
  .swiper-client{margin-top:20px;}
}
@media (max-width:1280px) {
  .swiper-client{margin-top:0px;}
  .swiper-button-group{margin-top: 30px;}
  .swiper-button-next, .swiper-button-prev {
    width:44px;
    height:44px;
  }

  .swiper-pagination-bullet, .swiper-pagination-bullet-active { 
    width:18px;
    height: 2px;
  }
}

@media (max-width:991.98px) {
  .swiper-button{display: none;}
  .swiper-button-group{justify-content: center; margin-bottom: 20px;}
}
@media (max-width:575px) {
  .swiper-pagination-bullet, .swiper-pagination-bullet-active { 
    width:12px; 
  }
}


/*==================================================
   Home - Contact
==================================================*/ 

.section-contact{
  background-color:#151515;
}

.contact-boxed{
  display: block;
  position: relative;
  margin:40px auto;
  width: 100%;
  max-width: 1150px;

  background-color: rgba(84, 84, 84, 0.25);
  border: 5px solid #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-boxed h2{
  line-height: 1.6;
  font-weight: var(--fw-700);
}
.contact-boxed h4{
  line-height: 1.6;
  font-weight: var(--fw-600);
  padding: 10px 0 10px;
}
.contact-boxed h3{
  line-height: 1.6;
  font-weight: var(--fw-600);
  padding: 15px 0 0;
}
.contact-boxed h3 a{color: #fff;}
@media (min-width:1199px) {.contact-boxed .btn-outline{--bs-btn-border-width:3px}}

.contact-boxed .title-group{
  padding: 0;
  display:flex;
  margin: 0 auto 15px;
  justify-content: center;
}
.contact-boxed .title-group h2{
  text-transform: uppercase;
  overflow: hidden;
  margin:0 auto;
  padding:  0 20px 0 15px;
}
.contact-boxed .title-group .line-skew{
  height: 22px;
  left: 5px;
  bottom: 10px;
}
.contact-boxed .buttons{
  padding: 50px 0 0 0;
}
@media (max-width:1550px) {
  .contact-boxed{
    max-width: 90%;
  }
}

@media (max-width:1280px) {
  .contact-boxed{
    padding-top:60px;
    padding-bottom: 60px;
  }

  .contact-boxed .buttons{
    padding-top: 30px;
  }
}

@media (max-width:1199px) {
  .contact-boxed .title-group h2{
    font-size: var(--h2);
  }
  .contact-boxed h2{
    font-size: 35px;
  }
}

@media (max-width:991.98px) {
  .contact-boxed{
    max-width: 100%;
    border-width: 4px;
  }

  .contact-boxed .title-group .line-skew{
    height:19px;
  }

}
@media (max-width:800px) {
  
  .contact-boxed h2{
    font-size: 28px;
  }
}

@media (max-width:575px) {
  .contact-boxed { 
    padding: 40px 10px;
    border-width: 3px;
  }
  .contact-boxed .title-group{
    margin-bottom: 20px;
  }
  .contact-boxed .title-group h2{
    font-size: 28px
  }
  .contact-boxed .title-group .line-skew{
    height:14px;
  }
  .contact-boxed h2{
    font-size: 18px;
  }
  .contact-boxed h4{
    padding-top: 0;
    font-size: 16px;
  }
}

@media (max-width:440px) {
  .contact-boxed .title-group h2{
    font-size: 22px;
  }
  .contact-boxed .title-group .line-skew{
    height: 8px;
    bottom: 5px;
  }
}
/*==================================================
  Project
==================================================*/ 
.section-header.main{
  padding-top:calc(var(--header-height) + 80px);
  padding-bottom:80px;
  margin: 0;
  text-align: center;
  background-color: #2D2D2D;
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
  background-image: url(../img/thumb/bg.jpg);
  background-attachment: fixed;
}

.section-header.main .group{
  margin: 0 auto; 
}
.section-header.main .title-group h2{
  padding:0 20px;
}
.section-header.main .title-group .line-skew{
  left:10px;
}

.breadcrumb{
  justify-content: center;
  font-size: var(--fs-18);
  font-weight: var(--fw-400);
  margin:35px 0 0 0;
  --bs-breadcrumb-item-active-color:rgba(255,255,255,0.5);
  --bs-breadcrumb-divider-color:#fff;
  --bs-breadcrumb-item-padding-x:20px;
}
.breadcrumb-item+.breadcrumb-item::before{
  content: var(--bs-breadcrumb-divider, "|");
}

/*==================================================
  Body
==================================================*/ 
.section-body{
  background-color: #464646;
  overflow: hidden;
  --padding-top:60px;
  --padding-bottom:40px;
}

@media (max-width:1280px) {
  .breadcrumb{
    margin-top: 20px;
  }
 
}

@media (max-width:670px) {
  .section-header.main{
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 30px;
  } 

  .breadcrumb{
    --bs-breadcrumb-item-padding-x:8px;
    font-size: 12px;
  }

  .section-body{ 
    --padding-top:30px;
    --padding-bottom:30px;
  }
}

/*==================================================
  News
==================================================*/ 

.news-lists{
  --bs-gutter-x: 1.7rem;
  --bs-gutter-y:3.5rem; 
  margin-bottom:80px;
  padding-top: 10px;
}
.card-news{
  display: flex;
  position: relative;
  flex-direction: column;
}
.card-news .card-photo{
  border-radius:8px;
}
.card-news .card-body{
  padding:20px 0 0;
  font-weight: var(--fw-400);
}
.card-news p{
  margin-bottom:5px;
}
.card-news p small{
  color: #CBCBCB;
  font-size:14px;
}
.card-news h3{
  font-size:16px;
  line-height: 1.51;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.pc .card-news:hover .photo{transform: scale(1.1);}

.news-detail{
  color: rgba(255, 255, 255, 0.8);
  font-weight:var(--fw-400);
  --space-bottom:20px;
  font-size: var(--fs-16);
  padding-bottom: 40px;
}
 
.news-detail h2{
  font-size: var(--h4);
  color: #fff;
  line-height: 1.6;
}
.card-news p.date{
  color: #CBCBCB;
  font-size: var(--fs-16);
 
}
.news-detail h3{
  font-size: var(--fs-18);
  padding-top: 10px;
  color: #fff;
}
.news-detail h2,
.news-detail h3,
.news-detail p{
  margin-bottom: var(--space-bottom);
}
 
.news-detail img{
  max-width: 100%;
  margin: 10px 0 15px;
/* width: 100%; */
}
.news-detail p.date{
  margin-bottom: 10px;
}
 
@media (max-width:1024px) {
  .news-lists{
    --bs-gutter-x:1.2rem;
    --bs-gutter-y:2.5rem; 
  }
 
}

@media (max-width:991.98px) {
  .news-lists{padding-top: 0; margin-top: -50px;}
  .card-news p{
    margin-bottom:5px;
  }
  .card-news p small{
    font-size: 12px;
  }
  .card-news h3{
    font-size: 15px;
  }

  .news-detail h3{
    font-size: 18px;
  }
}
@media (max-width:670px) {
  .news-lists{
    --bs-gutter-x:1.2rem;
    --bs-gutter-y:1.75rem; 
  }
  .news-lists{
    padding-top: 0; 
    margin-top: -25px;
  }

  .news-detail{
    --space-bottom:15px;
  }
  .news-detail h3{
    font-size: 16px;
  }

  .news-detail img{ 
    margin:5px 0 10px;
  }
  .news-detail p.date{
    font-size: 12px;
  }
}


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

.footer{
  background-color: #191919;
  text-align: center;
  font-size: 14px;
  padding:20px 0;
}
.footer p{
  margin: 0;
}


@media (max-width:575px) {
  .footer{
    font-size: 12px;
    padding:15px 0;
  }
}
