* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Nunito", Arial, sans-serif;
  background: #BDC6B3;
  background: linear-gradient(180deg, #bdc6b3 45%, #ffffff 45%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #697757;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 15px;
}

.header {
  width: 100%;
  max-width: 1280px;
  background-color: #bdc6b3;
  display: flex;
  justify-content: start;
}
.header .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 0 0 24px 24px;
}
.header .logo img {
  width: 100%;
  max-width: 250px;
}

.main {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  flex: 1;
}
.main .container {
  background-color: #eff1ec;
  width: 100%;
  height: fit-content;
  margin: 60px 0 120px 0;
  padding: 40px 30px 0 30px;
  border-radius: 24px;
  text-align: center;
  flex-direction: column;
  gap: 30px;
}
.main .container .intro {
  margin-bottom: 60px;
}
.main .container .intro h1 {
  font-size: 64px;
  color: #697757;
  margin-bottom: 1rem;
}
.main .container .intro p {
  font-size: 20px;
  max-width: 750px;
  margin: 0 auto;
}
.main .container .gallery {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 0 -80px 0;
}
.main .container .gallery img {
  width: calc(33.3333333333% - 15px);
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  background-color: #eff1ec;
}

.footer {
  background-color: #eff1ec;
  width: 100%;
  max-width: 1280px;
  padding: 40px 30px;
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
  gap: 15px;
  border-radius: 24px 24px 0 0;
}
.footer .contact {
  text-align: left;
  font-size: 18px;
  line-height: 32px;
}
.footer .contact a {
  color: #697757;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.footer .contact a:hover {
  opacity: 0.8;
}
.footer .socials {
  min-width: 150px;
  height: 80px;
  display: flex;
  gap: 10px;
}
.footer .socials .img {
  width: 240px !important;
  height: 90px !important;
}
.footer .socials img {
  width: 40px;
  height: 40px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.footer .socials img:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .header {
    justify-content: center;
  }
  .main .container .intro h1 {
    font-size: 42px;
  }
  .main .container .intro p {
    font-size: 16px;
  }
  .main .container .gallery {
    justify-content: center;
  }
  .main .container .gallery img {
    width: 100%;
    max-width: 420px;
  }
  .footer {
    flex-direction: column;
  }
}

/*# sourceMappingURL=main.css.map */
