:root {
  --body-color1:#ff5c2b;
  --body-color2:#0f3541;

--body-color:#434343;
 --head-font: "Montserrat", serif;
 --head-font1:"Montserrat", serif;
  --body-font: "Montserrat", serif;

 
 }

#hm, #hm1{
  -webkit-transition: all 0.4s ease;
          transition: all 0.4s ease;
          
          
  
      }
      #hm.sticky, #hm1.sticky1 {
        position:fixed; top:0; z-index:1998 !important; width:100%; border-bottom: 1px solid rgb(233, 232, 232); 
        background: #d1131f;  visibility: visible !important;
        animation: drop-in 1s ease 200ms backwards;
      } 
      #hm1.sticky1 .top-div1{display: none;}

      #hm.sticky .top-div1, #hm.sticky .top-div2{display: none;}  
      #hm.sticky .top-div{padding-top: 0; padding-bottom: 0;}
       /*#hm.sticky .top-div{height: auto; padding-bottom: 10px;}
      #hm.sticky .logo-div{width: 20%;}
      #hm.sticky .logo-hd{width: 100%;}
      #hm.sticky .logo-hd h3{font-size: 15px;}
      #hm.sticky .logo-hd h4{font-size: 13px;}
      #hm.sticky .logo-header img{width: 40%;}
      #hm.sticky .menu-list ul li{padding: 0 10px;}
      #hm.sticky .top-div{padding-bottom: 0;}*/
      body{
        font-family: var(--body-font);
       color:var(--body-color);
          text-align: justify;
          line-height: 31px;
        font-size: 16px;
        letter-spacing:0px;
        /* background: #fff; */
        }
  
      .container {
        max-width: 1200px;
        width: 100%;
      }
      a, a:hover, a:focus{outline: none; text-decoration: none;}
      h1, h2, h3, h4, h5{font-family: var(--head-font);}
      img{display: block;}
      
        
       

.logo-text{column-gap: 20px;}
.logo-hd{text-align: center;}
.logo-hd h3{margin: 0; font-size: 28px; color:#d1131f; border-bottom: 1px solid #efb671; padding-bottom: 5px; font-weight: 600;}
.logo-hd h4{margin: 0; font-size: 23px; color:#4d4d4d; padding-top: 5px; font-weight: 400;}

#hm.sticky .offcanvas.offcanvas-top{margin-top: 0;}
            #hm.sticky .menu-btn{top: 10px;}


            #hm1.sticky1 .offcanvas.offcanvas-top{margin-top: 0;}
            #hm1.sticky1 .menu-btn{top: 10px;}

  @keyframes drop-in {
      from {
       opacity: 0;
       transform: translateY(-100px);
      }
      to {
       opacity: 1;
       transform: translate(0px);
      }
     }
     @keyframes swing {
      0% {
        transform: rotate(0deg);
      }
      10% {
        transform: rotate(10deg);
      }
      30% {
        transform: rotate(0deg);
      }
      40% {
        transform: rotate(-10deg);
      }
      50% {
        transform: rotate(0deg);
      }
      60% {
        transform: rotate(5deg);
      }
      70% {
        transform: rotate(0deg);
      }
      80% {
        transform: rotate(-5deg);
      }
      100% {
        transform: rotate(0deg);
      }
    }
    
    @keyframes sonar {
      0% {
        transform: scale(0.9);
        opacity: 1;
      }
      100% {
        transform: scale(2);
        opacity: 0;
      }
    }
    .page-wrapper .sidebar-wrapper,
    .sidebar-wrapper .sidebar-brand > a,
    .sidebar-wrapper .sidebar-dropdown > a:after,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
    .sidebar-wrapper ul li a i,
    .page-wrapper .page-content,
    .sidebar-wrapper .sidebar-search input.search-menu,
    .sidebar-wrapper .sidebar-search .input-group-text,
    .sidebar-wrapper .sidebar-menu ul li a,
    #show-sidebar,
    #close-sidebar {
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -ms-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
    }
    
    /*----------------page-wrapper----------------*/
    
    .page-wrapper {
      /* height: 100vh; */
      
    }
    
    .page-wrapper .theme {
      width: 40px;
      height: 40px;
      display: inline-block;
      border-radius: 4px;
      margin: 2px;
    }
    
    .page-wrapper .theme.chiller-theme {
      background: #1e2229;
    }
    
    /*----------------toggeled sidebar----------------*/
    
    .page-wrapper.toggled .sidebar-wrapper {
      left: 0px;
    }
    
    @media screen and (min-width: 768px) {
      .page-wrapper.toggled .page-content {
        padding-left: 300px;
      }
    }
    /*----------------show sidebar button----------------*/
    #show-sidebar {
      position: fixed;
      left: 0;
      top: 10px;
      border-radius: 0 4px 4px 0px;
      width: 50px;
      transition-delay: 0.3s;
      z-index: 2000;
      
    }
    .page-wrapper.toggled #show-sidebar {
      left: -70px;
    }
    #show-sidebar i{font-size: 30px;}
    /*----------------sidebar-wrapper----------------*/
    
    .sidebar-wrapper {
      width: 260px;
      height: 100%;
      max-height: 100%;
      position: fixed;
      top: 0;
      left: -300px;
      z-index: 999;
    }
    
    .sidebar-wrapper ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }
    
    .sidebar-wrapper a {
      text-decoration: none;
    }
    
    /*----------------sidebar-content----------------*/
    
    .sidebar-content {
      max-height: calc(100% - 30px);
      height: calc(100% - 30px);
      overflow-y: auto;
      position: relative;
    }
    
    .sidebar-content.desktop {
      overflow-y: hidden;
    }
    
    /*--------------------sidebar-brand----------------------*/
    
    .sidebar-wrapper .sidebar-brand {
      padding: 10px 20px;
      display: flex;
      align-items: center;
    }
    
    .sidebar-wrapper .sidebar-brand > a {
      text-transform: uppercase;
      font-weight: bold;
      flex-grow: 1;
    }
    
    .sidebar-wrapper .sidebar-brand #close-sidebar {
      cursor: pointer;
      font-size: 20px;
    }
    /*--------------------sidebar-header----------------------*/
    
    .sidebar-wrapper .sidebar-header {
      padding: 20px;
      overflow: hidden;
    }
    
    .sidebar-wrapper .sidebar-header .user-pic {
      float: left;
      width: 60px;
      padding: 2px;
      border-radius: 12px;
      margin-right: 15px;
      overflow: hidden;
    }
    
    .sidebar-wrapper .sidebar-header .user-pic img {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }
    
    .sidebar-wrapper .sidebar-header .user-info {
      float: left;
    }
    
    .sidebar-wrapper .sidebar-header .user-info > span {
      display: block;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-role {
      font-size: 12px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-status {
      font-size: 11px;
      margin-top: 4px;
    }
    
    .sidebar-wrapper .sidebar-header .user-info .user-status i {
      font-size: 8px;
      margin-right: 4px;
      color: #5cb85c;
    }
    
    /*-----------------------sidebar-search------------------------*/
    
    .sidebar-wrapper .sidebar-search > div {
      padding: 10px 20px;
    }
    
    /*----------------------sidebar-menu-------------------------*/
    
    .sidebar-wrapper .sidebar-menu {
      padding-bottom: 10px;
    }
    
    .sidebar-wrapper .sidebar-menu .header-menu span {
      font-weight: bold;
      font-size: 14px;
      padding: 15px 20px 5px 20px;
      display: inline-block;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a {
      display: inline-block;
      width: 100%;
      text-decoration: none;
      position: relative;
      padding: 8px 30px 8px 20px;
      line-height: 21px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a i {
      margin-right: 10px;
      font-size: 12px;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 4px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
      display: inline-block;
      animation: swing ease-in-out 0.5s 1 alternate;
    }
    
    
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
      font-family: "FontAwesome";
    
      font-weight: 900;
     content:"\f105";
      font-style: normal;
      display: inline-block;
      font-style: normal;
      font-variant: normal;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      background: 0 0;
      position: absolute;
      right: 15px;
      top: 10px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
      padding: 5px 0;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
      padding-left: 15px;
      font-size: 15px;
      line-height: 22px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
      content: "\f111";
      font-family: "FontAwesome";
      font-weight: 400;
      font-style: normal;
      display: inline-block;
      text-align: center;
      text-decoration: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      margin-right: 10px;
      font-size: 8px;
      position: absolute;
      left: 5px;
    }
    
    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
      float: right;
      margin-top: 8px;
      margin-left: 5px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
      float: right;
      margin-top: 0px;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
      display: none;
    }
    
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
      transform: rotate(90deg);
      right: 17px;
    }
    
    /*--------------------------side-footer------------------------------*/
    
    .sidebar-footer {
      position: absolute;
      width: 100%;
      bottom: 0;
      display: flex;
    }
    
    .sidebar-footer > a {
      flex-grow: 1;
      text-align: center;
      height: 30px;
      line-height: 30px;
      position: relative;
    }
    
    .sidebar-footer > a .notification {
      position: absolute;
      top: 0;
    }
    
    .badge-sonar {
      display: inline-block;
      background: #980303;
      border-radius: 50%;
      height: 8px;
      width: 8px;
      position: absolute;
      top: 0;
    }
    
    .badge-sonar:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      border: 2px solid #980303;
      opacity: 0;
      border-radius: 50%;
      width: 100%;
      height: 100%;
      animation: sonar 1.5s infinite;
    }
    
    /*--------------------------page-content-----------------------------*/
    
    .page-wrapper .page-content {
      display: inline-block;
      width: 100%;
      padding-left: 0px;
      padding-top: 20px;
    }
    
    .page-wrapper .page-content > div {
      padding: 20px 40px;
    }
    
    .page-wrapper .page-content {
      overflow-x: hidden;
    }
    
    /*------scroll bar---------------------*/
    
    ::-webkit-scrollbar {
      width: 5px;
      height: 7px;
    }
    ::-webkit-scrollbar-button {
      width: 0px;
      height: 0px;
    }
    ::-webkit-scrollbar-thumb {
      background: #525965;
      border: 0px none #ffffff;
      border-radius: 0px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #525965;
    }
    ::-webkit-scrollbar-thumb:active {
      background: #525965;
    }
    ::-webkit-scrollbar-track {
      background: transparent;
      border: 0px none #ffffff;
      border-radius: 50px;
    }
    ::-webkit-scrollbar-track:hover {
      background: transparent;
    }
    ::-webkit-scrollbar-track:active {
      background: transparent;
    }
    ::-webkit-scrollbar-corner {
      background: transparent;
    }
    
    
    /*-----------------------------chiller-theme-------------------------------------------------*/
    
    .chiller-theme .sidebar-wrapper {
        background: #31353D;
    }
    
    .chiller-theme .sidebar-wrapper .sidebar-header,
    .chiller-theme .sidebar-wrapper .sidebar-search,
    .chiller-theme .sidebar-wrapper .sidebar-menu {
        border-top: 1px solid #3a3f48;
    }
    
    .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
    .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
        border-color: transparent;
        box-shadow: none;
    }
    
    .chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
    .chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
    .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
    .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
    .chiller-theme .sidebar-wrapper .sidebar-brand>a,
    .chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
    .chiller-theme .sidebar-footer>a {
        color: #818896;
    }
    
    .chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,  .chiller-theme .sidebar-wrapper .sidebar-menu ul li.active>a, 
    .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
    .chiller-theme .sidebar-wrapper .sidebar-header .user-info,
    .chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
    .chiller-theme .sidebar-footer>a:hover i {
        color: #b8bfce;
    }
    
    .page-wrapper.chiller-theme.toggled #close-sidebar {
        color: #bdbdbd;
    }
    
    .page-wrapper.chiller-theme.toggled #close-sidebar:hover {
        color: #ffffff;
    }
    
    .chiller-theme .sidebar-wrapper ul li:hover a i,
    .chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
    .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
    .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
        color: #16c7ff;
        text-shadow:0px 0px 10px rgba(22, 199, 255, 0.5);
    }
    
    .chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
    .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
    .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
    .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
        background: #3a3f48;
    }
    
    .chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
        color: #6c7b88;
    }
    
    .chiller-theme .sidebar-footer {
        background: #3a3f48;
        box-shadow: 0px -1px 5px #282c33;
        border-top: 1px solid #464a52;
    }
    
    .chiller-theme .sidebar-footer>a:first-child {
        border-left: none;
    }
    
    .chiller-theme .sidebar-footer>a:last-child {
        border-right: none;
    }
