@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: #fffaf9;
  font-family: "Inter", sans-serif !important;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus-visible {
  outline: none;
}

ol, ul {
  list-style: none;
  padding: 0 0 !important;
  margin: 0 !important;
}


.clear {
  clear: both;
}

/* Header css */
.top-hd {
    background: url('../images/logo-bg.png');
    background-repeat: no-repeat;
    background-position: center ;
}
.logo {
    position: relative;
    top: 12px;
    z-index: 999;
}
.top-rt {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 22px;
}
a.home-top {
    background: #90000D;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
ul.top-number {
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.top-number li svg {
    width: 21px;
    padding: 0 3px 0 0;
}
ul.top-number li {
    padding: 0 13px 0 10px;
    transition: all 0.5s;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 13px;
}
ul.top-number li img {
  padding: 0 9px;
}
ul.top-number li a {
  color: #fff;
  transition: all 0.5s;
  text-decoration: none;
  font-size: 12px;
}
ul.top-number li:hover {
  transform: scale(1.05);
  /* color: #F5802D; */
}
/* 
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  } */

  
/* Access Quick css */
.quick-access {
  margin: 0;
  /* background: #ffffff; */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 148px;
  border-radius: 30px;
}
.quick-access .link {
    cursor: pointer;
    display: block;
    padding: 8px 11px 10px 2px;
    color: #90000D;
    font-size: 13px;
    border-bottom: 1px solid #CCC;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-align: right;
    font-weight: 500;
    background-color: #fff;
    width: 88%;
    border-radius:5px
}
.quick-access .link span img {
    padding: 0 11px 0 0;
}
.quick-access .link span img {    
    height: 14px;
    width: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90000D;
    border-radius: 50%;
    /* transform: rotate(90deg); */
}
.quick-access li:last-child .link {
	border-bottom: 0;
}

.quick-access li img {
    position: absolute;
    top: 12px;
    left: 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: 6px;
  right: auto;
  font-size: 16px;
  top: 6px;
}
.quick-access li.open .link {
	color: #90000D;
}

.quick-access li.open i {
	color: #90000D;
}
.quick-access li.open img {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 8px;
    left: 8px;
}
.access-dropdown {
  display: none;
  background: #fff;
  font-size: 14px;
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 5px 0px #b5b5b5;
  z-index: 9999;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  transition: all .35s linear;
}
.quick-access li:hover .access-dropdown {
  webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.access-dropdown li {
	border-bottom: 1px solid #f5f5f5;
}
.access-dropdown li:last-child{
  border-bottom: none;
}
ul.access-dropdown li a {
  padding: 10px 30px 10px 20px;
  color: #1c1b1b;
  font-weight: 400;
  font-size: 15px;
}
.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: #90000d;
	color: #FFF;
}


/* Slider Css */

.bg-slider{
  /* background-image: url('../images/slider-bg.jpg'); */
  width: 100%;
  height: auto;
  position: relative;
}
img.claudine {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    max-width: 200px;
}
techbday-sl img {
    margin-top: -10px;
}
.carousel-item img{
  width: 100%;
}
.carousel-caption {
  position: relative !important;
  right: 0 !important;
  top: 0%;
  left: 0 !important;
}
.carousel-caption h1 {
    font-family: 'Inter';
    width: 100%;
    color: #444;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 104%;
    text-transform: uppercase;
}
span.text-green {
    color: #90000D;
    font-size: 50px;
}
.carousel-caption p {
    line-height: 22px !important;
    color: #444;
    font-family: 'Montserrat';
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    padding: 12px 0 0 0;
    margin: 0px;
}
a.btn-admission {
    background: #90000D;
    font-size: 16px;
    padding: 9px 13px !important;
    line-height: 18px;
    margin: 0px;
    border-radius: 3px;
    margin-top: 50px;
}
p.sl-btn a {
  text-decoration: none;
  display: inline-block;
  padding: 16px 24px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s;
}
a.btn-pink {
  background: #F7548C;
  margin-right: 10px;
}
a.btn-blue{
  background: #37305B;
}
p.sl-btn a:hover{
  background-color: #275A95;
}



/* Copyright Icon Css */
.copyright-box {
    padding: 123px 0 50px 0;
    position: relative;
    background: #90000D;
    margin: -162px 0px 0 0;
}
.e-care-box a {    
    height: auto;
    border-radius: 82px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 0;
    width: auto !important;
    flex-direction: column;
    color: #fff;
    line-height: 42px;
    transition: all 0.5s;
    text-decoration: none;
    font-weight: 300;
}
.e-care-box img{
  filter: invert();
}
.e-care-box a:hover img {
  filter: invert(1);
}
.e-care-box a svg{    
  border: 1px solid transparent;
    height: 84px;
    padding: 0 13px;
    width: 80px;
    border-radius: 8px;
    transition: all 0.6s;
}
.e-care-box a svg:hover {
    border: 1px solid #F54D5C;
    height: 84px;
    padding: 0 13px;
    width: 80px;
    border-radius: 8px;
}
.regular {
    border: 1px solid #F54D5C;
    border-radius: 12px;
    margin: 0 0 40px 0;
    padding: 6px 0 11px 0;
}
/* .e-care-box :hover {
  background: #f5802d;
  color: #fff;
} */

.color-light a {
  background: #f5802d !important;
  color:#fff
}
.e-care-box {
  width: auto !important;
}
ul.parent-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: auto;
  position: absolute;
  width: 103%;
  top: 42%;
  left: -17px;
}
li.next2, li.prev2 {
  height: 30px;
  background: #f5802d;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
li.prev2 i {
  left: -2px;
  position: relative;
}
li.next2 i {
  position: relative;
  left: 2px;
}


/* Notices Box */

.notices-bx {
    padding: 0 0 50px 0;
    background: #F8F8F8;
}

.notice-title {
    display: flex
;
    justify-content: center;
    align-items: center;
    padding: 16px 0 21px 0;
}
.btn-readmore {
    width: 99px;
    height: auto;
    background: #90000d;
    transition: all 0.5s;
    padding: 6px 9px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    margin-top: 11px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 6px;
}
.btn-readmore:hover {
  background: #0c3b17;
}
.notices {
  text-align: center;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
.notice-title h2 {
    padding: 18px 10px 0px 10px;
    color: #424242;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    text-transform: capitalize;
}
.notice-title h2 span {
  color: #90000D;
}

.notice-box {
    background-color: #E6E8F8;
    background: linear-gradient(180deg, #FEFEFF 0%, #E6E8F8 100%), #90000D;
    width: 96% !important;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    text-align: left;
    border-top: 2px solid #fff;
    border-bottom: 15px solid #90000D;
    height:290px
}
.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;
    text-decoration: none;
    background: #90000d;
    width: 71px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter';
    border-radius: 6px;
}
.notice-box p {
  margin: 0px;
  padding: 24px 0 0 0;
  line-height: 16px;
}
.notices-date span {
    font-size: 30px;
    padding: 0;
    display: block;
    color: #424242;
    font-weight: 800;
    text-transform: uppercase;
}
.notice-box p a {
    font-size: 16px;
    color: #424242;
    text-decoration: none;
    font-family: 'Inter';
    line-height: 21px;
    text-transform: uppercase;
    width: 87% !important;
    display: inline-block;
    font-weight: 500;
}
.updated-date {
    color: #CE0000;
    font-size: 12px;
    padding: 4px 0 0 0;
    margin: 0px;
}
ul.parent-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: auto;
  position: absolute;
  width: 103%;
  top: 55%;
  left: -17px;
}
li.next2, li.prev2 {
  height: 30px;
  background: rgba(69, 168, 91, 1);
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
li.prev2 i {
  left: -2px;
  position: relative;
}
li.next2 i {
  position: relative;
  left: 2px;
}

/* Meassages Css */
.bg-message {
    padding: 50px 0 0 0;
    position: relative;
    background: #F8F8F8;
}
.message-sl {
    border-radius: 22px;
    background: linear-gradient(180deg, #FEFEFF 0%, #E6E8F8 100%);
    padding: 36px 50px;
    z-index: 99;
    margin-bottom: 80px;
}
.msg-img {
  overflow: hidden;
  border-radius: 20px;
  padding: 0 18px 0 0;
}
.msg-img img {
  border-radius: 20px;
  max-width: 100%;
}
.msg-txt p {
    color: #18305D;
    text-align: justify;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.title-msg h4 {
    color: #424242;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
 
}
.title-msg h5 {
    color: #90000D;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}
.msg-txt a {
    background: #90000D;
    padding: 8px 30px;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 200;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 11px;
    transition: all 0.5s;
    cursor: pointer;
}
.msg-txt a:hover{
  background: #444;
}
ul.parent-arrow4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: auto;
  position: absolute;
  width: 69px;
  top: 6px;
  right: 17px;
}
li.next4, li.prev4 {
  height: 30px;
  background: #f5802d;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* About Us */
.aboutus-bg {
    height: auto;
    margin: -50px 0 0 0;
    border-radius: 20px;
    position: relative;
    z-index: 99;
    padding: 30px 60px;
    overflow: hidden;
    background-image: linear-gradient(180deg, #FEFEFF 0%, #E6E8F8 100%);
    height: 600px;
}
.aboutus-bg h3 {
  text-align: center;
  font-weight: 800;  
  color: #3B3B3B;
  font-size: 30px;
}
.aboutus-bg p {
  padding: 26px 0 0 0;
  text-align: justify;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  color: #3B3B3B;
}
a.btn-about {
    width: 99px;
    height: auto;
    background: #90000d;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 6px;
    transition: all 0.5s;
    padding: 6px 9px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    float: right;
    cursor: pointer;
    z-index: 999;
    position: relative;
}
a.btn-about img {
  max-width: 23px;
}
img.sch-building {
    width: 100%;
    position: absolute;
    bottom: -20px;
    z-index: 9;
    width: 101%;
    left: 0;
}

/* PhotoGallery Css */
.bg-phtgallry {
    width: 100%;
    padding: 50px 0;
    border-radius: 22px 22px 0px 0px;
    background: linear-gradient(180deg, #FEFEFF 50%, #ebebeb 100%);
    height: 653px;
    border-bottom: 255px solid #fff;
}
.tabs-content{
  position: relative;
}
#tab1, #tab2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#tab1 {
    visibility: visible;
    position: relative;
}

#tab2 {
    visibility: hidden;
}
.tabs-nav1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-nav1 div {
  padding: 12px 10px 12px 10px;
  color: #424242;
  font-family: Inter;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  border-right: 1px solid #424242;
  margin-bottom: 16px;
}
.tabs-nav1 div:last-child{
  border-right: none;
}
.tab-title{
  cursor: pointer;
}
.tab-title span{
  color: #90000D;
}
.tab-title.active {
    position: relative;
}
.tab-title.active:before {
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 14px solid #90000D;
    content: '';
    position: absolute;
    margin: auto;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
}
.photo-img img {
    max-width: 100%;
    width: auto;
    height: 400px;
    text-align: center;
    margin: auto;
    max-width: 100%;
}
.slider.slider-nav {
    width: 50%;
    margin: auto;
    margin-top: -54px;
}
.slider.slider-nav .photo-img {
    padding: 0 3px;
}
.slider.slider-nav .photo-img img {
    width: 100%;
    height: 90px;
    border-radius: 12px;
    text-align: center;
    margin: auto;
    object-fit: cover;
    border: 2px solid #fff;
}
.photo-img img {
    border-radius: 15px;
}
ul.parent-arrow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: auto;
    position: absolute;
    width: 111%;
    top: 86%;
    left: -64px;
}
li.next11, li.prev11 {
  box-shadow: 0px 5.647px 11.294px 0px rgba(0, 0, 0, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
}
li.prev11 i {
  left: -2px;
  position: relative;
}
li.next11 i {
  position: relative;
  left: 2px;
}
.dd{
  position: relative;
}


/* Video Gallery */
.photo-img1 img {
    border-radius: 15px;
    height: 400px;
    width: auto;
    object-fit: cover;
    text-align: center;
    margin: auto;
    max-width: 100%;
}

.slider.video-gallery-nav {
    width: 50%;
    margin: auto;
    margin-top: -55px;
}
.slider.video-gallery-nav .photo-img1 {
    padding: 0 3px;
}
.video-gallery-nav .photo-img1 img {
    width: 100%;
    height: 90px;
    border-radius: 12px;
    text-align: center;
    margin: auto;
    object-fit: cover;
       border: 2px solid #fff;
}

.photo-img1 img {
    border-radius: 15px;
}
ul.parent-arrow1 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: auto;
    position: absolute;
    width: 111%;
    top: 86%;
    left: -64px;
}
li.next12, li.prev12 {
  box-shadow: 0px 5.647px 11.294px 0px rgba(0, 0, 0, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
}
li.prev12 i {
  left: -2px;
  position: relative;
}
li.next12 i {
  position: relative;
  left: 2px;
}


/* Birthday Start */

.main-bg-box{
   background: linear-gradient(180deg, #FEFEFF 12%, #ebebeb 84%);
}


.bg-birthday{
  padding: 50px 0; 
  position: relative;
}
.bg-birthday:after {
    content: '';
    position: absolute;
    background-image: url('../images/left-dot.png');
    left: 0;
    bottom: 0;
    width: 233px;
    height: 228px;
    z-index: 0;
    background-size: 100%;
    background-repeat: no-repeat;
}
.bday-main {
    width: 88%;
    margin: auto;
    z-index: 99;
    position: relative;
    background: #ffffff57;
}
.title-bday {
    color: #444;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    padding: 20px 0 36px 0;
}

.bady-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
     border: 1px solid #90000D;
}
.bady-tab div {
        width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
   
}
.bday-title{
  text-transform: uppercase;
  color: #90000D;
   cursor: pointer;
}
.bday-title.active {
    background: #90000D;
    color: #fff;
    text-transform: uppercase;
}

.nav-link:focus, .nav-link:hover {
    color: #90000D;
}
.bday-main ul {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  border: 1px solid #90000D;
}
.tabs-box li {
    width: 50%;    
    background: #FFF;
    text-align: center;
    text-transform: uppercase !important;
}
.tabs-box li .active {
    background: #90000D !important;
    width: 100%;
    border-radius: 0;
}
.tabs-box li button, .tabs-box li button:hover  {
    color: #90000D;
    width: 100% !important;
    border-radius: 0 !important;
}

.tab-content {
    border-radius: 0 0 10px 10px;
    border: 1px solid #CACACA;
    background: rgb(248 248 248 / 76%);
    backdrop-filter: blur(1px);
    text-align: center;
    margin: auto;
    padding: 0 30px 30px 30px;
    height: 436px;
    overflow: hidden;
}
.bday-img img {
    text-align: center;
    margin: auto;
    display: block;
    width: auto;
    height: 228px;
    border-radius: 10px;
}
.bday-txt h3 {
    font-weight: 700;
    font-size: 21px;
    padding: 15px 0 4px 0;
    margin: 0px;
}
.bday-txt p{
  padding: 0;
  margin: 0;
}


/* Achievements */

ul.achivmt li {
    width: 100% !important;
}
.bday-txt a {
    width: 99px;
    height: auto;
    background: #90000d;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 6px;
    transition: all 0.5s;
    padding: 6px 9px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    z-index: 999;
    position: relative;
    margin: auto;
    margin-top: 11px;
}
.bday-txt a:hover {
    background: #06461f;
}

.bday-bx h6 {
    font-weight: 400;
    padding: 20px 0 20px 11px;
    line-height: 21px;
    width: 90%;
    color: #18305D;
    margin: auto;
    text-align: left;
}

/* Testimonial Start */

.bg-testimonial {
    margin: 0 0 40px 0;
    position: relative;
    height: auto;
  
    padding: 0 0 50px 0;
}
.bg-red{
   background: #90000D;
   height: 382px;
     overflow: hidden;
}
.title-textmonl {
    color: #424242;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    padding: 10px 0 10px 0;
}
.Testimonial-sl img {
    border-left: 30px solid #ffff;
    border-right: 30px solid #fff;
    max-width: 100%;
}
.tesmonl-img{
  width: 100%;
}
.txtmonl-p {
    padding: 72px 18px 0 58px !important;
    color: #fff;
    font-family: 'Inter';
}
.txtmonl-p h4 {
    font-size: 20px;
}
.txtmonl-p a {
    background: #fff;
    border-radius: 3px;
    padding: 3px 11px;
    display: inline-block;
    text-decoration: none;
    color: #90000d;
    font-size: 13px;
    float: right;
}
ul.parent-arrow5 {
    width: auto;
    bottom: 26%;
    left: 39%;
    display: flex;
    position: absolute;
}
ul.parent-arrow5 li {
    margin: 0 33px 0 -7px;
    cursor: pointer;
}

/* Testimonial End */


/* Mobile App Css */
.bg-mobile {
    padding: 0 0 50px 0px;
    background: url('../images/App-Mockup1.png');
    background-repeat: no-repeat;
    background-size: 100%;
    height: 543px;
}
.mobile-app-bx {
  /* background: url('../images/App-Mockup.png'); */
  height: auto;
  width: 100%;
  border-radius: 212px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.mobile-slide-bx {
    /* background: rgba(86, 182, 74, 1); */
    height: 400px;
    width: 635px;
    border-radius: 200px;
    float: right;
    margin:61px 0 0 0;
    padding: 22px;
    overflow: hidden;
    border-radius: 31px;
    border: 1px solid #BABABA;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(10px);
}
.mobile-app-icon {
  text-align: center;
}
.mobile-app-icon h5 {
  color: rgba(0, 0, 0, 1);
  font-weight: 400;
  font-size: 20px;
  padding: 15px 0 0 0;
  margin: 0px;
}
.mobile-app-icon h3 {
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight: 800;
}
.app-txt h5 {
  font-size: 20px;
  font-weight: 300;
  color: #90000D;
  text-align: center;
}
.mobile-sl ul.slick-dots li {
  width: 13px;
  height: 13px;
  background: #444;
  border-radius: 50%;
  border:1px solid white;
}
.mobile-sl ul.slick-dots li.slick-active {
  border: 1px solid #fffefe;
  background: #444;
}
.mobile-app-icon {
  text-align: center;
  font-weight: 300;
  margin: 0px;
  padding: 0px;
}
.mobile-app-icon h4 {
  color: #444;
  font-size: 20px;
  font-weight: 400;
  padding: 15px 0 0 0;
}
.mobile-app-icon h4 span {
  display: block;
  padding: 7px 0 0 0;
}

/* Footer Css */
footer{
  background: linear-gradient(180deg, #FEFEFF 42.62%, #E6E8F8 84.3%), #25303D;
  padding: 20px 0 0 0;
}
.ft-logo{
  border-right: 1px solid #90000D;
}
.ft-logo h6 {
    color: #444;
    font-weight: 400;
    font-size: 18px;
    padding: 36px 0 17px 0;
    line-height: 24px;
    width: 68%;
}
.ft-logo p img {
  margin: 0 11px 0 0;
}
.ft-logo p a {
  text-decoration: none;
  color: #444;
  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;
}

.followus {
  padding: 36px 0 0px 0px;
}
.followus h4 {
  color: #90000D;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0 0 9px 0;
}
.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 #90000D;
  align-items: center;
  justify-content: center;
}
.widgets-social a:hover {
  background:rgb(144 0 13);
}
.widgets-social a img{
  filter: invert(0.6);
}
.ft-orng {
    height: auto;
    border-radius: 0;
    padding:21px 0 0 58px;
}
.ft-orng h2 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #90000D;
    letter-spacing: 0.7px;
    padding-bottom: 0px;
}
.ft-ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin: 0px;
}
ul.quickul {
  width: 230px;
}
ul.quickul li a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-weight: 200;
  line-height: 36px;
  transition: all 0.6s;
}
ul.quickul li a:hover{
  color: rgba(37, 48, 61, 1);;
}
.ft-copyright {
  padding: 45px 0 0 0;
  text-align: center;
  color: #444;
}
.ft-copyright p{
  font-size: 16px;
  font-weight: 200;
}
.ft-copyright a{
  color: #444;
  text-decoration: none;
  transition: all 0.5s;
}
.ft-copyright a:hover{
  color:rgba(245, 128, 45, 1);
}
.masterMain {
    margin: 40px 0;
    background: #f9f9f9;
    padding: 24px 26px;
    border-radius: 5px;
    box-shadow: 0 0 10px 1px #ededed;
}
h3.masterHead.pageHeading {
    background: #90000D;
    text-align: center;
    display: flex;
    margin: 0px auto 32px;
    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;
}
h3.masterHead.pageHeading::before {
    content: '';
    width: 0px;
    height: 0px;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 13px solid #90000D;
    position: absolute;
    bottom: -12px;
}
h3.innerH3 {
    font-size: 24px;
    font-weight: 600;
    padding: 13px 0 5px 0;
    margin: 0px;
}
.innerImg {
    float: right;
    margin-left: 20px;
    text-align: center;
}

.innerImg img {
    border-radius: 0 47px;
    box-shadow: 1px 6px 6px 0px rgb(0 0 0 / 30%);
    margin-bottom: 10px;
}

ul.innerUl li {
  padding-left: 47px;
  background: url('/images/arrow-hand.png') 0px 4px no-repeat;
  margin-bottom: 12px;
}

.masterText p {
    font-size: 16px;
    color: #3a3737;
    line-height: 23px;
    padding: 0px 0 12px 0; text-align: justify;
    margin: 0;
}

.masterText img { max-width: 100%;}
.accordionHeader_Y {
    width: 100%;
    text-align: left;
    background: #90000D url('/images/ajax-arrow1.png') no-repeat 1% center;
    color: #fff;
    border: 1px solid #90000D ;
    margin: 8px 0px 0px 0px;
    font-size: 18px;
    padding: 10px 15px 10px 40px;
    box-sizing: border-box;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
}

.accordionHeaderSelected {
    width: 100%;
    text-align: left;
    background: #90000D url(/images/ajax-arrow.png) no-repeat 1% center;
    color: #ffffff;
    border: 1px solid #90000D;
    margin: 8px 0px 0px 0px;
    font-size: 18px;
    padding: 10px 15px 10px 40px;
    box-sizing: border-box;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 400;
}

.accordionContent_Y {
    background-color: #fff;
    padding: 25px;
    padding-top: 22px;
    border: 1px solid #90000D;
}
@media (min-width: 1400px){
  span.cap-img{
    left: 53% ;
  }
  
  .phto-bx img{
    left: 0%;
  }
  
}
@media (max-width: 992px){
  .Notice-box::before{
    display: none;
  }
  .Notice-box {
    width: 100%;
    height:auto;
    padding: 3px 41px 25px 41px;
    border-radius: 7px;
  }
  .notices-bx1 p a{
    width: 100% !important;
  }
  .notices-bx1{
    width: 100% !important;
    margin:0 0 0 4px;
    padding: 0px;
  }
}

@media (max-width:767px){
  .top-number{
    display: none !important;
  }
  .logo img {
      width: 43%;
  }
  .quick-access {
    position: absolute;
    top: 13px;
}
.rightside-slider{
  position: relative;
  width: 100%;
}

.box-sl img{
  height: auto;
}
.Notice-box::before{
  display: none;
}
.Notice-box {
  width: 100%;
  height:auto;
  padding: 3px 41px 25px 41px;
  border-radius: 7px;
}
.notices-bx1 p a{
  width: 100% !important;
}
.notices-bx1{
  width: 100% !important;
  margin:0 0 0 4px;
  padding: 0px;
}
ul.parent-arrow3{
  width: 98%;
  left: 3px;
}
.msg-img img, .msg-img, .about-img{
  border-radius: 6px;
  padding-bottom: 10px;
  padding-right: 0px;
}
.photogallery-sl, .videogallery-sl{
  height: auto;
  border-radius: 7px;
}
.bday-bx1 {  
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 34px 0;
  border-radius: 5px;
}
.bday-img {
  width: 100%;
  margin: 0 0 21px 0;
}
.bday-txt, .teachbday-txt{
  writing-mode: unset;
  height: auto;
}
.techbday-sl {
  height: auto;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 34px 0;
}
.bday-bx, .tech-bday-bx{
  height: auto;
  border-radius: 7px;
  margin-bottom: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.photo-title h3, .title-bdy{
  text-align: left;
}
span.cap-img {
  display:none;
}

.mobile-app-bx, .mobile-slide-bx{
  height:auto;
  border-radius: 7px;
}
.mobile-slide-bx{
  height: auto;
  float: none;
  width: 100%;
}
.ft-orng {
  height: auto;
  border-radius: 7px;
  padding: 18px;
  margin: 27px 0;
}
.ft-copyright{
  padding: 0px;
}
ul.parent-arrow {
  width: 94%;
  top: 42%;
  left: 12px;
}
.slider-txt{
  padding: 42px 0 8px 0
}
.box-sl{
  border-radius: 7px;
  height: auto;
}
ul.parent-arrow1 {
  height: auto;
  top: 46%;
  left: 0;
  right: 0;
  position: absolute;
  flex-direction: row;
  transform: 0;
}
li.next1, li.prev1{
  width: 42px;
  height: 42px;
  transform: rotate(90deg);
}

}