:root {
  --theme-primary: #11a14a;
  --theme-primary-light: #19bf5b;
  --theme-danger: #ff8181;
  --theme-warning: #ffcd5a;
  --theme-gray: #f7f8f6;
  --color-b: #202124;
  --step--2: clamp(0.6076rem, 0.6012rem + 0.0324vw, 0.64rem);
  --step--1: clamp(0.7292rem, 0.715rem + 0.0708vw, 0.8rem);
  --step-0: clamp(0.875rem, 0.825rem + 0.125vw, 1rem);
  --step-1: clamp(1.05rem, 1.01rem + 0.2vw, 1.25rem);
  --step-2: clamp(1.26rem, 1.1995rem + 0.3025vw, 1.5625rem);
  --step-3: clamp(1.512rem, 1.4238rem + 0.4411vw, 1.9531rem);
  --step-4: clamp(1.8144rem, 1.689rem + 0.627vw, 2.4414rem);
  --step-5: clamp(2.1773rem, 2.0024rem + 0.8745vw, 3.0518rem);
  font-size: 100%;
}
@keyframes customBounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.15);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.bounceEffect {
  animation: customBounce 0.6s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a,
li,
ul {
  list-style: none !important;
  text-decoration: none !important;
  margin: 0;
  padding: 0;
}
body {
  font-size: var(--step-0);
  color: var(--color-b);
  font-family: Inter, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
::placeholder {
  font-size: 0.875em;
  color: #808790;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 9999s ease-in-out 0s;
}
input:focus {
  box-shadow: unset !important;
  border-color: var(--color-b) !important;
}
.h1,
h1 {
  font-size: var(--step-5);
  font-family: Poppins, sans-serif;
}
.h2,
h2 {
  font-size: var(--step-4);
  font-family: Poppins, sans-serif;
}
.h3,
h3 {
  font-size: 1.4rem;
  font-family: Poppins, sans-serif;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .h3,
  h3 {
    font-size: 1.7rem;
    text-wrap: auto;
  }
}
.h4,
h4 {
  font-size: var(--step-2);
  font-family: Poppins, sans-serif;
}
.h5,
h5 {
  font-size: var(--step-1);
  font-family: Poppins, sans-serif;
}
.h6,
h6 {
  font-size: calc(var(--step-0) + 0.1rem);
  font-family: Poppins, sans-serif;
}
.font-inter {
  font-family: Inter, sans-serif !important;
}
.font-poppins {
  font-family: Poppins, sans-serif !important;
}
.fw-black {
  font-weight: 800;
}
.bg-theme-primary {
  background: var(--theme-primary) !important;
}
.bg-theme-danger {
  background: var(--theme-danger) !important;
}
.bg-theme-warning {
  background: var(--theme-warning) !important;
}
.text-theme-primary {
  color: var(--theme-primary) !important;
}
.bg-theme-gray {
  background: var(--theme-gray) !important;
}
.bg-theme-primary-light {
  background: var(--theme-primary-light) !important;
}
.border-theme-primary {
  border-color: var(--theme-primary) !important;
}
.btn-theme-primary {
  background: var(--theme-primary);
  color: rgba(255, 255, 255, 0.89);
  transition: all 0.2s;
}
.btn-theme-primary:focus,
.btn-theme-primary:hover {
  background: var(--color-b) !important;
  color: #fff !important;
}
.text-white {
  color: #fff !important;
}
.btn-theme-light {
  color: var(--theme-primary);
  background: #fff;
}
.btn-theme-light:hover {
  background: var(--theme-primary-dark);
}
.text-theme-primary {
  color: var(--theme-primary);
}
.text-theme-accent {
  color: var(--theme-accent);
}
.border-theme-accent {
  border-color: var(--theme-accent) !important;
}
.container-sec {
  max-width: calc(min(1600px, 100%) - 2rem);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container-sec {
    max-width: min(1600px, 90%);
  }
}
.banner-sec {
  background: var(--theme-gray)
    url(https://resources.edunexttechnologies.com/web-data/simply-landing/images/banner-bg.svg)
    no-repeat center;
  background-size: cover;
  padding: 2rem 0;
}
.banner-form {
  box-shadow: 0 6px 4px #2021241a;
  font-weight: 600;
}
.banner-form input[type="checkbox"] {
  accent-color: #4caf50;
  border-radius: 2px;
  border: 1px solid gray !important;
  width: 1em;
  height: 1em;
  display: inline-block;
}
.banner-form input[type="checkbox"]:checked {
  border-radius: 2px;
  border: 1px solid transparent !important;
}
.school-sec {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  z-index: 1;
  box-shadow: 0 3px 6px #0000000d;
}
.btn,
.form-control {
  border-radius: var(--bs-border-radius-sm);
}
.form-control:focus {
  border-color: var(--theme-primary) !important;
  box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}
.form-float {
  position: relative;
}
.form-float > label {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  font-weight: 500;
  color: #666;
  background: #fff;
  padding: 1px 0.25rem;
  font-size: 0.9em;
  transition: all 0.3s ease;
}
.form-float ::placeholder {
  color: transparent;
}
.form-float .form-control {
  padding-left: 1.3rem;
}
.form-float .form-control:focus::placeholder {
  color: #808790;
}
.contact-input .form-control:not(:placeholder-shown) ~ label,
.contact-input .form-float .form-control:focus ~ label {
  left: -50px;
}
.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
  color: inherit;
  top: -1px;
}
.contact-input:has(input:focus) .dropdown-toggle {
  border-color: var(--theme-primary);
}
.drop-group {
  position: relative;
}
.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #faf7f7;
  border: 1px solid var(--bs-border-color);
  border-top: 0;
  z-index: 1;
  border-bottom-left-radius: var(--bs-border-radius-sm);
  border-bottom-right-radius: var(--bs-border-radius-sm);
  box-shadow: var(--bs-box-shadow-sm);
  overflow: hidden;
  display: none;
}
.drop-menu a {
  padding: 0.375rem 0.5rem;
  display: block;
  text-align: center;
  color: inherit;
  transition: all 0.1s;
}
.drop-menu li:not(:last-child) a {
  border-bottom: 1px solid rgba(5, 5, 5, 0.082) !important;
}
.drop-menu a:hover {
  background: var(--theme-primary);
  color: #fff;
}
.btn-theme-dark {
  background: var(--color-b);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s;
}
.btn-theme-dark:hover {
  background: var(--theme-primary);
  color: #fff;
}
.btn i {
  display: inline-flex;
  width: 1.8em;
  height: 1.8em;
  font-size: 0.7em;
  border: 1px solid;
  border-radius: 50%;
  color: inherit;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.badge-lead {
  background: #a7f177;
  padding: 2px 8px;
  display: inline-block;
  border-radius: 4px;
  /* font-size: 0.7rem; */
  font-weight: 600;
  text-align: center;
  text-wrap: balance;
}
.badge-lead-2 {
  background: #b6b6ff;
}
.badge-lead-3 {
  background: #ff8181;
}
.badge-lead-4 {
  background: #68e5e5;
}
.badge-lead-5 {
  background: #eaf200;
}
.badge-lead-6 {
  background: #ffcd5a;
}
.admission {
  background: url(https://resources.edunexttechnologies.com/web-data/simply-landing/images/demo-bg-pattern2.svg),
    linear-gradient(81deg, #11a14a 0, #19bf5b 100%) 0 0 no-repeat padding-box;
}
.btn-demo {
  border: none !important;
  transition-duration: 0.5s;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.btn-demo i {
  border: 1px solid #fff;
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition-duration: 0.5s;
}
.btn-demo:hover {
  background-color: #fff;
  color: var(--theme-primary) !important;
  animation-duration: 0.5s;
}
.btn-demo:hover i {
  border: 1px solid var(--theme-primary) !important;
  animation-duration: 0.5s;
}
.work-flow {
  background: transparent linear-gradient(180deg, #fff 0, #f7f8f6 100%) 0 0
    no-repeat padding-box;
}
.faq .accordian-ul li:before {
  content: "\2714";
  color: var(--theme-primary);
  border: 1.75px solid var(--theme-primary);
  padding: 1px 4px;
  border-radius: 50%;
  font-size: var(--step--2);
  margin-right: 8px;
  font-weight: 575;
}
.faq .accordian-ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: start;
  justify-content: start;
}
.faq .accordion-item {
  border: 0 !important;
  margin-bottom: 1rem;
}
.faq .accordion-body {
  font-size: small;
  border: 2px solid var(--theme-primary);
  border-top: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.faq .accordion-button {
  border: 1px solid #e3e3e3;
  border-radius: 8px !important;
  background-color: #fff;
  color: #000;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: small;
  min-height: 4rem;
  transition-duration: 0.3s;
}
.faq .accordion-button.collapsed:hover {
  background-color: var(--theme-primary);
  color: #fff;
  transition-duration: 0.3s;
}
.faq .accordion-button:not(.collapsed) {
  background-color: var(--theme-primary);
  color: #fff;
  transition-duration: 0.3s;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border: 2px solid var(--theme-primary);
  box-shadow: 2px 2px -5px #000;
  overflow: hidden;
}
.faq .accordion-button:not(.collapsed) .cross .one,
.faq .accordion-button:not(.collapsed) .cross .two {
  background-color: #fff;
}
.faq .accordion-button.collapsed:hover .cross .one,
.faq .accordion-button.collapsed:hover .cross .two {
  background-color: #fff;
  transition-duration: 0.3s;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  content: none !important;
}
.faq .cross {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq .cross .one,
.faq .cross .two {
  display: inline-flex;
  width: 0.75rem;
  background-color: #000;
  height: 2px;
}
.faq .accordion-button .cross .one {
  position: relative;
  left: 50%;
  transform: rotate(90deg);
  transition-duration: 0.3;
}
.faq .accordion-button:not(.collapsed) .cross .one {
  transform: rotate(0);
  transition-duration: 0.3;
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq ol li {
  list-style-type: 1;
}
footer {
  background: transparent linear-gradient(0deg, #12c261 0, #11a14a 100%) 0 0
    no-repeat padding-box;
}
footer .footer-top {
  background: transparent linear-gradient(0deg, #19bf5b 0, #11a14a 100%) 0 0
    no-repeat padding-box;
  border-radius: 0 0 8rem 8rem;
}
footer .footer-ul li {
  display: flex;
  align-items: start;
  justify-content: start;
  color: #fff;
  margin: 0.5rem;
}
footer hr {
  border: 1px solid #dbdbdb;
}
@media (max-width: 1024px) {
  footer .footer-top {
    border-radius: 0;
  }
}
@media (max-width: 992px) {
  .btnFormText {
    padding: 8.5px 0.55rem !important;
  }
}
.modal .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 22px;
  background: var(--theme-primary);
  opacity: 1;
  color: #fff;
  text-shadow: none;
  padding: 0 5px 9px 10px;
  border-radius: 0 0 0 42px;
  cursor: pointer;
  z-index: 999;
  border: none;
  cursor: pointer;
  font-weight: 900;
  line-height: 25px;
}
.modal-dialog {
  pointer-events: all;
}
.footer-bottom,
.footer-top {
  font-weight: 200;
}
.text-red {
  color: red !important;
}
.prod-cards {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.prod-cards > * {
  min-height: 360px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  margin-bottom: 3rem;
  top: 100px;
  transition: all 0.2s ease-in-out;
}
/* .prod-cards > *:not(:last-child) {
  margin-bottom: 0px !important;
} */
@media (max-width: 767px) {
  .prod-cards img {
    max-width: 300px;
    margin: auto;
    display: block;
  }
  .prod-cards > * {
    align-items: start;
  }
}
.sticky-header.show {
  position: sticky;
  top: 20px;
}

.small {
  font-size: 0.92rem;
}
.smallest {
  font-size: 0.85rem;
}
.loader {
  background-color: transparent;
  display: flex;
  justify-content: center;
  height: 93vh;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
}
.loader svg path,
svg rect {
  fill: #11a14a;
}
.schools-slider .owl-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2px;
  height: 30%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.144);
}
.text-balance {
  text-wrap: balance;
}
@media (max-width: 400px) {
  .h5 {
    font-size: 1rem !important;
  }
  .g-recaptcha {
    transform: scale(0.965);
  }
}
.btnFormText {
  font-size: 0.9em;
  color: #666;
  padding: 8px 0.55rem;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
@media (max-width: 412px) {
  .subtitle-balance {
    max-width: 90%;
    margin: auto;
  }
}

.floating-btn {
  position: fixed;
  bottom: 18%;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
}
@media (max-width: 576px) {
  .floating-btn {
    bottom: 14% !important;
  }
  .floating-btn a {
    height: 2rem !important;
    width: 2rem !important;
  }
}
.floating-btn a {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 4px #0000005b;
  border: 1px solid white;
  transition: all 0.3s;
}
.floating-btn a:hover {
  filter: brightness(85%);
}
.floating-btn .call-btn {
  background: #0d6efd;
  color: white;
  border-color: #0545a552 !important;
}
.floating-btn .whatsapp-btn {
  background: var(--theme-primary);
  color: white;
  border-color: #056d2f56 !important;
}
.chat-bot {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
}
.small-x{
  font-size: x-small;
}
::-webkit-scrollbar{width:4px;height:4px}
::-webkit-scrollbar-track{box-shadow:inset 0 0 5px var(--theme-primary-light);border-radius:4px}
::-webkit-scrollbar-thumb{background:var(--theme-primary);border-radius:4px;animation-duration:.3s}
::-webkit-scrollbar-thumb:hover{background:var(--theme-primary-light);animation-duration:.3s}