html{
	height: 100%;
    overflow-x:hidden;
}
body {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	height: 100%;
}

a {
	text-decoration:none;
	-moz-transition: all .3s ease-in-out;
 -webkit-transition: all .3s ease-in-out;
 transition: all .3s ease-in-out;
}
a:hover{text-decoration:none;}

.container{
    z-index: 9;
    position: relative;
    max-width: 1200px;
}

.header{
	position: absolute;
	left: 0;
	z-index: 999;
	top: 0;
	width: 100%;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0) 100%);
	padding: 5px 0 30px 0;
	transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
	-webkit-transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
	-o-transition: box-shadow .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), transform .4s cubic-bezier(.4, 0, .2, 1);
}
.header.scrolled{
    background: #2e3192;
    position: fixed;
    padding: 5px 0;
}
.header.scrolled .navbar-brand img{
    height: 60px;
}
.mainheight{
    min-height: 1000px;
}
.header .navbar{
	padding: 0;
}
.header .nav-link{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.header .nav-link:hover{
    color: #73d9ff;
}
.header .navbar-nav{
	align-items: center;
}
.header .nav-item{
    padding-left: 20px;
}
.nav-link.active{
    color: #73d9ff!important;
}
.navbar-brand img{
    height: 110px;
}
.header.scrolled .navbar-brand img{
    height: 70px;
}
.footer-about img{
    height: 150px;
}
.btnstyle{
    display: flex;
    background-color: #73d9ff;
    color: #2e3192!important;
    gap: 12px;
    align-items: center;
    padding: 5px 5px 5px 20px!important;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
}
.btnstyle:hover{
    background-color: #2e3192;
    color: #fff!important;
}

.bannerbg{
    position: relative;
}
.bannerbg img{
    width: 100%;
}
.banner-content{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.banner-content h1{
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    text-shadow: 2px 2px 2px #6b7f63;
    margin: 0 0 20px 0;
}
.banner-content h2{
    color: #fff;
    text-shadow: 2px 2px 2px #6b7f63;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}
.banner-content p{
    color: #fff;
    font-size: 26px;
    text-shadow: 2px 2px 2px #6b7f63;
    font-weight: 400;
    margin: 0;
}
.bannerbtns{
    margin-top: 25px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.bannerbtns img{
    width: auto;
}
.bannerbottom-row{
    position: relative;
    z-index: 9;
    margin-bottom: 85px;
}
.bannerbottom-row-inner{
    margin-top: -45px;
    display: grid;
    grid-template-columns: 25% 36% 36%;
    gap: 20px;
}
.establishedbox{
    padding: 15px 25px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 15px #ccc;
    display: flex;
    align-items: center;
    gap: 13px;
    background-color: #fff;
}
.establishedbox label{
    color: #2e3192;
    font-size: 17px;
    margin: 0;
}
.establishedbox h2{
    margin: 0;
    color: #2e3192;
    font-size: 32px;
    font-weight: 600;
}
.welcomeboxbg{
    position: relative;
}
.welcomeboxbg::before{
    background: url(../images/fadebg.png) no-repeat left top;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 419px;
    height: 762px;
}
.welcomeboxbg::after{
    background: url(../images/fadebg.png) no-repeat left top;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 419px;
    height: 762px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.welcomeboxbg-top-box{
    padding: 20px;
    background-color: #2e3192;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 100%;
    transition: transform 0.4s ease;
}
.welcomeboxbg-top-box:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.welcomeboxbg-top-box img{
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.welcomeboxbg-top-box h2{
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
    margin: 15px 0 20px 0;
}
.welcomeboxbg-top-box p{
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    text-align: justify;
}
.welcomeboxbg-bottom{
    margin-top: 75px;
    display: flex;
    align-items: end;
    gap: 50px;
}
.welcomeboxbg-bottom-text{
    flex: 1;
    padding-bottom: 40px;
}
.welcomeboxbg-bottom-text h1{
    color: #2e3191;
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    margin: 0;
}
.duration-row{
    margin: 35px 0;
    display: flex;
    align-items: center;
    gap: 18px;
}
.durationbox{
    display: flex;
    align-items: center;
    gap: 10px;
}
.durationbox label{
    font-size: 16px;
    color: #2e3192;
    font-weight: 400;
    margin: 0 0 4px 0;
}
.durationbox h5{
    font-size: 18px;
    font-weight: 600;
    color: #2e3192;
    margin: 0;
}
.welcomeboxbg-bottom-text .btnstyle{
    display: inline-flex;
}
.welcomeboxbg-bottom-text ul{
    padding: 0;
    margin: 0 0 30px 0;
}
.welcomeboxbg-bottom-text ul li{
    padding-left: 30px;
    margin: 5px 0;
    list-style: none;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    background: url(../images/check-icon.png) no-repeat left top;
}
.whychoosebg{
    background-color: #f0f0ff;
    padding: 75px 0;
}
.whychoosebg h1{
    color: #2b2f8d;
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 65px 0;
}
.whychoosebox{
    padding: 35px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #fff;
}
.whychoosebox h2{
    color: #2b2f8d;
    font-size: 22px;
    line-height: 35px;
    font-weight: 500;
    margin: 20px 0 0 0;
}
.whychoosebox h2 span{
    font-size: 22px;
}
.whychoosebox img{
    width: auto!important;
}
.whychoosebg .owl-nav{
    position: absolute;
    top: -100px;
    right: 0;
}
.whychoosebg .owl-prev, .whychoosebg .owl-next{
    font-size: 45px!important;
    line-height: 45px!important;
    background: none!important;
    color: #2e3191!important;
    margin: 0 5px!important;
}
.footerbg{
    background-color: #2e3191;
    padding-top: 45px;
    z-index: 9;
    position: relative;
}
.footer-top{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.footer-top h4{
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 17px 0;
}
.footer-about{
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 38%;
}
.footer-about h3{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 15px 0;
}
.footer-about p{
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
    color: #fff;
    margin: 0;
}
.quicklinks ul{
    padding: 0 0 0 15px;
    margin: 0;
}
.quicklinks ul li{
    list-style: disc;
    font-size: 13px;
    padding: 2px 0;
    color: #fff;
}
.quicklinks ul li a{
    font-weight: 300;
    color: #fff;
}
.quicklinks ul li a:hover{
    color: #cfcffb;
}
.footerinfo p{
    font-size: 13px;
    line-height: 22px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 5px 0;
}
.footerinfo p a{
    color: #fff;
}
.footerinfo p a:hover{
    color: #cfcffb;
}
.footerinfo p strong{
    font-weight: 600;
}

.footer-bottom{
    border-top: solid 1px #4144a0;
    border-bottom: solid 1px #4144a0;
    margin-top: 45px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright{
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}
.footer-social{
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-social a{
    color: #fff;
    font-size: 25px;
}
.footer-social a:hover{
    color: #cfcffb;
}
.enquiryform .form-input{
    margin-bottom: 20px;
}
.enquiryform .form-input label{
    color: #000;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.enquiryform .form-input .form-control{
    height: 45px;
    padding: 0 20px;
    border: solid 1px #ccc;
    border-radius: 0;
    background-color: #fff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.enquiryform .form-input textarea{
    min-height: 150px;
}
.sendbtn{
    background-color: #2e3191;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.sendbtn:hover{
    background-color: #454adc;
}

.innerbanner h3{
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin: 0 0 30px 0;
}
.innerbanner{
    align-items: end;
}
.innercontent{
    padding: 100px 0;
}
.gallerygrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallerygrid .example-image{
    width: 100%;
    max-height: 270px;
    min-height: 270px;
    object-fit: cover;
}
.innercontent::before{
    top: 25%;
}
.aboutpagebg-top h2{
    color: #2e3192;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}
.aboutpagebg-top h5{
    color: #0a0f24;
    font-size: 20px;
    font-weight: 300;
    margin: 35px 0;
}
.aboutpagebg-top p{
    color: #0a0f24;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    text-align: justify;
}
.aboutpagebg-top-imgs{
    padding: 70px 0;
}
.aboutpagebg-top-imgs img{
    width: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.aboutpagebg-bottom{
    background-color: #e3e6f7;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    display: flex;
    align-items: end;
}
.aboutpagebg-bottom-text{
    padding: 50px 50px 50px 25px;
}
.aboutpagebg-bottom-text h1{
    color: #2e3192;
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}
.aboutpagebg-bottom-text ul{
    padding: 0;
    margin: 30px 0;
}
.aboutpagebg-bottom-text ul li{
    padding-left: 30px;
    margin: 5px 0;
    list-style: none;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    background: url(../images/bluearrow.png) no-repeat left top;
}
.aboutpagebg-bottom-text p{
    color: #2e3192;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.admissiontopbg{
    position: relative;
    background-color: #73d9ff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-top: 8%;
}
.admissiontopbg-img{
    position: absolute;
    left: 10px;
    bottom: 0;
}
.admissiontopbg-text{
    padding: 50px;
    width: 60%;
    margin-left: 38%;
}
.admissiontopbg-text h1{
    color: #2e3192;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.admissiontopbg-text h2{
    color: #0a0f24;
    font-size: 31px;
    font-weight: 500;
    margin: 0 0 25px 0;
}
.admissiontopbg-text h3{
    color: #0a0f24;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.admissiontopbg-text p{
    color: #2e3192;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.admissionbottombg{
    padding-top: 90px;
}
.admissionbottombg-inner{
    grid-template-columns: 40% 58%;
    gap: 25px;
    display: grid;
    margin-bottom: 45px;
}
.admissionbottombg-inner h2{
    color: #2e3192;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}
.admissionbottombg-inner p{
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.apply-steps{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.apply-stepbox{
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px -4px 10px #bebebe;
}
.apply-stepbox h5{
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
.admission-guidelines ul{
    padding: 0;
    margin: 0;
}
.admission-guidelines ul li{
    padding-left: 30px;
    margin: 5px 0;
    list-style: none;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    background: url(../images/whitearrow.png) no-repeat left top;
}
.coursetopbg{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.coursetopbg h1{
    color: #2e3192;
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.coursetopbg p{
    color: #0a0f24;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.coursetopbg-right{
    padding-right: 55px;
}
.quickinfoboxbg{
    padding: 40px;
    background-color: #2e3192;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.quickinfoboxbg h3{
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin: 0 0 30px 0;
}
.quickinfobox-inner{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.quickinfobox{
    height: 100%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    background-color: #fff;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: start;
}
.quickinfobox h5{
    color: #2e3192;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 600;
}
.quickinfobox p{
    color: #111111;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}
.quickinfobox div{
    flex: 1;
}
.gap25{
    gap: 25px;
}
.gap25 h5{
    margin: 0;
}
.gap25 .quickinfobox{
    align-items: center;
}

.facilitiesbg h1{
    color: #2e3192;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 40px 0;
}
.facilitiesbg h6{
    margin: 0 0 70px 0;
    color: #0a0f24;
    font-size: 16px;
    line-height: 22px;
}
.facilitiesbottombg{
    margin-top: 70px;
    position: relative;
    background-color: #e3e6f7;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.facilitiesbottombg h4{
    color: #2e3192;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin: 0;
    padding: 60px;
    max-width: 60%;
}
.facilitiesbottom-img{
    position: absolute;
    bottom: 0;
    right: 30px;
}
.contactbanner h3{
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin: 0;
}
.contactbg{
    padding: 0 0 100px 0;
}
.contactbgbox{
    margin-top: -200px;
    position: relative;
    z-index: 9;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 0 15px #000;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    display: flex;
    gap: 28px;
}
.contact-form{
    min-width: 350px;
}
.contact-form .form-group{
    margin-bottom: 20px;
}
.contact-form .form-group label{
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 10px 0;
}
.contact-form .form-control{
    height: 46px;
    padding-left: 55px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: #1c1c1c;
    font-size: 13px;
    font-weight: 300;
    border: solid 1px #c6c6c6;
    box-shadow: 0 0 5px #ccc;
}
.contact-form .form-input{
    position: relative;
}
.contact-form .form-input span{
    position: absolute;
    left: 18px;
    top: 9px;
}
.contactinfo-row{
    flex: 1;
}
.contactinfo-row h3{
    color: #2e3192;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px 0;
}
.contactinfo-row p{
    color: #111111;
    font-size: 16px;
    font-weight: 300;
}
.contactinfo-row p a{
    color: #111111;
}
.contactinfo-row p a:hover{
    color: #000;
}
.contactinfo-row p label{
    margin: 0;
    font-weight: 600;
}
.email-label{
    margin-left: 25px!important;
}
.bannerbg{
    z-index: 9;
}

.policytext h3{
    font-weight: 600;
    font-size: 20px;
    margin: 25px 0 15px 0;
    color: #2e3191;
}
.policytext ul{
    padding: 0 0 0 15px;
    margin: 0;
}
.policytext ul li{
    list-style-type: disc;
    font-size: 18px;
    color: #000;
    padding: 5px 0;
}
.policytext p{
    font-size: 18px;
    color: #000;
}

.error_class {
    color:red;
}

.error {
    color:red;
}

.howtoapply{
    background-color: #2e3191;
    margin: 50px 0;
    padding: 35px;
    border-radius: 15px;
}
.howtoapply h2{
    font-size: 30px !important;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
}
.howtoapply p{
    font-size: 20px;
    color: #fff;
}
.howtoapply p a{
    font-weight: 600;
    color: #fff;
}
.designedbytxt{
    padding: 15px 0;
    color: #fff;
    text-align: right;
    font-size: 14px;
}

.aboutpagebg-bottom-text p{
    position: relative;
}
.quote-left{
    transform: rotate(180deg);
    display: inline-block;
    position: absolute;
    left: -45px;
    top: -10px;
}
.quote-right{
    display: inline-block;
    position: absolute;
    margin-left: 5px;
}

@media only screen and (min-width: 1141px) and (max-width: 1300px) {
    body{overflow-x: hidden; height: auto;}
    .banner-content h1{margin-bottom: 0;}
    .establishedbox h2{font-size: 28px;}
    .welcomeboxbg-bottom-img img{width: 500px;}
    .whychoosebox h2{font-size: 25px;}
    .innerbanner h3{margin-bottom: 20px;}
}
@media only screen and (min-width: 992px) and (max-width: 1140px) {
    body{overflow-x: hidden; height: auto;}
    .navbar-brand img{height: 70px;}
    .welcomeboxbg-bottom-img img{width: 400px;}
    .durationbox label{font-size: 14px;}
    .durationbox h5{font-size: 20px;}
    .whychoosebox h2{font-size: 22px;}
    .whychoosebox h2 span{font-size: 16px;}
    .innerbanner h3{font-size: 30px; margin-bottom: 20px;}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    body{overflow-x: hidden; height: auto;}
    .navbar-toggler{background-color: #fff;}
    .header{position: relative; background: #5356c9; padding: 5px 0;}
    .header .nav-item{padding-left: 0;}
    .bannerbottom-row-inner{margin-top: 20px; grid-template-columns: repeat(1, 1fr);}
    .welcomeboxbg-bottom{flex-direction: column;}
    .welcomeboxbg-bottom-img, .welcomeboxbg-bottom-text{width: 100%;}
    .welcomeboxbg-bottom-img img{width: 100%;}
    .footer-top{flex-direction: column;}
    .footer-about{flex-direction: column; max-width: 100%; align-items: start;}
    .innerbanner h3{font-size: 30px; margin-bottom: 20px;}
    .aboutpagebg-bottom-img img{width: 300px;}
    .admissiontopbg-img{position: inherit; text-align: center; left: 0;}
    .admissiontopbg-img img{max-width: 100%;}
    .admissiontopbg-text{width: 100%; margin: 0; text-align: center;}
    .admissionbottombg-inner{grid-template-columns: repeat(1, 1fr);}
    .quickinfobox-inner{grid-template-columns: repeat(2, 1fr);}
    .contact-form {min-width: 250px;}
}
@media only screen and (max-width: 767px) {
    body{overflow-x: hidden; height: auto;}
    .navbar-toggler{background-color: #fff;}
    .navbar-brand img{height: 70px;}
    .header{position: relative; background: #5356c9; padding: 5px 0;}
    .header .nav-item{padding-left: 0;}
    .bannerbottom-row-inner{margin-top: 20px; grid-template-columns: repeat(1, 1fr);}
    .banner-content h1{font-size: 20px; margin-bottom: 10px;}
    .banner-content p{font-size: 15px;}
    .banner-content h2{font-size: 25px;}
    .bannerbtns{display: none;}
    .establishedbox h2{font-size: 20px;}
    .welcomeboxbg-bottom{flex-direction: column;}
    .welcomeboxbg-bottom-img, .welcomeboxbg-bottom-text{width: 100%;}
    .welcomeboxbg-bottom-img img{width: 100%;}
    .welcomeboxbg-bottom-text h1{font-size: 28px;}
    .duration-row{flex-direction: column; align-items: start;}
    .whychoosebg .owl-nav{top: -70px;}
    .footer-top{flex-direction: column;}
    .footer-bottom{flex-direction: column; gap: 15px; text-align: center;}
    .footer-about{flex-direction: column; max-width: 100%; align-items: start;}
    .innerbanner h3{font-size: 20px; margin-bottom: 10px;}
    .aboutpagebg-bottom{flex-direction: column;}
    .aboutpagebg-bottom-img img{width: 100%;}
    .gallerygrid{grid-template-columns: repeat(2, 1fr);}
    .admissiontopbg-img{position: inherit; text-align: center; left: 0;}
    .admissiontopbg-img img{max-width: 100%;}
    .admissiontopbg-text{width: 100%; margin: 0; text-align: center;}
    .admissionbottombg-inner{grid-template-columns: repeat(1, 1fr);}
    .apply-steps{grid-template-columns: repeat(1, 1fr);}
    .quickinfobox-inner{grid-template-columns: repeat(1, 1fr);}
    .quickinfoboxbg{padding: 20px;}
    .facilitiesbottombg h4{max-width: 100%; padding: 35px; text-align: center;}
    .facilitiesbottom-img{position: inherit; right: 0; text-align: center;}
    .contactbgbox{margin-top: 40px; flex-direction: column; padding: 20px;}
    .contact-form{min-width: 100%;}
    .contactbanner h3{font-size: 30px;}
    .email-label {margin-left: 0px !important;}
    .contactinfo-row p{font-size: 14px;}
}


