:root{
    --white: #ffffff;
    --black: #000000;
    --text: #ffffff7a;
    --primary-color: #2948ff;
    --secondary-color: #1AE0FD;
    --gradiant-color: linear-gradient(55.94deg, #1AE0FD 16.9%, #25BAFD 25.63%, #3290FE 36.92%, #3B71FE 47.14%, #415FFE 55.81%, #4358FE 61.91%, #5014FF 89.08%);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
body{
    font-size: 16px;
    font-family: "Inter";
    font-weight: normal;
    scroll-behavior: smooth;
    background-color: #080808;
    overflow-x: hidden;
}
a,.btn,button,.button,img{
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.form-control:focus,
.btn-close:focus{
    border-color: var(--primary-color);
    outline: 0;
    /* box-shadow: 0 0 0 0.25rem rgb(190 143 45 / 25%); */
    box-shadow: none;
}

/* scrollbar styling */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* display: none; */
  }
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
    border-radius: 10px;
}
::selection {
    color: #fff;
    background: var(--primary-color);
}
.py-80{
    padding: 80px 0;
}
.header {
    position: absolute;
    z-index: 99;
    top: 0;
    width: 100%;
    /*background-color: #080808b5;
    backdrop-filter: blur(10px);*/
}
.navbar-brand{
    width: 307px;
}
.navScrolled {
    position: fixed;
    top: 0;
    z-index: 9999;
    -webkit-box-shadow: 0 10px 50px 0 rgba(5 13 49);
    box-shadow: 0 10px 50px 0 rgba(5 13 49);
    animation: scrollSticky 0.5s ease-out;
    -webkit-animation: scrollSticky 0.5s ease-out;
    /* background-color: var(--white); */
    background-color: #080808b5;
  backdrop-filter: blur(10px);
}
@keyframes scrollSticky {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.header.navScrolled .navbar {
  background-color: unset;
}
.header .navbar{
    padding: 20px 0;
}
.header .navbar-nav li .nav-link {
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    letter-spacing: 0px;
    color: var(--white);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding: 0;
    white-space: nowrap;
}
.header.navScrolled .sec-img{
    display: block;
}
.header .navbar-nav {
    gap: 50px;
    align-items: center;
}
.header .navbar-nav li .nav-link:hover,
.header.navScrolled .navbar-nav li .nav-link:hover,
.header .navbar-nav li .nav-link.active {
    color: var(--primary-color);
}
.header.navScrolled .navbar-brand .scroll-img{
    display: inline-block;
}
.acc-login-box{
    display: flex;
    align-items: center;
    gap: 20px;
}
.pri-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--gradiant-color);
    color: var(--white);
    border: 1px solid #2948ff;
}
.pri-btn:hover { 
    border: 1px solid var(--primary-color);
    background: transparent;
}
.pri2-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--gradiant-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    border: 1px solid #fff0;
}
.pri2-btn:hover {
    background: var(--gradiant-color);
  color: #fff !important;
  border: 1px solid #2948ff;
  -webkit-text-fill-color: unset;
}
.pri2-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(55.94deg, #1AE0FD 16.9%, #25BAFD 25.63%, #3290FE 36.92%, #3B71FE 47.14%, #415FFE 55.81%, #4358FE 61.91%, #5014FF 89.08%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}
.sec-btn{
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
    padding: 12px 24px;
    height: 60px;   
    border-radius: 50px;
    color: var(--white);
    border: 1px solid var(--primary-color);
    background: transparent;
    text-transform: capitalize;
    min-width: 170px !important;
    transition: all 0.3s ease;
}
.sec-btn i {
  transition: transform 0.4s ease;
}
.sec-btn:hover{
    color: var(--white);
    background: var(--gradiant-color);
}
.sec-btn:hover i {
  transform: rotate(60deg);
}
.home-area{
    /* padding: 150px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../img/home-bg.png) no-repeat center right / 100%; */
    padding: 250px 0 150px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../img/home-bg.jpg);
  background-repeat: no-repeat;
  background-size: 93%;
  background-position: 203% center !important;
}
.home-cont h1{
    font-size: 56px;
    line-height: 65px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}
