@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');

:root {
	--green: #016e35;
	--darkblue: #0a2f56;
	--gray-text: #252b33;
	--text-serif: 'Playfair Display', serif;
	--primary-color: #e71c20;
	--primary-dark-color: #a6070a;
	--primary-light-color: #fff6f6;
	--green-light-color: #f7fffb;
	--body-color: #5F5E5D;
	--lightgray: #f5f5f5;
	--gray: #c7c7c7;
	--darkgray: #303030;
	--facebook: #4267B2;
	--twitter: #00acee;
	--linkedin: #0e76a8;
	--youtube: #FF0000;
	--whatsapp: #25D366;
	--instagram: #c92bb7;
}

.bg-light {
	background-color: #f8f9fa;
}

.text-primary {
	color: var(--primary-color) !important;
}


html {
	scroll-behavior: smooth;
}

body {
	color: var(--body-color);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	overflow-x: hidden;
}

ul {
	padding-left: 0;
	margin-bottom: 0;
}

a:hover {
	text-decoration: none;
}

b,
strong {
	font-weight: 600;
}

.object-cover {
	object-fit: cover;
}

img,
svg,
iframe {
	width: 100%;
	display: block;
}

svg:not([fill]) {
	fill: currentColor;
}

.position-relative {
	z-index: 1;
}

/*header*/
.header {
	width: 100%;
	padding: 0 3rem;
	background: #fff;
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 9999;
	transition: all 300ms ease-in-out;
}

.header.fixed {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
	padding-top: 0px;
	padding-bottom: 0px;
}

.logo {
	width: 200px;
	position: relative;
	min-height: 1px;
	transition: all 300ms ease-in-out;
}

.header.fixed .logo {
	width: 120px;
}

.header nav {
	display: flex;
	align-items: center;
}

.header nav>ul {
	display: flex;
}

.header nav ul li {
	position: relative;
}

.header nav ul li a {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 18px 10px;
	color: var(--body-color);
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
}

.header nav ul li:hover>a {
	color: var(--primary-color);
}

.header.fixed nav ul li a {
	padding: 10px;
}

.header nav ul li a i {
	font-size: 75%;
}

.header nav ul .dropdown {
	width: 220px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	border-top: 1px solid rgb(0 0 0 / 10%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 300ms ease-in-out;
}

.header nav ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.dropdown ul li a {
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
	transition: all 300ms ease;
}

.dropdown ul li a:hover {
	color: var(--primary-color);
	border-left: 5px solid var(--primary-color);
	padding-left: 10px;
}

.topAdmissionBtn {
	margin-right: 10px;
}

.topAdmissionBtn a {
	display: block;
	padding: 7px 15px;
	border-radius: 50px;
	color: var(--darkgray);
	border: 1px solid;
	animation: blink 2s linear infinite;
}

@keyframes blink {
	35% {
		color: var(--lightgray);
	}

	70% {
		color: var(--body-color);
	}
}

.header.fixed .topAdmissionBtn a {
	padding: 4px 12px;
	font-size: 0.875rem;
}

.menuBtn {
	width: 50px;
	height: 50px;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
	position: relative;
}

.header.fixed .menuBtn {
	width: 40px;
	height: 40px;
	padding: 5px;
}

.menuBtn .circle,
.scrollDown .circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--darkgray);
	border-radius: 50%;
	transform-origin: center;
	transform: scale(0);
	transition: transform .6s cubic-bezier(.785, .135, .15, .86), border .6s cubic-bezier(.785, .135, .15, .86);
}

.menuBtn:hover .circle {
	transform: scale(1);
}

.menuBtn .bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
}

.menuBtn .bars span {
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	margin: 3px 0;
	transition: all .6s cubic-bezier(.785, .135, .15, .86);
}

.menuBtn .bars span::before,
.menuBtn .bars span::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform-origin: center center;
	transition: all .6s cubic-bezier(.785, .135, .15, .86);
	transform: scaleX(1);
}

.menuBtn .bars span::after {
	left: auto;
	right: 0;
}

.menuBtn .bars span#menuLine1::before {
	transform: scaleX(.5);
	transform-origin: left center;
}

.menuBtn .bars span#menuLine1::after {
	transform: scaleX(0);
	transform-origin: right center;
}

.menuBtn .bars span#menuLine3::before {
	transform: scaleX(0);
	transform-origin: left center;
}

.menuBtn .bars span#menuLine3::after {
	transform: scaleX(0.5);
	transform-origin: right center;
}

.menuBtn:hover .bars span#menuLine1::before,
.menuBtn:hover .bars span#menuLine3::after {
	transform: scaleX(0);
}

.menuBtn:hover .bars span#menuLine1::after,
.menuBtn:hover .bars span#menuLine3::before {
	transform: scaleX(.5);
}

.menuBtn:hover .bars span::before,
.menuBtn:hover .bars span::after {
	background: #fff;
}

.menuBtn.closeMenuBtn span#menuLine1 {
	-webkit-transform: rotate(45deg) translate(4px, 4px);
	transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn .bars span#menuLine1::before,
.menuBtn.closeMenuBtn .bars span#menuLine3::after {
	transform: scaleX(1);
}

.menuBtn.closeMenuBtn span#menuLine2 {
	right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
	-webkit-transform: rotate(-45deg) translate(5px, -5px);
	transform: rotate(-45deg) translate(5px, -5px);
}

.menuContainer {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #f1f1f1;
	z-index: 999;
	display: none;
}

.menuContainer:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: url(../images/curves.jpg) bottom right no-repeat #1E1E1E;
	background-size: cover;
	opacity: 0.07;
	z-index: -1;
}

.menuContainer .menu {
	position: relative;
	height: 100%;
	width: 100%;
	padding-right: 3%;
	margin-right: -1px;
	overflow: auto;
	display: flex;
	flex-direction: row-reverse;
	transition: all 1s cubic-bezier(0, 1.06, .39, 1.32);
	transition-delay: 1s;
}

.menuContainer .menu .navi {
	flex-grow: 1;
	padding: 100px 0;
}

.menuContainer .menu .navi ul li {
	margin: 10px 0;
}

.menuContainer .menu .navi ul li .menu-link {
	display: flex;
	align-items: center;
	padding: 2px 10px 2px 50px;
	font-size: 5vw;
	line-height: 1;
	font-weight: 900;
	background: none;
	color: #f1f1f1;
	border: none;
	outline: none;
	text-transform: uppercase;
	text-shadow: 1px 1px 0 var(--darkgray), 1px -1px 0 var(--darkgray), -1px 1px 0 var(--darkgray), -1px -1px 0 var(--darkgray);
	transition: all 300ms ease;
}

.menuContainer .menu .navi ul li .menu-link.hasChild.active,
.menuContainer .menu .navi ul li .menu-link:hover {
	color: var(--darkgray);
	text-shadow: none;
}

.menuContainer .menu .navi ul li .menu-link.hasChild i {
	font-size: 18px;
	margin-left: 20px;
	width: 40px;
	height: 40px;
	line-height: 30px;
	border: 5px solid var(--darkgray);
	color: var(--darkgray);
	text-align: center;
}

.menuContainer .menu .navi ul li .menu-link.hasChild.active i,
.menuContainer .menu .navi ul li .menu-link.hasChild:hover i {
	background: var(--darkgray);
	color: #fff;
}

.menuContainer .menu .navi ul li .menu-link.hasChild.active i:before {
	content: '\f068';
}

.menuContainer .menu aside {
	width: 360px;
	padding: 91px 20px 20px;
	background: var(--darkgray);
	overflow: auto;
	position: relative;
}

.menuContainer .menu aside .dropdown {
	padding: 10px 20px;
	background: var(--body-color);
	display: none;
	position: absolute;
	inset: 91px 20px 20px;
	z-index: 2;
}

.quickBtns li {
	margin-bottom: 10px;
}

.quickBtns li a {
	display: flex;
	align-items: center;
	color: #000;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.80);
	position: relative;
	z-index: 1;
}

.quickBtns li a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: #fff;
	transition: all 300ms ease;
	z-index: -1;
}

