/* faq */
.br-mobile {
    display: none;
}

.faq {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-cont1 {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.faq-content1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.faq-content1 h3 {
    color: #409;
    font-family: "Clash Grotesk";
    font-size: clamp(1vw, 2vw, 3vw);
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 1rem;
}

.faq-content1 h2 {
    color: #409;
    font-family: "Clash Grotesk Semibold";
    font-size: clamp(4vw, 5vw, 7vw);
    font-style: normal;
    font-weight: 600;
    line-height: 90%;
    margin-bottom: 1rem;
}

.faq-content1 h2 > span {
    background: linear-gradient(90deg, #E56DB9 0%, #FB90C8 16%, #F51C88 32%, #7A0296 49.5%, #3A3CA7 66%, #2987BC 83.5%, #1DCDCA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Clash Grotesk Semibold";
    font-size: 1em;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.faq-content1 p {
    color: #409;
    font-family: "Clash Grotesk";
    font-size:  clamp(1vw, 1.5vw, 2vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.faq-content1 > div {
    width: 35%;
    padding-left: 5%;
}

.faq-content1 > img {
    height: auto;
    width: 60%;
}

.hero-faq-mobile-cont {
    display: none;
}

.faq-cont2 {
    width: 90%;
    height: auto;
}

.faq-content2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.hta-video {
    position: relative;
    height: auto;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hta-bg-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 60vh;
    border-radius: 20px;
}

.hta-play-btn {
    position: absolute;
    z-index: 2;
    height: auto;
    width: 8%;
    align-self: center;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.qa {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    padding: 3%;
    overflow: hidden;
}

.qa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 4px;
    background: linear-gradient(to right, #E56DB9 0%, #FB90C8 16%, #F51C88 32%, #7A0296 50%, #3A3CA7 66%, #2987BC 83%, #1DCDCA 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-out;
}

.active {
    max-height: 1000px;
    transition: max-height 2s ease-out;
}

.qa > .question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.open-answer {
    cursor: pointer;
}

.close-answer {
    cursor: pointer;
}

.qa > .question > h3 {
    color: #409;
    font-family: "Clash Grotesk Medium";
    font-size: clamp(1.2em, 34px, 50px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.close-answer {
    display: none;
}

.qa > .answer > p {
    color: #409;
    font-family: "Clash Grotesk";
    font-size: clamp(1em, 28px, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.qa > .answer a {
    color: unset;
    text-decoration: underline;
    cursor: pointer;
}



.inactive {
    display: none;
}
/* faq */