@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Didact+Gothic&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Questrial&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
  scroll-behavior: smooth;
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #9b9b9b;
  border-radius: 5px;
  cursor: pointer;
}
body {
  overflow-x: hidden;
}

::selection {
  background: #66c887;
  color: #fff;
}
.hiddenHeader {
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  width: 100vw;
  transform: translateY(-50px);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  transition: 0.3s;
}
.hiddenHeader img {
  width: 50px;
}
.hiddenHeader.showHeader {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu {
  width: 100%;
  position: absolute;
}
.menu .socials {
  align-items: center;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  background-color: #c7ddcb;
  padding: 10px 300px;
  gap: 10px;
}
.menu .socials p {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b4b4b;
}
.menu .socials a {
  color: #007f45;
  font-size: 13px;
  height: 25px;
  width: 25px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}
.menu .navigation {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #fff;
  width: 100%;
  height: 90px;
  z-index: 1000;
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.05);
}
.menu .navigation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
}
.menu .navigation ul li,
.menu .navigation ul li a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b4b4b;
  cursor: pointer;
  text-align: center;
}
.menu .navigation ul li i {
  font-size: 0.6rem;
  color: #4b4b4b;
}
.menu .navigation img {
  width: 60px;
}
.menu .navigation button {
  padding: 8px 20px;
  background: #40916c;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.menu .navigation button a {
  color: #fff;
  font-size: 0.9rem;
}
.menu .navigation button:hover {
  background: #2d6a4f;
}
.menu .navigation .dropdown {
  position: relative;
  padding: 40px 0;
}
.menu .navigation .dropdown .dropdown-menu {
  display: none;
}
.menu .navigation .dropdown.open i {
  transform: rotate(180deg);
  transition: 0.3s;
}
.menu .navigation .dropdown.open .dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 80px;
  left: 0;
  background: #fff;
  padding: 20px 35px;
  white-space: nowrap;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  gap: 20px;
}
.menu .navigation .dropdown-menu li a {
  font-weight: 500;
  color: #4b4b4b;
}
.menu .navigation .dropdown-menu li a:hover {
  color: #40916c;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: #4b4b4b;
  cursor: pointer;
}
.backToTop {
  display: flex;
  font-size: 23px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #40916c;
  color: #fff;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 100000;
  text-decoration: none;
  bottom: 40px;
  right: -500px;
  transition: 0.5s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}
.backToTop img {
  width: 40px;
}
.backToTop.activeBtn {
  visibility: visible;
  opacity: 1;
  right: 40px;
}
.backToTop:hover {
  color: #40916c;
  background: #fff;
}
.contact {
  padding: 15px 0px;
  z-index: 1000;
  position: fixed;
  top: 40vh;
  left: 0;
  align-items: center;
  background: #245b44;
  color: #fff;
  height: 120px;
  width: 45px;
}
.contact .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.contact span {
  font-weight: 400;
  font-size: 12px;
  position: absolute;
  bottom: -50px;
  white-space: nowrap;
  transform: rotate(-90deg);
}
.slider {
  margin-bottom: 50px;
  height: 100svh;
  width: 100%;
  position: relative;
  z-index: -1;
}

.slider .list .item {
  position: absolute;
  inset: 0 0 0 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}
.slider .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(30%);
}

