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

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

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

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

  --bs-body-color:#fff;/*rgb(227, 231, 242)*/
  --bs-body-bg:#0d0d0d;
  --bs-body-text-align:left;
  --bs-body-font-weight:var(--fw-400);
  --bs-body-line-height:1.70; 
  --bs-body-font-size:var(--fs-16);
  --bs-body-font-family:'Montserrat','IBM Plex Sans Thai','Antonio', sans-serif; 
  --bs-link-hover-color:inherit; 
 
  --fs-110:110px;
  --fs-70:70px;
  --fs-68:66px; 
  --fs-20:20px;
  --fs-18:18px;
  --fs-16:16px;

  --title-xl:var(--fs-68);

  --black:#222222; 
  --yellow:#ffcc50;
 
  --body-rgb-a:1;
  --rgb-white:255,255,255; 
 
  --color-primary:var(--black); 
  --color-secondary:var(--yellow);   

  --card-border-radius:12px; 

  --animation-primary: 0.4s cubic-bezier(.75, 0, .25, 1);
  --animation-navigation-fade: 0.3s ease-in-out; 
  
  --header-height:110px;  
  --navbar-brand:165px;
  
  --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;
  }
}

@media (max-width:1280px) {
  :root{
    --fs-16:15px;
  }
}

@media (max-width:670px) {
  :root{
    --header-height:80px; 
  }
}
 
.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 }
 
.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-400);     
  display: flex;
  align-items: center;
  justify-content: center; 
  /* font-family: 'Bespoke Serif'; */
  font-size: var(--fs-20);
  gap:12px;    
  --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:#000;
  
  --bs-btn-active-color:var(--bs-btn-color);  
  --bs-btn-active-bg:var(--bs-btn-hover-bg); 
}   

.btn-outline{
  --bs-btn-color:#222; 
  --bs-btn-bg:transparent;
  --bs-btn-border-color:#a4a4a4;
  --bs-btn-border-width:2px;
  font-weight: 600;
}
.btn{
  display: flex;
  align-items: center;
  justify-content: center;
} 
.btn span{
  position: relative;
  z-index: 10;
}  
.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: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;
} 
  
.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){}
  
 
/*==================================================
    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;
} 
.container-fluid{ 
  --padding-x:50px; 
  max-width: 100%;
  padding-left:var(--padding-x);
  padding-right:var(--padding-x); 
  position: relative;
  z-index: 9;    
}

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

  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;
  } 
}
  
@media (max-width:991.98px) { 
  .container-fluid{
    --padding-x:30px;
  }  
  .container{
    --padding-x:30px;
  } 
}
 
@media (max-width:670px) {
  .container-fluid,
  .container{
    --padding-x:20px;
  }  
   
}
/*==================================================
    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;}    
 
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:700;
  font-style: normal;  
  line-height:1.5;    
  position: relative;   
  font-family: "Antonio", "Raleway"; 
  /* color: rgb(227, 231, 242); */
  color: #fff;
}   
.nowrap{ white-space: nowrap; }    
  
.h1, h1{}
.h2, h2{}
.h3, h3{}
.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);   
  background-color: var(--page-bg); 
} 

.header .container,
.header .container-fluid{  
  display: flex;   
  align-items:center;   
  height: 100%; 
  z-index: 400;
  position: relative;   
} 
.header h6{
  font-weight:400;
  font-size: 13px;
  text-transform: none; 
  margin: 0 auto;
}
.navbar-brand{ 
  padding: 0;   
  flex-shrink: 0;
  z-index: 200;    
  font-size:40px;
  line-height: 1;
  color:inherit;
  font-weight: 700;  
  overflow: hidden;
  transition: none !important;
}
 
.navbar-brand a{
  display: block;
  position: relative; 
  transition: none !important;
}
.navbar-brand img,
.navbar-brand svg{
  width: 100%; 
  height: auto;  
  margin: 0 auto;
} 
.navbar-brand > span{
  position: relative;
  overflow: hidden;
  display: inline-block;
  top: 7px;
}
.navbar-brand > span > span{
  position: relative;
  margin-left:-118px;
  transition: all 0.5s;
  opacity: 0;
  display: inline-block;
  font-weight: 400;
}
.pc .navbar-brand:hover > span >span{ margin-left:0px; opacity: 1;} 
.nav-main{
  display: flex;
  gap:30px;
  margin-left: auto;
}
.nav-main a{transition: none !important;}

.btn-icon,.navbar-slider{display: none;}
/*==================================================
   Mobile
==================================================*/  
  
