@import url("https://fonts.googleapis.com/css2?family=Allura&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap");
@media only screen and (max-width: 769px) {
  .desktop-only {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

.main {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.container {
  max-width: 1225px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FBFBFB;
}

.header {
  background-color: #FBFBFB;
}
.header__columns {
  height: 80px;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 769px) {
  .header__columns {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  .header__columns {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 769px) {
  .header__column {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.faq__item {
  cursor: pointer;
}
.faq__item-header {
  display: flex;
  gap: 5px;
}
.faq__inside {
  background: #e8e8e8;
  padding: 20px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__item:not(.active) .faq__item-desc {
  overflow: hidden;
  max-height: 0;
  transition: 0.5s;
}
.faq__item.active .faq__item-desc {
  overflow: hidden;
  max-height: 1000px;
  transition: 0.5s;
}
.faq svg {
  width: 30px;
}
.faq__item-desc {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  line-height: 30px;
  margin-top: 20px;
}
.faq__item-title {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  margin: 0;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.nav__a {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.hero {
  position: relative;
}
.hero__img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.hero__title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 0 30px;
}
.hero__title {
  text-shadow: 5px 2px 1px black;
}
@media only screen and (max-width: 769px) {
  .hero__title {
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 0.1px;
    color: #fff;
    font-family: "Allura", cursive;
    text-decoration: none;
  }
}
@media only screen and (min-width: 769px) {
  .hero__title {
    font-size: 96px;
    font-weight: 200;
    letter-spacing: 0.1px;
    color: #fff;
    font-family: "Allura", cursive;
    text-decoration: none;
  }
}

@media only screen and (max-width: 769px) {
  .about__columns {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  .about__columns {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.about__column--desc {
  padding: 80px 40px;
  background-color: #ECECEC;
}
.about__title {
  font-size: 48px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Allura", cursive;
  text-decoration: none;
  margin: 0;
}
.about__desc {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}
.about__img {
  width: 100%;
}

.section-header {
  margin-bottom: 22px;
}
.section-header__title {
  font-size: 48px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Allura", cursive;
  text-decoration: none;
  margin: 0;
  text-align: center;
}
.section-header__desc {
  text-align: center;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  max-width: 556px;
}

@media only screen and (min-width: 769px) {
  .offers {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media only screen and (max-width: 769px) and (min-width: 430px) {
  .offers {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 430px) {
  .offers {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.offer-item {
  padding: 0;
  margin: 0;
  position: relative;
}
.offer-item__img {
  width: 100%;
}
.offer-item__desc {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

@media only screen and (min-width: 769px) {
  .realizations__list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 769px) and (min-width: 430px) {
  .realizations__list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 430px) {
  .realizations__list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.realization-item {
  text-decoration: none;
}
.realization-item__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.realization-item__title {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  text-align: center;
}

.footer {
  background-color: #7A603B;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.author__cols {
  display: grid;
  gap: 0px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 30px;
}
.author__cols div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}
.author__cols div:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact {
  background-color: #f0e3d1;
  padding: 20px 0;
}
@media only screen and (min-width: 769px) {
  .contact__cols {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 769px) {
  .contact__cols {
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact__cols > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.facebook {
  background: #e6ddd2;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facebook a {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.1px;
  color: #7A603B;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */
