/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
<style> */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
	--color-white-100: #fff;
	--color-white-200: #f2f2f2;
	--color-white-300: #d9d9d9;
	--color-white-400: #bfbfbf;
	--color-white-500: #a6a6a6;
	--color-white-600: #8c8c8c;
	--color-black-100: #191f24;
	--color-black-200: #151a1e;
	--color-black-300: #111418;
	--color-black-400: #0d0f12;
	--color-black-500: #090a0c;
	--color-black-600: #040506;
	--color-yellow-100: #F7D629;
	--color-yellow-200: #ebc922;
	--color-yellow-300: #ddbd1c;
	--color-yellow-400: #ccae17;
	--color-yellow-500: #c0a311;
	--color-yellow-600: #b3970e;
	--color-green-100: #19BD61;
	--color-green-200: #14b158;
	--color-green-300: #0fa14f;
	--color-green-400: #0c9146;
	--color-green-500: #0a803d;
	--color-green-600: #076d33;
	--text-tiny: clamp(0.84rem, calc(0.12vw + 0.8rem), 0.89rem);
	--text-small: clamp(0.93rem, calc(0.13vw + 0.91rem), 1rem);
	--text-base: clamp(1.05rem, calc(0.15vw + 1.01rem), 1.12rem);
	--text-medium: clamp(1.18rem, calc(0.17vw + 1.14rem), 1.26rem);
	--text-large: clamp(1.32rem, calc(0.19vw + 1.28rem), 1.41rem);
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

html {
	font-size: 100%;
	font-style: normal;
	scroll-behavior: smooth;
	height: -webkit-fill-available;
	font-family: "Inter", sans-serif !important;
	
}

body {
	/* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
	font-size: var(--text-base);
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-black-500);
	background-color: var(--color-white-100);
	font-family: "Inter", sans-serif !important;
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(114, 65, 65, 0.3);
	background-color: #F5F5F5;
}

body::-webkit-scrollbar {
	width: 12px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 6px #4A4B4B;
	background-color: #555;
}

main,
section {
	margin-top: 64px;
	padding: 10px;
}

a:hover,
a:active,
a.active {
	color: var(--color-green-100);
}

a,
button {
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
	border: none;
	outline: none;
	color: inherit;
	background: none;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 1.15;
	text-wrap: balance;
	word-wrap: break-word;
}

p,
li {
	text-wrap: pretty;
	line-height: inherit;
	word-wrap: break-word;
}
p{
	color: #7c7c7c;
}

img,
svg,
picture,
video {
	font-style: italic;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	shape-margin: 1rem;
	vertical-align: middle;
}

img,
svg {
	background-size: cover;
	background-repeat: no-repeat;
	image-rendering: crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
}

.w-100-px {
	width: 100px;
}

.btn-success {
	background-color: var(--color-green-100);
	border: var(--color-green-200);
	padding: 5px 15px;
}

.btn-success:active {
	background-color: var(--color-green-200);
	border: var(--color-green-200);
}

.btn-success:hover {
	color: var(--color-white-100) !important;
}

.btn-rounded {
	border-radius: 40px;
}

.btn:hover {
	background-color: var(--color-green-200);
}

.btn-outline-success {
	color: var(--color-green-100);
	border: solid 1px var(--color-green-200);
}

.btn-outline-success:hover {
	background-color: var(--color-green-200);
}

.btn-outline:active {
	background-color: var(--color-green-200);
	border: var(--color-green-200);
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: auto;
	background-color: var(--color-white-100);
	box-shadow: var(--shadow-medium);
}

.navbar {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0;
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 20%;
	height: 100%;
	gap: 10px;
	padding: 16px 15px;
}

.brand img {
	width: 130px;
}

.menu,
.search-box {
	display: flex;
}

.menu {
	gap: 20px;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: end;
}

.menu-item a:hover {
	color: var(--color-green-100);
}

.menu-item a {
	font-weight: 500;
}

.menu-item .anchor-style {
	position: relative;
	font-weight: 500;
}

.menu-item .anchor-style.active::after {
	content: "";
	display: block;
	width: 30%;
	height: 2px;
	background-color: var(--color-green-100);
	transform: .3s ease-in-out;
}

.search-box {
	border: solid 1px var(--color-green-100);
	border-radius: 25PX;
	height: 48px;

}

.search-box select {
	border-radius: 23px 0 0 23px;
	width: 30%;
	font-size: 1rem;
}

.search-group {
	display: flex;
	position: relative;
	width: 70%;
}

.search-box select {
	border: none;
	outline: none;
	padding: 10px;
	cursor: pointer;
	display: inline-block;
	position: relative;
}

.search-group input {
	border: none;
	outline: none;
	padding: 10px 10px 10px 20px;
	position: relative;
	display: inline-block;
	width: calc(100% - 46px);
}

.search-group::before {
	content: "";
	display: block;
	position: absolute;
	top: 14px;
	left: 8px;
	width: 1px;
	height: 18px;
	background-color: var(--color-green-100);
	z-index: 1;
}

.search-group button {
	color: var(--color-white-100);
	background-color: var(--color-green-100);
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: inline-block;
	text-align: center;
	padding-left: 2px;
}

.search-group button:hover {
	background-color: var(--color-green-200);
}

.navbar-block {
	width: 80%;
	padding: 10px 15px;
}
.userProfile{
	width: 46px;
    height: 46px;
    border-radius: 50%;
	border: solid 1px #ececec;
}
.userProfile img{
	width: 100%;
    height: 100%;
	border-radius: 50%;
    object-fit: cover;
}
#userProfiledropdownMenu{
	bottom: 10px;
}
.userProfiledropdownMenu{
	right: -5px;
	margin-top: 5px;
}
.userProfiledropdownMenu .dropdown-item:focus{
	background-color: var(--color-white-200);
}
.last-child-mi{
	margin-right: 20px;
}
#toast-container {
    top: 85px;
}
/* ----------------- Start Hero Section ----------------- */
#hero-section {
	margin: 0;
}

