* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 14px;
}
@media only screen and (min-width: 1024px) {
  html {
    font-size: 1.125vw;
  }
}
@media only screen and (min-width: 1920px) {
  html {
    font-size: 0.833vw;
  }
}

body {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}

.container {
  width: 100%;
  max-width: 100% !important;
  padding: 0 1rem;
  margin: auto;
}
@media only screen and (min-width: 1024px) {
  .container {
    width: 87.848vw;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 83.333vw;
  }
}
@media only screen and (min-width: 1480px) {
  .container {
    width: 75vw;
  }
}
@media only screen and (min-width: 1920px) {
  .container {
    width: 62.5vw;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 1rem;
}

ul {
  list-style: none;
  margin: 0;
}

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

.btn__darkbtn {
  display: inline-flex;
  background: #21917b;
  padding: 0.75rem;
  border-radius: 0.625rem;
  text-align: center;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}
.btn__darkbtn:hover {
  background: #007db7;
}
.btn__downloadbtn {
  display: inline-flex;
  align-items: center;
  color: #007db7;
  transition: all 0.5s ease-in-out;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.btn__downloadbtn::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 0;
  bottom: 0;
  height: 0.0625rem;
  background: #333333;
  transition: all 0.5s ease-in-out;
  opacity: 0.8;
}
.btn__downloadbtn img {
  width: 2.5rem;
  height: 2.5rem;
}
.btn__downloadbtn:hover {
  gap: 1.25rem;
  opacity: 0.8;
  filter: brightness(0) invert(0);
}
.btn__downloadbtn:hover::before {
  width: calc(100% - 3.875rem);
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 3.75rem 0;
}
@media only screen and (max-width: 767px) {
  .section-padding {
    padding: 2.75rem 0;
  }
}

.section-padding-top {
  padding-top: 3.75rem;
}

.section-padding-botom {
  padding-bottom: 3.75rem;
}

.common-heading {
  font-size: 2.125rem;
}
.common-heading.with-border {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.common-heading.with-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(90deg, rgba(33, 145, 123, 0) 0%, #21917b 42.79%, rgba(33, 145, 123, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .common-heading {
    font-size: 1.875rem;
  }
  .common-heading.with-border {
    margin-bottom: 2.5rem;
  }
}

.sub-heading {
  font-size: 1.5rem;
  color: #007db7;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .sub-heading {
    font-size: 1.375rem;
    margin-top: 1rem;
  }
}

p {
  font-size: 1.125rem;
}
p strong {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}

