@import url('../../../cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&amp;display=swap');

body {
	padding: 0;
	margin: 0;
	color: #4a4a4a;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.71429;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

:root {
	--white: #f9f9f9;
	--black: #36383F;
	--gray: #85888C;
}

a {
	text-decoration: none;
}

.cl {
	clear: both;
}

ul {
	list-style: none;
}

.main_header {
	color: #fff;
	background-color: transparent;
	font-weight: 600;
}

.pre_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	color: #131A28;
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid #3a2f2f24;
}

.container {
	max-width: 1250px;
	padding: 0px 15px;
	margin: 0 auto;
}

.menu-container {
	max-width: 1250px;
}

.fluid-container {
	max-width: 100%;
	padding: 0px 0px;
	margin: 0 auto;
}

.contact_info {
	font-size: 16px;
	color: #4a4a4a;
}

.contact_info ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style-type: none;
	gap: 20px;
	padding: 0;
	margin: 0;
}

.contact_info ul li i {
	color: #125e56;
	font-size: 17px;
	padding: 0 8px 0 0;
	vertical-align: baseline;
}

.social_link ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style-type: none;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.social_link ul li i {
	color: #125e56;
	font-size: 18px;
	padding: 0 5px 0 0;
	vertical-align: baseline;
}

a {
	color: #4a4a4a;
	text-decoration: none;
}

a:hover {
	color: #00B98E;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	font-weight: normal;
	margin: 0px;
	background: none;
	line-height: 1.6em;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #4a4a4a;
}

img {
	max-width: 100%;
}

.header {
	position: sticky;
	z-index: 1111;
	top: 0;
	transition: .5s;
}

nav {
	width: 100%;
}

nav .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 0px;
}

.wrapper .logo a {
	padding: 0;
	display: flex;
}

.logo img {
	max-width: 100%;
}

.wrapper .nav-links {
	display: inline-flex;
	margin: 0;
	padding: 0;
	align-items: center;
}

.nav-links li {
	list-style: none;
}

.nav-links li a {
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 9px 15px;
	transition: all 0.3s ease;
}

.nav-links li a:hover {
	background: transparent;
	color: #36cec1;
}

.nav-links .mobile-item {
	display: none;
}

.nav-links .drop-menu {
	position: absolute;
	background: #125E56;
	width: 410px;
	top: 55px;
	padding: 30px 20px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
	display: grid;
	grid-template-columns: auto auto;
	gap: 8px 15px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
	transition: all 0.3s ease;
	top: 70px;
	opacity: 1;
	visibility: visible;
}

.drop-menu li a {
	width: 100%;
	display: block;
	padding: 0 0 0 15px;
	font-weight: 400;
	border-radius: 0px;
}

.mega-box {
	position: absolute;
	left: 0;
	width: 100%;
	padding: 0 30px;
	top: 85px;
	opacity: 0;
	visibility: hidden;
}

.mega-box .content {
	background: #242526;
	padding: 25px 20px;
	display: flex;
	width: 100%;
	justify-content: space-between;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
	width: calc(25% - 30px);
	line-height: 45px;
}

.content .row img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content .row header {
	color: #f2f2f2;
	font-size: 20px;
	font-weight: 500;
}

.content .row .mega-links {
	margin-left: -40px;
	border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
	padding: 0 20px;
}

.row .mega-links li a {
	padding: 0px;
	padding: 0 20px;
	color: #d9d9d9;
	font-size: 17px;
	display: block;
}

.row .mega-links li a:hover {
	color: #f2f2f2;
}

.wrapper .btn {
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
}

.wrapper .btn.close-btn {
	position: absolute;
	right: 30px;
	top: 10px;

	/* background-color: white; */
}

@media screen and (max-width: 970px) {
	.wrapper .btn {
		display: block;
	}

	.wrapper .nav-links {
		position: fixed;
		height: 100vh;
		width: 100%;
		max-width: 350px;
		top: 0;
		left: -100%;
		background: #125E56;
		display: block;
		padding: 50px 0px;
		line-height: 50px;
		overflow-y: auto;
		transition: all 0.3s ease;
	}

	::-webkit-scrollbar {
		width: 10px;
	}

	::-webkit-scrollbar-track {
		background: #242526;
	}

	::-webkit-scrollbar-thumb {
		background: #3A3B3C;
	}

	#menu-btn:checked~.nav-links {
		left: 0%;
	}

	#menu-btn:checked~.btn.menu-btn {
		display: none;
	}

	#close-btn:checked~.btn.menu-btn {
		display: block;
	}

	.nav-links li {
		margin: 0px 10px;
		line-height: 2.5em;
	}

	.nav-links li a {
		padding: 0 5px;
		display: block;
		font-size: 16px;
	}

	.nav-links .drop-menu {
		position: static;
		opacity: 1;
		top: 65px;
		visibility: visible;
		padding-left: 0px;
		width: 100%;
		max-height: 0px;
		overflow: hidden;
		box-shadow: none;
		transition: all 0.3s ease;
	}

	#showDrop:checked~.drop-menu,
	#showMega:checked~.mega-box {
		max-height: 100%;
	}

	.nav-links .desktop-item {
		display: none;
	}

	.nav-links .mobile-item {
		display: block;
		color: #131A28;
		font-size: 16px;
		font-weight: 500;
		padding-left: 5px;
		cursor: pointer;
		border-radius: 5px;
		transition: all 0.3s ease;
	}

	.nav-links .mobile-item:hover {
		background: transparent;
		color: #32328a;
	}

	.drop-menu li {
		margin: 0;
		padding: 0 0 0 10px;
	}

	.drop-menu li a {
		border-radius: 5px;
		font-size: 16px;
		line-height: 1.4;
	}

	.mega-box {
		position: static;
		top: 65px;
		opacity: 1;
		visibility: visible;
		padding: 0 20px;
		max-height: 0px;
		overflow: hidden;
		transition: all 0.3s ease;
	}

	.mega-box .content {
		box-shadow: none;
		flex-direction: column;
		padding: 20px 20px 0 20px;
	}

	.mega-box .content .row {
		width: 100%;
		margin-bottom: 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.mega-box .content .row:nth-child(1),
	.mega-box .content .row:nth-child(2) {
		border-top: 0px;
	}

	.content .row .mega-links {
		border-left: 0px;
		padding-left: 15px;
	}

	.row .mega-links li {
		margin: 0;
	}

	.content .row header {
		font-size: 19px;
	}
}