@media (max-width:991.98px) {
  .header .nav-main{display: none;}
  .btn.btn-icon{
    padding: 0 !important;
    border:0 !important;   
    z-index: 1060; 
    border-radius: 50%;
    position: relative; 
    margin: auto 0 auto auto; 
    width: 40px; 
    height: 40px; 
    overflow: visible;  
    --bs-btn-bg:transparent;
    box-shadow: none;
    opacity: 1 !important;
    display: flex;
    gap:12px; 
  }
 
  .btn-icon:before{display: none;}
  .btn-icon .group{
    display: block;
    position: relative;
    width:30px;
    height:11px;
    margin: 0 auto 0
  }
  .btn-icon .group span{
    height: 1px;

    position: absolute;
    left: 0;
    right: 0;
    border-radius: 10px;
    -webkit-transform-origin: 25px, 1px;
    -ms-transform-origin: 25px, 1px;
    transform-origin: 25px, 1px;

    background:#fff;
  }
  

  .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: 10px;
      -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(3px, 2px, 0)
  }
 

  .nav-opened .btn-icon .group span:nth-child(2)  {
    -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;
  } 
  .nav-opened .page-blocker {
      pointer-events: auto;
      display: block;
      cursor: pointer;
  }
  .navbar-slider {
    --navbar-width:100vw;
    --navbar-width-column:220px;
  
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 1015;
      width: var(--navbar-width);
      overflow: hidden;
      padding: 0; 
      display:block; 
      background-image: url(../img/thumb/bg.jpg);
      background-color: #000;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      align-items: normal;
      -ms-flex-align: normal;
        
      opacity: 0;
      height: 0;
      display: flex;
      flex-direction: column;
      transition: all 0.6s;
 
  }
  
  .nav-opened .navbar-slider {
    pointer-events: all;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100) !important;
    opacity: 1;
  }
  .nav-mobile {
      position: static; 
      display: flex; 
      flex-direction: column;
      /* width: calc(var(--navbar-width) * 2); */
      width: 100%;
      max-width:440px;
      margin: auto;  
  }
  .nav-mobile li {
      display: block;
      position: static;
      position: relative;
      z-index: 100;

      transition: all 1s;
      opacity: 0;
      text-align: center;
  } 
  .nav-mobile > li > a {
      padding:10px 0;  
      font-weight:700;
      font-size:55px;
      height: auto!important;
      line-height: normal !important; 
      font-family: "Antonio", sans-serif;
      text-transform: uppercase;
      display: inline-block;
      position: relative;
      color: #fff;
      outline: 0 !important;
      letter-spacing: 1px;
  }  
  .nav-opened .nav-mobile li{opacity: 1;}
  .nav-opened .nav-mobile li:nth-child(1) {transition-delay: 0.2s;}
  .nav-opened .nav-mobile li:nth-child(2) {transition-delay: 0.25s;}
  .nav-opened .nav-mobile li:nth-child(3) {transition-delay: 0.3s;}
  .nav-opened .nav-mobile li:nth-child(4) {transition-delay: 0.35s;}
  .nav-opened .nav-mobile li:nth-child(5) {transition-delay: 0.4s;}
  .nav-opened .navbar-slider .logo {transition-delay: 0.55s; opacity: 1;}
}

@media (max-width:670px) {
  .nav-mobile > li > a {
    font-size: 35px;
  }
}
@media (max-width:500px) {
  .nav-mobile > li > a {
    font-size: 30px;
    padding:8px 0;
  }
}
/*==================================================
   Section
==================================================*/  
 
.page{ 
  position: relative;
  overflow: hidden;    
} 
 
.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 rgba(255, 255, 255, 0.4);
  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:30px 0;
  text-align: center;
}
.hgroup.center{
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap:10px
}
.hgroup .group{
  position: relative;
}
.hgroup.d-flex{
  align-items: center;
}  
 
.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;
  flex: unset;
}

