:root{
    /* --title-font: "Space Grotesk", serif; */
    --title-font: "Unbounded", serif;
    --body-font: "Kanit", serif;
    --primary-color: #FF4F00;
    --primary-color-light-1: #FF6946;
    --secondary-color: #021D40;
    --body-color: #f5f5f5;
    --black-color: #000;
    --white-color: #fff;
    --bg-color: #010E20;
    --black-color-1: #252525;
    --divider-color: #28282B;
    touch-action: pan-x pan-y;
    height: 100%;
     -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

html{
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    height: 100%;
    scroll-behavior: smooth; /* Enables smooth scrolling */
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    height: -webkit-fill-available;
}

*,
:after,
:before {
    box-sizing: border-box
}

body{
    font-family:var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color:var(--body-color);
    background: url(../images/body-background-1.webp), var(--bg-color) repeat left top;
    /* overflow-x: hidden; */
    touch-action: manipulation;
    -webkit-touch-callout: none;
    overscroll-behavior: none;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    box-shadow:  none !important;
}

@media(max-width:1200px){
  body{
    overflow-x: hidden;
  }
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
	box-shadow: none;
	-webkit-box-shadow: none;
	background-color: var(--secondary-color);
	border-radius: 10px;
}
::-webkit-scrollbar,
::-webkit-scrollbar {
	width: 5px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-image: linear-gradient(0deg, var(--primary-color) 0%, var(--secondary-color) 47.60%, var(--secondary-color) 99.23%);
}


h1, h2, h3, h4{
    font-family: var(--title-font) !important;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
    height: 1px;
}


pre {
    font-family: monospace, monospace;
    font-size: 1em
}

textarea,
select,
input, a, button, .btn{
    box-shadow:  none !important;
}

a, a:hover{
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

.list-unstyled{
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.text-primary{
  color: var(--primary-color) !important;
}

.bg-primary{
  background: var(--primary-color) !important;
  background-color: var(--primary-color) !important;
}

.bg-secondary{
  background: var(--secondary-color) !important;
  background-color: var(--secondary-color) !important;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

.btn-1 {
    /* border-radius: 15px; */
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    /* padding: 21px 48px; */
    padding: 15px 24px;
    text-align: center;
    letter-spacing: -.01em;
    text-transform: capitalize;
    display: inline-block;
    color: var(--white-color);
    /* background: #F3B01B; */
    background: linear-gradient(236deg, var(--primary-color-light-1), var(--primary-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    justify-content: space-between;
    align-items: center;

}

.btn-1 img {
    width: 18px;
}

.btn-1:after {
    height: 28px;
    width: 30px;
    border-radius: 10px;
    right: -11px;
    bottom: -11px
}

.btn-1:after,
.btn-1:before {
    position: absolute;
    content: "";
    background: black
}

.btn-1:before {
    height: 400px;
    width: 430px;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-22%) translateY(-42%) scale(0);
    transition: all .5s ease-out 0s;
    z-index: -1;
}

.btn-1:hover:before {
    transform: translateX(-50%) translateY(-50%) scale(1)
}


.btn-2{
  z-index: 1;
    font-size: 20px;
    line-height: 16px;
    letter-spacing: .02em;
    border-style: none;
    align-self: center;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: inherit;
    background: var(--bg-color);
    padding: 15px 24px;
    color: var(--white-color);
    font-weight: 500;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.btn-2::before {
  position: absolute;
  content: '';
  z-index: -1;
  height: 200%;
  width: 200%;
  left: 50%;
  bottom: -200%;
  transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: var(--primary-color);
}

.btn-2:hover {
  color: var(--white-color);
  transform: translateY(-2px);
}
.btn-2:hover::before {
  bottom: -70%;
}

.btn-3 {
  color: var(--white-color);
  font-size: 18px;
  font-style: normal;
  line-height: 18px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  transition: all 0.4s;
  background: var(--primary-color-light-1);
  padding: 18px 22px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  border-bottom: 4px solid var(--primary-color);
  display: inline-flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.btn-3:hover {
  color: var(--white-color);
  transition: all 0.4s;
  transform: translateY(-5px);
}
.btn-3:hover::before {
  border-bottom: 4px solid var(--primary-color);
  transition: all 0.4s;
}
.btn-3:hover::after {
  visibility: visible;
  opacity: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.4s;
}
.btn-3::after {
  position: absolute;
  content: "";
  height: 100%;
  bottom: 0;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.4s;
  border-radius: 8px;
  width: 10px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}


.sec-title{
    position: relative;
    display: block;
    max-width: 90%;
    margin: auto;
  }
  
  .sec-title h2{
    position: relative;
    display: block;
    font-size: 42px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white-color);
  }
  
  .sec-title .sub-title{
    position: relative;
    display: inline-block;
    font-size: 14px;
    padding: 6px 18px 6px 18px;
    border-radius: 10px;
    text-transform: uppercase;
    z-index: 1;
    color: var(--white-color);
    /* background-color: rgb(255 79 0 / 10%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%); */
    letter-spacing: 1px;
    background-color: rgba(17, 25, 40, 0.75);
    border-radius: 12px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
  }
  
  /* .sec-title .sub-title:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 40px;
    z-index: -1;
    opacity: 0.05;
  }
  
  .sec-title .sub-title:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 40px;
    z-index: -1;
    opacity: 0.2;
    border: solid;
    border-width: 1px;
  } */
  
  
  

  @media only screen and (max-width: 767px){

    .sec-title h2{
      font-size: 25px !important;
      line-height: 1.8 !important;
    }
  
  }

  @media only screen and (max-width: 500px){

    .sec-title h2{
      font-size: 20px !important;
      line-height: 1.8 !important;
    }
  
  }


  .overlay-link{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent !important;
    outline: none !important;
    border: 0 !important;
  }


  .swiper-slide {
    height: auto;
    
  }

  button.swiper-slide{
    background: none !important;
    border: 0 !important;
    outline: none !important;
  }

  .invert-1{
    filter: invert(1);
  }



  .image-anime{
    position: relative;
    overflow: hidden;
  }
  
  .image-anime:after{
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
  }
  
  .image-anime:hover:after{
      height: 250%;
      transition: all 600ms linear;
      background-color: transparent;
  }
  
  .image-anime img{
    object-fit: cover;
    height: 100%;
    object-position: center;
  }

  .bg_img {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100%;
}


footer{
  background: var(--black-color);
}

.cta-footer{
  border-radius: 30px;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: -150px;
  background: url(../images/demo-corporate-bg-02.png), var(--bg-color);
}


/* .cta-footer img{
  max-width: 250px;
} */


.footer-info{
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #3d414a;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info .info-item{
  position: relative;
  padding: 20px 0;
  justify-content: flex-start;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  
}

@media(min-width:991px){
  .footer-info .info-item{
    justify-content: center;
    width: calc(33.33% - 20px);
  }
}

.footer-info .info-item .info-item--icon {
  height: 56px;
  min-width: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-right: 20px; */
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  background: #FF8139;
  font-size: 20px;
  color: var(--white-color);
}

.footer-info .info-item::before {
  position: absolute;
  content: '';
  left: 0px;
  /* left: -70px; */
  bottom: 0;
  height: 156px;
  width: 20px;
  background-image: url(../images/line.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-info .info-item:first-child:before{
  display: none;
}

.footer-info .info-item .info-item--content {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-info .info-item  .info-item--title {
  font-size: 16px;
  margin-bottom: 0px;
  font-family: var(--body-font);
  color: var(--white-color);
}

@media(max-width:1200px){
  .footer-info .info-item::before{
    display: none;
  }
  .footer-info .info-item{
    padding: 0 !important;
    padding-bottom: 15px !important;
  }
}


@media(max-width:767px){
  .footer-info .info-item{
    padding: 0 !important;
  }
  .footer-info .info-item:last-child{
    padding-bottom: 20px !important;
  }

  .footer-info .info-item  .info-item--title{
    font-size: 14px;
  }
  .footer-info .info-item .info-item--content{
    font-size: 10px;
  }
}

.footer-widget h4 {
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.5;
  margin-bottom: 20px;
}


.footer-social-link{
  padding: 0;
  list-style-type: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link li a{
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid var(--black-color-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--white-color);
  transition: 0.3s all ease-in-out;
  transform: translateY(0px);
}

.footer-social-link li a:hover{
  background: var(--primary-color);
  transform: translateY(-5px);
}

.logo-footer{
  max-width: 200px;
}


.footer-menu-links{
  list-style-type: none;
  padding: 0;
}


.footer-menu-links li a {
  color: var(--white-color);
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-bottom: 9px;
  letter-spacing: 1px;
  transition: 0.3s all ease-in-out;
  transform: translateX(0);
}

.footer-menu-links li a:hover{
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-copyright {
  padding: 20px 0 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}





.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 70px;
  left: -30px;
  transition: .3s ease-in-out,_ .3s ease-in-out,_ .3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  color: #fff;
  padding: 7px;
  font-size: 16px;
  line-height: normal
}

.bx-chevron-down,.bx-chevron-right {
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-position: center
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transition: .3s ease-in-out
}

.back-to-top svg {
  color: #fff;
  line-height: 50px
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  left: 30px;
  cursor: pointer
}

.back-to-top.show:active {
  box-shadow: 0 4px 8px 2px rgba(0,0,0,.25);
  -webkit-box-shadow: 0 4px 8px 2px rgba(0,0,0,.25);
  -moz-box-shadow: 0 4px 8px 2px rgba(0,0,0,.25)
}

input, select, textarea, button{
  box-shadow: none;
  outline: 0 !important;
  border: 0;
}

::placeholder {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  opacity: 0.7;
}

::-moz-placeholder {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  opacity: 0.7;
}

.form-input-1 {
  width: 100%;
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  border-radius: 8px;
  background: var(--bg-color);
  padding: 18px;
  box-shadow: none !important;
  border: 0;
  border: 1px solid var(--divider-color);
  transition: 0.3s all ease-in-out;
}

.form-input-1:focus, .form-input-1:active{
  border-color: var(--primary-color-light-1);
}


.breadcrumb-bg {
  background: var(--bg-color);
  border-radius: 0 0 50px 50px;
  padding: 200px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 4;
  background: url(../images/breadcrumb-bg.png), var(--bg-color);
  background-position: center;
  background-size: cover;
}

.breadcrumb-bg .shape1 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: -2;
}

.breadcrumb-bg .shape-circle {
  width: 45vw;
  height: 45vw;
  border: 10vw solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  bottom: 5vw;
  right: -10%;
  -webkit-filter: blur(100px);
  filter: blur(100px);
  opacity: .3;
  z-index: -1;
}

.breadcrumb-bg .shape1 {
  position: absolute;
  bottom: 5%;
  left: 5%;
  filter: opacity(0.2);
  /* filter: opacity(0.5); */
}

.breadcrumb-bg .caption h1 {
  font-size: 110px;
  margin-bottom: 15px;
  /*overflow: hidden;*/
  /*display: -webkit-box;*/
  -webkit-line-clamp: 2; /* number of lines to show */
  /*        line-clamp: 2; */
  /*-webkit-box-orient: vertical;*/
}

@media only screen and (max-width: 991px) {
  .breadcrumb-bg .caption h1 {
    font-size: 30px;
  }
}

.breadcrumb-bg .caption p {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  margin-bottom: 0;
}



.breadcrumb-bg .caption p a, .breadcrumb-bg .caption p span {
  padding: 0 5px;
}

.breadcrumb-bg .caption p span {
  color: var(--primary-color);
}


.contact-loc-block {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 38px 28px;
  box-shadow: 0 15px 30px rgba(61, 90, 125, .08);
  position: relative;
  transition: .3s linear;
}

@media (min-width: 992px) {
  .contact-us-row .col-lg-4:nth-child(2n) {
      margin-top: 50px;
  }
}


.iti{
  width: 100% !important;
}

.iti--inline-dropdown .iti__dropdown-content, .iti__country-list{
  background: var(--bg-color);
  border: 1px solid rgba(255, 255, 255, 0.125);
}

.iti__search-input{
  color: var(--white-color);
  background: var(--bg-color);
}

.iti__country.iti__highlight{
  background: var(--black-color);
}

.iti__selected-flag{
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
}


.float-links {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 115;
}
@keyframes mailPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes mailPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.c-btn-mail {
  display: block;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-btn-mail,
.c-btn-phone,
.c-btn-whatsapp {
  cursor: pointer;
  height: 45px;
  width: 45px;
  /* line-height: 45px; */
  text-align: center;
  background: #00b833;
  z-index: 300;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}
.c-btn-mail svg,
.c-btn-phone svg,
.c-btn-whatsapp svg {
  fill: #fff;
  height: 20px;
}
.c-btn-whatsapp svg {
  height: 26px;
}
.c-btn-mail::before,
.c-btn-phone::before,
.c-btn-whatsapp::before {
  background: rgba(0, 184, 51, 0.6);
  width: 55px;
  height: 55px;
  left: -5px;
  top: -5px;
}
.c-btn-mail::after,
.c-btn-mail::before {
  transition: 0.2s linear;
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: 1.5s infinite mailPulse;
}
.c-btn-phone::after,
.c-btn-phone::before {
  transition: 0.2s linear;
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: 1.5s infinite mailPulse;
}
.c-btn-whatsapp::after,
.c-btn-whatsapp::before {
  transition: 0.2s linear;
  position: absolute;
  display: block;
  content: "";
  border-radius: 50%;
  z-index: -1;
  animation: 1.5s infinite mailPulse;
}
.c-btn-mail,
.c-btn-mail::before {
  background: var(--secondary-color);
}
.c-btn-phone,
.c-btn-phone::before {
  background: var(--primary-color);
}
.c-btn-phone {
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  color: var(--white-color) !important;
}
.c-btn-whatsapp {
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  color: var(--white-color) !important;
}
.c-btn-mail {
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  color: var(--white-color) !important;
}

input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  border: 1px solid var(--primary-color);
  -webkit-text-fill-color: var(--white-color);
    -webkit-box-shadow: 0 0 0 1000px var(--bg-color) inset !important;
    background-color: var(--bg-color) !important;
}

.filter-invert-1{
  filter: invert(1);
}


.select2-container{
  width: 100% !important;
}

.select2-container--default .select2-selection--single{
  width: 100%;
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  border-radius: 8px;
  background: var(--bg-color);
  padding: 18px;
  box-shadow: none !important;
  border: 0;
  border: 1px solid var(--divider-color);
  transition: 0.3s all ease-in-out;
  height: auto !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
  width: 100%;
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  border-radius: 8px;
  background: var(--bg-color);
  padding: 8px 10px;
  box-shadow: none !important;
  border: 0;
  border: 1px solid var(--divider-color);
  transition: 0.3s all ease-in-out;
  height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
  color: var(--white-color);
  line-height: normal;
}


.select2-dropdown{
  border: 1px solid var(--divider-color);
  background: var(--bg-color);
  color: var(--white-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 20px !important;
  right: 8px !important;
}

.select2-container--default .select2-results__option--selected {
  background-color: #1c1919;
}


.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
  background-color: var(--primary-color);
}

.modal-content{
  background-color: var(--black-color);
}


.iti__selected-flag .iti__arrow{
  opacity: 0;
}



.iti__selected-flag .iti__arrow.iti__arrow--up{
  opacity: 1 !important;
}