.accordions  {
    width: 60%;
    min-height: 400px;
    max-height: fit-content;
    
    margin: 0 auto;
    margin-bottom: 20px;
 
}





.accordions .c {
    position: relative;
    margin: 0 20px;
 
}



.accoridons input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: 0;
}

.accordions h1 ,h3{
    background: var(--lightRed);
    color: white;
    position: relative;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px !important;
    font-weight: bold;
    transition: 0.5s ease all !important;
}

.accordions h1:hover
 {
    scale: 1.01;
}

.accordions label::before {
    content: "";
    display: inline-block;
    border: 15px solid transparent;
    border-left: 20px solid white;
}

.accordions label {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 0.3em;
    display: flex;
    gap: 20px;
}

.accordions .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 .p p {
    padding:10px 10px ;
    font-weight: bold;
    font-size: 15px;
    color: rgb(66, 66, 66);

}

.accordions input:checked~h1 label::before {
    border-left: 15px solid transparent;
    border-top: 20px solid white;
    margin-top: 12px;
    margin-right: 10px;
}

.accordions input:checked~h1~div.p {
    max-height: fit-content;
    margin-bottom: 20px;
 
}

.accordions a {
    color: steelblue;
}


.accordions .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{
        width: 100%;
    }
    .accordions label {
        
        font-size: 0.2em;
    }
}


@media screen and (min-width:1200px) {

}