@media (max-width: 767px) {
	html{
		font-size: 40%;
	}
	
	
	 .mobile-logo{
        width: 100%;
        text-align: left;
    }
	
	.mobile-logo .navbar-brand{
		margin-right: 0px;
	}
    /* mobile menu css */
    .mobile-menu {
        display: block;
        margin-top: 0px;
        padding-top: 10px;
        padding-bottom: 15px;
        position: relative;
        z-index: 10000;
		padding-left: 15px;
    }
    
    .mobile-social{
            top: 10px;
    }

    .hamburger {
        position: absolute;
        right: 20px;
        top: 15px;
        display: flex;
        height: 18px;
        width: 24px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        z-index: 1;
        float: left;
    }
      .hamburger__icon {
        display: inline-block;
        height: 2px;
        width: 24px;
        background: rgb(52 51 51);
        border-radius: 2px;
      }

      #header.fixed .hamburger__icon {
        background: rgb(0, 0, 0);
      }
      
      .sidebar {
        height: 100%;
        width: 100%;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        padding: 18px 0px;
        display: flex;
        flex-direction: column;
        transform: translatex(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 100;
    }
      .sidebar__close {
        position: absolute;
        top: 0%;
        right: 7px;
        background: #fff;
        height: 40px;
        width: 40px;;
        border-radius: 50%;
        box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translatex(-100%);
        cursor: pointer;
        transition: transform 0.4s ease-in-out 0.2s;
      }
      .sidebar__close::before, .sidebar__close::after {
        content: "";
        height: 2px;
        background: #898989;
        width: 24px;
        display: block;
        position: absolute;
      }
      .sidebar__close::after {
        transform: rotate(90deg);
      }
      .sidebar__menu {
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: space-around;
        font-size: 36px;
        margin-top: 80px;
        margin-bottom: 80px;
        color: #898989;
      }
      .sidebar__menu a {
        color: currentcolor;
        text-decoration: none;
        transform: translatex(-80%);
        transition: transform 0.4s ease-in-out;
      }
      .sidebar__menu a::before {
        content: "";
        height: 2px;
        background: #898989;
        width: 120px;
        position: absolute;
        bottom: -2px;
        left: 0;
        transform: translatex(-50%);
        opacity: 0;
        transition: transform 0.4s ease-in-out, opacity 0.4s linear;
      }
      .sidebar__menu a:hover::before {
        transform: translatex(0);
        opacity: 1;
      }
      .sidebar__menu a:nth-child(1) {
        transition-delay: 0.05s;
      }
      .sidebar__menu a:nth-child(2) {
        transition-delay: 0.1s;
      }
      .sidebar__menu a:nth-child(3) {
        transition-delay: 0.15s;
      }
      .sidebar__menu a:nth-child(4) {
        transition-delay: 0.2s;
      }
      .sidebar__menu a:nth-child(5) {
        transition-delay: 0.25s;
      }
      .sidebar__social {
        display: flex;
        list-style: none;
        padding: 0;
      }
      .sidebar__social li {
        margin: 4px;
      }
      .sidebar__social a, .sidebar__social svg {
        display: inline-block;
        height: 18px;
        width: 18px;
      }
      
      .menu-control-m {
        display: none;
      }
      .menu-control-m:checked + .sidebar {
        transform: translatex(0);
      }
      .menu-control-m:checked + .sidebar .sidebar__close {
        transform: translatex(0) rotate(45deg);
      }
      .menu-control-m:checked + .sidebar .sidebar__menu a {
        transform: translatex(0);
      }

      .sidebar-navigation {
        width: auto;
        height: auto;
        background-color: #fff;
        margin: 24px 0px auto;
        
      }
      .sidebar-navigation .title {
        display: block;
        font-size: 1.2em;
        background-color: #1e1e1e;
        padding: 20px 25px;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }
      
      .sidebar-navigation ul {
        margin: 0;
        padding: 0;
		overflow-y: scroll;
      }
      .sidebar-navigation ul li {
        display: block;
      }
      .sidebar-navigation ul li a {
        position: relative;
        display: block;
         font-size: 2.2rem;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        padding: 10px 25px;
        text-decoration: none;
        color: #39479a;
        letter-spacing: 0.02em;
        border-bottom: 0px solid #eee;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        transition: all 0.3s linear;
      }
      .sidebar-navigation ul li a em {
        font-size: 18px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        padding: 5px;
        border-radius: 50%;
      }
      .sidebar-navigation ul li:hover > a, .sidebar-navigation ul li.selected > a {
        background-color: #ecf0f1;
        color: #39479a;
        border-color: rgba(255, 255, 255, 0.1);
      }
      .sidebar-navigation ul li ul {
        display: none;
		
      }
      .sidebar-navigation ul li ul.open {
        display: block;
      }
      .sidebar-navigation ul li ul li a {
         color: #39479a;
		border-color: rgba(255, 255, 255, 0.1);
		font-size: 2rem;
		padding: 7px 25px;
      }
      
      .sidebar-navigation ul li ul li:hover > a, .sidebar-navigation ul li ul li.selected > a {
        background-color: #e6ebed;
      }
      .sidebar-navigation ul li ul li:hover > a:before, .sidebar-navigation ul li ul li.selected > a:before {
        margin-right: 10px;
      }
      .sidebar-navigation ul li ul li.selected.selected--last > a {
        background-color: #94aab0;
        color: #fff;
      }
      .sidebar-navigation ul li ul li.selected.selected--last > a:before {
        background-color: #fff;
      }
      
      .sidebar-navigation ul li a em {
			font-size: 24px;
			position: absolute;
			right: 20px;
			top: 50%;
			transform: translateY(-50%);
			padding: 5px;
			border-radius: 50%;
		}

      /* end mobile menu */
	  
	  .mobile-menu.mobile-menu-desk .sidebar{
		  display: none;
	  }
	  
	  .mobile-menu.mobile-menu-desk{
		  display: none;
	  }
	
	#header .navbar-brand img {
    width: 140px;
    display: block;
   }
   
	#header .nav-link {
		font-size: 2.8rem;
	}
	
	.desk-nav{
		display: none;
	}
	
	#header .navigation-wrap{
		display: none;
	}
	
	.get-rank-btn{
		padding: 12px 14px !important;
	}
   
   .home-banner{
	  padding-top: 0px;
    padding-bottom: 0px;
   }
   
   .banner-btn a{
	   font-size: 2.4rem;
	   margin-top: 18px;
	}
	
	#header .nav-item.show .dropdown-menu{
		    max-height: 6000px;
	}
  

	
	#header .dropdown-menu{
		    min-width: 100%;
			left: 0px !important;
	}
	
	#header .dropdown-menu{
		    font-size: 2.5rem;
	}
	
	#header .nav-link{
		padding: 10px 14px;
	}
	
    p {
        font-size: 2.3rem !important;
    }
	
	
	.number-item {
      width: 30.5%;
      padding: 28px 10px;
	}
	
	.home-desktop-banner{
    display: none !important;
}

.home-mobile-banner{
    display: block !important;
}
	
	
	
	.number-section {
    padding-top: 0px;
    padding-bottom: 0px;
   margin-top: 19px;
    margin-bottom: 2px;
	}
	
	.number-item.ten-acres:after {
	    display:none;
	}
	
	.number-section .num-heading{
	    font-size: 3rem;
	}
	
	.number-section .num-subheading{
	    font-size: 2.2rem;
	}
	
	.number-item {
    width: 33.33%;
	}
	
	.infra-heading{
	        font-size: 3.6rem;
	}
	
	.infra-sec-read-more-btn a{
	        font-size: 2.4rem;
	}
	
	.our-school-sub-h{
	       font-size: 3rem; 
	}
	
	.our-sch-read-btn a{
	        font-size: 2.2rem;
	}
	
	.welcome-section {
    padding-top: 42px;
    padding-bottom: 44px;
    margin-bottom: 60px;
    }
    
    .moyo-callege-ajmer{
            margin-top: 24px;
    }
	
	.welcome-info-section {
    width: 100%;
	}
	
	.home-why-section{
	    padding-top: 40px;
        padding-bottom: 40px;
	}
	
	.wh-content h4{
	    font-size: 2.6rem;
	}
	
  .info-text{
	  font-size: 2.6rem;
  }

.welcome-read-more-btn a{
	    font-size: 2.4rem;
} 

.alumni-slider .swiper-button-prev{
	width: 40px;
    height: 40px;
	left: -10px;
}

.alumni-slider .swiper-button-next{
	width: 40px;
    height: 40px;
	right: -10px;
}

.alumni-slider .swiper-button-next img {
    width: 22px;
}

.alumni-slider .swiper-button-prev img {
    width: 22px;
}
.alumni-content{
        width: 100%;
    display: block;
    clear: both;
}

.principal-message-block.p-h-message .info-color-grey {
    color: #ffffff;
}

.principal-message-block.p-h-message .principal-info {
    margin-top: 38px;
}


.moyo-callege-ajmer img {
    width: 100%;
    margin-top: 20px;
}

.our-school-section{
        padding-bottom: 22px;
}

.alumni-img-block {
        width: 100%;
    min-height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: -65px;
    position: relative;
    right: 0;
    background-position: right;
}

.alumni-item{
    padding: 16px 22px 0;
    margin-top: 34px;
}
.alumni-item-inner{
        display: block;
}

.alumni-content h2{
    font-size: 2.6rem;
}

.alumani-section {
    padding-bottom: 46px;
    padding-top: 20px;
}

.admission-section{
        padding-top: 36px;
    padding-bottom: 36px;
}

.admission-btn {
    text-align: center;
    margin-top: 20px;
}

.admission-cta-heading{
    font-size: 2.8rem;
    text-align: center;
}

.admission-btn a{
    padding: 10px 20px;
    font-size: 2.8rem;
}

.upcoming-events-section {
    padding-top: 40px;
    padding-bottom: 52px;
   
}

.up-coming-title{
    font-size: 3.7rem;
}

.date-calender input{
    font-size: 2.6rem;
}

.event-mo {
    font-size: 14px;
}

.featured-icon svg {
    width: 14px;
    margin-right: 8px;
    position: relative;
    top: 4px;
}

.event-sub-heading{
    font-size: 2.6rem;
    margin-top: 10px;
}

.view-all-btn a{
    font-size: 2.2rem;
}

.latest-news-block{
        margin-top: 30px;
}

.latest-news-subh{
        font-size: 2.4rem;
}

.circular-block{
        margin-top: 38px;
}

.social-media-list a {
    font-size: 2rem;
}


.circular-tab-sec {
    position: relative;
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
}

.alumni-content-block {
    position: relative;
    margin-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
    margin-top: 26px;
}

.circle-tab{
	position: relative;
	transform: unset;
	width: 100px;
    height: 100px;
	margin-top: 10px;
}

.circle-tab-inner {
    width: 90px;
    height: 90px;
}

.circle-tab.tab-item-1 {
    top: unset;
    left: unset;
}

.circle-tab.tab-item-2 {
    top: unset;
    left: unset;
}

.circle-tab.tab-item-3 {
    top: unset;
    left: unset;
}