.quickBtns li a:hover:before {
	width: 100%;
}

.quickBtns li a .img-fluid {
	padding: 20px;
	max-width: 80px;
	background: #fff;
	border-right: 1px solid rgba(0, 0, 0, 0);
	filter: grayscale(1);
}

.quickBtns li a:hover .img-fluid {
	border-right-color: rgba(0, 0, 0, 0.15);
}

.quickBtns li a span {
	flex-grow: 1;
	padding-left: 15px;
	display: block;
}

/*header*/

.filter-black {
	filter: brightness(0);
}

.banner {
	height: 100vh;
	position: relative;
	background: #000;
	z-index: 1;
}

.banner .homeVideo {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	z-index: 1;
}
.banner {
	height: calc(100vh - 70px);
    position: relative;
    background-color: #000;
    z-index: 1;
    margin-top: 70px;
}

.banner .carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(transparent, rgb(0 0 0 / 50%));
  pointer-events: none;
  z-index: 1;
}

.bannerText {
  position: absolute;
  left: 4rem;
  bottom: 1rem;
  max-width: 530px;
  max-width: 624px;
  transform: translateY(-70%);
  opacity: 0;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  color: #fff;
  z-index: 9;
}

.banner .carousel-item.active .bannerText{
  transform: translateY(0%);
  opacity: 1;
}

.bannerText .inner{
}

.bannerText .h1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0;
}

.bannerText h5 {
	font-weight: 800;
}

.banner-bottom-controls{
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	width: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: center;
	z-index: 1;
}

.banner-bottom-controls a[class^="carousel-control"]{
	position: static;
	width: 40px;
	height: 40px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.scrollDown{
	/* display: none; */
	position: absolute;
	bottom: 1rem;
	left: 10px;
	cursor: pointer;
	width: 40px;
	z-index: 10;
	-webkit-animation: bounce 1s ease-in-out infinite alternate;
	animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
  0%{transform: translateY(-5px);}
  100% {transform: translateY(5px);}
}
.scrollDown {
	width: 85px;
	height: 85px;
	cursor: pointer;
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	z-index: 9;
}

.scrollDown .circle {
	transform: scale(1, 1);
	background-color: #fff;
	opacity: 0.4;
}

.scrollDown:hover .circle {
	transform: scale(1.2, 1.2);
}

.scrollDown svg {
	position: absolute;
	height: 35px;
	width: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center center;
	fill: #000;
	z-index: 2;
}

.quicklinks {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
}

.quicklinks li {
	display: table;
}

.quicklinks li:nth-child(2n) {
	transform: translateX(-100px);
}

.quicklinks li * {
	transition: all 300ms ease-in-out;
}

.quicklinks li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 100px;
	background: rgb(255 255 255 / 80%);
	color: #fff;
	text-align: center;
	position: relative;
	backdrop-filter: blur(2px) brightness(1.2);
}

.quicklinks li a img {
	width: 40px;
}

.quicklinks li a span {
	line-height: normal;
	position: absolute;
	right: 100%;
	top: 0%;
	width: 100%;
	height: 100%;
	transform: perspective(600px) rotateY(-90deg);
	transform-origin: right;
	padding: 10px;
	background: var(--darkgray);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
}

.quicklinks li a:hover {
	backdrop-filter: blur(5px) brightness(1.4) hue-rotate(45deg);
}

.quicklinks li a:hover span {
	transform: perspective(600px) rotateY(0deg);
	opacity: 1;
	visibility: visible;
}

.quicklinks li a span:hover {
	background: var(--body-color);
}

p {
	font-weight: 400;
}

.padding {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.overviewBox section h3 {
	font-weight: 500;
	line-height: 1.7;
	color: var(--gray-text);
}

.overviewBox section p {
	font-size: 16px;
	font-weight: 500;
}

.line-moreBtn {
	margin-top: 2rem;
	display: flex;
	align-items: center;
}

.line-moreBtn:before {
	content: '';
	width: 40%;
	height: 1px;
	background: #C5C5C5;
}

.line-moreBtn a {
	margin-left: 20px;
	color: var(--darkgray);
	font-weight: 600;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	transition: all 300ms ease;
}

.line-moreBtn a i {
	padding-left: 10px;
	font-size: 90%;
	transition: all 300ms ease;
}

.line-moreBtn a:hover i {
	transform: translateX(5px);
}

.text-serif {
	font-family: var(--text-serif);
}

.text-normal {
	font-family: 'Montserrat', sans-serif;
}

.bg-dark {
	background-color: var(--darkgray) !important;
	color: #fff;
}

.bg-lightgray {
	background-color: var(--lightgray) !important;
}

.bg-primary-light {
	background-color: var(--primary-light-color) !important;
}

.bg-primary-dark {
	background-color: var(--primary-dark-color) !important;
}

.bg-image {
	background: center / cover no-repeat;
}

.bg-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgb(0 0 0 / 50%);
	z-index: -1;
}

.bg-circle {
	position: absolute;
	inset: 0;
	clip-path: circle(65% at 50% -20%);
	z-index: -1;
}

.heading {
	display: table;
	position: relative;
	margin: 0 auto 40px;
	z-index: 1;
}

.heading.d-flex {
	gap: 10px;
}

.heading h2,
.heading h4,
.heading h5 {
	display: table;
	color: var(--gray-text);
}

.heading h2 {
	font-size: 3rem;
	font-weight: 200;
}

.heading h4 {
	font-size: 1.8rem;
	font-weight: 300;
}

.heading h5 {
	font-size: 22px;
	font-weight: 300;
}

/*STATS*/
.statsContainer {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--body-color);
}

.statsContainer .column {
	width: 25%;
	border-right: 1px solid var(--body-color);
}

.statsContainer .column.middle {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
}

.statsContainer .column .box {
	width: 100%;
	padding: 2em 1.5em;
	min-height: calc(100% / 3);
	border-bottom: 1px solid var(--body-color);
}

.statsContainer .column .middle .box,
.statsContainer .column.last .box {
	height: 50%;
}

.statsContainer .column .box.sports,
.statsContainer .column .box.highlights,
.statsContainer .column .box.st-ratio {
	border-bottom: none;
}

.statsContainer .column .box.highlights {
	background-color: var(--primary-light-color);
}

.statsContainer .column .box h5 {
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-text);
	text-align: center;
	margin-bottom: 20px;
}

.statsContainer .column .box ul {
	justify-content: center;
	flex-wrap: wrap;
	row-gap: 1rem;
}

.statsContainer .column .box ul li {
	padding: 0 5px;
	flex: 1 0 0;
}

.statsContainer .column .box.highlights ul li .img-fluid {
	padding: 14px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid var(--primary-color);
	transition: all 300ms ease-in-out;
}

.statsContainer .column .box.highlights ul li:nth-child(2n) .img-fluid {
	border-color: var(--green);
	transform: translateY(50%);
}

.statsContainer .column .box.highlights ul li .img-fluid:hover {
	box-shadow: 5px 10px 30px rgb(0 0 0 / 30%);
}