.header {
  background: #ffffff;
  transition: all 0.5 ease-in-out;
  top: 0;
  position: sticky;
  width: 100%;
  z-index: 99;
}
.header__sticky {
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.15);
}
.header__sticky .header__logo-wrapper {
  opacity: 1;
}
.header__inner-box {
  min-height: 6.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header__menu-link {
  font-size: 1rem;
}
.header__logo-wrapper {
  display: inline-flex;
  align-items: center;
  max-width: 16rem;
  gap: 1rem;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.header__logo {
  max-width: 11rem;
}
.header__close, .header__toggle-btn {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .header__inner-box {
    min-height: 5.25rem;
  }
  .header__menu-wrapper {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    width: 100vw;
    max-width: 24rem;
    background: #21917b;
    transition: all 0.75s ease-in-out;
  }
  .header__menu-wrapper.active {
    right: 0;
  }
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
    row-gap: 0;
  }
  .header__menu li {
    width: 100%;
  }
  .header__menu .btn__darkbtn {
    margin: 2rem 1rem 1rem;
    background: #ffffff;
    color: #21917b;
  }
  .header__menu-link {
    padding: 1rem;
    color: #ffffff;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.25);
    display: flex;
    width: 100%;
  }
  .header__close, .header__toggle-btn {
    display: flex;
  }
  .header__toggle-btn {
    flex-direction: column;
    background: #21917b;
    padding: 0.625rem;
    width: 3rem;
    height: 3rem;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
  .header__toggle-btn .line {
    display: flex;
    width: 90%;
    height: 2px;
    background: #ffffff;
  }
  .header__close {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    background: #ffffff;
    color: #21917b;
    font-size: 2rem;
  }
}

.slider {
  position: relative;
  overflow: hidden;
  min-height: 39.5vw;
}
.slider__item {
  position: relative;
}
.slider__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slider__bg--sm {
  display: none;
}
.slider__img {
  width: 100%;
}
.slider__content-box {
  position: relative;
  z-index: 1;
}
.slider__content {
  min-height: 39.5vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 37rem;
}
.slider__content--center {
  margin: auto;
  text-align: center;
}
.slider__content--center .slider__title {
  text-shadow: 0.25rem 0.25rem 0.125rem #007db7;
}
.slider__content--light-theme .slider__title,
.slider__content--light-theme .slider__desc {
  color: #333333;
}
.slider__title {
  font-weight: 800;
  font-size: 3.375rem;
  color: #ffffff;
  letter-spacing: 0.125rem;
  text-transform: capitalize;
  line-height: 1.35;
}
.slider__desc {
  color: #ffffff;
  margin-top: 1.5rem;
  font-size: 1.25rem;
}
.slider__btn {
  margin-top: 3.5rem;
}
.slider__wrapper {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
}
.slider__wrapper::-webkit-scrollbar {
  display: none;
}
.slider__item {
  min-width: 100vw;
  background: #21917b;
  background: #ffffff;
  transition: transform 0.3s ease;
}
.slider__item.active {
  opacity: 1;
  box-shadow: 0;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #21917b;
  color: #ffffff;
  border: none;
  padding: 0.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  z-index: 9;
  margin-top: 0;
}
.slider__arrow--prev {
  left: 1rem;
  transform: translateY(-50%) scaleX(-1);
}
.slider__arrow--next {
  right: 1rem;
}
.slider__arrow:hover {
  background: #186758;
}
.slider__arrow img {
  max-height: 1.25rem;
}
@media only screen and (max-width: 1023px) {
  .slider {
    min-height: 50vw;
  }
  .slider__content {
    padding-left: 5rem;
    padding-right: 5rem;
    min-height: 50vw;
  }
  .slider__title {
    font-size: 2.375rem;
  }
  .slider__desc {
    font-size: 1rem;
  }
  .slider__arrow {
    width: 3.5rem;
    height: 3.5rem;
  }
  .slider__arrow img {
    max-height: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .slider__bg {
    height: 100vw;
    position: relative;
    display: flex;
  }
  .slider__bg--lg {
    display: none;
  }
  .slider__bg--sm {
    display: block;
  }
  .slider__content-box {
    padding: 1rem 0;
    background: #21917b;
  }
  .slider__content {
    padding: 0;
  }
  .slider__content--center {
    text-align: left;
  }
  .slider__content--light-theme .slider__title,
  .slider__content--light-theme .slider__desc {
    color: #ffffff;
  }
  .slider__title {
    font-size: 1.625rem;
    text-shadow: none !important;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1.35;
  }
  .slider__desc {
    margin-top: 1rem;
  }
  .slider__btn {
    margin-top: 1.5rem;
  }
  .slider__arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
  }
  .slider__arrow--prev {
    left: auto;
    right: 4.5rem;
  }
  .slider .btn__darkbtn {
    background: #ffffff;
    color: #21917b;
    font-weight: 600;
  }
}

.logolist {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.logolist__wrapper {
  overflow-x: auto;
  text-align: center;
}
.logolist__items {
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  height: -moz-max-content;
  height: max-content;
  flex-wrap: wrap;
}
.logolist__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 1.5rem;
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.15);
}
.logolist__item:nth-child(1) {
  flex: 1 1 30%;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.15);
}
.logolist__item:nth-child(2) {
  flex: 1 1 70%;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.15);
}
.logolist__item:nth-child(2) {
  border-right: 0;
}
.logolist__item:first-child {
  padding-left: 0;
}
.logolist__item:last-child {
  padding-right: 0;
  border-right: 0;
}
.logolist__item a {
  display: flex;
}
.logolist__item img {
  max-height: 4.375rem;
  max-width: 11.375rem;
}
.logolist__link {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  row-gap: 0.625rem;
}
.logolist__link span {
  font-weight: 600;
}
.logolist__logos {
  display: flex;
  gap: 1.5rem;
  min-height: 3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .logolist__item:nth-child(1), .logolist__item:nth-child(2) {
    flex: 1 1 100%;
  }
  .logolist__item:nth-child(1) {
    border-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .logolist__item {
    flex: 1 1 50%;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.15);
  }
  .logolist__item:nth-last-child(1), .logolist__item:nth-last-child(2) {
    border-bottom: 0;
  }
  .logolist__item:nth-child(even) {
    border-right: 0;
  }
  .logolist__item img {
    max-width: 8rem;
    max-height: 2.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .logolist__item {
    flex: 1 1 100%;
  }
  .logolist__item:nth-child(1) {
    padding-left: 1.5rem;
  }
  .logolist__item:nth-last-child(2) {
    border-bottom: 0;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.15);
  }
  .logolist__item:nth-child(odd) {
    border-right: 0;
  }
  .logolist__item img {
    max-width: 12rem;
    max-height: 4.875rem;
  }
  .logolist__logos {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.about {
  position: relative;
}
.about__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  opacity: 0.8;
  transform: scaleX(-1);
  max-height: 12rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.about__inner-wraaper {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.about__left-section {
  width: 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.about__right-section {
  width: 62%;
  border-radius: 2rem;
}
.about__img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about__img-wrapper img {
  transition: all 0.25s ease-in-out;
  transform: scale(1);
}
.about__img-wrapper--sm {
  margin-top: -6rem;
  margin-right: 3rem;
  border: 0.5rem solid #ffffff;
}
.about__img-wrapper:hover img {
  transform: scale(1.05);
}
.about__img-shape {
  position: absolute;
  bottom: 14%;
  right: 8%;
}
.about__img-shape img {
  max-width: 8rem;
}
.about .sub-heading {
  margin-bottom: 2rem;
}
.about p {
  margin-top: 1.25rem;
}
.about__btn-wrapper {
  margin-top: 2.5rem;
}
.about__new {
  background: #efeded;
}
.about__new::before {
  display: none;
}
.about__new__inner-wrapper {
  align-items: center;
}
.about__new .about__left-section {
  width: 30%;
  height: 22.5rem;
  overflow: hidden;
  border-radius: 2rem;
}
.about__new .about__left-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.about__new .about__left-section:hover img {
  transform: scale(1.05);
}
.about__new .about__right-section {
  width: 62%;
}
@media only screen and (max-width: 1023px) {
  .about__inner-wrapper {
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
  .about__right-section {
    width: 56%;
  }
}
@media only screen and (max-width: 767px) {
  .about__inner-wraaper {
    flex-wrap: wrap;
    row-gap: 2rem;
  }
  .about__left-section, .about__right-section {
    width: 100%;
  }
  .about__img-wrapper--sm {
    margin-top: -6rem;
    margin-right: 3rem;
    border: 0.5rem solid #ffffff;
    width: 60%;
  }
  .about__img-shape {
    bottom: 6%;
    right: 7%;
  }
  .about .sub-heading {
    margin-bottom: 1rem;
  }
  .about__btn-wrapper {
    margin-top: 1.5rem;
  }
  .about__bg {
    display: none;
  }
}

.usecase {
  background: #007db7;
  position: relative;
}
.usecase__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.usecase .common-heading {
  color: #ffffff;
}
.usecase .common-heading::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 42.79%, rgba(255, 255, 255, 0) 100%);
}
.usecase__inner-wrapper {
  position: relative;
  z-index: 11;
}
.usecase__btns {
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.usecase__btn {
  padding: 1rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #ffffff;
  background: transparent;
  color: #ffffff;
  line-height: 1.65;
  font-size: 0.875rem;
  font-weight: 500;
  flex: 1 1 100%;
  transition: all 0.25s ease-in-out;
}
.usecase__btn.active {
  background: #21917b;
}
.usecase__btn:hover {
  background: #21917b;
  cursor: pointer;
}
.usecase__btn-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.usecase .btn__downloadbtn {
  filter: brightness(0) invert(1);
}
@media only screen and (max-width: 1023px) {
  .usecase__btn-wrapper {
    margin-top: 3rem;
  }
  .usecase__btns {
    margin-bottom: 1.5rem;
  }
  .usecase__btn {
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 1rem 0.75rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .usecase__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.accordion {
  background: transparent;
  border-radius: 0.25rem;
  overflow: hidden;
  display: none;
}
.accordion.active {
  display: block;
}
.accordion__heading {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.accordion__heading .img-box {
  width: 9.25rem;
  height: 4rem;
  padding: 0 0.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.accordion__section-wrapper {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.accordion__left-section {
  width: 70%;
}
.accordion__right-section {
  width: 28%;
  display: flex;
  flex-direction: column;
}
.accordion__right-section .image-box {
  border-radius: 0.875rem;
  overflow: hidden;
  display: flex;
}
.accordion__right-section .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.accordion .accordion-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
.accordion .accordion-item .accordion-header {
  width: 100%;
  background: #ffffff;
  color: #333333;
  padding: 1.25rem 1rem;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: all 0.3s;
}
.accordion .accordion-item .accordion-header.active {
  background: #21917b;
  color: #ffffff;
}
.accordion .accordion-item .accordion-header .arrow {
  font-size: 1.125rem;
}
.accordion .accordion-item .accordion-content {
  display: none;
  background: #ffffff;
  color: #333333;
  padding: 1rem;
  text-align: left;
}
.accordion .accordion-item .accordion-content.open {
  display: block;
}
.accordion .accordion-item .accordion-content ul {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
.accordion .accordion-item .accordion-content li {
  position: relative;
  padding-left: 1.25rem;
}
.accordion .accordion-item .accordion-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  background: #ffffff;
  border: 0.25rem solid #21917b;
  border-radius: 50%;
}
@media only screen and (max-width: 1023px) {
  .accordion .accordion-item {
    margin-bottom: 0.5rem;
  }
  .accordion .accordion-item .accordion-header {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .accordion .accordion-item .accordion-header {
    font-size: 1rem;
  }
  .accordion__section-wrapper {
    flex-direction: column;
    row-gap: 2rem;
  }
  .accordion__left-section, .accordion__right-section {
    width: 100%;
  }
}

.eligibility__items {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1%;
       column-gap: 1%;
  row-gap: 1rem;
}
.eligibility__item {
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #21917b;
  transition: all 0.25s ease-in-out;
  flex: 1 1 18%;
  position: relative;
  min-height: 18rem;
  overflow: hidden;
}
.eligibility__item:nth-child(even) {
  background: #007db7;
}
.eligibility__item p {
  position: absolute;
  left: 0%;
  right: 0;
  top: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  display: flex;
  align-items: center;
  padding: 1rem;
  margin-top: 0;
  color: #ffffff;
  font-size: 0.875rem;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.eligibility__item:hover p {
  top: 0;
}
.eligibility__icon-box {
  width: 4rem;
  height: 4rem;
}
.eligibility__icon-box img {
  filter: brightness(0) invert(1);
  transition: all 0.25s ease-in-out;
}
.eligibility__title {
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 0.875rem;
  text-align: center;
  transition: all 0.25s ease-in-out;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .eligibility__item {
    flex: 1 1 32%;
  }
}
@media only screen and (max-width: 767px) {
  .eligibility__item {
    height: -moz-max-content;
    height: max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    flex: 1 1 100%;
    padding: 2rem 0.75rem;
  }
  .eligibility__item p {
    position: static;
    background: transparent;
    color: #ffffff;
    padding: 0;
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
}

.rewards {
  background: #efeded;
}
.rewards__inner-wrapper {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: center;
}
.rewards__left-section {
  width: 40%;
}
.rewards__right-section {
  width: 56%;
}
.rewards__img-box {
  width: 100%;
  max-width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
}
.rewards__img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rewards .sub-heading {
  margin-top: 0;
}
.rewards__items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.25rem;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.rewards__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  flex: 1 1 32%;
  gap: 1rem;
  font-size: 1rem;
  padding: 2rem 1rem;
  border: 0.0625rem dashed rgba(0, 0, 0, 0.5);
  background: #ffffff;
  border-radius: 0.5rem;
}
.rewards__icon-box {
  width: 2.875rem;
  height: 2.875rem;
  max-height: 2.875rem;
  max-width: 2.875rem;
  display: flex;
  align-items: center;
}
.rewards__icon-box img {
  height: 2.875rem;
}
.rewards__btn-wrapper {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 1023px) {
  .rewards__items {
    row-gap: 0.5rem;
  }
  .rewards__item {
    flex: 1 1 100%;
  }
}

.evalution {
  background: #21917b;
}
.evalution .common-heading {
  color: #ffffff;
}
.evalution .common-heading::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 42.79%, rgba(255, 255, 255, 0) 100%);
}
.evalution__inner-wrapper {
  display: flex;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
.evalution .tabs {
  width: 36%;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
.evalution .tab {
  padding: 1.25rem 2rem;
  border: 0;
  font-size: 1.375rem;
  font-weight: 500;
  background: #21917b;
  color: #ffffff;
  border: 0.0625rem solid #ffffff;
  border-radius: 0.5rem;
  cursor: pointer;
}
.evalution .tab.active {
  background: #ffffff;
  color: #21917b;
}
.evalution .criteria {
  display: none;
}
.evalution .criteria.active {
  display: block;
}
.evalution .criteria-content {
  width: 62%;
  padding: 2rem;
  background: #ffffff;
  border-radius: 0.5rem;
}
.evalution .inner-heading {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  max-width: 80%;
}
.evalution ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1%;
       column-gap: 1%;
  row-gap: 0.5rem;
}
.evalution li {
  padding-left: 0.75rem;
  position: relative;
  width: 49%;
  font-size: 0.875rem;
}
.evalution li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #21917b;
}
.evalution .inner-accordion {
  margin-bottom: 0.5rem;
}
.evalution .inner-accordion__header {
  margin: 0;
  background: #21917b;
  border: 0;
  color: #ffffff;
  font-size: 1rem;
  padding: 1rem 2.5rem 1rem 1rem;
  width: 100%;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.evalution .inner-accordion__header::after {
  content: "+";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-max-content;
  height: max-content;
  right: 1rem;
  font-size: 1.25rem;
  color: #ffffff;
}
.evalution .inner-accordion__content {
  max-height: 0;
  overflow: hidden;
  background: #efeded;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.evalution .inner-accordion__content ul {
  margin: 1rem;
}
@media only screen and (max-width: 1023px) {
  .evalution .tab {
    padding: 1rem;
    font-size: 1.125rem;
  }
  .evalution .criteria-content {
    padding: 1rem;
  }
  .evalution .inner-heading {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .evalution .tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .evalution .tab {
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .evalution li {
    width: 100%;
  }
  .evalution .criteria-content {
    padding: 1rem;
  }
  .evalution__inner-wrapper {
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .evalution .criteria-content {
    width: 100%;
  }
  .evalution .inner-heading {
    font-size: 1.25rem;
  }
}

.timelines__btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.timelines__img {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.timelines p {
  text-align: center;
  margin-top: 4rem;
  font-weight: 500;
}
.timelines__sm-img {
  display: none;
  max-height: 80vh;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .timelines__lg-img {
    display: none;
  }
  .timelines__sm-img {
    display: flex;
  }
}

.footer {
  background: #333333;
  color: #ffffff;
}
.footer__top-wrapper {
  padding: 2.75rem 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-area: 1rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
}
.footer__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  opacity: 0.6;
}
.footer__heading {
  font-size: 2rem;
  line-height: normal;
}
.footer__copyright {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0.5;
}
.footer__text {
  font-size: 1rem;
}
.footer__link {
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .footer__heading {
    font-size: 2rem;
  }
  .footer__info {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__top-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2.75rem 0 1.5rem;
  }
  .footer__heading {
    font-size: 1.5rem;
  }
  .footer__info {
    font-size: 1.25rem;
  }
  .footer__copyright {
    flex-direction: column;
  }
}

.popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}
.popup.hide {
  display: none;
}
.popup__inner-wrapper {
  background: #ffffff;
  border-radius: 0.5rem;
  border: 0.25rem solid #ffffff;
  padding: 1.5rem 3rem;
  position: relative;
  text-align: center;
}
.popup__close {
  position: absolute;
  width: 2rem;
  height: 2rem;
  right: -1rem;
  top: -1rem;
  background: #21917b;
  color: #ffffff;
  font-size: 1.375rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.popup__heading {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.popup__sub-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.popup__desc {
  font-size: 1.25rem;
  font-weight: 500;
  color: #21917b;
}
@media only screen and (max-width: 1023px) {
  .popup__inner-wrapper {
    max-width: 90%;
  }
}

.informalwebinar {
  background: #efeded;
}
.informalwebinar__webinarlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1.25rem;
  -moz-column-gap: 2%;
  column-gap: 2%;
}
.informalwebinar__item {
  width: 31%;
}
.informalwebinar__video-list {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.informalwebinar__player {
  width: 75%;
}
.informalwebinar__videolink button {
  padding: 0.5rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 500;
  width: 100%;
  border: 0.0625rem solid #21917b;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #21917b;
  background: #ffffff;
}
.informalwebinar__videolink button.active {
  background: #21917b;
  color: #ffffff;
}
.informalwebinar__videolink:hover button {
  background: #21917b;
  color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .informalwebinar__item {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .informalwebinar__item {
    width: 100%;
  }
  .informalwebinar__webinarlist {
    flex-wrap: wrap;
  }
  .informalwebinar__video-list {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }
  .informalwebinar__videolink {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .informalwebinar__player {
    width: 100%;
  }
}

.SecJuryMembers {
  background-color: #efeded;
}
.SecJuryMembers .contentArea .JuryItemlist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.0625rem;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem {
  width: 100%;
  height: 100%;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamImg {
  position: relative;
  width: 100%;
  max-width: 12.5rem;
  height: 100%;
  max-height: 12.5rem;
  border: 0.4rem solid #21917b;
  border-radius: 100%;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamImg a {
  position: absolute;
  bottom: 8%;
  right: 25%;
  width: 1.875rem;
  height: 1.875rem;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamImg a img {
  width: 100%;
  height: 100%;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes {
  padding: 0 0.9375rem;
  min-height: 6.25rem;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes .h2 {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #21917b;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes p {
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: #000;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes p span {
  font-weight: 800;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes p::-webkit-scrollbar-thumb {
  background-color: #21917b;
  border-radius: 0.375rem;
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes p::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.SecJuryMembers .contentArea .JuryItemlist .JuryItem .teamDes p::-webkit-scrollbar {
  width: 0.3125rem;
}/*# sourceMappingURL=style.css.map */