.flex__buttons {
  display: flex;
  gap: 10px;
}
.flex__buttons .hero__button--circle {
  width: 45px;
  height: 45px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.header {
  background-color: #f0f2f5;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.header__logo-img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}
.header__nav {
  display: flex;
}
.header__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.header__menu-link {
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #333;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.header__menu-link:hover::after {
  width: 100%;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header__burger span {
  width: 100%;
  height: 2px;
  background-color: #17553c;
  transition: all 0.3s ease;
}
.header__burger span:first-child {
  top: 13px;
}
.header__burger span:nth-child(2) {
  top: 19px;
}
.header__burger span:last-child {
  top: 25px;
}
.header__burger.active span:first-child {
  top: 8px;
  transform: translateY(6px) rotate(45deg) !important;
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}
.header__burger.active span:first-child, .header__burger.active span:last-child {
  left: 14px;
  right: 14px;
}

.hero {
  padding: 40px 0;
}
.hero__rating {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__stars {
  color: #ffc107;
}
.hero__rating-link {
  color: #32BF7B;
}
.hero__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.hero__subtitle {
  color: #666;
  margin-bottom: 20px;
}
.hero__description {
  margin-bottom: 30px;
  max-width: 700px;
}
.hero__description p {
  margin-bottom: 10px;
}
.hero__more-link {
  color: #32BF7B;
  display: inline-block;
  margin-top: 5px;
}
.hero__buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  background-color: #f0f2f5;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero__button--primary {
  background-color: #32BF7B;
  color: #fff;
}
.hero__button--primary:hover {
  background-color: #17553c;
}
.hero__button--secondary, .hero__button--phone {
  background-color: #f0f2f5;
  color: #333;
}
.hero__button--secondary:hover, .hero__button--phone:hover {
  background-color: #e1e5eb;
}
.hero__button--circle {
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #f0f2f5;
}
.hero__address {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #666;
}
.hero__status {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: #32BF7B;
}

.building {
  margin-bottom: 40px;
}
.building__image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.about {
  padding: 50px 0;
  background-color: #fff;
}
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
.about__info:last-child {
  border-bottom: none;
}
.about__row {
  display: flex;
  margin-bottom: 10px;
}
.about__row:last-child {
  margin-bottom: 0;
}
.about__label {
  min-width: 150px;
  font-weight: 500;
}
.about__value {
  color: #666;
  padding-left: 15px;
}
.about__text {
  line-height: 1.7;
}

.catalog {
  padding: 50px 0;
  background-color: #fff;
}
.catalog__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.catalog__tab {
  padding: 8px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.catalog__tab--active {
  border-bottom-color: #32BF7B;
  color: #32BF7B;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.catalog__item {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.catalog__item:hover .catalog__image {
  transform: scale(1.05);
}
.catalog__image-wrapper {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}
.catalog__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.catalog__content {
  padding: 20px 0;
}
.catalog__item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
.catalog__price {
  font-size: 20px;
  font-weight: 700;
  color: #32BF7B;
  margin-bottom: 10px;
}
.catalog__description {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.reviews {
  padding: 50px 0;
}
.reviews__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.reviews__overall {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
.reviews__overall-rating {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
.reviews__stars {
  color: #ffc107;
}
.reviews__count {
  color: #666;
  font-size: 14px;
}
.reviews__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
}
.reviews__more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.reviews__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  background-color: #f0f2f5;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}
.reviews__more-btn:hover {
  background-color: #e1e5eb;
}

.review {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.review__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.review__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.review__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.review__name {
  font-weight: 600;
  margin-bottom: 5px;
}
.review__rating {
  color: #ffc107;
  margin-bottom: 5px;
}
.review__date {
  font-size: 14px;
  color: #666;
}
.review__text {
  line-height: 1.6;
  padding-left: 65px;
}

.photos {
  padding: 50px 0;
  background-color: #fff;
}
.photos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.photos__item {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}
.photos__item--big {
  grid-column: span 1;
  grid-row: span 2;
  height: auto;
}
.photos__item:hover .photos__image {
  transform: scale(1.05);
}
.photos__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.photos__more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.photos__more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}
.photos__more-btn:hover {
  background-color: #f2f2f2;
}

.contacts {
  padding: 50px 0;
}
.contacts__address {
  font-size: 18px;
  margin-bottom: 20px;
}
.contacts__buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contacts__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  background-color: #f0f2f5;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contacts__button:hover {
  background-color: #e1e5eb;
}
.contacts__button--circle {
  width: 45px;
  height: 45px;
  padding: 0;
}
.contacts__map {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.footer {
  background-color: #f0f2f5;
  padding: 20px 0;
  margin-top: auto;
}
.footer__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.footer__credits {
  font-size: 14px;
  color: #666;
}
.footer__link {
  color: #32BF7B;
  margin-left: 5px;
}
.footer__links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.header__menu.active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background-color: #f0f2f5;
  padding: 20px;
  z-index: 1000;
}
.header__menu.active .header__menu-item {
  margin: 10px 0;
}

.header__burger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hero__title {
    font-size: 28px;
  }
  .section-title {
    font-size: 24px;
  }
  .photos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__row .about__label {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .flex__buttons {
    display: flex;
    width: 100%;
    gap: 10px;
  }
  .flex__buttons .hero__button--circle {
    width: 100%;
    height: 45px;
  }
  .header__menu {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__button {
    width: 100%;
  }
  .about__row {
    flex-direction: column;
  }
  .about__row .about__label {
    margin-bottom: 0px;
  }
  .about__row .about__value {
    padding-left: 0;
  }
  .about__content {
    gap: 10px;
  }
  .catalog__grid {
    grid-template-columns: 1fr;
  }
  .reviews__overall {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 24px;
  }
  .section-title {
    font-size: 20px;
  }
  .footer__container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .photos__grid {
    grid-template-columns: 1fr;
  }
  .photos__item--big {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }
}/*# sourceMappingURL=style.css.map */