.circle-tab.tab-item-4 {
    top: unset;
    left: unset;
}

.circle-tab.tab-item-5 {
    top: unset;
    left: unset;
}

.circle-tab.tab-item-6 {
    top: unset;
    left: unset;
}

.circle-tab-inner p{
	    font-size: 2.4rem;
}

.alumni-content-block .alumni-title{
	font-size: 3.2rem;
}

.information-cen-subheading{
	    font-size: 3.5rem;
		margin-top: 24px;
}

.information-center-section{
	    padding-top: 44px;
}

.information-center-content-sec {
    padding-top: 10px;
}

.info-center-thumb-slider {
    margin-top: 6px;
}

.info-center-thumb-slider .owl-prev{
	top: 24%;
    width: 25px;
    height: 25px;
}

.info-center-thumb-slider .owl-next{
	top: 24%;
    width: 25px;
    height: 25px;
}

.info-center-thumb-slider .item-slide h3{
	font-size: 11px;
}

.info-center-thumb-slider .owl-nav img {
    width: 16px;
    position: relative;
    top: -1px;
}
 
.tooper-section {
    padding-top: 20px;
    padding-bottom: 46px;
}	

.topper-tabs-section .nav-tabs{
	 margin-top: 20px;
}

.topper-tabs-section .nav-tabs .nav-link{
	font-size: 2.5rem;
	padding: 6px 12px;
}

.student-info-block h2{
	    font-size: 3.6rem;
}

.student-info-block h3{
	    font-size: 2.8rem;
}

.student-info-block p{
	  font-size: 2.2rem;
}

.student-info-block{
	margin-bottom: 32px;
}

.upcoming-events-block {
      min-height: auto;
}

.latest-news-block{
    min-height: auto;
}

.circular-block{
     min-height: auto;
}

.tooper-section:after{
	 height: 20%;
}

.person-name{
	font-size: 3rem;
}

.child-name{
        font-size: 16px;
}

.testimonial-content{
	width: 95%;
    margin: 0px auto;
}

.footer-address-list li span {
    width: 24px;
}

.testimonial-content:before{
	width: 42px;
    height: 37px;
	top: -16px;
}

.testimonial-content:after{
	width: 42px;
    height: 37px;
	bottom: -16px;
}

#testimonial-slider .owl-item {
    transform: unset;
}

#testimonial-slider .owl-item.active.center {
    transform: unset;
}

.testimonail-section {
    padding-top: 42px;
    padding-bottom: 0px;
}

.footer-address-list li{
	    font-size: 2.2rem;
}

.footer-address-list {
    padding-left: 0px;
    margin-top: 38px;
}
  
.footer-address-block{
	 width: 100%;
	 padding-left: 20px;
	 padding-right: 20px;
}  

.footer-form-block{
	width: 100%;
	padding-left: 26px;
    padding-top: 32px;
	padding-right: 26px;
    padding-bottom: 32px;
}

.footer-form-block .contact-form-field{
	font-size: 2.6rem;
	margin-top: 15px;
}

.foot-submit-btn .contact-sumit-btn{
	font-size: 2.3rem;
}

.footer-social a{
	font-size: 2.1rem;
}

.footer-links ul li a{
	    font-size: 2.1rem;
}

.footer-links ul{
	 margin-top: 34px;
    padding-left: 0;
}

.footer-links ul li{
	 margin: 0 14px;
}

.footer-links ul li:after{
	    right: -14px;
}

.copyright-line{
	font-size: 2.1rem;
}

/* about page css */

.about-mayoor-content-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.principal-name-block{
  padding: 26px 10px;
}

.why-choose-icon img{
       width: 80px;
}

.wh-icon-heading {
    font-size: 2.8rem;
}

.principal-message-section:before{
    height: 33%;
}

.why-choose-mayoor {
    padding-bottom: 34px;
}

.pr-name{
   font-size: 4rem;
}

.pr-read-btn{
    margin-top: 40px;
}

.pr-desi{
    font-size: 3.4rem;
}

.principal-message-block{
        width: 98%;
    margin-top: 46px;
}

.msg-prip-heading{
    font-size: 3.5rem;
}

.princple-msg-subheading{
    font-size: 2.4rem;
}

.rb-name{
    font-size: 2.4rem;
}

.principal-info {
           margin-top: 32px;
}

.pr-message-read-more {
    margin-top: 15px;
}

.pr-message-read-more a{
    font-size: 2.8rem;
}

/* end about page css */

/* adminstration management page css */

.management-tabs {
    /*position: absolute;*/
    /*width: 100%;*/
    /*left: 0;*/
    /*top: -28px;*/
}
.management-tabs .nav-tabs{
	margin-top: 10px;
        width: 100%;
    justify-content: start;
}

.management-tabs .nav-tabs .nav-link{
	font-size: 13px;
	padding: 10px 8px;
}

.management-tabs-inner {
    padding-top: 8px;
}

.board-team-item{
	margin-top: 36px;
    min-height: 408px;
}

.board-member-name{
	    font-size: 3.8rem;
}

.board-member-desi{
	    font-size: 3rem;
		font-weight: normal;
}

.board-mem-name{
	font-size: 3.2rem;
}

.board-mem-desi{
	font-size: 3.2rem;
	margin-top: 8px;
    margin-bottom: 10px;
}

.board-member-content {
    position: relative;
    margin-top: 24px;
}

.board-member-thumb img {
    width: 100%;
}

.bm-item {
    margin-top: 20px;
    padding-bottom: 24px;
}

/* adminstration management page css */

/* gallery page css */
.gallery-tabs-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.gallery-tabs-items .nav-tabs .nav-link{
    font-size: 2.4rem;
}