nav input {
	display: none;
}

.nav-links li a.free_btn {
	color: #fff;
	display: inline-block;
	width: 115px;
	margin: 0 0 0 10px;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
	background: #125E56;
	padding: 13px 15px;
	box-shadow: 2px 3px 8px rgb(8 8 8 / 42%);
	font-weight: bolder;
}

.sticky {
	position: fixed;
	top: 0px;
	width: 100%;
	background: #f8f8f8;
	box-shadow: 0 8px 24px rgba(62, 62, 62, .25);
}

.slider {
	position: relative;
	overflow: hidden;
	height: 80vh;
	width: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.slide.current {
	opacity: 1;
}

.buttons button#next {
	position: absolute;
	top: 50%;
	right: 15px;
}

.buttons button#prev {
	position: absolute;
	top: 50%;
	left: 15px;
}

.buttons button {
	border: 2px solid #fff;
	background-color: transparent;
	color: #fff;
	cursor: pointer;
	padding: 13px 15px;
	border-radius: 50%;
	outline: none;
}

.buttons button:hover {
	background-color: #fff;
	color: #333;
}

.slide:first-child {
	background: url("../images/slider2.jpg") no-repeat center center/cover;
}

.slide:nth-child(2) {
	background: url('../images/slider1.jpg') no-repeat center center/cover;
}
.slide:nth-child(3) {
	background: url('../images/slider3.jpg') no-repeat center center/cover;
}
.slide:nth-child(4) {
	background: url('../images/slider.jpg') no-repeat center center/cover;
}

.banner_txt_area {
	position: relative;
	right: 0;
	left: 100px;
	top: 70px;
	background-color: #fafafaaf;
	width: 350px;
	padding: 30px;
	box-shadow: 0 8px 24px rgba(62, 62, 62, .25);
	border-radius: 20px;
}

.banner_head_1 {
	font-size: 32px;
	font-weight: 500;
	line-height: 2em;
}

.banner_head_2 {
	font-size: 30px;
	font-weight: 500;
	line-height: 2em;
}

.banner_head_2 span {
	color: #125E56;
	font-size: 50px;
}

.banner_head_3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 1.8em;
}

.banner_head_3 span {
	color: #125E56;
	font-size: 40px;
}

.banner_head_4 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.8em;
}

.banner_head_4 span {
	color: #125E56;
	font-size: 30px;
}

.banner_head_5 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.8em;
	color: #125E56;
}

.packg_txt_area {
	position: relative;
	right: 0px;
	left: 800px;
	top: 50px;
	background-color: #fafafaa1;
	width: 400px;
	padding: 30px;
	box-shadow: 0 8px 24px rgba(62, 62, 62, .25);
}

.packg_head_1 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5em;
}

.packg_head_2 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5em;
}

.packg_head_2 span {
	color: #125E56;
	font-size: 32px;
}

.packg_head_3 {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.8em;
}

.packg_head_3 span {
	color: #125E56;
	font-size: 32px;
}

.packg_head_4 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.8em;
	background: #0C463E;
	width: 310px;
	padding: 0 0 0 20px;
	color: #fff;
	margin: 0 0 4px 0;
}

.packg_head_5 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.8em;
	background: #0C463E;
	width: 310px;
	padding: 0 0 0 20px;
	color: #fff;
	margin: 0 0 4px 0;
}

.packg_head_6 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.8em;
	background: #0C463E;
	width: 310px;
	padding: 0 0 0 20px;
	color: #fff;
	margin: 0 0 4px 0;
}

.packg_head_7 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.8em;
	background: #0C463E;
	width: 310px;
	padding: 0 0 0 20px;
	color: #fff;
}

.program_container {
	margin: 80px 0 0 0;
}

.program_heading {
	margin: 0 0 40px 0;
}

.program_heading h1 {
	color: #125E56;
	text-align: center;
	border-left: 2px solid #125E56;
	width: fit-content;
	padding: 0 0 0 15px;
	font-size: 18px;
	margin: 0 auto;
	font-weight: 500;
}

