:root {
  --clr-blue: #A33A17;
  --clr-blue-hex: #A33A17;
  --clr-light-blue: #0A0A23;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-title: #0d0d0d;
  --clr-body: #262626;
  --clr-blue-bg: #fff;
  --border-light-grey: 1px solid rgba(0, 0, 0, 0.08);
  --gradient-blue: linear-gradient(to right,
      var(--clr-blue),
      var(--clr-light-blue));
}

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  overflow-x: hidden;
}

body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  min-height: 100vh;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

p {
  padding: 0px 4px;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  :after,
  :before {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --font-title: "Readex Pro", sans-serif;
  --font-body: "Inter", sans-serif;
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  src: local("Inter Medium"),
    url(../../assets/fonts/Inter-500.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Readex Pro;
  font-style: normal;
  font-weight: 500;
  src: local("Readex Pro Medium"),
    url(../../assets/fonts/readex-500.woff2) format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Readex Pro;
  font-style: normal;
  font-weight: 700;
  src: local("Readex Pro Bold"),
    url(../../assets/fonts/readex-700.woff2) format("woff2");
}

body {
  color: var(--clr-body);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--clr-title);
  font-family: var(--font-title);
}

.section-header {
  margin-bottom: 0.9375rem;
  text-align: center;
}

.section-header .section-header__title {
  color: var(--clr-blue);
  font-size: 1.875rem;
  margin-bottom: 0.625rem;
}

@media (min-width: 992px) {
  .section-header .section-header__title {
    font-size: 2.5rem;
  }
}

.section-header .section-header__description {
  margin: 0 auto;
  max-width: 40.625rem;
}

h3 {
  font-size: 1.25rem;
}

:root {
  --max-width: 1200px;
}

section {
  padding: 1rem 0;
}

.container {
  margin: 0 auto;
  max-width: min(100% - 1rem, var(--max-width));
}

.button {
  border: none;
  background-image: var(--gradient-blue);
  border-radius: 1.5rem 0.25rem 0.25rem 0.25rem;
  color: var(--clr-white);
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 2rem !important;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.button:hover {
  border-radius: 0.25rem;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.hero {
  padding: 0;
}

.swiper .bx {
  color: #fff;
  font-size: 30px;
}

.slide-image {
  width: 100%;
}

.mySwiperDesktop {
  display: none;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .mySwiperDesktop {
    display: block;
  }

  .mySwiperMobile {
    display: none;
    border-radius: 1rem;
  }
}

.header {
  background-color: #fff;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  padding-block: 0.3125rem;
  z-index: 111;
}

@media (min-width: 768px) {
  .header {
    padding-block: 0.625rem;
  }
}

.header-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.header__logo__img {
  /* max-height: 5.5rem; */
  height: 50px;
}

@media (min-width: 768px) {
  .header__logo__img {
    height: 60px;
    ;
  }
}

.nav__list {
  display: none;
  font-family: var(--font-title);
  gap: 1.5625rem;
}

@media (min-width: 768px) {
  .nav__list {
    display: flex;
  }
}

.nav__link {
  font-size: 1.125rem;
  transition: all 0.25s ease-in-out;
}

.nav__link:hover {
  color: var(--clr-blue);
}

.hamburger {
  cursor: pointer;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.nav--active {
  background-color: hsla(0, 0%, 100%, 0.95);
  inset: 0;
  padding: 0.625rem;
  position: fixed;
  text-align: center;
  z-index: 11;
}

.nav--active .nav__list {
  display: flex;
  flex-direction: column;
}

.nav--active .mainNavList {
  width: 100%;
  justify-content: center;
  padding-bottom: 20rem;
}

.nav--active .hamburger {
  display: block;
  text-align: right;
}

@media (min-width: 768px) {
  .nav--active {
    position: relative;
  }

  .nav--active .nav__list {
    flex-direction: row;
  }

  .nav--active .hamburger {
    display: none;
  }
}

.easy-card-container {
  display: grid;
  gap: 1.875rem;
  margin-top: 3.125rem;
}

@media (min-width: 768px) {
  .easy-card-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .easy-card-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.easy__card {
  align-items: center;
  background-color: var(--clr-blue-bg);
  border: var(--border-light-grey);
  border-radius: 0.3125rem;
  display: grid;
  grid-template-columns: 1fr 3fr;
  justify-content: center;
  padding: 1.875rem 0.625rem;
  transition: all 0.25s ease-in-out;
}


.easy__card:hover {
  background-image: var(--gradient-blue);
  /* Assuming you have defined --gradient-blue elsewhere */
  border-radius: 3.125rem 0.625rem 0.625rem 0.625rem;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.1);
  color: white;

}

:root {
  --gradient-blue: linear-gradient(to right, #A33A17, #0A0A23);
  /* Adjust the gradient colors as needed */
}

.easy__card__image {
  justify-self: center;
  text-align: center;
  width: 60%;
}

.easy__card__title {
  margin-bottom: 0.625rem;
}



.achievements {
  background-color: var(--clr-blue-bg);
}

.achievements-container {
  display: grid;
  gap: 1.875rem;
  margin-top: 3.125rem;
  text-align: center;
}

@media (min-width: 576px) {
  .achievements-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .achievements-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.achievement-card {
  background-color: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.625rem;
  padding: 3.125rem 1.25rem;
  transition: all 0.25s ease-in-out;
}

.achievement-card:hover {
  background-image: var(--gradient-blue);
  border-radius: 3.125rem 0.625rem 0.625rem 0.625rem;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.achievement-card:hover .achievement-card__name,
.achievement-card:hover .achievement-card__number {
  color: var(--clr-white);
}

.achievement-card:hover .achievement-card__image {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
  transform: scale(1.1);
}

.achievement-card:hover h3 {
  color: var(--clr-white);
}

.achievement-card__image {
  margin-bottom: 0.9375rem;
  margin-inline: auto;
  transition: all 0.25s ease-in-out;
  width: 50%;
}

.achievement-card__number {
  margin-bottom: 0.625rem;
}

.achievement-card__name {
  text-transform: uppercase;
}

.standard-card-container {
  margin-top: 3.125rem;
}

.standard-card {
  border: var(--border-light-grey);
  border-radius: 0.3125rem;
  overflow: hidden;
  position: relative;
}

.standard-card:after,
.standard-card:before {
  background-image: url(../../assets/img/standard/blob.svg);
  content: "";
  height: 50%;
  opacity: 0;
  position: absolute;
  transition: all 0.25s ease-in-out;
  width: 50%;
}

.standard-card:after {
  left: -20%;
  top: -20%;
}

.standard-card:before {
  bottom: -25%;
  right: -25%;
}

.standard-card:hover {
  border-radius: 1.875rem 0.3125rem 0.3125rem 0.3125rem;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
}

.standard-card:hover:after,
.standard-card:hover:before {
  opacity: 1;
}

.standard-card:hover .standard-card__img img {
  transform: scale(1.1);
}

.standard-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.standard-card__img img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.25s ease-in-out;
  width: 100%;
}

.standard-card__content {
  display: grid;
  gap: 0.9375rem;
  justify-content: center;
  justify-items: center;
  padding: 0.9375rem 0.625rem;
  text-align: center;
}

.learning {
  background-color: var(--clr-blue-bg);
}

.learning-card-container {
  display: grid;
  gap: 1.875rem;
  margin-top: 3.125rem;
}

@media (min-width: 768px) {
  .learning-card-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .learning-card-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.learning-card {
  background-color: #fafafa;
  border: var(--border-light-grey);
  border-radius: 0.3125rem;
  display: grid;
  gap: 0.625rem;
  justify-items: center;
  overflow: hidden;
  padding: 1.875rem 0.625rem;
  position: relative;
  text-align: center;
}

.learning-card:after,
.learning-card:before {
  background-image: url(../../assets/img/standard/blob.svg);
  background-repeat: no-repeat;
  content: "";
  height: 50%;
  opacity: 0;
  position: absolute;
  transition: all 0.25s ease-in-out;
  width: 50%;
}

.learning-card:after {
  left: -15%;
  top: -15%;
}

.learning-card:before {
  bottom: -30%;
  right: -30%;
}

.learning-card:hover {
  background-color: var(--clr-white);
  border-radius: 1.875rem 0.3125rem 0.3125rem 0.3125rem;
  box-shadow: 0 5px 10px 5px rgba(0, 0, 0, 0.1);
}

.learning-card:hover:after,
.learning-card:hover:before {
  opacity: 1;
}

.learning-card__img {
  margin-bottom: 0.9375rem;
  width: 50%;
}

.learning-card__title--number {
  color: #888;
}

.application-container {
  display: grid;
  gap: 3.125rem;
  justify-content: center;
  margin-top: 3.125rem;
}

@media (min-width: 768px) {
  .application-container {
    align-items: stretch;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 2fr 1fr 2fr;
  }
}

@media (min-width: 1200px) {
  .application-container {
    gap: 3.125rem;
    grid-template-columns: 2fr 1fr 2fr;
  }
}

@media (min-width: 768px) {
  .mockup-image {
    position: relative;
  }

  .mockup-image img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.features {
  align-items: stretch;
  display: grid;
  gap: 1.25rem;
  justify-items: stretch;
}

@media (min-width: 768px) {
  .features--left {
    justify-content: flex-start;
  }

  .features--right {
    justify-content: end;
  }
}

.feature-card {
  height: 90px;
  align-items: center;
  background-color: var(--clr-blue-bg);
  border: var(--border-light-grey);
  /* border-radius: 0.3125rem 0.3125rem 0.3125rem 0.3125rem; */
  border-radius: 30px;
  display: flex;
  gap: 0.9375rem;
  justify-content: flex-start;
  padding: 1.25rem;
  transition: all 0.25s ease-in-out;
}

.feature-card:hover {
  background-image: var(--gradient-blue);
  /* border-radius: 1.25rem 0.3125rem 0.3125rem 0.3125rem; */
  border-radius: 30px;
}

.feature-card:hover,
.feature-card:hover h3 {
  color: var(--clr-white);
}

.feature-card__image {
  max-width: 3.75rem;
}

.feature-card__image img {
  margin-inline: auto;
}

.faq-container {
  margin-top: 3.125rem;
}

@media (min-width: 992px) {
  .faq-container {
    display: grid;
    gap: 3.125rem;
    grid-template-columns: 1fr 1fr;
  }
}

.faq-images {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(10, 1fr);
}

@media (min-width: 768px) {
  .faq-images {
    gap: 1.25rem;
  }
}

.faq-images__img {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease-in-out;
}

.faq-images__img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.faq-images__img:after,
.faq-images__img:before {
  background-color: var(--clr-blue);
  border: 10px solid var(--clr-light-blue);
  border-radius: 1000px;
  content: " ";
  height: 100px;
  position: absolute;
  transition: all 0.25s ease-in-out;
  width: 100px;
  z-index: 11;
}

.faq-images__img:after {
  right: -50px;
  top: -50px;
}

.faq-images__img:before {
  bottom: -50px;
  left: -50px;
}

.faq-images__img:hover {
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
}

.faq-images__img:hover:after,
.faq-images__img:hover:before {
  transform: scale(1.2);
}

@media (min-width: 768px) {

  .faq-images__img:after,
  .faq-images__img:before {
    height: 200px;
    width: 200px;
  }

  .faq-images__img:after {
    right: -100px;
    top: -100px;
  }

  .faq-images__img:before {
    bottom: -100px;
    left: -100px;
  }
}

.faq-images__img:first-child {
  grid-row: 1/10;
}

.faq-images__img:nth-child(2) {
  grid-row: 2/11;
}

.faqs {
  align-content: center;
  align-items: start;
  display: grid;
  gap: 0.625rem;
  margin-top: 1.875rem;
}

@media (min-width: 992px) {
  .faqs {
    margin-top: 0;
  }
}

.faq-card__question {
  background-color: var(--clr-black);
  border-radius: 1.25rem 0.3125rem 0 0;
  color: var(--clr-white);
  cursor: pointer;
  font-weight: 500;
  padding: 0.625rem 1.875rem 0.625rem 1.25rem;
  position: relative;
  transition: all 0.25s ease-in-out;
}

@media (min-width: 576px) {
  .faq-card__question {
    padding: 1.25rem;
  }
}

.faq-card__question:after {
  content: "+";
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-card__question--active {
  background-image: var(--gradient-blue);
  transition: all 0.25s ease-in-out;
}

.faq-card__question--active:after {
  content: "-";
}

.faq-card__answer {
  background-color: var(--clr-blue-bg);
  margin-top: -20px;
  max-height: 0;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  transition: all 0.25s ease-in-out;
}

.faq-card__answer--active {
  margin-top: 0;
  max-height: 1000px;
  transition: all 0.25s ease-in-out;
}

.footer hr {
  opacity: 0.4;
}

.footer-top {
  background-color: var(--clr-blue-bg);
  padding-block: 3.125rem;
}

.footer-top-container {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .footer-top-container {
    align-items: center;
    display: flex;
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
}

.footer-top__title {
  color: var(--clr-blue);
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .footer-top__title {
    font-size: 2.5rem;
  }
}

.footer-top__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.social__icon {
  aspect-ratio: 1/1;
  background-image: var(--gradient-blue);
  border-radius: 100px;
  color: var(--clr-white);
  font-size: 1.5625rem;
  padding: 0.625rem;
}

.footer-mid {
  padding-block: 1.875rem;
}

.footer-mid-container {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .footer-mid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__list__title {
  color: var(--clr-blue);
  margin-bottom: 0.625rem;
}

.footer__list li {
  margin-bottom: 0.3125rem;
}

.footer__list li i {
  margin-right: 0.3125rem;
}

.footer-copyright,
.footer__link:hover {
  color: var(--clr-blue);
}

.footer-copyright {
  background-color: var(--clr-blue-bg);
  font-family: var(--font-title);
  font-weight: 700;
  text-align: center;
}

.footer-copyright p {
  padding: 1rem;
}

.footer-copyright a {
  padding: 0.5rem;
  color: #f5fcff;
}

.PNInstitute,
.downloadvoucher,
.back-to-top {
  background-image: var(--gradient-blue);
  border: none;
  border-radius: 5px;
  bottom: 0.9375rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  position: fixed;
  font-size: 1.25rem;
  transition: all 0.25s ease-in-out;
  padding: 0.6rem 0.7rem;
  z-index: 1000;
}

.back-to-top {
  aspect-ratio: 1/1;
  font-weight: 700;
  opacity: 0;
  right: 0.9375rem;
}

.downloadvoucher {
  right: 4rem;

}

.PNInstitute {
  right: 18rem;
  text-decoration: none;
}

.registration {
  background-color: var(--clr-blue-bg);
  /* background: url(../../assets/img/form/VISH9098.JPG), rgba(0, 0, 0, 0.5); */
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: darken;

}

.form {
  background-color: var(--clr-white);
  border-radius: 1.875rem 0.625rem 0.625rem 0.625rem;
  color: var(--clr-black);
  display: grid;
  margin-inline: auto;
  /* margin-top: 3.125rem; */
  max-width: 31.25rem;
  padding: 1.25rem;
}

#Parth-sign {
  height: 5rem;
  width: 7rem;
}

@media (min-width: 768px) {
  .form {
    max-width: 30.5rem;
    padding: 1.875rem 2.375rem;
  }
}

.form button {
  background-color: var(--clr-blue);
  background-image: none;
  border: none;
  color: var(--clr-white);
  cursor: pointer;
  justify-self: center;
  margin-top: 0.5rem;
}

label {
  margin-bottom: 0.3125rem;
  margin-top: 0.5rem;
}

input,
select,
textarea {
  border: var(--border-light-grey);
  border-radius: 0.625rem 0.125rem 0.125rem 0.125rem;
  padding: 0.4rem 1rem;
  margin: 0.8rem 0;
}

.page-header {
  background-attachment: fixed;
  background-color: var(--clr-body);
  background-image: url(../../assets/img/page-header/page-intro.webp);
  background-position: 50%;
  background-size: cover;
  height: clamp(300px, 60vh, 500px);
}

.page-header-container {
  align-items: end;
  display: grid;
  height: 100%;
  padding-bottom: 1.875rem;
}

.page-header__title {
  color: var(--clr-blue-bg);
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}

.page-header__title:after {
  background-image: var(--gradient-blue);
  border-radius: 3px;
  bottom: -20px;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.map {
  padding: 0;
}

.map iframe {
  border: none;
  height: clamp(300px, 80vh, 800px);
  width: 100%;
}

.info {
  background-color: var(--clr-blue-bg);
}

.info-container {
  display: grid;
  gap: 1.875rem;
  margin-top: 3.125rem;
}

@media (min-width: 768px) {
  .info-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .info-container {
    gap: 3.125rem;
  }
}

.info__left>* {
  margin-bottom: 0.625rem;
}

.info__left>h3 {
  color: var(--clr-blue);
  margin-top: 0.9375rem;
}

.info__detail {
  margin-bottom: 0.625rem;
}

.info__detail i {
  font-size: 1.0625rem;
  margin-right: 0.3125rem;
  vertical-align: middle;
}

.info__detail strong {
  letter-spacing: 1px;
  margin-right: 0.625rem;
}

.info__social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.info__social i {
  background-image: var(--gradient-blue);
  border-radius: 1000vmax;
  color: var(--clr-white);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.625rem;
}

.touch {
  background: url(../../assets/img/form/VISH9098.JPG), rgba(0, 0, 0, 0.5);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: darken;
}

.touch-form {
  width: 50%;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin-inline: auto;
  margin-top: 2.5rem;
  transition: all 0.3s ease-in-out;
  width: clamp(300px, 50vw, 500px);
  background-color: var(--clr-white);
  padding: 2.5rem;
  border-radius: 1.875rem 0.625rem 0.625rem 0.625rem;
}

.touch-form input,
.touch-form textarea {
  background-color: var(--clr-blue-bg);
  border-radius: 20px 5px 5px 5px;
  padding: 0.9375rem;
}

/* .touch-form input:focus,
.touch-form input:hover,
.touch-form textarea:focus,
.touch-form textarea:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  outline: none;
} */

.touch-form .button {
  border: none;
  cursor: pointer;
  outline: none;
}

.srcell {
  background-color: #fafafa;
}

.srcell .secell__container {
  padding: 2em 0
}

.srcell .secell__container .section__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1em;
  color: #A33A17;
}

@media (min-width:40em) {
  .srcell .secell__container .srcell__text {
    align-items: center;
    color: #212121;
    display: grid;
    gap: 3em;
    grid-template-columns: 60% 40%;
    justify-content: center;
    line-height: 2
  }
}

.srcell .secell__container .srcell__text .srcell__image {
  border-radius: 10px
}

.srcell .secell__container .srcell__text .about__tag {
  color: #A33A17;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1em
}

.srcell .secell__container .srcell__text .srcell__text-text {
  margin-bottom: 2em
}

@media (min-width:40em) {
  .srcell .secell__container .srcell__text .srcell__text-text {
    margin-bottom: 0
  }
}

.srcell .secell__container .srcell__text .srcell__text-text .first-word {
  color: var(--blue);
  display: inline-block;
  font-size: 2rem;
  font-weight: 600
}

.srcell .secell__container .srcell__text .srcell__text-text .button {
  margin-top: 1em;
  width: 50%
}


.explore-container {
  display: grid;
  gap: 1.875rem;
}

@media (min-width: 992px) {
  .explore-container {
    grid-template-columns: 2fr 3fr;
  }
}

.explore__tagline {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}

.explore__title {
  color: var(--clr-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
}

.explore__description {
  /* line-height: 2; */
  margin-bottom: 1rem;
  color: #545353;
}

.explore__description p {
  /* line-height: 2; */
  text-align: justify;
}

.explore__description>h3 {
  margin-bottom: 1rem;
}

.explore__sign {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}

.sign__post p:first-child {
  font-weight: 700;
}

.explore__cards {
  display: grid;
  gap: 1.875rem;
}

@media (min-width: 768px) {
  .explore__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.explore__card {
  border-radius: 30px 5px 5px 5px;
  overflow: hidden;
}

.explore__card__image img {
  vertical-align: bottom;
  width: 100%;
}

.explore__card__content {
  background-color: var(--clr-blue-bg);
  padding: 1.875rem;
  text-align: center;
}

.explore__card__title {
  color: var(--clr-blue);
  margin-bottom: 0.9375rem;
}

.process {
  background-image: url(../../assets/img/process/process-bg.jpg);
  background-position: 50%;
  background-size: cover;
  padding-block: 12.5rem;
}

.process .section-header__title {
  color: var(--clr-white);
}

.process-container {
  counter-reset: process;
  margin-top: 3.125rem;
}

.process-card {
  counter-increment: process;
  text-align: center;
}

.process-card__image {
  padding-block: 0.625rem;
}

.process-card__image img {
  background-color: var(--clr-blue-bg);
  border-radius: 1000px;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  transition: all 0.3s ease-in-out;
  vertical-align: bottom;
  width: 30%;
}

.process-card__title {
  color: var(--clr-blue-bg);
  margin-bottom: 0.9375rem;
}

.process-card__title:before {
  color: var(--clr-white);
  content: counter(process) ". ";
  display: inline-block;
  margin-right: 0.625rem;
}

.process-card__description {
  color: var(--clr-white);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active .process-card__image img {
  outline: 10px solid var(--clr-blue);
}

.swiper-slide-active .process-card__description {
  opacity: 0.8;
}

.good {
  margin: 10px 0;
  padding: 40px;
}

.good-container {
  display: grid;
  gap: 3.125rem;
}

@media (min-width: 768px) {
  .good-container {
    grid-template-columns: 1fr 1fr;
  }
}

.good-left {
  max-width: 50ch;
}

.good-left> :not(:last-child) {
  margin-bottom: 1.25rem;
}

.good__title {
  color: var(--clr-blue);
  font-size: 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .good__title {
    text-align: left;
  }
}

.good__images {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.good__images img {
  flex-shrink: 1;
  max-width: 22%;
}

.progress {
  background-color: #bbb;
  position: relative;
  width: 100%;
}

.progress,
.progress:after {
  border-radius: 1000px;
  height: 10px;
}

.progress:after {
  background-image: var(--gradient-blue);
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.3s ease-in-out;
  z-index: 111;
}

.progress-1:after {
  width: 80%;
}

.progress-2:after {
  width: 95%;
}

.progress-3:after {
  width: 75%;
}

.progress-4:after {
  width: 85%;
}

.progress-5:after {
  width: 90%;
}

.progress__label {
  display: flex;
  justify-content: space-between;
  margin-block: 0.3125rem 1.25rem;
  padding-inline: 0.3125rem;
}

.testimonials-container {
  margin-top: 4.375rem;
}

.testimonialSwiper {
  padding-bottom: 3.125rem;
}

.testimonialSwiper .swiper-pagination {
  margin-top: 3.125rem;
}

.testimonialSwiper .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 100px;
  width: 3.125rem;
}

.testimony {
  background-color: var(--clr-blue-bg);
  border-radius: 5px;
  padding-block: 3.125rem;
  text-align: center;
}

.testimony__image img {
  border-radius: 1000px;
  margin-bottom: 1.25rem;
}

.imgTexNo {
  max-width: 50%;
}

.imgTexNo2 {
  max-width: 40%;
}

.testimony__content {
  padding-inline: 1.875rem;
}

.testimony__content> :not(:last-child) {
  margin-bottom: 0.625rem;
}

.swiper-slide-active .testimony {
  background-image: url(../../assets/img/form/form_bg.png);
  background-position: 0 0;
  background-size: cover;
  border-radius: 30px 5px 5px 5px;
}

.swiper-slide-active .testimony__image img {
  outline: 10px solid var(--clr-blue);
}

@media (max-width: 600px) {
  .registration .form-container .form label {
    margin-top: 0.1rem;
    margin-bottom: 0%;
  }

  .form button {
    margin-top: 0.8rem;
    font-size: 0.5rem;
    letter-spacing: 1px;
  }

  .section-header .section-header__title {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .section-header .section-header__description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .slide-image {}

  .touch-form input {
    padding: 0.3rem;
    border-radius: 10px 5px 5px 5px;
  }

  .mockup-image>img {
    height: 200px;
    width: auto;
  }

  [data-aos^="zoom"][data-aos^="zoom"].aos-animate {
    display: flex;
    justify-content: center;
  }

  .downloadvoucher {
    right: -5.5rem;
    bottom: 9rem;
    transform: rotate(90deg);
  }

  .PNInstitute {
    right: -6.5rem;
    bottom: 24rem;
    transform: rotate(90deg);
  }
}

@media (max-width: 500px) {
  .slide-image {}

  .form {
    max-width: 18rem;
    padding: 1rem;
  }


}

.float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 10px;
  right: 40px;
  /*background-color:#25d366;*/
  /*color:#FFF;*/
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  /*z-index:100;*/
  left: 10px;
}

/*.my-float{*/
/*	margin-top:16px;*/
/*}*/
.PN_INSTITUTE {
  width: 100%;
  background-image: var(--gradient-blue);
  /*position: fixed;
  z-index: 999;*/
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 40px;
  /* Adjust this value as needed to give space for the fixed footer */
}

.PN_INSTITUTE {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  /*z-index: 999;  Make sure the z-index is higher than other elements on the page */
}