.menu-list ul{list-style: none; padding: 0; margin: 0;}
.menu-list ul li{background-color: var(--body-color1); padding: 5px 20px; border-radius: 20px; text-transform: uppercase;}
.menu-list ul li a{color:#fff}


.wrapper-of-wrapper {
/* filter: blur(100px); */
  pointer-events: none;
  position: relative  ;
  min-width: 100%;
  margin-top: 0px;
  background: var(--body-color2);
  height: 100vh;
  top: 0%;
  left: 0%;
  /* transform: translateX(-50%) translateY(-50%); */
  z-index: 0;
  opacity: 1;
}
.wrapper {border-radius: 99999px;
  position: absolute;
  top: 10%;
  left: 10%;
  width: 100vw;
  min-width: 1000px;
  height: 100vh;
  transform: translate(-10%, -10%) scale(0.6);
  overflow: hidden; filter: blur(100px);}
.rainbow {
    animation: ColorBlobs_spin__CbrXa 18s linear infinite;
  background: conic-gradient(from 0deg,#d12121,#d12121,#d12121,#d12121,#d12121,#d12121);
position: absolute;
  top: 10%;
  left: 100%;
  width: 100vw;
  height: 100vh;
  transform: translate(-80%, -100%);
  filter: blur(100px);
}
@keyframes ColorBlobs_spin__CbrXa {
0% { left: 10%; top: 10%;}
50%{ left : 80%; top:80%;}
100%{ left: -80%; top: -80%;}
}


.mountain-banner {
background: var(--body-color2) no-repeat
  center center;
background-size: cover;
width: 100%;
height: 110vh;
position: relative;
}
.overlay-1 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
  270deg,
  rgba(226, 224, 211, 0) 0%,
  rgba(0, 0, 0, 0.8687850140056023) 100%
);
}
.overlay-2 {
position: absolute;
top: 0;
left: 0;
width: 250.625em;
height: 23.8em;
background: url(../images/cloud-overlay.png) 0 100%
  repeat-x;
-webkit-animation: cloudLoop 80s linear infinite;
animation: cloudLoop 80s linear infinite;
z-index: 2;
pointer-events: none;
height: 43.75em;
z-index: 100;
}
@-webkit-keyframes cloudLoop {
0% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

100% {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
}

@keyframes cloudLoop {
0% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

100% {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
}
.banner-text {
position: relative;
color: #fff;
text-align: center;
padding: 10% 0 0 0;
}
.banner-text h1 {
font-size: 50px;
font-family: "Playfair Display", serif;
}
.banner-text p {
font-family: "Dancing Script", cursive;
font-size: 30px;
}


/* .fade-scale {
transform: scale(0);
opacity: 0;
-webkit-transition: all .3s linear;
-o-transition: all .3s linear;
transition: all .3s linear;
}

.fade-scale.show {
opacity: 1;
transform: scale(1);
} */


.fade-flip {
transform: rotateX(-90deg);
opacity: 0;
-webkit-transition: all .25s linear;
-o-transition: all .25s linear;
transition: all .25s linear;
}
.fade-flip.show  {
opacity: 1;
transform: rotateX(0deg);
}
.contact-modal{text-align: center;}
.contact-modal .modal-title{text-align: center; display: flex; flex-direction: column; justify-content: center;}

.get-contact{position: relative;}
.get-contact::after{content: '';
position: absolute;
width: 2px;
height: 70%;
background: #b7b7b7;
top:  50%;
transform: translateY(-50%);
right: 0;}



.modal-fullscreen{width: 90vw; margin-left: auto; margin-right: auto; }
.contact-det{text-align: center;}
.contact-det h5{margin: 0; font-size: 18px; font-weight: 600; color:#000;}
.contact-modal  h1{margin: 0; font-size: 30px; font-weight: 600; color:var(--body-color1); margin-bottom: 20px;}
.contact-det a{text-decoration: none; color:var(--body-color2)}


.contact-det i{color:var(--body-color1); font-size: 25px;}

.form2 .form-group {
margin-top: 15px;
}
.form2 input.form-control {
display: block;
width: 100%;
height: calc(1.5em + .75rem + 2px);
padding: .375rem .75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form2 .btn1 {
color: #fff;
margin-top: 15px;
border-radius: 5px !important;
background: var(--body-color2);
box-shadow: none !important;
border: none !important;
padding: 5px 20px;
margin-left: auto;
margin-right: auto;
transition: all .5s ease;
}
.form2 .btn1:hover{background:var(--body-color1)}

/* .contact-modal .modal-content{background:url(../images/swirl.png) repeat var(--body-color1); color:#fff} */


.top-div{/*position: absolute; top: 0; width: 100%; z-index: 1000;*/ padding-left: 100px; padding-right: 100px; padding-top: 20px; 
/* padding-bottom: 60px; */
/* min-height: 100vh; */
/* overflow: hidden; */
/* background: radial-gradient(circle at bottom, #fff -30%, transparent 70%), linear-gradient(to right, #134a8e, #00b6f1 50%), #fff;
*/
background: radial-gradient(circle at bottom, #ff696d, transparent 80%), linear-gradient(to top, #ffb770 0%, transparent 70%), linear-gradient(to bottom, transparent, #ffb770 70%), #ffb770;
animation: bg 30s infinite; 
}
@keyframes bg {
0%, 100% {
  background-color: #ffb770;
}
25% {
  background-color: #ff696d;
}
50% {
  background-color: #ffb770;
}
75% {
  background-color: #ff696d;
}
}


.container1 {
/* padding: 25px; */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 25px;
background: #000;
}

.card {
width: 100%;
height: 100vh;
/* box-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.5); */
border-radius: 10px;
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
/*   -webkit-filter: contrast(20);
filter: contrast(20); */
background: var(--body-color2);
}

.card > .blob {

height: 25%;
width: 12.5%;
border-radius: 100%;
filter: blur(15px);
/*   mix-blend-mode: multiply; */
/*   mix-blend-mode: color; */
position: absolute;
z-index: 1;
}




/* .banner-div1{background: url(../images/shree-devi-education-trust-bg1.jpg) repeat; height: 40vh;} */





.swiper-slide {
background-position: center;
background-size: cover;
}

.banner-div1 .swiper-slide img {
display: block;
width: 100%;
/* height: 100vh; */
object-fit: cover;
/* border-radius: 20px; */

}


.swiper-container {
position: relative;
padding-top: 30px;
width: 100%;

/* height: 90vh; */
}
.swiper-container > .swiper-slide__content {
position: absolute;
top: 0;
}
.swiper-slide {
/* height: 300px; */
/* display: flex; */

align-items: center;
justify-content: center;
transition: all 200ms linear;
/* transform: scale(0.8); */
}
.swiper-slide.swiper-slide-active {
/* transform: scale(1); */
/* background: #fc0; */
}
.swiper-slide__content {
/* height: 90vh; */
}



.swiper-slide img {
display: block;
width: 100%;
}

/* .swiper-container .slide-btns{
width: 54px;
height: 54px;
border: 1px solid rgba(255, 255, 255, .2);
padding: 10px;
font-size: 11px; 
color:#fff;
border-radius: 50%;
background: none;} */
.mySwiper2 {
  /* height: 80%; */
  width: 100%;
}

.mySwiper {
  /* height: 20%; */
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 24% !important;
  height: 100%;
  opacity: 0.6;
  text-align: center;
  position: relative;
  padding: 10px;
  
}
.mySwiper .swiper-slide::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #eee;
  top: 40%;
  transform: translateY(-50%);
  right: 0;
}
.mySwiper .swiper-slide:hover, .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  background: #e6b9ac;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-container .slide-btns{
width: 54px;
height: 54px;
background: 0 0;
border: 1px solid rgba(255, 255, 255, .2);
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
border-radius: 50%;
font-size: 16px;
font-weight: 900;
} 
.swiper-button-prev{left: 30px!important;}
.swiper-button-next{right: 30px!important;}
.slide-btns.swiper-button-next:after, .slide-btns.swiper-button-prev:after{
font-size: 16px;
font-weight: 900;
color: #fff;
content: '\25BC';
transform: rotate(90deg);
font-size: 20px;
line-height: 54px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}

.slide-btns.swiper-button-next:after{
transform: rotate(-90deg);

}

.slide-btns:hover{
border: 1px solid #fff;
background: #fff;
}
.slide-btns:hover:after{
color: #232323;
} 

.slide-detail{display: flex; align-items: start; justify-content: space-between; }
.slide-detail1 {
position: relative;
z-index: 1;
text-align: center;
width: 50%;

}
.slide-image{width: 50%;}

.slide-main--heading {
display: block;
text-align: left;
color: #fff;
line-height: normal;
text-shadow: rgb(106, 118, 175) 3px 3px 15px;
padding: 0px 0px 23px;
font-weight: 700;
font-size: 52px;
white-space: normal;
text-transform: capitalize;
font-family: var(--head-font);
}
.from-left, .from-right {
opacity: 0;
filter: blur(4px); 
transition: opacity 0.5s ease, filter 0.5s ease; 
}

.swiper-slide-active .from-left {
animation: fadeInLeft 1s ease forwards;
animation-delay: 0.8s; 
}
.swiper-slide-active .from-right {
animation: fadeInRight 1s ease forwards; 
animation-delay: 1s; 
}
.swiper-pagination-bullet{width: 15px; height: 3px; border-radius: 0; background: #e4e3e3; }
.swiper-pagination-bullet-active{background: #fff; width: 35px;}

/* Keyframe animations for Main Heading */
@keyframes fadeInLeft {
0% {
  opacity: 0;
  transform: translateX(-50px);
}
100% {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
}

@keyframes fadeInRight {
0% {
  opacity: 0;
  transform: translateX(50px); 
}
100% {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0); 
}
}
.slide-des {
text-align: left;
line-height: 25px;
border-width: 0px;
padding: 0px 0px 25px;
letter-spacing: 0px;
font-weight: 400;
font-size: 15px;
white-space: normal;
min-height: 0px;
min-width: 347px;
max-height: none;
max-width: 347px;
color: rgb(255, 255, 255);
margin: 0;
opacity: 0;
}
.swiper-slide-active .slide-des{
transition: opacity 0.5s ease, filter 0.5s ease; 
animation: fadeInUp 1s ease forwards; 
animation-delay: 1.4s;
}
/* Keyframe animations for Description */
@keyframes fadeInUp {
0% {
  opacity: 0;
  transform: translateY(-50px); 
}
100% {
  opacity: 0.7;
  transform: translateY(0);
  filter: blur(0); 
}
}

.slide-image{opacity: 0;}

.swiper-slide-active .slide-image{
opacity: 1;
animation: zoomInBg 2.5s ease forwards;
}
/* Keyframe animations for background */
@keyframes zoomInBg {
from {
  opacity: 0;
  transform: scale(0.5);
}
to {
  opacity: 1;
  transform: scale(1);
}
}

.swiper-container {
  width: 100%;
  height: 300px;
  margin: 20px auto;
}

.swiper-slide-container {
text-align: center;
font-size: 18px;
background: #fff;
height:100%;
max-width: 600px;
margin:auto;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.gallery-top {
  height: 80%;
  width: 100%;
}
.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
  width: 20%;
  height: 100%;
  opacity: 0.4;
}
.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}


.top-div2{color:#353535; margin-top: 20px;}
.home-about{padding-right: 30px; margin-top: 50px;}

.home-about h1{margin: 0;
font-size: 2.2vw;
line-height: 1.1em;
letter-spacing: 0;
font-weight: 700;
margin-bottom: 15px;}

.home-about h2{margin: 0;
font-size: 1.3vw;
line-height: 1.1em;
/* letter-spacing: -0.03em; */
font-weight: 400;
margin-bottom: 30px;}

.home-about span{margin: 0;
font-size: 1.3vw;
line-height: 1.1em;
/* letter-spacing: -0.03em; */
font-weight: 400;
margin-bottom: 30px;}

.know-more{padding: 5px 40px; border: 2px solid var(--body-color1); display: inline-block; border-radius: 30px; margin-top: 20px; transition: all .5s ease; 
margin-bottom: 20px;}
.know-more a{color:#000}

.know-more:hover a{color:#000}



.know-more{
position: relative;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-transition: color 1000ms;
transition: color 1000ms;
background: transparent;
}

.know-more::before
{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  border-radius: 30px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f2e3dc+0,b4c8d3+91,b4c8d3+100 */
background: linear-gradient(to bottom,  rgba(242,227,220,1) 0%,rgba(191,230,242,1) 91%,rgba(191,230,242,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

  .know-more:hover:before
  {
  -webkit-transform: scaleX(1);
  transform: scaleX(1)
  }

.home-div1{padding-top: 60px; padding-bottom: 60px; background: #f8f8f8;}
.home-div1 h3{margin: 0;
font-size: 2vw;
line-height: 1.2em;
letter-spacing: -0.01em;
font-weight: 700;
margin-bottom: 30px; /*background: #fff; padding: 20px;*/ text-align: center;
min-height: 150px;
}

.home-div1 h3 span {
-webkit-text-fill-color: hsla(0,0%,100%,0);
background: linear-gradient(90.09deg,#1b687e 17.61%,#3095b1 47.78%,#d12121 78.77%);
  background-clip: border-box;
-webkit-background-clip: text;
background-clip: text;
}
.home-div1 h2{margin: 0; font-size: 15px; text-align: center; margin-bottom: 20px; line-height: 29px;}
.home-div1 h2 span{color:var(--body-color1); font-weight: 600; font-size: 19px;}

.home-img1{box-shadow: rgba(0,0,0,.04) 0 1px 0,rgba(0,0,0,.05) 0 2px 7px,rgba(0,0,0,.06) 0 12px 22px; border-radius: 20px; background: #fff;}
.home-img1 img{border-radius: 20px;}
.home-camp1{flex: auto; padding: 20px; }
.home-camp1 h4{margin: 0;  font-size: 15px;  line-height: 20px; font-weight: 600; color:var(--body-color2) }
.home-camp1 h5{margin: 0;  font-size: 15px;  line-height: 24px; color:var(--body-color1) }

.home-camp1 .buid-wid {  width: 20%; padding:10px; position: relative; text-align: center;}
.home-camp1 .buid-wid::after{content: '';
position: absolute;
width:1px;
height: 100%;
background: #eee;
top:40%;
transform: translateY(-50%);
right: 0;}
.home-camp1 .buid-wid:last-child::after{content: none;}

.home-camp1 .buid-wid{
-webkit-transition: all 0.8s;
transition: all 0.8s;
display: inline-block; 
}
.home-camp1 .buid-wid:hover{
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
/* box-shadow: 0 22px 43px rgba(0, 0, 0, 0.32); */
/* cursor: pointer; */
border-radius: 5px;
/* box-shadow: 0 22px 23px rgba(0, 0, 0, 0.2); */
/* background: var(--body-color1);
color:#fff */
/* color:#296478; */
} 

/* .home-camp1 h4:nth-child(1), .home-camp1 h4:nth-child(2), .home-camp1 h4:nth-child(3), .home-camp1 h4:nth-child(4), .home-camp1 h4:nth-child(5){
   border-bottom:  1px solid #eee;  } */

   /* .home-camp1 h4:nth-child(6)::after, .home-camp1 h4:nth-child(7)::after, .home-camp1 h4:nth-child(8)::after, .home-camp1 h4:nth-child(9)::after, .home-camp1 h4:nth-child(10)::after{top:60%;}
   .home-camp1 h4:nth-child(5)::after, .home-camp1 h4:nth-child(10)::after{background: none;} */




                  .home-div2{padding-top: 60px; padding-bottom: 60px; }
                  .home-div2 h2{margin: 0;
                    font-size: 2.3vw;
                    line-height: 1.6em;
                    letter-spacing: -0.01em;
                    font-weight: 700;
                  margin-bottom: 30px; background: #fff; padding: 20px; text-align: center; color:var(--body-color2)}  
                  /* .home-group1{border: 1px solid #5d5d5d; border-left: 1px solid #5d5d5d; border-top: 1px solid #5d5d5d;} */
                  
                  .home-group1 .home-group2{margin: 0; width: 16.66%; /*background: radial-gradient(ellipse at center, rgba(254,254,254,1) 0%, rgba(255,255,255,1) 42%, rgba(223,223,223,1) 100%);padding: 10px; border-right: 1px solid #5d5d5d; border-bottom: 1px solid #5d5d5d;*/ text-align: center; padding:25px 10px; transition: all .5s linear;}

                  .home-group2.bb{border-bottom: 1px solid #7f7f7f;}
                  .home-group2.br{border-right: 1px solid #7f7f7f;}


                  .home-group2 img{margin-left: auto; margin-right: auto; }

                  .home-group2 h4{margin: 0; font-size: 16px; font-weight: 400; color:#ac6e6e; margin-top: 10px; line-height: 25px;}

                  .home-group2:hover{background: radial-gradient(ellipse at center, rgb(255, 254, 254) 0%, rgba(255,255,255,1) 42%, rgba(239,239,239,1) 100%); box-shadow: 0px 20px 60px 0px #0000001A;}

                  .home-group2 :hover h4{color:var(--body-color1)}

                  .hvr-float {

                    vertical-align: middle;
                    -webkit-transform: perspective(1px) translateZ(0);
                    transform: perspective(1px) translateZ(0);
                    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
                    -webkit-transition-duration: 0.3s;
                    transition-duration: 0.3s;
                    -webkit-transition-property: transform;
                    transition-property: transform;
                    -webkit-transition-timing-function: ease-out;
                    transition-timing-function: ease-out;
                    
                  }
                  .home-group2:hover .hvr-float,  .home-group2:focus .hvr-float,  .home-group2:active .hvr-float {
                    -webkit-transform: translateY(-10px);
                    transform: translateY(-10px);
                  }


                  .home-div3{padding-top: 60px; padding-bottom: 60px; /*background: #f8f8f8;*/ background: var(--body-color1); position: relative; color:#fff }
                  .home-div3 h2{margin: 0;
                    font-size: 2.4vw;
                    line-height: 1.2em;
                    letter-spacing: -0.01em;
                    font-weight: 600;
                    /*margin-bottom: 30px;
                  background: #fff;*/
                    } 
                  .text1{color:#6fdcff}
                  .text2{color: #010d11;}
                  .home-div3 .know-more{border-color: #98533e;}

.bot-fix{position: fixed; bottom: 20px; right: 20px;}
.bot-fix .d-flex{column-gap: 10px; margin-bottom: 20px;}
.bot-fix .fx-title{background: #fff; box-shadow: 0px 0px 5px 0px rgba(171,171,171,1); padding:1px 20px; border-radius: 5px; text-align: center; }
.fx-tit{width: 150%;}
.fx-img{width: 50%;}

 .call-div {
  position: fixed;
  bottom: 0;
  text-align: center;
  background: var(--body-color2);
  width: 100%;
  padding: 10px;
  font-weight: 600;
  color:#fff;
}
.call-div a {
  color: #bcbbbb;
}                 

.mySwiper1 .swiper-slide{background: var(--body-color1); padding: 30px;}

/* .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{bottom:-5%} */




.topper-carousel .owl-prev {
background: url('../images/vendor-arrow-left.png') left center no-repeat;
height: 44px;
position: absolute;
top: 50%;
width: 44px;
z-index: 1000;
left: -2%;
cursor: pointer;
color: transparent;
transform: rotate(-90deg);
}

.topper-carousel .owl-next {
background: url('../images/vendor-arrow-left.png') right center no-repeat;
height: 44px;
position: absolute;
top: 50%;
width: 44px;
z-index: 1000;
right: -2%;
cursor: pointer;
color: transparent;
transform: rotate(90deg);
}



.owl-dots {
text-align: center;
padding-top: 15px;
}
.owl-dots .owl-dot {
width: 15px;
height: 15px;
border-radius: 50%;
display: inline-block;
background: #ee8787;
margin: 0 3px;
}
.owl-dots .owl-dot.active {
background-color: #d12121;
}
.owl-dots .owl-dot:focus {
outline: none;
}

footer {
position: relative;
z-index: 0;
}
.footer-flex{column-gap: 20px;}

footer::before {
content: "";
position: absolute;
z-index: -1;
right: 0px;
bottom: 0;
left: 0px;
height: 55%;
background: #f8f8f8;
}


.footer-bg {
background: #44484d;
color: #fff;
padding: 80px 80px 60px 80px;
border-radius: 20px;
line-height: 28px;
font-size: 15px;
margin-top: 60px;
}

.footer-bg a{color:#fff}
.foot1{width: 40%;}
.foot2{width: 45%;}
.foot3{width: 10%;}

footer  h5 {
margin: 0 0 15px;
color: var(--color-white);
font-size: 22px;
font-weight: 600;
position: relative;


}


footer  h5::before {
content: "";
position: absolute;
left: -50px;
top: 50%;
height: 1px;
width: 40px;
background: #fff;
}

.f-link{margin: 0; padding:0; list-style: none; 
/* 	width: 50%;   */
	margin-left :17px;
	font-size: 15px; }
.f-link li {
list-style: none;
padding: 3px 0 3px 10px;
position: relative;
z-index: 0;
padding-left: 10px;
}
.f-link li::before {
content: "\f19d";
font-family: 'FontAwesome';
left: -7px;
position: absolute;
top: 5px;
font-weight: 900;
color: var(--color-white);
font-size: 6px;
font-size: 11px;
}

.f-link li a {


/**/
position: relative;
display: inline-block;

}


.f-link li a:after {
content: "";
width: 0;
height: 1px;
background: rgba(255, 255, 255, 0.4);
position: absolute;
top: 0;
left: 50%;
transition: all 0.8s ease 0s;
}

.f-link li a:after {
top: auto;
bottom: 0;
}

.f-link li a:hover:before, .f-link li a:hover:after {
width: 100%;
left: 0;
}



.social-link{margin: 0; padding: 0; list-style: none; display: flex;}



.social-link a{display: inline-block;
position: relative;
margin: 0 auto 0 auto;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
text-align: center;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(255, 255, 255, 0);
border: 0px solid var(--color-white);
box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.2) !important; margin-left: 10px;
transition: all.5s ease;
}
.social-link a:hover {
  background-color: var(--body-color1);
}

.copy-div{font-size: 14px; padding-top: 10px; padding-bottom: 10px;}
.copy-div a{color:var(--body-color2)}
.copy-div a:hover{color:var(--body-color1)}






.SMN_effect-27 a {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(207, 32, 32, 0);
  outline: 1px solid;
  outline-color: rgba(207, 32, 32, 1);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  color: #fff;

padding: 5px 40px;
/**/
position: relative;
display: inline-block;

border-radius: 20px;
display: inline-block;
border-radius: 30px;
margin-top: 20px;
}

.SMN_effect-27 a:hover {
 
  box-shadow: inset 0 0 30px rgba(207, 32, 32, 0.9), 0 0 20px rgba(207, 32, 32, 0.9);
  outline-color: rgba(207, 32, 32, 1);
  outline-offset: 2px;
  text-shadow: 1px 1px 2px rgba(27, 104, 126, 0.9);
}



.in-banner{position: relative; }
.in-banner img{width: 100%; height: 300px; object-fit: cover;}
.in-banner:before{content: '';
position: absolute;
background: rgba(0,0,0,.5);
width: 100%;
height: 100%;}

.about-bg1{padding: 60px;
background: #EFF8FF; margin-top: -110px; position: relative; z-index: 1;}
.about-div1 h1{margin: 0; font-size: 45px;
color:var(--body-color1);
margin-bottom: 20px;}
.about-div1 h4{margin: 0; font-size: 20px;
color:var(--body-color2);
margin-bottom: 10px; text-transform: uppercase;}

.about-new-div1 h1{margin: 0; font-size: 30px;
color:#000; font-weight: 600; display: inline-block;
margin-bottom: 30px; border-bottom: 5px solid var(--body-color1);}
.about-new-div1 h4{margin: 0; font-size: 20px;
color:var(--body-color2);
margin-bottom: 10px; text-transform: uppercase;}


.about-div3{margin-top: 60px; background: #e2fbf8; background-size: cover; background-attachment: fixed; padding-top: 100px; padding-bottom: 100px; position: relative;}
.about-div3 .about-bg1{margin-top: 0;}
/* .about-div3::before{position: absolute;
content: '';
background: rgba(0,0,0,.8);
top: 0;
left: 0;
width: 100%;
height: 100%;} */
.about-div3 h1{margin: 0; font-size: 30px; text-align: center; color:#fff; position: relative; z-index: 2; line-height: 56px; text-transform: uppercase; word-spacing: 5px;}
.about-div3  h5{margin: 0; font-size: 18px;
color:var(--body-color2); margin-top: 20px;
margin-bottom: 10px; text-transform: uppercase; text-align: center;}
.about-donation1{padding-top: 40px; padding-bottom: 40px;}
.about-donation1 h5{font-size: 25px;}

.swami-div{padding-top: 150px; padding-bottom: 70px;}

.swami-img{position: relative;}
.swami-img:before{width: 200px;
height: 200px;
position: absolute;
content: '';
background: var(--body-color1);
top: -20px;
right: -20px;

}
.swami-img img{width: 100%; position: relative; z-index: 2;}
.swami-div h4{margin: 0; font-size: 25px; margin-top: 20px; color:var(--body-color1); }
.swami-div h5{margin: 0; font-size: 18px; text-align: center; margin-top: 20px; color:var(--body-color2); text-transform: uppercase;}

.contact-div1{padding-top: 60px; padding-bottom: 60px;}
.contact-div1 {margin-bottom: 60px;}

.contact-div1 h1{margin: 0; font-size: 45px;
color:var(--body-color1);
margin-bottom: 20px;
text-align: center;}

.contact-div1  h4{margin: 0; font-size: 20px;
color:var(--body-color2);
margin-bottom: 5px; text-transform: uppercase; text-align: center;}

.contact-div1  h5{margin: 0; font-size: 18px;
color:var(--body-color2); margin-top: 20px;
margin-bottom: 5px; text-transform: uppercase; text-align: center;}







.contact-feature {
background-color: #e8f3ff;
padding: 40px 10px;
text-align: center;
border-radius: 20px;
margin-top: 20px;
}
.contact-feature a{color:var(--body-color)}
.contact-feature_icon {
margin-bottom: 17px;
}
.contact-feature_subtitle {
font-size: 25px;
text-transform: uppercase;
display: block;
font-weight: 700;
margin-bottom: 14px;
}

.box-para {
font-size: 15px;
line-height: 25px;
font-weight: 400;
margin-top: -0.32em;
}

.contact-form h3{margin: 0; font-size: 30px;}

.login-wrap {
max-width: 800px;
margin: 0 auto;
background: #fffaee;
border: 1px solid #ffb607;
padding: 50px;
}

.registerWrp {
border-top: none;
padding-top: 0;
margin-top: 0;
}

.loginWrp .form-group {
margin-top: 15px;
margin-bottom: 0;
}

.loginWrp .form-group .form-control {
height: 50px;
border-radius: 4px;
font-size: 14px;
border-color: #f9eccd;
}
textarea.form-control {
height: 150px !important;
}
.form-group .btn {
background: #ffb607;
display: inline-block;
border-radius: 30px;
font-weight: 600;
font-family: 'Montserrat', sans-serif;
font-size: 16px;
color: #fff;
text-transform: uppercase;
padding: 16px 40px;
}

.loginWrp .send_btn {
width: 100%;
letter-spacing: 0;
font-weight: 600;
}

.form-group .btn:hover {
background: #e20c0c;
color: #fff;
}

.contact-map iframe {
filter: grayscale(100%) invert(0%);
transition: all .5s ease;
}
.contact-map iframe:hover{filter: grayscale(0%) invert(0%);}

.near-div1{padding-top: 60px; padding-bottom: 60px; }
.near-div1 h1{margin: 0; font-size: 45px;
color:var(--body-color1);
margin-bottom: 20px;
text-align: center;}
.near-gal h5{margin: 0; background: var(--body-color2); padding: 10px; text-align: center; color:#fff; margin-top: 40px; margin-bottom: 20px;}
.near-gal  img{border: 1px dotted #a4a4a4; padding: 5px; margin-bottom: 25px;}

.act-div1 h4{margin: 0; color: var(--body-color1);  text-align: center; margin-top: 40px; margin-bottom: -10px;}
.act-div1 h5{margin: 0; background: var(--body-color2); padding: 10px; text-align: center; color:#fff; margin-top: 40px; margin-bottom: 20px;}
.act-div1 img{margin-left: auto; margin-right: auto;}
.act-list{margin: 0; padding: 0; list-style: none;}
.act-list li{background: url(../images/list-icon1.png) no-repeat top 13px left; padding-left: 20px;}
.act-list li span{color:var(--body-color1); font-weight: 600;}

.gallery-div1 h3{margin: 0; background: var(--body-color2); color:#fff; font-size: 17px; text-align: center; padding: 10px;}
.gallery-div1 img{margin-top: 30px;}

.vbox-container img {
max-width: 100%;
height: auto;
max-height: 100%;
width: auto;
margin-left: auto;
margin-right: auto;
}
.row.equal-cols {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}


.row.equal-cols:before,
.row.equal-cols:after {
display: block;
}

.row.equal-cols > [class*='col-'] {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}

.row.equal-cols > [class*='col-'] > * {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto; 
}

.about-bg2{padding-left: 60px; padding-right: 60px;}

.about-div2 {
padding-top: 60px;
padding-bottom: 60px;

}

.about-div2 h1 {
margin: 0;
 
font-size: 2.3vw;
line-height: 1.2em;
letter-spacing: -0.01em;
font-weight: 700;
margin-bottom: 30px;
background: #fff;
padding: 20px;
text-align: center;
color: var(--body-color2);
}
.about-div2 .home-group1 .home-group2 {
margin: 0;
width: 25%;
display: flex;
flex-direction: column;
justify-content: center;}

.about-div2 .home-group2 h4 span{display: block; font-size: 15px;}
.about-div2 .home-group2 h4:hover span{color: var(--body-color2);}
/* .navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  z-index: 2003;
  background: #fff;
} */

.about-div2 .home-group2.bb{border-bottom: 1px solid #6c9aa7;}
.about-div2 .home-group2.br{border-right: 1px solid #6c9aa7;}

.about-div2  h5{margin: 0; font-size: 18px;
  color:var(--body-color2); margin-top: 20px;
margin-bottom: 10px; text-transform: uppercase; text-align: center;}
.table1{margin-bottom: 30px;}
.bank-det{margin-top: 20px;}
.about-div2 h6{margin: 0; font-size: 17px; font-weight: 600; color:#fb0a10;}

.table1 td,  .table1 th {
  border: 1px solid #717171;
  padding: 10px;
}
.table1 tr {
  transition: all .5s ease;
}
.table1 tr:nth-child(2n) {
  background: #e7e3e4;
}
.table1 tr:nth-child(2n+1) {
  background: #fff;
}
.table1 tr:hover {
  background: #fae7d4;
}

.table1 .table-header{background: #ffb770 !important;}

.top-inner{height: auto; min-height: auto; padding-bottom: 0;}


.board-div1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../images/shree-devi-education-trust-board-bg1.jpg) no-repeat;
background-size: cover;
background-attachment: fixed;
}

.board-div1 h1 {
  margin: 0;
   
  font-size: 2.3vw;
  line-height: 1.2em;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 30px;
  /* background: #fff;
  padding: 20px; */
  text-align: center;
  color: var(--body-color2);
}
.board-memb1{column-gap: 30px; }

.board-memb1 h4 {
  margin: 0;
  padding: 10px;
  font-size: 20px;
  position: relative;
  text-align: center;
  line-height: 26px;
  width: 30%;
  box-shadow: rgba(0,0,0,.04) 0 1px 0,rgba(0,0,0,.05) 0 2px 7px,rgba(0,0,0,.06) 0 12px 22px;
border-radius: 20px;
background: #fff;
padding:30px 20px;
margin-bottom: 30px;

}

.board-memb1 h4 span{display: block; color:var(--body-color1); font-size: 17px;}

/* .board-memb1 h4::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 70%;
  background: #eee;
  top: 40%;
  transform: translateY(-50%);
  right: 0;
}
 */

 .result-div1 {margin-bottom: 60px;}

 .result-div1 h1{margin: 0; font-size: 45px;
  color:var(--body-color1);
margin-bottom: 20px;
text-align: center;}

.result-div1  h4{margin: 0; font-size: 20px;
color:var(--body-color2);
margin-bottom: 5px; text-transform: uppercase; text-align: center;}

.result-div1  h5{margin: 0; font-size: 18px;
color:var(--body-color2); margin-top: 20px;
margin-bottom: 10px; text-transform: uppercase; text-align: center;}


.vid-img{border-radius: 20px; border: 1px solid #dedede; width: 100%;}
.vid-img1{border-radius: 20px; border: 1px solid #dedede; margin-left: auto; margin-right: auto;}


.style-5{width: 100%; margin-bottom: 20px;}

.srow2
{
background:#cd2121	;
color: #fff;
border-left: 1px solid #cdc9c9 !important;
border-top: 1px solid #cdc9c9 !important;

}
.shead
{
border-right: 1px solid #cdc9c9 !important;	
padding: 10px;
}
.srow
{
background:#fff !important;
border-bottom: 1px solid #dddddd !important;
border-left: 1px solid #dddddd !important;
color:#343333;
}



.sdef
{
border-right: 1px solid #cdc9c9 !important;
padding: 10px;
}

.srow1
{
background:#e6eaf9 !important;
border-bottom: 1px solid #cdc9c9 !important;
border-left: 1px solid #cdc9c9 !important;
color:#343333;

}
.sbody
{
background:#555555;
}


.srow1:hover
{
background:#ced6f3 !important;
border-left: 1px solid #cdc9c9 !important;

}
.srow:hover
{
background:#ced6f3 !important;
border-left: 1px solid #cdc9c9 !important;	
}




.last-table{margin-bottom:0px;}
.last1{margin-bottom:-30px;}


.wrapper{
  
  
  

  width: auto;
}
.wrapper .selection{
 width:30%;
 
}



/*media query for table */
@media

only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {



  /* Force table to not be like tables anymore */

  .style-5, .s-head, .sbody, .shead, .sdef, .srow ,.srow1{

      display: block;
  

  }
.services-spacing {
  margin-left: -16px !important;
}
.services-content h3{

padding-right:0PX;
}

.shead .srow {

      position: absolute;

      top: -9999px;

      left: -9999px;
  

  }



 

  

 

  .sdef{

      /* Behave  like a "row" */

      

      position: relative;

      padding-left: 50%;

  }
.srow2
{
  visibility: collapse;
}

.sdef {
  border-right: 1px solid #cdc9c9 !important;
border-bottom: 1px solid #cdc9c9 !important;

}

.srow, .srow1{
  border-left: 1px solid #cdc9c9 !important;
border-top: 1px solid #cdc9c9 !important;



}

 

  .sdef:before {

      /* Now like a table header */

      position: absolute;

      /* Top/left values mimic padding */

      top: 6px;

      left: 6px;

      width: 45%;

      padding-right: 10px;

      white-space: nowrap;
  

  }
.style-5 > tbody > tr > td, .style-5 > tbody > tr > th, .style-5 > tfoot > tr > td, .style-5 > tfoot > tr > th, .style-5> thead > tr > td, .style-5 > thead > tr > th
{
  padding-left:193px ! important;
}
 

  /*

  Label the data

  */

  .sdef:nth-of-type(1):before { content: "Branch"; }

 .sdef:nth-of-type(2):before { content: "Distinction"; }

  .sdef:nth-of-type(3):before { content: "First Class"; }
.sdef:nth-of-type(4):before { content: "Total"; }



}

  /*end of css for table */

  .result-div2{background: url(../images/line.png) no-repeat bottom center; padding-top: 30px; padding-bottom: 30px;}

  
  .toppers-para{background: url(../images/line.png) no-repeat bottom center; padding-top: 30px; padding-bottom: 30px;}

  .courses-div1 .home-group1 .home-group2 {
    margin: 0;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  .gallery-div1 {
    padding-top: 0px;
    padding-bottom: 60px;
  }
  
  .gallery-div1 h1 {
    margin: 0;
     
    font-size: 2.3vw;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    font-weight: 700;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    text-align: center;
    color: var(--body-color2);
  }

  .current-gal1 {
    margin-bottom: 30px;
    padding: 5px;
    border: 1px dashed var(--body-color2);
  }

  @media  (max-width: 992px) {
.menu-div{display: none;}
  }
  @media screen and (min-width: 992px) {
    .menu-div{margin-left: -100px; margin-right: -100px; margin-top: 10px; background: #d1131f;}
    #hm.sticky .menu-div{padding-left: 100px; padding-right: 100px; margin-top: 0;}
    #hm1.sticky1 .menu-div{padding-left: 100px; padding-right: 100px; margin-top: 0;}
  
    .menu-div .navbar-brand{display: none; padding: 0;}
    #hm.sticky  .menu-div .navbar-brand {
      display: block;
    width: 3%;
    margin-top: -2px;
    }


    #hm1.sticky1  .menu-div .navbar-brand {
      display: block;
    width: 3%;
    margin-top: -2px;
    }

    #hm.sticky  .menu-div .navbar-brand img{width: 100%;}

    #hm1.sticky1  .menu-div .navbar-brand img{width: 100%;}
 
    .navbar-expand-lg .navbar-nav .nav-link{padding:10px 23px; color:#fff;font-size: 15px;}
	  
	  
	  
	  
/*     .navbar-expand-lg .navbar-nav .nav-item:nth-last-child(2){display: none;} */
    #hm.sticky .navbar-expand-lg .navbar-nav .nav-item:nth-last-child(2){display: block;}
    #hm1.sticky1 .navbar-expand-lg .navbar-nav .nav-item:nth-last-child(2){display: block;}

    .navbar-expand-lg .navbar-nav .nav-link:hover, .navbar-expand-lg .navbar-nav .nav-item.active .nav-link{background: #000;}
    .navbar {
      padding: 0;
      line-height: 2rem;}
      .dropdown-menu {
        line-height: initial;
        background: #ffa26f;
      }
      .dropdown-item{padding: 10px; border-bottom: 1px solid #ed754a;}
      .dropdown-item:hover, .dropdown-item.active{background: #ff5c2b;}
    .dropdown .dropdown-menu {
      display: none;
   }
    .dropdown:hover > .dropdown-menu, .dropend:hover > .dropdown-menu {
      display: block;
   }
    .dropdown:hover > .dropdown-menu {
      margin-top: -0.5rem;
   }
    .dropend:hover > .dropdown-menu {
      position: absolute;
      top: -0rem;
      left: 100%;
      margin-left: 0;
   }
 }










 
  
/* Scrollbar Styling */
::-webkit-scrollbar {
width: 15px;
}

::-webkit-scrollbar-track {
background-color: #aedae8;
-webkit-border-radius: 10px;
border-radius: 0px;
}

::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
background: #960f0f; 
}

::-moz-selection { /* Code for Firefox */
color: #fff;
background: var(--body-color2);
}

::selection {
color: #fff;
background: var(--body-color2);
}


@media(max-width:1025px)
{
.logo-hd h3{font-size: 23px;}
.logo-hd h4{font-size: 18px;}
.social-link a{width: 25px; height: 25px; line-height: 25px;}
.home-camp1 h4 {
  font-size: 18px;}
  .logo-header{width: 20%;}
  .home-div3 h1{font-weight: 600;}
  .top-div{min-height: auto;}
  #hm.sticky  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 10px;}
}

@media(max-width:993px)
{
.logo-div img{
margin-left: auto; margin-right: auto; display: block;
}
.logo-header {
width: 100%;
margin-top: 20px;
}
.logo-header img{margin-left: auto; margin-right: auto;}
.menu-list ul li{display: inline-block; margin-top: 20px;}
.top-div1{text-align: center;}
.top-div2{text-align: center;}
.home-about h2{font-size: 2.3vw;}
.home-about h1{font-size: 3.5vw;}
.home-about {
padding-right: 0px;
margin-top: 20px;
}
.top-div{padding-left: 0; padding-right: 0;}
.top-img1{margin-top: 40px;}
.home-camp1 .buid-wid {
width: 28%;}
.home-camp1 .buid-wid:last-child::after{content: '';}
.home-div3{text-align: center;}
.home-div3 h1{font-size: 4vw;}
.home-div2 h1{font-size: 3.3vw;}
.home-div2{padding-bottom: 0;}
.footer-bg{text-align: center;}
.foot1, .foot2, .foot3 {
  width: 100%;
}
.social-link{justify-content: center; width: 100%;}
.f-link{display: flex; justify-content: center; width: 100%; column-gap: 20px;}
footer h5{margin-top: 20px; margin-bottom: 5px;}
footer h5::before{content: none;}
.footer-bg{padding: 20px;}
.social-link a{width: 35px; height: 35px; line-height: 35px;}
.copy-div{text-align: center;}
.logo-hd{display: inline-block;}
.home-div1 h1{font-size: 4vw; min-height: 80px;}
.copy-div{margin-bottom: 45px;}
.bot-fix{bottom: 50px;}
.top-inner{padding-bottom: 20px;}
.about-bg1{padding: 20px;}
.about-div1, .result-div1, .about-new-div1, .about-div3,.swami-div{text-align: center;}
#show-sidebar{z-index: 2000;}
.about-div3{padding: 20px;}
.swami-div {
  padding-top: 20px;
  padding-bottom: 20px;
}
.swami-img::before{content: none;}
.contact-div1{margin-bottom: 0;}
.login-wrap{padding: 20px;}
.about-bg2 {
  padding-left: 0px;
  padding-right: 0px;
}
.mySwiper .swiper-wrapper{display: block;}
.mySwiper .swiper-slide {
  width: 100% !important; margin-bottom: 20px;}
}

@media(max-width:577px)
{
.home-camp1 .buid-wid {
  width: 100%;
}
.home-camp1 .buid-wid::after{
  width: 100%;
height: 1px;
top: auto;
bottom: 0;
}
.home-camp1 .buid-wid:last-child:after{content: none;}
.home-group1 .home-group2{width: 47%;}
.home-group1 .home-group2{border-right: 1px solid #7f7f7f;  border-bottom: 1px solid #7f7f7f;}
.home-group1 .home-group2:nth-child(even){
  border-right: none;
}
.home-group1 .home-group2:last-child, .home-group1 .home-group2:nth-last-child(2){border-bottom: none;}
.home-about h1 {
  font-size: 5.5vw;
}
.home-about h2 {
  font-size: 3.3vw;
}

}



#a1  {

  scroll-margin-top: 60px;
}


#a2  {

  scroll-margin-top: 0px;
}

.pdf-down{column-gap: 20px; margin-top: 20px;}
.pdf-down a{background: #5f909f; padding:5px 10px; border-radius: 5px; display: block; color:#fff; width: 40%; text-align: center;}

@media(max-width:767px)
{
  .pdf-down a{width: 100%; margin-bottom: 20px;}
}
.sub-menu-toggle{
display: none;	
}


/*  */
.result-div3 h1 {
    margin: 0;
    font-size: 45px;
    color: var(--body-color1);
    margin-bottom: 20px;
    text-align: center;
}
.result-div4 h1 {
    margin: 0;
    font-size: 45px;
    color: var(--body-color1);
    margin-bottom: 20px;
    text-align: center;
}
.result-div4  h2{
	margin: 0;
    color: var(--body-color2);
    margin-bottom: 5px;
	font-weight:700;
}
.project-st h2{
	margin: 0;
    color: var(--body-color2);
    text-align: center;
	margin-top:10px;
	font-size:25px;
	font-weight:600;	
}
/* pagination css code */
.navigation {
    margin-top: 60px;
}
.navigation li {
    display: inline;
}
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
    background-color: #0f3541;
    border-radius: 3px;
    cursor: pointer;
    padding: 12px;
    padding: 0.75rem;
}
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
    color: #fff;
    text-decoration: none;
}
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
.navigation li.active a {
    background-color: #a71a1f;
}

/* pagination css code */
.pswp{
	    border: 1px solid #c59e0c;
        margin-left: 12px;
		padding-top: 8px;
}
.cnt a{
	 color: #624b4b;
    text-decoration: none;
}

.contact-div2{padding-top: 60px; padding-bottom: 60px;}
.contact-div2{margin-bottom: 60px;}

.contact-div2 h5 {
    margin: 0;
    font-size: 18px;
    color: var(--body-color2);
    margin-top: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}
.contact-div2 h1 {
    margin: 0;
    font-size: 45px;
    color: var(--body-color1);
    margin-bottom: 20px;
    text-align: center;
}
.mgg h2 {
    margin: 0;
    color: var(--body-color2);
    margin-bottom: 5px;
    font-weight: 700;
}
.mgg img{
	margin-left: auto;
    margin-right: auto;
}



