li { list-style: none;}

a{
    text-decoration: none;
}

button{ 
    background: none;
    border: none;
    font: inherit;
}

input,
textarea { width: 100%;}

button { cursor: pointer;}


body{
     background-color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
    font-family: "Red Hat Display", sans-serif;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.main{
    min-height: 100%;
}

.hero{
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-holder{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.content-holder{
  position: relative;
}

.hero_video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5em;
}

.home-content{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-cont{
  position: absolute;
  z-index: 2;
  color: white; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
}

.ttl-gradient{
   font-size: 19.5rem; 
   font-weight: 700;
   font-family: "Red Hat Display", sans-serif;
   text-align: center;
   color: transparent;
   background: linear-gradient(to bottom, #a0a0a0 0%, #e6e6e6 20%, transparent 100%);
   -webkit-background-clip: text;
   background-clip: text;
}

.footer-ttl{
  font-size: 35rem
}

.light-text{
  opacity: 50%;
}

.btn-primary{
    display: flex;
    width: min-content;
    padding: 15px 20px;
    box-shadow: 0 0 3px 2px #fff3 inset, 0 0 12px 4px #ffffff20 inset, 0 4px 3px -4px #00000080;
    will-change: box-shadow, padding;
    white-space: nowrap;
    overflow: hidden;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    transition: box-shadow .2s ease-in-out, padding .2s ease-in-out;
}

.btn-primary .right-arrow{
   transition: 0.5s ease;
}

.btn-primary:hover{
  box-shadow: 0 0 8px 2px #fff3 inset, 0 0 12px 4px #ffffff20 inset, 0 4px 3px -4px #00000080;
}

.btn-primary:hover .right-arrow{
  transform: translateX(3px);
}

.hm-btn-holder{
  display: flex;
  gap: 10px;
}

.home-btm-section{
  display: flex;
  align-items: center;
}

.left-text{
  line-height: 1.3;
}

.fs-7{
  font-size: clamp(0.8rem, 0.77rem + 0.3vw, 0.95rem);
}

.fade-left,
.fade-right {
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  background: linear-gradient(to right, rgb(255, 255, 255), transparent);
  left: 0;
}

.fade-right {
  background: linear-gradient(to left, rgb(255, 255, 255), transparent);
  right: 0;
}

.hero-text{
    font-weight: 500;
    line-height: 1;
    font-family: "Red Hat Display", sans-serif;
     font-size: clamp(2rem, 6vw + 1rem, 5.2rem);
    letter-spacing: -.02em;
    display: inline-block;
}

.process-text{
    font-weight: 500;
    line-height: 1;
    font-family: "Red Hat Display", sans-serif;
    font-size: clamp(3rem, 5vw + 0.5rem, 4.5rem);
    letter-spacing: -.02em;
    display: inline-block;
}

.innerpage-top-pad{
  height: 20vh;
}

.hero-text span{
  display: inline;
  opacity: 50%;
}

.section-spacing{
   width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-gradient{
    color: transparent;
    background-image: url(../sources/noise-evolve.png);
    background-size: 200% auto;
    background-position: 0 50%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: .25em;
    margin-bottom: -.25em;
}

.abt-cont{
  padding-top: 70px;
}

.works-cont{
  position: relative;
  top: 55%;
}

.proj-cont{
  position: relative;
  top: 50%;
}

.casecard-img-holder{
  height: 85vh;
  width: 100%;
  border-radius: 30px;
  z-index: 1;
}

.casecard-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1.5em;
}

/*
.casecard-list{
  display: grid;
  grid-gap: 30px;
}
*/

.svg-wrap {
  width: 100%;
  margin: 0 auto;
}

.proj-cont {
  z-index: 2;
  top: 60%;
}

.casecard-img-holder{
  position: relative;
  overflow: hidden;
}

.casecard-img-holder::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(12, 12, 12, 0.1); 
  backdrop-filter: blur(10px);
  height: 0%;
  z-index: 2;
  transition: height 0.4s ease;
  opacity: 1;
  pointer-events: none;
}

.casecard-img-holder:hover::before {
  height: 100%;
}
.casecard-img-holder img {
  transition: transform 0.4s ease;
}

.casecard-img-holder:hover img {
   transform: scale(1.03);
}

.casecard-cont{
  opacity: 0;
  transition: opacity 0.4s ease;
}

.casecard-img-holder:hover .casecard-cont{
  opacity: 1;
}


.opacity-60{
  opacity: 60%;
}

.gap-8{
  gap: 8rem;
}

.cont{
  line-height: 1.1;
}

.profile-cont span{
  display: inline;
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1;
}

.display-3{
    font-weight: 300;
    line-height: 1.1;
}

.headline-txt{
  font-weight: 500;
  line-height: 1.1;
  font-size: clamp(2rem, 1.25rem + 3.75vw, 5rem);
}

.headline-txt-p2{
  line-height: 1.1;
  font-size: 4.2rem;
}

.headline-txt span{
   display: inline;
}

.faq-cont{
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  background-color: #d8d8d8;
  border-radius: 30px;
  height: 500px;
}

.faq-left-ttl{
  font-size: clamp(2.5rem, 1vw + 1rem, 2.8rem);
}

.faq-cont p{
  font-size: 1.1rem;
}

.email-logo{
  height: 50px;
  width: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.4s ease;
}

.email-logo .bi-envelope-fill{
  color: #131313;
  font-size: 18px;
   transition: 0.4s ease;
}


.email-logo:hover .bi-envelope-fill{
    color: #8a2000;
}

.faq-right-ttl h1{
  font-size: 2.5rem;
}

  .faq-section {
    padding: 10px 10px;
  }

  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
    color: #222;
  }

  .faq-item {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 5px 0;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: #000;
  }

  .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #555;
  }

  .faq-answer p {
    margin: 10px 0;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
  }

  .faq-item.active .icon {
    transform: rotate(45deg);
  }

  .accordian-icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 200;
    background-color: #d8d8d8;
    box-shadow: 0 0 .25em .125em inset #ffffff80;
    color: #191b18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .features-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.features-list svg {
  color: #7a7a7a;
  margin-right: 10px;
  flex-shrink: 0;
}

