.questions-container{
    width: 60%;
    display: block;

    margin: 0 auto;
    
}

.question{
    border: 1px solid #050A30;
    box-shadow: 0 1px 10px black;
    margin-top: 2%;

}
.question button{
    width: 100%;
    background: #050A30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color:  rgb(164 122 47);
    font-weight: 700;
    cursor: pointer;
}
.question p{
    font-size: 22px;
    max-height: 0;
    opacity: 0;
    color: white;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
    
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color:  rgb(164 122 47);}

/*add this class when click*/
.question p.show{
    max-height: 500px; 
    opacity: 1;
    padding:0px 15px 30px 15px;
}
.question button .d-arrow.rotate{
    transform: rotate(180deg);
}
@media screen and  (max-width : 1024px) {
    .row1{
        margin-bottom: 10%;
    }
    
}
.faq-three{
    height: auto;
}