#hero-section .container {
	border-radius: 10px;
	background-color: #EAF4E5;
	padding: 20px;
}

.offer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	height: 100%;
}

.offer h1 {
	color: var(--color-green-100);
	font-weight: 800;
}

.offer span {
	color: var(--color-green-100);
	font-weight: 600;
}

.banner-slider {
	width: 100%;
	height: 340px !important;
	border-radius: 10px;
	background-color: rgb(209, 209, 209);
}

.banner-slider .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
}

.banner-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-slider .swiper-button-next:after,
.swiper-button-prev:after {
	color: var(--color-white-100);
	background: #383838b0;
	font-size: .8rem !important;
	padding: 12px 8px;
}

.banner-slider .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	background-color: var(--color-white-300);
}

/* ----------------- Start Blog Categories ----------------- */
#blog-categories {
	margin-top: 20px;
	display: flex;
	gap: 20px;
	overflow: auto;
}

.blogCategoriesSlider .blog-category {
	position: relative;
}

.blogCategoriesSlider .blog-category a {
	font-size: .8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	word-break: initial;
	text-align: center;
}

.blogCategoriesSlider .blog-category p {
	width: 100%;
}
.error{
	font-size: .9rem;
	color: red;
}
.blogCategoriesSlider .blog-category a img {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	margin-bottom: 10px;
	object-fit: fill;
	box-shadow: 0 0 3px #696969;
}
.blogCategoriesSlider .swiper-wrapper {
    padding: 2px 0 !important;
}
.blogCategoriesSlider .swiper-slide {
	position: relative;
}

.blogCategoriesSlider .swiper-slide::after {
	display: block;
	content: "";
	width: 3px;
	height: 33px;
	position: absolute;
	top: 20px;
	right: -20px;
	background-color: var(--color-white-300);
}

/* ----------------- start Institutes ----------------- */
#institutes {
	margin-top: 25px;
	position: relative;
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.section-heading span {
	color: var(--color-white-100);
	background-color: var(--color-green-100);
	padding: 2px;
	border-radius: 2px;
}

.institute-box {
	display: flex;
	border: 1px solid var(--color-white-300);
	padding: 10px;
	border-radius: 8px;
	height: 160px;
	gap: 10px;
}

.institute-box:hover {
	transition: 0.3s ease-in-out;
	/* background-color: #F6F6F6; */
	border: 1px solid var(--color-green-100);
	box-shadow: 5px 5px 0 var(--color-green-100);
}

.institute-box>.institute-logo {
	flex-basis: 35%;
}

.institute-box>.institute-detail {
	flex-basis: 65%;
	font-size: 0.7rem;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.institute-box>.institute-detail p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 0.75rem;
}

.institute-box>.institute-detail i {
	color: #626262;
}

.institute-box .institute-rating {
	display: flex;
}

.institute-box .institute-logo img {
	/* width: 100%; */
}


/* ----------------- Top Students ----------------- */
.student-container {
	text-align: center;
	background-color: #F6F6F6;
	border-radius: 10px;
	padding: 10px;
	border: 1px solid var(--color-white-300);
}

.student-container:hover {
	background-color: #F3F8FF;
}

.student-container h6 {
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.student-container span {
	font-weight: 600;
}

.student-container span,
.student-container i,
.student-container p {
	font-size: .9rem;
}

.student-container span,
.student-container i {
	color: var(--color-green-100);
}

.student-image-box img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

/* ----------------- start Top Teacher ----------------- */
.teacher-container {
	background-color: #F6F6F6;
	border-radius: 10px;
	padding: 10px;
	border: 1px solid var(--color-white-300);
}

.teacher-container:hover {
	background-color: #F3F8FF;
}

.teacher-container i {
	color: var(--color-green-100);
}

.teacher-info {
	display: flex;
	gap: 5px;
	height: 155px;
}

.teacher-img-box {
	width: 35%;
}

.teacher-img-box img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 8px;
}

