*,
::before,
::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: "Open Sans", Sans-serif;
}

img {
  max-width: 100%;
}

b {
  font-weight: bolder;
}

.din {
  max-width: 26px;
}
.fx1 {
  display: flex;
  align-items: center;
  gap: 7px;
}
.section-home {
  background-image: url(../assets/bg-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4em 0em 4em 0em;
}

.home-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 55%;
  padding: 0 15px;
}

.home-title {
  color: #FFFFFF;
  font-family: "Exo 2", Sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: normal;
  line-height: 48px;
}

.home-text {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
}

.-color-light-blue {
  color: #17bbec;
}

.container {
  max-width: 880px;
  margin: 0 auto;
}

.section-form {
  background-image: url(../assets/bg-form.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4em 0em 4em 0em;
}

.section-form .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.form {
  border-radius: 16px;
  padding: 23px;
  background-color: white;
}

.form-cta {
  color: #000000;
  font-family: "Exo 2", Sans-serif;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 48px;
}

.form-description {
  color: #567694;
  font-size: 23px;
  font-weight: 400
}

.form-texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-classes {
  background-image: url(../assets/bg-2.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4em 0em 4em 0em;
}

.section-classes .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #FF6633;
  font-family: "Open Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.classes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}

.class-box {
  background-color: white;
  padding: 34px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.class-number {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  background-color: #E67B24;
  border-radius: 36px;
  width: fit-content;
  padding: 12px 24px;
  margin: -39px auto 0;
}

.class-date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  color: #527490;
  gap: 5px;
}

.class-date svg {
  max-width: 25px;
  max-height: 25px;
  fill: #527490;
}

.class-title {
  color: #0D2E57;
  font-family: "Exo 2", Sans-serif;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 23px;
}

.section-about {
  background-image: url(../assets/bg-3.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4em 0em 4em 0em;
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 50%;
}

.section-title {
  font-family: "Exo 2", Sans-serif;
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 48px;
}

.-color-blue {
  color: #00142B;
}

.-color-white {
  color: white;
}

.about-text {
  color: #FFFFFF;
  font-family: "Open Sans", Sans-serif;
  font-size: 23px;
  font-weight: 400;
}

.section-cta {
  background-color: #00142B;
  padding: 60px 0;
}

.section-cta .container {
  display: grid;
  grid-template-columns: 4fr 3fr;
  align-items: center;
  grid-gap: 60px;
}

.img-container {
  text-align: center;
}

.img-container img {
  max-width: 150px;
}

.cta-text {
  color: #FFFFFF;
  font-family: "Exo 2", Sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  line-height: 29px;
}

.button-1 {
  font-family: "Exo 2", Sans-serif;
  font-weight: 700;
  background-color: #E67B24;
  border-radius: 11px 11px 11px 11px;
  font-size: 18px;
  padding: 20px 40px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.section-footer {
  background-color: #181818;
  padding: 3em 0em 4em 0em;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.text-footer {
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 34px;
  letter-spacing: -0.9px;
}

a.text-footer {
  text-decoration: underline;
}

.logo-footer {
  max-width: 140px;
  margin: 0 auto 15px;
}

.desktop-hide {
  display: none;
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
  .section-home {
    background-position: -170px 0px;
    background-repeat: no-repeat;
  }
  .section-home .container {
    padding: 0 10px;
  }
  .home-col {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
  .home-title {
    font-size: 33px;
    line-height: 1.1em;
    letter-spacing: -1.5px;
  }
  .home-text {
    font-size: 17px;
  }
  .section-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-about {
    background: #00C56A;
  }
  .about-col {
    max-width: 100%;
    text-align: center;
  }
  .desktop-hide {
    display: block;
  }
  .goes-1 {
    width: 58%;
    border-radius: 21px 21px 21px 21px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 33px;
  }
  .about-text {
    font-size: 17px;
  }
  .classes-grid,
  .section-form .container {
    grid-template-columns: 1fr;
  }

  .class-box {
    gap: 5px;
    padding: 19px;
  }

  .class-number {
    font-size: 15px;
    margin-top: -29px;
  }

  .class-title {
    font-size: 23px;
    font-weight: 800;
  }

  .section-classes .section-title {
    font-size: 29px;
    line-height: 1.1em;
    letter-spacing: -1.5px;
  }

  .form-texts {
    text-align: center;
    gap: 10px;
  }

  .section-form .container {
    grid-gap: 30px;
  }

  .form-cta {
    font-size: 33px;
    line-height: 1.1em;
    letter-spacing: -1.5px;
  }

  .form-description {
    font-size: 22px;
  }
  .fx1 {
    justify-content: center;
  }
}