.gallery-tabs-section .accordionTitle{
    font-size: 3.5rem;
}

.gallery-title {
    margin-top: 20px;
    margin-bottom: 28px;
    min-height: auto;
}

.pic-gallery-title{
    font-size: 2.6rem;
}

.load-more-btn a{
    font-size: 2.7rem;
}

.gallery-tab-inner {
    padding-top: 30px;
}

/* End of gallery page css */


/* transport page css */

.transport-content-section {
    padding-top: 34px;
    padding-bottom: 34px;
}

.root-info-section {
    padding-top: 0px;
}

.transport-content-inner {
    padding-top: 16px;
}

.bus-route-btns a{
    font-size: 2.2rem;
    margin: 0 8px;
    padding: 10px 14px;
}

/* end transport page css */

/* end transport page css */
.transfer-certificate-content-section {
    padding-top: 36px;
    padding-bottom: 36px;
}

.transfer-certificate-form{
        padding: 24px 30px;
}
.cr-form-field{
    height: 42px;
    font-size: 2.2rem;
    margin-top: 18px;
}
.tr-certificate{
    font-size: 2.2rem;
    padding: 12px 16px;
}

.transfer-certificate-content-section {
    padding-top: 34px;
    padding-bottom: 34px;
}


/* End transfer certificate page css */


/*  career page css */
.career-content-section {
    padding-top: 32px;
    padding-bottom: 32px;
}

.job-list-right {
    width: 100%;
    padding: 16px 6px;
}

.job-list-left {
    width: 100%;
    padding: 16px 6px;
     border-right: 0px solid #c1c1c1;
}

.career-content{
    margin-top: 12px;
}

.career-job-listing{
    padding: 22px 0;
    margin-top: 24px;
}

.job-title-heading{
    font-size: 2.4rem;
}

.apply-btn{
    font-size: 2.2rem;
    border: 0px;
    padding: 6px 12px;
}

.job-apply-btn{
    width: 100px;
}

.job-title{
    width: calc(100% - 100px);
}

.job-list-bottom li{
   font-size: 2rem;
   margin-top: 12px;
}

.upload-cv-inner {
    width: 88%;
}

.cv-form-field{
    height: 46px;
    font-size: 2.4rem;
    margin-top: 22px;
    
}

.cv-upload{
    height: 46px;
    font-size: 2.4rem;
    padding: 10px 10px;
    margin-top: 22px;
}

.upload-cv-file-info-text p {
    font-size: 1.8rem;
    padding-left: 10px;
}

.cv-submit{
    font-size: 2.3rem;
}
   

/* End  career page css */


/* alumni page css */

.alumni-name{
    font-size: 3.2rem;
    margin: 12px 0;
}

.alumni-edu-info{
    font-size: 2.5rem;
}

.alumni-block{
    padding: 25px 46px;
    margin-top: 26px;
}

.alumni-load-more-btn a{
        font-size: 2.5rem;
}

/* End  alumni page css */

/*   session page css */


.footer-floting-btns{
    bottom: 104px ;
}

.session-info-section {
    padding-top: 36px;
    padding-bottom: 36px;
}

.timing-session{
    width: 82%;
}

.timing-session th{
    font-size: 3.2rem;
}

.timing-session td{
    padding: 8px;
    font-size: 2rem;
}

.list-of-holidays {
    margin-top: 40px;
}

.month-wise-holidays th{
        font-size: 2.4rem;
}

.month-wise-holidays td{
    font-size: 1.8rem;
        padding: 8px;
}

/* End  session page css */
  
  
}

@media only screen and (min-width: 768px) and (max-width: 1000px)  {
.info-center-thumb-slider {
    margin-top: 12px !important;
}

.thum-row .col-lg-6{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.upcoming-events-block {
      min-height: 1200px !important;
}

.latest-news-block{
    min-height: 1200px !important;
}

.circular-block{
     min-height: 1200px !important;
}

}


 @media only screen and (min-width: 768px) and (max-width: 1199px)  {
	 html{
		font-size: 50%;
	}
	
	#header .navbar-brand img {
		width: 152px;
	}
	
	#header .nav-link{
		padding: 20px 6px;
		font-size: 1.8rem;
	}
	
	
	
	#header .dropdown-menu{
		font-size: 1.6rem;
	}
	
	.mobile-menu.mobile-menu-desk .hamburger {
		right: 36px;
		top: 30px;
	}
	
	#header .dropdown-menu{
		    min-width: 264px;
	}
	
	.info-text{
		font-size: 2.1rem;
	}
	
	#homeHeading {
    font-size: 26px !important;
	}
	
	.number-section{
	    margin-bottom: 18px;
	}
	
	.number-item{
	        padding: 8px;
	}
	
	.number-section .num-subheading{
	        font-size: 1.8rem;
	}
	
	.number-section .num-heading{
	        font-size: 2.6rem;
	}
	
	p {
	        font-size: 2.1rem !important;
	}
	
	.infra-heading{
	   font-size: 2.8rem;
       margin-bottom: 12px;
	}
	
	.infra-sec-read-more-btn a{
	        font-size: 2rem;
	}
	
	.infra-block{
	    padding: 28px 18px;
	}
	
	.our-school-sub-h{
	   font-size: 2.6rem;
	}
	
	.our-sch-read-btn a{
	        font-size: 2.1rem;
	}
	
	.why-overlay .why-content-wrap{
	        top: 80%;
	}
	
	.wh-content h4{
	        font-size: 1.8rem;
	}
	
	.welcome-section {
    padding-top: 42px;
    padding-bottom: 40px;
   }
   
   .welcome-read-more-btn a{
	   font-size: 2.1rem;
   }
   
   .welcome-info-section {
    width: 92%;
   }
   
   .explore-section {
    padding-top: 44px;
    padding-bottom: 44px;
   }
   
   .our-school-section{
           padding-bottom: 60px;
   }
   
   .moyo-callege-ajmer img{
           margin-top: 20px;
   }
   
   .alumani-section {
    padding-top: 16px;
    padding-bottom: 52px;
  }
  
  .alumni-item{
        padding: 18px 12px;  
  }
  
  .alumni-img-block{
          right: -12px;
  }
  
  .alumni-img-block{
    min-height: 360px;
    width: 62%;
  }
  
  .event-mo {
    font-size: 14px;
  }
  
  .featured-icon svg {
    margin-right: 4px;
    position: relative;
    top: 4px;
}

