



.accordions-faq {
    width: 60%;
    /* min-height: 900px; */
    max-height: fit-content;

    margin: 40px auto;
    margin-bottom: 20px;

}





.accordions-faq .c {
    position: relative;
    margin: 0 20px;

}

.accordions-faq .faq-question{
    font-size: 4em;
}

.accoridons input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: 0;
}

.accordions-faq .faq-question,
h3 {
   
    color: white;
    position: relative;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px !important;
    font-weight: bold;
    transition: 0.5s ease all !important;
}

.accordions-faq .faq-question:hover {
    scale: 1.01;
}

.accordions-faq label::before {
    content: "";
    display: inline-block;
    border: 15px solid transparent;
    border-left: 20px solid white;
}

.accordions-faq label {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 0.3em;
    display: flex;
    gap: 20px;
}

.accordions-faq .p {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    background-color: white;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.accordions-faq .p p {
    padding: 10px 10px;
    font-weight: bold;
    font-size: 15px;
    color: rgb(66, 66, 66);

}

.accordions-faq input:checked~.faq-question label::before {
    border-left: 15px solid transparent;
    border-top: 20px solid white;
    margin-top: 12px;
    margin-right: 10px;
}
.accordions-faq input:checked~.faq-question~div.p {
    max-height: 900px !important;
    margin-bottom: 20px;
}



.accordions-faq .flag {
    height: 30px;
    width: 50px;
    /* border-radius: 50%; */
    /* background-image: url(https://flagicons.lipis.dev/flags/4x3/al.svg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--white);
}















@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 440px) {}


@media screen and (max-width: 1300px) and (min-width : 900px) {}


@media screen and (min-width: 790px) {}


@media screen and (max-width: 790px) {
    .accordions-faq {
        width: 100%;
    }

    .accordions-faq label {

        font-size: 0.2em;
    }
}


@media screen and (min-width:1200px) {}