@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100;0,9..144,200;0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,100;1,9..144,200;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700;1,9..144,800;1,9..144,900&family=IBM+Plex+Mono:wght@100;200;300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
  /*dark*/
}

body {
  margin: 0;
  padding: 0;
  background-color: #f5f5ef;
  overflow-x: hidden;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100px;
  z-index: 100;
}
.navbar .one {
  display: flex;
  padding-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 0px;
  background: transparent;
  width: 90%;
  max-width: 1600px;
}
.navbar a,
.navbar li,
.navbar button {
  font-family: "IBM Plex Mono", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #1f1f1d;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
}
.navbar .navbar-logo {
  color: #fff;
  cursor: pointer;
  width: 140px;
}
.navbar .two i {
  margin-right: auto;
}
.navbar .fa {
  font-size: 4em !important;
  /*size whatever you like*/
  color: #e4c53e;
}
.navbar .nav_links li {
  display: inline-block;
  padding: 0px 20px;
  /*0 top 20 left right*/
}
@media screen and (max-width: 760px) {
  .navbar .nav_links li {
    display: none;
  }
}
.navbar .nav_links li a {
  transition: all 0.3s ease 0s;
}
.navbar .nav_links li a:hover {
  color: #e4c53e;
  /*bluish*/
}
.navbar button {
  padding: 9px 25px;
  border: none;
  background-color: #e4c53e;
  border-radius: 50px;
  cursor: pointer;
  color: hsl(33deg, 10%, 17%);
  transition: all 0.3s ease 0s;
}
.navbar button:hover {
  background-color: rgba(0, 136, 169, 0.8);
}
.navbar .two button {
  color: #fff;
}
.navbar .three i {
  order: 3;
  margin-left: auto;
}
.navbar .three nav {
  order: 1;
}
.navbar .three .cta {
  order: 2;
}
.navbar .three .nav_links li:nth-child(1) {
  padding: 0 20px;
}
.navbar .three button {
  margin-left: 20px;
}
.navbar section {
  display: grid;
}
.navbar p {
  color: #fff;
}

