@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  background-color: #fffaf9;
  font-family: "Inter", sans-serif !important;
  /* overflow-x: hidden; */
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
ol, ul { margin: 0; padding: 0;}
:focus-visible {
  outline: none;
}

ol, ul {
  list-style: none;
 
}
.h25 {color: #0d56ba;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;}
    .h25 p:last-child { font-weight: 400; font-size: 15px;}

.clear {
  clear: both;
}

/* Header css */
.top-hd{
    background-color: #2D60AC;
}
img, svg { max-width: 100%;}
.logo{
    padding: 8px 0;
}
.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; margin: 0;
}
ul.top-number li {
  padding: 0 13px;
  transition: all 0.5s;
  color: #fff;
  display: flex;
  align-items: center;
}
ul.top-number li img {
  padding: 0 9px;
}
ul.top-number li a {
  color: #fff;
  transition: all 0.5s;
  text-decoration: none;
}
ul.top-number li:hover {
  /* transform: scale(1.05); */
  /* color: #2d60ac; */
}
/* 
.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;
   
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  width: 114px;
  border-radius: 14px; border: 1px solid #fff; padding: 0;
}
.quick-access .link {
  cursor: pointer;
  display: block;
  padding:2px;
 
  border-bottom: 1px solid #CCC;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
color: #FFF;
font-family: Inter, serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 24px;text-align: right;
}
.quick-access .link span{ display: inline-block;    line-height: normal;
    width: 24px;
    height: 24px;
    padding-top: 3px;
    border-radius: 12px;
    background: #fff;
    float: left;
    text-align: center;}
.quick-access .link span i {
  background: #2d60ac;
  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;
	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 {
	 
}

.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: #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; right: 10px;
}
.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;     white-space: nowrap;
}
.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: #2d60ac;
	color: #FFF;
}


/* Slider Css */
.slider-txt {
 padding: 70px 0 90px 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.slider-txt h1 {
  font-size: 45px;
  font-weight: 300;
    font-family: "Inter", sans-serif;
  color: #fff;
 
  line-height: 56px;
background: #2d60ac82;
    float: left;
    padding: 20px;
    margin: 0;

     
}
.slider-txt h1 span{
  font-weight: 800;
  display: block;
}
.slider-txt p {
  font-size: 19px;
  color: #fff;
  width: 66%;
  font-family: 'Inter';
  font-weight: 300;
  line-height: 24px;
  padding: 0 0 6px 0;
}
a.btn-slider {
  background: rgba(37, 48, 61, 1);
  color: #fff;
  font-size: 15px;
  font-family: 'Inter';
  text-decoration: none;
  padding: 9px 20px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 300;
  transition: all 0.5s;
  border-radius: 26px;
}
a.btn-slider:hover {
  box-shadow: 0 1px 4px 0px #ffffff;
  background: #2d60ac;
}
.slider-bx {
  background-color: #fff;
  position: relative;
 
   
}
.rightside-slider {
  width: 100%;
  right: 0;
  position: relative;
  top: 0;
}
 

.box-sl {
 
 
  
 
}
.box-sl img{
  width: 100%;
  
}
ul.parent-arrow1 { 
 position: absolute;
    top: 50%;
    
    z-index: 9;
    display: flex;
    height: auto;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    /* bottom: 100px; */
    width: 98%; margin: 0; padding: 0;     left: 1%; display: none;
}
li.next1, li.prev1 {
  background:#2d60ac;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
}
li.next1 i{
  position: relative;
top: -1px;
    right: -2px;
}
li.prev1 i {
  position: relative;
    top: -1px;
    left: -1px;
}
#videoPlayer { width: 100%;}
.bg-55 {    background: #d5e115;}
.mt60 {margin: 60px 0 80px 0; padding: 48px 0;}

/* Copyright Icon Css */
.copyright-box{
  margin:50px 0;
  position: relative;
}
a,a:hover { outline: none; text-decoration: none;}
a { text-decoration: none;}
.e-care-box a {
   display: flex;
width: 262.5px;
height: 200px;
padding: 74.906px 0;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 11.985px;
flex-shrink: 0;
border-radius: 24px;
background: #2D60AC;
box-sizing: border-box;
color: #FFF;
text-align: center;
font-family: Inter, serif;
font-size: 14.981px;
font-style: normal;
font-weight: 500;
line-height: normal;  text-decoration: none;
}
.e-care-box a:hover img {
  filter: invert(1);
}
.e-care-box a:hover {
  background: #0d3060;
  color: #d5e115;
}
.e-care-box a:hover svg path { fill: #d5e115;}

.color-light a {
  background: #2d60ac !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; margin: 0; padding: 0;
}
li.next2, li.prev2 {
  height: 30px;
  background: #2d60ac;
  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 */
.notice-title{
  text-align: center;
  padding: 0px 0 16px 0;
  margin: 0px;
}
.notice-title h2 {
 align-self: stretch;
color: #2D60AC;
text-align: center;
font-family: Montserrat, serif; text-transform: uppercase;
font-size: 32px;
font-style: normal;
font-weight: 800;
line-height: normal;
}

.Notice-box{
 
 
  width: 100%;
 
 
  position: relative;  
 
}
 
.notices-bx1 {
 padding: 20px 46.667px 16px 16px;


  position: relative;
  border-radius: 16px;
background: #2D60AC; height: 148px;
   
}
.notice-sl .slick-slide {  padding: 0px 12px;}
.notices-date {
  align-self: stretch;
color: #FFF;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
 
.notices-bx1 p {
  padding: 0px;
  margin: 0px;
  line-height: 18px;
  font-weight: 400; 
}
.notices-bx1 p a{
 
color: #FFF;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal; text-decoration: none; display: inline-block; padding: 10px 0;
}
ul.parent-arrow3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: auto;
  position: absolute;
  width: auto;
  top: 42%;
    margin: 0; padding: 0; width: 100%; left: 0;
}
li.next3, li.prev3 {
height: 30px;
    background: #2d60ac;
    width: 30px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    margin: 0px -30px;
}
 li.prev3 {padding-right: 4px;}
  li.next3 {padding-left: 4px;}
.updated-date {
  color: #FFF;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
} 
.new-bx1 {
  position: absolute;
  right: 15px;
  background: rgba(255, 184, 0, 1);
  width: 46px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  border-radius: 264px;
  border: 1px solid #fff;
  top: 9px;
  font-weight: 500;
  margin: 2px 0px 0 0;
}

/* Meassages Css */
.bg-message{
  padding: 50px 0;
  position: relative;
}
.msg-img {
  overflow: hidden;
  border-radius: 0 190px 190px 0;
  padding: 0 18px 0 0;
}
.msg-img img {
  border-radius: 0 190px 190px 0;
  max-width: 100%;
}
.msg-txt p {
align-self: stretch;
color: #000;
text-align: justify;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.title-msg h3 {
align-self: stretch;
color: #2D60AC;
font-family: Montserrat, serif;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}
.msg-txt a {
 display: flex;
height: 40px;
padding: 8px;
justify-content: center;
align-items: center;
gap: 7px;
flex-shrink: 0;
border-radius: 12px;
background: #2D60AC;
 color: #FFF;
font-family: Montserrat, serif;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal; float: left; text-decoration: none;
}
.msg-txt a span { display: flex
;
    width: 24px;
    height: 24px;
    background: #d5e115;
    justify-content: center;
    align-items: center;
    border-radius: 8px;}
.msg-txt a:hover{
  background: #d5e115;color: #0050c7;
}
.msg-txt a:hover span { background: #2D60AC;}
.msg-txt1 { float: right;}
.msg-txt1 a:hover { background: #0d3060; color: #fff;}
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: #2d60ac;
  width: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* About Us */
.bg-about{
  padding: 0 0 50px 0;
}
.about-img {
   
    
}

.about-img img {
  border-radius: 24px;
  max-width: 100%;
}
 .kids-main .kids-left { display: none;}

.bdy-h5 {display: flex;
padding: 8px 16px;
justify-content: center;
align-items: center;
gap: 8px;
align-self: stretch; border-radius: 8px;
border: 2px solid #0d56ba; color: #0d56ba; margin: 22px 0px 16px 0;

font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;}
.bday-txt h3,.techrgallery-sl b.tname{
color: #0d56ba;

text-align: center;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.bday-txt p,.techrgallery-sl p.tclass{
  color: #0d56ba;

text-align: center;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.achivment { margin: 0;}
 
 .kids-main .kids-left { display: none;}
 #AchievementHome_lblAchievement { display: block; width: 100%; max-width: 295px; margin: 0px auto; margin-top: 86px; margin-bottom: 12px; text-align: center;}
 .kids-right a { display: block; height: 239px; width: 239px; display:inline-block; overflow: hidden; border-radius: 24px;}
  .kids-right a img{width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;}
.ach-year {color: #2D60AC;
text-align: right;
font-family: Montserrat, serif;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-transform: uppercase; float: right; position: relative; top: 5px;}

.bg-ourfounder{
  padding:0 0 50px 0;
}

/* PhotoGallery Css */
.bg-phtgallry{
  background: rgba(37, 48, 61, 1);
  width:100%;
  height: auto;
  padding: 50px 0;
}
.photo-title h3 {
  text-align: right;
  font-size: 30px;
  color: rgba(245, 128, 45, 1);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 7px 4px 0;
}
 
.phto-bx {
 
}
.phto-bx a { width: 267px; height:240px;border-radius: 24px; overflow: hidden; display: block;}
.phto-bx img {
 object-fit: cover;
    height: 100%;
    width: 100%;
}

.video-title h3 {
  text-align: left;
  font-size: 30px;
  color: rgba(245, 128, 45, 1);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0px 4px 0;
}
.videogallery-sl {
 
}
.vido-bx::before {
  content: '';
  background: url('../images/Play.svg');
  height: 42px;
  width: 42px;
  position: absolute;
  bottom: 11px;
  left: 20px;
  z-index: 99;
}
.vido-bx {
 
  position: relative;
 
}
.tpr-hd h2 {color: #2D60AC;
font-family: Montserrat, serif;
font-size: 32px;
font-style: normal;
font-weight: 800;
line-height: normal;
 
text-transform: uppercase;}
 

.prev5, .next5, .prev52, .next52, .prev5A, .next5A, .prev5A_A, .next5A_A, .prev5A-std, .next5A-std {
    /* background: #FC9FBC; */
    width: 32px;
    height: 32px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #d5e115;
    font-size: 21px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s;
}
.next5A_A {left: 100%; margin-left: -30px;}
 .achi-box { position: relative; width: 100%; max-width: 390px; margin: 0px auto;}
#d5e115 { padding-bottom: 2px;}
 
.parent-arrow3X {width: 100%;  position: absolute; max-width: 100%;}
.parent-arrow3X  .slick-arrow { position: absolute; top: 70px;   z-index: 9;}
.parent-arrow3X .prev5A-std,.parent-arrow3X .prev5A,.parent-arrow3X .prev5A_A {left: 0;}
.parent-arrow3X .next5A-std,.parent-arrow3X .next5A,.parent-arrow3X .next5A_A  { right:0;}
.parent-arrow3X .prev5,.parent-arrow3X .next5 {top: 70px; position: relative;
    top: 70px;
    z-index: 9;}

    .parent-arrow3X .next5A_A,.parent-arrow3X .next5A_A {top: 70px; position: relative;
    top: 70px;
    z-index: 9;}
    .tpr-x {
    width: 100%;
    position: relative;
    max-width: 260px;
    margin: 0px auto;
}
#homephotog1_LBPhoto {display: block; border-bottom: 1px solid rgba(36, 53, 161, 0.50);;
    padding-bottom: 20px;
    margin-bottom: 20px;}
.vido-bx img {
 object-fit: cover;
    height: 100%;
    width: 100%;
}
.vido-bx a{width: 267px; height:240px;border-radius: 24px; overflow: hidden; display: block;}
img.video-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 74%;
  left: 5px;
  z-index: 99;
}
a.btn-pht.pht-btn {
  float: right;
  margin: 0 15px 0 0;
}
a.btn-pht {
  display: inline-block;
  background: #2d60ac;
  text-decoration: none;
  padding: 9px 35px;
  border-radius: 21px;
  color: #fff;
  transition: all 0.5s;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 0 15px;
}
a.btn-pht:hover {
  box-shadow: 0 1px 4px 0px #919191;
  background: #25303d;
}

/* Video Popup css */
.modal-content.video-content {
  background: #000000c7;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
span.close {
  background: white;
  margin: 0 0 0 25px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
}
 .course_price span {
  color: #f1594f;
  font-weight: 600;
}
.out-mngr { text-align: center;}
.out-mngr li { display: inline-block;
  width: 100%;
  max-width: 199px;
  margin: 10px;
 
  vertical-align: top;}
  .out-mngr li img { width: 180px; height: 198px;}
.masterText { min-height: 400px;}
ul.innerUl li, ul.unorder_list1 li {
    padding-left: 25px;
    background: url(/images/ulbg.png) 0px 4px no-repeat;
    margin-bottom: 12px;
}
h4 {
    color: #25303D;
    font-weight: 600;
    margin-bottom: 15px;
}
 
.accordionHeader_Y {
    width: 100%;
    text-align: left;
    background: #2d60ac url(/images/ajax-arrow1.png) no-repeat 1% center;
    color: #fff;
    border: 1px solid #2d60ac ;
    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: #d5e115 url(/images/ajax-arrow.png) no-repeat 1% center;
    color: #ffffff;
    border: 1px solid #d5e115;
    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 #d5e115;
}
.box-pages{margin-bottom:20px;  padding:10px}
.box-pages div{padding:10px;background: #d5e115;;min-height:195px}
.box-pages span{font-size:18px;font-weight:bold}
/* Birthday Start */
.bg-birthday{
  padding: 50px 0;
}
.title-bdy p {
  color: rgba(37, 48, 61, 1);
  font-size: 20px;
  padding: 0px;
  margin: 0px;
  text-transform: uppercase;
  font-weight: 400;
}
.title-bdy{
  text-align: right;
  padding: 0 0 20px 0;
}
.title-bdy.title-teacher {
  text-align: left;
}
.title-bdy h2 {
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(37, 48, 61, 1);
  margin: 0px;
  padding: 2px 0 3px 0;
}
.bday-bx1{
  background: #2d60ac;
  height: 428px;
  border-radius: 208px 0 0 208px;
  overflow: hidden;
  position: relative;
}
.tech-bday-bx {
  background: #2d60ac;
  height: 428px;
  border-radius: 0 208px 208px 0;
  overflow: hidden;
}
.bday-bx {
    display: block;
}
.bdayCenter-bx {
  margin: 0px 25px 10px 25px;
}
.bday-sl {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  margin: 0 16px 0 0px;
  position: relative;
}
.bday-img a {
   height: 180px;
   width: 180px;
   display: inline-block;
   border-radius: 24px;
   overflow: hidden;
}
.bday-img img{
  position: relative;
 border-radius: 24px; width: 100%; height: 100%;
  display: flex;
  align-items: center; border-radius: 24px;
  justify-content: center;
}
.bday-txt {
 
  text-align: center;
  color: #fff;
  padding: 0;
  text-transform: uppercase;
  position: relative;
  top: 0;
  line-height: 33px;  
 margin-top: 10px;
}
.techrgallery-sl .topp_hw { margin-bottom: 13px;}
.bday-txt h3,.techrgallery-sl b.tname{
color: #0d56ba;

text-align: center;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.bday-txt p,.techrgallery-sl p.tclass{
  color: #0d56ba;

text-align: center;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
}

span.cap-img {
  position: absolute;
  left: 44%;
  top: -79px;
  z-index: 9;
}
 

.techbday-sl {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  height: 427px;
}
.teachbday-txt {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
  color: #fff;
  padding: 0 32px 0 24px;
  text-transform: uppercase;
  position: relative;
  top: 0;
  line-height: 33px;
  height: 300px;
}
.teachbday-txt h3 {
  padding: 0px;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
}

/* Mobile App Css */
.bg-mobile{
  padding:50px 0px; background: #2d60ac; margin-top: 50px;
}
.mobile-app-bx {
 
  width: 100%;
 
}
.mobile-slide-bx {
  background: rgba(86, 182, 74, 1);
  height: 400px;
  width: 635px;
  border-radius: 200px;
  float: right;
  margin: 19px 20px 0 0;
  padding: 22px;
  overflow: hidden;
}
.mobile-app-icon {
  text-align: center;
}
.mobile-app-icon h5 {
color: #FFF;
font-family: Montserrat, serif;
font-size: 32px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}
.mobile-app-icon h3 {
  color: rgba(0, 0, 0, 1);
  font-size: 30px;
  font-weight: 800;
}
.app-txt h5 {
  align-self: stretch;
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.mobile-sl ul.slick-dots li {
  width: 23px;
  height: 23px;
  background: white;
  border-radius: 50%;
  border:1px solid white;
}
.mobile-sl ul.slick-dots li.slick-active {
  border: 1px solid #fffefe;
  background: #2d60ac;
}
.mobile-app-icon {
  text-align: center;
    font-weight: 300;
    margin: 0px;
    padding: 0px;
    display: flex
;
    gap: 16px;
    flex-direction: column;
}
.mobile-app-icon h4 {
align-self: stretch;
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;padding: 15px 0 0 0;
    margin: 0;
}
.mobile-app-icon span {
  display: block;
  padding: 0px 0 0 0;
  align-self: stretch;
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.get{align-self: stretch;
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;}
.gupd{align-self: stretch;
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;}
.container11 { max-width: 336px;}
#txtEmail { line-height: 38px;}
#btnSend {display: flex;
padding: 14px 0;
justify-content: center;
align-items: center;
flex: 1 0 0;
align-self: stretch;
border-radius: 12px;
background: #FFF;
box-sizing: border-box; border: 0; outline: none; width: 100%;     margin-top: 16px;
}
/* Footer Css */
footer{
  background: #2d60ac;
  padding: 50px 0 0 0;
}
footer .container { max-width: 1200px;}
.ft-logo {display: flex
;
    gap: 16px;
    flex-direction: column;}
.ft-logo h2{ 
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 20px; margin: 0;}
.ft-logo h6 {
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 30px;
text-transform: uppercase; margin: 0;
}
.line { position: relative;}
.line:after {width: 1px ; background: #fff; height: 90%; content: ""; right: 2px; top: 0;position: absolute;}
.call {  
color: #FFF;
text-align: center;
font-family: Montserrat, serif;
font-size: 24px;
font-style: normal;
font-weight: 500; margin: 0;
line-height: 40px;
text-transform: uppercase;}
.gp-16 { gap: 16px;}
.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:#2d60ac
}
.widgets-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.followus {
  padding: 36px 0 0px 0px;
}
.followus h4 {
  color: rgba(245, 128, 45, 1);
  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 rgba(245, 128, 45, 1);
  align-items: center;
  justify-content: center;
}
.widgets-social a:hover {
  background: rgba(245, 128, 45, 1);
}
 
.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: 100%;
    margin: 0;
    padding: 0;
}
ul.quickul li {background: url(/images/footer-arrow.png) center left no-repeat;
    padding-left: 25px;}
ul.quickul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  line-height: 40px;
  transition: all 0.6s;
}
ul.quickul li a:hover{
color: #d5e115;
}
.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: #d5e115;
}

.masterMain {
    margin: 40px 0;
    background: #fff;
    padding: 24px 26px;
    border-radius: 4px;
}
h3.masterHead.pageHeading {
    background: #2d60ac;
    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 #2d60ac;
    position: absolute;
    bottom: -12px;
}
h3.innerH3 {
    font-size: 24px;
    font-weight: 600;
    padding: 13px 0 5px 0;
    margin: 0px;
}
.innerImg,.innerImg1 {
    float: right;
    margin-left: 20px;
}
.innerImg img  {
    border-radius: 0 47px;
    box-shadow: 1px 6px 6px 0px rgb(0 0 0 / 30%);
}
.innerImg1 img, .innerImg2 img {
    border: 10px solid #fff;
    -webkit-box-shadow: 0 0 10px 2px rgba(171, 171, 171, 1);
    -moz-box-shadow: 0 0 10px 2px rgba(171,171,171,1);
    box-shadow: 0 0 10px 2px rgba(171, 171, 171, 1);
}
.masterText p {
    font-size: 16px;
    color: #3a3737;
    line-height: 23px;
    padding: 0px 0 12px 0; text-align: justify;
    margin: 0;
}

@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;
  }
 
}

@media (max-width:767px){
 li.next3, li.prev3 { margin: 0px 0px;}
 .line:after { display: none;}
   
.rightside-slider{
  position: relative;
  width: 100%;
}

#homeVedio1_LBPhoto,#homephotog1_LBPhoto { width: 100%; max-width: 270px; margin: 0px auto;}
.box-sl img{
  height: auto;
}
.Notice-box::before{
  display: none;
}
.Notice-box {
  width: 100%;
  height:auto;
  padding: 20px;
  border-radius: 7px;
}
 
  .ach-year { font-size: 16px;}
  .tpr-hd h2,.title-msg h3 { font-size: 25px;}
  .notices-bx1 { padding: 10px;}
.msg-img img, .msg-img, .about-img{
  border-radius: 6px;
  padding-bottom: 10px;
  padding-right: 0px;
}
 
.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;
}


 
}