

.all-container{

    margin: 0 auto;
    padding: 5px;
    width: 100%;
    height: 200px;
    /* background: linear-gradient(0deg, #f9f9f9 10%, #213f6d 90.1%); */

}
.all-container h2{
    color: rgb(19, 19, 19);
    position: relative;
    font-size: 56px;
    margin-top: 50px;    
    text-align: center;
}




.search-container{
    margin: auto;
    position: relative;
    width: 300px;
    height: 42px;
    border: 4px solid rgb(36, 46, 77);
    border-radius: 50px;

}

.elements-container{
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.search{
    border: none;
    height: 100%;
    padding: 0 20px;
    border-radius: 50px;
    font-size: 18px;

    color: #424242;
    font-weight: 500;
}

.search:focus{
    outline: none;
}


.container-fluid{
    width: 65%;
    margin: 10px auto;
    
}


.accordion{
    width: 100%;
    height: 80px;
    padding: 0 5px;
    border: 2px solid #d99530;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    margin: 10px 0;
    align-items: center;

}

.accordion .icon-faq{
    margin: 0 10px 0 0 ;
    width: 30px;
    display: flex;
    height: 30px;
    min-height: auto;
    text-align: center;
    justify-content: center;
    float: left;
    border-radius: 50%;
    background-color: rgb(36, 46, 77);
    transition: all .5s ease-in;
    color: #ffffff;
    --transform:rotate(315deg);

}


.activate .icon-faq{
    transform: var(--transform);
    transition: transform .3s ;
}

.accordion h5{
    font-size: 18px;
    margin: 0;
    padding: 3px 0 0 0;
    font-weight: normal;
    color: rgb(7, 10, 46) ;
}


.accordion .icon-faq i{
   line-height: 30px;
   width: 30px;
  

}


.panel-faq{
    padding: 0 15px;
    border-left: 1px solid rgb(36, 46, 77);
    margin-left: 25px;
    font-size: 18px;
    text-align: justify;
    overflow: hidden;
    max-height: 0;
    transition: all .5s ease-in;
}

.underline{
    background-color: yellow;
}

.not-underline{
    background-color: white;
}


@media (max-width: 860px){

    .all-container h2{
        color: rgb(19, 19, 19);
        position: relative;
        font-size: 40px;
        margin-top: 50px;    
        text-align: center;
    }
    
    .accordion h5{
        font-size: 14px;
        
    }
    
    .panel-faq{
        font-size: 12px;
    }
    

}


@media (max-width: 600px){

    .all-container h2{
        color: rgb(19, 19, 19);
        position: relative;
        font-size: 26px;
        margin-top: 50px;    
        text-align: center;
    }
    
    .accordion h5{
        font-size: 10px;
        
    }
    
    .panel-faq{
        font-size: 8px;
    }
    

}