@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  background-color:#fff !important;
  font-family: "Montserrat", sans-serif !important;  
  scroll-behavior: smooth; /* Smooth scroll effect */
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus-visible {
  outline: none;
}

ol, ul {
  list-style: none;
  padding: 0 0 !important;
  margin: 0 !important;
}
img { max-width: 100%;}

.clear {
  clear: both;
}

button:hover {
    background: #01001E;
}
.section1 {
  background:url('../images/top-bg.jpg');
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background-size: 100%;
  background-attachment: fixed;
}
.section1 img {
    max-width: 100%;
}   
.center-top-img {
    margin: 0 0 8% 0;
}
 .sticky {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }  
.scroll-icon img {
    margin: auto;
    text-align: center;
    left: 0;
    position: relative;
    max-width: 77%;
}    
.scroll-icon {
    position: relative;
    bottom: 12px;
    left: 37px;
    transform: translateX(-50%);
    font-size: 48px;
    cursor: pointer;
    animation: bounce 2s infinite;
    color: #fff;
    z-index: 9999;
    background: transparent;
    border: none;
    right: 0;
}
.scroll-icon:hover{
  background: transparent;
}

    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(15px);
      }
    }



/* Header css */
header {
    z-index: 99;
    position: relative;
}
.top-hd {
    background-color: #030146;
    padding: 0px 0 0 0;
}
.logo{
        padding: 10px 0 0px 0; padding-left: 15px;
}
.top-rt{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
ul.top-number {
    display: flex;
   align-items: center;
    justify-content: center;
        flex-direction: column;
}

ul.top-number li {
    
    transition: all 0.5s;
    color: #ffffff;    
    align-items: center;    
   padding: 3px 0; width: 100%;
}
ul.top-number li.socil-icon2{    display: flex; justify-content: center;
    gap: 10px;}
ul.top-number li.socil-icon2 a{ text-align: center; border-radius: 5px; display: inline-block; display: inline-block;
    padding: 0px 7px;}
    ul.top-number li.socil-icon2 a:hover { opacity: .7;}
span.time {
    display: block;
    text-align: right;
    line-height: 10px;
}
ul.top-number li img {
    padding: 0 0px;
}
ul.top-number li a {
    color: #ffffff;
    transition: all 0.5s;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    font-family: 'Inter';
}
ul.top-number li:hover, ul.top-number li a:hover {
  color: rgba(69, 168, 91, 1);
}
.switch1 {
  position: relative;
  display: inline-block;
  width: 89px;
  height: 44px;
  margin: 0 12px 0 0;
}

.switch1 input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider1 {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider1:before {
  position: absolute;
  content: "";
  height: 36px;
  width: 36px;
  left: 4px;
  bottom: 4px;
  background-color: #01001E;
  -webkit-transition: .4s;
  transition: .4s;
  background-image: url(../images/clear_day.png);
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider1 {
  background-color: #3b3c3d;
}

input:focus + .slider1 {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider1:before {
  -webkit-transform: translateX(44px);
  -ms-transform: translateX(44px);
  transform: translateX(44px);
}

/* Rounded sliders */
.slider1.round1 {
  border-radius: 34px;
}

.slider1.round1:before {
  border-radius: 50%;
}

/* Access Quick css */
.quick-access {
  margin: 0;
}
.quick-access .link {
    cursor: pointer;
    display: block;
    padding: 15px 18px 10px 12px;
    color: #ffffff;
    font-size: 15px;
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
    font-weight: 300;
    background: transparent;
    font-family: 'Inter';
}
/* .quick-access .link span i {
  background: #45a85b;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
} */
.quick-access li:last-child .link {
	border-bottom: 0;
}

.quick-access li i {
	position: absolute;
	top: 16px;
	right: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.quick-access li i.fa-chevron-down {
    left: auto;
    right: 0;
    font-size: 11px;
    top: 21px;
    transform: rotate(-90deg);
    color: #c7c6c6;
    font-weight: 100;
}
.quick-access li.open .link {
	color: #ef7f1b;
}

.quick-access li.open i {
	color: #fff;
}

.quick-access li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.access-dropdown {
    display: none;
    background: #ea413d;
    font-size: 13px;
    position: absolute;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 3px 5px 0px #b5b5b5;
    z-index: 999;
    width: 156px;
}

.access-dropdown li {
	border-bottom: 1px solid #f1615d;
}
.access-dropdown li:last-child{
  border-bottom: none;
}
ul.access-dropdown li a {
    padding: 6px 12px;
    color: #ffffff;
    font-weight: 300;
    font-size: 15px;
    font-family: 'Inter';
}
.access-dropdown a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  padding: 6px 29px;
  padding-left: 0;
  webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}.access-dropdown a:hover {
	background: #000;
	color: #FFF;
}
.navigation{
  position: relative;
  z-index: 99;
}

/* slider */
.das_slide {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0px;
  }
#demo { height: 100%; overflow: hidden; width: 100%; float: left;}

.carousel-item img{
  width: 100%;
}
.overflow-bg {
  background: url('../images/overfow-sl.png');
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 9;
  background-repeat: no-repeat;
  background-size: 100%;
}
.slide .item {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 65%;
    transform: translate(0, -50%);
    border-radius: 20px;
    /*box-shadow: 0 30px 50px #505050;*/
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(46% + 220px);
}
    .slide .item:nth-child(5) {
        left: calc(42% + 440px);
        opacity: 1;
    }
    .slide .item:nth-child(6) {
        left: calc(22% + 880px);
        opacity: 1;
    }

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 7){
    left: calc(50% + 660px);
    opacity: 1;
}

.item .content {
  position: absolute;
  top: 45%;
  left: 100px;
  width: auto;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
  line-height: 65px;
  letter-spacing: -2px;
}

.slide .item:nth-child(2) .content{
    display: block;
}
.content .name {
    font-size: 54px;
    text-transform: uppercase;
    font-weight: 900;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    width: auto; background: #3029299c; padding: 5px;
   
}
.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  font-family: 'Inter';
  letter-spacing: 1px;
  z-index: 9999;
  position: relative;
  color: #ffff;background: #45a85bcf;
  color: #ffff;
  display: inline-block;
  padding: 5px;
}
.content button {
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
  border-radius: 20px 20px;
  background: #45a85b;
  width: 160px;
  height: 40px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  display: flex;
  align-items: center;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button {
    /* width: 100%; */
    /* text-align: center; */
    position: absolute;
    bottom: 52px;
    RIGHT: 550px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;    
}

    .button button, .button a.prev22, .button a.next22 {text-decoration: none; color: #fff;
        width: 50px;
        height: 50px;
        /* border-radius: 8px; */
        border: none;
        cursor: pointer;
        margin: 0 5px;
        border: 2px solid #fff;
        transition: 0.3s;
        border-radius: 50%;
        background: none;
        opacity: 1;
     
    }

.button button:hover{
    background: #01001E;
    color: #fff;
}
button:hover {
    background: #01001E;
}
button.prev22, .next22, a.next22, a.prev22  {
  color: #fff;
  font-size: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.prev22:hover, a.next22:hover{background: #01001E;
  color: #fff;}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover{
  opacity: 0;
}


/* e-Care Icon Css */
.icon-bg{
  padding: 50px 0 50px 0;
}
ul.icon-ul {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid rgb(3, 1, 70);
  width:100%;
  margin: auto !important;
}
ul.icon-ul li {
  padding: 0 15px;
  margin-bottom: 50px;
  position: relative;
}
ul.icon-ul li:before {
  content: '';
  width: 11px;
  height: 11px;
  position: absolute;
  background: #030146;
  border-radius: 50%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -56px;
}
ul.icon-ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  width: 148px;
  height: 112px;
  transition: all 0.2s;
}
ul.icon-ul li a.active{
  border: 1px solid #030146;
  border-radius: 18px;
  position: relative;
  transition: all 0.5s;
}
ul.icon-ul li a.active:before{
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  background: #45a85b;
  border-radius: 50%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -73px;
  background-image: url('../images/top-arrow.svg');
  background-repeat: no-repeat;
  display: flex;
  background-position: 17px center;
}
ul.icon-ul li a:hover ::before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  background: #030146;
  border-radius: 50%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -73px;
  background-image: url('../images/top-arrow.svg');
  background-repeat: no-repeat;
  display: flex;
  background-position: 17px center;
}
ul.icon-ul li a:hover {
  border: 1px solid #030146;
  border-radius: 18px;
  position: relative;
}
ul.icon-ul li a span {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.icon-ul li a p {
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  font-weight: 400;
  padding: 6px 0 0 0;
  margin: 0px;
}

/* Notices */
.notices-bx{
  padding: 0 0 50px 0;
}
.principal-slqq {
    height: auto;
    margin-top: 0;
    position: relative;
    top: -92px;
    margin-bottom: 58px;
}
.tabs-boxs {
    display: flex;
    margin: 0px;
    padding: 0px;
}
.tab-txt {
    width: 65%;
    padding: 0 0 0 45px;
}
.tab-txt p {
    text-align: justify;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 17px;
    line-height: 23px;
}
.tabs {
      max-width: 100%;
      margin: auto;
      background: transparent;
      border-radius: 10px;    
      position: relative;
    }

    
    .tabs input[name="tab"] {
      display: none;
    }
.tab-buttons {
    display: block;
    width: 56%;
    text-align: center;
    position: relative;
    float: right;
    clear: both;
}

.tab-buttons label {
    padding: 8px 5px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 300;
    border-right: 1px solid rgb(250, 248, 248);
    line-height: 0;
    margin: 16px 0px 20px 0;
    text-transform: uppercase;
}
  .tab-buttons label:last-child{
    border-right: none;
  }

    .tab-buttons label:hover {
      color: #0066cc;
    }
/* active tab highlight */
    .tab-buttons label.active {
      color: #B9B7FF;
    }

    .tab-content {
      display: none;
      padding: 0;
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    /* Show active tab */
    #tab1:checked ~ .content #content1,
    #tab2:checked ~ .content #content2,
    #tab3:checked ~ .content #content3,
    #tab4:checked ~ .content #content4,
    #tab5:checked ~ .content #content5,
    #tab6:checked ~ .content #content6,
    #tab7:checked ~ .content #content7 {
      display: block;
    }

    /* Indicator moves */
    #tab1:checked ~ .tab-buttons .indicator { transform: translateX(0%); }
    #tab2:checked ~ .tab-buttons .indicator { transform: translateX(100%); }
    #tab3:checked ~ .tab-buttons .indicator { transform: translateX(200%); }
    #tab4:checked ~ .tab-buttons .indicator { transform: translateX(300%); }
    #tab5:checked ~ .tab-buttons .indicator { transform: translateX(400%); }
    #tab6:checked ~ .tab-buttons .indicator { transform: translateX(500%); }
    #tab7:checked ~ .tab-buttons .indicator { transform: translateX(600%); }

ul.tabs-arrow {
    position: absolute;
    top: 8px;
    right: 0;
    z-index: 9;
    display: flex;
    padding: 0;
    width: 56%;
    justify-content: space-between;
    line-height: 0;
    height: 6px; cursor: pointer;
}
ul.tabs-arrow li i {
    color: #fff;
    font-size: 27px;
}
.bg-nots {
  background: rgba(250, 250, 250, 1) padding-box;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}
.btn-readmore {
  background: rgba(69, 168, 91, 1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 31%;
  top: 29px;
  transition: all 0.4s;
  z-index: 99;
}
.btn-readmore:hover {
  background: #01001E;
}
.notices {
  text-align: center;
  width: 96%;
  margin: auto;
  overflow: hidden;
}
.notice-title h2 {
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 0 20px 42px;
}
.notice-box {
  background: #ffb800;
  width: 92% !important;
  border-radius: 15px;
  padding: 15px;
  position: relative;
  text-align: left;
  height: 148px;
}
.new-box {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 0 9px;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.notices-date a {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 56px;
  text-decoration: none;
}
.notice-box p {
  margin: 0px;
  padding: 0px;
  line-height: 16px;
}
.notices-date span {
  font-size: 30px;
  padding: 0 9px;
}
.notice-box p a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}
.updated-date {
  color: #000;
  font-size: 12px;
  padding: 14px 0 0 0;
  margin: 0px;
}



/* Principal Css */
.bg-principal {
    background-image: url('../images/principal-bg.png');
    height: auto;
    width: 100%;
    background-size: 100%;
    position: relative;
    margin-top: 160px;
    padding-bottom: 38px;
}

.bg-principal::before {
  content: '';
  position: absolute;
  background: #030146;
  height: 57px;
  width: 100%;
  top: -57px;
  left: 0; z-index: 0;
}
.rtl-slider-flex .des { display: none;}


h3.msg-title {
    color: #747171;
    position: relative;
    top: -107px;
    z-index: 9;
    left: 43%;
    font-weight: 700;
}
.Principal-img {
    margin: -161px 0 0 0;
    z-index: 99;
    position: relative;
}
.Principal-img img {
    border: 21px solid #fff;
    border-radius: 6px;
    width: 100%;
}
.Principal-img p {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 0 0 0;
}
h3.prin-name {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 0 0 0;
  font-size: 24px;
  font-weight: 300;
}
.principal-text {
  padding: 0;
  margin: 0 0 0 20px;
  z-index: 99;
  position: relative;
}
h3.mobile-title{display: none;}
.prin-title {
  padding: 42px 0 0 0;
}
.prin-title h3 {
  color: #45A85B;
  font-size: 30px;
  font-weight: 700;
  padding: 0 0 35px 0;
}
.prin-title h6 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 0 0 26px 0px;
}
.prin-title p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  padding: 0px 0 0 0;
  text-align: justify;
  font-family: Inter;
  font-weight: 200;
  line-height: 21.78px;

}
a.btn-prin {
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
a.btn-prin:hover {
    background-color: #ffb800;
}
.slick-dots li button:before{
  font-size:unset !important
}
ul.innerUl li {
    padding-left: 0;
    margin-bottom: 12px;
    list-style: outside;
    margin-left: 24px;
}
ul.parent-arrow1 {
    position: absolute;
    top: -44px;
    right: 38px;
    display: flex;
    width: 70px;
    justify-content: space-between;
}
li.prev3, li.next3 {
  background: #055016;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  border-radius: 50%;
  cursor: pointer;
}
h3.masterHead.pageHeading {
  background: #030146;
  text-align: center;
  display: flex;
  margin: 10px auto 30px;
  max-width: max-content;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Inter';
  padding: 7px 28px;
  font-size: 24px;
  position: relative;
  border-radius: 3px;
}
span.color1 {
    padding-left: 8px;
}
    h3.masterHead.pageHeading::before {
        content: '';
        width: 0px;
        height: 0px;
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-top: 13px solid #030146;
        position: absolute;
        bottom: -12px;
    }
.aboutus-bg {
  background-color: #fff;
  height: auto;
  margin: 0 0 35px 0;
  border-radius: 20px;
  position: relative;
  z-index: 99;
  padding: 30px 60px 55px 60px;
}
.aboutus-bg h3 {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  color: #3B3B3B;
  font-size: 30px;
}
.aboutus-bg p {
  padding: 16px 0 0 0;
  text-align: justify;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  color: #1c1b1b;
}

a.btn-about {
  width: 42px;
  height: 42px;
  background: #030146;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s;
}
a.btn-about img {
  max-width: 23px;
}
a.btn-about:hover{
  background-color: #01001E;
}
img.sch-building {
    width: 100%;
    position: absolute;
    top: 262px;
    z-index: 999;
    left: 0px;
}

/* bg-vision css */
.bg-vision{
  padding-bottom: 60px;
  margin-top: 0px;
}
video.sch-building {
    margin: auto;
    display: block;
}
@media (min-width:1400px){
  .bg-vision{
  margin-top: 230px;
}
}
@media (min-width:1600px){
  .bg-vision{
  margin-top: 300px;
}
}
@media (max-width:767px){
  video.sch-building {
    width:100%;
  }
}

/* bg-vision css End */



/* Thought Css */
.bg-thought{
  background: url('../images/thoug-bg.png');
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 40px;
}
.thought-txt {
    text-align: center;
    font-family: 'Montserrat';
    padding: 90px 0;
    color: #fff;
}
.thought-txt h2 {
    color: #FFF;
    text-align: center;   
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
.thought-txt h4 {
    align-self: stretch;
    color: #FFF;
    text-align: center;  
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    padding: 16px 0 20px 0;
}
.thought-txt h6 {
    align-self: stretch;
    color: #FFF;
    text-align: center;  
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}
/* Thought Css End */

/* News Notices Css */
h3.notices-title {
    text-align: center;
    font-family: 'Montserrat';
    font-size: 29px;
    font-weight: 700;
    color: #1E1E1E;
    padding-bottom: 20px;
}
.notice-img img{
  max-width: 100%;
}
.notice-bx {
    width: 393px;
    float: left;
    margin-right: 22px;
    margin-bottom: 22px;
    display: flex;
    height: 96px;
    padding: 8px 12px;
    border-radius: 16px;
    background: #E2E2E2;
    align-items: center;
}
.notice-date {
    padding: 5px;
    border-radius: 12px;
    border: 8px solid #030146;
    background: #FFF;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
}
.notice-date p {
    padding: 4px 0 0 0;
    margin: 0px;
    color: green;
    text-align: center;
    font-family: Montserrat, serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.notice-descpit {
    width: 247px;
    padding-left: 12px;
}
.notice-descpit h4 {
    line-height: 0;
     padding: 0;
    margin: 0;
}
.notice-descpit h4 a {
    font-size: 14px;
    color: #000;
    padding: 0px;
    margin: 0px;
    line-height: 19px;
    font-weight: 500;
    font-family: 'Montserrat';
}

.notice-descpit h5 {
    line-height: 0;
    padding: 8px 0 0 0;
    margin: 0;
}
.notice-descpit h5 a {
    font-size: 14px;
    color: #030146;
    padding: 0px;
    margin: 0px;
    line-height: 19px;
    font-weight: 500;
    font-family: 'Montserrat';
}




/* Birthday Css */
.bg-birthday{
  padding: 40px 0;
}
.happy-bdaybox{
  width: 94%;
  margin: auto;
}
.student-box{
  border:1px solid rgb(196, 196, 196);
  height: auto;
  border-radius: 8px;
}
.student-title {
    display: flex;
    padding: 11px 16px;
    align-items: center;
    align-self: stretch;
    border-radius: 8px 8px 0 0;
    background: #EBEBEB;
}
.title-img {    
    width: 16%;
}
.title-bx {
    width: 86%;
}
.title-bx h2 {
    color: #1E1E1E;
    font-family: 'Montserrat', serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}
.title-bx p {
    align-self: stretch;
    color: #1E1E1E;
    font-family: 'Montserrat', serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    margin: 0;
}
.title-img img {
    max-width: 100%;
}
.bday-descpit {
    background: url('../images/bg-student.jpg');
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
      border-radius: 8px;
}
.student-sl, .teacher-sl, .achieved-sl {
    margin: auto;
    display: block;
    width: 85%;
}
.bday-slbx {
    margin: auto;
    text-align: center;
    padding: 16px;
}
.bday-slbx img {
    margin: auto;
    text-align: center;
}
.bday-slbx p {
    padding: 8px 0 8px 0;
    color: #1E1E1E;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    margin: 0;    
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.parent-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: auto;
    position: absolute;
    width: 93%;
    top: 39%;
    left: 15px;
}
li.next2, li.prev2, li.next4, li.prev4, li.next5, li.prev5, li.next6, li.prev6, li.next7, li.prev7  {
    height: 30px;
    background: transparent;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030146;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #030146;
}
li.prev2 i, li.prev4 i, li.prev5 i, li.prev6 i, li.prev7 i {
  left: -2px;
  position: relative;
}
li.next2 i, li.next4 i, li.next5 i, li.prev6 i,  li.prev7 i {
  position: relative;
  left: 2px;
}

/* Birthday End */


/* Achievement Css */
.bg-achievement{
  padding: 30px 0 40px 0;
}
.bg-achievement h3 {
    color: #1E1E1E;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 0 20px 0;
}
h2.rank-title {
    align-self: stretch;
    color: #030146;
    text-align: center;
    font-family: Montserrat, serif;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0 0 0;
    margin: 0;
}
 .toppers-x, .toppers-xii {
    margin: auto;
    display: block;
    width: 84%;
}
.toppers-x img, .toppers-xii img {
    width: 136px;
    height: 159px;
    object-fit: cover;
    margin: auto;
}
.achieved-sl .bday-slbx img {
    height: 197px !important;
    width: 100%;
    object-fit: contain;
}
ul.parent-arrow.parent-arrow2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: auto;
    position: absolute;
    width: 83%;
    top:38%;
    left: 29px;
}
.bday-slbx h5 {
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}
ul.parent-arrow.parent-arrow3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: auto;
    position: absolute;
    width: 96%;
    top: 38%;
    left: 11px;
}
a.btn-viewall {
    background: #030146;
    display: flex;
    margin: auto;
    width: 116px;
    text-align: center;
    color: #fff;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 20px;
    padding: 4px 0;
    border-radius: 4px;
    font-family: 'Montserrat';
    font-size: 19px;
    font-weight: 300;
    transition: all 0.5s;
}
a.btn-viewall:hover{
  background-color: #272727;
}

.bg-strength {
    background: url('../images/bg-strength.png');
    height: 400px;
    background-size: cover;
    padding: 40px 0
  }
.bg-strength h3 {
    color: #FFF;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}
.bg-strength p {
    color: #fff;
    width: 62%;
    text-align: center;
    margin: auto;
    line-height: 28px;
    padding: 8px 0 0 0;
}
ul.four-box {
    display: flex;
    justify-content: space-evenly;
    padding: 0 0 0 0;
    margin: 0;
}
ul.four-box li {
    padding: 50px 0 0 0;
    text-align: center;
    margin: 0px;
    width: 25%;
}
ul.four-box li img {
    padding: 0 0 24px 0;
}
ul.four-box li h2 {
    color: #ffff;
    font-size: 26px;
    padding: 0;
    margin: 0;
}


/* Gallery Css */
.bg-gallery {
    padding: 50px 0 50px 0;
    display: block;
}
.hd-grly {
    background: #EDEDED;
    padding: 16px;
    border-radius: 16px 16px 0 0;
    margin: 0px;
}
.title-grly {
    color: #030146;
    font-family: Montserrat, serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding: 0 0 12px 0;
}
.title-grly img {
    position: relative;
    top: -3px;
}
.hd-grly h4 {
    color: #000;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.hd-grly h5 {
    color: #030146;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.photo-sl, .video-sl {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    width: 92%;
    margin: auto;
    margin-top: 18px;
}
.photo-imgs {
    width: 92% !important;
    height: 160px;
    padding: 0px;
    margin: auto;
    margin-bottom: 20px;
    margin-bottom: 12px;
}
.photo-imgs img {
    object-fit: cover;
    width: 100%;
    height: 160px;
}
a.pht-btn {
    border: 1px solid #030146;
    margin: auto;
    display: block;
    width: 99px;
    text-align: center;
    color: #030146;
    line-height: 32px;
    border-radius: 26px;
    transition: all 0.5s;
}
a.pht-btn:hover{
   background: #030146;
   color:#fff
}

.parent-arrow.parent-arrow8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: auto;
    position: absolute;
    width: 97%;
    top: 58%;
    left: 9px;
}
li.next8, li.prev8, li.next9, li.prev9 {
    height: 30px;
    background: transparent;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030146;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #030146;
}
li.prev9 i {
  left: -2px;
  position: relative;
}
li.next9 i {
  position: relative;
  left: 2px;
}

/* Our Services */
.bg-ourServices {
    position: relative;
    padding: 0px;
    margin: 0px;
    height: auto;
    overflow: hidden;
}
.bg-ourServices::after {
    content: '';
    background:#030146;
    width: 38%;
    height: auto;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: 50%;
}
.principal-mobile{
    display: none;
}
.our-dailycare {
    z-index: 99;
    position: relative;
    padding: 56px 0 40px 0;
    width: 84%;
}
.our-dailycare h3 {
    color: #ffff;
    font-size: 18px;
}
.our-dailycare h4 {
    font-size: 16px;
    color: #FFD;
    font-weight: 300;
    margin:0 ;
    padding:0 0 16px 0;
}
.our-dailycare p {
    color: #fff;
    font-weight: 200;
    padding: 12px 0 0 0;
}
.descpit-services h2 {
    text-align: center;
    color: #1E1E1E;
    font-family: 'Montserrat', serif;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    padding:30px 0 0 0 ;
    margin: 0;
}
.descpit-services p {
    text-align: center;
    padding: 0 0 24px 0;
    margin: 0px;
}
.serives-img {
    width: 70px;
    height: 70px;
    border: 1px solid #011346;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    padding: 14px;
}
.services-1 {
    margin: 6px 0 12px 0;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 16px 1px;
    transition: all 0.5s;
    cursor: pointer;
}
.services-1:hover {
    border: 1px solid #524fb3;
    border-radius: 4px !important;
    background: #cccbf1;
}
.services-1 h2 {
    color: #1E1E1E;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.services-1 p{
    color: #1E1E1E;
    text-align: center;
    font-family: 'Montserrat', serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding:0px;
    margin:0px;
}
/* Footer Css */
footer{
  background-color:rgba(35, 35, 35, 1);
  padding: 80px 0 0 0;
}
.ft-logo h6 {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  padding: 42px 0 17px 0;
  line-height: 24px;
}
.ft-logo p img {
  margin: 0 11px 0 0;
}
.ft-logo p a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.5s;
}
.ft-logo p a:hover{
  color:#f5802d
}
.widgets-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.followus {
  padding: 0px 0 0px 0px;
}
.followus h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 0 9px 0;
  text-align: center;
}
.widgets-social a {
  width: 39px;
  height: 39px;
  color: #000;
  display: flex;
  line-height: 36px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.8s;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
}
.widgets-social a:hover {
  background: rgb(69, 72, 224);
}
.ft-orng {
  height: auto;
  padding: 0px 70px 0px 140px;
}
.ft-orng h2 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.7px;
  padding-bottom: 7px;
}
.ft-ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin: 0px;
}
ul.quickul {
  width: 230px;
}
ul.quickul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  line-height: 36px;
  transition: all 0.6s;
}
ul.quickul li a:hover{
  color: #92ffaa;
}
.ft-copyright {
  padding: 45px 0 0 0;
  text-align: center;
  color: #fff;
}
.ft-copyright p{
  font-size: 16px;
  font-weight: 200;
}
.ft-copyright a{
  color: #fff;
  text-decoration: none;
  transition: all 0.5s;
}
.ft-copyright a:hover{
  color:#45a85b;
}
.link1 {
  background:#030146;
  height: 38px;
  width: 160px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0 4px;
  margin: auto;
  margin-top: 21px;
  cursor: pointer;
  transition: all 0.5s; text-decoration: none;
}
.link1:hover {
  background: #ffb800;
}
.link1 span {
  height: 30px;
  width: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link1 span img{
  width: 12px;
}


#toTop {
    position: fixed;
    right: 15px;
    bottom: 15px;
    padding: 10px 14px;
    border: none;
    border-radius: 50%;
    background: #030146;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    width: 50px;
    height: 50px;
    z-index: 99999;
     animation: bounce 2s infinite;
}
#toTop i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    position: relative;
    top: -10px;
    width: 50px;
    left: -14px;
}