.upcoming-events-block {
      min-height: 918px !important;
}

.latest-news-block{
    min-height: 918px !important;
}

.circular-block{
     min-height: 918px !important;
}

.event-sub-heading{
    font-size: 2.1rem;
}

.view-all-btn a{
        font-size: 2rem;
}
  
  .alumni-content p {
    font-size: 1.8rem;
  }
  
  .alumni-content h2{
      font-size: 2.2rem;
  }
  
  .admission-sec-inner {
    width: 90%;
}
  
  .admission-cta-heading{
      font-size: 2.5rem;
  }
  
  .admission-btn a{
      padding: 12px 15px;
    font-size: 2.2rem;
  }
	
  .alumni-content-block {
     margin-left: -4px;
    padding-right: 17px;
  }
  
  .latest-news-thumb {
    padding-right: 0px;
  }
  
  .latest-news-subh{
          font-size: 1.8rem;
  }
  
  .latest-news-text-block {
    padding: 10px;
  }
  
  .circular-block-item {
    padding: 16px 12px;
  }
  
  .social-media-list a {
    font-size: 1.8rem;
  }
  
  .circle-tab-inner {
    width: 80px;
    height: 80px;
  }
  
  .circle-tab {
    width: 90px;
    height: 90px;
  }
  
  .circle-tab-inner p{
	  font-size: 1.5rem;
	  padding-top: 25px;
  }
  
 .circle-tab.tab-item-2 {
    top: 24%;
    left: 28%;
}

.circle-tab.tab-item-3 {
    top: 39%;
    left: 22%;
}

.circle-tab.tab-item-4 {
    top: 55%;
    left: 29%;
}

.circle-tab.tab-item-5 {
    top: 71%;
    left: 52%;
}

.circle-tab.tab-item-6 {
    top: 85%;
    left: 90%;
}

.alumni-content {
    width: 65%;
}

.alumni-content-block .alumni-title{
	    font-size: 2.8rem;
}

.alumni-slider .swiper-button-prev{
	width: 36px;
    height: 36px;
}

.alumni-slider .swiper-button-next{
	width: 36px;
    height: 36px;
}

.alumni-slider .swiper-button-prev img {
    width: 22px;
}

.alumni-slider .swiper-button-next img{
	 width: 22px;
}

.circular-tab-sec{
	    min-height: 582px;
}

.information-center-section{
	    padding-top: 46px;
}

.info-center-thumb-slider {
    margin-top: -110px;
}

.information-center-content-sec {
    padding-top: 26px;
    
}

.information-cen-subheading{
	    font-size: 2.8rem;
}

.info-center-thumb-slider .owl-prev{
	    top: 40%;
}

.info-center-thumb-slider .owl-next{
	    top: 40%;
}

.student-info-block{
	padding: 26px 25px;
}

.tooper-section {
    padding-top: 40px;
    padding-bottom: 44px;
}

.topper-tabs-section .nav-tabs .nav-link{
	font-size: 2.3rem;
	padding: 8px 18px;
}

.student-info-block h2{
	    font-size: 2.6rem;
}

.student-info-block h3{
	font-size: 2.6rem;
}

.student-info-block p{
	    font-size: 2rem;
}

.testimonial-content:before{
	width: 42px;
    height: 36px;
	top: -18px;
}

.testimonial-content:after{
	width: 42px;
    height: 36px;
	bottom: -18px;
}

.person-name {
    font-size: 2.4rem;
}

.child-name{
    font-size: 18px;
}

.upcoming-events-section {
    padding-top: 60px;
}

.up-coming-title{
        font-size: 2.4rem;
}

.date-calender input {
    width: 96%;
    font-size: 2rem;
}

.upcoming-events-block{
    padding: 10px 12px 30px;
}

.footer-address-block{
	padding-left: 15px;
	padding-right: 15px;
}

.footer-address-list {
    padding-left: 32px;
    margin-top: 34px;
}

.footer-address-list li{
	    font-size: 2rem;
}

.footer-form-block{
	padding-left: 30px;
	padding-right: 30px;
}

.foot-submit-btn .contact-sumit-btn{
	font-size: 2.3rem;
}

.footer-form-block .contact-form-field{
	font-size: 2.1rem;
}

.footer-social a{
	font-size: 1.8rem;
}

.footer-links ul li a{
	font-size: 2rem;
}

.copyright-line{
	font-size: 2rem;
}

/* about page css */

.wh-icon-heading {
    font-size: 2.6rem;
}

.why-choose-icon img{
    width: 70px;
}

.principal-message-section{
    padding-top: 40px;
    padding-bottom: 54px;
}

.principal-message-block{
        width: 82%;
}

.msg-prip-heading{
    font-size: 3.4rem;
}

.princple-msg-subheading{
        font-size: 2.2rem;
}

