@font-face {
  font-family: "Glorila";
  src: url(/fonts/Gloriola\ Display\ Black.otf);
}
@font-face {
  font-family: "Glorila std regular";
  src: url(/fonts/Gloriola\ Std\ Regular.otf);
}
@font-face {
  font-family: "Glorila std bold";
  src: url(/fonts/Gloriola\ Std\ Bold\ It.otf);
}
@font-face {
  font-family: "Glorila std medium";
  src: url(/fonts/Gloriola\ Std\ Medium.otf);
}
@font-face {
  font-family: "Glorila std semibold";
  src: url(/fonts/Gloriola\ Std\ Semibold.otf);
}
@font-face {
  font-family: "Glorila std light";
  src: url(/fonts/Gloriola\ Std\ Light.otf);
}
@font-face {
  font-family: "Glorila std medium Italic";
  src: url(/fonts/Gloriola\ Std\ Medium\ It.otf);
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: black;
}

section {
  min-height: 100vh;
  padding-top: 20px;
  margin: 5px 0;
}

:root {
  --step--2: clamp(0.69rem, calc(0.58rem + 0.6vw), 1rem);
  --step--1: clamp(0.83rem, calc(0.67rem + 0.81vw), 1.25rem);
  --step--0-1: clamp(0.5rem, calc(0.58rem + 0.6vw), 1.2rem);
  --step-0: clamp(1rem, calc(0.78rem + 1.1vw), 1.56rem);
  --step-0-1: clamp(0.5rem, calc(0.25rem + 0.85vw), 1.4rem);
  --step-1: clamp(1.2rem, calc(0.91rem + 1.47vw), 1.95rem);
  --step-2: clamp(1.44rem, calc(1.05rem + 1.95vw), 2.44rem);
  --step-3: clamp(1.73rem, calc(1.21rem + 2.58vw), 3.05rem);
  --step-4: clamp(2.07rem, calc(1.39rem + 3.4vw), 3.82rem);
  --step-5: clamp(2.49rem, calc(1.6rem + 4.45vw), 4.77rem);
  --glorila-std: "Glorila std regular";
  --color-green: #5aaf76;
}

/* Modal  ------------------------------------------------------------------*/
.modal-xl {
  background-image: url("/assets/modal-bg-1.png");
  background-repeat: no-repeat;
  background-size: auto 100vh;
}
.modal-xl-disabled {
  display: none;
}

.form-modal,
.modal-fade {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: block;
  overflow-y: scroll;
  overflow-x: hidden;
}
.modal-fade {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.7);
}
.form-container {
  width: 60%;
  height: 80%;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
}
.form {
  top: 2%;
  position: absolute;
  width: 100%;
  max-width: 450px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  padding: 2rem 3rem;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.f-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-header img {
  width: 50%;
}
.gray-line {
  display: block;
  height: 1px;
  background-color: #c2c2c2d3;
  margin: 10px -45px;
}
.form-header {
  width: 100%;
}
.form-header h3 {
  font-size: var(--step-1);
  font-family: var(--glorila-std);
}
.input-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0.5rem;
}

input,
button {
  width: 92%;
  height: 40px;
  border-radius: 0.4rem;
  font: inherit;
  border: 2px solid rgba(182, 180, 180, 0.616);
  padding: 0 1.1rem;
}
input::placeholder {
  opacity: 0.9;
  font-size: var(--step--0);
  font-family: Arial;
}
.label-tag {
  margin: 10px 0;
  font-size: var(--step--1);
  font-family: var(--glorila-std);
}

.invalid-format-disabled,
.invalid-name-disabled,
.invalid-mail-disabled {
  display: none;
}
.invalid-format,
.invalid-mail,
.invalid-name {
  display: block;
  padding-top: 5px;
  font-size: 0.9rem;
  color: red;
  font-family: var(--glorila-std);
}
.required-red {
  color: red;
}
.sign-button {
  margin-top: 25px;
  width: 100%;
  background-color: var(--color-green);
  color: white;
  font-family: Arial;
  font-size: var(--step--1);
}
.sign-button:hover {
  transition: all 600ms;
  cursor: pointer;
  background-color: #53996a;
}
.sign-button:active {
  transition: all 600ms;
  transform: translateY(5px);
}

/* Navbar  ------------------------------------------------------------------*/
.navbar {
  position: sticky;
  top: 0%;
  width: 100%;
  display: flex;
  flex-wrap: row wrap;
  align-items: center;
  justify-content: space-evenly;
  background-color: white;
  padding: 10px 0px;
  z-index: 50;
}

.navbar__logo {
  width: 10%;
  padding-left: 20px;
}
.tag-pay-logo {
  width: 120px;
}