.teacher-description-box {
	width: 65%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.teacher-description-box h6 {
	font-size: .85rem;
	margin-bottom: 10px;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.teacher-description-box .t-speciality {
	margin-bottom: 10px;
}

.teacher-description-box p {
	font-size: .74rem;
}

.teacher-description-box .t-speciality,
.teacher-description-box .t-address {
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.social-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: .7rem;
	margin-top: 10px;
}

.social-info p {
	margin: 0;
}

.social-info .teacher-rating {
	display: flex;
	align-items: center;
}
.social-info .teacher-rating p{
	color: var(--color-white-200);
}
.social-info .teacher-rating .color{
	color: var(--color-white-200);
}

/* ----------------- start youtube ----------------- */
.recent-lectures {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 50px;
}

.recent-lectures .lecture:nth-child(1) {
	width: 100%;
}

.recent-lectures .lecture:nth-child(1) iframe {
	height: 315px;
}

.recent-lectures .lecture {
	width: 48%;
}

.recent-lectures .lecture h5 {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: .9rem;
}

.recent-lectures .lecture p {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: .7rem;
}

.recent-lectures .lecture iframe {
	height: 120px;
}

.playlists-container {
	margin-top: 50px;
}

.playlists-container .plst-list:nth-child(1) .playlist {
	padding-top: 0;
}

.playlist {
	position: relative;
}

.back-shade {
	width: 92%;
	height: 84px;
	background-color: #9f9f9f;
	position: relative;
	top: 2px;
	left: 8px;
	border-radius: 10px;
}

.playlist {
	display: flex;
	gap: 10px;
	padding: 8px 0 8px 0;
	border-bottom: solid 1px rgb(240, 240, 240);
}

.plst-bx {
	width: 120px;
	position: relative;
}

.plst-bx img {
	position: absolute;
	top: 10px;
	width: 200px;
	border-radius: 10px;
	border: solid 1px #b9b9b9;
}

.plst-v-counter {
	position: absolute;
	bottom: 4px;
	right: 7px;
	background: #4b4b4b;
	border-radius: 3px;
	padding: 1px 5px;
	color: #ededed;
	font-size: 14px;
}

.plst-v-counter span {
	display: flex;
	align-items: center;
}

.plst-overlay {
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 77px;
	background: #00000096;
	border-radius: 10px;
	border: solid 1px #b9b9b9;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}

.plst-list:hover .plst-overlay {
	display: flex;
	font-size: 0.9rem;
}

.plst-list:hover .plst-video-title {
	text-decoration: underline;
}

.plst-video-title {
	margin-bottom: 0;
	color: #4f4f4f;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 4;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	font-size: .8rem;
}

.plt-title-container span {
	color: #7b7b7b;
	font-size: 12px;
}


/* top trending */
.trending-lecture h5 {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: .9rem;
}

.trending-lecture p {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: .7rem;
}

.trending-lecture iframe {
	height: auto;
}

.topTrendingSlider .swiper-button-next:after,
.swiper-button-prev:after {
	color: var(--color-white-100);
	background: #383838b0;
	font-size: .8rem !important;
	padding: 12px 8px;
}

/* ----------------- start footer ----------------- */
footer {
	background-color: #4A4B4B;
	font-size: 0.9rem;
	padding: 40px 15px 10px 15px;
}

footer p,
footer h5 {
	color: var(--color-white-100);
}

footer .brand-logo {
	width: 120px;
	margin-bottom: 15px;
}

#footerHr {
	color: var(--color-yellow-100);
	border-width: 2px;
}

footer h5 {
	margin-bottom: 30px;
}

footer ul {
	padding: 0;
}

footer ul li a {
	color: var(--color-white-100);
}

footer ul li a:hover {
	text-decoration: underline;
}

footer .icons {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
}

.follow-us {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.follow-us a:hover {
	text-decoration: none;
	color: var(--color-white-100);
}

footer .facebook {
	background-color: #316FF6;
}

footer .facebook:hover {
	background-color: #2663e9;
}

footer .whatsapp {
	background-color: #075E54;
}

footer .whatsapp:hover {
	background-color: #045249;
}

footer .youtube {
	background-color: #f00;
}

footer .youtube:hover {
	background-color: rgb(235, 0, 0);
}

footer .tiktok {
	background-color: #010101;
}

footer .tiktok:hover {
	background-color: #1f1f1f;
}

footer .instagram {
	background: linear-gradient(90deg, rgba(249, 206, 52, 1) 0%, rgba(238, 42, 123, 1) 100%);
}

footer .instagram:hover {
	background: linear-gradient(90deg, rgb(236, 194, 39) 0%, rgb(216, 30, 107) 100%);
}

footer .twitter {
	background: #1da1f2;
}

footer .twitter:hover {
	background: #128fdd;
}

footer .newsletter {
	display: flex;
	border: solid 2px var(--color-yellow-100);
}

footer .newsletter input {
	padding: 5px 10px;
	border: none;
	outline: none;
	background-color: #4A4B4B;
	color: var(--color-white-100);
	width: 100%;
}

footer .newsletter input::placeholder {
	color: var(--color-white-300);
}

footer .newsletter input:focus {
	background-color: #4A4B4B;
}

footer .newsletter button {
	background-color: var(--color-yellow-100);
	border-radius: 0;
}

footer .newsletter button:hover {
	background-color: var(--color-yellow-200);
}

/* ---------------------- Extra style ---------------------- */

/* SKELETON */
.skeleton {
	position: relative;
	border: none;
	display: inline-block;
}

.skeleton::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9;
	border-radius: 2px;
	background: linear-gradient(90deg, #eee, #f9f9f9, #eee);
	background-size: 200%;
	animation: skeleton 1s infinite reverse;
}

@keyframes skeleton {
	0% {
		background-position: -100% 0;
	}

	100% {
		background-position: 100% 0;
	}
}







/* Categories Page */
.search-category-form {
	width: 40vw;
}

.search-category input {
	padding: 10px;
	border-radius: 0.375rem 0 0 0.375rem;
	outline: none;
}

.search-category button {
	border-radius: 0 0.375rem 0.375rem 0;
}
.searchQuery{
	display: flex;
}
.blog-categories {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}
.searchQuery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: .85rem;
    margin-top: 15px;
    gap: 20px;
}
.searchQuery span {
    background: none !important;
    color: var(--color-green-100) !important;
}
.blog-categories>div {
	width: 140px;
}

.blog-categories>div a {
	font-size: .8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	word-break: initial;
	text-align: center;
}

.blog-categories>div p {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-categories>div img {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	margin-bottom: 10px;
	object-fit: fill;
}

.pagination {
	gap: 10px;
	flex-wrap: wrap;
}

.page-link {
	color: var(--color-green-100);
}

.active>.page-link,
.page-link.active {
	z-index: 3;
	background-color: var(--color-green-100);
	border-color: var(--color-green-100);
}

.page-item:first-child .page-link {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.page-item:last-child .page-link {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

/* sub categories page */
.blog-sub-categories {
	margin-top: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 70px 15px;
}

.blog-sub-categories>div {
	width: 215px;
	background-color: rgb(234, 244, 229);
	min-height: 100px;
	border-radius: 10px;
	box-shadow: 0 2px 2px #a5a5a5;
}

.blog-sub-categories>div a {
	font-size: .8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	word-break: initial;
	text-align: center;
}

.blog-sub-categories>div p {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	width: 100%;
}

.blog-sub-categories>div img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-top: -40px;
	margin-bottom: 10px;
	object-fit: fill;
	box-shadow: 0px 0px 1px #000;
}

/* Blogs */
.breadcrumb {
	padding: 0;
	margin: 20px 0 0 0;
}

.breadcrumb li {
	font-size: .8rem;
}

.breadcrumb-item+.breadcrumb-item::before {
	padding-top: 1px;
	font-size: 0.8rem;
}

section#blogs {
	margin-top: 20px;
}

.blog-banner {
	height: 180px;
	width: 100%;
}

.blog-banner img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	border-radius: 10px;
}

.filter-blog-category .li-blog-sidebar-title {
	color: #242424;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	text-transform: uppercase;
	position: relative;
	margin-bottom: 42px;
}

.filter-blog-category .li-blog-sidebar-title::before {
	width: 55px;
	height: 2px;
	bottom: -15px;
	left: 0;
	background-color: var(--color-green-100);
	content: "";
	position: absolute;
}

.filter-blog-category .li-blog-archive {
	padding: 0;
	margin-bottom: 40px;
}

.filter-blog-category .li-blog-archive li {
	margin-bottom: 3px;
	font-size: .7rem;
	color: var(--color-white-600);
}

.filter-blog-category .li-blog-archive li a {
	white-space: pre-wrap;
}

.filter-blog-category .li-blog-archive li a:hover {
	text-decoration: underline;

}

.filter-blog-category .blog-tags li {
	background-color: var(--color-white-300);
	padding: 5px;
	color: #363636;
	display: inline-block;
}

.filter-blog-category .blog-tags li a:hover {
	text-decoration: none;
}

.filter-blog-category .blog-tags li:hover {
	background-color: var(--color-white-400);
	color: #111111;
}

.filter-blog-category .blog-tags li:hover a {
	color: initial;
}

.blog-filters {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 20px 0;
	padding: 10px 0;
	border-bottom: solid 1px gray;
}

.recent-post a {
	display: flex;
	gap: 30px 10px;
}

.recent-post a img {
	width: 45px;
	height: 30px;
}

.filter-blog-category .recent-post li {
	margin-bottom: 15px;
	font-size: .7rem;
	color: var(--color-white-600);
}

.filter-view {
	font-size: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.filter-view svg {
	width: 25px;
}

.filter-view a:nth-child(1) {
	margin: 15px;
}

.blogs-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.blogs-grid .blog-item {
	width: calc(100% / 3.12);
	height: 355px;
	box-shadow: 4px 4px 5px #0000002b;
}

.blogs-grid .blog-item:hover {
	box-shadow: 4px 4px 5px #00000052;
}

.blog-img {
	height: 145px;
}

.blog-img img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.grid-view .blog-body {
	display: flex;
	flex-direction: column;
	align-items: start;
	padding: 10px;
	justify-content: space-between;
	height: calc(355px - 145px);
}

.grid-view .blog-item h6 {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 5px 0 10px 0;
	font-size: .95rem;
	white-space: pre-wrap;
}

.grid-view .blog-item p {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 10px 0;
	font-size: 0.75rem;
}


.blog-icon {
	margin: 2px;
}

.blog-icon {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 5px;
	font-size: 0.65rem;
}

.blog-icon i {
	margin-right: 2px;
}

.blogs-list .blog-item p {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 10px 0;
	font-size: 0.75rem;
}

.blogs-list .blog-item {
	box-shadow: 4px 4px 5px #0000002b;
}

.blogs-list .blog-item:hover {
	box-shadow: 4px 4px 5px #00000052;
}

.list-view .blogs-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.blogs-list .blog-item {
	display: flex;
	gap: 20px 0px;
	height: 200px;
}

.blogs-list .blog-img {
	height: 100%;
	width: 35%;
}

.blogs-list .blog-body {
	display: flex;
	gap: 5px 0;
	flex-direction: column;
	align-items: start;
	padding: 10px;
	justify-content: space-between;
	height: 200px;
	width: 65%;
}

.list-view .blog-item h6 {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 5px 0 10px 0;
	font-size: .95rem;
	white-space: pre-wrap;
}

/* blog detail */
.blog-img-box {
	width: 100%;
	height: 420px;
}

.blog-img-box img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	border-radius: 10px;
}

.blog-detail h5 {
	text-align: justify;
	margin: 20px 0 20px 0;
}

.blog-detail p {
	text-align: justify;
	margin: 40px 0 20px 0;
	font-size: 1rem;
}

.blog-detail .blog-icons {
	font-size: .85rem;
}

.blog-detail .blog-icons span {
	margin-right: 10px;
}

.blog-icons {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
	color: rgb(102, 102, 102);
}

.share-blog {
	display: flex;
	align-items: center;
}

.share-blog .icons {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
}

.share-blog .follow-us {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.share-blog .follow-us {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	font-size: 0.9rem;
}

.share-blog.follow-us a {
	text-decoration: none;
	color: var(--color-white-100);
}
#social-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding: 0;
}
#social-links ul li{
	display: inline-block;
}
#social-links ul li a{
	padding: 10px;
	background-color: var(--color-white-400);
	font-size: 1rem;
}
#social-links ul li a:hover{
	background-color: var(--color-green-100);
}

