* {
	margin: 0;
	padding:0
}
:root{
	--primary-color: rgba(13, 130, 249, 1);
	--black: #000000;
	--white: #ffffff;
	--dark: #1f2b38;
	--gradient-background: linear-gradient(90deg, #21B6C4 0%, #5957D7 100%);
}

html {
	font-size: 100%; 
}
body {
	font-family: "Montserrat", sans-serif;
	padding: 0 ;
	box-sizing: border-box;
	width: 100%;
}
a,
a:hover,
button {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
	text-decoration: none;
}
a {
	color: var(--black);
}
p, h1, h2, h3, h4, h5, h6 {
	color: var(--black);
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
	color: var(--primary-color);
}
dl, ol, ul{
	list-style: none;
	margin-bottom: 0;
}
header{
	margin-bottom: 120px;
}
.topbar{
	background: var(--gradient-background);
}
.topbar .topbar-list{
	display: flex;
	justify-content: flex-end;
	padding: 8px 0;
}
.topbar .topbar-list li{
	padding-left: 25px;
}
.topbar .topbar-list li a{
	font-size: 1rem;
	font-weight: 500;
	color: var(--white);
	text-transform: uppercase;
}
.banner-style-one-area{
	margin-top: 160px;
	margin-bottom: 30px;
	
}
.navbar{
	box-shadow: 0 8px 25px 0 rgb(0 0 0 / 4%) !important;

}
.card:hover .card-img-overlay{
	background: rgba(0, 0, 0, 0.1) !important;
}
.testimonial-content{
	min-height: 480px;;
}
.banner-style-one .content .information{
	margin-top: 60px;
}
.banner-style-one .content .information h1{
	font-size: 3.75rem;
	font-weight: 700;
}
.banner-style-one .content .information h1 span{
  background: linear-gradient(180deg, rgba(33, 182, 196, 1) 0%, rgba(89, 87, 215, 1) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.button a {
	display: block;
	padding: 9px 20px;
	border-radius: 5px;
	font-size: 1rem;
	border-radius: 30px;
	color: var(--white);
	font-weight: 500;
	width:fit-content;
	border: none;
	background: var(--primary-color) ;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.button a:hover {
	background: var(--dark);
}
.button a::after {
	position: absolute;
	top: inherit;
	right: inherit;
	bottom: inherit;
	left: -5%;
	content: "";
	height: 150px;
	width: 115%;
	z-index: -1;
	background-color: var(--dark);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-transform: translateY(-45%) skew(25deg) scale(0);
	transform: translateY(-45%) skew(25deg) scale(0);
}

.button a:hover::after {
	-webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
	transform: translateY(-45%) skew(25deg) scale(1.2);
}
.banner-one-thumb {
	position: relative;
	padding-bottom: 40px;
}
.strategy {
	position: absolute;
	top: 0;
	left: 90px;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: opacity 1s;
}
.strategy.active {
	opacity: 1;
}

.mask {
	height: 55px;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .mask span {
	display: block;
	box-sizing: border-box;
	position: absolute;
	top: 100px;
	padding-bottom: 6px;
	background-size: 100% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-repeat: no-repeat;
	background-image: linear-gradient(45deg, #000000 50%, #000000);
	font-weight: 600;
	font-size: 1.3rem;
  }
  .mask span[data-show] {
	transform: translateY(-100%);
	transition: .5s transform ease-in-out;
  }
  .mask span[data-up] {
	transform: translateY(-200%);
	transition: .5s transform ease-in-out;
  }
.about-section{
	background: rgb(255, 255, 255);
	padding:150px 0;
}
.short-about{
	padding-right: 100px;
	margin-top:20px
}
.short-about h2{
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 24px;
}
.short-about p{
	font-size: 1rem;
	margin-bottom: 24px;
}
.video-container{
	display: flex;
	justify-content: space-evenly;
	position: relative;
	width: 100%;
	max-width: 600px;
}
.video-container img{
	border-radius: 10px;
	width: 100%;
	height: auto;
	cursor: pointer;
}
.video-container video {
	display: none;
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.leading-school{
	margin:50px 0;
}
.school-logos {
	overflow: hidden;
	padding: 30px 0px;
	white-space: nowrap;
	position: relative;
}
.school-logos:before, .school-logos:after {
	position: absolute;
	top: 0;
	content: '';
	width: 250px;
	height: 100%;
	z-index: 2;
  }
  .school-logos:before {
	left: 0;
	/*   background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255)); */
  }
  .school-logos:after {
	right: 0;
	/*   background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255)); */
  }
  .logo_items {
	display: inline-block;
	animation: 15s slides infinite linear;
  }
  .school-logos:hover .logo_items {
	animation-play-state: paused;
  }
  .logo_items img {
	height: auto;
	margin:0 10px;
  }
  @keyframes slides {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
  }


  .title h2{
	font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .title p{
	font-size: 1rem;
    margin-bottom: 24px;
  }

.services-section{
	background: rgba(175, 212, 255, 1);	padding:150px 0 90px 0;
}
.services-box{

	background: rgb(237, 239, 243);
	padding: 20px 10px 30px 10px;
	border-radius: 20px;
	text-align: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.services-box img{
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
.services-box h3{
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 15px;
}
.services-box p{
	margin-bottom: 30px;
}
.services-box .button{
	display: inline-block;
}
.offer-section{
	padding:100px 0;
}
.modules-section{
    background: rgba(175, 212, 255, 1);
		padding: 100px 0;
}
.modules-section .title{
	max-width: 900px;
	margin: 0 auto
}
.module-items .card {
    position: relative;
    color: white;
    overflow: hidden;
    padding: 100px 20px;
	border-radius: 25px;
	border: none;
    transition: transform 0.6s ease-in-out;
}
.module-items .card-img {
    transition: transform 0.6s ease-in-out;
    height: 120px;
	width: 120px;
	margin-left: 70px;
    /* max-height: 400px;
    object-fit: cover; */
}
.module-items .card-img-overlay{
    background: rgba(144, 144, 144, 0.156);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: background 0.6s ease-in-out;
}
.module-items .card:hover .card-img {
    transform: scale(1.1);
}
.module-items .card-title {
    font-size: 1.063rem;
    color: #000000;
    width: fit-content;
    transition: transform 0.6s ease-in-out;
	font-weight: 600;
}
.module-items .card-title i{
	padding-left: 5px;
	transition: 0.6s all;
}
.module-items .card-title:hover i{
	padding-left: 10px;
}
.mt-8{
	margin-top: 4rem;
}
.erp-section{
	position: relative;
	padding: 100px 0;
}
.erp-section .section_bg_img{
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.erp-item{
	background: rgba(175, 212, 255, 1);
	padding: 40px 30px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 20px;
	display: inline-block;
	transition: 0.5s all;
	min-width: 80%;
}
.erp-item.bg-2{
	background: rgba(255, 210, 168, 1);
}
.erp-item.bg-3{
	background: rgba(251, 217, 244, 1);
}
.erp-item.bg-4{
	background: rgba(137, 207, 196, 1);
}
.erp-item h2{
	font-size: 3.75rem;
	font-weight: 600;
	color: var(--primary-color);
}
.erp-item h6{
	font-size: 1.25rem;
}
.erp-item:hover{
	background: var(--primary-color);
}
.erp-item:hover h2{
	color: var(--white);
}
.erp-item:hover h6{
	color: var(--white);
}

.testimonials-section{
	padding: 100px 10px 140px 10px;
	background: rgba(255, 210, 168, 1);
	overflow: hidden;
}
.mySwiper{
	overflow: visible;
	margin-top:50px;
}
.swiper-container {
	width: 80%;
	max-width: 1200px;
}
.swiper-slide {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

/* .testimonial-content {
	align-items: center;
	max-width: 600px;
} */
.testimonial-content .profile-card{
	display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.testimonial-content img {
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
	margin-right: 10px;
}
.testimonial-content h3 {
	color: var(--primary-color);
	margin: 0;
	font-size: 1.25rem;
    font-weight: 600;
}
.testimonial-content .d-flex{
	margin-bottom: 20px;
}
.testimonial-content .d-flex h6 {
	color: var(--black);
	margin: 5px 0 0;
	font-size: 1rem;
}
.testimonial-content p {
	color: var(--black);
	font-size: 0.875rem;
	margin-bottom: 20px;
}
.swiper-pagination {
	bottom: -50px !important;
}
.swiper-pagination-bullet{
	background: #e4e4e4;
	opacity: 1;
	padding: 7px;
}
.swiper-pagination-bullet-active{
	background: rgba(38, 50, 56, 1);
	padding: 6px 12px;
    border-radius: 20px;
}

.request-section{
	padding: 100px 0;
}
.request-banner {
	background: url('../images/demo-req-bg.jpg') no-repeat center center;
	background-size: cover;
	width: 80%;
	max-width: 1200px;
	padding: 50px;
	border-radius: 15px;
	text-align: center;
	position: relative;
	color: white;
	margin:0 auto;
}
.banner-content {
	/* background-color: rgba(0, 0, 0, 0.5); */
	padding: 20px;
	border-radius: 15px;
}
.request-banner h2 {
	font-size: 1.75rem;
	margin: 0 0 15px 0;
	font-weight: 700;
	color: var(--white);
}
.request-banner p {
	/* font-size: 1.2em; */
	margin: 0 0 15px 0;
	color: var(--white);
}
/*.request-banner .button a{
	background: rgba(89, 87, 215, 1);
}*/
.footer {
	background-color: rgba(34, 34, 34, 1);
	color: white;
	padding: 100px 0 40px 0;
}
.footer a {
	color: white;
	text-decoration: none;
}
.footer a:hover {
	text-decoration: underline;
}
.footer .heading{
	color: var(--white);
	font-weight: 600;
	margin-bottom: 20px;
}
.footer p{
	color: var(--white);
}
.social-icons a {
	color: white;
	margin-right: 10px;
}
.social-icons a:hover {
	color: #ccc;
}
.footer .grid-two-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

/********* M-SCHOOL PAGE CSS*******/
.breadcrumbs{
	padding: 60px 0 150px 0;
}
.breadcrumbs h1{
	font-size: 3.75rem;
    font-weight: 700;
}
.m-school-breadcrumbs {
	text-align: center;
}
.m-school-breadcrumbs h1 span{
	text-align: center;
	background: linear-gradient(180deg, #21B6C4 0%, #5957D7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.m-school-breadcrumbs h1{
	margin-bottom: 40px;
	color: var(--black) !important;
}
.secondary-btn{
	padding: 10px 20px 10px 20px;
	gap: 10px;
	border-radius: 7px;
	background: linear-gradient(92.25deg, #22B5C4 0.55%, #5957D7 112.03%);
	border: 1px solid rgba(0, 0, 0, 1);
	filter: drop-shadow(1px 1px 0px #000);
    box-shadow: 3px 3px 0px #5957D7;
	z-index: 9;
    position: relative;
	transition: .5s all;
}
.secondary-btn a{
	color: var(--white);
	font-size: 1rem;
	font-weight: 600;
}
.secondary-btn:hover{
	background: var(--black);
	box-shadow: 3px 3px 0px var(--primary-color);
}
.title-breadcrumb{
	position: relative;
}
.icon-images-1{
	position: absolute;
    top: -93px;
	left: 50%;
}
.icon-images-2{
	position: absolute;
    top: 30%;
	left: 10%;
}
.icon-images-3{
	position: absolute;
    top: 30%;
	right: 10%;
}
.page-about{
	margin-bottom: 100px;
	position: relative;
}
.about-mschool{
	max-width: 550px;
    padding-left: 15px;
	text-align: justify;
}
.about-mschool h4{
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 0;
}
.about-mschool h3{
	font-weight: 700;
	font-size: 1.75rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}
.about-mschool p, .about-features p{
	line-height: 33px;
}
.about-features{
	padding-top: 20px;
    max-width: 1100px;
    text-align: justify;
}
.key-features{
	margin-bottom: 70px;
	position: relative;
}
.feature-item{
	border: 1px solid rgba(184, 158, 94, 1);
	border-radius: 10px;
	margin: 12px 12px 25px 12px;
	background: rgba(255, 237, 193, 1);
}
.feature-item .feature-img{
	padding: 20px;
	text-align: center;
}
.feature-item .featute-title{
	background: var(--white);
	padding: 12px 7px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0px;
    border-radius: 0px 0px 10px 10px;

}
.max-w-1200{
	max-width: 1200px;
	margin-top: 50px;
}
.feature-item.bg-2{
	background: rgba(202, 248, 255, 1);
	border: 1px solid rgba(149, 191, 198, 1);
}
.feature-item.bg-3{
	background: rgba(255, 224, 230, 1);
	border: 1px solid rgba(203, 128, 143, 1);
}
.feature-item.bg-4{
	background: rgba(227, 227, 252, 1);
	border: 1px solid rgba(148, 148, 211, 1);
}
.bg-icon{
	position: absolute;
	left: 0;
	bottom: 10%;
	z-index: -1;
}
.bg-icon-2{
	position: absolute;
	right: 0;
	top: 30%;
	z-index: -1;
}
.what-you-get{
	margin-bottom: 50px;
	position: relative;
}
.what-you-get-items {
    list-style: none;
    padding-left: 0; /* Remove default padding */
	margin-top: 50px;
}
.what-you-get-items li {
    line-height: 30px;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px; /* Add padding to make space for the pseudo-element */
}
.what-you-get-items li::before {
	content: '•';
    font-size: 4.375rem;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -6px;
}
.bg-icon-3{
	position: absolute;
	left: 0;
	top: 14%;
	z-index: -1;
}
.breadcrumb-primary{
	position: relative;
	background: rgba(0, 131, 146, 1);
	margin-top: -39px;
	padding: 150px 0 150px 0;
	overflow: hidden;
}
.breadcrumb-primary .title-breadcrumb h1{
	color: var(--white);
}
.breadcrumb-primary .title-breadcrumb p{
	color: var(--white);
	line-height: 30px;
	max-width: 700px;
}
.bcrm-icon-1{
	position: absolute;
    top: -80px;
    left: 0;
}
.bcrm-icon-2{
	position: absolute;
	top: -12px;
    left: 350px;
}
.bcrm-icon-3{
	position: absolute;
    top: 70px;
    left: 290px;
}
.brcrmb-bg-icon{
	position: absolute;
	left: 0;
	bottom: 8%;
}
.brcrmb-bg-icon-2{
	position: absolute;
	right: -180px;
    bottom: 4%;
}

.key-modules{
	position: relative;
	padding: 70px 0;
}
.module-bg-icon, .module-bg-icon-2, .module-bg-icon-3{
	z-index: -1;
}
.module-bg-icon{
	position: absolute;
	left: 0;
    top: 20%;
}
.module-bg-icon-2{
	position: absolute;
	right: 0;
    top: 50%;
}
.module-bg-icon-3{
	position: absolute;
	left: 0;
    bottom: 7%;
}
.breadcrumb-secondary{
	position: relative;
	background: var(--white);
	margin-top: -39px;
	padding: 240px 0 240px 0;
	overflow: hidden;
}
.p-change{
	left: 525px;
}
.bottom--12{
	bottom: -12%;
}
.junior-page-school{
	background: rgb(255, 255, 255);
	padding: 50px 0 20px 0;
}
.junior-about{
	padding: 100px 0 120px 0;
}
.an-justify{
	max-width: 1100px;
	margin:0 auto;
}
.junior-about .title p{
	line-height: 30px;
}
.inner-btn{
	background: var(--white);
	margin-bottom: 20px;
}
.inner-btn a{
	color: var(--black);
}
.inner-btn:hover a{
	color: var(--white);
}
.feature-card {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	/* padding: 15px; */
	display: flex;
	align-items: center;
	max-width: 350px;
	margin: 15px;
	margin-bottom: 45px;
}
.feature-icon {
	/* width: 60px;
	height: 60px; */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	background-color: #f8d7da;
    padding: 20px;
    border-radius: 8px 0px 0px 8px;
}
.feature-text {
	flex: 1;
	font-size: 1rem;
	font-weight: 500;
	color: var(--black);
}
.card-red{
	border: 1px solid rgba(203, 128, 143, 1)
}
.card-red .feature-icon {
	background: rgba(255, 224, 230, 1);
}
.card-blue{
	border: 1px solid rgba(148, 148, 211, 1);
}
.card-blue .feature-icon {
	background: rgba(227, 227, 252, 1);
}
.card-cyan{
	border: 1px solid rgba(149, 191, 198, 1);
}
.card-cyan .feature-icon {
	background: rgba(202, 248, 255, 1);
}

.testimonials{
	position: relative;
	padding: 100px 0;
}
.an-body{
	position: relative;
}
.light_bg{
	position: absolute;
	top: 275%;
	transform: translateY(-100px);
    left: 0;
    max-width: 100%;   
}

.testimonial_swiper {
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: auto;
}
.testimonial_swiper .swiper-slide {
	display: flex;
	flex-direction: row;
	border-radius: 0px 10px 10px 0px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	padding: 0;
}
.slide-content {
	display: flex;
	width: 100%;
}
.slide-text {
	padding: 90px 30px;
	background: white;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.slide-text p {
	font-size: 0.875rem;
    line-height: 30px;
    margin-bottom: 20px;
}
.slide-text .name {
	font-weight: bold;
	color:  var(--primary-color);
}
.slide-text .designation {
	color: var(--black);
}
.slide-image {
	background: #f9c842;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Swiper Navigation */
.swiper-button-prev, .swiper-button-next {
	background: rgba(255, 255, 255, 0) !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	color: #000;
}
.testimonials .swiper-pagination-bullet {
	background: #d8cccc;
	opacity: 1;
}
.testimonials .swiper-pagination-bullet-active {
	background: #000 !important;
}
.swiper-button-prev:after, .swiper-button-next:after {
	content: "";
}
.swiper-button-prev {
	left: -20px;
}
.swiper-button-next {
	right: -20px;
}
.testimonials .swiper {
	overflow: unset;
}
.testimonials .swiper-pagination {
	bottom: 20px !important;
}

.f-change{
	left: 350px;
}
.m-change{
	left: 730px;
}
.m-change-2{
	left: 410px;
}
.title-breadcrumb h1 span{
	text-align: center;
	background: linear-gradient(180deg, #21B6C4 0%, #5957D7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.support-title{
	margin-left: 180px;
}
.s-change{
	position: absolute;
	top: 15px;
	left: -100px;
}
.s-change-2{
	left: 380px;
}
.s-change-2{
	left: 380px;
}
.s-change-3{
	left: 570px;
}
.support-center{
	padding: 10px 0 90px 0;
}
.support-center .title{
	max-width: 800px;
	margin: 0 auto;
}
.support-center .title p{
	line-height: 30px;
}
.support-card{
	border: 1px solid rgba(184, 158, 94, 1);
	border-radius: 10px;
	margin:8px;
	margin-bottom: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%; /* Set the height to 100% of the parent container */
}
.support-card-icon{
	background: rgba(255, 237, 193, 1);
	text-align: center;
	padding: 30px 0;
}
.support-card-details{
	padding: 10px 10px 0 10px;
}
.support-card-details h2{
	text-align: center;
	font-size: 1.75rem;
	color: var(--black);
	font-weight: 700;
	padding-bottom: 5px;
}
.support-card-details ul{
	list-style: disc;
	line-height: 30px;
	color: var(--black);
}
.support-card.bg-2{
	border: 1px solid rgba(149, 191, 198, 1)
}
.support-card.bg-2 .support-card-icon{
	background: rgba(202, 248, 255, 1);
}
.ask-section{
	padding: 20px 0px 70px 0px;
}
.brdcrmb-contact{
	background: rgba(0, 131, 146, 1);
}
.brdcrmb-contact .title-breadcrumb{
	margin-left: 80px;
}
/* .title-breadcrumb h1{
	color: var(--white);
} */
.c-change{
	top: 0;
    left: -92px;
}
.c-change-2{
	left: 650px;
}
.contact-section{
	position: relative;
}
.contact-section form{
	width: 100%;
    max-width: 470px;
}
.form-group{
	margin-bottom: 20px;
}
.form-control{
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 1);
	height: 43px;
	font-size: 1.125rem;
	font-family: "IBM Plex Sans", sans-serif;
}
.form-control:focus{
	box-shadow: none;
	border: 2px solid var(--primary-color)
}
textarea.form-control{
	min-height: 90px;
}
.select-wrapper {
	position: relative;
	user-select: none;
	width: 100%;
}
.select {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 1);
	margin-bottom: 20px;
}
.select__trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 22px 0 15px;
	font-size: 1.25rem;
	font-weight: 300;
	color: #212529;
	height: 43px;
	font-size: 1.125rem;
	font-family: "IBM Plex Sans", sans-serif;
	background: #ffffff;
	cursor: pointer;
	border-radius: 5px;
}
.custom-options {
	position: absolute;
	display: block;
	top: 100%;
	left: 0;
	right: 0;
	border: 1px solid var(--black);
	border-top: 0;
	background: #fff;
	transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 2;
	border-radius: 5px;
}
.select.open .custom-options {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.custom-option {
	position: relative;
	display: block;
	padding: 0 15px 0 15px;
	font-size: 1rem;
	font-weight: 300;
	color: var(--black);
	line-height: 43px;
	height: 43px;
	cursor: pointer;
	transition: all 0.5s;
}
.custom-option:hover {
	cursor: pointer;
	background-color: #b2b2b2;
}
.custom-option.selected {
	color: #ffffff;
	background-color: #305c91;
}
.arrow {
	position: relative;
	height: 15px;
	width: 15px;
}
.arrow::before, .arrow::after {
	content: "";
	position: absolute;
	bottom: 0px;
	width: 0.15rem;
	height: 100%;
	transition: all 0.5s;
}
.arrow::before {
	left: -5px;
	transform: rotate(-45deg);
	background-color: var(--black);
}
.arrow::after {
	left: 5px;
	transform: rotate(45deg);
	background-color: var(--black);
}
.open .arrow::before {
	left: -5px;
	transform: rotate(45deg);
}
.open .arrow::after {
	left: 5px;
	transform: rotate(-45deg);
}
.submit-btn{
	padding: 10px 20px 10px 20px;
    gap: 10px;
    border-radius: 7px;
    background: linear-gradient(91.3deg, #21B6C4 0%, #5957D7 101.06%);
    border: none;
	width: 100%;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
    z-index: 9;
    position: relative;
    transition: .5s all;
}
.contact-section{
	padding: 120px 0;
}
.ml-auto{
	margin-left: auto;
}
.an-bg-dark{
	background-color: var(--black);
}
.btn-close{
	filter: invert(1);
	opacity: 1;
}
.vertical-center{
	display: grid;
    align-content: center;
	text-align: center;
}
.offcanvas-body div h5{
	font-size: 1.438rem;
	font-weight: 700;
	color: var(--white);
}
.accessibility-btn{
	border: 2px solid var(--white);
	border-radius: 7px;
	font-weight: 800;
}
.color-theme .btn{
	height: 30px;
	width: 30px;
	border-radius: 50%;
	border: 1px solid var(--white)
}
.btn_active {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}
.bottom-90{
	bottom: -79px;
    top: auto;
}
.contact-icon{
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}
.contact-icon i{
	background-color: var(--primary-color);
    color: #fff;
    font-size: 23px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.max-w-1150{
	max-width: 1150px;
    margin: 0 auto;
}
.contact-address{
	padding: 100px 0 40px 0;
}
.request-close{
	filter: invert(0);
	opacity: 1;
}
.request-close:focus{
	box-shadow: none;
}
/**** RESPONSIVE ****/
@media screen and (max-width: 992px){
	.banner-style-one-area{
		height: 100% !important;
	
	}
	header{
		margin-bottom: 30px;
	}
	.banner-style-one .content .information{
		margin-top: 0px;
	}
	.icon-images-1 {
		top: -30px;
		width: 40px;
	}
	.icon-images-2 {
		left: 0;
		width: 40px;
	}
	.icon-images-3 {
		right: 0;
		width: 40px;
	}
	.about-mschool{
		max-width: 100%;
		padding-top: 20px;
        padding-left: 0;
	}
	.bg-icon, .bg-icon-2, .bg-icon-3{
		opacity: .3;
	}
	.breadcrumb-primary .title-breadcrumb h1{
		font-size: 2.5rem;
	}
	.breadcrumb-primary .title-breadcrumb p{
		font-size: 0.875rem;
	}
	.bcrm-icon-1, .bcrm-icon-2, .bcrm-icon-3{
		width: 50px
	}
	.bcrm-icon-1{
		top: -48px;
	}
	.bcrm-icon-2{
		top: -6px;
        left: 233px;
	}
	.bcrm-icon-3{
		top: 45px;
        left: 195px;
	}
	.brcrmb-bg-icon, .brcrmb-bg-icon-2{
		opacity: 0.5;
	}
	.p-change {
        left: 530px !important;
        top: 10px;
    }
	.light_bg {
		top: 330%;
		transform: translateY(-100px);
	}
	.f-change {
        top: 8px;
        left: 350px;
    }
	.m-change{
		left: 460px;
        top: 10px;
	}
	.m-change-2{
		top: 80px;
		left: 305px;
	}
	.support-title {
		margin-left: 100px;
	}
	.s-change {
        top: 40px;
        left: -55px;
    }
	.s-change-2 {
        top: 9px;
        left: 390px;
    }
	.s-change-3 {
        top: 44px;
        left: 90%;
    }
	.brdcrmb-contact .title-breadcrumb{
		margin-left: 50px;
	}
	.c-change {
        top: 10px;
        left: -60px;
    }
	.c-change-2 {
		top: 50px;
        left: 240px;
    }
}
@media screen and (max-width: 768px) {
	.banner-style-one-area{
		height: 100% !important;
	
	}
	.topbar .topbar-list li {
		padding-left: 20px;
	}
	.topbar .topbar-list li a{
		font-size: 0.875rem;
	}
	h1{
		font-size: 2.5rem;
	}
	.banner-style-one .content .information h1{
		font-size: 2.5rem;
	}
	.mask{
		height: 65px;
		margin-top: -35px;
	}
	.mask span{
		font-size: 1rem;
	}
	.short-about {
		padding-right: 0;
	}
	.erp-item{
		padding: 20px 15px;
		min-width: 95%;
	}
	.erp-item h2{
		font-size: 2.5rem;
	}
	.erp-item h6 {
		font-size: 1.063rem;
	}
	.request-banner{
		padding: 10px;
	}
	.m-school-breadcrumbs h1{
		font-size: 2.5rem;
	}
	.icon-images-1 {
		top: -30px;
		width: 32px;
	}
	.icon-images-2 {
		left: 0;
		width: 32px;
	}
	.icon-images-3 {
		right: 0;
		width: 32px;
	}
	.secondary-btn a{
		font-size: 0.875rem;
	}
	.bcrm-icon-1, .bcrm-icon-2, .bcrm-icon-3{
		width: 42px
	}
	.bcrm-icon-1 {
        top: -42px;
    }
	.bcrm-icon-2 {
        top: 2px;
        left: 240px;
    }
	.bcrm-icon-3 {
        top: 52px;
        left: 197px;
    }
	.breadcrumb-secondary{
		padding: 190px 0 190px 0;
	}
	.breadcrumbs h1{
		font-size: 2.5rem;
	}
	.p-change {
		left: 90% !important;
        top: 3px;
    }
	.feature-text{
		padding: 0 30px 0 15px;
	}
	.testimonial_swiper .swiper-slide {
		flex-direction: column;
		border-radius: 10px;
	}
	.slide-text {
		padding: 30px 20px;
	}
	.slide-image {
		width: 100%;
		height: 150px;
		background: #f9c842;
	}
	.testimonials .swiper-button-prev, .testimonials .swiper-button-next {
		display: none;
	}
	.slide-content {
		display: grid;
	}
	.light_bg {
        top: 530%;
    }
	.m-change{
		top: -30px;
        left: 90%;
	}
	.support-title {
        margin-left: 50px;
    }
	.s-change {
        left: -20px;
    }
	.c-change-2 {
		top: 50px;
        left: 90%;
    }
	.offcanvas-body div h5{
		font-size: 1.125rem;
	}
	.accessibility-btn {
		font-size: 0.875rem;
	}
}
/* Navbar Default */
@media screen and (max-width: 460px) {
	.topbar .topbar-list li {
		padding-left: 18px;
	}
	.topbar .topbar-list li a{
		font-size: 0.688rem;
	}
	.slide-text p {
		font-size: 0.875rem;
	}
	.slide-text .name {
		font-size: 1rem;
	}
	.slide-text .designation {
		font-size: 0.875rem;
	}
	.support-title {
        margin-left: 25px;
    }
}

@media only screen and (max-width: 560px) {

	.breadcrumbs {
        padding: 182px 0 150px 0;
    }
	.topBanner{
		margin-top: 120px;;
	}
	.swiper-button-next {
		top: 60% !important;
		right: 10px;
	}
	.swiper-button-prev {
		top: 60% !important;
	
	}
	.topBanner img{
		height: 180px !important;
	}
	.rq-btn a {
		background:#7CB9E8 !important;
		padding: 4px 5px !important;
		font-size: 8px !important;
	}
}


