.about_section{
	width: 100%;
	height: auto;
	padding: 0 5%;
}

.about_section_container{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 50px;
}

.about_section_img {
	background: #fff;
	padding: 12px 12px 30px 12px; 
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	border-radius: 4px;
	display: inline-block;
	transform: rotate(-1deg); 
	transition: transform 0.3s ease;
	max-height: 350px;
	cursor: pointer;
}

.about_section_img > p{
	font-family: var(--font);
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
}

.about_section_img:hover {
	transform: rotate(0deg) scale(1.02);
}

.about_section_img > img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 2px;
	max-width: 400px;
}

.about_section_content{
	width: 50%;
}

@media screen and (max-width: 768px){
	.about_section_container{
		flex-direction: column;
	}
	
	.about_section_img > img {
		max-width: none;
	}
	
	.about_section_img {
		background: #fff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
		border-radius: 4px;
		display: inline-block;
		transform: rotate(-1deg); 
		transition: transform 0.3s ease;
		max-height: 500px;
		cursor: pointer;
	}
	
	.about_section_content{
		width: 100%;
	}
	
	.about_section_img > p{
		font-size: 18px;
	}
}

/* big heading img */
.big_heading_img{
	width: 100%;
	height: auto;
	padding: 50px 5% 50px 5%;
}

.big_heading {
	width: 100%;
	height: 100%;
	max-height: 400px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative; 
}

.big_heading > img {
	width: 100%;
	height: 100%;
	max-height: 400px;
	object-fit: cover;
	display: block;
	border-radius: 8px;

}

.big_heading::after {
	content: '';
	position: absolute;
	inset: 0; 
	background: rgba(0, 0, 0, 0.3); 
	pointer-events: none; 
	z-index: 1;
	border-radius: 10px;
}