.share-blog.follow-us a:hover {
	text-decoration: none;
	color: var(--color-white-100);
}

.social-box {
	margin: 40px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 1px solid var(--color-white-300);
	padding-top: 10px;
}

.social-box .blog-tags {
	display: flex;
	font-size: .9rem;
}

.social-box .blog-tags p {
	margin: 0 5px 0 0;
}

.share-blog {
	display: flex;
	align-items: center;
}

/* comments */
.blog-comment h6 {
	font-weight: bold;
}

.comment-box {
	background: #F5F5F5;
	padding: 20px;
	border: solid 1px #e1e1e1;
	margin-bottom: 20px;
}

.comment-headder {
	display: flex;
	justify-content: start;
	align-items: self-start;
	gap: 10px;
}

.profile-img {
	width: 50px;
	height: 50px;
}

.profile-img img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-info {
	width: calc(100% - 50px);
	display: flex;
	justify-content: space-between;
	align-items: self-start;
	flex-wrap: wrap;
}

.user-info span {
	font-size: .9rem;
	color: gray;
}

.comment-body p {
	margin: 20px 0 0 0;
	font-size: 1rem;
	color: #404040;
}

.reply-box {
	background: #F5F5F5;
	padding: 20px;
	border: solid 1px #e1e1e1;
	margin: 15px 0 15px 35px;
}

