
#header{
	background-color: #fff;
	padding: 20px 50px;
}
#main{
	position: relative;
	margin-top: 80px;
}

.main__about{
	width: 100%;
	max-width: 1400px;
	margin: auto;
	display: flex;
	min-height: 80vh;
	align-items: center;
	padding: 10px 70px;
}
.main__about-title{
	color: #fff;
	font-size: 1.4em;
	text-align: center;
	font-weight: 600;
}

.main__about-card--cont{
	width: 100%;
	max-width: 1400px;
	margin: auto;
	padding: 10px;
	margin-top: -90px;
	margin-bottom: 90px;
}
.main__about--card{
	padding: 70px;
	background-color: var(--color-three);
	min-height: 400px;
	border-radius: 15px;
	color: #fff;
	font-size: 1.15em;
}
.main__about--card p{
	font-weight: 300;
	line-height: 22px;
}

.main__section-about--title{
	width: 58%;
}

.frequently-cont{
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1400px;
	margin: auto;
	width: 100%;
	gap:50px;
	row-gap: 10px;
}

.frequently-container{
	display: flex;
	flex-direction: column;
}
.frequently-item{
	display: flex;
	flex-direction: column;
}
.frequently-header{
	font-size: 1.1em;
	display: flex;
	justify-content: space-between;
	padding: 20px 30px;
	align-items: center;
	color: var(--color-three);
	border-radius: 35px;
	background-color: #9993;
	cursor: pointer;
}
.frequently-header img{
	height: 15px;
	object-fit: cover;
	transition: all .3s;
}
.frequently-description{
	height: 0;
	overflow: hidden;
	padding: 0 20px;
	padding-left: 20px;
	margin-top: 20px;
	transition: height .3s;
}

.frequently-active .frequently-header img{
	transform: rotateZ(90deg);
}
.frequently-active .frequently-description{
	height: 100%;
	max-height: 300px;
	overflow-y: auto;
	margin: 20px 0;
}
.frequently-active .frequently-description p{
	line-height: 25px;
	font-weight: 500;
}


.read-more{
	display: none;
}
@media (max-width:965px){
	.only-desktop{
		display: none;
	}
	.main__about{
		min-height: 60vh;
		background:url(../../assets/media/img/About/dr-ak-pillay-banner.png);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 70% 50%;
		background-color: var(--color-four);
		padding: 10px;
	}
	.main__about-title{
		font-size: .8em;
		margin-bottom: 50px;
	}
	.main-background{
		height: 50vh;
		display: none;
	}
	.not-more{
		display: none;
	}
	.main__about--card{
		padding: 40px;
	}
	.read-more{
		display: block;
		cursor: pointer;
	}
	.main__about--card p{
		font-size: 16px;
	}
	.only-phone{
		display: block;
	}
	.main__banner{
		height: 350px;
	}
	.main__banner img{
		object-fit: fill;
	}
	.main__section-about--title{
		width: 80%;
	}
	.main__section-about--intro{
		font-size: 16px;
	}
	.frequently-cont{
		grid-template-columns: 1fr;
		padding: 20px;
	}
	.frequently-header{
		font-size: .9em;
	}
	.asked-phone{
		width: 90% !important;
	}
}

@media (max-width:450px){
	.main__section-about--title{
		font-size: 22px !important;
	}
	.main__about-title{
		font-size: .7em;
	}
}