.features-list strong {
  color: #000;
  font-weight: 600;
}

.tab-top{
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  background-color: #191B18;
  color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 0 3px 2px #fff3 inset, 0 0 12px 4px #ffffff20 inset, 0 4px 3px -4px #00000080;
}

.tab-btm{
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  transform: translateY(-20px)
  translateX(20px);
  background-color: #d8d8d8;
  color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 0 3px 2px #fff3 inset, 0 0 12px 4px #ffffff20 inset, 0 4px 3px -4px #00000080;
}

.tabs-set span{
    display: inline;
  }

.tabs-set .btn-primary{
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 3px 2px #fff3 inset, 0 0 12px 4px #ffffff20 inset, 0 4px 3px -4px #00000080;
  color: rgb(0, 0, 0);
  transition: 0.5s ease;
}

.tabs-set .btn-primary.active{
  background-color: rgb(5, 5, 5);
  box-shadow: 0 0 3px 2px #fff3 inset, 0 0 12px 4px #ffffff20 inset, 0 4px 3px -4px #00000080;
  color: rgb(241, 241, 241);
}

.pricing-tabs.active .tab-btm {
  z-index: 2;
  transform: translateY(0);
}

.pricing-tabs.active .tab-top {
  z-index: 1;
   transform: translateY(-20px)
  translateX(20px);
}

.tab-top,
.tab-btm {
  transition: transform 0.6s ease, z-index 0.3s ease, box-shadow 0.6s ease;
}

.pricing-tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature{
 background-color: #f1f1f1;
  max-width: 400px;
  border-radius: 10px;
}

