.section3{
	width: 100%;
	height: 100%;
}

.section3-top{
	width: 62%;
	height: 100%;
	margin-top: 10%;
	margin-left:15%; 
}

.section3-top img{
	width: 100%;
	height: auto;
}

.section3-top h1{
	color: #081467;
	font-size: 36px;
}

.section3-top hr{
	margin-top: 1%;
	width: 150px;
	border: 3px solid #fc9206;
}

.section3-top #section3-top-p1{
	margin-top: 3%;
	font-size: 19px;
	line-height: 30px;
}

.section3-top #section3-top-p2{
	margin-top: 4%;
	font-size: 19px;
	line-height: 30px;
}

.section3-card-cont{
	width: 100%;
    margin-top: 10%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
	gap: 20px;
}

.section3-card{
	width: 100%;
	height: 100%;
}

.section3-card img{
	width: 40%;
	margin-left: 20%;
}

.section3-card h1{
	color: #081467;
	margin-top: 3%;
	font-size: 23px;
	font-weight: 600;
	font-family: sans-serif;
}

.section3-card p{
	color:#605d5d;
	font-size: 18px;
	margin-top: 3%;
}

.section3-end{
	width: 62%;
	height: 100%;
	margin-top: 5%;
	margin-left:15%; 
}

.section3-end h1{
	color: #081467;
	font-size: 36px;
}

.section3-end hr{
	margin-top: 1%;
	width: 150px;
	border: 3px solid #fc9206;
}

.section3-end #section3-end-p1{
	margin-top: 3%;
	font-size: 18px;
	line-height: 30px;
}

.section3-end #section3-end-p2{
	margin-top: 3%;
	font-size: 18px;
	line-height: 30px;
}

.section3-end-card-cont{
	width: 100%;
    margin-top: 5%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
	gap:0px 5px;
}

.section3-end-card {
	width: 100%;
	height: 100%;
}

.section3-end-card img{
	width: 100%;
}


.FAQ-CONT{
	width: 100%;
	height: 100%;
	background-color: white;
}


.faq-BIgcont{
	margin-top: 3%;
	margin-left: 0%;
}

.title{
    font-size: 50px;
    text-align: left;
    margin-top: 0%;
    margin-bottom: 40px;
    color: #1e3d5a;
    
}


.questions-container{
    max-width: 100%;
    margin: 0 auto;
}

.question{
    border-bottom: 1px solid #fff;
}
.question button{
    width: 100%;
    background-color: #eef3f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    border:none;
    outline: none;
    font-size: 22px;
    color: #1e3d5a;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}
.question p{
    font-size: 22px;
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #fff;
}

/*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);
}