.reply-container label {
	font-weight: bold;
}

.reply-container textarea {
	background: #F5F5F5;
	border: solid 1px #e1e1e1;
	padding: 20px;
}

.reply-container textarea:focus {
	box-shadow: none;
	background: #F5F5F5;
	border: solid 1px #e1e1e1;
}


.write-comment {
	border-top: solid 1px #e1e1e1;
	padding-top: 15px;
}

.write-comment label {
	font-size: .9rem;
	font-weight: bold;
	margin: 0;
}

.write-comment textarea {
	background: #F5F5F5;
	border: solid 1px #e1e1e1;
	padding: 20px;
}

.write-comment textarea:focus {
	box-shadow: none;
	background: #F5F5F5;
	border: solid 1px #e1e1e1;
}

/* institutes */
.item-search-for {
	font-size: .9rem;
	border-bottom: solid 1px rgb(214, 214, 214);
	padding: 10px 0;
	margin: 10px 0 40px 0;
}

.item-search-for p {
	margin: 0;
}

.item-search-for span {
	color: var(--color-green-100);
	font-weight: 600;
}

.rating-filter label i {
	font-size: 1rem;
}

.rating-filter label .filled-star,
.rating-filter label .blank-star {
	color: #F7D629;
}

.transition {
	transform: translateX(72vw);
	visibility: visible;
	transition: .3s ease-out;
}

.close-filter {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
	display: none;
}

.close-filter i {
	font-size: 1.4rem;
}

.filter-btn {
	position: fixed;
	top: 30vh;
	left: -10px;
	border-radius: 0;
	padding: 6px 10px 6px 15px;
	border-radius: 0px 5px 5px 0px;
	display: none;
}

