@import url("https://fonts.googleapis.com/css2?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 {
  margin: 0;
  padding: 0;
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
}

::selection {
  background: #66c887;
  color: #fff;
}
#dotBackground {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.menu,
.hiddenHeader,
.main-container {
  position: relative;
  z-index: 1;
}
.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%;
  z-index: 100;
  position: relative;
}
.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);
}
.hero {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  opacity: 0.3;
}
.hero .img-container {
  width: 100%;
  z-index: -1;
  height: 100%;
  background-color: #103510;
}
.hero .text {
  position: absolute;
  color: #fff;
  font-size: 7rem;
  text-transform: uppercase;
  text-shadow: 8px 8px 0px rgba(24, 24, 24, 0.8);
  font-weight: 800;
}
.who {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 23cm;
  padding: 0 300px;
  overflow: hidden;
  position: relative;
}
.who .who-desc::before {
  content: "";
  position: absolute;
  height: 600px;
  width: 600px;
  bottom: 0;
  right: -40px;
  background: #2d6a4f;
  border-radius: 50%;
  box-shadow: 0 0 60px 130px rgba(45, 106, 79, 1);
  opacity: 0.15;
}
.who .who-desc::after {
  content: "";
  position: absolute;
  height: 400px;
  width: 400px;
  top: 0;
  left: -40px;
  background: #2d6a4f;
  border-radius: 50%;
  box-shadow: 0 0 60px 130px rgba(45, 106, 79, 1);
  opacity: 0.15;
}
.who .who-desc {
  font-size: 2.8rem;
  text-align: center;
  width: 100%;
}
.who .title,
.guide .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.who .title span {
  position: absolute;
  font-size: 7rem;
  white-space: nowrap;
  color: #e9e9e9;
}
.guide .title span {
  position: absolute;
  font-size: 7rem;
  white-space: nowrap;
  color: #d0d0d0;
}
.who .title p,
.guide .title p {
  z-index: 1;
  font-size: 3rem;
  font-weight: 500;
}
.guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 23cm;
  width: 100%;
  background: #f0f0f0;
  padding: 20px 40px;
  position: relative;
}
.guide .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin-right: auto;
  padding-left: 100px;
}
.guide img {
  width: 600px;
  position: absolute;
  bottom: 0;
  right: 30px;
  object-fit: cover;
}
.guide .wrapper .guide-desc {
  font-size: 2rem;
  line-height: 1.5;
}
.guide .wrapper a {
  margin-top: 20px;
  margin-right: auto;
  padding: 8px 30px;
  background: #40916c;
  border: none;
  font-size: 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
}
.accreditors {
  width: 100%;
  height: 23cm;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.accreditors .accreditors-desc {
  width: 65%;
  font-size: 3rem;
  text-align: center;
  color: #4b4b4b;
  font-weight: 600;
}
.accreditors .accreditors-desc span {
  color: #000;
}
.accreditors .accreditors-desc::before {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  bottom: 0;
  left: -40px;
  background: #2d6a4f;
  border-radius: 50%;
  box-shadow: 0 0 60px 130px rgba(45, 106, 79, 1);
  opacity: 0.15;
}
.accreditors .accreditors-desc::after {
  content: "";
  position: absolute;
  height: 450px;
  width: 450px;
  top: 0;
  right: -40px;
  background: #2d6a4f;
  border-radius: 50%;
  box-shadow: 0 0 60px 130px rgba(45, 106, 79, 1);
  opacity: 0.15;
}
.accreditors .image-wrapper {
  display: flex;
  gap: 15px;
}
.accreditors .image-wrapper img {
  width: 100px;
}
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) {
  .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;
  }
  .contact {
    display: none;
  }
    .hero {
    height: 50vh;
  }
  .hero .text {
    font-size: 2rem;
  }
  .who {
    padding: 0 50px;
    height: 19cm;
  }
  .who .who-desc::before {
    height: 200px;
    width: 200px;
  }
  .who .who-desc::after {
    height: 100px;
    width: 100px;
  }
  .who .who-desc {
    font-size: 1rem;
  }
  .who .title span,
  .guide .title span {
    font-size: 4rem;
  }
  .who .title p,
  .guide .title p {
    font-size: 2rem;
  }
  .guide {
    padding: 5px 15px;
  }
  .guide img {
    width: 50%;
  }
  .guide .wrapper {
    width: 100%;
    padding-left: 0;
  }
  .guide .wrapper .guide-desc {
    font-size: 1rem;
  }
  .guide .wrapper a {
    padding: 5px 20px;
    font-size: 1rem;
  }
  .accreditors .accreditors-desc {
    width: 100%;
    font-size: 1.5rem;
    padding: 0 10px;
  }
  .accreditors .image-wrapper img {
    width: 85px;
  }
  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%;
  }
}