.section-body{
  flex: 1 1 auto;
  /* 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:3px;
  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;}

  
/*==================================================
  Home
==================================================*/ 
.pt-body{padding-top: var(--header-height) !important;}

.background-effect{
  background: linear-gradient(-45deg, #000, #000, #222222, #000); 
  background-size: 400% 400%;  
  animation: gradient 15s ease infinite; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url(../img/thumb/bg.jpg);
  background-position:center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-home{ 
  height: 100vh; 
  display: flex;
  
  /* animation: gradient 15s ease infinite; */
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.section-home .container{
  margin-top: auto;
  margin-bottom: auto;
}

.section-home h1{ 
  color: #fff;
  font-size:60px;
  line-height: 1;
  font-weight: 700; 
  text-transform: uppercase; 
  /* color:rgb(227, 231, 242); */

  font-family: "Antonio", sans-serif;
  line-height: 1.2;
  transform: translate3d(0px, 0px, 0px);
 
} 
.home-title{
  display: flex;
  justify-content: space-between;
  position: relative; 
  text-align: center;
}
.home-title p{opacity: 0.8;}
.home-title .left{
  position: relative;
  z-index: 10;
  max-width: 100%;
  width: 100%;
}

.home-title .right{
  max-width:400px; 
  font-family: 'Inter';
  padding-top:40px;
  font-weight: 300;
}
.home-title .eyebrow-heading-line{ text-align: center !important;}

.mehtml{
  position: absolute;
  left: -105px;
  right: -100px;
  bottom:4vw;
  text-align: center;
  line-height: 1;
  font-family: 'Inter';
  font-weight: 900;
  font-size:18vw;
  text-transform: uppercase;
  color: #1e1e1e;
  -webkit-text-fill-color:#1e1e1e; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  opacity: 0.10; 
}
 
.mehtml:before{
  content: '';
  position: absolute;
  left:0;
  right: 0;
  bottom: 0;
  height:100%;
  background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(30,30,30,1) 100%);
  z-index: 10;
}

@media (min-width:1551px) {
  .mehtml{font-size:300px;}
}
 
.arrow-circle{
  border: 1px solid rgba(255, 255, 255, 0.5);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display:flex;
  align-items: center;
  justify-content: center;
  margin:5vw auto 0;
  transform: translate3d(0px, 0px, 0px); 
  transition: none !important;
  position: relative;
}
.arrow-circle svg.circle{ 
  position: absolute;
  top: -2px;
  left: -2px;

  transform: rotate(90deg);
}


.arrow-circle .circle {
  stroke-dasharray: 301.59px 301.59px;
  stroke-dashoffset: 301.59px;
  transition: all 0.8s;
  transition-timing-function: cubic-bezier(.4,.08,0,.97);
}

.arrow-circle:hover .circle {
    stroke-dashoffset: 0;
}
.arrow-circle .icon-arrow{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
  display: flex;
  align-items: center;
  justify-items: center;
}
.arrow-circle svg.arrow{ 
  transition: all 0.65s;
  transform: rotate(-90deg);
  --icon-size:40px;
  margin: auto;
  position: relative;
  top: -16px;
  opacity: 0;
}
.arrow-circle svg.arrow path:nth-child(2){
  fill: #fff;
}
.arrow-circle p{
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
  /* font-family: 'Antonio'; */
  font-weight: 500; 
  position: relative;
  overflow: hidden;
}
.arrow-circle p span{
  display: block;
  transition: all 0.65s;
  position: relative;
  top: 0;
  transition-delay: 0.1s;
  opacity: 1;
}
 
.arrow-circle p:nth-child(2){
  padding-left: 15px;
}

.arrow-circle:hover p span{
  opacity: 0;
}
.arrow-circle:hover svg.arrow{
  opacity: 1;
  top: 0;
}
.intro-line-parent,
.eyebrow-heading-line {
  overflow: hidden;
  position: relative;
}

@media (max-width:1280px) {
  .section-home h1{font-size: 50px;}
}

@media (max-width:991.98px) {
  .mehtml{bottom: 6vw;}
}

@media (max-width:575px) {
  .section-home h1{font-size: 9vw;}
  
  .arrow-circle{
    width: 90px;
    height: 90px;

    margin-top: 40px;
  }
  .home-title p{font-size: 13px; margin-bottom: 10px;}
  .arrow-circle p{
    font-size: 10px;
    margin: 0;
  }
  .mehtml{font-size:32vw;bottom: 22vw;}
}


/*==================================================
  about
==================================================*/ 
.article{  
  font-family:'IBM Plex Sans Thai', sans-serif;
}
.article li{
  margin-top: 5px;
  margin-bottom: 5px;
}

.section-title h2{
  font-size: 24px; 
  font-weight: 700; 
  font-family:"Antonio", "Raleway";
  text-align: center;
}
 
.nav.contact{
  font-size: 13px; 
  gap:4px; 
  font-family: "Montserrat"; 
  overflow: hidden;
  position: relative; 
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}
 

.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative; 

  z-index: 100;
  display: block; 
  width: 100%;
   
  overflow: hidden;  
  padding:  0;
  margin-bottom:40px; 
  opacity: 0.2;

}
.marquee > div{
  display: flex;
  align-items: center;
  height: 100%; 
}
.marquee div.d-flex{
  gap:0
}
 
.marquee-text .item{
  font-size:180px;
  line-height: 1;  
  text-transform: uppercase;
    color: rgb(227, 231, 242);
  font-weight: 800;
  padding: 0 20px;  
}


/*==================================================
  about 2
==================================================*/ 
 
.section-about .title-xl{
  font-size: 15vw;
  text-align: center;
  letter-spacing:1px;
  font-family: "Antonio", "Raleway";
  margin-top: -11vw;
  text-transform: uppercase;
  list-style: 1;
  transform: translate3d(0px, 50%, 0px) 
}
.section-about .card-photo{
  margin: 0 auto;
  width:480px;
  height: 560px;
  border-radius: 0;
  filter: grayscale(60%);
  margin-top: 40px; 
  position: relative;
  z-index: 11;
  transform: translate(0px, 0px);
  opacity: 0;
}
.section-about .card-photo img{
  object-fit: cover; 
  transform-origin:top;
  /* transform: translate(0px, 0px);
  opacity: 0; */
}
.section-about .article{ 
  max-width: 700px;
  margin: 0 auto;
}

.section-about .section-inner{
  background-color: #f5f5f5;
  padding:80px 0;
}


.section-about.info {
   background-color: #f5f5f5;
   padding:10px 0;
   position: relative;
   z-index: 100;
   color: #222;
}
.section-about.info .section-inner{ 
  width: 100%;
  max-width: 1100px;
  margin:0 auto;
}
.section-about.info .row{
  align-items: center;
  margin: 50px 0;
}
.section-about.info .row.flex-md-row-reverse h3 .eyebrow-heading-line{ text-align: right !important;}
.section-about.info h3{
  text-transform: uppercase;
  font-family: "Antonio", "Raleway";
  font-size:70px;
  line-height: 1.2;  
  margin-top: -15px;
  color: #222;
}
.section-about.info .article{
  max-width: 470px;
  margin: 0;
  
}
.section-about.info .article p{margin: 0 0 10px;}
.section-about.info hr{
  border-top-color: #a4a4a4;
  margin: 70px 0;
  opacity: 1;
}
.section-line{
  display: block; 
  height: 1px;
  position: relative;
  z-index: 100;  
  margin: 70px 0;
}
.section-line:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  transition: all 0.6s;
  transition-delay: 0.3s;
  background-color:#a4a4a4;
}
.section-line.aos-animate:before{
  width: 100%;
}

@media (max-width:1280px) {
  .section-about.info h3{
    font-size: 60px;
  }
}

@media (max-width:1199px) {
  .section-about .card-photo{
    width: 400px;
    height: 467px;
  }
}

@media (max-width:991.98px) { 
  .section-about.info .row{align-items: flex-start;}
  .section-about.info h3{margin-top:5px; font-size: 50px;}
  .section-about .section-inner{padding:40px 0;}
  .section-about.info .row{
    margin-top: 10px; 
    margin-bottom: 10px;
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
  }

  .section-line{margin: 50px 0;}
}


@media (max-width:767px) {
  .section-about.info h3{
    margin-bottom: 20px;
    font-size: 40px;
  }
  .section-about.info .article{
    max-width: 100%;
  }
  .section-about.info .row.flex-md-row-reverse h3 .eyebrow-heading-line {
    text-align: left !important;
  }
  
}

@media (max-width:670px) {
  .section-about.me{
    --padding-top:0;
    --padding-bototm:40px;
  }
  .section-about .title-xl{font-size: 22vw;}

  .section-about.info{padding: 0;}
  .section-line{margin:25px 0;}
  .section-about.info .row{margin-top: 0; margin-bottom: 0;}
  
}

@media (max-width:440px) {
  .section-about .card-photo{
    width: 70vw; 
    height: 82vw;
  }
}

/*==================================================
  About - info
==================================================*/ 
.section-about.info2{
  background-color: #000;
  color: #fff;
      /* transform: translateZ(0); */
      transform-style: preserve-3d;
      transform: translate3d(0px, 0px, 0px); 
}
.section-about.info2 .section-inner{
  background-color:inherit;
}

.about-info-boxed{
  display: flex; 
  padding: 60px;
  flex-direction: column;
  margin-bottom: 40px;
  position: relative;

  display: none;
}
.about-info-boxed:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 29,0.6);
  backdrop-filter: blur(23px);
  opacity: 0.89;
  border-radius: 20px;
}
 