.overlay-active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #00000099;
	transition: .3s ease-in;
	overflow: unset;
}

.close-filter {
	transition: .3s ease-in;
	overflow: unset;
}

/* Institute detail */
#institute {
	margin-top: 20px;
}

.institiute-banner-box {
	width: 100%;
	height: 60vh;
}

.institiute-banner-box img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: fill;
}

#institute .institute-logo {
	width: 120px;
	height: 120px;
	background: #fff;
	border-radius: 50%;
	padding: 5px;
	margin: -60px auto 0 auto;
	box-shadow: 2px 2px 2px rgb(204, 204, 204);
	z-index: 9;
	position: relative;
	overflow: hidden;
}

#institute.institute-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
    padding: 5px;
}
.institute-head {
	text-align: center;
}
.campusRatings{
	margin: 10px auto;
}
.campusRatings>.jq-ry-group-wrapper>.jq-ry-group>svg {
    display: inline-block;
    width: 18px;
}
.reviewRatings>.jq-ry-group-wrapper>.jq-ry-group>svg {
    width: 22px;
}
.institute-head p {
	font-size: .95rem;
	color: var(--color-white-600);
}

.institute-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	font-size: .9rem;
}

.institute-info i {
	color: var(--color-green-100);
}

.institue-navbar ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	font-size: 1rem;
	font-weight: 600;
	margin: 50px 0;
	position: relative;
	padding: 0;

	background: var(--color-green-100);
	color: var(--color-white-100);
	padding: 5px 0;
}

.institue-navbar ul li a.active {
	color: var(--color-yellow-100);
}

.institue-navbar ul li a:hover {
	color: var(--color-yellow-100);
}

.institue-navbar ul li a.active::after {
	content: "";
	display: block;
	width: 30%;
	height: 2px;
	background-color: var(--color-yellow-100);
	transform: .3s ease-in-out;
}

.institue-navbar ul li a:hover a::after {
	content: "";
	display: block;
	width: 20px;
	height: 3px;
	background-color: var(--color-yellow-100);
	transform: .3s ease-in-out;
}

.our-mission {
	display: flex;
	gap: 20px;
}

.mission-img {
	width: 40%;
	height: 280px;
}

.mission-info {
	width: 60%;
}
.mission-info table{
	width: 100% !important;
}
.mission-info{
	overflow: auto !important;
}
.mission-info a{
	color: var(--color-green-100);
}
.mission-info u{
	text-decoration: underline;
}
.mission-info h1,
.mission-info h2,
.mission-info h3,
.mission-info h4,
.mission-info h5,
.mission-info h6{
	margin-bottom: 20px;
}
.mission-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mission-img img::before {
	content: "";
	position: absolute;
	border: solid 2px var(--color-green-100);
}

.mission-img {
	position: relative;
	padding-left: 30px;
	padding-top: 30px;
}

.mission-img img {
	width: 100%;
	overflow: hidden;
	display: block;
}