.program_heading h2 {
	text-align: center;
	padding: 10px 0 5px 0px;
	font-size: 30px;
}

.program_box {
	background: #f8f8f8;
	padding: 30px;
	flex-basis: 340px;
	flex-shrink: 0;
	flex-grow: 0;
}

.program_area {
	display: flex;
	align-items: center;
	gap: 30px;
}

.prog_num {
	font-size: 36px;
	line-height: 44px;
	text-align: center;
	opacity: 0.8;
	-webkit-text-stroke-width: 2px;
	color: #125E56;
}

.prog_img {
	margin: 20px 0 0 0;
}

.prog_img img {
	box-shadow: 0 8px 24px rgba(62, 62, 62, .25);
	margin: 0 auto;
	display: block;
}

.prog_txt {
	text-align: left;
	margin: 30px 0 0 0;
}

.prog_txt p {
	color: #6c6c6c;
}

.about_container {
	margin: 65px 0 0 0;
}

.about_area {
	display: grid;
	grid-template-columns: 550px auto;
	gap: 0px;
	align-items: center;
}

.about_txt {
	background: #f8f8f8;
	padding: 50px 40px;
}

.about_small_head {
	color: #4a4a4a;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
}

.about_txt h2 {
	font-size: 36px;
	margin: 0px 0 30px 0;
	color: #125E56;
	font-weight: 500;
	text-shadow: 1px 1px black;
}

.about_img img {
	width: 100%;
}

.about_txt p {
	margin: 0;
}

.text-center {
	text-align: center;
}

.m-0 {
	margin: 0;
}

.bf_container {
	margin: 80px 0 0 0;
}

.bf_head {
	font-size: 32px;
	margin: 0 0 15px 0;
	text-align: center;
	font-weight: 500;
	line-height: 1.5em;
	color: #4a4a4a;
}

.bf_head span {
	color: #125E56;
	font-weight: 500;
	text-shadow: 1px 1px black;
}

.testimonial_container {
	margin: 80px 0 0 0;
}

.testimonial_container h2 {
	font-size: 2rem;
}

.rating-box {
	margin: 30px 0 50px 0;
	font-size: 26px;
	line-height: 42px;
	font-weight: 600;
	color: #125E56;
	text-align: center;
}

.rating-box .rating-number {
	font-size: 61px;
	line-height: 1em;
	font-weight: 600;
	color: #125E56;
}

.star-rating {
	color: #1e76bd;
	line-height: 1em;
	margin: 0 0 10px 0;
}

.testimonial-carousel {
	display: flex;
	padding: 0px 0px;
	gap: 30px;
}

.rounded {
	border-radius: 5px;
}

.bg-white {
	background-color: #f8f8f8;
	padding: 5px 20px 20px 20px;
}

.rating_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ggl-rating {
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	justify-content: center;
	margin: 0px 0 0 0;
	gap: 5px;
}

.image-icon {
	width: 25px;
	line-height: 0;
}

.rating-icon {
	line-height: 0;
}

.rating-icon img {
	width: 80px;
}

.ggl-rating .image-icon img {
	max-width: 100%;
}

.testi_cntr {
	color: #4a4a4a;
	display: block;
	border: 2px solid #4a4a4a;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
	padding: 10px 15px;
	font-weight: 500;
	background: #f8f8f8;
	margin: 0 auto;
	width: fit-content;
	margin-top: 40px;
}

.vid_container {
	margin: 80px 0 0 0;
}

.vid_area {
	display: grid;
	grid-template-columns: 800px auto;
	gap: 30px;
}

.vid_box iframe {
	width: 100%;
	height: 450px;
}

.vid_box {
	line-height: 0;
}

.vid_head {
	font-size: 30px;
	padding: 0;
	margin: 0px 0 30px 0;
	text-align: left;
	font-weight: 600;
}

.about_btn a.free_btn {
	color: #4a4a4a;
	display: inline-block;
	width: auto;
	margin: 0 0 0 10px;
	border: 2px solid #4a4a4a;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
	padding: 10px 15px;
	font-weight: 500;
	background: #f8f8f8;
}

.about_btn {
	margin: 5px 0 0 0;
	text-align: center;
}

.counter_area {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 0px;
	gap: 30px 0;
}

.counter_area>div {
	border-width: 0 1px 0px 0;
	border-style: solid;
	border-color: #e1e1e1cf;
}

.counter_area .h_4 {
	font-weight: 500;
	text-align: center;
	font-size: 35px;
	color: #125E56;
	text-shadow: 1px 1px black;
}

.counter_area p {
	margin: 0;
	text-align: center;
	font-size: 16px;
	color: #4a4a4a;
}

.vid_img {
	background: #f8f8f8;
	padding: 40px 30px;
}

.vid_btn {
	color: #4a4a4a;
	display: block;
	border: 2px solid #4a4a4a;
	text-transform: uppercase;
	font-size: 15px;
	text-align: left;
	padding: 10px 15px;
	font-weight: 500;
	background: #f8f8f8;
	width: fit-content;
	margin-top: 40px;
}

.enq_quick_area {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0px 0 0px 0;
}