.scroll-icon {
    position: relative;
    bottom: 12px;
    left: 37px;
    transform: translateX(-50%);
    font-size: 48px;
    cursor: pointer;
    animation: bounce 2s infinite;
    color: #fff;
    z-index: 9999;
    background: transparent;
    border: none;
    right: 0;
}

    @keyframes bounce {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      50% {
        transform: translateX(-50%) translateY(15px);
      }
    }


.innerImg {
  float: right;
  margin-left: 20px;
}
a { text-decoration: none;}
.innerImg2 {
  float: left;
  margin-right: 20px;
} 
.innerH3 {
    color: #030146;
    font-weight: bold;
    font-size: 22px;
    font-family: 'Montserrat';
}
.masterMain { background:#fff; padding: 16px 20px;margin-bottom: 30px;border-radius: 6px;z-index: 0;position: relative;}

.masterText { min-height: 330px;}
.masterText p {
    text-align: justify;
    color: #373a3a;
}
.accordionHeader_Y {
  width: 100%;
  text-align: left;
  background: #0934c0 url('/images/ajax-arrow1.png') no-repeat 1% center;
  color: #ffffff;
  border: 1px solid #0934c0 ;
  margin: 8px 0px 0px 0px;
  font-size: 18px;
  padding: 10px 15px 10px 40px;
  box-sizing: border-box;
  cursor: pointer;
  text-transform: uppercase;
}

.accordionHeaderSelected {
  width: 100%;
  text-align: left;
  background: #04195b url('/images/ajax-arrow.png') no-repeat 1% center;
  color: #ffffff;
  border: 1px solid #04195b;
  margin: 8px 0px 0px 0px;
  font-size: 18px;
  padding: 10px 15px 10px 40px;
  box-sizing: border-box;
  cursor: pointer;
  text-transform: uppercase;
}

.accordionContent_Y {
   
  padding: 25px;
  padding-top: 22px;
  border: 1px solid #d6b75c;
}
@media(min-width:1600px){  
  
  .prin-title h6 {
    padding: 0 0 0 0px;
  }
}
@media (min-width:1400px) {
  span.cap-img{
    left: 55%;
  }
}
@media (max-width:767px) {
.section1 {
    height: 100vh;
    background-size: cover;
    padding-top: 12px;
}
.section1 img {
    max-width: 91%;
    position: relative;
    top: -173px;
    left: 0;
    z-index: 999999;
    margin: auto;
    text-align: center;
    display: block;
}
.scroll-icon{left:0px}
.principal-slqq{
  top:0px
}
h3.msg-title {
    left: 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    top: -8px;
    font-weight: 700;
}
.tab-buttons {
    display: flex !important;
    width: 100%;
    overflow-x: auto;
}
.tabs-boxs{
  flex-wrap: wrap;
}
.Principal-img{
  margin: 0;
}
ul.tabs-arrow {
    top: -15px;
    right: 5px;
    z-index: 9;
    display: flex;
    padding: 0;
    width: 14%;

}
.tab-buttons label{
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tab-txt {
    width: 100%;
    padding: 0;
}
.bg-vision {
    padding-bottom: 24px;
    margin-top: 23px;
    text-align: center;
}
.bg-vision img{
  margin: auto;
  display: block;
  max-width: 100%;
}
.notice-img {
    text-align: center;
    margin: auto;
    display: block;
    margin-bottom: 20px;
}
.student-box{
  margin-bottom: 40px;
}
.happy-bdaybox{
  width:100%
}
a.btn-viewall{
  top: 0;
}
.bg-strength{
  height:auto
}
ul.four-box{
  flex-wrap: wrap;
}
ul.four-box li {
    padding: 18px 0 0 0;
    width: 100%;
}
a.pht-btn {
    margin-bottom: 40px;
}
.our-dailycare {
    z-index: 99;
    position: relative;
    padding: 16px;
    width: 100%;
    background: #030146;
    text-align: center;
}
.bg-ourServices::after{
  display: none;
}
}