.rb-name{
    font-size: 2.1rem;
}

.principal-name-block{
        padding: 26px 14px;
}

.pr-name{
    font-size: 2.8rem;
}

.pr-desi{
    font-size: 2.3rem;
}

.principal-info {
    margin-top: 96px;
}

.principal-message-section:before{
    height: 33%;
}

.pr-message-read-more a{
    font-size: 2.2rem;
}

/* End about page css */

/* admin management page css */

.management-tabs .nav-tabs{
	    margin-top: 2px;
}

.management-tabs .nav-tabs .nav-link{
	font-size: 2.8rem;
	padding: 10px 15px;
}

.board-team-item {
    padding: 10px;
	margin-top: 36px;
	min-height: 410px;
}

.board-member-name{
	font-size: 2.6rem;
}

.board-member-desi{
	font-size: 2.4rem;
	min-height: 50px;
}

.linked-in-link a {
    font-size: 26px;
}

.board-mem-name{
	font-size: 2.8rem;
}

.board-mem-desi{
	font-size: 2.6rem;
	margin-top: 12px;
}

.bm-item {
    margin-top: 22px;
    padding-bottom: 30px;
}

/* End admin management page css */

/* gallery page css */

.gallery-tabs-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.gallery-tabs-items .nav-tabs .nav-link{
        font-size: 2.5rem;
}

.gallery-tab-inner {
    padding-top: 28px;
}

.gallery-tabs-section .accordionTitle{
        font-size: 2.8rem;
}

.pic-gallery-title{
        font-size: 2.2rem;
}

.load-more-btn a{
    font-size: 2.2rem;
}

/* end gallery page css */

/* transport page css */

.transport-content-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.transport-content-inner {
    padding-top: 20px;
}

.root-info-section {
    padding-top: 2px;
}

.bus-route-btns a{
        font-size: 2.4rem;
}

/* end transport page css */

/*  transfer certificate page css */

.cr-form-field{
        font-size: 2rem;
}

.tr-certificate{
        font-size: 2rem;
}

/* End transfer certificate page css */


/*   career page css */

.job-title-heading {
    font-size: 2.2rem;
}

.apply-btn{
    font-size: 1.8rem;
   padding: 6px 10px;
}

.job-list-left{
        padding: 16px 14px;
}

.job-apply-btn{
    width: 90px;
}

.job-title {
    width: calc(100% - 90px);
}

.job-list-bottom li{
        font-size: 2.2rem;
}

.career-content-section {
    padding-top: 44px;
    padding-bottom: 40px;
}

.cv-form-field{
    height: 50px;
    margin-top: 22px;
    font-size: 2rem;
}

.upload-cv-inner {
    width: 86%;
}

.cv-upload{
    height: 50px;
    font-size: 1.8rem;
    margin-top: 22px;
}

.upload-cv-file-info-text p {
    font-size: 1.6rem;
}

.cv-submit{
    font-size: 2rem;
}

.upload-cv-section{
        padding-bottom: 46px;
}

/* End  career page css */


/* alumni page css */

.alumni-block{
    padding: 16px 16px;
}

.alumni-edu-info{
   font-size: 1.8rem;
}

.alumni-load-more-btn a{
     font-size: 2rem;
}

/* End  alumni page css */

/*   session page css */

.session-info-section {
    padding-top: 44px;
    padding-bottom: 44px;
}

.list-of-holidays {
    margin-top: 40px;
}

.timing-session{
        width: 82%;
}

.timing-session th{
    font-size: 2.8rem;
}

.timing-session td{
    font-size: 1.8rem;
}

.month-wise-holidays th{
        font-size: 2.2rem;
}

.month-wise-holidays td{
    padding: 8px;
    font-size: 1.8rem;
}

/* End  session page css */


	
 }
 
  @media only screen and (min-width: 1200px) and (max-width: 1440px)  {
	 html{
		font-size: 70%;
	}
	
	#header .nav-link{
		    font-size: 1.4rem;
	}
	
	#header .dropdown-menu{
		    font-size: 1.2rem;
	}
	
	.mobile-menu.mobile-menu-desk .hamburger{
		right: 70px;
	}
	
	.mobile-menu.mobile-menu-desk .sidebar-navigation ul li a{
		    font-size: 1.2rem;
	}
	
	.info-text{
		font-size: 1.5rem;
	}
	
	.welcome-read-more-btn a{
		font-size: 1.4rem;
	}
	
	.wh-content h4{
	        font-size: 1.4rem;
	}
	
	.page-heading {
    font-size: 3.3rem;
	}
	.alumni-content-block .alumni-title{
		font-size: 2.4rem;
	}
	
	.circle-tab.tab-item-4 {
    top: 63%;
	}
	
	.circle-tab.tab-item-5 {
    top: 80%;
    left: 44%;
   }
   
   .alumni-content-block {
    margin-left: -92px;
    padding-right: 56px;
   }
   
   .circle-tab-inner p{
	       font-size: 1.3rem;
   }
   
   p {
       font-size: 1.6rem !important;
   }
   
   .alumni-content p {
    font-size: 1.5rem !important;
}
   
   .infra-sec-read-more-btn a{
       font-size: 1.6rem;
   }
   
   .alumni-slider .swiper-button-prev{
	width: 42px;
    height: 42px;
   }
   
   .alumni-slider .swiper-button-next{
	   width: 42px;
      height: 42px;
   }
   
   .info-center-thumb-slider {
    margin-top: -162px;
  }
  
  .information-cen-subheading {
    font-size: 2.4rem;
  }
  
  .tooper-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .our-school-sub-h{
      font-size: 2.2rem;
  }
  
  .our-sch-read-btn a{
      font-size: 1.6rem;
  }
  .flip-box{
          height: 452px;
  }
  
  .topper-tabs-section .nav-tabs .nav-link{
	  font-size: 1.8rem;
	  padding: 8px 15px;
  }
  
  .student-info-block h2{
	      font-size: 2.4rem;
  }
  
  .student-info-block h3{
	  font-size: 2.2rem;
  }
  
  .student-info-block p{
	  font-size: 1.6rem;
  }
  
  .alumni-img-block{
          min-height: 540px;
  }
  
  .alumni-content h2{
      font-size: 2.2rem;
  }
  
  .admission-cta-heading{
          font-size: 2.3rem;
  }
  
  .admission-btn a{
    padding: 12px 20px;
    font-size: 1.8rem;
  }
  
   .upcoming-events-section {
    padding-top: 50px;
    padding-bottom: 40px;
   }
   
   .up-coming-title{
      font-size: 2.2rem; 
   }
   
   .date-calender input{
           font-size: 1.6rem;
   }
   
   .event-mo {
    font-size: 14px;
  }
  
  .event-sub-heading{
      font-size: 1.8rem;
  }
  
  .view-all-btn a{
          font-size: 1.8rem;
  }
  
  .latest-news-text-block {
       padding: 12px;
        width: 72%;
  }
  
  .latest-news-subh{
      font-size: 1.6rem;
  }
  
  .latest-news-thumb {
    width: 28%;
    padding-right: 10px;
}
  
  .social-media-list a {
    font-size: 1.6rem;
  }
  
  
  .person-name {
    font-size: 2.4rem;
  }
  
  .child-name {
    font-size: 20px;
  }

  .persion-pic {
    width: 56px;
}	