.enq_quick_area input,
.frm_drp {
	max-width: 170px;
	margin: 0 !important;
	color: #4F4F4F !important;
	height: 50px !important;
	border: 1px solid #d7d4d4 !important;
	border-radius: 4px;
	font-size: 14px;
	padding: 0 0px 0 15px;
	background: #fff;
}

.enq_quick_area button {
	max-width: 130px;
}

.btn_style {
	color: #fff;
	background: linear-gradient(120deg, #125E56 0%, #125E56 100%) !important;
	border-color: #2e6da4;
	width: 100%;
	box-shadow: none;
	margin: 0 5px 0 5px;
	display: inline-block;
	padding: 10px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.9;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	text-transform: uppercase;
}

.service_container {
	margin: 80px 0 0 0;
}

.service_heading {
	display: grid;
	align-items: center;
	justify-content: space-between;
	grid-template-columns: 600px auto;
	gap: 30px;
}

.service_head {
	font-size: 30px;
	font-weight: 600;
}

.service_area {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px 30px;
	margin: 60px 0 0 0;
}

.service_box h2 {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	margin: 15px 0 0 0;
	text-align: left;
}

.enq_container {
	margin: 80px 0 0 0;
}

.g_7 {
	display: grid;
	align-items: center;
	justify-content: center;
	gap: 50px;
	grid-template-columns: 600px 600px;
}

.ft_form_area {
	background: #f9f9f9;
	display: flex;
	gap: 25px;
	align-items: center;
	margin: 30px 0 0 0;
}

.bg_gray .g-3 {
	display: grid;
	grid-template-columns: 220px 220px;
	gap: 15px;
}

.bg_gray form .form-control {
	width: 200px;
	background-color: #fff;
}

.form-control {
	display: block;
	width: 255px;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #666565;
	background-color: #f9f9f9;
	background-clip: padding-box;
	border: 0;
	appearance: none;
	border-radius: 5px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	font-family: 'Poppins', sans-serif;
	height: 45px;
}

.bg_gray .g-3 .col_12 {
	grid-column: 1 / span 2;
}

.text_area {
	height: 80px;
	width: 95% !important;
}

.get_captcha_area {
	padding: 0 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 15px 0 0px 0;
	gap: 15px;
}

.get_captcha_area img {
	width: 210px;
	max-width: inherit;
	vertical-align: middle;
}

.captcha_input {
	width: 160px !important;
}

.enq_form {
	background: #f8f8f8;
	padding: 60px 50px;
	display: grid;
	align-items: center;
	justify-content: center;
}

.enq_form .h_4 {
	color: #125E56;
	text-align: left;
	border-left: 2px solid #125E56;
	width: fit-content;
	padding: 0 0 0 15px;
	font-size: 18px;
	font-weight: 500;
}

.enq_form .h_5 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 600;
	margin: 10px 0 0 0;
	color: #4a4a4a;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #FFFFFF;
}

.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #666565;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: 1px solid transparent;
	background-color: #125E56;
	border-color: #125E56;
	padding: 12px 15px;
	font-size: 1rem;
	border-radius: 5px;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.main-footer {
	position: relative;
	padding: 60px 0px 0px;
	background-color: #125e56;
	color: #fff;
	margin: 80px 0 0 0;
}

.footer_area {
	display: grid;
	align-items: flex-start;
	justify-content: space-between;
	grid-template-columns: 350px 840px;
	gap: 60px;
}

.ft_social_link ul {
	display: flex;
	gap: 30px;
	padding: 0;
	margin: 20px 0 0 0;
}

.ft_social_link ul li a {
	color: #fff;
}

.footer_links {
	display: grid;
	grid-template-columns: 205px 225px 310px;
	gap: 50px;
}

.footer_links .h_5 {
	font-size: 20px;
	margin: 0 0 20px 0;
	color: #fff;
	width: fit-content;
	padding: 0px 0;
	font-weight: 700;
}

.footer_links ul {
	margin: 0;
	padding: 0;
}

.list {
	list-style-type: none;
	line-height: 2.2em;
	padding: 0;
	margin: 0;
}

.bull_cir {
	color: #fff;
	font-size: 20px;
	vertical-align: middle;
	padding: 0 5px 0 0;
}

.footer_links li a {
	color: #fff;
}

.list-style-one {
	list-style-type: none;
	line-height: 2.2em;
	padding: 0;
	color: #fff;
	text-indent: -20px;
	margin-left: 0;
}

.list-style-one li i {
	font-size: 20px;
	color: #fff;
	margin: 0 10px 0 0;
}

.read-less-location {
	width: 100%;
	padding: 40px 0px 40px 0px;
	text-align: justify;
	float: left;
}

.read-less-location .h_6 {
	margin: 0px 0 10px 0;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	text-align: justify;
	font-size: 15px;
}

.footer_text {
	font-size: 14px;
	color: #fff;
	line-height: 31px;
	float: left;
	text-decoration: none;
	margin: 0 0px 0 0px;
	padding: 0 4px 0 4px;
}

.read-less-location a.loc-read {
	font-size: 14px;
	color: #fff;
	line-height: 31px;
	padding: 0 0 0 6px;
	margin: 0 0 0 0px;
	font-weight: 500;
	text-decoration: none;
	text-align: justify;
}

