@import url(../index.css);


#faq{
    height: 60vh;
}

#faq .wrapper{
    height: 50vh;
    background: #f1aeb5;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 80px;
}


.faq-questions-wrapper{
    display: flex;
    gap: 20px;
    justify-content: space-around;
    padding: 30px 0px;
}

.faq-questions-wrapper dl{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-questions-wrapper dl dt{
    height: auto;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 19px;
    margin: 20px 0px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 20px 10px;
    width: 90%;
    gap: 20px;
    display: grid;
    grid-template-columns: 80% 10%;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.help-image-1-wrapper{
    height: 500px;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
    border-radius: 25px;
    align-self: center;
}

.help-image-1-wrapper img{
    height: 100%;
    border-radius: 25px;
}

.faq-questions-wrapper dl dt svg{
    fill: #AA5F99;
    width: 100px;
    display: flex;
    align-items: center;
}

.faq-questions-wrapper dl dd{
    width: 70%;
    font-family: "Poppins", sans-serif;
    margin-left: 40px;
    font-weight: 400;
    font-size: 16px;
    text-align: justify;
}


.faq-contact-us p{
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: -30px;
    color: #AA5F99;

}

.faq-contact-us{
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 50px 0px;
}

.faq-contact-us a{
    color: white;
}

.faq-contact-us a:hover, .faq-contact-us a:active{
    color: #AA5F99;
}

.help-header h1{
    font-size: 4rem;
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
}

@media (max-width:800px) {

    .help-image-1-wrapper{
        display: none;
    }

    dl{
        display: flex;
        align-items: center;
    }
}