: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.85rem + 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;
}

.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: var(--step-3);
  font-family: "Poppins", sans-serif;
}
.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: var(--step-0);
  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;
}
.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(--theme-primary-dark);
  color: #fff;
}
.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: min(1600px, 90%);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==================== CODE STARTED (Ramanand Dubey) ==================== */

/*  Admission CRM ------------------ */
.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;
  animation-duration: 0.5s;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.btn-demo i {
  border: 1px solid white;
  border-radius: 50%;
  /* padding: 2.5px; */
  height: 1.25rem;
  width: 1.25rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  animation-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 ------------------ */
.work-flow {
  background: transparent linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%) 0%
    0% no-repeat padding-box;
}

/* FAQs ------------------------- */
.faq .accordian-ul li:before {
  content: "\2714";
  color: var(--theme-primary);
  border: 1.75px solid var(--theme-primary);
  height: 2.5rem;
  width: 5rem;
  padding: 1px 2.5px;
  border-radius: 50%;
  font-size: var(--step--2);
  margin-right: 5px;
  font-weight: 575;
}
.faq .accordian-ul li {
  margin-bottom: 0.5rem;
}
.faq .accordion-item {
  border: 0 !important;
  margin-bottom: 1rem;
}
.faq .accordion-button {
  border: 1px solid #e3e3e3;
  border-radius: 8px !important;
  background-color: #fff;
  color: #000;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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: 15px;
  background-color: #000;
  height: 2px;
}
.faq .accordion-button .cross .one {
  position: relative;
  left: 50%;
  transform: rotate(90deg);
}
.faq .accordion-button:not(.collapsed) .cross .one {
  transform: rotate(0deg);
}
.faq .accordion-button:focus {
  box-shadow: none;
}
.faq ol li {
  list-style-type: 1;
}

/* Footer ------------- */
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: 0px 0px 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;
}