.statsContainer .column .box .data {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.statsContainer .column .box .data .img-fluid {
	max-width: 30%;
	flex: 0 0 30%;
	padding: 0 3%;
}

.statsContainer .column .box.dayschool .data .img-fluid {
	padding: 0 10px;
}

.statsContainer .column .box .data h2 {
	font-size: 3.5rem;
	font-weight: 200;
	color: var(--darkgray);
	margin-bottom: 0;
}

.counter:after {
	margin-left: 5px;
	font-size: 70%;
}

.counter.plus:after {
	content: '+';
}

.plus:after {
	content: '+';
}

.statsContainer .column .box aside {
	flex-grow: 1;
}

.statsContainer .column .box aside p {
	margin-bottom: 0;
}

/*STATS ENDS*/

/* hm admission */
.hm-admissionBox form {
	margin-top: 2rem;
}

.hm-admissionSteps .inner,
.hm-admissionSteps .admissionStepBox,
.hm-admissionSteps .admissionStep {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hm-admissionSteps .admissionStepBox {
	width: 100%;
	flex-direction: row;
	position: relative;
}

.admissionStepBox .admissionStep {
	width: 120px;
	padding: calc(1rem + 20px) 1rem 1rem;
	background-color: var(--stepColor);
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 1px;
	position: relative;
}

.admissionStepBox .admissionStep:not(.step1) {
	padding-top: calc(2rem + 20px);
}

.admissionStepBox .admissionStep::before,
.admissionStepBox .admissionStep::after {
	content: '';
	height: 20px;
	position: absolute;
	inset: calc(100% - 1px) 0 auto;
	background-color: var(--stepColor);
	clip-path: polygon(0 0, 100% 0, 50% 85%);
	z-index: 2;
}

.admissionStepBox .admissionStep::before {
	inset: 100% 0 auto;
	background-color: rgb(0 0 0 / 33%);
	clip-path: polygon(0 0, 100% 0, 100% 15%, 50% 100%, 0 15%);
}

.admissionStepBox .admissionStep span:nth-child(2) {
	font-weight: 800;
	font-size: 3rem;
	text-shadow: 2px 2px 0 #000;
}

.admissionStepBox .stepNameBox {
	position: absolute;
	display: flex;
	width: 250px;
}

.admissionStepBox:nth-child(odd) .stepNameBox {
	left: calc(50% + 60px);
}

.admissionStepBox:nth-child(even) .stepNameBox {
	right: calc(50% + 60px);
	flex-direction: row-reverse;
}

.admissionStepBox .stepCount {
	position: absolute;
	top: 60%;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: var(--body-color);
	border-radius: 50%;
	font-weight: 600;
}

.admissionStepBox:nth-child(odd) .stepCount {
	left: -15px;
}

.admissionStepBox:nth-child(even) .stepCount {
	right: -15px;
}

.admissionStepBox .line {
	max-width: 70px;
	flex: 0 0 70px;
	height: 70px;
	position: relative;
	z-index: -1;
}

.admissionStepBox .line::before {
	content: '';
	position: absolute;
	width: 130%;
	height: 2px;
	background-color: #fff;
}

.admissionStepBox:nth-child(odd) .line::before {
	transform: rotate(-45deg);
	left: -7px;
	top: 32px;
}

.admissionStepBox:nth-child(even) .line::before {
	transform: rotate(45deg);
	left: -14px;
	top: 32px;
}

.admissionStepBox .stepNameContent {
	border-top: 2px solid #fff;
	padding-top: 10px;
}

.admissionStepBox .stepNameContent p {
	font-size: 85%;
}

/* hm admission */

/* Events */
.eventBox .inner {
	height: 100%;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: #000;
	color: #fff;
	display: block;
}

.eventBox .inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 50%, rgb(0 0 0 / 70%));
	z-index: 1;
}

.eventBox .inner .badge {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	transition: all 300ms ease-in-out;
	transform: translateY(-20px);
	opacity: 0;
	visibility: hidden;
}

.eventBox .inner:hover .badge {
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}

.eventBox .inner .img-fluid {
	transition: all 1s ease-in-out;
}

.eventBox .inner:hover .img-fluid {
	transform: scale(1.125, 1.125);
	opacity: .5;
}

.eventBox .inner .img-fluid img {
	height: 300px;
	object-fit: cover;
}

.eventBox .inner .eventBox-details {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.25rem;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.eventBox .inner .eventBox-details i {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .875rem;
	border: 1px solid rgb(255 255 255 / 50%);
	transition: all 300ms ease-in-out;
	transform: translateY(20px);
	opacity: 0;
	visibility: hidden;
}

.eventBox .inner:hover .eventBox-details i {
	background-color: var(--lightgray);
	color: var(--body-color);
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
}

/* Events */
.membersContainer .linkedin {
	position: absolute;
	z-index: 999;
	bottom: -8px;
	right: 4px;
	filter: none;
}

.membersContainer .linkedin i {
	background: var(--linkedin);
	color: #fff;
}

/*Beyond classroom*/
/* .beyond-images{
	position: absolute;
	inset: 0;
	opacity: 0.5;
	z-index: -1;
}

.beyond-images::before{
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(#fff, transparent);
	z-index: 1;
	pointer-events: none;
}

.circle-slider{
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 320px;
  height: 320px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0px 12px rgb(0 0 0 / 25%));
  filter: drop-shadow(0 0px 12px rgb(0 0 0 / 25%));
  box-shadow: 0 0 0 1px var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/beyond-classroom/sports.jpg) center / cover no-repeat;
  animation: beyond-slider 12s linear infinite;
  pointer-events: none;
}
@keyframes beyond-slider {
	0%{background-image: url(../images/beyond-classroom/sports.jpg);}
	16%{background-image: url(../images/beyond-classroom/outings.jpg);}
	33%{background-image: url(../images/beyond-classroom/club.jpg);}
	50%{background-image: url(../images/beyond-classroom/arts.jpg);}
	66%{background-image: url(../images/beyond-classroom/social-initiatives.jpg);}
	83%{background-image: url(../images/beyond-classroom/co-curricular-activities.jpg);}
	100%{background-image: url(../images/beyond-classroom/sports.jpg);}
}

.rotate--circle {
  margin: 0 auto;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: var(--lightgray);
  animation-duration: 60s !important;
  -webkit-filter: drop-shadow(0 1rem 3rem rgb(0 0 0 / 55%));
  filter: drop-shadow(0 1rem 3rem rgb(0 0 0 / 55%));
}

.rotate--circle:hover {
	animation-play-state: paused;
}

.circle--rotate {
  position: relative;
  z-index: 4;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  margin: 0 auto 0;
  transform: rotate(0deg);
  padding: 0;
}

.circle--rotate>li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  z-index: 10;
  visibility: hidden;
}

.circle-wrapper .count8 li:nth-child(2) {
  transform: rotate(60deg);
}
.circle-wrapper .count8 li:nth-child(3) {
  transform: rotate(120deg);
}
.circle-wrapper .count8 li:nth-child(4) {
  transform: rotate(180deg);
}
.circle-wrapper .count8 li:nth-child(5) {
  transform: rotate(240deg);
}
.circle-wrapper .count8 li:nth-child(6) {
  transform: rotate(-60deg);
}
.circle-wrapper .count8 li:nth-child(7) {
  transform: rotate(-90deg);
}
.circle-wrapper .count8 li:nth-child(8) {
  transform: rotate(-45deg);
}

.circle--rotate>li .icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: -30px auto;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid var(--body-color);
  background-color: #fff;
  color: initial;
  visibility: visible;
  transition: all 0.3s ease;
}
@media only screen and (min-height: 800px){
  .circle--rotate>li .icon {
      width: 72px;
      height: 72px;
      margin: -36px auto;
  }
}

.circle--rotate>li .icon:hover {
	background-color: var(--darkgray);
}

.circle--rotate>li .icon:hover img {
	filter: invert(1);
}

.circle--rotate>li .icon span{
  position: absolute;
  z-index: -1;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
} */
/*Beyond classroom*/

.readmore {
	width: 100%;
	margin-top: 30px;
}

.readmore .button,
.sendBtn {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0px 15px;
	min-width: 130px;
	min-height: 40px;
	overflow: hidden;
	color: #fff;
	background: var(--body-color);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	text-align: center;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all ease-in-out 0.2s;
}

.readmore button,
.sendBtn {
	border: none;
	outline: none;
}

.readmore.whitemore .button {
	background: #fff;
	color: var(--darkgray);
}

.readmore .button:hover,
.sendBtn:hover {
	background: var(--darkgray);
	color: #fff;
}

.viewmore {
	width: 100%;
	margin-top: 1.25rem;
}

.readmore.d-flex,
.viewmore.d-flex {
	gap: 10px;
}

.viewmore .button {
	font-size: 67.5%;
	text-transform: uppercase;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	display: flex;
	padding: 10px;
	color: inherit;
	border-top: 1px solid rgb(0 0 0 / 10%);
	border-bottom: 1px solid rgb(0 0 0 / 10%);
	transition: all 300ms ease-in-out;
}

.viewmore .button.solid,
.viewmore .button:hover {
	background-color: var(--body-color);
	color: #fff;
}

.viewmore .button.solid:hover {
	background-color: var(--gray);
	color: var(--body-color);
}

.viewmore .button span {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* director's, principal's msg */
.leadershipContainer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: #ebebeb;
	clip-path: circle(30% at 0% 0%);
	z-index: -1;
}

.hidden-text {
	position: absolute;
	bottom: 0rem;
	margin-bottom: 0;
	left: 40%;
	font-style: italic;
	color: rgba(0, 0, 0, 0.04);
	z-index: -1;
	font-size: 4rem;
	animation: 10s linear infinite scrollLeft;
	pointer-events: none;
}

@keyframes scrollLeft {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-200%);
	}
}