.footer-bottom {
	background: #083e39;
	padding: 20px 0;
}

.copyright {
	font-size: 14px;
	color: #fff;
}

.copyright a {
	color: #fff;
}

.service_head_area ul {
	padding: 0;
	margin: 0;
	display: flex;
	gap: 5px;
}

.first_li a {
	color: #125E56;
}

.service_head_area ul>li+li:before {
	padding: 0 5px;
	color: #b5b5b5;
	content: "/\00a0";
	font-size: 12px;
}

.enq_img_small {
	color: #125E56;
	text-align: left;
	border-left: 2px solid #125E56;
	width: fit-content;
	padding: 0 0 0 15px;
	font-size: 18px;
	font-weight: 500;
}

.enq_img_big {
	font-size: 30px;
	font-weight: 600;
}

.enq_img_icon {
	display: flex;
	gap: 15px;
	margin: 50px 0 0 0;
}

.drop_menu_2 {
	width: 200px !important;
}

.mbl_banner {
	display: none;
}

.testimonial-item p a {
	color: #000099;
	font-weight: 600;
}

.testimonial-item {
	flex-basis: 290px;
	flex-shrink: 0;
	flex-grow: 0;
}

.owl-nav {
	display: none;
}

.testimonial-item p {
	color: #000;
}

.lochead {
	margin: 15px 0 0px 0;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	text-align: justify;
	font-size: 15px;
}

.fixed-tel {
	position: fixed;
	bottom: 100px;
	right: 5px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	z-index: 9999;
	text-align: center;
}

.fixed-tel:before {
	content: "";
	width: 45px;
	height: 45px;
	background-color: #00a505;
	position: absolute;
	border-radius: 100%;
	box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
	z-index: 1;
	top: 0;
	left: 0;
}

.fixed-tel i {
	vertical-align: middle;
	z-index: 2;
	position: relative;
	color: #fff;
	font-size: 1.5rem;
}

.fixed-whatsapp {
	position: fixed;
	bottom: 155px;
	right: 5px;
	width: 45px;
	height: 45px;
	line-height: 44px;
	z-index: 9999;
	text-align: center;
}

.fixed-whatsapp:before {
	content: "";
	width: 45px;
	height: 45px;
	background-color: #00a505;
	position: absolute;
	border-radius: 100%;
	box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
	z-index: 1;
	top: 0;
	left: 0;
}

.fixed-whatsapp i {
	vertical-align: middle;
	z-index: 2;
	position: relative;
	color: #fff;
	font-size: 2rem;
}

.stt {
	position: fixed;
	right: 0.5rem;
	bottom: 1rem;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background: rgb(254, 243, 247) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z'%3E%3C/path%3E%3C/svg%3E") center no-repeat;
	box-shadow: 0 0.25rem 0.5rem 0 gray;
	opacity: 0.7;
	background-size: 20px;
}

.stt:hover {
	opacity: 0.8;
}

.stt:focus {
	opacity: 0.9;
}

.stt:active {
	opacity: 1;
}

.inner_banner {
	padding: 0px 0;
	margin: 0 0 -20px 0;
}

.inner_banner_area {
	display: grid;
	grid-template-columns: auto;
	align-items: center;
	justify-content: center;
	background: linear-gradient(120deg, #125E56 0, #25998c 100%);
	padding: 80px 50px;
	gap: 20px;
}

.hone_area {
	width: 100%;
}

.inner_banner_area h1 {
	font-size: 25px;
	font-weight: 500;
	color: #fff;
	text-align: center;
}

.hone_btn_area {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
}

.hone_btn_col {
	display: flex;
	gap: 10px;
}

.hone_btn_list ul {
	margin: 0;
	padding: 0;
	color: #fff;
}

.hone_btn_list ul a {
	border-bottom: 1px solid #fff;
	color: #fff;
}

.space_btw {
	margin: 40px 0;
}

.line_divide {
	border-top: 1px solid #ebebeb;
	margin: 30px 0 20px 0;
}

.small_txt {
	font-size: 14px;
}

.paragraph_container {
	margin: 40px 0 0px 0;
}

.para_btn a {
	color: #4a4a4a;
	display: inline-block;
	width: 150px;
	padding: 10px 0;
	margin: 30px 0 0 0px;
	border: 2px solid #4a4a4a;
	text-transform: uppercase;
	font-size: 15px;
	text-align: center;
	background: #f8f8f8;
}

.clr_green {
	color: #4a4a4a;
	font-weight: 800;
}

.paragraph_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e7e7e7;
	padding: 0px 0 10px 0;
	margin: 0 0 50px 0;
}

.media_btn i {
	background: #125E56;
	color: #fff;
	padding: 9px 8px;
	vertical-align: middle;
	font-size: 10px;
	margin: 0 0 0 5px;
	border-radius: 13px;
}

.rvw_container {
	margin: 80px 0 0 0;
}

.rvw_area {
	display: grid;
	grid-template-columns: auto auto;
	gap: 30px;
}

.dslc-text-module-content {
	background: #f8f8f8;
	position: relative;
	padding: 30px 18px;
	margin-bottom: 24px;
	border-radius: 3px;
	margin-top: 0px;
}

