

.faq *{
    color: white;
}
.faq{
    width: 100%;
    background-color: var(--black2);


    padding: 20px 50px;
}
.faq h1{
    font-size: 30px;
    text-align: center;

}
.faq > p{
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
.faq-dropdowns-container{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
@media screen and (max-width: 800px){
    .faq-dropdowns-container{
        flex-direction: column;
    }
}
.faq-img{
    flex: 1;
}
.faq-img > div{
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
}


.faq-dropdowns{
    display: flex;
    flex-direction: column;

    flex: 1;
    gap: 4px;
}

.custom-panel svg{
    height: 16px;
    display: inline;
}
.custom-panel-top a{
    display: flex;
    gap: 8px;
    align-items: center;

}
.custom-panel{
    
    
    height: max-content;
}
.custom-panel-top{
    padding: 2px 14px;
    background-color: var(--black);
}
.custom-panel h4 a{
    text-decoration: none;
    font-family: "Montserrat", Verdana, sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1em;
    font-weight: 600;


}
.custom-panel h4 a p{
    transition: color 0.3s ease-in-out;
    word-break: initial;
}
.custom-panel h4 a:hover p{
    color: var(--blue2);
}
.collapse{
    background-color: var(--black2);
    width: 100%;
    padding: 0px 20px;


}
.collapsing{
    transition-duration: 0.15s;

    transition-timing-function: linear;
    padding: 0px 20px;

}
.collapse, .collapsing{
    letter-spacing: 0.01em;
    font-weight: 500;
    font-family: "Montserrat", Verdana, sans-serif;
    line-height: 1.2em;

    padding: 12px 10px;
}


@media screen and (max-width: 490px){
    .faq-img > img{
        display: none;
    }
}