.home-cont p{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 60px;
    font-family: "Inter", sans-serif;
}

.home_banner_vector {
  background-image: url(../img/banner_vector_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center !important;
}
.marqueeimg-area{
    padding: 60px 0;
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
}
.marqueeimg-slick .slick-track{
    display: flex;
    gap: 60px;
    align-items: center;
}
.aboutus-area{
    position: relative;
    padding: 120px 0;
}
.aboutus-area::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background-image: url(../img/about-bg-blr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    height: 100%;
    width: 600px;
    z-index: -1;
    opacity: 0.9;
}
.aboutus-inner{
    position: relative;
}
.aboutus-inner h2{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 160px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 8%;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}
h2{
    font-size: 52px;
    font-weight: 500;
/*    line-height: 80px;*/
    color: var(--white);
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}
.aboutus-inner h3{
    padding-top: 175px;
    font-size: 52px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}
.aboutus-inner p{
    font-size: 25px;
    font-weight: 300;
    line-height: 45px;
    color: var(--text);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.para{
    font-size: 24px;
    font-weight: 300;
    line-height: 40px;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.pb-100{
    padding-bottom: 100px;
}
.db-card-box{
    display: flex;
    flex-direction: column;
    border: 0.85px solid #536D8E;
    background: linear-gradient(90deg, #001C3C 10.73%, #112A51 100%);
    padding: 60px 30px;
    border-radius: 59.72px;
}
.db-card-icon{
    width: 81px;
    height: 81px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D91A;
    margin-bottom: 42px;
}
.db-card-cont h2{
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}
.db-card-cont p{
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    color: var(--white);
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
}
.db-card-box{
    transition: transform 0.4s ease;
}
.db-card-box:hover{
    box-shadow: 0px 0px 15px 4px #006FFF inset;
    transform: scale(1.02);
}
.db-card-box:hover .db-card-icon{
    background: linear-gradient(55.94deg, #1AE0FD 16.9%, #25BAFD 25.63%, #3290FE 36.92%, #3B71FE 47.14%, #415FFE 55.81%, #4358FE 61.91%, #5014FF 89.08%);
}
.py-125{
    padding: 80px 0;
}
.referral-main{
    position: relative;
    padding: 50px;
    border-radius: 70px;
    background: rgb(17 17 17 / 45%);
    border: 1px solid #1b2532;
    backdrop-filter: blur(100px)
}
.referral-main::before,
.referral-main::after{
    position: absolute;
    content: '';
}
.referral-main::before{
    top: -214px;
    right: -56px;
    height: 100%;
    width: 19%;
    background-image: url(../img/ref-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.referral-main::after{
    bottom: -214px;
    left: -55px;
    height: 100%;
    width: 450px;
    background-image: url(../img/ref-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.referral-main .nav-tabs{
    border-bottom: unset;
    flex-direction: column;
    gap: 22px;
    padding-right: 20px;
    border-right: 1px solid var(--text);
}
.referral-main .nav-tabs li a{
    display: inline-flex;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 500;
      color: var(--text);
      font-family: "Inter", sans-serif;
}
.referral-main .nav-tabs li a.active{
    color: var(--white);
    background-color: var(--primary-color);
}
.referral-main .tab-content{
    padding-left: 50px; 
    max-width: 830px;     
}
.referral-tab-content h2{
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}
.referral-tab-content p{
    font-size: 16px;
      font-weight: 300;
      line-height: 32px;
      color: #ffffffc2;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.trak-slide-box{
    padding: 100px;
    background: rgb(17 17 17 / 45%);
    border: 1px solid #1b2532;
    backdrop-filter: blur(100px);
    border-radius: 70px;
}
.trak-slider-cont .tsc-icon{
    margin-bottom: 53px;
}
.trak-slider-cont .tsc-icon img {
  animation: rotateCircle 6s linear infinite;
  display: block;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
.trak-slider-cont h3{
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}
.trak-slider-cont p{
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 60px;
    font-family: "Inter", sans-serif;
}
.trak-slider .slick-slider {
  position: relative;
}
.trak-slider .slick-dots {
  bottom: -50px;
  margin-top: 20px;
  text-align: start;
}
.trak-slider .slick-dots li {
  margin: 0 8px;
  display: inline-block;
}
.trak-slider .slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #2948FF;
  font-size: 0;
  transition: all 0.3s ease;
}
.trak-slider .slick-dots li button::before,
.trak-slider .slick-dots li.slick-active button::before,
.trak-slider .slick-dots li button:hover::before {
  opacity: 0;
}
.trak-slider .slick-dots li.slick-active button {
  background: #2948FF;
  border: none;
  transform: scale(1.2);
}
.trak-slider .slick-dots li button:hover {
  background: #2948FF;
}
.fr-box{
    height: 100%;
    background-color: #111111;
    border-radius: 30px;
    padding: 60px 40px;
    transition: transform 0.4s ease;
}
.fr-box:hover {
    transform: scale(1.02);
}
.fr-box .fr-icon{
    height: 110px;
    margin-bottom: 50px;
}
.fr-box h3{
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}
.fr-box h3 span{
    font-size: 22px;
    font-weight: 300;
}
.fr-box p{
    font-size: 16px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 60px;
  font-family: "Inter", sans-serif;
}
.faq-area{
    padding: 150px 0;
    background-image: url(../img/faq-bg.png);
    background-size: auto;
    background-position: center left;
    background-repeat: no-repeat;
    mix-blend-mode: luminosity;
}
.faq-title{
    max-width: 540px;
}
.faq-main .accordion,
.faq-main .accordion .accordion-item,
.faq-main .accordion .accordion-item .accordion-button{
    background-color: transparent;
}
.faq-main .accordion .accordion-item{
    border: unset;
    border-bottom: 1px solid #FFFFFF33;
    border-radius: 0;
    padding: 20px 0;
}
.faq-main .accordion .accordion-item .accordion-header{
    line-height: normal;
}
.faq-main .accordion .accordion-item .accordion-header .accordion-button{
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.faq-main .accordion .accordion-item .accordion-body p{
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.faq-main .accordion .accordion-item .accordion-body ul {
  color: #fff;
  list-style: disc;
  padding-left: 18px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 13px;
}
.faq-main .accordion .accordion-item .accordion-button:focus{
    box-shadow: unset;
}
.faq-main .accordion .accordion-item .accordion-button:not(.collapsed){
    box-shadow: unset;
}
.faq-main .accordion .accordion-item .accordion-header .accordion-button:after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z'/%3E%3C/svg%3E");
}
.faq-main .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}
.footer{
    padding-top: 60px;
}
.footer-about .f-logo{
    display: block;
    margin-bottom: 24px;
}
.footer-box{
    padding-left: 70px;
}
.footer-about p,.footer-box p{
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.footer-box h3{
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 25px;
    font-family: "Inter", sans-serif;
}
.footer-box ul li:not(:last-child){
    margin-bottom: 15px;
}
.footer-box ul li a{
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    font-family: "Inter", sans-serif;
}
.footer-box ul li a:hover{
    color: var(--white);
}
.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-bar p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
}
.footer-bar hr {
  border-color: #fff;
}
.newsletter-form {
    position: relative;
}
.newsletter-form {
    margin-bottom: 20px;
}
.newsletter-form .form-control{
    background: transparent;
    border: unset;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    font-family: "Inter", sans-serif;
    padding: 15px 110px 15px 0;
    border-bottom: 1px solid #FFFFFF80;
}
.newsletter-form .form-control::placeholder{
    color: var(--text);
}
.newsletter-form .form-control:focus{
    box-shadow: unset;
}
.newsletter-form .pri-btn{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 400;
    height: 34px;
    padding: 8px 16px;
}
.bottom-footer{
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid #FFFFFF33;
}
.copyright,.policy-list li a{
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    font-family: "Inter", sans-serif;
}
.policy-list{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 75px;
    text-align: center;
}
.policy-list li a:hover,.social-list li a:hover{
    color: var(--text);
}
.social-list{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
.social-list li a{
    color: var(--white);
    font-size: 22px;
}
.custom-toggler {
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 99999;
}
.custom-toggler:focus{
    box-shadow: unset;
}
.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.offcanvas{
    background-color: #000622;
    transition: transform 0.6s ease;
}
.offcanvas.offcanvas-start{
   width: 100%;
  max-width: 400px;
}
.mob-bottom{
    display: none;
}
.about-pg-home-area{
    background-image: url(../img/about-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    
}
.about-pg-home-area .home-cont{
    padding-top: 275px;
}
.aboutRedefining-area{
    padding-top: 220px;
}
.aboutcenter-area{
    position: relative;
    padding: 450px 0;
    margin-top: -450px;
    z-index: -1;
}
.aboutcenter-area::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/about-circle.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}
.aboutvision-area{
    margin-top: -400px;
}
.core-values-box {
  transition: transform 0.4s ease;
}
.core-values-box:hover {
  box-shadow: 0px 0px 15px 4px #555 inset;
  transform: scale(1.02);
}
.core-values-box:hover .core-icon {
  background: linear-gradient(55.94deg, #1AE0FD 16.9%, #25BAFD 25.63%, #3290FE 36.92%, #3B71FE 47.14%, #415FFE 55.81%, #4358FE 61.91%, #5014FF 89.08%);
}

.core-values-area{
    position: relative;
}
.core-values-area::before{
    position: absolute;
    content: '';
    top: -70px;
    right: 0;
    width: 300px;
    height: 100%;
    background-image: url(../img/core-values-bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.core-values-main{
    background: rgb(17 17 17 / 45%);
    border: 1px solid #1b2532;
    backdrop-filter: blur(100px);
    padding: 60px 120px;
    border-radius: 80px;
}
.privacy-home-area .core-values-main {
  border-radius: 40px;
}
.core-values-box{
    padding: 40px;
    border-radius: 50px;
    background-color: #2A2A2A;
    height: 100%;
}
.core-icon{
    width: 81px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D91A;
    border-radius: 50%;
    margin-bottom: 30px;
}
.core-icon img{
    width: 45px;
}
.core-values-box h3{
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}
.core-values-box p{
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: var(--white);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}
.shadowbit-slider-area{
    padding: 180px 0;
    overflow: hidden;
}
.shadowbit-slider1,
.shadowbit-slider2{
    padding: 20px 0;
    width: 102%;
     margin: auto -11px;
}
.shadowbit-img{
    display: flex;
    align-items: center;
    gap: 80px;
}
.shadowbit-slider1{
    position: relative;
    background-color: var(--white);
    transform: translateY(0%) rotate(-6deg);
    z-index: 9;
}
.shadowbit-slider2{
    background-color: var(--primary-color);
    transform: translateY(-50%) rotate(3deg);
}
.wc-us-area{
    position: relative;
}
.pb-250{
    padding-bottom: 150px;
}
.service-home-area {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 100vh;
  align-items: center;
  display: flex;
}
.service-home-area::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/ser-1.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto;
    z-index: -1;
}
.service-bar-area{
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, #2948FF 0%, #1AE0FD 30.29%, #1AE0FD 58.17%, #2948FF 100%);
    border-image-slice: 1;
    border-image-width: 1;
    border-image-outset: 0;
    border-image-repeat: stretch;
    margin-bottom: 100px;
}
.sb-text{
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
    padding: 25px 0;
}
.border-bar .col:not(:last-child){
    border-right: 1px solid var(--secondary-color);
}
.sb-list li{
    display: flex;
    gap: 15px;
  align-items: baseline;
  font-size: 24px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
}
.community-home-area{
    background-image: url(../img/c-1.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 550px;
  padding-top: 201px;
}
.community-features-area .core-values-box{
    background-color: unset;
    text-align: center;
}
.community-features-area .core-values-box .core-icon{
    margin: 0px auto 30px;
}
.contactus-home-area{
    background-image: url(../img/cus-1.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: rgb(17 17 17 / 90%);
}
.contactus-home-inner{
    padding: 220px 0 150px 0;
}
.contactus-home-form{
    padding-bottom: 90px;
    border-bottom: 1px solid #1b2532;
    background: linear-gradient(180deg, rgba(222, 222, 222, 0) 0%, rgba(2, 2, 2, 0.83) 47.6%, rgba(19, 19, 19, 0.62) 100%);
}
.chf-mail {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 50px;
  font-family: "Inter", sans-serif;
}
.chf-mail:hover{
    opacity: .6;
}
.chf-cont h4{
    font-size: 24px;
    font-weight: 400;
    line-height: 50px;
    color: var(--white);
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}
.chf-cont .social-list{
    justify-content: start;
    font-size: 30px;
}
.contactus-form .form-grp .form-label{
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    font-family: "Inter", sans-serif;
}
.contactus-form .form-grp .form-control{
    border: unset;
    border-radius: 0;
    border-bottom: 1px solid var(--white);
    background-color: transparent;
    padding-left: 0;
    padding-bottom: 20px;
    color: #fff;
}
.contactus-form .form-grp .form-control::placeholder{
    color: #5D5D5D;
}
.pt-250{
    padding-top: 250px;
}
.contactus-commitment-area .cont-btmn{
    padding-top: 60px;
}
.privacy-home-area{
    background-image: url(../img/pt.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto;
}
.privacy-home-inner{
    padding-top: 250px;
    padding-bottom: 150px;
}
.privacy-box-area .core-values-main{
    padding: 60px;
    margin-bottom: 40px;
}
.privacy-box-cont ul{
    list-style-type: disc;
}
.privacy-box-cont ul li{
    font-size: 20px;
    font-weight: 300;
    line-height: 35px;
    color: var(--white);
    font-family: "Inter", sans-serif;
}
.cookies-area{
    padding-top: 0;
    background-image: unset;
}
.cookies-area .faq-main .accordion .accordion-item .accordion-header .accordion-button:after{
    width: 35px;
    height: 35px;
    background-position: center;
    border-radius: 50%;
    border: 1px solid var(--white);
}
.tnc-home-area .privacy-box-cont ul > ul h5{
    font-size: 26px;
    font-weight: 500;
    line-height: 50px;
    color: var(--white);
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}
.tnc-home-area .privacy-box-cont ul > ul li{
    margin-bottom: 5px;
}
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.scroll-indicator.hidden {
    opacity: 0;
}
.scroll-indicator span {
    color: var(--white);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 5px;
}
.scroll-indicator span svg {
    transform: rotate(40deg);
    font-size: 16px;
}
.scroll-dots-container {
    display: flex;
    gap: 6px;
    overflow: hidden;
}
.scroll-dot {
    width: 8px;
    height: 10px;
    background: #3a3a3a;
    transform: skewX(-50deg);
    transition: all 0.3s ease;
}
.scroll-dot.active {
    background: var(--white);
}
.scroll-indicator span i {
    transform: rotate(40deg);
    font-size: 16px;
}
.service-home-img{
    text-align: center;
}






.shadowbit-slider-area {
  overflow: hidden;
}

.shadowbit-slider {
  width: 103%;
  overflow: hidden;
  position: relative;
}

.shadowbit-track {
  display: flex;
  animation: scrollLeft 20s linear infinite;
  gap: 35px;
}

.shadowbit-track.reverse {
  animation: scrollRight 20s linear infinite;
}

.shadowbit-track img {
  height: 30px; /* Customize as needed */
  margin: 0 10px;
  flex-shrink: 0; /* Prevent image shrinking */
}

/* Scroll left */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Scroll right */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.list-none {
  list-style: none !important;
}
form#contactus .help-block {
    color: red;
}
section {
  overflow-x: hidden;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}