
html {
    scroll-behavior: smooth;
}
body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 8%;
    text-transform: uppercase;
    font-weight: 500;
}

header {
    background: linear-gradient(135deg, #341937, #953461);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding-top: 60px;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 80px;
    background: black;
    text-align: center;
}

.topnav {
    overflow: hidden;
    background-color: #341937;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  .nav-logo {
    width: 200px;
  }
  .nav-logo-wrapper {
    margin-left: 0;
    margin-right: auto;
  }
  .topnav a:hover {
    color: #F89A33;
  }
  
  .topnav a.active {
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    nav {
        padding: 5px;
    }
    .nav-logo {
      width: 120px;
    }
    .topnav.responsive {
        position: fixed;
        flex-direction: column;
    }
    .topnav.responsive .icon {
      position: absolute;
      right: 5px;
      top: 14px;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px 0;
    width: 100%;
}

.hero__circle {
    position: absolute;
    bottom: 0;
    width: 130%;
}
.hero__row {
    position: relative;
    z-index: 3;
    width: 80%;
    max-width: 1240px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero__text-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -65px;
}
.hero__lead-form {
    background: white;
    color: #341937;
    font-size: 2rem;
    font-weight: 500;
    padding: 10px 40px;
    text-transform: uppercase;
}
.hero__image-col {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateX(150px);
    transition: all 0.6s ease-out;
}
.hero__phone {
    width: 90%;
    position: relative;
    z-index: 3;
}
.hero__phone--slide {
    position: absolute;
    z-index: 1;
}
.hero__phone--slide-1 {
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 2;
}
.active-slide {
    opacity: 1;
}
.hero__heading {
    color: white;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 1px;
    width: 90%;
    margin-bottom: 30px;
}
.hero__scroll-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}
.hero__scroll-text {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero__scroll-icon {
    width: 70px;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.hero__logo {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
    width: 70%;
    max-width: 360px;
}
.col-4 {
    max-width: 1240px;
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.col-4__heading {
    margin-bottom: 60px;
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 2px;
}
.col-4__subheading {
    margin-top: 0;
    margin-bottom: 60px;
    font-weight: 500;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 2px;
}
.col-4__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5%;
    transition: all 0.6s ease;
}
.grid__container-active {
    transform: scale(0.7);
}
.col-4__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    cursor: pointer;
}
.col-4__info {
    background: rgba(0, 0, 0, 0.2);
    font-size: 1.4rem;
    max-width: 1240px;
    height: 0;
    transition: 0.6s ease;
    overflow: hidden;
    width: 75%;
    text-align: center;
    position: relative;
}
.col-4__x {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.3;
    cursor: pointer;
}
.col-4-active {
    height: auto;
    padding: 40px;
}
.col-4__info-wrapper {
    transition: 0.3s;
}

.grid-active {
background: #28122b;
}
.col-4__image {
    width: 90%;
    transition: 0.6s ease;
    border-radius: 50%;
}
.col-4__image:hover {
    transform: scale(1.1);
}
.icon-active {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.3);
}
.col-4__animate {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}
.col-4__item-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
}
.col-4__text {
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 40px;
}
.hidden {
    display: none;
}
.about {
padding: 100px 60px;
display: flex;
justify-content: center;
align-items: center;
} 
.about__container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about__image {
width: 35%;
opacity: 0;
transform: translateX(-150px);
transition: all 0.6s ease-out;
}
.about__text-container {
width: 50%;
padding: 60px;
}
.about__heading {
    font-size: 2rem;
    font-weight: 500;
    color: #341937;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 600;
}
.about__text {
    font-family: 'Open Sans', sans-serif;
    font-optical-sizing: auto;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    line-height: 1.6;
}