.mission-img::after {
	border: 5px solid var(--color-green-100);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: calc(100% - 30px);
	width: calc(100% - 30px);
	z-index: -1;
}
/* faculty */
.faculty-member{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.faculty-member .badge{
	background-color: var(--color-green-100);
	font-size: .65rem;
}
.faculty-member .member-name{
	margin: 0;
    color: #000;
    font-weight: 500;
	text-transform: uppercase;
	font-size: .9rem;
	word-spacing: wrap;
}
.faculty-member .member-edu{
	font-weight: 400;
    font-size: .85rem;
	margin: 0;
	word-spacing: wrap;
}
.member-img-box{
	width: 80px;
	height: 80px;
}
.member-img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member-info{
	width: calc(100% - 100px);
}
/* institute gallery */
.institute-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.institute-gallery .pic-item {
	width: 24%;
	height: 180px;
}

.institute-gallery .pic-item img {
	border: outset 5px var(--color-green-100);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* institute contact */
.contact-form label {
	display: block;
	font-size: 15px;
	line-height: 29px;
	font-weight: 400;
	color: #888888;
}

.contact-form input {
	background-color: #ffffff;
	width: 100%;
	height: 50px;
	line-height: 50px;
	outline: none;
	border: 1px solid #e0e0e0;
	padding-left: 20px;
	margin-bottom: 20px;
}

.contact-form select {
	background-color: #ffffff;
	width: 100%;
	height: 50px;
	outline: none;
	box-shadow: none;
	border: 1px solid #e0e0e0;
	padding-left: 20px;
	margin-bottom: 20px;
}

.contact-form textarea {
	background-color: #ffffff;
	width: 100%;
	outline: none;
	border: 1px solid #e0e0e0;
	padding: 20px;
	line-height: 22px;
	height: 120px;
	margin-bottom: 20px;
}

span.required {
	color: #ff0000;
}

.btn-submit {
	padding: 10px 30px;
	border-radius: 0;
}

.contact-page-side-content {
	background-color: #F2F2F2;
	padding: 25px 30px 19px;
}

h3.contact-page-title {
	font-size: 32px;
	line-height: 32px;
	color: #363f4d;
	font-weight: 500;
	margin-bottom: 20px;
}

.single-contact-block>h4 {
	margin-bottom: 23px;
}

.institute-map iframe {
	width: 100%;
}

/* .text-styled{
	position: relative;
}
.text-styled::after{
	content: "";
	position: absolute;
	height: 3px;
	width: 50%;
	background-color: red;
} */

.text-styled {
	text-align: center;

	text-transform: uppercase;
	font-size: 26px;
	letter-spacing: 1px;

	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-template-rows: 16px 0;
	grid-gap: 22px;
}

.text-styled:after,
.text-styled:before {
	content: " ";
	display: block;
	border-bottom: 2px solid var(--color-green-100);
}

.cstm-reviews-heading {
	text-align: center;
	font-weight: 100;
}

.align-items-baseline {
	align-items: baseline !important;
}

.star-line {
	width: 44%;
	height: 20px;
	background-color: #f0f0f0;
	margin: 0px auto;
	position: relative;
}

.star-line.active .cstm-yellow-bar {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	/* width: 100%; */
	height: 100%;
	background-color: #f7d853;
	margin: 0px auto;
}

.reviews-star i {
	font-size: 20px;
}

.filled-star {
	color: #f7d853;
}

.rating-reviews-input {
	width: 60%;
	margin: 0px auto;
}

.reviews-tabs p {
	margin: 0;
}

.institute-total-reviews h1 {
	font-size: 4rem;
	font-weight: 100;
}

.institute-total-reviews p {
	font-size: .9rem;
	color: var(--color-white-600);
}

.user-review {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

.user-review p {
	font-size: .9rem;
	color: var(--color-white-600);
}

.user-review i {
	font-size: .8rem;
}

.institute-review p {
	font-size: .9rem;
	color: var(--color-white-600);
}

.institute-review {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: solid 1px lightgray;
}

/* student */
#student {
	margin-top: 20px;
}

.student-details {
	display: flex;
	gap: 10px;
}

.std-img {
	width: 280px;
	height: 220px;
}

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

.std-info h1 {
	margin-bottom: 20px;
	font-weight: normal;
}

.std-info p {
	font-weight: bold;
	margin: 0 0 5px 0;
}

.std-info span {
	color: var(--color-green-100);
}

.std-grade {
	display: flex;
	gap: 20px;
}

.std-nav {
	padding-bottom: 10px;
	border-bottom: solid lightgray 1px;
	gap: 20px;
}

.std-info-container {
	margin-bottom: 50px;
}

.std-info-container p {
	font-weight: bold;
	margin: 0 0 5px 0;
}

.std-info-container span {
	font-weight: bold;
	color: var(--color-green-100);
	line-break: anywhere;
}

/* Teacher */
ul.teacher-menu {
    padding: 0;
}
.teacher-menu li {
	display: flex;
	flex-direction: column;
}

.teacher-menu li a {
	padding: 10px;
	border-radius: 0 28px 28px 0;
}
.teacher-menu li a:hover {
	background-color: var(--color-white-200);
	border-radius: 0 28px 28px 0;
}
.teacher-menu li a.active {
	background-color: var(--color-green-100);
	color: var(--color-white-100);
}

.teacher-banner {
	padding: 10px;
	border-radius: 10px;
	background: #009340;
	background: -webkit-linear-gradient(to left, #0043B1, #009340);
	background: linear-gradient(to left, #0043B1, #009340);
}
.teacher-info-b{
	display: flex;
	justify-content: space-between;
}
.teacher-item-1{
	margin-top: 30px;
	margin-left: 20px;
}
.teacher-item-1 h2{
	font-weight: 100;
	color: var(--color-white-100);
	margin-bottom: 0;
}
.teacher-item-1 > p{
	font-weight: 100;
	color: var(--color-white-200);
	font-size: .9rem;
}
.teacher-rating {
    display: flex;
    align-items: center;
    color: var(--color-white-200);
	margin-bottom: 15px;
}
.teacher-rating span{
	font-size: .9rem;
	margin-left: 10px;
}
.teacher-img-container {
	width: 180px;
    height: 220px;
	margin: 20px;
}
.teacher-img-container img{
	border-radius: 10px;
	width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 5px 5px 5px #00000073;
}

.tchr-social-info{
	display: flex;
    gap: 10px;
    flex-wrap: wrap;
	color: var(--color-white-200);
	font-size: .9rem;
}
.tchr-social-info p{
	color: var(--color-white-200) !important;
}
.tchr-social-contacts{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
    gap: 20px;
    color: var(--color-white-100);
	font-size: .8rem;
}

/* Youtube channel */
#youtube-channel{
	margin-top: 5px;
}
.youtube-cover{
	height: 220px;
}
.youtube-cover img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ytb-container {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin: 50px 0;
}
.ytb-profile{
	width: 180px;
	height: 180px;
}
.ytb-profile img{
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ytb-info{
	width: calc(100% - 200px);
}
.ytb-desc h2{
	font-weight: 600;
}
.ytb-desc p{
	font-size: .9rem;
	margin-bottom: 0;
}
.ytb-desc p span{
	color: var(--color-green-100);
}
.ytb-info p{
	font-size: .9rem;
}
.ytb-info a{
	font-size: .9rem;
	text-decoration: underline;
}
.ytb-social-info{
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.ytb-social-info a{
	font-size: 1rem;
	display: block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin-top: 10px;
	color: var(--color-white-100);
	border-radius: 50%;
}
.ytb-desc a{
	text-decoration: none;
}

.ytb-social-info .facebook {
	background-color: #316FF6;
}

.ytb-social-info .facebook:hover {
	background-color: #2663e9;
}

.ytb-social-info .whatsapp {
	background-color: #075E54;
}

.ytb-social-info .whatsapp:hover {
	background-color: #045249;
}

.ytb-social-info .youtube {
	background-color: #f00;
}

.ytb-social-info .youtube:hover {
	background-color: rgb(235, 0, 0);
}

.ytb-social-info .tiktok {
	background-color: #010101;
}

.ytb-social-info .tiktok:hover {
	background-color: #1f1f1f;
}

.ytb-social-info .instagram {
	background: linear-gradient(90deg, rgba(249, 206, 52, 1) 0%, rgba(238, 42, 123, 1) 100%);
}

.ytb-social-info .instagram:hover {
	background: linear-gradient(90deg, rgb(236, 194, 39) 0%, rgb(216, 30, 107) 100%);
}

.ytb-social-info .twitter {
	background: #1da1f2;
}

.ytb-social-info .twitter:hover {
	background: #128fdd;
}
.ytb-search-menu {
	display: flex;
	align-items: end;
    justify-content: space-between;
    border-bottom: solid 1px lightgray;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.ytb-nav ul{
	padding: 0;
	margin: 0;
    display: flex;
    gap: 10px;
	font-size: .95rem;
	font-weight: 500;
}
.ytb-nav ul .active{
	font-weight: 700;
}
.ytb-search input{
	width: 420px;
}
#ytb-recent-upload{
	margin: 0;
}
/* jobs */
#jobs{
	margin: 0;
}
.job-banner {
    background: linear-gradient(to left, rgb(221 238 255), rgb(232 244 255));
    padding: 20px;
	border-radius: 10px;
}
.job-banner-info{
	display: flex;
    gap: 20px;
}
.job-banner-info h2{
	color: var(--color-green-100);
}
.job {
    background-color: #E8F5EE;
    padding: 20px;
    border-radius: 10px;
}
.job h5{
    font-size: 1.1rem;
	margin-bottom: 15px;
}
.job p{
    font-size: .95rem;
	margin-bottom: 15px;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.job-icon{
	width: 50px;
    height: 50px;
    text-align: center;
    background: var(--color-green-100);
    line-height: 50px;
    border-radius: 50%;
    color: var(--color-white-100);
    margin-bottom: 15px;
}
/* about us */
#about-us{
	margin-top: 0px;
}
#about-us p{
	color: #7c7c7c;
}
.owl-carousel .item{
	width: 100%;
	height: 120px;
	border: solid 1px lightgray;
    padding: 10px;
}
.owl-carousel .item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.text-styled-underline {
	text-transform: uppercase;
	position: relative;
	display: block;
}

.text-styled-underline:after {
	content: "";
    display: block;
    position: absolute;
    top: 30px;
    left: 45%;
    height: 3px;
    width: 10%;
    background-color: var(--color-green-100);
}

/* contact us */
#contact-us{
	margin: 0;
}
.contact-us-banner{
	background-image: url(../img/contact-us.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 340px;
	margin-bottom: 30px;
}
.inner-overlay {
    background-color: rgb(0 0 0 / 60%);
    width: 100%;
    height: 100%;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
}
.inner-overlay h3{
    color: white;
    font-weight: 800;
}
.inner-overlay .breadcrumb a{
    color: var(--color-white-200); 	
}
.inner-overlay .breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-white-200);
}
.inner-overlay .breadcrumb .active {
    color: var(--color-green-100);
}
.contact-info p i {
    color: var(--color-green-100);
}
.contact-info .text-styled-underline{
	margin-top: 30px;
}
.contact-info .text-styled-underline:after {
    top: 33px;
    left: 0.5%;
}
.map-location iframe{
	height: 420px;
	width: 100%;
}

/* preload */
#preloader {
    background: #000000a3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    display: none;
}

#loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #1dc367;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    display: block;
  }
  .load-container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group {
    z-index: 7;
}
.jq-ry-container>.jq-ry-group-wrapper>.jq-ry-group.jq-ry-rated-group {
    z-index: 7;
}

.thankyou{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 10px 0;
	text-align: center;
}
.thankyou h2{
	margin: 15px 0 25px 0;
}
.contact-follow{
	display: flex;
	gap:10px;
	flex-wrap: wrap;
}
.under-construction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
	text-align: center;
}
.under-construction h1{
	font-weight: 900;
	margin: 20px 0 8px 0;
	color: #ffe177;
	text-shadow: 2px 3px black;
}
.under-construction p{
	margin-bottom: 0;
}
.under-construction img{
    width: 30%;
}
@media only screen and (max-width: 500px){
	.under-construction img {
		width: 80%;
	}
}