.directorText .inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.directorText .h2 {
	font-family: var(--text-serif);
	line-height: 1.4;
	margin-bottom: 1.5rem;
}

.tagname {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	font-weight: 500;
}

.tagname::before {
	content: '';
	width: 55%;
	border-bottom: 1px solid rgb(0 0 0 / 20%);
}

/* director's, principal's msg */


.gap-row {
	row-gap: 30px;
}

/* custom swiper controls */
div[class^="swiper-button"] {
	width: 50px;
	height: 50px;
	margin-top: -25px;
	border-radius: 50%;
	background-color: #fff;
	color: var(--body-color);
	border: 1px solid rgba(0, 0, 0, 0.2);
	transition: all 300ms ease-in-out;
}

div[class^="swiper-button"]:hover {
	background-color: var(--darkgray);
	color: #fff;
	box-shadow: 0 0px 18px rgb(0 0 0 / 40%);
}

div[class^="swiper-button"]::after {
	color: inherit;
	font-size: 13px;
}

.swiper-pagination {
	bottom: 0 !important;
}

.swiper-pagination-bullet-active {
	background-color: var(--darkgray) !important;
	width: 20px !important;
	border-radius: 10px !important;
}

.bottom-control {
	width: 100%;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	gap: 10px;
	margin-top: 1rem;
}

