body{
  overflow-x: hidden;
}
.text-blue-main {
  color: #005224;
}

.bg-blue-main {
  background: #003618;
}

.border-blue-main {
  border-color: #003618;
}

.blue-hover:hover {
  background: #003618;
  color: #fff;
}

.wrapper {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  background: #fff;
  box-shadow: 2px 2px 5px #b6b6b636, -2px -2px 2px #ffffff;
}

.wrapper nav {
  position: relative;
  display: flex;
  max-width: calc(100% - 100px);
  margin: 0 auto;
  height: 90px;
  align-items: center;
  justify-content: space-between;
}

nav .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

nav .nav-content .links {
  margin-left: 80px;
  display: flex;
  gap: 10px;
}

.nav-content .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-content .logo img {
  width: 250px;
}

.nav-content .logo a {
  color: #a443ff;
  font-size: 30px;
  font-weight: 600;
}

.nav-content .links li {
  list-style: none;
  line-height: 70px;
}

.nav-content .links li a,
.nav-content .links li label {
  color: #014828;
  font-size: 17px;
  padding: 7px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  /* margin: 0 5px; */
}

.nav-content .links li label {
  display: none;
}

.nav-content .links li a:hover,
.nav-content .links li label:hover {
  color: #005224;
}

.wrapper .search-icon,
.wrapper .menu-icon {
  color: #000;
  font-size: 18px;
  cursor: pointer;
  line-height: 70px;
  width: 70px;
  text-align: center;
}

.wrapper .menu-icon {
  display: none;
}

.wrapper #show-search:checked~.search-icon i::before {
  content: "\f00d";
}

.wrapper .search-box {
  position: absolute;
  height: 100%;
  max-width: calc(100% - 50px);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.wrapper #show-search:checked~.search-box {
  opacity: 1;
  pointer-events: auto;
}

.search-box input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  color: #000;
  background: #ffff;
  padding: 0 100px 0 15px;
}

.search-box input::placeholder {
  color: #545252;
}

.search-box .go-icon {
  position: absolute;
  display: flex;
  right: 10px;
  top: 50%;
  align-items: center;
  transform: translateY(-50%);
  line-height: 60px;
  width: 51px;
  height: 50px;
  justify-content: center;
  border: none;
  outline: none;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
}

.wrapper input[type="checkbox"] {
  display: none;
}

/* Dropdown Menu code start */
.nav-content .links ul {
  position: absolute;
  background: #fff;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.nav-content .links li:hover >ul {
  top: 82px;
  opacity: 1;
  visibility: visible;
  /* transition: all 0.3s ease; */
  /* padding: 0 0px 8px */
}
.nav-content .links ul li a {
  color: #000;
  display: block;
  width: 100%;
  font-size: 1.1em;
  line-height: 25px;
  border-radius: 0px !important;
  padding: 8px 20px;
}

.nav-content .links ul li a:hover {
  background: #E2EFFF;
}

.nav-content .links ul ul {
  position: absolute;
 
  right: calc(-100% + 8px);
}

.nav-content .links ul li {
  position: relative;
}

.nav-content .links ul li:hover ul {
  top: 0;
}

.media-sc {
  transform: translate(-50%, -50%);
}

.bg-image {
  background-image: none;
}

.slider-nav.slide-c-pre {
  right: unset;
  left: unset;
  background: #005224;
}