.testimonial-content:before{
	 width: 48px;
     height: 40px;
	 top: -20px;
}

.testimonial-content:after{
	 width: 48px;
     height: 40px;
	 bottom: -20px;
}

.footer-address-block{
	 padding-left: 60px;
	 padding-right: 60px;
}

.footer-address-list li{
	font-size: 1.4rem;
}

.footer-form-block .contact-form-field{
	font-size: 1.4rem;
}

.foot-submit-btn .contact-sumit-btn{
	    font-size: 1.6rem;
}

.footer-social a{
	    font-size: 1.4rem;
}

.footer-links ul li a{
	font-size: 1.5rem;
}

.copyright-line{
	font-size: 1.4rem;
}

/* about page css */

.principal-message-section:before{
    height: 33%;
}

.msg-prip-heading{
    font-size: 2.6rem;
}

.princple-msg-subheading{
        font-size: 1.5rem;
}

.rb-name{
    font-size: 1.8rem;
}

.principal-info {
    margin-top: 100px;
}

.pr-message-read-more a{
    font-size: 1.6rem;
}

/* End about page css */

/* admin management css */

.management-tabs .nav-tabs{
	 margin-top: 20px;
}

.management-tabs .nav-tabs .nav-link{
	font-size: 2.1rem;
	padding: 8px 14px;
}

.board-member-name{
	font-size: 2.8rem;
}

.board-team-item {
    padding: 22px;
}

.board-member-desi{
	 font-size: 2rem;
}

.board-mem-name{
	font-size: 2.6rem;
}

.board-mem-desi{
	font-size: 2.2rem;
}

/* admin management css */

/* gallery page css */

.gallery-tabs-items .nav-tabs .nav-link{
    font-size: 1.8rem;
}

.gallery-tabs-section .accordionTitle{
    font-size: 2.6rem;
}

.pic-gallery-title{
        font-size: 2rem;
}

.load-more-btn a{
    font-size: 1.8rem;
}

.gallery-tab-inner {
    padding-top: 38px;
}

/* end gallery page css */

/* transport page css */

.transport-content-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.root-info-section {
    padding-top: 0px;
}

.transport-content-inner {
    padding-top: 22px;
}

.bus-route-btns a{
        font-size: 1.6rem;
}

/* end transport page css */

/*  transfer certificate page css */
.cr-form-field{
        font-size: 1.6rem;
}

.tr-certificate{
     font-size: 1.8rem;
}

/* End transfer certificate page css */

/* career page css */

.job-title-heading{
    font-size: 1.8rem;
}

.apply-btn{
    font-size: 1.7rem;
    padding: 6px 15px;
}

.job-list-bottom li{
    font-size: 1.6rem;
}

.cv-form-field{
    font-size: 1.6rem;
}

.cv-upload{
    font-size: 1.6rem;
}

.upload-cv-file-info-text p {
    font-size: 1.4rem;
}

.cv-submit{
    font-size: 1.6rem;
}

/* End career page css */

/* alumni page css */
.alumni-block{
        padding: 25px 40px;
}

.alumni-edu-info{
        font-size: 1.7rem;
}

.alumni-load-more-btn a{
    font-size: 1.7rem;
}

/* end alumni page css */

/* session page css */

.timing-session td{
    font-size: 1.6rem;
}

.month-wise-holidays th{
        font-size: 2rem;
}

.month-wise-holidays td{
        font-size: 1.5rem;
}

/* End  session page css */

  
}
@media only screen and (min-width: 1200px) and (max-width: 1280px)  {
.flip-box {
    width: 262px;
}

.upcoming-events-block {
      min-height: 848px;
}

.latest-news-block{
    min-height: 848px;
}

.circular-block{
     min-height: 848px;
}
}

@media only screen and (min-width: 1300px) and (max-width: 1366px)  {
.info-center-thumb-slider {
    margin-top: -176px !important;
}

.principal-info {
    margin-top: 120px !important;
}

.flip-box {
    width: 286px;
}

.upcoming-events-block {
      min-height: 848px;
}

.latest-news-block{
    min-height: 848px;
}

.circular-block{
     min-height: 848px;
}
}

