*{
	/* Variables for storing colors */
	--card-clr: #6c8fc781;
	--body-clr: #191d28;
	--primary-clr: #ce0c16;
	--heading-clr: #030303;
	--text-clr: #000;
}
.testimonials-section{
	width: 100%;
	padding-bottom: 50px;
}
.testimonials-section .section-header{
	max-width: 700px;
	text-align: center;
	margin: 30px auto 40px;
}
.section-header h1{
	position: relative;
	font-size: 36px;
	color: var(--primary-clr);
}
.testimonials-container{
	position: relative;
}
.testimonials-container .testimonial-card{
	padding: 20px;
}
.testimonial-card .test-card-body{
	background-color: var(--card-clr);
	/* box-shadow: 2px 2px 20px rgba(70, 48, 129, 0.35); */
    box-shadow: 0px 2px 12px rgba(81, 139, 194, 0.77);
    border-radius: 6px 6px 6px 20px;
	padding: 20px;
    min-height: 350px !important;
}
.test-card-body .quote{
	display: flex;
	align-items: center;
}
.test-card-body .quote i{
	font-size: 40px;
	color: var(--heading-clr);
	margin-right: 20px;
}
.test-card-body .quote h2{
	color: var(--heading-clr);
    font-size: 25px;
    font-weight: 600;
}
.test-card-body p{
	margin: 10px 0px 15px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-clr);
}
.test-card-body .ratings{
	margin-top: 20px;
    text-align: center;
}
.test-card-body .ratings i{
	font-size: 17px;
	color: var(--primary-clr);
	cursor: pointer;
}
.testimonial-card .profile{
	display: flex;
	align-items: center;
	margin-top: -15px;
}
.profile .profile-image{
	width: 75px;
	height: 75px;
	border-radius: 50%;
    border: 4px double #7E3B93;
	overflow: hidden;
	margin-right: 15px;
}
.profile .profile-image img{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.profile .profile-desc{
	display: flex;
	flex-direction: column;
}
.profile-desc span:nth-child(1){
	font-size: 24px;
	font-weight: bold;
    margin-top: 10px;
	color: var(--heading-clr);
}
.profile-desc span:nth-child(2){
	font-size: 16px;
    font-weight: 500;
	color: var(--text-clr);
}
.owl-nav{
	position: absolute;
	right: 20px;
	bottom: -10px;
}
.owl-nav button{
	border-radius: 50% !important;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i{
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--card-clr) !important;
	color: #9B32EF;
	cursor: pointer;
	transition: 0.4s;
}
.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover{
    background-color: #9B32EF;
	color: #e9e9e9;
}
.owl-dots{
	margin-top: 15px;
}
.owl-dots .owl-dot span{
	background-color: #434753 !important;
	padding: 6px !important;
}
.owl-dot.active span{
	background-color: #9B32EF !important;
}

/* Image Section */
img{
	max-width: 100%;
}
.gallery{
	/* background-color: #dbddf1; */
	padding: 40px 0;
}
.gallery img{
	background-color: #ffffff;
	padding: 15px;
	width: 100%;
	box-shadow: 0 0 15px rgba(0,0,0,0.4);
	cursor: pointer;
    transition: transform .2s;
}
.gallery img:hover{
    transform: scale(1.1);
}