/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Kiddin - Kindergarten & Preschool HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Programs css
07. Our Features css
08. Why Choose Us css
09. Our Team css
10. Our Pricing css
11. Our Gallery css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Blog Archive css
19. Blog Single css
20. Programs Page css
21. Program Single css
22. Team Page css
23. Team Single css
24. Pricing Page css
25. Testimonials Page css
26. Image Gallery css
27. Video Gallery css
28. FAQs Page css
29. Contact Us Page css
30. 404 Error Page css
31. Responsive css
32.	Home - Version 2 css
33. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #00b9a7;
	--secondary-color: #EDFEFC;
	--bg-color: #FEF7EC;
	--text-color: #4E535E;
	--accent-color: #ffc000;
	--accent-secondary-color: #125875;
	--white-color: #FFFFFF;
	--divider-color: #1018281A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: #ffc000;
	--default-font: "DM Sans", sans-serif;
	--accent-font: "TikTok Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--white-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 100px;
	padding: 17px 58px 17px 24px;
	border: none;
	overflow: hidden;
	outline: none;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	width: 24px;
	height: 24px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(0, -50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover:before {
	transform: translate(2px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	border-radius: 100px;
	transition: 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
	filter: brightness(0) invert(0);
}

.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 2px 34px 2px 0;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--accent-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	background-color: var(--accent-color);
	border-radius: 50%;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 14px auto;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(0deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.bg-section {
	width: 100%;
	max-width: 1880px;
	background: linear-gradient(321deg, var(--secondary-color) 1.2%, var(--bg-color) 98.98%);
	border-radius: 20px;
	margin: 0 auto;
}

@media only screen and (max-width: 1880px) {
	.bg-section {
		width: calc(100% - 40px);
	}
}

.bg-section .container-fluid {
	padding: 0;
}

.dark-section {
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.section-row {
	margin-bottom: 40px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	/* max-width: 800px; */
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 17px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	color: #ffc000;
	border: 1px solid #0000001a;
	border-radius: 100px;
	padding: 6px 15px;
	margin-bottom: 15px;
}

/* .section-title h3::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-sparkle.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 12px;
	height: 12px;
} */

.section-title h1 {
	font-size: 48px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 0;

}

.section-title h2 {
	font-size: 37px;
	letter-spacing: -0.02em;
	margin-bottom: 0;

}

.section-title p {
	margin-top: 10px;
	margin-bottom: 0;
}

.dark-section .section-title h3 {
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	    03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	max-width: 100%;
	top: 0;
	background: #fff;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	width: 100%;
	/* background: #000000; */
	border-bottom: 1px solid var(--dark-divider-color);
	border-radius: 0px;
}

.navbar {
	padding: 12px 15px;
	align-items: center;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	padding: 12px 10px !important;
	color: #000;
	background: transparent;
	border-radius: 0px;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #00b9a7;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: #212121;
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--primary-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}


/************************************/
/***    26. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 60px 0px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}



.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.895;
	object-fit: cover;
	border-radius: 20px;
}

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 45px 15px 15px;
	}

	.btn-default::before {
		right: 15px;
		width: 20px;
		height: 20px;
	}

	header.main-header {
		top: 0px;
	}

	header.main-header .header-sticky {
		width: 100%;
	}

	header.main-header .header-sticky.active {
		width: 100%;
		border-radius: 0;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section {
		width: 100%;
		border-radius: 0;
		margin: 0;
	}

	.bg-section .container-fluid {
		padding: 0 15px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title h1 {
		font-size: 54px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.hero {
		min-height: initial;
		padding: 170px 0 80px;
	}
}

/*===================================
Kids Review Section
===================================*/

.kids-review-section {
	position: relative;
	overflow: hidden;
	background: #f7f5fc;
}

/* Slider */

.kidsReviewSlider {
	padding-bottom: 60px;
}

/* Card */

.kids-review-card {
	position: relative;
	background: #fff;
	border-radius: 30px;
	padding: 22px;
	overflow: hidden;
	transition: 0.4s ease;
	border: 1px solid rgba(123, 48, 193, 0.08);
	box-shadow: 0 15px 40px rgba(123, 48, 193, 0.08);
	height: 100%;
	margin-bottom: 30px;
}

.kids-review-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(123, 48, 193, 0.16);
}

/* Top */

.review-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 25px;
}

/* User */

.review-user {
	display: flex;
	align-items: center;
	gap: 15px;
}

.review-user-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: linear-gradient(135deg, #ffc000, #00b9a7);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 25px rgba(123, 48, 193, 0.18);
}

.review-user-icon.female {
	background: linear-gradient(135deg, #ffc000, #00b9a7);
}

.review-user-icon i {
	color: #fff;
	font-size: 28px;
}

.review-user-info h4 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #2d2142;
}

.review-user-info span {
	color: #ffc000;
	font-size: 14px;
	font-weight: 500;
}

/* Rating */

.review-rating {
	display: flex;
	gap: 4px;
}

.review-rating i {
	color: #ffb800;
	font-size: 14px;
}

/* Text */

.kids-review-card p {
	color: #555;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 0;
	position: relative;
	z-index: 2;
}

/* Quote */

.quote-bg {
	position: absolute;
	right: 25px;
	bottom: 10px;
	opacity: 0.06;
}

.quote-bg i {
	font-size: 90px;
	color: #00b9a7;
}

/* Pagination */

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #d7c5ee;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	width: 32px;
	border-radius: 20px;
	background: #00b9a7;
}

/* Responsive */

@media(max-width:991px) {

	.kids-review-title h2 {
		font-size: 38px;
	}
}

@media(max-width:767px) {

	.kids-review-title h2 {
		font-size: 30px;
	}

	.kids-review-title p {
		font-size: 15px;
	}

	.kids-review-card {
		padding: 28px 22px;
	}

	.review-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.review-user-info h4 {
		font-size: 18px;
	}

	.kids-review-card p {
		font-size: 15px;
	}
}

/*===================================
Happy Learning Section
===================================*/

.happy-learning-section {
	background: #f8f7fc;
	position: relative;
	overflow: hidden;
}

/* Heading */

.happy-learning-heading span {
	color: #ffc000;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.happy-learning-heading h2 {
	font-size: 48px;
	font-weight: 700;
	color: #00b9a7;
	margin: 15px 0;
}

.happy-learning-heading h2 span {
	color: #ffc000;
}

.happy-learning-heading p {
	max-width: 720px;
	margin: auto;
	color: #666;
	font-size: 17px;
	line-height: 1.8;
}

/* Card */

.happy-activity-card {
	background: #fff;
	border-radius: 24px;
	padding: 16px 12px;
	text-align: center;
	transition: 0.4s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(123, 48, 193, 0.78);
	box-shadow: 0 10px 25px rgba(123, 48, 193, 0.2);
}

.happy-activity-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(123, 48, 193, 0.15);
}