@media only screen and (min-width: 1400px) and (max-width: 1440px)  {
.info-center-thumb-slider {
    margin-top: -184px !important;
}

.principal-info {
    margin-top: 60px !important;
}

.upcoming-events-block{
        min-height: 816px;
}

.latest-news-block{
    min-height: 816px;
}

.circular-block{
     min-height: 816px;
}
}
  
@media only screen and (min-width: 1441px) and (max-width: 1680px)  {
	html{
		font-size: 80%;
   }
   
   #header .nav-link{
	       font-size: 1.6rem;
   }
   
   .mobile-menu.mobile-menu-desk .sidebar-navigation ul li a{
	   font-size: 1.3rem;
   }
   
   .info-text{
    font-family: 'Roboto', sans-serif;
    color: #0a0909;
	   font-size: 1.4rem !important;
   }
   
   .welcome-read-more-btn a{
	       font-size: 1.5rem;
   }
   
   .wh-content h4{
       font-size: 1.5rem;
   }
   
   .circle-tab-inner p{
	       font-size: 1.3rem;
   }
   
   .student-info-block h2{
	   font-size: 2rem;
   }
   
   .student-info-block h3{
	       font-size: 2rem;
   }
   
   .student-info-block p{
	   font-size: 1.6rem;
   }
   
   .alumni-content-block {
    margin-left: -130px;
    padding-right: 60px;
  }
 
	.alumni-content-block .alumni-title{
		font-size: 2.4rem;
	} 
	
	.information-cen-subheading{
		font-size: 2.6rem;
	}
	
.info-center-thumb-slider {
    margin-top: -206px;
}

.person-name{
	font-size: 2.6rem;
}

.info-text{
	font-size: 1.6rem;
}

.our-school-sub-h{
        font-size: 1.8rem;
}

.alumni-img-block{
    min-height: 564px;
}

.alumni-content p {
    color: #000;
    font-size: 1.4rem;
}

.admission-cta-heading{
    font-size: 2.2rem;
}

.admission-btn a{
    font-size: 1.5rem;
}

.event-mo {
    font-size: 14px;
}

.admission-cta-heading{
    font-size: 2.3rem;
}

.featured-icon svg {
    width: 14px;
    margin-right: 8px;
    position: relative;
    top: 4px;
}

.event-sub-heading{
        font-size: 1.6rem;
}

.upcoming-events-section {
    padding-top: 20px;
}

.up-coming-title{
        font-size: 2rem;
}

.view-all-btn a{
        font-size: 1.4rem;
}

.latest-news-subh{
    font-size: 1.4rem;
}

.news-sm-text {
    font-size: 1.4rem;
}

.footer-address-list li{
	    font-size: 1.5rem;
}

.footer-form-block .contact-form-field{
	    font-size: 1.3rem;
}

.foot-submit-btn .contact-sumit-btn{
	font-size: 1.6rem;
}

.footer-social a{
	font-size: 1.3rem;
}

.footer-links ul li a{
	    font-size: 1.4rem;
}

.copyright-line{
	    font-size: 1.4rem;
}

/* about pag css */

.msg-prip-heading{
    font-size: 2.4rem;
}

.rb-name{
    font-size: 1.3rem; 
}

.pr-message-read-more a{
    font-size: 1.5rem;
}

.principal-info {
    margin-top: 35px;
}
.pr-read-btn{
    margin-top: 15px;
}

.management-tabs .nav-tabs{
	    margin-top: 28px;
}

.management-tabs .nav-tabs .nav-link{
	font-size: 1.8rem;
	padding: 10px 15px;
}

.board-mem-name{
	font-size: 2.4rem;
}

.board-mem-desi{
	font-size: 2.1rem;
}

/*  gallery page css */

.gallery-tabs-items .nav-tabs .nav-link{
    font-size: 1.8rem;
}

.gallery-tabs-section .accordionTitle{
        font-size: 2.2rem;
}

.pic-gallery-title{
        font-size: 1.7rem;
}

.load-more-btn a{
        font-size: 1.6rem;
}

/* end gallery page css */

/*  transfer certificate page css */
.cr-form-field{
        font-size: 1.5rem;
}

.tr-certificate{
     font-size: 1.6rem;
}

/* End transfer certificate page css */

/*  career page css */

.job-title-heading{
    font-size: 1.7rem;
}

.apply-btn{
    font-size: 1.4rem;
    padding: 6px 20px;
}

.job-list-bottom li{
        font-size: 1.6rem;
}

.cv-form-field{
       font-size: 1.7rem; 
}

.cv-upload{
    padding: 12px 10px;
    font-size: 1.7rem;
}

.upload-cv-file-info-text p {
    font-size: 1.3rem;
   padding-left: 15px;
}

/* End career page css */

/*  alumni page css */

.alumni-block{
       padding: 25px 50px; 
}

.alumni-edu-info{
        font-size: 1.6rem;
}

.alumni-load-more-btn a{
        font-size: 1.6rem;
}

/* end alumni page css */

/*   session page css */

.timing-session th{
    font-size: 2.3rem;
}

.timing-session td{
        font-size: 1.5rem;
}

.month-wise-holidays th{
        font-size: 2rem;
}

.month-wise-holidays td{
        font-size: 1.3rem;
}

.upcoming-events-block{
        min-height: 830px;
}

.latest-news-block{
    min-height: 830px;
}

.circular-block{
     min-height: 830px;
}

/* End  session page css */
 
}

 