@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--transition: all 0.3s ease-in-out;
	--jakarta: "Plus Jakarta Sans", sans-serif;
	--white: #ffffff;
	--black: #000000;
}

html {
	scroll-behavior: smooth;
}

body {
	font-weight: 400;
	line-height: 1.4;
	font-family: var(--jakarta) !important;
	overflow-x: hidden;
}

html,
body,
main {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow-x: hidden;
}

section {
	scroll-margin-top: 100px;
	/* header height + little gap */
}

.row {
	display: flex;
	align-items: center;
}

.main-container {
	margin: 0 auto;
	padding: 0 140px;
}

figure {
	margin: 0;
}

a {
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	text-decoration: none;
}

p {
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 20px;
	line-height: 1.4;
}

h1 {
	font-size: 80px !important;
	font-weight: 800 !important;
}

h2 {
	font-weight: 800 !important;
	color: #2e2e2e !important;
	line-height: 1.3 !important;
	font-size: 36px !important;
}

.theme-color {
	color: #9e0203;
}

.theme-color-bg {
	background-color: #9e0203;
}

.btn {
	background-color: var(--black);
	color: var(--white);
	font-size: 18px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: none;
	height: 40px;
	transition: var(--transition);
	padding: 0 20px;
}

.btn:hover {}

input {
	height: 36px;
	border: 1px solid #dddddd;
	border-radius: 0px;
	background-color: var(--white);
}

input:focus {
	border: 1px solid #dddddd;
	box-shadow: none;
	outline: none;
}

textarea {
	resize: none;
}

strong {
	font-weight: 800;
}

i {
	font-style: italic;
}

.block {
	display: block;
}

.hidden {
	display: none;
}

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

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

.mr-5 {
	margin-right: 5px;
}

.ml-5 {
	margin-left: 5px;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-20 {
	margin-bottom: 20px;
}

.pr-0 {
	padding-right: 0 !important;
}

.pl-0 {
	padding-left: 0 !important;
}

.d-flex {
	display: flex;
}

.align-items-center {
	align-items: center;
}

input,
textarea {
	font-family: var(--font);
	transition: var(--transition);
}

input:focus,
input:target,
textarea:focus,
textarea:target {
	outline: 0;
	box-shadow: 0px 3px 8px #ccc;
}

.pr-50 {
	padding-right: 50px;
}

.pr-100 {
	padding-right: 100px;
}

.pd-100 {
	padding: 80px 0;
}

/* Scrollbar styling for webkit */
::-webkit-scrollbar {
	min-width: 0px;
	width: 0px;
	max-width: 0px;
}

::-webkit-scrollbar,
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
	background: #171719;
}

::-webkit-scrollbar-button,
::-webkit-scrollbar-thumb {
	background: #dddddd;
}

/* Svg reset */
svg:not(:root) {
	height: 100%;
	width: 100%;
}

ul,
ol,
li {
	margin: 0;
	list-style: none;
	padding: 0;
}

*:focus {
	outline: none !important;
}

label {
	font-weight: normal;
	margin-bottom: 10px;
	position: relative;
}

/* rotate infinite animation */
@keyframes rotate-animation {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(180deg);
	}

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


/* move up-down animation */
@-webkit-keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-10px);
	}
}

.cursor {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
	border-radius: 50%;
	background: transparent;
	pointer-events: none;
	z-index: 111;
	border: 2px solid #222;
	transition: all 0.2s ease-out;
	animation: moveCursor1 .5s infinite alternate;
}

.expand {
	background: transparent;
	animation: moveCursor2 .5s forwards;
	border: 1px solid yellow;
}

@keyframes moveCursor1 {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(.8);
	}
}

@keyframes moveCursor2 {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(2.5);
	}

	100% {
		transform: scale(1);
		opacity: 0;
	}
}