.video {
    background-color: #953461;
    background-image: url('img/video-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 160px;
}
.video__container {
    width: 90%;
    max-width: 1240px;
}
.video__image {
    width: 100%;
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.6s ease-out;
}
.faq {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 60px;
}
.faq__container {
    max-width: 1040px;
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.6s ease-out;
    text-align: left;
}
.faq__heading {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}
.faq__item {
    position: relative;
    background: #F3F4F6;
    padding: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    height: auto;
    transition: 600ms;
    transition-timing-function: ease;
    cursor: pointer;
    border-radius: 10px;
}
.faq__question {
    width: 92%;
    font-weight: 600;
    font-size: 1.4rem;
    padding-right: 30px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}
.faq__answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 400ms ease-out, margin-top 400ms ease-out;
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
}
.faq__answer {
    overflow:hidden;
    padding: 0;
    margin: 0 auto;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    width: 95%;
    font-size: 1.2rem;
}
.faq__icon {
    position: absolute;
    top:25px;
    right: 20px;
    transition: 300ms;
    width: 18px;
    height: 18px;
    
}
.open {
    grid-template-rows: 1fr;
    margin-top: 10px;
}
.rotate {
    transform: rotate(45deg)!important;
}
.faq__text {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    color: #341937;
    font-weight: 500;
    margin: 60px 0 40px;
}
.faq__text a {
    text-decoration: underline;
    color: #953461;
}
.faq__button {
    padding: 10px 40px;
    background: #341937;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
}
.faq__button:hover {
    background: #28122b;
}
.testimonials {
    background: linear-gradient(to right, #341937, #953461);
    padding: 80px;
    position: relative;
}
.testimonials__heading {
    text-align: center;
    color: white;
    font-size: 2.4rem;
    margin-bottom: 20px;
    margin-top: 0;
}
.testimonials__text {
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 60px;
}
.testimonials__nav-wrapper {
padding: 40px;
position: relative;
}
.testimonials__wrapper {
    max-width: 1440px;
    overflow: hidden;
    margin: 0 auto;
    flex-shrink: 0;
}
.testimonials__slider {
    display: flex;
    gap: 2%;
    transition: transform 0.6s;
}
.testimonial {
    width: 32%;
    background: white;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
}
.testimonial__star-container {
    margin-bottom: 20px;
}
.testimonial__image {
    margin-bottom: 20px;
}
.testimonial__name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 5px;
    text-align: center;
}
.testimonial__logo {
    margin-bottom: 20px;

}
.testimonial__star {
    width: 30px;
}
.testimonial__text {
    padding: 0 40px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}
.testimonial__info {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}
.testimonials__dots-container {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    width: calc(100% - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonials__dots {
    display: flex;
    gap: 10px;
}
.testimonials__dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 12px;
    opacity: 0.5;
    transition: 0.3s;
    cursor: pointer;
}
.active-dot {
    background-color: #F89A33;
    width: 30px;
    opacity: 1;
}
.footer__logo {
    width: 80%;
    max-width: 200px;
    margin-bottom: 20px;
}
.footer__text {
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}
.footer__text a {
    color: white;
}
#slider-left {
    color: white;
    font-size: 3rem;
    cursor: pointer;
    position: absolute;
    left: 0;
    margin: auto 0;
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
}
#slider-right {
    color: white;
    font-size: 3rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    height: calc(100% - 80px);
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1080px) {
    .testimonial {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 80px 10px 0;
    }
    .hero__row {
        flex-direction: column;
        gap: 20px;
    }
    .hero__text-col {
        width: 100%;
        margin-top: 0;
    }
    .hero__image-col {
        width: 100%;
        margin-bottom: 40px;
    }
    .hero__phone {
        width: 70%;
    }
    .hero__circle {
        bottom: 10%;
    }
    .col-4__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 0px;
    }
    .col-4__item-text {
        font-size: 0.8rem;
    }
    .about {
        padding: 100px 20px;
    }
    .about__container {
        flex-direction: column;
    }
    .about__image {
        width: 80%;
    }
    .about__text-container {
        width: 80%;
        padding: 20px 0;
    }
    .video {
        padding: 40px;
    }
    .faq {
        padding: 60px 20px;
    }
    .testimonials {
        padding: 80px 20px;
    }
    .grid__container-active {
        transform: scale(0.6) translateY(-180px);
        margin-bottom: -150px!important;
    }
    .hero__logo {
        width: 70%;
        max-width: 250px;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }
    35% {
        transform: translateY(8px);
    }
    90% {
        transform: translateY(-1px);
    }
    100% {
        transform: translateY(0px);
    }
}


@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.fade-in {
    opacity: 1;
    transform: translateX(0px);
}
.opacity-0 {
    opacity: 0;
}

.password {
    background: #341937;
    display: flex;
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 999;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px){
.about{
padding: 50px 15px 0px;
}
.faq{
        padding: 10px 20px;
}
}
 
@media (max-width: 991px){
.about{
padding: 50px 15px 0px;
}
.faq{
        padding: 10px 20px;
}
 
}
 
.about{
    padding: 0px 60px 0px;
}
 
@media screen and (max-width: 768px) {
    .about{
    padding: 50px 20px 0px;
}
    .about__image {
        width: 100%;
    }
    .about__text-container {
        width: 100%;
        padding: 20px 0;
    }
}