.section4{
	width: 100%;
	height: 100%;
}

.FAQ-CONT{
	width: 80%;
	height: 100%;
	margin-left: 10%;
	background-color: white;
}


.faq-BIgcont{
	margin-top: 1%;
	margin-left: 0%;
}

.title{
    font-size: 50px;
    text-align: left;
    margin-top: 0%;
    margin-bottom: 40px;
    color: #f5a934;
    
}


.questions-container{
    max-width: 100%;
    margin: 0 auto;
}

.question{
    border-bottom: 1px solid #fff;
}
.question button{
    width: 100%;
    background-color: #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #132c4f;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}
.question p{
    font-size: 18px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
    height: 100%;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #f5a934;
}

/*add this class when click*/
.question p.show{
    max-height: 200px; 
    opacity: 1;
    padding:0px 15px 30px 15px;
}
.question button .d-arrow.rotate{
    transform: rotate(180deg);
}

.section4-blank{
    width: 100%;
    height: 100px;
}