.about-info-title{
  display:flex;
  padding-bottom: 25px;
  position: relative;
  z-index: 10;
}
.about-info-title h3{ 
  font-size: 50px;
  line-height: 1.2;
  text-align: right; 
  text-transform: uppercase;
  position: relative;

  display: flex;
  gap:10px;
}

.about-info-title small{
  font-size: 20px;
  font-style: italic;
  /* position: absolute;
  top: -20px;
  left: 0; */
  font-family: 'Inter'; 
  display: none;
}
  
.about-info-details {
  color: rgba(255, 255, 255, 1);
  font-weight: 300;
  position: relative;
  z-index: 10;
  font-size: 20px;
}

.about-info-details p:last-child{
  margin-bottom: 0;
}

.about-lists{
  padding:50px 0;
  margin: 0;
  list-style-type: none;
  text-align: right;

  font-size:170px;
  font-weight:900;
  font-family: "Antonio", "Raleway";
  line-height:1.1;
  text-transform: uppercase;
  letter-spacing:-0.5rem;  

  position: relative; 
  list-style: none;  
  transform-style: preserve-3d;
  perspective: 100vw;
}

.about-lists li{ 
  display: block;
  position: relative;  
  /* transform-style: preserve-3d; */
 
  margin: -12px 0;
  display: flex;

}
.about-lists li > span{
  opacity: 1;
  display: block;
}
 