.bottom-control.position-absolute {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.bottom-control div[class^="swiper-"] {
	position: static;
	margin-top: 0;
}

/* custom swiper controls */

.videoTestimonial-slide .img-fluid {
	aspect-ratio: 9 / 16;
}

.videoTestimonial-slide .img-fluid img {
	height: 100%;
	object-fit: cover;
}

.video-parent-name {
	padding: 1rem 0;
	border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.playBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	border: 0;
	background-color: #fff;
	color: var(--darkgray);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
}

.playBtn:hover {
	transform: translate(-50%, -50%) scale(.95, .95);
	background-color: var(--gray);
}

.videoTestimonial-slide:hover .playBtn {
	box-shadow: 0 10px 2rem rgb(0 0 0 / 33%);
}

.testimContainer {
	background-image: url(../images/texture.png);
}

.testimonials section {
	display: flex;
	padding: 2rem;
	min-height: 141px;
	background-color: #fff;
}

.testimonials section i {
	font-size: 22px;
	color: rgb(0 0 0 / 33%);
}

.testimonials section article {
	padding-top: 1rem;
	font-size: 18px;
	line-height: 1.3;
}

.testimonials section article p {
	margin-bottom: 10px;
}

.carousel-control-next.test-next,
.carousel-control-prev.test-prev {
	top: auto;
	bottom: 10px;
}

.carousel-control-next.banner-next,
.carousel-control-prev.banner-prev {
	width: 40px;
	height: 40px;
	background-color: rgb(0 0 0 / 40%);
	border-radius: 50px;
	opacity: 1;
	z-index: 9;
	top: 50%;
	transform: translateY(-50%);
}

.carousel-control-prev {
	left: 10px;
}

.carousel-control-next {
	right: 10px;
}

.bottom-control a[class^="carousel-control"] {
	position: static;
	transform: none;
}

.carousel-control-prev.test-prev {
	left: calc(50% - 50px);
}

.carousel-control-next.test-next {
	right: calc(50% - 50px);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	background-size: 60%;
}

.carousel-control-next.banner-next:hover,
.carousel-control-prev.banner-prev:hover {
	background-color: var(--darkgray);
}

/*Footer*/
.footer-schools-container {
	background-color: #373737;
	color: #fff;
	font-size: 13px;
	border: solid rgba(255, 255, 255, 0.1);
	border-width: 1px 0;
}

.footer-area {
	background-color: var(--darkgray);
	color: #fff;
	padding-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	font-size: 14px;
	z-index: 1;
}

/* .footer-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 10%);
  clip-path: circle(50% at 50% 50%);
  z-index: -1;
} */
.footer-area a {
	color: #fff;
}

.mainFooter .viewmore {
	justify-content: center;
	margin-bottom: 1rem;
}

.mainFooter .viewmore .button {
	border-color: rgb(255 255 255 / 20%);
	gap: 10px;
}

.footerBox .inner {
	text-align: center;
	padding: 2rem 0;
	text-transform: uppercase;
}

.footerBox:not(:last-of-type) {
	border-right: 1px solid rgb(255 255 255 / 10%);
}

.footerBox .inner h6 {
	font-weight: 600;
	font-size: 14px;
}

.footer-logo img {
	max-width: 180px;
	margin: 0 auto 1rem;
}

.footerBox .footerSocial {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px dashed rgb(255 255 255 / 10%);
}

.icon-circular {
	width: 35px;
	height: 35px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	color: var(--body-color);
	transition: all 300ms ease-in-out;
}

.footerBox .footerSocial li a i.icon-circular {
	/* background-color: rgba(0, 0, 0, 0.25) !important; */
	color: #fff;
	border: 0;
}

.footerSocial li a .fa-facebook-f {
	background-color: var(--facebook);
}

.footerSocial li a .fa-linkedin-in {
	background-color: var(--linkedin);
}

.footerSocial li a .fa-x-twitter {
	background-color: var(--body-color);
}

.footerSocial li a .fa-youtube {
	background-color: var(--youtube);
}

.footerSocial li a .fa-whatsapp {
	background-color: var(--whatsapp);
}

.footerSocial li a .fa-instagram {
	background-color: var(--instagram);
}

.footerBox .footerSocial li:hover a i.icon-circular {
	background-color: #fff !important;
}

.footerBox .footerSocial li a:hover .fa-facebook-f {
	color: var(--facebook);
}

.footerBox .footerSocial li a:hover .fa-linkedin-in {
	color: var(--linkedin);
}

.footerBox .footerSocial li a:hover .fa-x-twitter {
	color: var(--body-color);
}

.footerBox .footerSocial li a:hover .fa-youtube {
	color: var(--youtube);
}

.footerBox .footerSocial li a:hover .fa-whatsapp {
	color: var(--whatsapp);
}

.footerBox .footerSocial li a:hover .fa-instagram {
	color: var(--instagram);
}

.footerBox ul li a {
	position: relative;
	padding-bottom: 5px;
	display: inline-block;
	transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	border-bottom: 1px solid;
	transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:hover:before {
	width: 100%;
}

.footer-area .bottom {
	padding-top: 1rem;
	/* border-top: 1px solid rgb(255 255 255 / 20%); */
}

.footer-area .bottom p {
	display: flex;
	font-size: 12px;
	align-items: center;
	letter-spacing: normal;
	text-transform: capitalize;
	margin-bottom: 0;
}

.footer-area .bottom p:not(:last-child) {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid rgb(255 255 255 / 14%);
}

.footer-area .bottom p img {
	width: 20px;
}

.button-top {
	background: rgb(70 70 70 / 32%);
	position: fixed;
	right: 10px;
	bottom: 10px;
	color: #ffffff;
	font-size: 13px;
	opacity: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	z-index: 90;
	cursor: pointer;
	transition: all 300ms ease-in-out;
}

.button-top:hover {
	background: var(--darkgray);
}

/*Footer*/

/*Inside Page*/
/* why choose us */
.hm-schools-wrapper::before {
	content: '';
	position: absolute;
	background-image: linear-gradient(var(--primary-dark-color) 40%, #fff 40%);
	inset: 0;
	z-index: -1;
}

.whyUsBox section {
	--boxClr: var(--green);
	height: 100%;
	padding: 1.5rem;
	display: flex;
	align-items: flex-start;
	background-color: var(--green-light-color);
	gap: 1rem;
	position: relative;
	isolation: isolate;
	box-shadow: 0 10px 3rem rgb(0 0 0 / 12%);
	text-align: center;
}

.whyUsBox:nth-of-type(2n) section {
	--boxClr: var(--primary-dark-color);
	background-color: var(--primary-light-color);
}

/* .whyUsBox section::before{
  content: '';
  position: absolute;
  inset: 1px;
  background-color: var(--green-light-color);
  z-index: -1;
} */

.whyUsBox .imgBox {
	/* flex: 0 0 60px; */
	/* max-width: 60px; */
	padding: .87rem;
	margin: 0 auto;
	/* border: 1px solid var(--boxClr); */
	height: 90px;
	align-items: center;
	display: flex;
}

.whyUsBox section .imgBox svg path,
.whyUsBox section .imgBox svg circle {
	fill: none;
	stroke: var(--boxClr);
	stroke-miterlimit: 60;
	stroke-dasharray: 748;
	stroke-dashoffset: 0;
	stroke-width: 14px;
}

.whyUsBox section:hover .imgBox svg path,
.whyUsBox section:hover .imgBox svg circle {
	fill: none;
	stroke: var(--boxClr);
	-webkit-animation: path 5s infinite;
	animation: path 5s infinite;
}

@-webkit-keyframes path {
	0% {
		stroke-dashoffset: 748;
	}

	100% {
		stroke-dashoffset: 0;
		stroke: none;
	}
}

@keyframes path {
	0% {
		stroke-dashoffset: 748;
	}

	100% {
		stroke-dashoffset: 0;
		stroke: none;
		fill: var(--boxClr);
	}
}

.whyUsBox .whyUsText {
	width: 100%;
}

.whyUsBox .whyUsText h6 {
	margin-bottom: 15px;
	color: var(--darkgray);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.school-location {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: .87rem;
}

.school-location i {
	color: var(--boxClr);
}

.whyUsBox .whyUsText .viewmore .button {
	background-color: var(--boxClr);
}

.whyUsBox .whyUsText .viewmore .button:hover {
	background-color: var(--darkgray);
	color: #fff;
}

/* why choose us */

.inside-banner {
	height: clamp(300px, 60vh, 70vh);
	background: center no-repeat #000;
	background-size: cover;
	margin-top: 59px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.inside-banner::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	/* background:rgba(0,0,0,0.2); */
	z-index: -1;
}

.pageTitle {
	display: none;
}

.pageTitle h1 {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 0;
}

.marqueeText {
	padding: 10px 10px 10px 82px;
	background: var(--darkgray);
	position: relative;
}

.marqueeText>span {
	position: absolute;
	left: 30px;
	top: -10px;
	bottom: 5px;
	padding: 16px 10px 10px;
	font-size: 14px;
	text-transform: uppercase;
	background: #fff;
	color: var(--darkgray);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.48);
	z-index: 1;
}

.marqueeText>span::before,
.marqueeText>span::after {
	content: '';
	position: absolute;
	top: 0;
	border-top: 10px solid transparent;
	z-index: -1;
}

.marqueeText>span::before {
	left: -10px;
	border-right: 10px solid #024723;
}

.marqueeText>span::after {
	right: -10px;
	border-left: 10px solid #024723;
}

.marqueeText marquee {
	display: block;
}

.marqueeText p {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
}

.marqueeText p a {
	color: #fff;
}

.marqueeText p a:hover {
	text-decoration: underline;
}

.breadcrumb {
	background: none;
	margin-bottom: 0;
	padding-left: 0;
}

.breadcrumb li {
	font-size: 13px;
	color: #b1b1b1;
}

.breadcrumb-item+.breadcrumb-item::before {
	color: #b1b1b1;
}

.breadcrumb li a {
	color: #b1b1b1;
	font-weight: bold;
}

.breadcrumb li a:hover {
	color: var(--primary-color);
}

.breadcrumb-item.active {
	color: #ffffff;
}

.dataContainer {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

.sidemenu {
	width: 100%;
	position: sticky;
	top: 40px;
	z-index: 2;
	margin-bottom: 2rem;
	padding: 10px;
	background-color: var(--lightgray);
	border: 1px solid var(--body-color);
	box-shadow: 0 10px 2rem rgb(0 0 0 / 12%);
}

.sidemenu h5 {
	font: 24px var(--text-serif);
	color: var(--gray-text);
	margin-bottom: 20px;
}

.sidemenu ul {
	display: flex;
}

.sidemenu ul li {
	flex-grow: 1;
}

.sidemenu ul li:not(:last-of-type) {
	border-right: solid 1px var(--body-color);
}

.sidemenu ul li a {
	display: block;
	padding: 0 12px;
	color: var(--body-color);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	position: relative;
	text-align: center;
}

.sidemenu ul li a.active,
.sidemenu ul li a:hover {
	color: var(--darkgray);
}

.sidemenu ul li a.active {
	font-weight: 600;
}

.sidemenu ul li.active>a {
	font-weight: 500;
}

.sidemenu ul li a span {
	position: absolute;
	right: 0;
	top: 50%;
	line-height: 0;
	font-size: 150%;
	font-weight: 300;
	transition: all 300ms ease-in-out;
}

.sidemenu ul li.active>a span {
	transform: rotate(45deg);
}

.leftMenuChild {
	display: none;
}

.sidemenu ul li a.active+.leftMenuChild {
	display: block;
}

.leftMenuChild ul {
	padding: 5px 15px;
	background: #fafafa;
	border-top: 1px solid var(--secondary-color);
}

.sidemenu .pageQuicklinks {
	margin-top: 40px;
}

.sidemenu .pageQuicklinks ul {
	display: flex;
	flex-wrap: wrap;
}

.sidemenu .pageQuicklinks ul li {
	width: 50%;
	padding: 2px;
}

.sidemenu .pageQuicklinks ul li a {
	text-align: center;
	display: block;
	padding: 10px;
	background: var(--darkgray);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	transition: all 300ms ease-in-out;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.sidemenu .pageQuicklinks ul li a:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background: var(--body-color);
	z-index: -1;
	transition: all 300ms ease-in-out;
}

.sidemenu .pageQuicklinks ul li a:hover:before {
	height: 100%;
	top: 0;
}

.sidemenu .pageQuicklinks ul li a img {
	width: 40px;
	margin: 0 auto 10px;
	transition: all 300ms ease-in-out;
}

.filter-white {
	filter: brightness(50);
}

.mainTextContainer {
	text-align: justify;
}

.mainTextContainer section:nth-of-type(even) {
	background-color: var(--lightgray);
	box-shadow: 0 0 0 100vmax var(--lightgray);
	clip-path: inset(0 -100vmax);
}

.mainTextContainer .awardsbg {
	background-color: var(--primary-dark-color) !important;
	box-shadow: 0 0 0 100vmax var(--primary-dark-color) !important;
	clip-path: inset(0 -100vmax);
}

.awardsbg .awardSlider .award-card .inner {
	background: #fff;
}

section#awards .heading h2 {
	color: var(--primary-light-color);
}

.awardSlider .swiper-pagination-bullet-active {
	background-color: var(--primary-light-color) !important;
	width: 20px !important;
	border-radius: 10px !important;
}

.awardSlider .swiper-pagination-bullet {
	background-color: var(--body-color) !important;
}

.mainTextContainer section .overview-img {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	overflow: hidden;
}

.mainTextContainer section .overview-img img {
	width: 100vmax;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.pageHeading h2 {
	margin-bottom: 30px;
	font-size: 3rem;
	font-weight: 300;
	color: var(--gray-text);
}

.mainTextContainer section>h4 {
	margin-bottom: 30px;
	line-height: 1.5;
	font-weight: 300;
}

.mainTextContainer section>h5 {
	margin-bottom: 0px;
	line-height: 1.7;
}

.tagline {
	margin: 20px 0;
	padding: 30px;
	border-left: 3px solid var(--darkgray);
	background: #F3F3F3;
	display: flex;
	gap: 1.5rem;
}

.tagline .img {
	max-width: 140px;
	flex: 0 0 140px;
}

.tagline h5 {
	font-style: italic;
	font-size: 24px;
	margin-bottom: 15px;
}

.tagline h6 {
	margin-bottom: 0;
	font-size: 14px;
	color: var(--darkgray);
	position: relative;
	padding-left: 50px;
	z-index: 1;
}

.tagline h6:before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% - (1px / 2));
	height: 1px;
	width: 40px;
	background: #BFBFBF;
	z-index: -1;
}

.mainTextContainer section.py-5:first-child {
	padding-top: 0 !important;
}

.mainTextContainer section.py-5:last-child {
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

.mainTextContainer section p {
	line-height: 1.7;
}

.mainTextContainer section article {
	margin-bottom: 40px;
}

.mainTextContainer section article:last-child {
	margin-bottom: 0px;
}

/* Infrastructure */
.infraBox .inner {
	padding: 2rem 10px;
	background-color: #fff;
	color: var(--darkgray);
	display: grid;
	grid-template-rows: auto 1fr;
	text-align: center;
	height: 100%;
}

.infra-wrapper .row:first-of-type .infraBox:nth-child(even) .inner,
.infra-wrapper .row:nth-of-type(2) .infraBox:nth-child(odd) .inner {
	background-color: var(--lightgray);
}

.infraBox .img-fluid {
	width: 80px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	padding: 1.25rem;
	background-color: var(--lightgray);
	border: 1px solid transparent;
	transition: all 300ms ease-in-out;
	position: relative;
}

.infra-wrapper .row:first-of-type .infraBox:nth-child(even) .inner .img-fluid,
.infra-wrapper .row:nth-of-type(2) .infraBox:nth-child(odd) .inner .img-fluid {
	background-color: #fff
}

.infraBox .inner:hover .img-fluid {
	border-color: var(--darkgray);
}

.infraBox .inner:hover .img-fluid .infra-icon {
	opacity: 0;
	visibility: hidden;
}

.infraBox .inner .img-fluid .infra-icon-hover {
	position: absolute;
	inset: 0;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
}

.infraBox .inner:hover .img-fluid .infra-icon-hover {
	opacity: 1;
	visibility: visible;
}

.infraBox .infraBox-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.infraBox .infraBox-details i {
	font-size: 12px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	border: 1px solid rgb(0 0 0 / 33%);
	transition: all 300ms ease-in-out;
}

.infraBox .inner:hover .infraBox-details i {
	background-color: var(--darkgray);
	color: #fff;
}

/* Infrastructure */

/* ----Academic Spectrum---- */
.valueBox figure {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.valueBox figure::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(transparent, rgb(0 0 0 / 75%));
	z-index: 1;
	pointer-events: none;
}

.valueBox figure figcaption {
	position: absolute;
	inset: auto 1rem 1rem;
	color: #fff;
	text-align: center;
	text-shadow: 2px 2px 20px rgb(0 0 0 / 100%);
	z-index: 1;
}

.valueBox figure figcaption b {
	text-transform: uppercase;
	font-size: 1.175em;
}

.cube-container {
	font-size: 80%;
	height: 350px;
	text-align: center;
}

.cube-container p {
	font-size: 1em;
}

.photo-cube {
	width: 100%;
	height: 100%;
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.photo-desc {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0%;
	opacity: 0;
	color: #fff;
	padding: 2rem 1rem;
	background-color: var(--darkgray);
	transition: all 500ms ease-in-out;
}

.cube-container:hover .photo-desc {
	opacity: 1;
	left: 0;
}

.photo-desc .scroller {
	height: calc(100% - (2rem * 2) + 19px);
	padding-right: 1.25rem;
}

.photo-desc h5 {
	font-size: 1.125rem;
	font-weight: 600;
	text-transform: uppercase;
}

.photo-desc1 {
	text-align: left;
}

.board-icon .inner {
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	padding: 1rem;
	background-color: #fff;
}

.board-icon .inner .img-fluid {
	max-width: 100px;
	margin: 0 auto 1rem;
}

/* ----Academic Spectrum---- */

/* Leadership */
.membersContainer {
	display: flex;
	flex-direction: column;
}

.membersContainer .memberImg {
	filter: grayscale(1);
	transition: all 300ms linear;
}

.membersContainer:hover .memberImg {
	filter: grayscale(0);
}

.membersContainer .membersText {
	flex-grow: 1;
	position: relative;
	z-index: 1;
	padding: 1.5rem;
	text-align: left;
	background-color: #fff;
	border: 1px solid #d9d9d9;
}

.membersContainer .membersText p:last-of-type {
	margin-bottom: 0;
}

.pdf-iframe iframe {
	display: block;
	width: 100%;
	height: 500px;
}

.infrastructure h3 {
	position: absolute;
	left: 0;
	bottom: 20px;
	padding: 15px 20px;
	color: #fff;
	margin-bottom: 0;
	font: 400 2rem/1 var(--text-serif);
	background: var(--orange);
}

/* awards */
.swiper.awardSlider {
	padding-bottom: 3.5rem;
}

.awardSlider .award-card {
	height: auto;
}

.awardSlider .award-card .inner {
	text-align: center;
	background-color: transparent;
	height: 100%;
	border: 1px solid rgb(0 0 0 / 50%);
	padding: 1.5rem;
}

.awardSlider .award-card .inner .icon {
	width: 60px;
	margin: 0 auto 1rem;
	opacity: 0.9;
}

.awardSlider .award-card .inner p {}

.awardSlider .award-card .inner p small {
	display: block;
}

.awardSlider .award-card .inner .award-yr {
	font-size: .875rem;
	font-weight: 600;
}

.awardSlider .award-card .inner:hover img {
	filter: drop-shadow(2px 1px white);
}

/* awards */

.form-group label {
	font-weight: 500;
}

.form-control {
	outline: none;
	transition: all 300ms ease;
	border-radius: 0;
	height: calc(1.5em + .75rem + 4px);
}

.form-control:focus,
.form-control-file:focus,
.custom-file-input:focus~.custom-file-label {
	border-color: var(--orange);
	box-shadow: none;
}

.form-check label {
	padding: 10px 0;
	cursor: pointer;
}

.form-check-input {
	height: 30px;
	cursor: pointer;
}

/*Inside Page*/


/* contact page */
.contactCard {
	border: 1px solid rgb(0 0 0 / 10%);
}

.contactCard .inner {
	padding: 30px;
	text-align-last: left;
}

.contactCard ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 1rem;
}

.contactCard ul li {
	display: flex;
	align-items: center;
	gap: 5px;
}

.contactCard ul li i {
	width: 35px;
	height: 35px;
	font-size: 14px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(0 0 0 / 15%);
	color: var(--darkgray);
}

.contactCard ul li a {
	color: initial;
}

.contactCard ul li a:hover {
	text-decoration: underline;
	text-decoration-color: var(--darkgray);
}

.messageBox,
.classBox {
	display: none;
}

.mapBox iframe {
	background-color: var(--lightgray);
	height: 100%;
}

.contactForm .inner {
	background-color: var(--darkgray);
	color: #fff;
	padding: 2rem;
	text-align-last: left;
}

/* contact page */

/*Media Page*/
.mediaBox {
	display: flex;
	flex-wrap: wrap;
}

.mediaBox:first-child {
	padding-top: 0 !important;
}

.mediaBox:last-child {
	padding-bottom: 0 !important;
	border-bottom: none !important;
}

.mediaBox .img-fluid {
	max-width: 30%;
	flex: 0 0 30%;
	position: relative;
	z-index: 1;
	background: #494949;
}

.mediaBox .img-fluid img {
	height: 300px;
	object-fit: cover;
}

.mediaBox article {
	flex-grow: 1;
	max-width: 70%;
	flex: 0 0 70%;
	padding-left: 20px;
}

.mediaBox article h3 {
	margin-bottom: 20px;
}

.mediaBox article h3 a {
	color: var(--orange);
}

.mediaBox article h3 a:hover {
	color: var(--green);
}

.imgsContainer {
	padding: 10px;
	background: #efefef;
}

.imgsContainer .media-img {
	margin: 5px;
}

.imgsContainer .media-img img {
	height: 250px;
	object-fit: cover;
}

/*Media Page*/


.overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.78);
	z-index: 9999;
	display: none;
}

.videoContainer {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 70%;
	z-index: 10000;
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
}

.videoContainer .videoBox {
	width: 100%;
	float: left;
	padding: 10px 10px 0;
}

.videoContainer .videoBox iframe {
	width: 100%;
	float: left;
	height: 500px;
}

.videoContainer .videoBox iframe {
	border: 2px solid #fff;
}

.videoContainer .videoBox,
.videoContainer .videoBox h2 {
	font-size: 20px;
	text-align: center;
	color: #000;
	width: 100%;
	float: left;
	background: #fff;
}

.videoContainer .video-footer {
	position: relative;
	padding: 15px;
}

.closeVideo {
	position: absolute;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	right: 12px;
	top: calc(50% - 15px);
	color: #fff;
	background: var(--orange);
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.closeVideo:hover {
	background-color: #c00003;
}

.address {
	display: flex;
	text-align: center;
	flex-wrap: wrap;
	margin-top: 35px;
}

.address li {
	flex-grow: 1;
	width: 50%;
	padding: 20px;
	border: 1px solid #e1e1e1;
	transition: all 300ms ease;
}

.address li:hover {
	background: #fff;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.address li:last-child {
	border-left-color: transparent;
}

.address li i {
	font-size: 40px;
	color: #d7d7d7;
	width: 70px;
	line-height: 70px;
	height: 70px;
	margin-bottom: 20px;
	transition: all 300ms ease;
}

.address li:hover i {
	color: var(--green);
}

.address li p a {
	color: #494949;
	transition: all 300ms ease;
}

.address li p a:hover {
	color: var(--orange);
}

.iframeBox {
	border: 4px solid var(--green);
	background: #f1f1f1;
}

.iframeBox iframe {
	width: 100%;
	height: 400px;
	display: block;
	transition: all 300ms ease;
}

.iframeBox iframe:hover {}

.table td,
.table th {
	vertical-align: middle;
}

.newsletterContainer .row {
	margin-left: -5px;
	margin-right: -5px;
}

.newsletterBox {
	padding: 5px;
}

.newsletterBox a {
	height: 100%;
	padding: 20px;
	display: block;
	position: relative;
	z-index: 1;
	color: #494949;
	border: 1px solid #e1e1e1;
	transition: all 300ms ease;
}

.newsletterBox a:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.newsletterBox a i {
	position: absolute;
	font-size: 100px;
	right: 0;
	top: 0;
	z-index: -1;
	opacity: 0.05;
}

.newsletterBox a p {
	color: var(--orange);
	font-size: 14px;
}

.newsletterBox a span {
	font-size: 12px;
	display: table;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 40px;
	background: #f0f0f0;
	transition: all 300ms ease;
}

.newsletterBox a span:hover {
	background: var(--green);
	color: #fff;
}

/*Pagination*/
.page-link {
	color: var(--text-gray);
	font-weight: 500;
}

.page-item.active .page-link {
	background-color: var(--green);
	border-color: var(--green);
}

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

.page-link:focus {
	box-shadow: none;
}

.page-item.disabled .page-link {
	color: #9a9da0;
}

/*Pagination*/

/*Admission Form*/
.sessionBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #EDEDED;
	margin-bottom: 20px;
}

.sessionBox label {
	margin-right: 10px;
	margin-bottom: 0;
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 5px;
	color: var(--orange);
}

.note {
	margin-bottom: 30px;
}

.note p {
	margin-bottom: 5px;
}

.uploadImg {
	width: 100px;
	height: 100px;
	position: relative;
	right: 0;
	border-radius: 10px;
	top: 9px;
	display: none;
}

.uploadImg.ActiveImg {
	display: block;
}

/*customized input[file]*/
.custom-file {
	height: 40px;
}

.custom-file-input,
.custom-file-label,
.custom-file-label::after {
	height: 100%;
	cursor: pointer;
	padding: 9px;
}

.custom-file-label {
	margin-bottom: 0;
	font-size: 13px;
}

/*customized input[file]*/
.mainTextContainer section .admissionFormContainer .plz_reg_line p {
	margin-top: 20px;
}

.mainTextContainer section .admissionFormContainer p {
	font-size: 14px;
}

.admissionFormContainer p label {
	cursor: pointer;
}

#age_as_on {
	width: max-content;
	text-align: center;
	outline: none;
	border: none;
	resize: none;
	padding: 0;
}