.fs-8{
  font-size: clamp(0.625rem, 0.5938rem + 0.1563vw, 0.75rem);
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 435px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-card{
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  height: min-content;
  transition: 0.5s ease;
  width: 90%;
}

.header-card:hover{
    box-shadow: rgba(255, 255, 255, 0.95) 0px 0px 1em 0.25em inset, rgba(0, 0, 0, 0.2) 0px 0.5em 0.75em -0.125em;
}

.header-menu-icon{
  cursor: pointer;
}


.header-menu {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 300ms ease, opacity 200ms ease;
  pointer-events: none;
}

.header-menu.open {
  pointer-events: auto;
  opacity: 1;
}


.logo{
  font-size: 2.6rem;
}
@media (max-width: 768px) {
   .logo{
        font-size: 2.3rem;
    } 
}

.faq-question svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

.header-menu-icon {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.header-menu-icon path {
  transition: transform 0.3s ease;
}

.header:hover .header-menu-path-1 {
  transform: translateY(-1.5px);
}

.header:hover .header-menu-path-2 {
  transform: translateY(1.5px);
}

.headline-h1 h1{
    font-weight: 500;
    line-height: 1;
    font-size: clamp(2rem, 1.25rem + 3.75vw, 5rem);
}

.headline-h1-txt{
  font-size: clamp(1rem, .9063rem + .4688vw, 1.375rem);
}

.headline-txt span{
  display: inline;
}

.scroller {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroller-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}

.scroller-track span {
  padding: 0 2rem;
  font-size: clamp(0.8rem, 1rem + 1.2vw, 1.4rem);
  font-weight: 500;
  display: inline-block;
  opacity: 0.5;
  text-transform: uppercase;
}

.item-holder{
  text-align: center;
  color: #fff;
  height: 500px;
  max-width: 500px;
}

.item-holder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1em;
}

.home-p2 .container{
  padding-top: 80px;
}

ol, ul{
  padding-left: 0rem;
  margin-bottom: 0rem;
}

.owl-theme .owl-dots .owl-dot span{
  display: none;
}

.benefits-card{
  --border-bottom-width: 1px;
    --border-color: rgb(222, 222, 222);
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    background-color: rgba(0, 0, 0, 0.03);
    width: 100%;
    will-change: transform;
    border-radius: 20px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 0.602187px 0.602187px -1.25px, rgba(0, 0, 0, 0.16) 0px 2.28853px 2.28853px -2.5px, rgba(0, 0, 0, 0.06) 0px 10px 10px -3.75px;
    transform: none;
}

.pulse {
  width: 10px;
  height: 10px;
  background-color: rgb(127 40 0);
  border-radius: 50%;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulser p {
    margin-bottom: 0rem;
}

.card{
  overflow: hidden;
}

.cards-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

.card-cont{
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 350px;
  border-radius: 20px;
  background-image: url("sources/grey_dots.svg");
  background-repeat: repeat;
  background-size: 19px;
  border: 0.5px solid #c5c3c3;
}

.card-cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 80%); 
  z-index: 1;
}

.feature{
   position: absolute;
  z-index: 2;
}

.card-box-wrapper {
    position: absolute;
    z-index: 2;
}

.bi-calendar-event{
  font-size: 0.6rem;
}

.card-box {
  width: 220px;
  border-radius: 10px;
  background-color: #f1f1f1;
  padding: 10px 10px;
  transition: 0.5s all;
  transform: scale(.95);
}

.card-box:hover{
  transform: scale(1);
}

.fs-9{
  font-size: 0.7rem;
}