.welcome-section {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
}
.welcome-section button {
  font-size: 15px;
  font-family: Montserrat;
}
.welcome-section .welcome-information {
  width: 90%;
  max-width: 1600px;
  height: 80vh;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .welcome-section .welcome-information {
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: 70vh;
  }
}
.welcome-section .welcome-information .welcome-box {
  width: 50%;
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media screen and (max-width: 760px) {
  .welcome-section .welcome-information .welcome-box {
    width: 100%;
  }
}
.welcome-section .welcome-information .welcome-box .welcome-box-row {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-top: 100px;
  color: #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
@media screen and (max-width: 760px) {
  .welcome-section .welcome-information .welcome-box .welcome-box-row {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .welcome-section .welcome-information .welcome-box .welcome-box-row button {
    margin-top: 20px;
  }
}
.welcome-section .welcome-information .welcome-box .welcome-box-row button {
  margin-right: 140px;
  min-width: 200px;
}
.welcome-section .welcome-information .welcome-box .welcome-box-row span {
  width: 250px;
}
.welcome-section .welcome-information h1 {
  color: "Fraunces";
  font-family: Fraunces;
  font-size: 4vw;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  margin: 0;
  white-space: pre-wrap;
}
@media screen and (max-width: 760px) {
  .welcome-section .welcome-information h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1850px) {
  .welcome-section .welcome-information h1 {
    font-size: 60px;
  }
}
.welcome-section .welcome-information h5 {
  font-family: Montserrat;
  font-size: 1.5vw;
  color: #a69cac;
  font-weight: 300;
}
@media screen and (max-width: 760px) {
  .welcome-section .welcome-information h5 {
    font-size: 18px;
  }
}
.welcome-section .welcome-information button {
  padding: 9px 25px;
  border: none;
  background-color: #e4c53e;
  cursor: pointer;
  color: hsl(33deg, 10%, 17%);
  transition: all 0.3s ease 0s;
  background: #efc55c;
  border: 1px solid #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
}
.welcome-section .welcome-information .welcome-illustration {
  width: auto;
  max-width: 50%;
  height: 100%;
  overflow: visible;
}
@media screen and (max-width: 760px) {
  .welcome-section .welcome-information .welcome-illustration {
    width: 100%;
    margin-top: -100px;
    margin-right: -30px;
    height: 60vh;
  }
}
.welcome-section .welcome-information svg {
  width: 50%;
  height: 60%;
  transform: scaleX(-1);
}
.welcome-section .welcome-bg-border {
  background-color: #f5f5ef;
  position: absolute;
  width: 100vw;
  opacity: 1;
  z-index: 100;
  height: 100px;
  bottom: 0;
}
.welcome-section .welcome-bg {
  width: 100vw;
  height: 100vh;
  opacity: 1;
  position: absolute;
  top: -100px;
  right: 0;
  z-index: 2;
  box-sizing: border-box;
  mix-blend-mode: darken;
  filter: blur(7.5px);
  -o-object-fit: cover;
     object-fit: cover;
}

.about-section {
  padding: 150px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 760px) {
  .about-section {
    padding: 0 0 50px;
  }
}
.about-section .about-wrapper {
  max-width: 1600px;
  width: 90%;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  z-index: 15;
  color: white;
}
@media screen and (max-width: 1150px) {
  .about-section .about-wrapper {
    flex-direction: column;
  }
  .about-section .about-wrapper .about-image {
    width: 100%;
    margin-top: 30px;
  }
}
.about-section .about-wrapper .about-text-wrapper {
  border-top: 1px solid #1f1f1d;
  margin-right: 60px;
  padding-top: 36px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 760px) {
  .about-section .about-wrapper .about-text-wrapper {
    margin-right: 0;
    flex-direction: column;
  }
}
.about-section .about-wrapper .about-text-wrapper .about-heading-wrapper {
  min-width: 30%;
  border-bottom: 1px solid #1f1f1d;
  margin-right: 80px;
}
@media screen and (max-width: 760px) {
  .about-section .about-wrapper .about-text-wrapper .about-heading-wrapper {
    border-bottom: none;
    margin-bottom: 10px;
  }
}
.about-section .about-wrapper .about-text-wrapper .about-text-content p {
  margin: 0;
}
.about-section .about-wrapper .about-image {
  max-width: 60%;
}
@media screen and (max-width: 1150px) {
  .about-section .about-wrapper .about-image {
    max-width: 100%;
  }
}
.about-section h2 {
  color: #1f1f1d;
  font-family: Fraunces;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 37px;
}
.about-section p {
  font-family: "IBM Plex Mono";
  color: #1f1f1d;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
}
.about-section .faq-heading {
  position: absolute;
  font-size: 72px;
  color: rgb(26, 24, 22);
  bottom: -20px;
  color: white;
  margin: 0;
  z-index: 10;
  padding: 0;
  font-family: Fraunces;
}
.about-section .about-sdg {
  flex-direction: row;
  margin-bottom: 70px;
}
.about-section .about-sdg .sdg {
  width: 120px;
  margin: 10px 20px 30px 0;
}

.upcoming-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  position: relative;
  margin-bottom: 50px;
}

.helper-section {
  width: 90%;
  display: flex;
  max-width: 1600px;
}
@media screen and (max-width: 760px) {
  .helper-section {
    flex-direction: column;
  }
}

.price-content li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.upcoming-section {
  padding: 24px 32px;
  border: 1px solid #1f1f1d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  margin-bottom: 160px;
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media screen and (max-width: 760px) {
  .upcoming-section {
    margin-bottom: 60px;
  }
}
.upcoming-section h2 {
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  color: #1f1f1d;
  font-family: "Fraunces";
  margin-bottom: 60px;
}
.upcoming-section .upcoming-information {
  display: flex;
  flex-direction: row;
  align-items: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .upcoming-section .upcoming-information {
    flex-direction: column;
  }
  .upcoming-section .upcoming-information p {
    margin: 0;
  }
  .upcoming-section .upcoming-information button {
    margin-top: 20px;
  }
}
.upcoming-section .upcoming-information p {
  font-weight: 400;
  color: #252321;
  font-weight: 400;
  font-size: 13px;
  color: #1f1f1d;
  font-family: "IBM Plex Mono";
}
.upcoming-section .upcoming-information button {
  background: #f7c548;
  border: 1px solid #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "IBM Plex Mono";
  padding: 6px 20px;
  /* identical to box height */
  color: #252321;
}

.course-section {
  background-color: #122018;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-section .course-wrapper {
  max-width: 1600px;
  width: 90%;
  padding: 40px 0;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 1150px) {
  .course-section .course-wrapper {
    flex-direction: column;
  }
}
.course-section .course-wrapper .course-heading-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1150px) {
  .course-section .course-wrapper .course-heading-wrapper {
    margin: 20px 0;
  }
}
.course-section .course-wrapper .course-heading-wrapper h3 {
  font-weight: 400;
  font-size: 30px;
  margin: 0;
  width: 60%;
  line-height: 37px;
  font-family: "Fraunces";
  color: #f5f5ef;
}
@media screen and (max-width: 1150px) {
  .course-section .course-wrapper .course-heading-wrapper h3 {
    width: 100%;
    margin-bottom: 30px;
  }
}
.course-section .course-wrapper .course-heading-wrapper button {
  background: #f7c548;
  border: 1px solid #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "IBM Plex Mono";
  padding: 6px 20px;
  /* identical to box height */
  color: #252321;
}
.course-section .course-wrapper .course-information-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1150px) {
  .course-section .course-wrapper .course-information-wrapper {
    margin: 5px 0;
  }
}
.course-section .course-wrapper .course-information-wrapper p {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 20px;
  /* or 154% */
  font-family: "IBM Plex Mono";
  color: #f5f5ef;
}
.course-section .course-wrapper .course-information-wrapper .course-price {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  /* identical to box height */
  color: #f5f5ef;
  font-family: "Fraunces";
}
.course-section .course-wrapper .course-illustration {
  flex: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.examples-wrapper {
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 760px) {
  .examples-wrapper {
    margin-top: 50px;
  }
}
.examples-wrapper img {
  max-width: 1600px;
  width: 90%;
}

.action-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.action-section {
  width: 90%;
  max-width: 1600px;
  display: flex;
  flex-direction: row;
  margin: 160px 0;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .action-section {
    margin: 60px 0;
    flex-direction: column;
  }
}

.faq-section {
  z-index: 4;
  position: relative;
  padding: 30px;
  width: 50%;
  display: flex;
  margin-right: 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid #1f1f1d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  /* Attribution */
  /*# sourceMappingURL=styles.css.map */
}
@media screen and (max-width: 760px) {
  .faq-section {
    width: 100%;
    margin-bottom: 60px;
    margin-right: 0;
  }
}
.faq-section .faq-heading {
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  font-family: "Fraunces";
  color: #1f1f1d;
  margin: 0;
  margin-bottom: 40px;
}
.faq-section .contentWrapper {
  max-width: 1600px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.faq-section p {
  font-weight: 400;
  font-size: 13px;
  line-height: 25px;
  /* identical to box height */
  color: #1f1f1d;
  font-family: "IBM Plex Mono";
}
.faq-section h2 {
  font-size: 18px;
  font-weight: 200;
  font-family: Fraunces;
  color: white;
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 25px;
  font-family: "IBM Plex Mono";
  /* identical to box height */
  color: #1f1f1d;
}
.faq-section h2:hover {
  color: rgb(228, 197, 62);
}
.faq-section h2 label {
  cursor: pointer;
  width: 100%;
  display: block;
  padding: 0 0 18px;
}
.faq-section h2 label::after {
  content: "";
  background: url("./assets/nav-arrow-down.svg") no-repeat right 0;
  width: 12px;
  height: 7px;
  margin: 6px 15px 0 0;
  float: right;
}
.faq-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.faq-section ul li {
  position: relative;
  border-top: 1px solid rgb(26, 24, 22);
  padding: 17px 0 0;
  margin: 0;
  overflow: hidden;
}
.faq-section ul li:first-child {
  padding: 0;
  border: none;
}
.faq-section ul li:last-child {
  border-bottom: 1px solid rgb(26, 24, 22);
}
.faq-section ul input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.faq-section .answer {
  width: 95%;
  height: 0;
  line-height: 1.5em;
  margin: 0;
  transition: all 0.5s cubic-bezier(0, 1, 1, 1);
}
.faq-section input:checked ~ .answer {
  height: auto;
  margin: 0 0 18px;
}
.faq-section input:checked ~ h2 {
  font-weight: 700;
}
.faq-section input:checked ~ h2 label {
  padding: 0 0 10px;
}
.faq-section input:checked ~ h2 label::after {
  transform: scaleY(-1);
}
.faq-section footer {
  font-size: 11px;
  text-align: center;
  color: white;
  margin: 35px 0 0;
}
.faq-section footer a {
  color: white;
}
@media screen and (min-height: 768px) and (min-width: 1440px) {
  .faq-section .root {
    padding: 8.125rem 0 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .faq-section article .contentWrapper {
    width: 300px;
  }
}
@media screen and (max-width: 1050px) {
  .faq-section article .contentWrapper {
    width: 280px;
  }
  .faq-section article h2 label::after {
    margin: 6px 0 0 0;
  }
}
@media screen and (max-width: 991px) {
  .faq-section h1 {
    text-align: center;
    margin: 0 0 32px;
  }
  .faq-section .root {
    padding: 3rem 0;
  }
  .faq-section article {
    padding: 130px 23.5px 48px;
    background-color: white;
    background-image: none;
    min-width: 327px;
  }
  .faq-section article::before {
    display: none;
  }
  .faq-section article h2 {
    font-size: 13px;
  }
  .faq-section article h2:hover {
    color: hsl(237deg, 12%, 33%);
  }
  .faq-section article h2 label::after {
    margin: 6px 0 0;
  }
  .faq-section article .contentWrapper {
    width: 100%;
    margin-left: 0;
  }
  .faq-section article input:active ~ h2 {
    color: rgb(228, 197, 62);
  }
}

.registration-section {
  position: relative;
  padding: 30px;
  width: 50%;
  display: flex;
  margin-left: 30px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid #1f1f1d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
@media screen and (max-width: 760px) {
  .registration-section {
    width: 100%;
    margin-left: 0;
  }
}
.registration-section .registration-heading {
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  font-family: "Fraunces";
  color: #1f1f1d;
  margin: 0;
  margin-bottom: 40px;
}
.registration-section .registration-label {
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "IBM Plex Mono";
  color: #1f1f1d;
  margin-bottom: 11px;
}
.registration-section .registration-field {
  border: 1px solid #1f1f1d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  width: 100%;
  margin-bottom: 17px;
  height: 31px;
}
.registration-section .registration-button {
  background: #f7c548;
  border: 1px solid #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "IBM Plex Mono";
  padding: 6px 20px;
  /* identical to box height */
  margin: 28px 0;
  color: #252321;
}

.wpcf7-submit {
  background: #f7c548;
  border: 1px solid #000000;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 11px;
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "IBM Plex Mono";
  padding: 6px 20px;
  /* identical to box height */
  margin: 28px 0;
  color: #252321;
  cursor: pointer;
}

.wpcf7-form label {
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  font-family: "IBM Plex Mono";
  color: #1f1f1d;
  margin-bottom: 11px;
}
.wpcf7-form input {
  border: 1px solid #1f1f1d;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  width: 100%;
  margin-bottom: 17px;
  height: 31px;
  font-family: "IBM Plex Mono";
}
.wpcf7-form .wpcf7-response-output {
  border: 1px solid beige;
  padding: 0;
  font-family: "IBM Plex Mono";
  font-size: 13px;
}

.gallery-wrapper {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 160px;
}
@media screen and (max-width: 760px) {
  .gallery-wrapper {
    margin-bottom: 60px;
  }
}
.gallery-wrapper .gallery-section {
  display: flex;
  width: 90%;
  gap: 60px;
  max-width: 1600px;
  flex-direction: row;
  align-items: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 1150px) {
  .gallery-wrapper .gallery-section {
    flex-direction: column;
  }
}
.gallery-wrapper .gallery-section img {
  width: 100%;
}

footer {
  background-color: #122018;
  position: relative;
  z-index: 5;
  display: flex;
  padding: 60px 0 100px;
  align-items: center;
  justify-content: center;
}
footer .footer-content {
  max-width: 1600px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-content .footer-box {
  width: 50%;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #f5f5ef;
  font-family: "IBM Plex Mono";
}
footer .footer-content .footer-box p {
  min-height: 14px;
  margin: 3px;
}
footer .footer-content .footer-box img {
  margin-top: 28px;
}

path {
  stroke-dasharray: 3600;
  stroke-dashoffset: 0;
  -webkit-animation: dash 9s;
          animation: dash 9s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 3500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 3500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}/*# sourceMappingURL=style.css.map */