.dobBox div.d-flex label {
	padding-right: 10px;
	margin-bottom: 0;
}

.dobBox div.d-flex label,
.dobBox div.d-flex label input,
.dobBox div.d-flex label span {
	flex-basis: 0;
	flex-grow: 1;
}

.dobBox div.d-flex label input {
	margin-right: 5px;
	padding: 5px;
}

.admissionFormContainer .form-control[readonly] {
	background-color: #fff;
}

.marksTable .table td,
.marksTable .table th {
	padding: 10px 2px;
}

.marksTable .table .form-group {
	margin-bottom: 0;
}

.marksTable .table .form-control {
	font-size: 14px;
	font-weight: 500;
	padding: 6px 10px;
	height: auto;
}

.admissionFormContainer .dispite_parents_details {
	position: relative;
}

.admissionFormContainer .dispite_parents_details:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: .5;
	background: rgb(249, 249, 249);
	z-index: 1;
	pointer-events: none;
}

.admissionFormContainer .dispite_parents_details.activeBox:before {
	display: none;
}

.list li {
    margin: 0px 0 10px 22px;
}

.list li a {
	color: var(--body-color);
	font-weight: 600;
	text-decoration: underline;
}

.admissionForm_footer {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
}

.admissionForm_footer li {
	padding: 0 10px;
	display: flex;
	align-items: center;
}