.about-lists li:before{
  position: absolute;
  content: attr(data-text);
  transition: .2s;  
  display: none;
}
  
.about-lists .li-inner {
  transform: rotateY(-45deg) translateZ(0) scale(1);
  transition: transform 1.5s cubic-bezier(.075,.82,.165,1);
  transform-origin: right center;
  transform-style: preserve-3d;
  will-change: transform;
  display: block; 
  position: relative;
  margin-left: auto;
}

.about-lists .li-inner .text{
  position: relative; 
  transition: color .5s, opacity .5s;  
}
.about-lists .li-inner .eyebrow-heading-line{  padding-right: 10px;}
 
.about-lists li .li-inner:hover {
  transform: rotateY(0deg) translateZ(0) scale(1);
  transition-duration: 1s;
}

.about-lists:hover li .text:hover {
  color: #000;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.text-stroke{
  color: #000;
  -webkit-text-stroke:1px #fff;
  text-stroke:1px #fff;
}

.section-about-overlay{
  --padding-top:80px;
  --padding-bottom:80px;
  height: 100vh !important;
  background-color: #000;
 
  transition: all 0.8s;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;

  background: #1c1c1c;
  /*Linear gradient... */
  background: 
    radial-gradient(
     at center, #292929, #000
    );

    
    animation: gradient 15s ease infinite;
}

.section-about-overlay .title-xl{ 
  text-transform: uppercase;
  font-size:80px; 
  line-height: 1.1; 
  font-weight: 500; 
}

.section-about-overlay hr{
  border-color:#fff;
  opacity: 0.2;
  margin:80px  0 70px;
}