.grid-wrapper{
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 575px) {
    
.section-spacing{
   width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.faq-question svg{
    width: 1.4em;
    height: 1.4em;
}

.home-txt{
  width: 100%;
}

.faq-cont {
    height: min-content;
    gap: 10px;
}

.item-holder{
  text-align: center;
  color: #fff;
  width: 300px;
  width: 100%;
  height: 300px;
}

.owl-carousel {
  width: 100% !important;
  overflow: hidden;
}
.owl-stage {
  display: flex;
}

.item-holder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cards-wrapper {
  grid-template-columns: 1fr;
}

.process-underline{
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.innerpage-top-pad{
    padding-top: 150px !important;
    height: 10vh;
}

.update-date{
    font-size: 0.8rem !important;
}

.inner-txt{
    font-size: 1rem !important;
}


}

@media (max-width: 420px){
    
.tab-price{
    flex-direction: column !important;
    align-items: start !important;
}
    
}


@media (min-width: 575px) {
  .home-ttl{
    white-space: nowrap;
  }
}


@media (max-width: 992px){

 .cards-wrapper {
  grid-template-columns: 1fr 1fr;
}

.receive{
  grid-column: 1 / 3; 
  width: 100%;        
  justify-self: stretch;
}

}

@media (min-width: 992px){

  .home-txt{
  width: 50%;
}

}

@media (max-width: 768px){

.grid-wrapper{
  grid-template-columns: 1fr;
}

 .cards-wrapper {
  grid-template-columns: 1fr;
}

.receive{
  grid-column: unset; 
  width: 100%;        
  justify-self: unset;
}

}

.receive .front-lid{
  position: absolute;
  z-index: 2;
  perspective: 800px;
}

.receive .back-lid{
  position: relative;
  z-index: 1;
  transform: translateY(-10px);
  perspective: 800px;
}

.receive .back-lid img{
   width: 150px;
  transform-origin: bottom center; 
  transform: rotateX(0deg); 
  transition: transform 0.5s ease;
}

.receive .front-lid img{
 width: 150px; 
  transform-origin: bottom center;
  transform: rotateX(0deg);
  transition: transform 0.5s ease;
}

.card-cont:hover .back-lid img{
  transform: rotateX(10deg);
}

.card-cont:hover .front-lid img{
    transform: rotateX(-50deg);
}

.receive-images{
  transform: translateY(-20px)
  translateX(80px);
}


.receive-images .receive-img-holder{
   width: 100px;
   height: 80px;
   border-radius: 30px;
   transition: 0.5s ease;
}

.receive-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.receive-images {
  width: 70%;
  height: auto;
  transition: transform 0.6s ease;
}

.receive-img-holder img {
  width: 120px;
  border-radius: 8px;
  transition: 0.6s ease;
}

.card-cont:hover .receive-img-holder:nth-child(1) {
  transform: rotate(10deg) translateX(40px) translateY(-60px) scale(1.05);
}

.card-cont:hover .receive-img-holder:nth-child(2) {
  transform: rotate(-10deg) translateX(-40px) translateY(-60px) scale(1.05);
}

.card-cont:hover .receive-img-holder:nth-child(3) {
  transform: translateY(-80px) scale(1.05);
}

.card-toggle-txt {
  transition: background-color 0.2s ease;
}

.custom-checkbox {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #555;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-checkbox:checked {
  background-color: #932f00;
  border-color: #932f00;
}

.custom-checkbox:checked::after {
  content: "✔";
  position: absolute;
  color: white;
  text-align: center;
  font-size: 11px;
  top: 0;
  left: 2px;
}

.footer-links a::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(12, 12, 12, 0.1); 
  width: 100%;
  height: 2px;
  transition: 0.4s ease;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
  background: 0 0;
    color: inherit;
    border: none;
    padding: 4px 7px !important;
    font: inherit;
}

.benefits-card-logo{
  background-color: #932f00;
}

.continuous-scroll .owl-stage {
  display: flex;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.continuous-scroll .owl-item {
  flex: 0 0 auto;
}

.continuous-scroll .owl-nav,
.continuous-scroll .owl-dots {
  display: none;
}

.cal-bg{
   background-color: #2e2e2e;
}

.tab-cta-txt span{
    display: inline-block;
}

.header-menu-item{
    color: #000;
    transition: 0.5s ease;
}

.header-menu-item:hover{
    color: rgb(111 111 111);
}
.innerpage-top-pad{
  padding-top: 200px;
}

.footer-link{
    color:  rgb(0 0 0);;
    transition: 0.5s ease;
}

.footer-link:hover{
     color: rgb(111 111 111);
}

.inner-ttl{
    font-size: clamp(2rem, 2rem + 2vw, 4.4rem);
}