.big_heading_content{
	width: 100%;
	position: absolute;
	bottom: 36%;
	z-index: 9;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.big_heading_text{
	width: 100%;
	height: auto;
	max-height: 60px;
}

.big_heading_text > h1{
	color: var(--white);
}

.big_heading_button {
	width: auto;
	height: auto;
	background: transparent;
	color: white !important;
	transition: 0.2s ease-in;
	z-index: 2; 
	font-weight: bold;
}

.big_heading_button > a {
	text-decoration: none !important;
	padding: 5px 15px;
	border: 2px solid white;
	color: white;
	transition: 0.2s ease-in;
	font-family: var(--font);
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s ease-in;
	position: relative;
}

.big_heading_button > a:hover {
	background: white;
	color: black;
}

.big_heading_button > a:hover::after {
	opacity: 1;
}

@media screen and (max-width: 768px){
	.big_heading_img{
		padding: 0 5% 50px 5%;
	}
}

@media screen and (max-width: 678px){
	.big_heading_text > h1{
		font-size: 18px !important;
		text-align: left;
		margin-bottom: 10px;
	}
	
	.big_heading_button {
		width: 150px;
		background: transparent;
		color: white !important;
		transition: 0.2s ease-in;
		z-index: 2; 
		border: 1px solid var(--white);
	}
	
	.big_heading_button > a {
		font-size: 14px !important;
	}
	
	.big_heading_content{
		bottom: 5%;
		left: 3%;
		align-items: flex-start;
	}
}

/* big heading img */
.big_heading_img2{
	width: 100%;
	height: auto;
	padding: 50px 5% 0 5%;
	cursor: pointer;
}

.big_heading2 {
	width: 100%;
	height: 100%;
	max-height: 250px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative; 
}

.big_heading2 > img {
	width: 100%;
	height: 100%;
	max-height: 250px;
	object-fit: cover;
	display: block;
	border-radius: 8px;

}

.big_heading2::after {
	content: '';
	position: absolute;
	inset: 0; 
	background: rgba(0, 0, 0, 0.3); 
	pointer-events: none; 
	z-index: 1;
	border-radius: 10px;
}

.big_heading_content2{
	width: 100%;
	position: absolute;
	bottom: 36%;
	z-index: 9;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.big_heading_text2{
	width: 100%;
	height: auto;
	max-height: 60px;
}

.big_heading_text2 > h1{
	color: var(--white);
}

.big_heading_button2 {
	width: auto;
	height: auto;
	background: transparent;
	color: white !important;
	transition: 0.2s ease-in;
	z-index: 2; 
	font-weight: bold;
}

.big_heading_button2 > a {
	text-decoration: none !important;
	padding: 5px 15px;
	border: 2px solid white;
	color: white;
	transition: 0.2s ease-in;
	font-family: var(--font);
	font-weight: bold;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s ease-in;
	position: relative;
}

.big_heading_button2 > a:hover {
	background: white;
	color: black;
}

.big_heading_button2 > a:hover::after {
	opacity: 1;
}

@media screen and (max-width: 768px){
	.big_heading_img2{
		padding: 50px 5% 0 5%;
	}
}

@media screen and (max-width: 678px){
	.big_heading_text2 > h1{
		font-size: 18px !important;
		text-align: left;
		margin-bottom: 10px;
	}
	
	.big_heading_button2 {
		width: 150px;
		background: transparent;
		color: white !important;
		transition: 0.2s ease-in;
		z-index: 2; 
		border: 1px solid var(--white);
	}
	
	.big_heading_button2 > a {
		font-size: 14px !important;
	}
	
	.big_heading_content2{
		bottom: 5%;
		left: 3%;
		align-items: flex-start;
	}
}

/* Quotes section */
.quotes_section {
	width: 100%;
	background-color: var(--creme);
	padding: 50px 5% 0 5%;
	display: flex;
	align-items: center;
}

.quotes_headingcontainer{
	padding-bottom: 50px;
}

.quotes_headingcontainer > h1{
	margin-bottom: 25px;
}

.quotes_section_container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.grid_3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.quote_card {
	background: var(--white);
	padding: 30px 25px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 200px;
}

.quote_card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quote_text {
	font-size: 18px;
	font-style: italic;
	line-height: 1.5;
	color: #333;
	margin-bottom: 15px;
}

.quote_author {
	font-family: var(--font);
	font-weight: bold;
	color: var(--gold);
	text-align: right;
	font-size: 16px;
}

.more_quotes{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
}

.quotes_button{
	padding: 5px 15px;
	border: 2px solid black;
	color: black;
	transition: 0.2s ease-in;
	font-family: var(--font);
	font-weight: bold;
}

.quotes_button:hover{
	background: white;
	color: black;
	border-color: white;
}

@media (max-width: 768px) {
	.more_quotes{
		padding-top: 25px;
		padding-bottom: 50px;
	}
	
	.grid_3 {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.quote_text {
		font-size: 15px;
	}
}

/* Appointment card section 2 */
.appointment_section{
	width: 100%;
	height: auto;
	padding: 50px 5%;
}

.appointment_section_container{
	width: 100%;
	height: auto;
	max-width: 1200px;
	margin: 0 auto;
}

.appointment_card{
	width: 100%;
	max-height: 700px;
	height: 100%;
	display: flex;
}

.appointment_card_image{
	width: 50%;
	min-height: 100%;
}

.appointment_card_image > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.appointment_card_content{
	width: 50%;
	height: 100%;
	padding: 25px;
}

.appointment_card_content > h2{
	width: 100%;
	text-align: left;
	margin-bottom: 25px;
}

.appointment_card_button{
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	padding-top: 50px;
}

.appointment_card_button > button{
	padding: 5px 15px;
	border: 2px solid black;
	color: black;
	transition: 0.2s ease-in;
	font-family: var(--font);
	font-weight: bold;
}

.appointment_card_button > button:hover{
	background: black;
	color: white;
}

@media screen and (max-width: 768px){
	.appointment_card_content > h2{
		font-size: 30px !important;
	}
	
	.appointment_section{
		width: 100%;
		height: auto;
		padding: 0 5% 50px 5%;
	}
}

@media screen and (max-width: 550px){
	.appointment_card{
		display: flex;
		flex-direction: column;
	}
	
	.appointment_card_content{
		width: 100%;
	}
	
	.appointment_card_image{
		width: 100%;
		min-height: 50%;
	}
}