.card-process{
  display: flex;
  flex-direction: column; 
  padding-right: 20px; 
  padding-bottom:15px ;
  max-width: 360px;
  font-family: 'IBM Plex Sans Thai';
}
.card-process h3{
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 300;
}
.card-process p{
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  transition: all 0.35s;
  font-weight: 300;
}
.card-process .link-white{
  color: rgba(255, 255, 255, 0.7);
}
.card-process:hover p{ color: #fff;}
.card-process:hover .link-white{color: #fff;}
.btn-page-back{ 
  position: absolute;
  top: 0;
   
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  width:80px;
  height: 80px; 
}
.btn-page-back .icon-back, .btn-page-back .icon-back:after, .btn-page-back .icon-back:before {
  position: absolute;
  width: 55px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition: background-color .15s ease-in-out, transform .15s ease-in-out;
}
.btn-page-back .icon-back:after, .btn-page-back .icon-back:before{
  display: block;
  content: '';
}
.btn-page-back .icon-back:before {
  transform: translate3d(-7px, 2px, 0) rotate(-45deg) scaleX(.6);
}
.btn-page-back .icon-back:before {
  top: -7px;
}
.btn-page-back .icon-back:after {
  transform: translate3d(-7px, -2px, 0) rotate(45deg) scaleX(.6);
}

.btn-page-back .icon-back:after {
  bottom: -7px;
}
 
/*==================================================
  About - Details
==================================================*/ 
.section-about.detail{
  --padding-top:280px;
  --padding-bottom:280px;
}
.section-about.detail .container{
  display: flex;
  margin: 0 auto;
}
.about-text-group{
  margin: auto;
  position: relative;
}
.about-text-group h2{
  line-height: 1.04;
  font-family: "Antonio", "Raleway";
  text-align: center;
  text-transform: uppercase;
  font-size: 140px;
  font-weight:900;
  letter-spacing: -0.3rem;
  position: relative; 
}
.about-text-group h2 > span{
  display: block;
}
 
.card-about-menu-boxed{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card-about-menu {
  position: relative;
  color: #000; 
  font-family:'IBM Plex Sans Thai','Montserrat';
  position: absolute;
  cursor: pointer;
}
.card-about-menu .card-content{
  width: 100%;
   width: 265px;
  min-height: 350px;
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;  
  padding: 40px 25px 17px;
  text-decoration: none;
  display: flex;
  gap: 70px;
  box-shadow: 0 0 30px rgba(0, 0, 0, .03);
}

.card-about-menu .card-title{
  position: relative;
  display: flex;
  gap:8px;
  flex-direction: column;
  color: #000;
  text-transform: uppercase;
  font-family:inherit;
  font-size: 16px;

}
.card-about-menu .card-title:before{
  content: '';
  position: relative;
  width: 7px;
  height: 7px;
  background-color: #000;
  border-radius: 100%;
  overflow: visible;
}
.card-about-menu .card-body{
  margin-top: auto;
  flex: unset;
}
.card-about-menu p{
  font-family:inherit;
  font-size: 14px;
  line-height: 1.4;
}
.card-about-menu .readmore{
  font-size: 45px;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700; 
  letter-spacing: -0.2rem;
  margin-bottom: 20px;
  transition: all 0.25s;
}
.pc .card-about-menu:hover .readmore{  letter-spacing:  -0.1rem;}

.card-about-menu.card-1{ 
  top: 55%;
  left: -6%; 
}
.card-about-menu.card-1 .card-content{
  transform: rotate(-3.24deg);
}
.card-about-menu.card-2{ 
  top: -140px;
  right:35%; 
}
.card-about-menu.card-2 .card-content{
  transform: rotate(6.56deg);
}

.card-about-menu.card-3{ 
  top: 260px;
  right:-80px; 
}

.card-about-menu.card-3 .card-content{
  transform: rotate(3.24deg);
}

.section-animate-white,
.section-animate-black{
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
  transition: all 0.8s;
  background-color: #fff; 
  z-index: 1090; 
}
.section-animate-black{
  z-index: 1092;
  background: #1c1c1c;
  /*Linear gradient... */
  background: 
    radial-gradient(
     at center, #292929, #000
    ); 
    animation: gradient 15s ease infinite;
}

.about-detail-opened .section-animate-white{
  width: 100%; 
}
.about-detail-opened .section-animate-black{
  width: 100%; 
  transition-delay: 0.4s;
  opacity: 1;
}

.about-detail-opened .section-about-overlay{
  opacity: 1;
  z-index: 1095;
  transition-delay: 0.8s;
  pointer-events: all;
}

.about-detail-opened{
  overflow: hidden;
}

.about-detail-opened.process .section-about-overlay#aboutus,
.about-detail-opened.process .section-about-overlay#pricing{display: none}

.about-detail-opened.aboutus .section-about-overlay#process,
.about-detail-opened.aboutus .section-about-overlay#pricing{display: none}

.about-detail-opened.pricing .section-about-overlay#aboutus,
.about-detail-opened.pricing .section-about-overlay#process{display: none}

.btn-close{
  position: absolute;
  top: 30px;
  right:30px;
  width: 30px;
  height: 30px;
  opacity: 1;
  padding: 0;
  cursor: pointer;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/20px auto no-repeat;
}

@media (max-width:1400px) {
  .section-about-overlay .title-xl{
    font-size: 70px;
  }
  .section-about-overlay hr{
    margin: 60px 0 50px;
  }
  .about-info-details{
    font-size: 18px;
  }
  .section-about-overlay{
    --padding-top:50px;
    --padding-bottom:50px;
  }
  .card-process{
    padding-bottom: 0;
  }
  .card-process p{
    font-size: 16px;
  }
}

@media (max-width:1280px) {
  .section-about.detail {
    --padding-top: 230px;
    --padding-bottom: 220px;
  }
  .about-text-group h2{
    font-size: 120px;
  } 
  .card-about-menu .card-content{
    width: 240px;
    min-height:320px;
    gap:10px
  }

  .card-about-menu .readmore{
    font-size: 35px;
  }

  .card-about-menu.card-3{top: 220px;}
}

@media (max-width:1199px) {
  .section-about-overlay .title-xl{
    font-size: 55px;
  }
}

@media (max-width:991.98px) {
  .section-about.detail {
    --padding-top: 110px;
    --padding-bottom: 80px;
  }
  .about-text-group h2{
    font-size: 11vw;
  }
  .card-about-menu-boxed{
    position: relative;
    bottom: auto; 
    height: 400px;
    margin-top: 120px;
  }

  .card-about-menu.card-1{
    top: 0;
  }

  .card-about-menu.card-2{
    top: 0;
    left:50%;
    right: auto;
    margin-left: -120px;
  }
  .card-about-menu.card-3{
    top: 0;
    right: -6%;
  }

  .card-about-menu.card-2 .card-content {
    transform: rotate(0deg);
  }
}

@media (max-width:767px) {
  .card-about-menu-boxed{
    margin-top: 50px;
    height: auto;
  }
  .card-about-menu{
    position: relative;
    transform:none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-left: 0 !important;
    width: 100%;
  }
 
  .card-about-menu.card-1 .card-content ,
  .card-about-menu.card-3 .card-content {
    transform: rotate(0deg);
  }

  .card-about-menu .card-content{
    width: 100%;
    height: auto;
    min-height: 0;
    margin-bottom: 20px;
    padding-top: 25px;
    gap:15px
  }
}

@media (max-width:670px) {
  .section-about.detail {
    --padding-top:80px;
    --padding-bottom: 50px;
  }
  .section-about-overlay .title-xl {
    font-size: 35px;
  } 
  .about-info-details{
    font-size: 15px;
  }
  .about-text-group h2{
    font-size: 14vw;
  }

  .card-process h3{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .card-process p:last-child{
    margin-bottom: 5px;
  }
  .section-about-overlay hr {
    margin: 40px 0 30px;
  }
  .btn-close{
    top: 20px;
    right: 20px;
  }
}

@media (max-width:575px) {
  .card-about-menu .card-content{
    max-width: 260px;
    height:320px;
    margin: 0 auto 20px!important; 
  }
}
 
/*==================================================
  Work
==================================================*/ 
.section-work{  
  padding-bottom: 0;
  z-index: 200;
  --padding-top:90px; 
}
.section-work .bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
  margin-top: -200px;
  z-index: 100;
}
.section-work .container-fluid{
  position: relative;
  z-index: 100;
}
.section-work .section-title{
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
  z-index: 200;
  position: relative;
}
.section-work .title-xl{
  font-size: 170px; 
  letter-spacing:1px;
  
  text-transform: uppercase; 
  white-space: nowrap;
  z-index: 10;
  line-height: 1.2;
  text-align: left;
}
.section-work .title-xl.i1{margin-right: auto;}
.section-work .title-xl.i2{margin-left: auto;}
.section-work .title-xl .eyebrow-heading-line{text-align: left !important;}
.section-work .title-md{
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.4;
  font-size: 60px;
  text-align: center;
  font-weight: 400;
}
.section-work .section-title{
  display: flex;
  justify-content: space-between; 
  margin-bottom: 60px;
}
.section-work .section-title p{
  max-width: 400px;
}
.work-lists > div{transform: translate(0px, 0px);}
.card-work{
  display: flex;
  flex-direction: column;
  width: 100%; 
}
.card-work .card-photo{
  height: 450px;
}
.card-work .card-photo .photo{
  width: 100%;
  height: 100%;
}
.card-work h3{
  font-weight: 500;
  font-size: 14px;
  font-family: var(--bs-body-font-family);
  height: 70px;
  padding-left: 20px;
}
.custom-cursor {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: white;
  transition: transform 350ms ease;
  transform: translate(-50%, -50%) scale(.3);
  z-index: 1040;
}
.custom-cursor--link {
  transform: translate(-50%, -50%) scale(1);

}
.card-photo-reveal{
  pointer-events: none;
}
/* .card-photo-reveal{
  position: relative;
  overflow: hidden;
} */
.portfolio-item{
 
}
.portfolio-item .photo{
  padding-top: 66%;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  transition: all 0.5s;
}
.portfolio-item h3{
  position: absolute;
  left: 0;
  right: 0; 
  top: 0;
  z-index: 100;
  font-family: 'Montserrat','IBM Plex Sans Thai','Antonio', sans-serif;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  transition: all 0.4s;
   opacity: 0;
   pointer-events: none;
   padding: 10px;
   background-color: rgba(0,0,0,.6);
   color:#fff;
   height: 42px;
   text-transform: uppercase;
   
}
.work-lists > div{opacity: 0; transition: all 0.24s;}
.work-lists:hover > div .portfolio-item .photo{opacity: 0.7;}
.work-lists:hover > div .portfolio-item:hover .photo{
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%); 
  opacity: 1;
}
.work-lists:hover > div .portfolio-item:hover h3{
  opacity: 1;
  top: -42px;
}

.footer{
  color:#9d9d9d;
  font-size: 14px;
  padding: 30px 0;
  background-color: #000;
  z-index: 100;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.footer h2{ 
  font-size: 120px;
  text-transform: uppercase;
}
.footer .container-fluid{
  display: flex;
  justify-content: space-between;
}

.section-work.main{
  --padding-top:60px
}

@media (max-width:1280px) {
  .section-work{--padding-top:70px;}
  .section-work .title-xl{font-size: 140px;}
}

@media (max-width:1199px) {
  .section-work .title-xl{font-size: 110px;}

  .section-work.main .section-title{padding-bottom: 10px;}
}
@media (max-width:991.98px) {
  .section-work .title-xl{font-size: 12vw;} 

  .custom-cursor{display: none !important;}
}

@media (max-width:575px) {
  .section-work {
    --padding-top:45px;
  }
  .section-work .title-xl{font-size: 16vw;}
  .section-work .section-title{margin-bottom: 30px;} 
  .footer{font-size: 12px; padding: 20px 0;}

  .section-work.main{--padding-top:30px}
}
@media (max-width:440px) {
  .footer .container-fluid { 
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
  }
}
/*==================================================
  BG Line
==================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box !important;
}

 
.lines {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100%;
}

.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  -webkit-animation: drop 7s 0s infinite;
          animation: drop 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
          animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.line:nth-child(1) {
  margin-left: -25%;
}
.line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.line:nth-child(3) {
  margin-left: 25%;
}
.line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

 
/*==================================================
  Contact
==================================================*/ 
.radial-gradient {
  position:relative;
  top:0px;
  left:0px;
  /* height:100%;
  width:100%; */
  
  /*Fallback if gradeints don't work */
  background: #1c1c1c;
  /*Linear gradient... */
  background: 
    radial-gradient(
     at center, #292929, #000
    );

    
    animation: gradient 15s ease infinite;
}
.section-contact{ 
  text-align: center;
  --padding-bottom:0;
  --padding-top:120px
}
.section-contact hr{
  margin: 0;
  opacity: 0.3;
}
.section-contact .hr{
  padding: 120px 0 0 0;
}
.contact-lists{
  padding: 30px 0 0 0;
  margin:0;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 100px;
  list-style-type: none;
  font-family: "Antonio", "Raleway";
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

.section-contact .title-xl{
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 120px;
  line-height: 1.2;
}
.section-contact .title-xl .t2{
  font-style: italic;
  font-weight: 300;
}
.section-contact h6{
  font-size: 22px;
  font-weight: 300;
  font-family: var(--bs-body-font-family);
}
.buttons.contact{
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-top: 0;
}
.buttons.contact .icons{
  --icon-size:40px
}
.buttons.contact .btn{
  min-width: 250px;
}

.highlight{
  color:#000000; 
  position: relative;
  background: linear-gradient(90deg, #fff, #fff 60%, #2C2C2C 0)
    var(--_p, 100%) / 200% no-repeat;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent; 
transition: 2s ease-out;
}

.aos-animate .highlight{ 
  --_p: 0%; 
}
.aos-animate .highlight:before{width: 100%;}
 /*background: linear-gradient(90deg, #067652 -35.8%, #02948F 103.83%);*/
 .aos-animate .card-icon:after{opacity: 1;}

.section-contact .hello{margin: 40px 0;}

@media (max-width: 1440px) {
  .section-contact { 
    --padding-top:80px;
  }
  .section-contact .hr{
    padding-top:80px;
  }
  .section-contact .title-xl {
    font-size: 100px;
  }
}

@media (max-width:767px) {
  .section-contact .title-xl {
    font-size: 12vw;
  }
  .section-contact {
    --padding-top:60px;
  }
  .buttons.contact{gap:15px}
  .section-contact h6{font-size: 20px;}
  .buttons.contact .btn{
    --btn-h:54px;
    padding: 0 20px;
    min-width: 0;
    font-size: 18px;
    min-width: 200px;
  }
  .buttons.contact .icons{--icon-size:30px}
}

@media (max-width:670px) {
  .section-contact {
    --padding-top: 50px;
  }
  .section-contact .hr{
    padding-top:60px;
  }
}

@media (max-width:575px) {
  .buttons.contact{
    flex-direction: column;
  }
  .buttons.contact .btn{
    min-width: 250px;
  }

  .buttons.contact .or{display: none;}
  .section-contact .title-xl {font-size: 15vw;}
  .section-contact h6{font-size:16px;}
}

.tooltip-inner{
  font-family: var(--bs-body-font-family);
  max-width: 250px;
  padding: 15px;
}
