/** @format */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  border: none;
  background-color: initial;
  font: inherit;
  cursor: pointer;
  outline: none;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 1.8rem;
}

@media screen and (max-width: 750px) {
  h1 {
    font-size: 1.4rem;
  }
}
@font-face {
  font-family: "Allura";
  src: url("./assets/fonts/Allura-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Milda";
  src: url("./assets/fonts/Milda-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rossana";
  src: url("./assets/fonts/Rossana-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.u-allura {
  font-family: "Allura", cursive;
}

.u-rossana {
  font-family: "Rossana", sans-serif;
}

.u-milda {
  font-family: "Milda", sans-serif;
}

.u-box-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.u-italic {
  font-style: italic;
}

.u-bold {
  font-weight: 600;
}

.u-underline {
  text-decoration: underline;
}

.u-glassbg {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  margin: 15px;
}

.app {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  font-weight: 100;
}

/* img {
  vertical-align: middle;
  border-style: none;
} */
.header {
  width: 100%;
  background-color: #f5f5f5;
  z-index: 5;
}
.nav {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__img {
  margin: 5px;
  height: auto;
  display: block;
  object-fit: cover;
  height: 80px;
}
@media screen and (max-width: 1100px) {
  .nav {
    margin: 0 25px;
  }
}

.navbar__list {
  list-style: none;
  display: flex;
  gap: 28px;
  justify-content: end;
  align-items: center;
  padding: 0;
  margin: 0;
}
.navbar__link {
  color: #0f5132;
  text-decoration: none;
  font-weight: 200;
  padding: 8px 6px;
  border-radius: 8px;
}
.navbar__link:hover {
  color: #111827;
  background: rgba(0, 0, 0, 0.02);
}
.navbar__btn {
  background: #e5728b;
  color: #f5f5f5;
  padding: 8px 20px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 500;
}

.nav-burger {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px 16px 16px;
  background: transparent;
  display: none;
}
.nav-mobile__link {
  display: block;
  padding: 10px 0;
  color: var(--darkGreen);
  text-decoration: none;
  font-weight: 600;
}
.nav-mobile__cta {
  display: inline-block;
  margin-top: 8px;
  background: var(--deepBlush);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.main-content {
  display: flex;
  flex-grow: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 130px;
}
.main-content__container {
  margin-top: 100px;
  width: 100%;
  height: 60%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  flex-direction: row-reverse;
  display: flex;
}
.main-content__image {
  position: absolute;
  z-index: -5;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main-content__title-background {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.51);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: 45%;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
}
.main-content__logo {
  margin-bottom: 20px;
  width: 200px;
  margin-left: 30px;
}
.main-content__text {
  margin: 20px 50px 0px;
  text-align: center;
  color: #0f5132;
  font-size: 25px;
  letter-spacing: inherit;
}
.main-content__welcome {
  font-size: 18px;
}
.main-content__btn {
  display: flex;
  font-weight: 500;
  margin: 35px;
  padding: 15px 30px;
  align-items: center;
  justify-content: center;
  height: 11%;
  background-color: #e5728b;
  color: #fff;
  border-radius: 15px;
  transition: all 0.2s;
}
.main-content__btn:hover svg {
  transform: translateX(5px);
}
.main-content__btn:hover {
  background-color: #e9869c;
}
.main-content__btn:active {
  transform: scale(0.95);
}
.main-content__btn-arrow {
  width: 25px;
  transition: transform 0.3s ease-in-out;
  margin-left: 10px;
}
@media screen and (max-width: 1050px) {
  .main-content__container {
    border-radius: 0;
  }
}
@media screen and (max-width: 950px) {
  .main-content__welcome {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 700px) {
  .main-content__title-background {
    width: 60%;
  }
}
@media screen and (max-width: 550px) {
  .main-content__title-background {
    width: 100%;
    justify-content: end;
  }
  .main-content__main-content {
    height: unset;
  }
  .main-content__logo {
    width: 250px;
  }
  .main-content__image {
    width: 100%;
  }
  .main-content__btn {
    width: 80%;
    border-radius: 12px;
  }
}

.about {
  display: flex;
  flex-flow: row-reverse;
  justify-content: center;
  overflow: hidden;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 250px;
  background-color: #dcdecf;
  border-radius: 20px;
}
.about__img-container {
  height: 710px;
  width: 40%;
}
.about__img {
  object-fit: cover;
  width: 100%;
}
.about__text-container {
  padding: 55px 30px 55px 55px;
  margin-right: 20px;
  width: 60%;
}
.about__title {
  color: #0f5132;
  font-weight: 300;
}
.about__paragraph {
  margin: 20px 0;
}
@media screen and (max-width: 1050px) {
  .about {
    border-radius: 0;
  }
  .about__text-container {
    padding: 25px;
  }
}
@media screen and (max-width: 750px) {
  .about {
    flex-flow: column-reverse;
  }
  .about__img-container {
    width: 100%;
    overflow: hidden;
    height: 600px;
  }
  .about__img {
    height: 650px;
    object-position: 50% -100px;
  }
  .about__text-container {
    width: 100%;
  }
}

.recognize {
  display: flex;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 250px;
  background-color: #dcdecf;
  overflow: hidden;
  border-radius: 20px;
}
.recognize__img-container {
  width: 40%;
  height: 580px;
}
.recognize__img {
  object-fit: cover;
  width: 100%;
}
.recognize__text-container {
  padding: 40px;
  width: 60%;
}
.recognize__title {
  color: #0f5132;
  font-weight: 300;
}
.recognize__paragraph {
  margin: 20px 0;
}
.recognize__list {
  margin-left: 20px;
}
@media screen and (max-width: 1050px) {
  .recognize {
    border-radius: 0;
  }
  .recognize__text-container {
    padding: 25px;
  }
}
@media screen and (max-width: 750px) {
  .recognize {
    flex-flow: column;
    position: relative;
  }
  .recognize__img-container {
    width: 100%;
    overflow: hidden;
    height: 300px;
  }
  .recognize__img {
    height: 350px;
    object-position: 50% -400px;
  }
  .recognize__text-container {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .recognize__img {
    object-position: 50% -200px;
  }
}
@media screen and (max-width: 380px) {
  .recognize__img {
    object-position: 50% -50px;
  }
}

.beyond {
  display: flex;
  flex-flow: row-reverse;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 250px;
  background-color: #dcdecf;
  overflow: hidden;
  border-radius: 20px;
}
.beyond__img-container {
  width: 40%;
  height: 650px;
  overflow: hidden;
}
.beyond__img {
  object-fit: cover;
  height: 100%;
}
.beyond__text-container {
  padding: 55px;
  width: 60%;
}
.beyond__title {
  color: #0f5132;
  font-weight: 300;
}
.beyond__paragraph {
  margin: 20px 0;
}
.beyond__link {
  color: inherit;
  text-decoration: underline;
}
@media screen and (max-width: 1050px) {
  .beyond {
    border-radius: 0;
  }
  .beyond__text-container {
    padding: 25px;
  }
}
@media screen and (max-width: 750px) {
  .beyond {
    flex-flow: column;
  }
  .beyond__img-container {
    width: 100%;
    height: 400px;
  }
  .beyond__img {
    object-position: 50% -90px;
    width: 100%;
  }
  .beyond__text-container {
    width: 100%;
  }
}

.method {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto 250px;
  background-color: #dcdecf;
  border-radius: 20px;
  overflow: hidden;
}
.method__row {
  display: flex;
}
.method__img-container {
  overflow: hidden;
  width: 40%;
}
.method__img {
  object-fit: cover;
  width: 100%;
  border-bottom-right-radius: 20px;
}
.method__text-container {
  padding: 25px 50px;
  width: 60%;
}
.method__title {
  color: #0f5132;
  font-weight: 300;
}
.method__paragraph {
  margin: 20px 0;
}
.method__secondary-row {
  padding: 0px 50px;
}
.method__list {
  margin-left: 20px;
}
@media screen and (max-width: 1050px) {
  .method {
    border-radius: 0;
  }
  .method__text-container {
    padding: 25px;
  }
}
@media screen and (max-width: 750px) {
  .method__row {
    flex-direction: column;
  }
  .method__img-container {
    overflow: hidden;
    width: 100%;
    height: 420px;
  }
  .method__img {
    object-position: 50% -330px;
    width: 100%;
  }
  .method__text-container {
    width: 100%;
    padding-bottom: 0;
  }
  .method__secondary-row {
    padding: 0 25px;
  }
}
@media screen and (max-width: 650px) {
  .method__img {
    object-position: 50% -250px;
  }
}
@media screen and (max-width: 550px) {
  .method__img {
    object-position: 50% -150px;
  }
}
@media screen and (max-width: 500px) {
  .method__img {
    object-position: 50% -100px;
  }
}
@media screen and (max-width: 450px) {
  .method__img {
    object-position: 50% -60px;
  }
}
@media screen and (max-width: 400px) {
  .method__img {
    object-position: 50% 0px;
  }
}
@media screen and (max-width: 360px) {
  .method__img {
    object-position: 50% 50px;
  }
}

.footer {
  width: 100%;
  background-color: #dcdecf;
}
.footer__main {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  padding: 20px;
}
.footer__links {
  display: flex;
}
.footer__icon-link {
  text-align: center;
  margin-left: 20px;
}
.footer__icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #333;
  margin: 0 8px;
  color: #333;
  opacity: 0.75;
}
.footer__list {
  list-style: none;
}
.footer__link {
  text-decoration: none;
  color: inherit;
}
.footer__contactinfo {
  display: block;
  justify-self: start;
}
.footer__copyright {
  font-size: 13px;
  margin-left: 5%;
  color: #555a5b;
}
@media screen and (max-width: 700px) {
  .footer__main {
    justify-content: space-between;
  }
}
@media screen and (max-width: 500px) {
  .footer__links {
    flex-direction: column-reverse;
  }
  .footer__icon-link {
    margin-left: 0;
  }
  .footer__icon {
    margin: 0;
  }
}