.navbar__menu-box {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__menu {
  display: flex;
  list-style: none;
  padding-left: 0;
}

.navbar__menu li {
  font-family: var(--glorila-std);
  font-weight: 500;
  padding: 8px 12px;
  line-height: 18px;
  letter-spacing: -3%;
}
.navbar__menu li a {
  font-size: var(--step--0-1);
  padding: 5px;
  border-radius: 4px;
  color: rgba(67, 67, 67, 1);
}

.navbar__menu li a:hover {
  padding: 5px;
  transition: all 600ms;
  background-color: whitesmoke;
  border-radius: 4px;
}
.navbar-btn-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  min-width: 10%;
  height: 2.8rem;
}

.navbar__toggleBtn {
  display: none;
}

/* Main -------------------------------------------------------------------- */
/* Home page  ---------------------------------------------------------------*/
.home-page-md {
  display: none;
}
.parent-home {
  position: relative;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* animation-1 */
.a-1-box-0 {
  display: none;
}
.a-1-box-0-active {
  position: absolute;
  left: 30%;
  right: 30%;
  top: 10%;
  font-size: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.a-1-normal-heading,
.a-1-green-heading {
  font-size: var(--step-4);
  opacity: 1;
  font-family: var(--glorila-std);
  animation: text-slide-up 1s ease-in;
}
.a-1-green-heading {
  color: var(--color-green);
  transform: translateY(0%);
  animation: color-change 1s linear;
}
@keyframes color-change {
  0% {
    background: -webkit-linear-gradient(
      rgba(47, 130, 255, 1),
      rgba(56, 225, 174, 1)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(250%);
  }
  90% {
    background: -webkit-linear-gradient(
      rgba(47, 130, 255, 1),
      rgba(56, 225, 174, 1)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  100% {
    background: -webkit-linear-gradient(
      rgba(48, 187, 128, 1),
      rgba(48, 187, 128, 1)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(0%);
  }
}
@keyframes text-slide-up {
  0% {
    transform: translateY(250%);
  }
  100% {
    transform: translateY(0);
  }
}

.a-1-box-1,
.a-1-box-2,
.a-1-box-3,
.a-1-box-4,
.a-1-box-5,
.a-1-box-6,
.a-1-box-7,
.a-1-box-8,
.a-1-box-9,
.a-1-box-10,
.a-1-box-11 {
  position: absolute;
  width: 12%;
  height: 38%;
  transform: translateY(0%);
  animation: popup-effect 1s ease-in;
}
.a-1-box-1 {
  bottom: 30%;
  left: -3%;
}
.a-1-box-2 {
  bottom: -15%;
  left: -3%;
}
.a-1-box-3 {
  bottom: 30%;
  right: -3%;
}

.a-1-box-4 {
  bottom: -15%;
  right: -3%;
}
.a-1-box-5 {
  bottom: 10%;
  left: 12%;
}

.a-1-box-6 {
  bottom: -35%;
  left: 12%;
}

.a-1-box-7 {
  bottom: 10%;
  right: 12%;
}
.a-1-box-8 {
  bottom: -35%;
  right: 12%;
}

.a-1-box-9 {
  bottom: -15%;
  left: 27%;
}
.a-1-box-10 {
  bottom: -15%;
  right: 27%;
}
.a-1-box-11 {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 15%;
  right: 43%;
  background-color: #fff;
}
.image-style-remove {
  display: none;
}
.image-2 {
  width: 100%;
  height: 100%;
  object-fit: fill;
  animation: opacity-fade-in-effect 1s linear;
}
.image-1 {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@keyframes opacity-fade-in-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* a-1 popup div*/
@keyframes popup-effect {
  0% {
    transform: translateY(50%);
  }
  90% {
  }
  100% {
    transform: translateY(0%);
  }
}

.a-1-fade-out {
  opacity: 0;
  animation: popup-and-fadeout-effect 1s ease-in;
}
/* a-1 fade out*/
@keyframes popup-and-fadeout-effect {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  90% {
    opacity: 1;
    transform: translateY(-50%);
  }
  100% {
    opacity: 0;
    transform: translateY(-60%);
  }
}

/* animation -2 */
.a-2-size-up {
  width: 17%;
  height: 50%;
  bottom: 19.5%;
  right: 41%;
  transform: translateY(-20%);
  padding: 0 !important;
  animation: size-up-effect 2.5s ease-in;
}

/* a-2  size-up*/
@keyframes size-up-effect {
  0% {
    padding: 0 !important;
    width: 13%;
    height: 40%;
    bottom: 15%;
    right: 43%;
    transform: translateY(0%);
  }
  40% {
    padding: 0 !important;
    width: 17%;
    height: 50%;
    bottom: 15%;
    right: 41%;
    transform: translateY(0%);
  }
  60% {
    padding: 0 !important;
    width: 17%;
    height: 50%;
    bottom: 15%;
    right: 41%;
    transform: translateY(0%);
  }
  100% {
    padding: 0 !important;
    width: 17%;
    height: 50%;
    bottom: 19.5%;
    right: 41%;
    transform: translateY(-20%);
  }
}

.a-2-size-down {
  left: 40%;
  right: 40%;
  top: 5%;
  font-size: 2rem;
  opacity: 0;
  transform: translateY(-20%);
  animation: size-down-effect 2s ease-in;
}
/* a-2  size-down*/
@keyframes size-down-effect {
  0% {
    opacity: 1;
    left: 30%;
    right: 30%;
    top: 10%;
    font-size: 3.2rem;
    transform: translateY(0%);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    left: 40%;
    right: 40%;
    top: 5%;
    font-size: 2rem;
    transform: translateY(-20%);
  }
}

/* Animation - 3 */
.a-3-disabled-1,
.a-3-disabled-2,
.a-3-disabled-3,
.a-3-disabled-1-2,
.a-3-disabled-1-2-2 {
  display: none;
}

.a-3-active-1,
.a-3-active-2 {
  display: block;
  position: absolute;
  width: 16%;
  height: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 10px;
}
.a-3-active-1 {
  overflow-y: scroll;
  left: 26%;
  top: 20.5%;
  animation: slide-from-left 1.5s ease-in;
}

@keyframes slide-from-left {
  0% {
    left: -30%;
    top: 19%;
  }
  100% {
    left: 26%;
    top: 20.5%;
  }
}
.a-3-active-2 {
  right: 25%;
  top: 20.5%;
  animation: slide-from-right 1.5s ease-in;
}

@keyframes slide-from-right {
  0% {
    right: -30%;
    top: 19%;
  }
  100% {
    right: 25%;
    top: 20.5%;
  }
}

.a-3-active-3 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 20%;
  right: 20%;
  top: 8%;
}
.green-heading-2 {
  width: 100%;
  height: 4.4rem;
  font-family: var(--glorila-std);
  text-align: center;
  font-size: var(--step-3);
  color: var(--color-green);
  overflow: hidden;
  animation: slide-text-show-effect 2s linear;
}

@keyframes slide-text-show-effect {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.a-3-active-4 {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  opacity: 1;
}
.a-3-active-4 h2 {
  max-width: 60%;
  font-size: var(--step-1);
  font-family: "Glorila std medium";
  margin: 10px 0;
  text-align: center;
  color: var(--color-green);
  line-height: 30.8px;
  letter-spacing: -3%;
  animation: title-slide-down 1s ease-in-out;
}
@keyframes title-slide-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.a-3-active-4 p {
  font-family: Arial;
  font-style: normal;
  font-weight: 400;
  font-size: var(--step--0-1);
  line-height: 150%;
  text-align: center;
  color: #000000;
  padding: 0 5px;
  animation: after-opacity-effect 3s ease-in-out;
}
@keyframes after-opacity-effect {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Animation-4 */
.a-4-disabled-4,
.a-4-disabled-5 {
  display: none;
}

.a-4-active-1,
.a-4-active-2 {
  position: absolute;
}
.a-4-active-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  right: 30%;
  left: 30%;
  width: 40%;
  bottom: 25%;
  height: 2%;
}
.a-4-active-1 span {
  font-size: var(--step--2);
  font-weight: 550;
  font-family: Arial;
  background-color: #e9f6f2;
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
  min-width: 10%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a-4-active-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0px;
  right: 25%;
  left: 26%;
  bottom: 5%;
}
.a-4-active-2 div {
  width: 160px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 5px;
  padding: 5px 10px;
}
.a-4-active-2 img {
  width: 50px;
}
.a-4-active-2 h2 {
  font-size: var(--step--0-1);
  font-family: var(--glorila-std);
  color: var(--color-green);
  text-align: center;
  line-height: 17px;
}
/* common box */
.box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 10px;
  padding: 10px;
}
.square {
  width: 30%;
  height: 30%;
  background-color: #f8f8f8;
}
.circle {
  width: 30%;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.circle-1 {
  margin-bottom: -5px;
}
.circle-1,
.circle-2 {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #f8f8f8;
}

/* Card and Enrolment page  -------------------------------------------------*/
.card-enrolment-page {
  /* height: 200vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.card-enrolment__header {
  width: 100%;
  padding: 0 10%;
  display: flex;
}
.card-enrolment__green-box {
  width: 10px;
  background-color: var(--color-green);
}
.card-enrolment__heading {
  font-size: var(--step-2);
  padding: 0 20px;
  font-family: var(--glorila-std);
  line-height: 36px;
  letter-spacing: -4%;
}
.card__video-box {
  width: 100%;
  max-height: 180vh;
  min-height: 50vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4% 5% 1% 5%;
}
.card__video-box div {
  flex: 1 0 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.card__video-box div video {
  min-width: 320px;
  min-height: 200px;
  max-width: 680px;
  max-height: 520px;
  border-radius: 20px;
  border: 20px solid rgba(212, 162, 247, 0.247);
}
.card__video-box div video[poster] {
  object-fit: fill;
}
.card__video-box div h3 {
  font-size: var(--step-1);
  color: var(--color-green);
  font-family: var(--glorila-std);
  padding: 15px 0;
  margin: 0;
  line-height: 42px;
  letter-spacing: -2.5%;
}

.card__video-des {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 30px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 5px;
  margin: 5px 0 20px 0;
}
.card__video-des span {
  width: 50px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-green);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.card__video-des p {
  font-size: var(--step--2);
  font-family: Arial;
  color: #414043;
  padding: 0 20px;
  margin: 0;
}

.card__videos-details {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, 700px);
  gap: 3rem;
  place-content: center;
  padding: 10px 20px;
  background-color: #fafafa;
}
.card__videos-details div {
  /* height: 200px; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  background-color: #fff;
}
.card__videos-details div h3 {
  width: 100%;
  text-align: center;
  color: var(--color-green);
  font-family: var(--glorila-std);
  font-size: var(--step-1);
  padding: 15px 0;
  line-height: 35px;
}
.card__videos-details div p {
  width: 100%;
  text-align: center;
  font-size: var(--step--1);
  font-family: Arial;
  color: #414043;
  line-height: 25px;
}

/* Service  -----------------------------------------------------------------*/
.service-page {
  /* height: 160vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.service__header {
  width: 100%;
  padding: 0 10%;
  display: flex;
}
.service__green-box {
  width: 10px;
  background-color: var(--color-green);
}
.service__heading {
  font-size: var(--step-2);
  padding: 0 20px;
  font-family: var(--glorila-std);
  line-height: 36px;
  letter-spacing: -4%;
}
.service__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service__body ol {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  column-gap: 5%;
  flex-wrap: wrap;
  padding: 20px 8.5%;
}
.service__body ol span li {
  transition: all 600ms;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  margin: 5px 0;
  min-width: 350px;
  list-style: none;
  font-family: Arial;
  font-size: var(--step-0-1);
  color: #555555;
  line-height: 28px;
  letter-spacing: -2.5%;
  font-weight: lighter;
}
.service__body ol li:hover {
  transition: all 600ms;
  cursor: pointer;
  font-weight: normal;
  background-color: whitesmoke;
  color: #000000;
  border-radius: 50px;
  transform: translate(20px, 0);
}
.service__ol-span-1 {
  flex: 1 0 400px;
}
.service__ol-span-2 {
  flex: 1 0 400px;
}
.arrow-icon {
  transition: all 600ms;
  opacity: 0;
  visibility: hidden;
  display: none;
  background-color: #555555;
  color: whitesmoke;
  border-radius: 50%;
  padding: 10px;
  font-size: 8px;
}
.service__body ol li:hover .arrow-icon {
  transition: all 600ms;
  visibility: visible;
  background-color: #000000;
  opacity: 1;
}

.service__cards {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 50px 0;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 5%;
  padding: 0 10%;
}
.service__card-1,
.service__card-2,
.service__card-3 {
  flex: 1 0 380px;
  min-width: 300px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  padding: 10px;
}
.service__card-heading {
  text-align: center;
  color: var(--color-green);
  font-family: var(--glorila-std);
  font-size: var(--step-1);
  padding: 10px 0;
}
.service__card-content p {
  font-size: var(--step--1);
  text-align: center;
  font-family: Arial;
  color: #414043;
  line-height: 25px;
}

.service__footer {
  width: 80%;
  height: 5rem;
  display: flex;
  background-color: var(--color-green);
  border-radius: 5px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}
.service__footer p {
  font-family: "Glorila std light";
}
.service__footer a {
  color: var(--color-green);
  font-family: "Glorila std semibold";
}
.service__footer img {
  width: 80px;
  height: 80px;
  object-fit: fill;
}

/* Solutions page  ----------------------------------------------------------*/
.solutions-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.solutions__header {
  width: 100%;
  padding: 0 10%;
  display: flex;
}
.solutions__green-box {
  width: 10px;
  background-color: var(--color-green);
}
.solutions__heading {
  font-size: var(--step-2);
  padding: 0 20px;
  font-family: var(--glorila-std);
  line-height: 36px;
  letter-spacing: -4%;
}

.solutions__graph-container-disabled {
  display: none;
}
.solutions__pyramid-image {
  display: none;
}
.solutions__graph-container {
  display: block;
  position: relative;
  width: 100%;
  height: 60vh;
  margin: 20px 0;
  background: var(--color-green);
  background: radial-gradient(
    circle,
    rgba(37, 219, 12, 0.21659085997680327) 0%,
    rgba(251, 251, 251, 0.28661887118128504) 23%
  );
  animation: bg-comming 8s ease-in-out;
}
@keyframes bg-comming {
  0% {
    background: transparent;
  }
  90% {
    background: var(--color-green);
    background: radial-gradient(
      circle,
      rgba(37, 219, 12, 0.21659085997680327) 0%,
      rgba(251, 251, 251, 0.28661887118128504) 23%
    );
  }
  100% {
    background: var(--color-green);
    background: radial-gradient(
      circle,
      rgba(37, 219, 12, 0.21659085997680327) 0%,
      rgba(251, 251, 251, 0.28661887118128504) 23%
    );
  }
}
.solutions__graph {
  position: absolute;
  padding-top: 100px;
  width: 100%;
  height: 100%;
}

.g-1,
.g-7,
.g-8 {
  position: absolute;
  font-size: var(--step--1);
  font-family: var(--glorila-std);
  width: 20%;
  text-align: center;
}
.g-3,
.g-4,
.g-5,
.g-6,
.g-9,
.g-10 {
  position: absolute;
  font-size: var(--step--1);
  font-family: var(--glorila-std);
  width: 15%;
  text-align: center;
  animation: fade-in 6s ease-in-out;
}
.g-1 {
  top: 0%;
  right: 40%;
  left: 40%;
  animation: fade-in 5s ease-in-out;
}
.g-3 {
  top: 20%;
  left: 35%;
}
.g-4 {
  top: 20%;
  right: 35%;
}
.g-5 {
  top: 40%;
  left: 30%;
}
.g-6 {
  top: 40%;
  right: 30%;
}
.g-7 {
  top: 60%;
  left: 20%;
  animation: fade-in 5.2s ease-in-out;
}
.g-8 {
  top: 60%;
  right: 20%;
  animation: fade-in 5.4s ease-in-out;
}
.g-9 {
  bottom: 15%;
  left: 35%;
}
.g-10 {
  bottom: 15%;
  right: 35%;
}

@keyframes fade-in {
  1% {
    opacity: 0;
  }
  80% {
    opacity: 0;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.polygon--container {
  position: absolute;
  width: 50%;
  height: 50%;
  left: 25%;
  right: 25%;
  top: 25%;
  bottom: 25%;
  display: grid;
  grid-template-columns: repeat(12, auto);
  grid-template-rows: repeat(12, auto);
}
.grid-1 {
  grid-area: 1/2/7/7;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
.grid-2 {
  grid-area: 1/7/7/12;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.right-polygon {
  transform: scale(2) translateX(-25%);
  animation: right-polygon 3s ease-out;
}
@keyframes right-polygon {
  1% {
    transform: scale(0) translateX(-1600%);
  }
  100% {
    transform: scale(2) translateX(-25%);
  }
}
.left-polygon {
  transform: scale(2) translateX(25%);
  animation: left-polygon 3s ease-out;
}
@keyframes left-polygon {
  1% {
    transform: scale(0) translateX(1600%);
  }
  100% {
    transform: scale(2) translateX(25%);
  }
}
.bottom-polygon {
  transform: scale(2) translateY(-50%);
  animation: bottom-polygon 3s ease-out;
}
@keyframes bottom-polygon {
  1% {
    transform: scale(0) translateY(1000%);
  }
  100% {
    transform: scale(2) translateY(-50%);
  }
}
.grid-3 {
  grid-area: 7/5/8/9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.grid-4 {
  grid-area: 8/2/12/12;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -11.5rem;
}

.center-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160.1px;
  height: 160.1px;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 0) 20.31%,
    #ffffff 100%
  );
  transform: matrix(1, 0, 0, -1, 0, 0);
  border-radius: 50%;
  transform: translateY(-65%);
  animation: center-polygon 4s ease-in-out;
}
@keyframes center-polygon {
  1% {
    transform: scale(0) translateY(-65%);
  }
  100% {
    transform: scale(1) translateY(-65%);
  }
}
.circle-white-bg {
  height: 80%;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.circle-white-bg img {
  width: 80%;
}

/* FAQs ---------------------------------------------------------------------*/
.faq__main {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5rem;
}
.faq__header {
  width: 100%;
  padding: 0 10%;
  display: flex;
}
.faq__green-box {
  width: 10px;
  background-color: var(--color-green);
}
.faq__heading {
  font-size: var(--step-2);
  padding: 0 20px;
  font-family: var(--glorila-std);
  line-height: 36px;
  letter-spacing: -4%;
}
.faq__body {
  width: 100%;
  padding: 0 10%;
}
.accordion {
  max-width: 100%;
  display: block;
  margin: auto;
}
.accordion .accordion-box {
  margin-bottom: 20px;
  float: left;
  width: 100%;
}
.black-h4,
.green-h4 {
  max-width: 90%;
  cursor: pointer;
  position: relative;
  font-family: var(--glorila-std);
  font-size: var(--step-1);
  font-weight: normal;
  line-height: 134.52%;
  letter-spacing: -0.025em;
  color: var(--color-green);
  padding: 10px 0;
}
.black-h4 {
  color: #555;
}
.green-h4 {
  color: var(--color-green);
}
.accordion-box {
  border-bottom: 1px solid #e7e7e7;
}
.accordion .accordion-box .accordion-header {
  position: relative;
}
.accordion .accordion-box .accordion-header span {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 1px;
  height: 25px;
  width: 25px;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 1.2rem;
}
.accordion .accordion-box .accordion-body {
  padding: 20px;
}
.accordion .accordion-box .accordion-body {
  display: none;
}
.accordion .accordion-box .accordion-body p {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: var(--step--1);
  line-height: 160%;
  letter-spacing: -0.025em;
  color: #696969;
}
/* Footer  ------------------------------------------------------------------*/
.tagpay__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dadada;
  padding: 1% 6%;
}
.tagpay__footer span {
  width: 80%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.tagpay__footer span p {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  text-align: center;
  color: #585858;
}

.contactDiv {
  font-family: var(--glorila-std);
  color: #585858;
}
.contactLine.Strong {
  font-weight: 700;
  font-size: 1.1em;
}
.contactLine {
  padding: 0 0 5px 0;
}

/* ---------------------Responsive------------------------------------------ */
/* ---------------------Responsive------------------------------------------ */
/* ---------------------Responsive------------------------------------------ */
/* ---------------------Responsive------------------------------------------ */
/* ---------------------Responsive------------------------------------------ */

/* Extra large screen */
@media screen and (min-width: 1950px) {
  .card__videos-details {
    padding: 20px 15%;
  }
}
@media screen and (min-width: 1650px) {
  .a-3-active-4 h2 {
    font-size: 1.6rem;
    margin: 20px 0;
  }
  .a-3-active-4 p {
    font-size: 1.5rem;
  }
  /* Solutions  ------------------------------------------------------------*/
  .solutions__graph-container {
    height: 45vh;
  }
}
@media screen and (min-width: 1220px) {
  /* Home  ---------------------------------------------------------------*/
  .a-3-active-4 h2 {
    font-size: var(--step-1);
  }
  .a-3-active-4 p {
    font-size: var(--step-0-1);
  }
  /* Card */
  .card__video-box {
    max-height: 180vh;
    min-height: 0vh;
  }
}
@media screen and (max-width: 1220px) {
  /* Solutions  ------------------------------------------------------------*/
  .polygon--container {
    transform: scale(0.85);
  }
}
/* Large screen */
@media screen and (max-width: 1060px) {
  /* Card and Enrolment page  --------------------------------------------*/
  .card__video-box div {
    flex-direction: column-reverse;
  }
  .card__video-box div h3 {
    padding: 0px;
    padding-top: 18px;
    padding-bottom: 4px;
  }

  /*Services page -----------------------------------------------------  */
  .service__body ol span li {
    font-size: var(--step--1);
  }
}
@media screen and (max-width: 996px) {
  .service-page {
    height: 185vh;
  }

  /* Solutions  ------------------------------------------------------------*/
  .solutions__graph-container {
    height: 55vh;
  }
  .g-1 {
    top: 10%;
  }
  .g-3 {
    top: 20%;
    left: 30%;
  }
  .g-4 {
    top: 20%;
    right: 30%;
  }
  .g-5 {
    top: 40%;
    left: 20%;
  }
  .g-6 {
    top: 40%;
    right: 20%;
  }
  .g-7 {
    top: 60%;
    left: 10%;
    animation: fade-in 5.2s ease-in-out;
  }
  .g-8 {
    top: 60%;
    right: 10%;
    animation: fade-in 5.4s ease-in-out;
  }
  .g-9 {
    bottom: 30%;
    left: 35%;
  }
  .g-10 {
    bottom: 30%;
    right: 35%;
  }
}

@media screen and (max-width: 960px) {
  .form-modal,
  .modal-fade {
    height: 150vh;
  }
}

/* Medium screen */
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
  /* Navbar  ---------------------------------------------------------------*/
  .navbar {
    align-items: flex-start;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  }
  .tag-pay-logo {
    width: 100px;
  }
  .navbar__menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar__menu li {
    width: 100%;
    text-align: center;
  }

  .navbar__toggleBtn {
    display: block;
  }
  .navbar__menu.active {
    display: flex;
    margin-top: 4rem;
    height: fit-content;
    transform: translateY(0%);
    animation: navbar-slide 200ms ease-in-out;
  }

  @keyframes navbar-slide {
    0% {
      transform: translateY(-50%);
    }
    100% {
      transform: translateY(0%);
    }
  }

  /* Home page  -------------------------------------------------------------*/
  .parent-home {
    display: none;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
  }

  .home-page-md {
    display: block;
  }
  .home-md__box-1 {
    display: block;
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }

  .home-md__title {
    position: absolute;
    text-align: center;
    font-size: 1.5rem;
    top: 15%;
    left: 10%;
    width: 80%;
    right: 10%;
  }
  .home-md__normal-heading,
  .home-md__green-heading {
    font-family: var(--glorila-std);
  }
  .home-md__green-heading,
  .box-2-green-heading {
    color: var(--color-green);
    margin-bottom: 5%;
  }
  .home-md__images-box-1,
  .home-md__images-box-2,
  .home-md__images-box-3,
  .home-md__images-box-4,
  .home-md__images-box-5,
  .home-md__images-box-6 {
    position: absolute;
    height: 30%;
    width: 25%;
    /* border: 1px solid olivedrab; */
  }
  .home-md__images-box-1 {
    left: -8%;
    top: 55%;
  }
  .home-md__images-box-3 {
    left: -8%;
    top: 90%;
  }
  .home-md__images-box-4 {
    right: -8%;
    top: 55%;
  }
  .home-md__images-box-5 {
    right: -8%;
    top: 90%;
  }
  .home-md__images-box-6 {
    right: 38%;
    left: 38%;
    top: 75%;
  }
  .home-md__images-box-2 {
    right: 38%;
    left: 38%;
    top: 40%;
  }
  .home-md__images-box-2 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 10px;
  }

  .home-md__box-2 {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 10% 0 0 0;
    overflow: hidden;
  }
  .home-md__box-2-title {
    position: relative;
    top: 6%;
    width: 60%;
    left: 20%;
    right: 20%;
    text-align: center;
  }
  .home-md__box-2-body {
    position: relative;
    top: 8%;
    width: 80%;
    left: 10%;
    right: 10%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .home__box-2-body-content {
    width: 100%;
    max-width: 320px;
    max-height: 400px;
    border-radius: 5px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    margin-bottom: 5%;
  }
  .home__box-2-body-content h2 {
    font-size: 1.4rem;
    font-family: "Glorila std medium";
    margin-top: 20px;
    text-align: center;
    color: var(--color-green);
    line-height: 40.8px;
    letter-spacing: -3%;
  }
  .home__box-2-body-content p {
    font-size: 0.8rem;
    font-family: Arial;
    padding: 8px;
    text-align: center;
    line-height: 15px;
    letter-spacing: -5%;
  }
  .home__box-2-body-content img {
    width: 100%;
    object-fit: fill;
  }

  .home-md__box-3 {
    position: relative;
    top: 0%;
    width: 80%;
    left: 10%;
    right: 10%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 1rem; */
  }
  .home-md__box-3 div {
    width: 100%;
    max-width: 320px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 5px;
    margin-bottom: 5%;
  }
  .home-md__box-3 div h2 {
    font-size: 1rem;
    font-family: "Glorila std medium";
    color: var(--color-green);
    text-align: center;
    line-height: 24px;
    letter-spacing: -5%;
  }
  .home-md__box-3 div img {
    width: 50px;
  }

  /* Card and Enrolment page  ----------------------------------------------*/
  .card-enrolment-page {
    min-height: auto;
    padding: 8% 0;
  }
  .card-enrolment__header {
    padding: 0 5%;
  }
  .card__video-box {
    display: block;
    width: 100%;
    min-height: 40vh;
    /* flex-direction: column; */
    /* column-gap: 1rem; */
  }
  .card__video-box div video {
    max-width: 450px;
    max-height: 280px;
  }
  .card__video-des p {
    text-align: center;
  }
  .card__videos-details {
    grid-template-columns: repeat(auto-fill, 85%);
    /* column-gap: 2rem; */
    /* row-gap: 1rem;
    padding: 10px 0; */
  }
  .card__videos-details div {
    min-height: unset;
  }
  .card__videos-details div h3 {
    padding: 0;
  }
  .tagpay__footer {
    padding: 1% 5%;
  }
  .service__card-1,
  .service__card-2,
  .service__card-3 {
    min-height: 190px;
  }
  /* Service  --------------------------------------------------------------*/
  .service-page {
    height: auto;
  }
  .service__header {
    padding: 0 5%;
  }
  .service__body ol span li {
    min-width: 250px;
    font-size: var(--step-1);
  }

  /* Solutions page  -------------------------------------------------------*/
  .solutions__header {
    padding: 0 5%;
  }
  /* FAQs ------------------------------------------------------------------*/
  .faq__main {
    padding: 0px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
  }

  .faq__header,
  .faq__body {
    width: 100%;
    padding: 0 5%;
  }
  .black-h4,
  .green-h4 {
    font-size: var(--step--1);
  }
  .accordion .accordion-box .accordion-body p {
    font-size: var(--step--1);
  }
  /* Footer  --------------------------------------------------------------*/
}
@media screen and (max-width: 760px) {
  .form {
    top: 10%;
  }
  .modal-xl {
    background-image: url("/assets/modal-bg-2.png");
    background-repeat: no-repeat;
    background-size: auto 100vh;
  }
}
@media screen and (max-width: 740px) {
  .card__video-des {
    max-width: 95%;
    margin: 10% 0 8%;
  }
  .tagpay__footer {
    justify-content: center;
    flex-wrap: wrap;
  }
  .contactDiv {
    text-align: center;
    padding: 3% 0 5%;
  }
  .tagpay__footer span {
    justify-content: center;
    padding-bottom: 2%;
  }
}
@media screen and (max-width: 640px) {
  /* Solutions  ------------------------------------------------------------*/
  .solutions__graph-container {
    height: 30vh;
  }
  .g-1,
  .g-3,
  .g-4,
  .g-5,
  .g-6,
  .g-7,
  .g-8,
  .g-9,
  .g-10 {
    font-size: 1rem;
  }
  .g-9 {
    bottom: 10%;
  }
  .g-10 {
    bottom: 10%;
  }
  .polygon--container {
    transform: scale(0.6);
  }
}
@media screen and (max-width: 600px) {
  .form {
    top: 0;
    position: relative;
    width: 80%;
  }
  .form-modal,
  .modal-fade {
    height: 100%;
  }
}

@media screen and (max-width: 450px) {
  /* Card and Enrolment page  -------------------------------------------------*/
  .card-enrolment-page {
    min-height: auto;
    padding: 8% 0;
  }
  .card__video-box {
    display: block;
    width: 100%;
    min-height: 60vh;
  }
  .card__video-box div video {
    max-width: 280px;
    max-height: 180px;
    min-width: 250px;
    min-height: 150px;
  }
  .card__video-des p {
    text-align: center;
  }
  .card__videos-details {
    grid-template-columns: repeat(auto-fill, 85%);
    /* column-gap: 2rem; */
    /* row-gap: 1rem;
    padding: 10px 0; */
  }
  .card__videos-details div {
    min-height: unset;
  }

  .tagpay__footer {
    padding: 1% 5%;
  }
  /* Service  --------------------------------------------------------------*/
  .service__body ol span {
    flex: auto;
  }
  .service__body ol span li {
    max-width: 320px;
  }

  /* solutions --------------------------------------------------------------*/
  .solutions-page {
    padding-top: 20px;
  }

  .solutions__graph-container {
    display: none;
  }
  .solutions__pyramid-image {
    display: block;
  }
  .solutions__pyramid-image img {
    width: 100%;
  }
  /* FAQ --------------------------------------------------------------------*/
  .faq__main {
    padding: 0px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.5rem;
  }

  .black-h4,
  .green-h4 {
    font-size: var(--step-1);
    padding-left: 10px;
  }
  .black-h4 {
    color: #555;
  }
  .green-h4 {
    color: var(--color-green);
  }
  .accordion .accordion-box .accordion-header span {
    right: 0px;
    top: 0px;
    color: #000;
    text-align: center;
    line-height: 25px;
    font-size: 1rem;
  }
  .accordion .accordion-box .accordion-body p {
    font-size: var(--step--1);
  }
}