.slider .list .item.active {
  opacity: 1;
  z-index: 10;
}
.slider .list .item .content {
  position: absolute;
  left: 10%;
  top: 30%;
  width: 500px;
  max-width: 80%;
  z-index: 1;
  color: #fff;
}
.slider .list .item .content p:nth-child(1) {
  text-transform: uppercase;
  letter-spacing: 10px;
}
.slider .list .item .content p:nth-child(3) {
  font-weight: 400;
  font-size: 13px;
}
.slider .list .item .content h2 {
  font-size: 45px;
  line-height: 100%;
  margin-bottom: 10px;
}
@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
  transform: translateY(30px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 0.7s ease-in-out 1 forwards;
}
.slider .list .item.active h2 {
  animation-delay: 0.5s;
}
.slider .list .item.active p:nth-child(3) {
  animation-duration: 1.3s;
}
.arrows {
  position: absolute;
  top: 40%;
  right: 50px;
  z-index: 100;
  display: flex;
  gap: 10px;
  display: none;
}
.title-oct {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  z-index: 100;
  color: #fff;
  font-size: 5rem;
  text-transform: uppercase;
}
.title-oct h2,
.title-oct span {
  white-space: nowrap;
  user-select: none;
  line-height: 110px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: -5px;
}
.oct-logo {
  user-select: none;
  position: absolute;
  z-index: 1;
  width: 200px;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
}

.programs {
  width: 100vw;
  position: relative;
  padding: 30px 60px;
}
.programs .header h1 {
  font-size: 3rem;
  font-weight: 500;
}
.programs .header p {
  width: 80%;
  font-size: 0.95rem;
}
.programs .programs-nav {
  margin-left: 5px;
  margin-top: 50px;
  display: flex;
  gap: 20px;
  font-size: 2rem;
  color: #b9b9b9;
  font-weight: 400;
  user-select: none;
}