/* Preloader */
.preloading {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.container-preloader {
	align-items: center;
	cursor: none;
	display: flex;
	height: 100%;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
	overflow: hidden;
}

.container-preloader .animation-preloader {
	position: absolute;
	z-index: 100;
}

/* Spinner Loading */
.container-preloader .animation-preloader .spinner {
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	border: 10px solid rgba(0, 0, 0, 0.2);
	border-top-color: green;
	/* It is not in alphabetical order so that you do not overwrite it */
	height: 9em;
	margin: 0 auto 3.5em auto;
	width: 9em;
}

/* Loading text */
.container-preloader .animation-preloader .txt-loading {
	font: bold 2em "Montserrat", sans-serif;
	text-align: center;
	user-select: none;
	letter-spacing: -3.5px;
}

.container-preloader .animation-preloader .txt-loading .characters:before {
	animation: characters 5s infinite;
	color: rgb(0, 0, 0);
	content: attr(preloader-text);
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transform: rotateY(-90deg);
}

.container-preloader .animation-preloader .txt-loading .characters {
	color: rgba(0, 0, 0, 0.2);
	position: relative;
	font-family: "Dancing Script", serif;
	font-optical-sizing: auto;
	font-style: normal;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
	animation-delay: 0.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
	animation-delay: 0.4s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
	animation-delay: 0.6s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
	animation-delay: 0.8s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
	animation-delay: 1s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(7):before {
	animation-delay: 1.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(8):before {
	animation-delay: 1.4s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(9):before {
	animation-delay: 1.6s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(10):before {
	animation-delay: 1.8s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(11):before {
	animation-delay: 2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(12):before {
	animation-delay: 2.2s;
}

.container-preloader .animation-preloader .txt-loading .characters:nth-child(13):before {
	animation-delay: 2.4s;
}

.container-preloader .loader-section {
	background-color: #ffffff;
	height: 100%;
	position: fixed;
	top: 0;
	width: calc(50% + 1px);
}

.container-preloader .loader-section.section-left {
	left: 0;
}

.container-preloader .loader-section.section-right {
	right: 0;
}

/* Fade effect on loading animation */
.loaded .animation-preloader {
	opacity: 0;
	transition: 0.3s ease-out;
}

/* Curtain effect */
.loaded .loader-section.section-left {
	transform: translateX(-101%);
	transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

.loaded .loader-section.section-right {
	transform: translateX(101%);
	transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

/* Animation of the preloader */
@keyframes spinner {
	to {
		transform: rotateZ(360deg);
	}
}

/* Animation of letters loading from the preloader */
@keyframes characters {

	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}

	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

/* Laptop size back (laptop, tablet, cell phone) */
@media screen and (max-width: 767px) {

	/* Preloader */
	/* Spinner Loading */
	.container-preloader .animation-preloader .spinner {
		height: 8em;
		width: 8em;
	}

	/* Text Loading */
	.container-preloader .animation-preloader .txt-loading {
		font: bold 3.5em "Montserrat", sans-serif;
	}
}

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

	/* Prelaoder */
	/* Spinner Loading */
	.container-preloader .animation-preloader .spinner {
		height: 7em;
		width: 7em;
	}

	/*Loading text */
	.container-preloader .animation-preloader .txt-loading {
		font: bold 2em "Montserrat", sans-serif;
	}
}

.origin {
	text-decoration: none;
	font-size: 45px;
}


/* Starts From Here */

/* Header CSS Starts From Here */
header {
	position: fixed !important;
	top: 0;
	transition: all 0.35s ease;
	z-index: 999;
	width: 100%;
	padding: 35px 140px 0 140px;
	max-width: 1920px;
}

header.header-scrolled {
	background: #ffffff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	padding: 10px 140px 0 140px;
}

header .header-inside {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 40px;
	padding: 7px 60px 4px 60px;
	height: 68px;
}

header ul.header-menus {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

header ul.header-menus li {
	margin-right: 60px;
}

header ul.header-menus li.active a {
	color: #9e0203;
}

header ul.header-menus li.active a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background-color: #9e0203;
}

header ul.header-menus li a {
	color: #2e2e2e;
	font-weight: 600;
	position: relative;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

header ul.header-menus li a:hover {
	color: #9e0203;
}

header ul.header-menus li:last-child {
	margin-right: 0;
}

header .mobile-togle-bar {
	display: none;
}

/* Banner CSS Starts From Here */
.banner {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 1080px;
	display: flex;
	align-items: flex-end;
}

/* .banner-content {
	padding-right: 130px;
} */

.banner figure {
	margin-bottom: 0;
}

.banner .banner-content h4 {
	font-size: 36px;
	color: var(--white);
}

.banner .banner-content h3 {
	font-size: 42px;
	color: var(--white);
	font-weight: 200;
	line-height: 1.3;
}

.banner .banner-content h3 span {
	font-weight: 600;
}

.banner .banner-content h3 span span.white-line {
	width: 100px;
	height: 1px;
	display: inline-block;
	background-color: #fff;
}

.banner .banner-content h1 {
	color: var(--white);
	line-height: 1.1;
}

.banner .banner-content p {
	color: var(--white);
}

.banner .about-md {
	color: #fff;
	border-left: 2px solid #fff;
	padding-left: 15px;
}

.banner .about-md h5 {
	font-size: 28px;
	font-weight: 600;
}

.banner .about-md h6 {
	line-height: 1.5;
}

.banner .about-md h6 span {
	font-weight: 200;
}

.banner .md-info {
	display: flex;
	justify-content: space-around;
}

/* Transforming Education */
.transforming-education {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 880px;
	padding: 180px 0;
}

/* Base */
.vision-mission {
	background: #ffffff;
	font-family: "Poppins", sans-serif;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding: 60px 20px;
}

/* Vision */
.vision-mission {
	position: relative;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.vision-mission::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #9e0203;
	height: 48%;
	z-index: 1;
}

.vision-mission .main-container {
	position: relative;
	z-index: 1;
}

.vision-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: #ffffff;
}

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

.vision-content {
	padding: 60px;
}

.tag {
	font-size: 18px;
	font-weight: 600;
	display: block;
	margin-bottom: 10px;
}

.vision-content h2 {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 20px;
	color: #fff !important;
	font-weight: 600 !important;
}

.vision-mission .future-box {
	background-color: #fff;
	display: flex;
	border-radius: 16px;
	padding: 30px;
	align-items: center;
	box-shadow: 0px 0px 4px #e1e1e1;
}

.vision-mission .future-box .content {
	padding-left: 20px;
}

.vision-mission .future-box .content h6 {
	color: #9e0203;
	font-weight: 700;
	font-size: 18px;
}

.vision-mission .mt-100 {
	margin-top: -100px;
}

.vision-mission .mb-100 {
	margin-bottom: 100px;
}

.mission-image {
	z-index: 1;
	padding-right: 140px;
}

.mission-image figure {
	width: 673px;
	background-color: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
	padding: 15px;
}

/* Mission */
.mission-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding-left: 140px;
	position: relative;
	padding-bottom: 50px;
}

.mission-row::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	height: 60%;
	width: 50%;
	background-color: #9e0203;
}

.mission-content h2 {
	font-size: 34px;
	margin-bottom: 20px;
}

.mission-content h2 span {
	color: #9e0203;
}

.mission-content li {
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 5px;
	position: relative;
	padding-left: 15px;
}

.mission-content li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 42%;
	width: 4px;
	height: 4px;
	background-color: #9e0203;
}

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

.mission-content .tag {
	color: #9e0203;
	font-weight: 700;
}

.mission-content ul {
	padding-left: 0px;
}

/* About CGC Mohali CSS */
.about-cgc-mohali {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 1080px;
	padding: 80px 0;
}

.about-cgc-mohali p {
	max-width: 1160px;
	margin: 0 auto 20px auto;
}

/* CGC Nayab Savera CSS */
.cgc-naya-savera {
	background-color: #F2F3F7;
}

.cgc-naya-savera .row {
	align-items: stretch;
}

.cgc-naya-savera .pr-0 figure {
	height: 100%;
	margin: 0;
}

.cgc-naya-savera .pr-0 figure img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.cgc-naya-savera .row .bg-white {
	padding: 80px;
	box-shadow: 0px 0px 10px #ccc;
	display: flex;
	flex-direction: column;
}

.cgc-naya-savera .row .bg-white h2 {
	color: #9e0203 !important;
}

.cgc-naya-savera .row .bg-white h2 span {
	color: #2e2e2e;
}

/* CGC Naya Savera CSS Ends Here */

/* Events Campaigns CSS Starts From Here */

.events-campaigns {
	background-color: #9e0203;
}

.events-campaigns .text-center {
	padding: 0 100px;
}

.events-campaigns figure {
	position: relative;
	margin-bottom: 0;
	padding: 10px
}

.events-campaigns figure::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5)
}

.events-campaigns figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.events-campaigns figure figcaption {
	position: absolute;
	bottom: 0;
	padding: 5px 25px;
	color: #fff;
}

.events-campaigns figure figcaption p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.events-campaigns ul.slick-dots {
	padding-left: 0;
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	padding-top: 20px;
}

.events-campaigns li {
	margin-right: 7px;
}

.events-campaigns li:last-child {
	margin-right: 0;
}

.events-campaigns li button {
	text-transform: none;
	font-size: 0;
	border: none;
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 100px;
}

.events-campaigns li.slick-active button {
	width: 20px;
}

/* Events Campaigns CSS Ends Here */

/* Trending Blogs CSS Starts From Here */
.trending-blogs {
	background-color: #F2F3F7;
}

.trending-blogs .heading {
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 10px;
}

.trending-blogs .heading h2 {
	color: #9e0203 !important;
	position: relative;
}

.trending-blogs .heading h2::before {
	content: "";
	left: 0;
	bottom: -19px;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #323232;
	opacity: 0.8;
}

.trending-blogs .heading h2 span {
	color: #2E2E2E;
}

.trending-blogs .heading a {
	color: #3092DD;
	text-decoration: none;
	font-weight: 700;
}

.trending-blogs .main-blog-area {
	box-shadow: 0px 0px 10px #ccc;
	padding: 20px;
}

.trending-blogs .main-blog-area figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trending-blogs .main-blog-area .content p {
	padding-right: 0px;
	margin-bottom: 30px;
}

.trending-blogs .main-blog-area .content h5 a {
	color: #9e0203;
	font-weight: 600;
	text-decoration: none;
}

.trending-blogs .main-blog-area .d-flex {
	justify-content: space-between;
	align-items: center;
}

.trending-blogs .main-blog-area .d-flex p {
	margin-bottom: 0;
	font-size: 14px;
	color: #2E2E2E;
	opacity: 0.8;
}

.trending-blogs .main-blog-area .d-flex a {
	padding: 0;
	font-size: 14px;
	color: #9e0203;
	text-decoration: underline;
	font-weight: 600;
}

.trending-blogs .main-blog-area .d-flex a:hover {
	text-decoration: none;
}

.trending-blogs .flex-direction-column {
	flex-direction: column;
}

.trending-blogs .blog-list {
	display: flex;
	padding: 14px;
	box-shadow: 0px 0px 10px #ccc;
	margin-bottom: 20px;
}

.trending-blogs .blog-list:last-child {
	margin-bottom: 0;
}

.trending-blogs .blog-list figure {
	margin-bottom: 0;
	width: 302px;
	height: 170px;
}

.trending-blogs .blog-list figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trending-blogs .blog-list .content {
	padding-left: 30px;
	width: calc(100% - 302px);
}

.trending-blogs .blog-list .content span {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	color: #2e2e2e;
	opacity: 0.7;
}

.trending-blogs .blog-list .content p {
	font-size: 15px;
}

.trending-blogs .blog-list .content h6 a {
	color: #9e0203;
	font-weight: 600;
	text-decoration: none;
}

.trending-blogs .blog-list .content p {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* Trending Blogs CSS Ends Here */

/* Gallery CSS Starts From Here */
.gallery.pd-100 {
	padding-bottom: 50px;
}

.gallery h2 {
	color: #9e0203 !important;
}

.gallery .row {
	align-items: flex-start;
}

.gallery .row .pd-0 {
	padding: 0;
}

.gallery .sm-img {
	padding-bottom: 0;
}

.gallery figure {
	margin-bottom: 0;
	padding: 0px 10px 20px 10px;
	height: 318px;
}

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

figure.rt-fig {
	height: 657px;
}

.gallery .pd-btm-0 {
	padding-bottom: 0;
}

/* Gallery CSS Ends Here */

.connect-with-us-sec h2 {
	color: #9e0203 !important;
}

.connect-with-us-sec h2 span {
	color: #2E2E2E;
}

.connect-with-us-sec .sec_title {
	max-width: 900px;
	margin: 0 auto;
}

/* Blog CSS Starts from Here */
.banner.blog-banner {
	min-height: 480px;
	display: flex;
	justify-content: flex-start;
	position: relative;
}

.banner.blog-banner::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.banner.blog-banner .main-container.m-0 {
	margin: 0;
	position: relative;
}

.banner.blog-banner .main-container h1 {
	font-size: 48px !important;
	color: var(--white);
	margin-bottom: 60px;
}

.blogs-listing.trending-blogs .main-blog-area {
	margin-bottom: 25px;
}

.banner.blog-banner.blog-detail-banner .main-container h1 {
	font-size: 24px !important;
}

.blog-detail-content {
	padding: 0 200px;
}

.blogs-listing.blog-listing-detail h1 {
	font-size: 32px !important;
	color: #9e0203 !important;
}

.blogs-listing.blog-listing-detail p {
	text-align: justify;
}

.blog-listing figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner.blog-banner .blog-detail-content ul {
	padding-left: 0;
}

.blogs-listing.blog-listing-detail .blog-detail-content ul li,
.blogs-listing.blog-listing-detail .blog-detail-content ol li {
	margin-bottom: 6px;
}

.blogs-listing .blog-detail-content ol {
	padding-left: 0;
}

.blogs-listing .blog-detail-content ul {
	padding-left: 0;
}

.blogs-listing.blog-listing-detail .blog-detail-content h3 {
	font-weight: 600;
	font-size: 24px;
}

.blogs-listing.blog-listing-detail .mb-30 {
	padding: 0 200px;
}

.blogs-listing.trending-blogs .main-blog-area figure {
	width: 100%;
	min-height: 288px;
}

.blogs-listing.trending-blogs .main-blog-area .content h5 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}

.blogs-listing.trending-blogs .main-blog-area .content p:nth-of-type(1) {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.blogs-listing.blog-listing-detail .blog-detail-content h2 {
	font-size: 25px !important;
}

.transforming-education p span.mob-dsn {
	display: none;
}

/* Blog CSS Ends Here */


footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 140px;
}

footer p {
	font-size: 14px;
}

footer ul {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

footer ul li {
	margin-right: 20px;
}

footer ul li:last-child {
	margin-right: 0;
}


/* Responsive */
@media screen and (max-width:1899.98px) {
	.trending-blogs .blog-list figure {
		width: 292px;
		height: 160px;
	}

	.vision-mission::before {
		height: 50%;
	}
}

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

	.blogs-listing.trending-blogs .main-blog-area figure {
		min-height: 188px;
	}

	.vision-mission .future-box {
		padding: 22px;
	}

	.banner .md-info {
		justify-content: end;
	}

	.vision-mission::before {
		height: 50%;
	}

	.cgc-naya-savera .row .bg-white {
		padding: 60px;
	}

	.mission-image figure {
		width: 653px;
	}

	.mission-content {
		padding-right: 100px;
	}

	.trending-blogs .blog-list figure {
		width: 250px;
		height: 150px;
	}

	.trending-blogs .blog-list .content {
		padding-left: 25px;
		width: calc(100% - 250px);
	}
}

@media screen and (max-width:1699.98px) {
	.main-container {
		padding: 0 80px;
	}

	footer {
		padding: 8px 80px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content h2 {
		font-size: 24px !important;
	}

	.blogs-listing.blog-listing-detail h1 {
		font-size: 32px !important;
	}

	.mission-image {
		padding-right: 80px;
		margin-left: auto;
	}

	.banner {
		min-height: 980px;
	}

	header {
		padding: 50px 80px 0 80px;
	}

	.banner figure img {
		width: 620px;
	}

	.banner .md-info {
		justify-content: space-around;
	}

	.mission-row {
		padding-left: 80px;
	}

	.pd-100 {
		padding: 70px 0;
	}

	header.header-scrolled {
		padding: 10px 80px 0 80px;
	}
}

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

	.blog-detail-content {
		padding: 0 100px;
	}

	.vision-mission .future-box figure img {
		width: 70px;
		height: 70px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content h3 {
		font-size: 20px;
	}

	.blogs-listing.blog-listing-detail .mb-30 {
		padding: 0 100px;
	}

	.transforming-education {
		min-height: 680px;
		padding: 120px 0;
	}

	.vision-mission .mb-100 {
		margin-bottom: 70px;
	}

	.mission-row {
		padding-bottom: 40px;
	}

	.about-cgc-mohali {
		min-height: 740px;
	}

	.pd-100 {
		padding: 60px 0;
	}

	.vision-mission .future-box {
		padding: 15px;
	}

	.banner .banner-content h4 {
		font-size: 32px;
	}

	h1 {
		font-size: 72px !important;
	}

	.banner .banner-content h3 {
		font-size: 36px;
	}

	.about-cgc-mohali {
		min-height: 880px;
	}

	.cgc-naya-savera .row .bg-white {
		padding: 50px;
	}

	.mission-content {
		padding-right: 80px;
	}

	.mission-image figure {
		width: 623px;
	}

	.vision-mission::before {
		height: 50%;
	}

	.trending-blogs .blog-list .content span {
		margin-bottom: 5px;
	}
}

@media screen and (max-width:1499.98px) {
	.banner .md-info {
		justify-content: end;
	}

	header ul.header-menus li {
		margin-right: 40px;
	}

	.banner .banner-content h4 {
		font-size: 30px;
	}

	h1 {
		font-size: 70px !important;
	}

	.blogs-listing.blog-listing-detail h1 {
		font-size: 28px !important;
	}

	.banner .banner-content h3 {
		font-size: 34px;
	}

	.transforming-education {
		min-height: 480px;
		padding: 100px 0 140px 0;
	}

	h2 {
		font-size: 30px !important;
	}

	.about-cgc-mohali {
		min-height: 690px;
		padding: 60px 0;
	}

	.cgc-naya-savera .row .bg-white {
		padding: 40px;
	}

	header {
		padding: 40px 80px 0 80px;
	}

	.banner {
		min-height: 960px;
	}

	.mission-content {
		padding-right: 100px;
	}

	.mission-image figure {
		width: 573px;
	}

	.mission-row {
		padding-bottom: 50px;
	}

	.vision-mission .mb-100 {
		margin-bottom: 60px;
	}

	.banner figure img {
		width: 550px;
	}

	.banner {
		min-height: 880px;
	}

	.pd-100 {
		padding: 60px 0;
	}

	.vision-mission .future-box .content h6 {
		font-size: 17px;
		margin-bottom: 8px;
	}

	.vision-mission .future-box img {
		width: 65px;
	}

	header ul.header-menus li a {
		font-size: 15px;
	}

	.vision-mission .future-box .content p {
		font-size: 14px;
	}

	section.gallery.pd-100 {
		padding-bottom: 20px;
	}
}

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

	p {
		font-size: 15px;
	}

	.blog-detail-content ul li {
		font-size: 14px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content h3 {
		font-size: 19px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content h2 {
		font-size: 22px !important;
	}

	footer {
		padding: 6px 60px;
	}

	.banner figure img {
		width: 480px;
	}

	.banner {
		min-height: 800px;
	}

	header ul.header-menus li {
		margin-right: 30px;
	}

	.transforming-education {
		min-height: 440px;
		padding: 120px 0 140px 0;
	}

	.vision-mission .future-box img {
		width: 70px;
	}

	.mission-image {
		margin-left: auto;
	}

	.main-container {
		padding: 0 60px;
	}

	header {
		padding: 40px 60px 0 60px;
	}

	.mission-row {
		padding-left: 60px;
	}

	.mission-image figure {
		width: 520px;
	}

	.about-cgc-mohali {
		min-height: 660px;
		padding: 60px 0;
	}

	.vision-mission .future-box {
		padding: 12px;
	}

	.vision-mission .future-box img {
		width: 55px !important;
	}

	.vision-mission .future-box .content {
		padding-left: 15px;
	}

	.mission-row {
		padding-top: 40px;
	}

	.vision-mission::before {
		height: 49%;
	}

	.cgc-naya-savera .row .bg-white {
		padding: 35px;
	}

	.vision-mission .mt-100 {
		margin-top: -90px;
	}

	header ul.header-menus li a {
		font-size: 14px;
	}

	.trending-blogs .blog-list figure {
		width: 220px;
		height: 120px;
	}

	.trending-blogs .blog-list .content {
		padding-left: 20px;
		width: calc(100% - 220px);
	}

	.gallery figure {
		height: 238px;
	}

	figure.rt-fig {
		height: 496px;
	}

}

@media screen and (max-width:1299.98px) {
	p {
		font-size: 14px;
	}

	.vision-mission::before {
		height: 51%;
	}

	.banner figure img {
		width: 450px;
	}

	.banner {
		min-height: 740px;
	}

	h1 {
		font-size: 60px !important;
	}

	.banner .banner-content h4 {
		font-size: 26px;
	}

	.banner .banner-content h3 {
		font-size: 28px;
	}

	.mission-image figure {
		width: 465px;
	}

	.transforming-education {
		min-height: 400px;
		padding: 90px 0 110px 0;
	}

	.about-cgc-mohali {
		min-height: 620px;
	}

	.vision-mission .future-box {
		padding: 10px;
	}

	.vision-mission .future-box .content h6 {
		font-size: 16px;
	}

	.vision-mission .future-box img {
		width: 47px;
	}

	.mission-row {
		padding-top: 30px;
	}

	.cgc-naya-savera .row .bg-white {
		padding: 30px;
	}

	header .header-inside {
		padding: 7px 40px 4px 40px;
	}

	header.header-scrolled {
		padding: 10px 40px 0 40px;
	}

	.mission-row {
		padding-bottom: 20px;
	}
}

@media screen and (max-width: 1199.98px) {
	header {
		padding: 30px 40px 0 40px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content ol li {
		font-size: 14px;
	}

	.blogs-listing.trending-blogs .main-blog-area figure {
		min-height: 150px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content h2 {
		font-size: 18px !important;
	}

	.blogs-listing.blog-listing-detail .mb-30 {
		padding: 0 0px;
	}

	.blogs-listing.blog-listing-detail .blog-detail-content h3 {
		font-size: 17px;
		font-weight: 600;
	}

	.blogs-listing.blog-listing-detail h1 {
		font-size: 24px !important;
	}

	.blog-detail-content {
		padding: 0 0px;
	}

	.main-container {
		padding: 0 40px;
	}

	header .logo a img {
		width: 200px;
	}

	header ul.header-menus li {
		margin-right: 20px;
	}

	header .header-inside {
		padding: 5px 40px 4px 40px;
	}

	.banner .banner-content h4 {
		font-size: 24px;
	}

	h1 {
		font-size: 54px !important;
	}

	.banner .banner-content h3 {
		font-size: 26px;
	}

	.banner .about-md h5 {
		font-size: 22px;
	}

	.banner figure img {
		width: 400px;
	}

	.banner {
		min-height: 640px;
	}

	h2 {
		font-size: 26px !important;
	}

	.mb-30 {
		margin-bottom: 20px;
	}

	.vision-mission .mb-100 {
		margin-bottom: 50px;
	}

	.mission-image {
		padding-right: 40px;
	}

	.mission-content {
		padding-right: 40px;
	}

	.about-cgc-mohali {
		min-height: 520px;
		padding: 50px 0;
	}

	.pd-100 {
		padding: 50px 0;
	}

	.trending-blogs .blog-list .content h6 a {
		font-size: 15px;
	}

	.gallery h2 {
		color: #9e0203 !important;
	}

	.gallery figure {
		height: 248px;
	}

	figure.rt-fig {
		height: 516px;
	}

	.mission-content li {
		font-size: 14px;
	}

	.vision-content {
		padding: 40px;
	}

	.vision-mission::before {
		height: 52%;
	}

	.events-campaigns figure figcaption {
		padding: 5px 15px;
	}

	.events-campaigns figure figcaption h4 {
		font-size: 18px;
	}

	.events-campaigns li {
		margin-right: 5px;
	}

	.pd-100 {
		padding: 40px 0;
	}

	.events-campaigns ul.slick-dots {
		padding-top: 0px;
	}

	.mb-40 {
		margin-bottom: 20px !important;
	}

	.mission-row {
		padding-left: 40px;
	}

	.trending-blogs .blog-list .content {
		width: calc(100% - 180px);
	}

	.trending-blogs .blog-list figure {
		width: 180px;
		height: 90px;
	}

	.trending-blogs .blog-list {
		padding: 12px;
		margin-bottom: 18px;
	}

	footer {
		padding: 6px 40px;
	}
}

@media (max-width: 1049.98px) {
	.vision-mission::before {
		height: 55%;
	}
}

@media (max-width: 991.98px) {

	.cursor {
		cursor: none;
	}

	.vision-row,
	.mission-row {
		grid-template-columns: 1fr;
	}

	.vision-content,
	.mission-content {
		padding: 40px 25px;
	}

	header.header-height {
		height: 100%;
	}

	header .mobile-togle-bar {
		display: block;
		z-index: 2;
	}

	header ul.header-menus {
		position: absolute;
		opacity: 0;
	}

	header ul.header-menus.shuffle {
		display: flex;
		align-items: center;
		margin-bottom: 0;
		width: 100%;
		flex-direction: column;
		left: 0;
		margin-left: 0;
		padding-left: 0;
		background-color: #fff;
		top: 0;
		text-align: center;
		height: 100vh;
		justify-content: center;
		opacity: 1;
	}

	header ul.header-menus li {
		margin-right: 0;
		padding-top: 50px;
	}

	header ul.header-menus li a {
		font-size: 32px;
		font-family: "Dancing Script", serif;
	}

	/* ===== HAMBURGER ===== */
	.mobile-togle-bar {
		width: 32px;
		cursor: pointer;
	}

	.mobile-togle-bar span {
		display: block;
		height: 3px;
		background: #2e2e2e;
		margin: 6px 0;
		border-radius: 3px;
		transition: all 0.5s ease;
	}

	/* Hamburger → Cross */
	.mobile-togle-bar.togglechange span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	.mobile-togle-bar.togglechange span:nth-child(2) {
		opacity: 0;
	}

	.mobile-togle-bar.togglechange span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	.mobile-togle-bar.togglebehaviour span:nth-child(1) {
		transform: none;
	}

	.mobile-togle-bar.togglebehaviour span:nth-child(2) {
		opacity: 1;
	}

	.mobile-togle-bar.togglebehaviour span:nth-child(3) {
		transform: none;
	}

	.vision-mission .mt-100 {
		margin-top: 30px;
	}

	.vision-mission::before {
		height: 60%;
	}

	.transforming-education {
		background-image: url('../images/transforming-education-tab.webp') !important;
	}

	.transforming-education {
		min-height: 800px;
		padding: 90px 0 110px 0;
	}

	.vision-content {
		padding: 30px 0px 00px 0;
	}

	.mission-content {
		padding: 5px 0px 25px 0;
	}

	.mission-row::before {
		background-color: transparent;
	}

	.mission-image figure {
		width: auto;
	}

	.trending-blogs .main-blog-area {
		margin-bottom: 25px;
	}

	.trending-blogs .blog-list {
		padding: 16px;
		margin-bottom: 20px;
	}

	.vision-mission .future-box {
		padding: 20px;
	}

	.vision-mission .future-box img {
		width: 60px;
	}

	.mission-row {
		padding-bottom: 30px;
	}

	.gallery figure {
		height: auto;
	}

	.gallery .sm-img {
		padding-bottom: 20px;
	}

	figure.pd-left-30.pd-btm-0 {
		padding-bottom: 20px;
	}

	.banner figure {
		text-align: center;
	}

	.banner {
		min-height: 1040px;
	}

	.banner .ordr-3-sm {
		order: 3;
	}

	.banner .md-info {
		justify-content: flex-start;
		margin-top: 10px;
	}

	.banner figure img {
		width: 500px;
	}

	.col-lg-6.col-md-12.pr-0 {
		padding-left: 0;
	}

	.banner .md-info {
		position: absolute;
	}

	.events-campaigns .text-center {
		padding: 0 40px;
	}

	.banner .row {
		position: relative;
	}

	footer p {
		font-size: 13px;
	}

	.about-cgc-mohali {
		background-image: url('../images/cgc-tab.webp') !important;
	}
}

@media (max-width: 819.98px) {
	.vision-mission::before {
		height: 59%;
	}
}

@media (max-width: 767.98px) {

	header {
		padding: 30px 20px 0 20px;
	}

	header .header-inside {
		padding: 5px 20px 4px 20px;
		height: 56px;
	}

	header .logo a img {
		width: 160px;
	}

	.events-campaigns figure figcaption h4 {
		font-size: 16px;
		text-shadow: 0px 0px 10px #000;
	}

	.events-campaigns figure figcaption p {
		font-size: 14px;
		text-shadow: 0px 0px 10px #000;
		-webkit-line-clamp: 1;
		line-clamp: 1;
	}

	.events-campaigns figure figcaption p {
		margin-bottom: 5px;
	}

	.read_more_csr_btn {
		font-size: 14px;
		margin-bottom: 15px !important;
	}

	.blogs-listing.blog-listing-detail h1 {
		font-size: 20px !important;
	}

	.mobile-togle-bar {
		width: 30px;
	}

	.main-container {
		padding: 0 20px;
	}

	.banner .banner-content h4 {
		font-size: 20px;
	}

	h1 {
		font-size: 42px !important;
	}

	.banner .banner-content h3 {
		font-size: 22px;
	}

	.banner .about-md h5 {
		font-size: 20px;
	}

	.banner figure img {
		width: 360px;
	}

	.banner {
		min-height: 840px;
	}

	.banner figure {
		text-align: right;
	}

	.banner .about-md {
		padding-left: 12px;
	}

	.banner .about-md h6 {
		font-size: 14px;
	}

	.transforming-education {
		min-height: 700px;
		padding: 30px 0;
	}

	.vision-mission::before {
		height: 60%;
	}

	.mission-row {
		padding-left: 20px;
	}

	.events-campaigns .text-center {
		padding: 0 0px;
	}

	.trending-blogs .blog-list {
		flex-direction: column;
	}

	.trending-blogs .blog-list figure {
		width: 100%;
		height: auto;
		margin-bottom: 15px;
	}

	.trending-blogs .blog-list .content {
		width: 100%;
		padding-left: 0;
	}

	header.header-scrolled {
		padding: 10px 20px 0 20px;
	}

	.trending-blogs .main-blog-area .content p {
		padding-right: 0;
		margin-bottom: 20px;
	}

	footer {
		padding: 6px 20px;
	}

	.cgc-naya-savera .row .bg-white {
		padding: 20px;
	}

	.banner.blog-banner::before {
		background-color: rgba(0, 0, 0, 0.7);
	}
}

@media (max-width: 649.98px) {
	.vision-mission::before {
		height: 61%;
	}
}

@media (max-width: 619.98px) {

	.transforming-education p.hide_in {
		display: none;
	}

	.transforming-education p span.inline {
		display: none;
	}

	.transforming-education p span.mob-dsn {
		display: inline !important;
	}
}

@media (max-width: 575.98px) {

	.vision-mission .future-box {
		flex-direction: column;
		text-align: center;
	}

	.transforming-education {
		background-image: url('../images/transforming_education.webp') !important;
	}

	.vision-content h2,
	.mission-content h2 {
		font-size: 26px;
	}

	.banner .about-md h5 {
		font-size: 18px;
	}

	h2 {
		font-size: 24px !important;
	}

	.vision-mission::before {
		height: 65%;
	}

	.banner figure {
		margin-left: 40px;
	}

	.banner-content {
		padding-right: 20px;
	}

	header ul.header-menus li a {
		font-size: 26px;
	}

	.about-cgc-mohali {
		background-image: url('../images/cgc-mob.webp') !important;
		min-height: 720px;
		padding: 30px 0;
	}

	.events-campaigns figure figcaption {
		padding: 2px 10px;
	}
}

@media (max-width: 499.98px) {
	.vision-mission::before {
		height: 66.5%;
	}
}

@media (max-width: 449.98px) {
	.vision-mission::before {
		height: 67%;
	}
}

@media (max-width: 399.98px) {
	.banner-content {
		padding-right: 30px;
	}

	.transforming-education {
		min-height: 760px;
	}

	.vision-mission::before {
		height: 68%;
	}
}

@media (max-width: 379.98px) {
	.vision-mission::before {
		height: 69%;
	}

	.banner-content {
		padding-right: 80px;
	}
}

@media (max-width: 349.98px) {
	.vision-mission::before {
		height: 70%;
	}
}