.admissionForm_footer li a {
	display: block;
	color: var(--orange);
	padding-right: 5px;
}

.admissionForm_footer li a:hover {
	color: var(--text-gray);
}

.admissionForm_footer li a i {
	color: var(--green);
	margin-right: 5px;
}

/*Admission Form*/

/*transformation Animation*/
.leftTranslate {
	-webkit-transform: translate(-200px, 0);
	transform: translate(-200px, 0);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.rightTranslate {
	-webkit-transform: translate(200px, 0);
	transform: translate(200px, 0);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.topTranslate {
	-webkit-transform: translate(0, -200px);
	transform: translate(0, -200px);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.bottomTranslate {
	-webkit-transform: translate(0, 200px);
	transform: translate(0, 200px);
	opacity: 0;
	-webkit-transition: all 1000ms;
	transition: all 1000ms;
}

.doneTranslate {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
}

.menuContainer-mob {
	display: none;
	position: fixed;
	inset: 60px 0 0;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	z-index: 999;
	overflow: auto;
}

.menuContainer-mob .bg-circle {
	background-color: var(--darkgray);
}

.menuContainer-mob .mob-menu {
	height: 100%;
	max-width: 400px;
	width: 100%;
	padding: 2rem;
	margin-left: auto;
	margin-right: 0;
	background-color: var(--darkgray);
	border-left: 5px solid var(--body-color);
	position: relative;
	isolation: isolate;
}

.menuContainer-mob .mob-menu::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgb(0 0 0 / 22%);
	clip-path: circle(70% at 110% 20%);
	z-index: -1;
}

.menuContainer-mob ul li a {
	color: #ffffff;
	letter-spacing: 1px;
	padding: 10px 0px;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 300ms ease-in-out;
}

.menuContainer-mob .mob-menu>ul>li>a {
	text-transform: uppercase;
}

.menuContainer-mob ul li:hover>a,
.MenuListBtn.active a {
	color: var(--gray) !important;
}

.menuContainer-mob ul li a i {
	font-size: .875rem;
	transition: all 300ms ease-in-out;
}

.MenuListBtn.active a i {
	transform: rotate(180deg);
}

.dropdown-mob {
	display: none;
	background-color: rgb(0 0 0 / 10%);
}

.dropdown-mob ul {
	padding-left: 1rem;
}

.side-menuBtn {
	float: inherit;
	cursor: pointer;
	overflow: hidden;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 300ms ease-in-out;
}

.side-menuBtn.fixed {}

.side-menuBtn div {
	position: relative;
	width: 30px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: all 300ms ease-in-out;
}

.side-menuBtn.fixed div {}

.side-menuBtn span {
	width: 100%;
	height: 1px;
	float: right;
	background: #000;
	margin: 3px 0;
	position: relative;
	right: 0;
	-webkit-transition: 400ms ease-in-out all;
	transition: 400ms ease-in-out all;
}

.side-menuBtn.closeMenuBtn-side span#menuLine1 {
	-webkit-transform: rotate(45deg) translate(3px, 3px);
	transform: rotate(45deg) translate(3px, 3px);
}

.side-menuBtn.closeMenuBtn-side span#menuLine3 {
	-webkit-transform: rotate(-45deg) translate(2px, -2px);
	transform: rotate(-45deg) translate(2px, -2px);
}