.bg-feature {
  background-image: url(https://myschool-assets.s3.ap-south-1.amazonaws.com/uploads/kjxyv9ijIMpMK8F6ylcxiTuhStRymddsRFXgkAQ6.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Responsive code start */
@media screen and (max-width: 1520px) {

  .nav-content .links li a,
  .nav-content .links li label {
    font-size: 14px;
    padding: 6px 4px;
  }
}

@media screen and (max-width: 1280px) {
  .wrapper nav {
    max-width: 100%;
    padding: 0 20px;
  }

  nav .nav-content .links {
    margin-left: 30px;
  }

  .nav-content .links li a {
    color: #000;
    padding: 8px 13px;
    font-size: 17px;
  }

  .wrapper .search-box {
    max-width: calc(100% - 100px);
  }

  .wrapper .search-box input {
    padding: 0 100px 0 15px;
  }

  .wrapper nav {
    max-width: calc(100% - 20px);

  }

  .nav-content .links li a,
  .nav-content .links li label {
    font-size: 13px;
    padding: 6px 2px;
  }

  .nav-content .logo img {
    width: 180px;
  }
}

@media screen and (max-width: 900px) {

  .wrapper .menu-icon {
    display: block;
  }

  .nav-content .logo a {
    font-size: 25px;
  }

  .wrapper #show-menu:checked~.menu-icon i::before {
    content: "\f00d";
  }

  nav .nav-content .links {
    display: block;
    position: fixed;
    background: #003618;
    height: 100%;
    width: 100%;
    top: 90px;
    left: -100%;
    margin-left: 0;
    overflow-y: auto;
    padding-bottom: 100px;
    transition: all 0.3s ease;
  }

  nav #show-menu:checked~.nav-content .links {
    left: 0%;
  }

  .nav-content .links li:not(:last-child) {
    border-bottom: 1px solid #eeeeee21;
    padding: 8px 3px;
  }

  .nav-content .links li a,
  .nav-content .links li label {
    line-height: 20px;
    font-size: 16px;
    display: block;
    padding: 8px 18px;
    cursor: pointer;
    color: #fff;
  }

  .nav-content .links li a.desktop-link {
    display: none;
  }

  /* dropdown responsive code start */
  .nav-content .links ul,
  .nav-content .links ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    max-height: 0px;
    overflow: hidden;
  }

  .nav-content .links #acadmics:checked~ul,
  .nav-content .links #show-services:checked~ul,
  .nav-content .links #beyond-academy:checked~ul,
  .nav-content .links #show-gallery:checked~ul {
    max-height: 100vh;
  }

  .nav-content .links ul li a {
    font-size: 16px;
    line-height: 20px;
    border-radius: 5px !important;
    color: #fff;
  }

  .nav-content .links li a:hover,
  .nav-content .links li label:hover {
    color: #fff;
  }

  .media-sc {
    transform: translate(1%, -50%);
  }

  .bg-image {
    background-image: url('https://res.cloudinary.com/dvzfuapyy/image/upload/v1730307222/Group_53_s3txur.png');
  }

  .ab-cr-bg {
    background: #fff !important
  }
}

@media screen and (max-width: 450px) {
  .wrapper nav {
    padding: 0 2px;
  }

  .nav-content .logo img {
    width: 200px;
  }

  .nav-content .logo a {
    font-size: 23px;
  }

  .wrapper .search-box {
    max-width: calc(100% - 70px);
  }

  .wrapper .search-box .go-icon {
    width: 30px;
    right: 0;
  }

  .wrapper .search-box input {
    padding-right: 30px;
  }

  nav .nav-content {
    justify-content: center;
  }

  .slider-nav.slide-c-pre {
    right: 10%;
    left: unset;
  }

  nav .nav-content {
    justify-content: center;
  }

  .bg-feature {
    background-image: url(https://myschool-assets.s3.ap-south-1.amazonaws.com/uploads/7XlT7XBZO1GjXNe2jqCf9nervlK7BAeFwrd5bZoE.jpg);
  }

  .after-before::after {
    position: unset !important;
  }

  .after-before::before {
    position: unset !important;
  }
}



.slider-nav.s-allen-50 {
  top: 51%;
}

.slider-nav.s-allen-50::after,
.slider-nav.s-allen-50::before {
  width: 1rem;
}

.select-control {
  appearance: none;
  outline: 0;
  border: 0;
  box-shadow: none;
  flex: 1;
  padding: 0 1em;
  color: #005224;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--darkgray);
  background-image: none;
  cursor: pointer;
}

.select-control::-ms-expand {
  display: none;
}

.select {
  position: relative;
  display: flex;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
}

.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  transition: .25s all ease;
  pointer-events: none;
  color: #f34612;
}

.hr-line::before {
  /* content: "";
 height: 3px;
 background: red;
  width: 70px;
 position: absolute;
 bottom: -3px; */

}

.img-hover::after {
  content: '';
  background-color: #000;
  opacity: .5;
  top: 0;
  height: 100px;
  width: 100%;
}

.img-hover::before {
  content: "";
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  height: 91%;
  width: 100%;
  transition: .2s ease-in-out;
}

.img-hover:hover::before {
  opacity: 0.3;
}

.slider-container.slider-over {
  overflow-y: hidden;
  scrollbar-color: #3F51B5 !important;
  opacity: 1 !important;
}

#scroll {
  position: fixed;
  right: 10px;
  bottom: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  cursor: pointer;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #000;
}

#scroll:hover {
  background-color: #eee;
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.moretext {
  display: none;
}

.after-before {
  display: inline-block;
}

.after-before::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  top: 20px;
  left: -46px;
  background: linear-gradient(42deg, #E91E63, transparent);

}

.after-before::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 4px;
  top: 20px;
  right: -48px;
  background: linear-gradient(292deg, #E91E63, transparent);
}

.sub-menus {
  margin-right: 32px;
}

.hide-circle {
  opacity: 0;
}

.opne-hide-circle:hover .hide-circle {
  opacity: 1 !important;
}

.o-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.o-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ab-cr-bg {
  background: #003618;
}
.aps-menu{
  right: -158px;
}

.brud-image,.comman-banner{
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .dps-menu-open.hidden-menu {
    display: flex;
  }

  .dps-menu-openss.hidden-menu {
    display: flex;
  }

  .dps-menu-opensss.hidden-menu {
    display: flex;
  }
}