body {
  background-image: url("/assets/imgs/background-mobile.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #09466f;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

.header {
  height: 95px;
}

.header__logo--mobile {
  padding: 30px;
}

section {
  padding: 0 30px !important;
}

.section__about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 24px;
  margin-bottom: 40px;
}

.section__about__title {
  font-family: "Playfair Display", serif;
  color: #86f8ff;
  font-size: 40px;
  font-weight: 700;
  margin: 82px 0 45px;
  line-height: 53px;
}

.section__about__title--italic {
  font-weight: 400;
  font-style: italic;
}

.section__about__article__p {
  font-weight: 400;
  font-size: 16px;
  color: white;
  font-family: "Inter", sans-serif;
}

.section__history {
  margin-bottom: 40px;
  line-height: 24px;
}

.section__history__img {
  width: 100%;
}
.section__history__img--desktop {
  display: none;
}
.section__history__h2--desktop {
  display: none;
}
.section__history__h2 {
  font-family: "Playfair Display", serif;
  color: #86f8ff;
  font-size: 40px;
  font-weight: 700;
  margin: 82px 0 45px;
  line-height: 53px;
  text-align: center;
  margin: 40px 0;
}

.section__history__h2--italic {
  font-weight: 400;
  font-style: italic;
}

.section__history__article__p {
  font-weight: 400;
  font-size: 16px;
  color: white;
  font-family: "Inter", sans-serif;
}

.section__reports {
  margin-bottom: 40px;
}

.section__reports__h2 {
  font-family: "Playfair Display", serif;
  color: #86f8ff;
  font-size: 40px;
  font-weight: 700;
  margin: 82px 0 45px;
  line-height: 53px;
  text-align: center;
  margin: 40px auto;
  max-width: 160px;
}

.section__reports__h2--italic {
  font-weight: 400;
  font-style: italic;
}

.section__reports__article__p {
  font-weight: 400;
  font-size: 16px;
  color: white;
  font-family: "Inter", sans-serif;
}

.section__reports__box {
  display: flex;
  flex-direction: column;
}

.section__reports__card {
  width: 274px;
  height: 345px;
  background-color: white;
  color: black;
  border-radius: 20px;
  margin: 0 auto 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: normal;
}
.section__reports__card p{
    margin: .5rem 0;
}
.section__reports__card__h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 37px;
  text-align: center;
}
.section__reports__card__p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.section__reports__card__a {
  font-weight: 700;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #09466f;
  text-align: center;
}

.section__reports__card__a img {
  margin-right: 5px;
}

.section__reports__a {
  padding: 16px 40px;
  background-color: transparent;
  border: 1px solid white;
  text-decoration: none;
  color: white;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 19px;
  font-family: "Inter", sans-serif;
  margin: auto;
  text-transform: uppercase;
}

.section__reports__h2 hr {
  display: none;
}

.section__contact {
  background-color: #09466f;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.section__contact__h2 {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  text-align: center;
  color: #86f8ff;
  margin-bottom: 28px;
}

.section__contact__p {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  text-align: center;
  color: #86f8ff;
  margin-bottom: 50px;
}

.section__contact__p--italic {
  font-style: italic;
  font-weight: 400;
}
.section__contact__form {
  display: flex;
  flex-direction: column;
}

.section__contact__input {
  width: 100%;
  height: 45px;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
}

.section__contact__textarea {
  height: 94px;
  width: 100%;
  margin-bottom: 41px;
  resize: none;
  font-family: "Inter", sans-serif;
}

.section__contact__a {
  padding: 16px 40px;
  background-color: #86f8ff;
  text-decoration: none;
  color: black;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 19px;
  font-family: "Inter", sans-serif;
  margin: auto;
}

footer {
  background-color: #002d4b;
  padding: 42px 0 !important;
  display: flex !important;
  justify-content: center;
}

.footer__img {
  margin: auto;
}

@media (min-width: 992px) {
  body {
    background-image: url("/assets/imgs/background-desktop.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
  }
  section {
    padding: 0 165px !important;
  }

  .section__about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    line-height: 24px;
    margin-bottom: 110px;
    margin-top: 65px;
  }
  .section__about__title {
    font-size: 64px;
    margin: 0;
    text-align: right;
    line-height: 85.31px;
    max-width: 340px;
    width: 90%;
    margin-left: 165px;
  }

  .section__about__article {
    width: 50%;
    text-align: left;
  }

  .section__history__h2 {
    display: none;
  }

  .section__history__h2--desktop {
    display: block;
    font-family: "Playfair Display", serif;
    color: #86f8ff;
    font-size: 40px;
    font-weight: 700;
    margin: 82px 0 45px;
    line-height: 53px;
    text-align: left;
    margin-top: 0;
  }
  .section__history__img {
    display: none;
  }
  .section__history__img--desktop {
    display: block;
    align-self: flex-start;
    margin-bottom: 47px;
    width: 100%;
  }
  .section__history__article {
    display: flex;
    justify-content: space-between;
  }

  .section__history__article__first-box {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
  }

  .section__history__article__second-box {
    width: 90%;
    display: flex;
    flex-direction: column;
  }

  .section__reports__h2 hr {
    display: block;
    background-color: transparent;
    width: 386px;
    height: 1px;
    margin: auto 55px;
    border: none;
    border-top: dotted 5px;
    color: white;
  }
  .section__reports__box {
    flex-direction: row;
  }
  .section__reports__h2 {
    max-width: unset;
    display: flex;
    justify-content: center;
  }

  .section__reports__h2--italic{
    margin: 0 15px;
  }

  .section__reports__card {
    width: 445px;
    /* height: 200px; */
    height: auto;
    padding: 40px 54.5px;
    align-items: flex-start;
  }

  .section__contact__box {
    display: flex;
    justify-content: center;
  }
  .section__contact__h2--box {
    display: flex;
    justify-content: space-between;
  }

  .section__contact__h2--box hr {
    display: block;
    background-color: transparent;
    width: 460px;
    height: 1px;
    margin: auto 0;
    border: none;
    border-top: dotted 5px;
    color: white;
  }
  .section__contact__p {
    max-width: 350px;
    text-align: left;
    margin-right: 88px;
  }

  .section__contact__form {
    width: 30%;
    justify-content: flex-start;
  }

  .section__contact__a {
    margin: 0;
    margin-right: auto;
  }
}

@media (min-width: 2560px) {
  section {
    padding: 0 550px !important;
  }
}