.side-menuBtn.closeMenuBtn-side span#menuLine2 {
	display: none;
}

.modal {
	z-index: 99999;
}

.modal-backdrop {
	z-index: 9999;
}

.testim-modal .close {
	font-size: 4rem;
	font-weight: 200;
	position: absolute;
	right: 0;
	opacity: 1;
	z-index: 1;
	top: 0;
	background: var(--primary-color);
	width: 44px;
	height: 41px;
	/* border-radius: 50px; */
	line-height: 41px;
	color: #fff;
}

.center {
	text-align: center;
}

.arial {
	font-family: arial;
}

/*transformation Animation*/
/* Whatsapp Icons */
/* .enquiryBtn {
	position: fixed;
	left: 35px;
	bottom: 75px;
	z-index: 99;
} */
.enquiryBtn {
	padding: 0 1rem;
}

.enquiryBtn a {
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	font-size: 20px;
	text-align: center;
	background: #faf7f2;
	color: var(--primary-color);
	box-shadow: 0 0 0 8px rgba(61, 251, 105, 0.45), 0 0 0 15px rgba(33, 164, 40, 0.63), 1rem 1rem 2rem rgb(0 0 0 / 25%);
	animation: enq 2s cubic-bezier(0.55, 0.76, 0.27, 1.29) infinite;
	position: relative;
	z-index: 1;
}

.enquiryBtn a:nth-child(2) {
	animation-delay: 0.5s;
	margin-bottom: 0;
	box-shadow: 0 0 0 8px rgba(61, 127, 251, 0.45), 0 0 0 15px rgb(11 107 235 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
}

@keyframes enq {
	50% {
		box-shadow: 0 0 0 1px rgba(61, 127, 251, 0.45),
			0 0 0 0px rgb(11 107 235 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
	}
}

/* Whatsapp Icons */
/* recent showcase */
aside.topRatedProjectShowcase {
	padding: 20px;
	border: 1px solid rgba(0 0 0 / 10%);
	border-radius: 10px;
	margin-top: 2rem;
}

.topRatedProjectBox:not(:last-of-type) {
	margin-bottom: 10px;
}

.topRatedProjectBox .inner {
	display: flex;
	gap: 1rem;
	font-size: 15px;
}

.topRatedProjectBox .inner img {
	width: 70px;
	height: 80px;
	object-fit: cover;
}

.topRatedProjectBox .inner a {
	font-family: var(--font-bold);
	color: var(--body-color);
	display: table;
	margin-bottom: 5px;
	transition: all 300ms ease-in-out;
}

.topRatedProjectBox .inner a:hover {
	color: var(--corp-color);
}

/* recent showcase */
/* .blogBox a {
	color: #016e35;
	border: 1px solid #ccc;
	display: block;
	padding: 10px;
}

.date {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1rem;
}

.blogBox.newsBox .img-fluid {
	position: relative;
	isolation: isolate;
} */

/*  */
/* Blogs */
.blogBox .inner {
	display: block;
	font-size: 13px;
	height: 100%;
	border-radius: var(--primary-radius);
	background-color: var(--light);
	transition: all 300ms ease-in-out;
}

.blogBox .inner:hover {
	color: var(--body-color);
	transform: translateY(-5px);
	box-shadow: 0 2px 5px rgb(0 0 0 / 15%)
}

.blogBox .inner .img-fluid {
	position: relative;
	overflow: hidden;
}

.blogBox .inner .img-fluid img {
	border-radius: var(--primary-radius);
	height: 260px;
	object-fit: cover;
}

.blogBox .inner .blog-details {
	padding: 1rem;
}

.blogBox .inner .blog-details ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.blogBox .inner .blog-details ul li {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid;
	line-height: 1;
	font-size: 10px;
	text-transform: uppercase;
	display: flex;
	gap: 5px;
	color: var(--body-color);
}

.blogBox .inner .blog-details ul li:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

.blogBox .inner .blog-details ul li i {
	color: var(--primary-color);
}

.blogBox .inner .blog-details .h6 {
	color: var(--body-color);
	font-weight: 400;
	margin-bottom: 1rem;
	display: block;
}

.blogBox .inner .blog-details p {
	color: var(--body-color);
}

.blogBox .inner:hover .blog-details p {
	text-decoration: 1px underline var(--primary-color);
}

.blogBox .inner .blog-details p {
	margin-bottom: 0;
}

.blogBox .inner .viewmore .button {
	/* font-size: 67.5%;
	text-transform: uppercase;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	display: flex;
	color: inherit;
	transition: all 300ms ease-in-out; */
	padding: 0px;
	border-top: none;
	border-bottom: none;
}

.blogBox .viewmore .button.solid,
.blogBox .viewmore .button:hover {
	background-color: transparent;
	color: #fff;
}

/* ..... */
/* .blogDetail-page */

.blogDetail-page .inner {
	padding: 2rem;
	background-color: #fff;
}

.blogBanner {
	margin-bottom: 1.5rem;
}

.blogBanner img {
	border-radius: var(--primary-radius);
}

.courtesy {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	font-size: .875em;
    justify-content: space-between;
}

.courtesy span:not(:last-child) {
	padding-right: 1rem;
}

.blogTextarea img {
	margin-bottom: 1rem;
	border-radius: var(--primary-radius);
}
.blogTextarea p{
	text-align: justify;
}

/* Blogs */

.projects-wrapper:not(.show) {
	display: none;
}

/* project inside page */
.table-of-contents {
    border: 1px solid #d7d4d4;
    padding: 14px;
    margin-bottom: 2rem;
    background: #ededed;
    display: inline-block;
}
.table-of-contents ul
{
    margin-left: 27px;
}
.table-of-contents a {
    color: #000000;
    text-decoration: none
}
.eapps-social-share-buttons-inner {
    max-width: 316px;
    display: flex !important;
    overflow: hidden;
    width: auto;
    flex-wrap: nowrap !important;
}
/* Reports */
.newsBox .inner{
	height: 100%;
	padding: 2rem;
	display: block;
	color: initial;
	border: 1px solid rgb(0 0 0 / 10%);
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.date{
	text-transform: uppercase;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--body-color);
}
/* Reports */
	
    .modal-content .modal-header {
      border: none;
    padding: 0;
}
button.btn-close {
  position: absolute;
    right: -16px;
    top: -14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: #27ded5;
    border: 0;
    opacity: 1;
    text-shadow: none;
    z-index: 9;
    color: #fff;
    filter: invert(1);
}
button.btn-close span
{	
    filter: inherit;
    font-size: 29px;
}