.dslc-text-module-content p:before {
	content: '"';
	color: #125e56;
	font-size: 40px;
	height: auto;
	width: auto;
	top: 0px;
	left: 0px;
}

.dslc-text-module-content p:after {
	content: '"';
	color: #125e56;
	font-size: 40px;
	height: auto;
	width: auto;
	top: 0px;
	left: 0px;
}

.dslc-text-module-content p:last-of-type {
	padding: 20px 0 0 0;
	margin: 0 0 10px;
	color: #b70000 !important;
	font-weight: 300;
	line-height: 30px;
	text-align: justify;
	margin-top: 5px;
	font-size: 16px !important;
}

.dslc-text-module-content p {
	margin: 0;
}

.contact_container {
	margin: 80px 0 0 0;
}

.contact_area {
	margin: 0px 0 0 0;
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	justify-content: space-around;
	gap: 30px;
}

.contact_txt {
	text-align: center;
	border: 1px solid #e1e1e1;
	padding: 10px 70px;
}

.contact_txt span {
	font-size: 40px;
	color: #397f9a;
}

.arr_ow {
	font-size: 25px;
}

.enq_iframe {
	height: 500px;
	width: 100%;
}

.blog_container {
	margin: 80px 0 0 0;
}

.blog_area {
	display: flex;
	gap: 45px 16px;
	flex-wrap: wrap;
}

.blog_col {
	flex-basis: 300px;
	flex-grow: 0;
	flex-shrink: 0;
}

.blog_col h2 {
	font-size: 17px;
	margin: 10px 0 0 0;
}

.blog_details_col {
	display: grid;
	grid-template-columns: auto;
	gap: 30px;
	padding: 0px 0 0 0;
}

.blog_details img {
	width: 70%;
	margin: 0 auto;
	display: block;
	margin-bottom: 50px;
}

.blog_date {
	font-size: 16px;
	font-weight: 600;
	margin: 10px 0 25px 0;
	padding: 0;
}

.blog_details h2 {
	font-weight: 600;
	font-size: 28px;
	color: #125E56;
	margin: 20px 0 0 0;
}

.pricing_container {
	margin: 80px 0 0 0;
}

.pricing_area {
	display: grid;
	grid-template-columns: auto auto;
	gap: 30px;
}

.pricing_col {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 2px solid #4a4a4a;
	padding: 40px 40px;
}

.price_small {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
}

.price_big {
	font-size: 40px;
	font-weight: 600;
	color: #7fb82d;
	line-height: 1.3;
}

.price_btn a {
	background: transparent;
	color: #4a4a4a;
	padding: 15px 30px;
	text-transform: uppercase;
	font-weight: 500;
	border: 2px solid #4a4a4a;
}