/* Top Border */

.happy-activity-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #00b9a7, #00b9a7);
}

/* Icon */

.activity-icon {
	width: 66px;
	height: 60px;
	margin: 0 auto 12px;
	border-radius: 10px;
	background: linear-gradient(135deg, #ffc000, #ffc000);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 30px rgba(123, 48, 193, 0.15);
}

.activity-icon i {
	color: #fff;
	font-size: 29px;
}

/* Text */

.happy-activity-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #2d2142;
	line-height: normal;
	margin: 0;
}

/* Responsive */

@media(max-width:991px) {

	.happy-learning-heading h2 {
		font-size: 38px;
	}
}

@media(max-width:767px) {

	.happy-learning-heading h2 {
		font-size: 30px;
	}

	.happy-learning-heading p {
		font-size: 15px;
	}

	.happy-activity-card {
		padding: 16px 10px;
	}

	.activity-icon {
		width: 53px;
		height: 53px;
	}

	.activity-icon i {
		font-size: 25px;
	}

	.happy-activity-card h4 {
		font-size: 17px;
	}
}

.about-us {
	background: #f8f7fc;
}

.about-wrapper {
	border-radius: 30px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(123, 48, 193, 0.08);
	border: 1px solid rgba(123, 48, 193, 0.08);
	position: relative;
}

