:root {
    background: transparent;
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqMain {
    width: 80%;
    margin-top: 5%;
}

.faqMain > .left {
    width: 50%;
}

.faqMain > .left > p:nth-of-type(1),
.faqMain > .left > p:nth-of-type(2) {
    font-family:  "oswald";
    font-size: 200%;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 133%;
    color: rgba(255, 193, 26, 1);

}

.faqMain > .left > p:nth-of-type(3) {
    font-family:  "Carlito";
    font-size: 105%;
    font-weight: 400;
    text-align: justify;
    color: rgba(0, 0, 0, 1);
    margin-top: 3%;
    width: 80%;
}

.faqMain > .right {
    width: 50%;
}

.faqMain > .right > .question {
    margin-bottom: 8%;
}


.faqMain > .right > .question > div:nth-of-type(1) > p {
    font-family: "Oswald";
    font-size: 131.25%;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);


}

.faqMain > .right > .question > div:nth-of-type(1) > div > img:nth-of-type(1) {
    width: 80%;
    margin-left: 30%;
}

.faqMain > .right > .question > div:nth-of-type(1) > div > img:nth-of-type(2) {
    position: relative;
    margin-left: 30%;
    width: 80%;
    z-index: 2;
}

.faqMain > .right > .question > div:nth-of-type(3) {
    margin-top: 2%;
}

.faqMain > .right > .question > div:nth-of-type(3) > p {
    color: rgba(0, 0, 0, 1);
    width: 100%;
    font-family: "Carlito";
    font-weight: 400;
    font-size: 105%;
}

.faqMain > .right > .question > div:nth-of-type(3) > .answer {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: visibility 0s, opacity 0.5s ease, max-height 0.2s ease;
}

.faqMain > .right > .question > div:nth-of-type(3) > .answer.visible {
    visibility: visible;
    opacity: 1;
    max-height: 500px; /* Adjust as needed */
}

/* ################## MOBILE STYLING ###################### */

.faqMobile > .faqMain > .left {
    width: 100%;
    margin-left: 10%;
}

.faqMobile > .faqMain > .left > p:nth-of-type(3) {
    text-align: center;
    width: 100%;
}

.faqMobile > .faqMain > .left > p:nth-of-type(1),
.faqMobile > .faqMain > .left > p:nth-of-type(2) {
    font-family: "Oswald";
    text-align: center;
    width: 100%;
    font-size: 170%;
    font-weight: 600;
}

.faqMobile > .faqMain > .right {
    margin-top: 10%;
    width: 100%;
    margin-left: 10%;
}

.faqMobile > .faqMain > .right > .question > div:nth-of-type(2) {
    margin-top: 8%;
}


.faqMobile img {
    width: 48px; /* Set your desired width */
    height: 48px; /* Set your desired height */
    object-fit: contain; /* Ensure the image fits within the specified dimensions */
}