.media_container {
	margin: 80px 0 0 0;
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.tabs label {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	margin-right: 0.0625rem;
	cursor: pointer;
	background-color: #125e56;
	color: #fff;
	font-family: Roboto, sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	transition: background-color ease 0.3s;
}

.tabs label .material-icons {
	margin-right: 0.3rem;
}

.tabs .tab {
	flex-grow: 1;
	width: 100%;
	height: 100%;
	display: none;
	padding: 1rem 2rem;
	color: #000;
	background-color: #fff;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}

.tabs .tab>*:not(:last-child) {
	margin-bottom: 0.8rem;
}

.tabs [type=radio] {
	display: none;
}

.tabs [type=radio]:checked+label {
	background-color: #fff;
	color: #125e56;
	border-top: 4px solid #125e56;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}

.tabs [type=radio]:checked+label+.tab {
	display: block;
}

@media (min-width: 768px) {
	.tabs-container {
		padding: 0rem 0rem;
	}

	.tabs label {
		order: 1;
		width: auto;
	}

	.tabs .tab {
		order: 9;
	}

	.tabs [type=radio]:checked+label {
		border-bottom: none;
	}
}

@media (min-width: 992px) {
	.tabs {
		width: 100%;
	}
}

.gallery_area {
	display: grid;
	grid-template-columns: auto auto;
	gap: 20px;
}

.video_area {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 15px;
}

#dslc-theme-content-inner img {
	width: 500px;
}

.enq_quick {
	margin: 30px 0 0 0;
}

.enq_img_icon_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-basis: 300px;
	flex-grow: 0;
	flex-shrink: 0;
}

.enq_img_icon_box .vid_btn {
	margin-top: 20px;
}

.ft_logo {
	font-size: 25px;
	margin: 0 0 20px 0;
	color: #fff;
	width: fit-content;
	padding: 0px 0;
	font-weight: 700;
}

.ft_logo a {
	color: #fff;
}

.inner_gallery_area {
	display: flex;
	gap: 10px;
}

.inner_gallery_col {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 25%;
}

.inner_gallery_col img {
	aspect-ratio: 1 / 1.3;
	width: 100%;
}

.inner_gallery_head {
	font-size: 30px;
	margin: 30px 0 20px 0;
	font-weight: 500;
	line-height: 1.3;
}

.img_aspect {
	aspect-ratio: auto !important;
}

.inner_gallery_col iframe {
	height: 300px;
}

.contact_area {
	margin: 60px 0 0 0;
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	justify-content: space-around;
	gap: 30px;
}

.contact_txt {
	text-align: center;
	border: 1px solid #e1e1e1;
	padding: 10px 70px;
}

.contact_txt span {
	color: #125c55;
}

.arr_ow {
	font-size: 30px;
}

.enq_container iframe {
	height: 620px;
}

.payment_area {
	margin: 30px 0 0 0;
	display: grid;
	grid-template-columns: auto auto auto;
	align-items: center;
	justify-content: space-around;
	gap: 30px;
}

.payment_txt {
	text-align: center;
	border: 1px solid #e1e1e1;
	padding: 30px 60px;
}

.payment_txt span i {
	color: #125c55;
}

.product-info-cust {
	float: none;
	width: 100%;
	padding: 15px 10px;
	text-align: center;
	margin: 0 auto;
	background: #125e56;
	letter-spacing: 2px;
	margin-top: 20px;
}

.product-info-cust a {
	color: #fff;
}

.big_txt {
	font-size: 40px;
	margin: 0;
}

.payment_head {
	text-align: center;
	font-size: 30px;
	margin: 50px 0 0 0;
}

@media (max-width: 767px) {
	.wrapper .btn {
		color: #fff;
		background: #000000;
		border: none;
		border-radius: inherit;
	}

	.wrapper .btn {
		font-size: 20px;
		padding: 2px 12px;
	}

	.pre_header {
		flex-direction: column;
		gap: 5px;
	}

	.contact_info ul {
		text-align: center;
	}

	.enq_quick_area {
		flex-direction: column;
	}

	.program_area {
		flex-direction: column;
	}

	.program_heading h1 {
		font-size: 16px;
	}

	.program_heading h2 {
		font-size: 20px;
	}

	.prog_num {
		font-size: 30px;
	}

	.program_box {
		padding: 20px;
	}

	.bf_head {
		font-size: 20px;
	}

	.about_area {
		grid-template-columns: auto;
	}

	.about_btn {
		display: flex;
		justify-content: space-evenly;
	}

	.about_btn a.free_btn {
		margin: 0 0 0 0;
		padding: 10px 11px;
		font-size: 10px;
	}

	.about_txt {
		padding: 40px 20px;
		margin: 30px 0 0 0;
	}

	.about_small_head {
		font-size: 15px;
	}

	.about_txt h2 {
		font-size: 29px;
	}

	.testimonial_container h2 {
		font-size: 1.5rem;
	}

	.rating-box .rating-number {
		font-size: 40px;
	}

	.rating-box {
		font-size: 18px;
		margin: 30px 0 30px 0;
	}

	.testimonial-carousel {
		flex-direction: column;
	}

	.vid_area {
		grid-template-columns: auto;
	}

	.vid_box iframe {
		height: 200px;
	}

	.vid_img {
		padding: 30px 20px;
	}

	.vid_head {
		font-size: 22px;
	}

	.counter_area h4 {
		font-size: 24px;
	}

	.counter_area p {
		font-size: 14px;
	}

	.counter_area>div:nth-child(2) {
		border: none;
	}

	.counter_area>div:nth-child(4) {
		border: none;
	}

	.service_heading {
		grid-template-columns: auto;
		gap: 20px;
	}

	.service_head {
		font-size: 22px;
	}

	.service_area {
		grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
		gap: 25px 10px;
		margin: 40px 0 0 0;
	}

	.service_box img {
		width: 100%;
	}

	.service_box h2 {
		font-size: 14px;
		text-align: center;
	}

	.g_7 {
		grid-template-columns: auto;
	}

	.enq_img_small {
		font-size: 16px;
	}

	.enq_img_big {
		font-size: 22px;
	}

	.enq_img_icon {
		flex-direction: column;
	}

	.enq_icon_area {
		grid-template-columns: auto;
		margin: 30px 55px 0 55px;
		gap: 10px;
	}

	.ft_form_area {
		flex-direction: column;
	}

	.bg_gray .g-3 {
		display: flex;
		flex-direction: column;
	}

	.bg_gray form .form-control {
		width: 100%;
	}

	.footer_area {
		grid-template-columns: auto;
	}

	.footer_links {
		grid-template-columns: auto;
	}

	.dis_none {
		margin: -70px 0 0 0 !important;
	}

	.footer_links h5 {
		font-size: 18px;
	}

	.list-style-one {
		text-indent: -20px;
		margin-left: 40px !important;
	}

	.slider {
		display: none;
	}

	.mbl_banner {
		display: block;
		margin: 0 auto;
		text-align: center;
	}

	.mbl_banner img {
		width: 100%;
	}

	.buttons {
		display: none;
	}

	.enq_form {
		padding: 40px 0px;
	}

	.enq_form h4 {
		font-size: 16px;
	}

	.enq_form h5 {
		font-size: 26px;
	}

	.get_captcha_area {
		flex-direction: column;
	}

	.enq_oth_img img {
		width: auto;
		height: 100%;
	}

	body {
		font-size: 15px;
	}

	.program_container {
		margin: 60px 0 0 0;
	}

	.bf_container {
		margin: 60px 0 0 0;
	}

	.about_container {
		margin: 45px 0 0 0;
	}

	.testimonial_container {
		margin: 60px 0 0 0;
	}

	.vid_container {
		margin: 60px 0 0 0;
	}

	.service_container {
		margin: 60px 0 0 0;
	}

	.enq_container {
		margin: 60px 0 0 0;
	}

	.enq_img_icon_box_head {
		font-size: 16px;
	}

	.main-footer {
		margin: 60px 0 0 0;
	}

	.nav-links .drop-menu {
		grid-template-columns: auto;
		padding: 0;
	}

	.drop-menu li:first-child {
		padding-top: 12px;
	}

	.drop-menu li:last-child {
		padding-bottom: 12px;
	}

	.testimonial-item {
		flex-basis: 100%;
	}

	.mbl_banner .packg_txt_area {
		position: inherit;
		width: 300px;
		margin: 0 auto;
		margin-top: 30px;
		padding: 20px;
	}

	.packg_head_1 {
		font-size: 22px;
		text-align: left;
	}

	.packg_head_2 {
		font-size: 24px;
		text-align: left;
	}

	.packg_head_2 span {
		font-size: 26px;
	}

	.packg_head_3 {
		font-size: 20px;
		text-align: left;
		margin: 0 0 10px 0;
	}

	.packg_head_3 span {
		font-size: 24px;
	}

	.packg_head_4 {
		font-size: 20px;
		width: 100%;
		padding: 0 0 0 0;
	}

	.packg_head_5 {
		font-size: 20px;
		width: 100%;
		padding: 0 0 0 0;
	}

	.packg_head_6 {
		font-size: 20px;
		width: 100%;
		padding: 0 0 0 0;
	}

	.packg_head_7 {
		font-size: 20px;
		width: 100%;
		padding: 0 0 0 0;
	}

	.text_area {
		width: 100% !important;
	}

	.mbl_banner .banner_txt_area {
		position: inherit;
		width: 300px;
		margin: 0 auto;
		margin-top: 30px;
		padding: 20px;
		text-align: left;
	}

	.banner_head_1 {
		font-size: 22px;
	}

	.banner_head_2 {
		font-size: 20px;
	}

	.banner_head_2 span {
		font-size: 45px;
	}

	.banner_head_3 {
		font-size: 25px;
	}

	.banner_head_3 span {
		font-size: 35px;
	}

	.banner_head_4 {
		font-size: 22px;
	}

	.banner_head_4 span {
		font-size: 25px;
	}

	.banner_head_5 {
		font-size: 16px;
	}

	.nav-links li a.free_btn {
		margin: 15px 0 0 5px;
	}

	.inner_banner_area {
		grid-template-columns: auto;
		padding: 40px 20px;
	}

	.hone_area {
		width: 100%;
		margin: 0 0 0px 0;
	}

	.inner_banner_area h1 {
		text-align: center;
		font-size: 20px;
	}

	.hone_btn_area {
		gap: 15px;
	}

	.inner_banner_area .about_btn {
		justify-content: center;
		gap: 10px;
	}

	.paragraph_head {
		flex-direction: column;
		margin: 0 0 30px 0;
		gap: 10px;
	}

	.paragraph_txt {
		font-size: 17px;
		text-align: center;
	}

	.rvw_area {
		grid-template-columns: auto;
	}

	.contact_area {
		grid-template-columns: auto;
	}

	.enq_iframe {
		height: 290px;
	}

	.blog_area {
		flex-direction: column;
		gap: 30px;
	}

	.blog_col {
		flex-basis: 100%;
	}

	.blog_details img {
		width: 100%;
		margin-bottom: 20px;
	}

	.blog_details h2 {
		font-size: 24px;
	}

	.rvw_container {
		margin: 60px 0 0 0;
	}

	.blog_container {
		margin: 60px 0 0 0;
	}

	.pricing_container {
		margin: 60px 0 0 0;
	}

	.pricing_area {
		grid-template-columns: auto;
		padding: 0 20px;
	}

	.pricing_col {
		padding: 20px 30px 30px 30px;
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}

	.price_small {
		font-size: 17px;
	}

	.price_big {
		font-size: 35px;
	}

	.price_area {
		text-align: center;
	}

	.media_container {
		margin: 60px 0 0 0;
	}

	.gallery_area {
		grid-template-columns: auto;
	}

	.tabs .tab {
		padding: 1rem 1rem;
	}

	.video_area {
		grid-template-columns: auto;
	}

	#dslc-theme-content-inner img {
		width: 300px;
	}

	.inner_gallery_area {
		display: grid;
		grid-template-columns: auto auto;
	}

	.inner_gallery_area {
		gap: 10px;
	}

	.hone_btn_list ul a {
		font-size: 13px;
	}

	.logo img {
		max-width: 80%;
	}

	.inner_gallery_head {
		font-size: 22px;
	}

	.vid_grid {
		grid-template-columns: auto !important;
	}

	.inner_gallery_col iframe {
		width: 100%;
	}

	.contact_txt {
		padding: 10px 20px;
	}

	.enq_container iframe {
		height: 300px;
	}

	.enq_form .h_5 {
		font-size: 26px;
	}

	.payment_area {
		grid-template-columns: auto;
	}
}


.contact_txt {
	background-color: #0C463E;
	color: #fff;
}