/*===================================
Top Header
===================================*/

.top-header {
	position: relative;
	background: linear-gradient(90deg, #00b9a7, #00b9a7);
	padding: 8px 0;
	overflow: hidden;
}

/* Left Info */

.top-header-info {
	display: flex;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.top-header-info a,
.top-header-info span {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: 0.3s ease;
}

.top-header-info a:hover {
	color: #ffc000;
}

/* Icons */

.top-header-info i {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

/* Right Social */

.top-header-social {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.top-header-social span {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	margin-right: 5px;
}

/* Social Icons */

.top-header-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	transition: 0.4s ease;
	text-decoration: none;
}

.top-header-social a:hover {
	background: #fff;
	color: #00b9a7;
	transform: translateY(-3px);
}

/* Responsive */

@media(max-width:991px) {

	.top-header-info {
		justify-content: center;
		gap: 15px;
		margin-bottom: 15px;
	}

	.top-header-social {
		justify-content: center;
	}
}

@media(max-width:767px) {

	.top-header {
		padding: 15px 0;
	}

	.top-header-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.top-header-info a,
	.top-header-info span {
		font-size: 13px;
	}

	.top-header-social {
		margin-top: 15px;
		justify-content: flex-start;
	}
}

/************************************/
/***    29. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-content {
	margin-right: 20px;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.contact-info-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 15px 10px;
}

.contact-info-item .icon-box {
	position: relative;
	height: 43px;
	width: 43px;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	overflow: hidden;
}

.contact-info-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box:before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 21px;
	z-index: 1;
}

.contact-info-item-content {
	width: calc(100% - 65px);
}

.contact-info-item-content h3 {
	font-size: 19px;
}

.contact-info-item-content p {
	margin: 3px 0 0;
}

.contact-info-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-info-item-content p a:hover {
	color: var(--accent-color);
}

.contact-us-content-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	margin-top: 40px;
}

.contact-us-content-footer h3 {
	font-size: 20px;
}

.contact-us-content-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-us-content-footer ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.contact-us-content-footer ul li a i {
	color: inherit;
	font-size: 18px;
}

.contact-us-content-footer ul li a:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

.contact-us-form {
	background: linear-gradient(321deg, var(--secondary-color) 1.2%, var(--bg-color) 98.98%);
	border-radius: 20px;
	padding: 20px;
	border: 2px solid #cfcfcf;
}

.contact-form label {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--white-color);
	border: 1px solid #d1d1d1;
	border-radius: 10px;
	padding: 18px 20px;
	box-shadow: none;
	outline: none;

}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.google-map {
	padding: 50px 0 100px;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 430px;
	border-radius: 20px;
}

@media only screen and (max-width: 991px) {
	.page-contact-us {
		padding: 50px 0 25px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.contact-form .form-control {
		padding: 13px 15px;
	}

	.page-header {
		padding: 140px 0 50px !important;
		margin-top: 0;
	}

	.page-header-box h1 {
		font-size: 32px !important;
	}


}

@media only screen and (max-width: 767px) {
	.contact-info-item {
		width: 100%;
	}

	.contact-info-item-content h3,
	.contact-us-content-footer h3 {
		font-size: 18px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.navbar-brand img {
		width: 197px !important;
	}

}


/************************************/
/***    17. About Us Page css	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/banner-1.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 210px 0 80px;
	margin-top: 0px;
	overflow: hidden;
}

.page-header:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(16, 24, 40, 0.70) 100%, rgba(16, 24, 40, 0.70) 0%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-header-box {
	position: relative;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 42px;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 10px;
	font-weight: 500;

}

.page-header-box ol {
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.navbar-brand img {
	width: 247px;
}

.contact-info .program-content h3 {
	font-size: 20px;
	font-weight: 700;
}

.contact-info .program-content p,
.contact-info .program-content p a {
	font-size: 19px;
	font-weight: 500;
	color: #2e2e2e;
	line-height: normal;
}

.contact-info .program-content .vm-icon {
	width: 62px;
	height: 62px;
	font-size: 25px;
}