@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background-color: #f6f6f6;
}

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

.btn {
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  background-color: #AE763F;
  transition: 0.2s ease-in;
}
.btn:hover {
  background-color: #000;
}
.btn:has(.btn__icon) {
  display: inline-flex;
  align-items: center;
}
.btn .btn__icon {
  margin-left: 10px;
  width: 20px;
  height: 20px;
}

.header {
  background-color: #494949;
}
.header .header__inner {
  display: flex;
  padding: 30px;
  align-items: center;
}
.header .header__inner .header__logo {
  margin-right: 20px;
}
.header .header__inner .header__logo .logo__link {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-decoration: none;
}
.header .header__inner .header__logo .logo__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 68px;
  height: 2px;
  background-color: #AE763F;
  transition: 0.2s ease-in;
}
.header .header__inner .header__logo .logo__link:hover::after {
  width: 100%;
}
.header .header__inner .header__buttons {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .header__inner .header__buttons .header__btn {
  position: relative;
  margin-left: 30px;
  display: inline-flex;
  color: #ffffff;
  font-size: 16px;
  align-items: center;
  text-decoration: none;
}
.header .header__inner .header__buttons .header__btn .btn__icon {
  margin-right: 8px;
  width: 30px;
  height: 30px;
  color: #AE763F;
}
.header .header__inner .header__buttons .header__btn::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.2s ease-in;
}
.header .header__inner .header__buttons .header__btn:hover::after {
  width: calc(100% - 38px);
}

.hero {
  background-color: #494949;
  padding: 50px 0;
}
.hero .hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .hero__inner .hero__content {
  width: 50%;
}
.hero .hero__inner .hero__content .hero__title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
}
.hero .hero__inner .hero__content .hero__text {
  margin-bottom: 30px;
  color: #d7d7d7;
  font-size: 18px;
  line-height: 1.6;
}
.hero .hero__inner .hero__img {
  width: 50%;
  text-align: right;
}
.hero .hero__inner .hero__img img {
  width: 100%;
  max-width: 500px;
  height: 600px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page {
  padding: 50px 0;
}
.page.not-found {
  padding: 100px 0 150px;
  text-align: center;
}
.page .page__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 400;
}

.section {
  padding: 80px 0 100px 0;
  border-bottom: 1px solid #eaeaea;
}
.section .section__title {
  position: relative;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 38px;
  font-weight: 400;
  text-align: center;
}
.section .section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #AE763F;
}

.gallery .gallery__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery .gallery__images .hidden {
  display: none;
}
.gallery .gallery__images .gallery__image {
  cursor: pointer;
  overflow: hidden;
  height: 300px;
  transition: 0.2s ease-in;
}
.gallery .gallery__images .gallery__image:has(.count) {
  position: relative;
}
.gallery .gallery__images .gallery__image:has(.count)::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(73, 73, 73, 0.5);
}
.gallery .gallery__images .gallery__image:has(.count) .count {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 24px;
}
.gallery .gallery__images .gallery__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.2s ease-in;
}
.gallery .gallery__images .gallery__image:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.gallery .gallery__images .gallery__image:hover img {
  transform: scale(1.05);
}

.partners .partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.partners .partners__list .partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.2s ease-in;
}
.partners .partners__list .partners__item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.partners .partners__list .partners__item:hover {
  transform: translateY(-5px);
}

.contact {
  display: flex;
  margin: 0 -20px;
}
.contact .contact__col {
  width: 50%;
  padding: 0 20px;
}
.contact .contact__name {
  font-size: 24px;
  font-weight: 500;
}
.contact .contact__address {
  font-size: 18px;
  line-height: 28px;
}
.contact .contact__info {
  margin-top: 20px;
  font-size: 18px;
}
.contact .contact__info div {
  margin-bottom: 5px;
  font-weight: 200;
}
.contact .contact__info div .value {
  color: #AE763F;
  font-weight: 500;
  text-decoration: none;
}
.contact .contact__map iframe {
  width: 100%;
  height: 440px;
}

.footer {
  background-color: #1f1f1f;
}
.footer .footer__inner {
  padding: 40px 0 60px;
  display: flex;
}
.footer .footer__inner .footer__content .footer__logo {
  margin-bottom: 30px;
}
.footer .footer__inner .footer__content .footer__logo .logo__link {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  text-decoration: none;
}
.footer .footer__inner .footer__content .footer__logo .logo__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 68px;
  height: 2px;
  background-color: #AE763F;
  transition: 0.2s ease-in;
}
.footer .footer__inner .footer__content .footer__address {
  margin-bottom: 30px;
  color: #e3e3e3;
}
.footer .footer__inner .footer__buttons {
  margin-left: auto;
}
.footer .footer__inner .footer__buttons .footer__btn {
  display: flex;
  margin-bottom: 20px;
  color: #e3e3e3;
  text-decoration: none;
  align-items: center;
  transition: color 0.2s ease;
}
.footer .footer__inner .footer__buttons .footer__btn:hover {
  color: #ffffff;
}
.footer .footer__inner .footer__buttons .footer__btn:hover .btn__icon {
  color: #000000;
  background-color: #ffffff;
}
.footer .footer__inner .footer__buttons .footer__btn .btn__icon {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  display: flex;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #AE763F;
  transition: 0.2s ease;
}
.footer .footer__inner .footer__buttons .footer__btn .btn__icon svg {
  width: 20px;
  height: 20px;
}
.footer .footer__copyright {
  padding: 20px 0;
  border-top: 1px solid #333333;
}
.footer .footer__copyright .copyright__inner {
  display: flex;
  color: #e3e3e3;
  font-size: 14px;
  justify-content: space-between;
  align-items: center;
}
.footer .footer__copyright .copyright__inner .copyright__text {
  margin: 0;
}
.footer .footer__copyright .copyright__inner .copyright__by {
  display: flex;
  color: #e3e3e3;
  align-items: center;
  text-decoration: none;
}
.footer .footer__copyright .copyright__inner .copyright__by img {
  margin-left: 8px;
  height: 20px;
}

@media only screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .header {
    border-bottom: none;
  }
  .header .header__inner {
    padding: 30px 20px;
  }
  .header .header__inner .header__buttons {
    display: none;
  }
  .hero .hero__inner {
    padding: 20px;
    flex-direction: column;
  }
  .hero .hero__inner .hero__content {
    width: 100%;
    text-align: center;
  }
  .hero .hero__inner .hero__content .hero__title {
    font-size: 40px;
  }
  .hero .hero__inner .hero__img {
    display: none;
  }
  .gallery .gallery__images {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery .gallery__images .gallery__image {
    height: 220px;
  }
  .gallery .gallery__images .gallery__image img {
    height: 220px;
  }
  .partners .partners__list {
    flex-wrap: wrap;
  }
  .contact {
    flex-wrap: wrap;
  }
  .contact .contact__col {
    width: 100%;
  }
  .contact .contact__col:first-child {
    margin-bottom: 40px;
  }
  .footer {
    text-align: center;
  }
  .footer .footer__inner {
    flex-direction: column;
  }
  .footer .footer__inner .footer__content .footer__logo .logo__link::after {
    display: none;
  }
  .footer .footer__inner .footer__buttons {
    margin-left: 0;
  }
  .footer .footer__inner .footer__buttons .footer__btn {
    justify-content: center;
  }
  .footer .footer__copyright .copyright__inner {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer__copyright .copyright__inner .copyright__text {
    margin-bottom: 10px;
  }
}

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