.programs-nav > div {
  transition:
    color 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
  padding: 3px 10px;
}
.programs .programs-nav .activeProg {
  color: #000;
  font-weight: 500;
}
.programs .programs-swiper {
  overflow: hidden;
  width: 100%;
  padding: 20px;
  margin: 10px;
  position: relative;
  user-select: none;
}
.programs .programs-swiper .swiper-slide {
  padding: 15px 30px;
  border: 1px solid #4b4b4b;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.programs .programs-swiper .swiper-slide .program-img {
  position: absolute;
  width: 210px;
  z-index: -1;
  top: 10px;
  right: -10px;
  opacity: 0.7;
  pointer-events: none;
}
.programs .programs-swiper .swiper-slide .program-title {
  margin-top: 80px;
}
.programs .shs-swiper .swiper-slide .program-title span {
  font-size: 0.9rem !important;
}
.programs .tesda-swiper .swiper-slide .program-title h3 {
  font-size: 1rem !important;
}
.programs .programs-swiper .swiper-slide .program-title h3 {
  color: #95d5b2;
  font-size: 0.9rem;
  font-weight: 500;
}
.programs .programs-swiper .swiper-slide .program-title span {
  color: #000;
  font-size: 1.1rem;
  font-weight: 700;
}
.programs .programs-swiper .swiper-slide .topDesc img {
  position: absolute;
  width: 80px;
  opacity: 0.6;
  top: -5px;
  left: -5px;
  z-index: -1;
}
.programs .programs-swiper .swiper-slide {
  width: 40%;
}
.marquee {
  position: relative;
  background: #fff;
  color: #081c15;
  padding: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  overflow: hidden;
  margin: 20px 0 20px 0;
}
.marquee-inner {
  display: flex;
  width: fit-content;
  flex: auto;
  flex-direction: row;
}
.marquee-inner .arrow {
  transform: rotate(90deg);
  margin: 0 1em;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.marquee-inner .arrow.rotate {
  transform: rotate(-90deg);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.marquee .marquee-part {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 20px;
}
.smartest {
  position: relative;
  width: 100%;
  height: 24cm;
  background: #1b4332;
  overflow: hidden;
  padding: 50px 80px;
}
.smartest .navi {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 120px;
  transform: translate(0, -50%);
  gap: 20px;
}
.smartest .navi .title {
  color: #fff;
  font-size: 3rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 800;
}
.smartest .navi .circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  color: #323232;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}
.smartest .navi .circle:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.5);
}
.smartest .smartest-image {
  width: 1200px;
  position: absolute;
  bottom: -100px;
  left: 200px;
}
.smartest .wrapper {
  width: 70%;
  position: absolute;
  font-size: 9rem;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
  right: 60px;
  top: 100px;
}
.smartest .wrapper p {
  font-family: "Bebas Neue", sans-serif;
  text-align: right;
}
.smartest .card-wrapper {
  position: absolute;
  bottom: 50px;
  right: 50px;
  display: flex;
  gap: 50px;
}
.smartest .card-wrapper .card {
  background: #fff;
  padding: 20px;
  width: 300px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
}
.smartest .card-wrapper .card .title {
  font-size: 2.3rem;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
}
.smartest .card-wrapper .card p {
  font-size: 1rem;
  color: #323232;
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
}
#dotBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
/* Info panels */
.smartest .info-panels {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.smartest .info-panel {
  position: absolute;
  right: 0;
  height: 100%;
  background: white;
  padding: 40px;
  overflow-y: auto;
  border-left: 8px solid #95d5b2;
  z-index: 10;
  width: 0;
  opacity: 0;
  transform: translateX(50px);
  pointer-events: none;
  transition:
    width 0.5s ease,
    opacity 0.4s ease,
    transform 0.5s ease;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.15);
}
.smartest .info-panel li,
.smartest .info-panel p,
.smartest .info-panel span {
  font-family: "Bebas Neue", sans-serif;
  color: #484848;
}
.smartest .info-panel.show li,
.smartest .info-panel.show p,
.smartest .info-panel.show span {
  font-size: 1.3rem;
}
.smartest .info-panel.active li,
.smartest .info-panel.active p,
.smartest .info-panel.active span {
  font-size: 1.5rem;
}
.smartest .info-panel ul {
  margin-left: 20px;
}
.smartest .info-panel span {
  font-size: 2rem;
  color: #000;
}
.smartest .info-panel .title {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}
.smartest .info-panel .title .sdg-logo {
  display: flex;
  gap: 10px;
}
.smartest .info-panel .title .sdg-logo img {
  object-fit: cover;
}
.smartest .info-panel .title h1 {
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 10px;
  line-height: 0.8;
}
.smartest .info-panel.show .title h1 {
  font-size: 4rem;
}
.smartest .info-panel.active .title h1 {
  font-size: 8rem;
}
.smartest .info-panel h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
.smartest .info-panel .container {
  display: flex;
}
.smartest .info-panel .container .panel-wrapper {
  width: 50%;
  padding: 0 50px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.smartest .info-panel.show {
  width: 30vw;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.smartest .info-panel.show .title .sdg-logo img {
  width: 60px;
}
.smartest .info-panel.active .title .sdg-logo img {
  width: 100px;
}
.smartest .info-panel.show .panel-wrapper:nth-of-type(2) {
  width: 100%;
}
.smartest .info-panel.show .panel-wrapper:nth-of-type(1) {
  display: none;
}
.smartest .info-panel.active {
  width: 80vw;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.smartest .info-panel.active .panel-wrapper:nth-of-type(1) {
  display: flex;
}
.smartest .info-panel.active .panel-wrapper:nth-of-type(2) {
  width: 50%;
}
.smartest .info-panel .panel-wrapper:nth-of-type(2) li {
  font-size: 2.2rem;
}
.smartest .info-panel .panel-wrapper:nth-of-type(2) h1 {
  font-size: 3rem;
}
.smartest .info-panel .card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.smartest .circle.active-circle {
  background: #40916c;
  color: #fff;
  transform: scale(1.1);
  transition: 0.2s ease;
  box-shadow: 0px 0px 25px rgba(255, 255, 255, 0.5);
}
.smartest .info-panel.hidden-by-hover {
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
}
.infos {
  position: relative;
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infos .infos-wrapper {
  position: absolute;
  z-index: 30;
  display: flex;
  gap: 50px;
}
.infos .infos-wrapper img {
  width: 60px;
}
.infos .infos-wrapper .infos-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.infos .infos-wrapper .infos-card h3 {
  font-size: 2rem;
  color: #2d6a4f;
  font-family: "Poppins";
  font-weight: 800;
}
.infos .infos-wrapper .infos-card p {
  font-size: 0.8rem;
  color: #4b4b4b;
  margin-top: -10px;
}

.area {
  background: #d8f3dc;
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);
  width: 100%;
  height: 100%;
}
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(82, 183, 136, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}
.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}
.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}
.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}
.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}
.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}
.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}
.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}
.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}
.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}
.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
.news {
  margin-top: 30px;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 10px 50px;
}

.news .header-news {
  width: 98%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.news .nav-news {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}
.news .nav-news h2 {
  font-size: 2.5rem;
}
.news .nav-news a {
  color: #2d6a4f;
}
.news .header-news .wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.news .header-news .img-news {
  position: relative;
}
:root {
  --swiper-pagination-color: #b7efc5;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 10px;
}
.news .swiper-pagination {
  position: absolute;
  z-index: 10000;
}
.news .header-news .img-news img {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  filter: brightness(50%);
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.news .header-news .img-news .news-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: white;
  width: 40%;
}
.news .header-news .img-news .news-text h1 {
  font-size: 3rem;
}
.news .swiper-slide {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
}
.news .swiper-slide .card-content {
  padding: 10px 17px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .swiper-slide .news-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 150%;
}

.news .swiper-slide .news-content span {
  color: #9c9c9c;
  font-size: 0.7rem;
  margin-top: 10px;
}
.news .swiper-slide .news-footer {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news .swiper-slide .news-footer img {
  width: 17px;
}
.news .mySwiper {
  overflow: hidden;
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  position: relative;
}
.news .swiper-slide .news-source {
  text-transform: capitalize;
  color: #9b9b9b;
  font-size: 0.7rem;
  margin-bottom: -10px;
}
.news .swiper-slide .news-source img {
  width: 18px;
}
.news .swiper-slide .image {
  height: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
}
.news .swiper-slide .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.news .swiper-slide .read-more-button {
  color: blue;
  font-size: 0.87rem;
}
.faq {
  position: relative;
  margin-top: 50px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.faq .container {
  justify-content: space-between;
  padding: 70px 9vw;
  display: flex;
  align-items: center;
  width: 95%;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.faq .container .questions {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq .container .questions .title {
  font-size: 2rem;
  white-space: nowrap;
  margin-top: -20px;
}
.faq .questions .question-wrapper {
  padding: 8px 25px;
  background: #eefff1;
  height: 90px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq .questions .question-wrapper.expanded {
  height: auto;
  padding: 8px 25px 20px;
}
.faq .questions .question-wrapper.expanded .undraw {
  opacity: 0;
  visibility: hidden;
}
.faq .questions .question-wrapper.expanded i {
  transform: rotate(180deg);
}
.faq .questions .question-wrapper .question {
  font-size: 0.9rem;
  margin-left: 50px;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq .questions .question-wrapper.expanded .question {
  opacity: 1;
}
.faq .questions .question-wrapper .question-title {
  display: flex;
  gap: 20px;
  font-size: 25px;
  font-weight: 600;
  align-items: center;
  margin-top: 10px;
}
.faq .questions .question-wrapper .question-title i {
  font-size: 1.7rem;
  transition: all 0.3s;
}
.comments {
  margin-top: 50px;
  width: 100vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px 70px;
}
.comments .commentsContainer {
  overflow: hidden;
  width: 100%;
  padding: 20px;
  margin: 10px 0;
  position: relative;
}
.comments .comment-title {
  font-size: 4rem;
  line-height: 100%;
  font-weight: 700;
  color: #081c15;
}
.comments .swiper-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}
.comments .swiper-wrapper .swiper-slide {
  padding: 20px;
  border-radius: 5px;
  background: #e9fded;
}
.comments .swiper-wrapper .swiper-slide .quote {
  position: absolute;
  top: -60px;
  color: #2d6a4f;
  right: -5px;
  font-size: 100px;
}

.comments .swiper-wrapper .swiper-slide p {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4b4b4b;
}
.comments .swiper-wrapper .swiper-slide .commentor h5 {
  font-weight: 400;
  font-size: 0.85rem;
}
.comments .swiper-wrapper .swiper-slide .commentor span {
  font-weight: 700;
}
.comments .swiper-wrapper .swiper-slide .commentor p {
  font-size: 0.7rem;
  color: #868686;
}
.preloader {
  pointer-events: none;
  position: relative;
}
.preloader .preloaderImg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000000;
}
.preloader .preloaderImg img {
  height: 25vw;
  width: 25vw;
  object-fit: cover;
}
.preloader .overlay {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 10000000;
  display: flex;
}
.preloader .overlay .bar {
  width: 10vw;
  height: 105vh;
  background: #fff;
}
.preloader .counter {
  position: fixed;
  bottom: 0;
  right: 30px;
  z-index: 100000000;
  color: #245b44;
  font-size: 12vw;
  line-height: 100%;
  font-weight: 800;
}
.admissionAds {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  opacity: 0;
}
.admissionAds.removeModalAdmission {
  display: none;
  opacity: 0;
}
.admissionAds .wrapper {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 500px;
  border-radius: 5px;
  position: relative;
  z-index: 1000001;
  padding: 30px;
}
.admissionAds .wrapper .closeAdmissionAds {
  position: absolute;
  z-index: 1000002;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  top: 15px;
  right: 15px;
  background: #fff;
  color: #000;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-in;
}
.admissionAds .wrapper .closeAdmissionAds:hover {
  box-shadow: none;
}
.admissionAds .wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.admissionAds .wrapper .navigation {
  width: 100%;
  background: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: -35px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  border-top-left-radius: 55%;
  border-top-right-radius: 55%;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.admissionAds .wrapper .navigation a {
  padding: 3px 15px;
  color: #fff;
  background-color: #40916c;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
/* .reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease;
}
.reveal.showContent {
  transform: translateY(0);
  opacity: 1;
} */
footer {
  width: 100%;
  height: 19cm;
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}
footer .footer-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
footer .footer-container {
  position: relative;
  z-index: 1;
  height: 100%;
}
footer .footer-wrapper {
  height: 90%;
  display: flex;
}
footer .footer-wrapper .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
footer .footer-wrapper .wrapper:nth-of-type(2) {
  align-items: flex-end;
  padding: 90px 0;
  margin-top: 50px;
}
footer .footer-wrapper .wrapper img {
  width: 800px;
}
footer .footer-wrapper .wrapper .footer-links {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
}
footer .footer-wrapper .wrapper .footer-links .links {
  display: flex;
  gap: 30px;
  font-size: 2rem;
  margin-top: 10px;
}
footer .footer-wrapper .wrapper .footer-links .links a {
  color: #fff;
}
footer .footer-wrapper .wrapper .footer-links span {
  color: #74c69d;
}
footer .footer-wrapper .wrapper .navigational-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-wrapper .wrapper .navigational-link .navi {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
footer .footer-wrapper .wrapper .navigational-link .navi a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 10%;
}
footer .footer-wrapper .wrapper .footer-desc {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: right;
  color: #fff;
}
footer
  .footer-wrapper
  .wrapper
  .navigational-link
  .navi.contacts-link
  .contacts-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer
  .footer-wrapper
  .wrapper
  .navigational-link
  .navi.contacts-link
  .contacts-wrapper
  a {
  font-size: 0.8rem;
  text-align: right;
}
footer
  .footer-wrapper
  .wrapper
  .navigational-link
  .navi.contacts-link
  .contacts-wrapper
  span {
  font-size: 0.95rem;
  color: #59e9a8;
}
@media only screen and (min-width: 300px) and (max-width: 900px) {
  .hiddenHeader .menu .navigation {
    margin-top: 65px;
  }
  .menu .socials {
    padding: 10px 20px;
    justify-content: center;
  }
  .menu .navigation img {
    width: 45px;
  }
  .menu .navigation {
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    height: 70px;
  }

  .menu .navigation ul {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.05);
  }

  .menu .navigation ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .menu .navigation button {
    width: 80%;
    margin: auto;
  }

  .menu .navigation .dropdown {
    padding: 10px 0;
  }
  .menu .navigation .dropdown.open .dropdown-menu {
    position: static;
    padding: 10px 20px;
    box-shadow: none;
    background: none;
  }
  .menu .navigation .dropdown.open .dropdown-menu li a {
    font-size: 0.8rem;
  }
  .admissionAds .wrapper {
    width: 300px;
  }
  .admissionAds .wrapper .navigation {
    height: 50px;
  }
  .admissionAds .wrapper .navigation a {
    padding: 2px 10px;
    font-size: 9px;
    font-weight: 400;
  }
  .admissionAds .wrapper .closeAdmissionAds {
    height: 25px;
    width: 25px;
    font-size: 13px;
  }
  .menu .nav {
    margin-top: 15%;
    left: 5%;
    gap: 0px;
  }
  .menu .submenu-item a {
    white-space: normal;
  }

  .menu .supportServices .submenu {
    margin-left: 7%;
    width: 100%;
  }
  .menu .supportServices a {
    font-size: 0.85rem;
  }
  .contact-nav {
    display: none;
  }
  .slider .title h2 {
    font-size: 6rem;
    line-height: 50px;
  }
  .title-oct {
    text-align: center;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .title-oct h2 {
    font-size: 1.7rem;
    display: flex;
    gap: 5px;
  }
  .contact {
    display: none;
  }
  .faq .container .questions {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .faq .questions .question-wrapper {
    padding: 5px 20px;
    height: 90px;
    width: 70vw;
  }
  .faq .container .undraw img {
    width: 70vw;
  }
  .faq .container .questions .title h3 {
    text-align: center;
    font-size: 2rem;
    white-space: normal;
  }
  .faq .questions .question-wrapper .question {
    text-align: center;
  }
  .faq .questions .question-wrapper .question-title {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq .questions .question-wrapper .question-title span {
    font-size: 14px;
  }
  .marquee {
    padding: 20px;
    font-size: 2rem;
  }
  .reasons .container .card-wrapper {
    width: 80vw !important;
    padding: 20px 40px !important;
  }
  .reasons .container .card-wrapper .title {
    font-size: 1.5rem !important;
  }
  .reasons .container .card-wrapper .card-content {
    font-size: 0.8rem !important;
  }
  .introduction .header .title-intro {
    font-size: 3.5rem !important;
  }

  .video .video-thumbnail {
    width: 100%;
    position: relative;
  }
  .video .play-btn {
    height: 45px;
    width: 45px;
  }
  .video .video-thumbnail .video-info p {
    font-size: 2rem;
  }
  .video .close {
    top: 20px;
    z-index: 10000000;
    right: 20px;
  }
  .news {
    padding: 10px;
  }
  .news .nav-news h2 {
    font-size: 1.2rem;
  }
  .news .nav-news a {
    font-size: 0.95rem;
  }
  .news .header-news .img-news .news-text h1 {
    font-size: 1.6rem;
  }
  .news .header-news .img-news .news-text {
    width: 70%;
    bottom: 15px;
    left: 10px;
  }
  .news .header-news .img-news .news-text p {
    font-size: 0.8rem;
  }
  .comments .comment-title {
    font-size: 2.2rem;
  }
  .comments .commentsContainer {
    padding: 20px 5px;
  }

  .programs {
    z-index: 2;
    width: 100vw;
    position: relative;
    padding: 30px;
    margin-top: 70px;
  }
  .programs .header p {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
  .programs .header h1 {
    line-height: 100%;
    text-align: center;
  }
  .programs .programs-nav {
    font-size: 1.2rem;
    gap: 5px;
  }
  .programs .programs-nav div {
    white-space: nowrap;
  }

  .infos {
    width: 100%;
    height: 160px;
  }
  .infos .infos-wrapper img {
    width: 45px;
  }
  .infos .infos-wrapper .infos-card h3 {
    font-size: 1.5rem;
  }
  .infos .infos-wrapper .infos-card p {
    font-size: 0.7rem;
  }
  .smartest .card-wrapper {
    gap: 5px;
    right: 0;
    width: 100%;
    bottom: 10px;
  }
  .smartest .wrapper {
    font-size: 3.2rem;
    right: 10px;
    top: 80px;
    width: 80%;
  }
  .smartest .card-wrapper .card {
    width: 50%;
    padding: 10px;
  }
  .smartest .card-wrapper .card .title {
    font-size: 1rem;
  }
  .smartest .card-wrapper .card p {
    font-size: 0.7rem;
  }
  .smartest .navi {
    left: 20px;
    top: 45%;
    gap: 10px;
    z-index: 10;
  }
  .smartest .navi .circle {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .smartest .navi .title {
    font-size: 1.5rem;
    width: 50%;
  }
  .smartest .smartest-image {
    width: 200%;
    bottom: 0;
    left: -160px;
  }
  .smartest .info-panel.active .title h1 {
    font-size: 3rem;
  }
  .smartest .info-panel .title .sdg-logo {
    gap: 4px;
  }
  .smartest .info-panel.active .title .sdg-logo img {
    width: 40px;
  }
  .smartest .info-panel .container {
    flex-direction: column;
    gap: 20px;
  }
  .smartest .info-panel .container .panel-wrapper {
    width: 100%;
    padding: 0;
  }
  .smartest .info-panel .title {
    margin-bottom: 5px;
    gap: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .smartest .info-panel.active li,
  .smartest .info-panel.active p,
  .smartest .info-panel.active span {
    font-size: 0.95rem;
  }
  .smartest .info-panel .panel-wrapper:nth-of-type(2) li {
    font-size: 1rem;
  }
  .smartest .info-panel .panel-wrapper:nth-of-type(2) h1,
  .smartest .info-panel .panel-wrapper:nth-of-type(1) h1 {
    font-size: 1.5rem;
  }
  .smartest .info-panel.active .panel-wrapper:nth-of-type(2) {
    width: 100%;
  }
  footer {
    padding: 5px 15px;
  }
  footer .footer-bg {
    object-position: right center;
  }
  footer .footer-wrapper {
    flex-direction: column;
  }
  footer .footer-wrapper .wrapper {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  footer .footer-wrapper .wrapper img {
    width: 400px;
  }
  footer .footer-wrapper .wrapper:nth-of-type(2) {
    padding: 10px 0;
    margin-top: 0;
  }
  footer .footer-wrapper .wrapper .footer-links {
    font-size: 2rem;
    margin-top: -40px;
  }
  footer .footer-wrapper .wrapper .footer-links .links {
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  footer .footer-wrapper .wrapper .navigational-link .navi {
    font-size: 0.9rem;
    font-weight: 600;
    gap: 5px;
  }
  footer .footer-wrapper .wrapper .navigational-link .navi a {
    font-size: 0.7rem;
    font-weight: 400;
  }
  footer .footer-wrapper .wrapper .footer-desc {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
    margin-top: 50px;
  }
  footer .footer-container .copyright p {
    font-size: 0.75rem;
  }
  footer .footer-wrapper .wrapper .navigational-link .navi.contacts-link {
    margin-left: auto;
    text-align: right;
  }
  footer .copyright {
    height: 5%;
  }
  footer .footer-wrapper {
    height: 95%;
  }
}
