/*
Theme Name: Pol kvartir
Author: Fortune Solider
Version: 1.0
*/


:root {
  --font-main: 'Manrope', sans-serif;
  --font-accent: 'Sofia Sans Extra Condensed', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: #2D2C2C;
  overflow-x: hidden;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.btn-callback {
  font-family: var(--font-main);
  font-weight: 500;
  background-color: #d0a683;
  color: #fff;
  padding: 10px 24px;
  margin: 20px auto;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn-callback1 {
  font-family: var(--font-main);
  font-weight: 500;
  background-color: #d0a683;
  color: #fff;
  padding: 10px 24px;
  margin: 20px auto;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-callback1,
.btn-callback:hover {
  background-color: #b78e6f;
}

/* Попап-оверлей */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Контент попапа */
.popup-content {
  max-width: 570px;
  background: #2D2C2C;
  font-family: var(--font-accent);
  font-size: 40px;
  color: #E8B289;
  padding: 30px 20px;
  width: 100%;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 100%;
}

/* Кнопка закрытия */
.popup-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #DCDCDC;
}

.popup-close:hover {
  color: #000;
}

/* Элементы формы */
.popup-form input[type="text"],
.popup-form input[type="tel"],
.popup-form input[type="email"] {
  display: block;
  width: 95%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-main);
}

/* Чекбокс */
.popup-checkbox {
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Адаптив */
@media (max-width: 1200px) {
  .popup-content {
    max-width: 320px;
    padding: 20px 16px;
    font-size: 28px;
  }
}

/* Хедер */
.site-header {
  display: flex;
  width: 100%;
  height: 80px !important;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 13px 0;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
  font-size: 14px;
}

/* Логотип */

.logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.logo-block img {
  width: 56px;
  height: 56px;
}
.logo-block .title {
  font-family: var(--font-accent);
  font-size: 26px;
  line-height: 90%;
  font-weight: 700;
  letter-spacing: -2%;
}
.logo-block .city {
  font-size: 12px;
  opacity: 0.7;
}

/* Разделители */

.divider {
  height: 32px;
  width: 1px;
  background-color: rgba(255,255,255,0.8);
  margin: 0 20px;
}

/* Меню */
.nav {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  text-transform: uppercase;
}
.nav li a:hover {
  opacity: 0.7;
}

/* Скрытие подменю по умолчанию */
.nav .sub-menu {
    display: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    transition: opacity 0.3s ease; /* Плавное появление */
}

/* Показать подменю при наведении на родительский элемент */
.nav li.menu-item-has-children:hover .sub-menu {
    display: block;
    opacity: 1;
}

/* Чтобы подменю не перекрывало другие элементы */
.nav li.menu-item-has-children {
    position: relative;
}

/* Для мобильных устройств скрыть подменю */
@media (max-width: 768px) {
    .nav .sub-menu {
        display: none; /* Скрыть подменю на мобильных устройствах */
        opacity: 0;
        transition: opacity 0.3s ease; /* Плавное появление */
    }

    .nav li.menu-item-has-children.open .sub-menu {
        display: block; /* Показать подменю при добавлении класса .open */
        opacity: 1;
    }

    /* Стили для мобильного меню */
    .nav li.menu-item-has-children {
        position: relative;
    }

    .nav li.menu-item-has-children > a {
        cursor: pointer;
    }
}



/* Контакты */
.contact-block {
  text-align: right;
  margin-right: 16px;
}
.contact-block .phone {
  align-items: center;
  text-align: center;

}
.contact-block .phone a{
text-decoration: none;
color: #FFF;
font-family: var(--font-main);
font-size: 14px;
font-weight: 700;
transition: opacity 0.2s;
}
.contact-block .phone a:hover {
  opacity: 0.6;
}
.contact-block .work-time {
  font-size: 12px;
  color: #ccc;
}

/* Соцсети */
.social-icons {
  display: flex;
  margin-right: 16px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.social-icons a:hover img {
  opacity: 0.6;
}

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  pointer-events: auto;
   z-index: 4000;
}

.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
width: 20px;
}




/* Мобильное меню */
/* Адаптив */

@media (max-width: 1024px) {
  .main-menu,
  .site-header .btn-callback,
  .contact-block,
  .social-icons,
  .divider {
    display: none;
  }
  .site-header{
    width: 100%;
    box-sizing: border-box;
  }
  .header-inner {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

  .burger {
    display: flex;
  }
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

  .main-menu.mobile-active {
    display: flex;
    position: fixed;
    flex-direction: column;
    top: 80px;
    right: 0;
    text-align: center;
    width: 150px;
    background-color: #2D2C2C;
    padding: 20px;
    gap: 20px;
    z-index: 1000;
  }

  .main-menu.mobile-active .nav {
    flex-direction: column;
    align-items: flex-end;
  }

  .nav li a {
    font-size: 16px;
  }
}


/* Шапка */
.hero1,
.hero2,
.hero3,
.hero4,
.hero5,
.hero {
  position: relative;
  width: 100%;
  height: 740px;
  margin: 0 auto;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/bg-hero.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  color: #fff;
}

.hero1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/bg-prises.jpg') center/cover no-repeat;
}


.hero1 img {
  position: absolute;
  bottom: 0;
  right: 30%; 
  transform: translateX(50%);
}


.hero2 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/hero-bg-inner3.jpg') center/cover no-repeat;
}

.hero3 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/hero-bg-inner1.jpg') center/cover no-repeat;
}
.hero4 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/hero-bg-inner2.jpg') center/cover no-repeat;
}
.hero5 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/hero-bg-inner4.jpg') center/cover no-repeat;
}

.hero__conteiner {
    position: relative;
    display: flex;
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding-top: 180px;
    justify-content: space-between;
}

.hero__content {
  max-width: 670px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-accent);
  font-size: 80px;
  font-weight: 700;
  line-height: 90%;
  letter-spacing: -2%;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.hero__subtitle {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: 40px;
  color: #E8B289;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero__text {
  font-size: 18px;
  margin-bottom: 25px;
}


.hero__master-wrapper {
  max-width: 472px;
  max-height: 352px;
  position: relative;
  background: url('assets/img/master-bg-form.png') center/cover no-repeat;
  border-radius: 4px;
  overflow: visible;
  transition: linear 0.5s;
}
.hero__master-wrapper1 {
  max-width: 472px;
  max-height: 352px;
  position: relative;
  background: url('assets/img/master1-bg-form.png') center/cover no-repeat;
  border-radius: 4px;
  overflow: visible;
  transition: linear 0.5s;
}
.hero__master-wrapper2 {
  max-width: 472px;
  max-height: 352px;
  position: relative;
  background: url('assets/img/portfolio-bg.jpg') center/cover no-repeat;
  border-radius: 4px;
  overflow: visible;
  transition: linear 0.5s;
}

.hero__master-wrapper3 {
  position: relative;
}

.hero__master-wrapper2:hover,
.hero__master-wrapper1:hover,
.hero__master-wrapper:hover {
transform: scale(98%);
}

.hero__master-block {
  position: relative;
  border: 2px solid #E8B289;
  box-shadow: 0 0 30px rgba(232, 178, 137, 0.5);
  width: 470px;
  height: 350px;
  border-radius: 4px;
}

.hero__master-img {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  max-width: 420px;
  width: 100%;
  height: 420px;
  transition: linear 0.5s;
}

.hero__master-img1 {
  position: absolute;
  bottom: -150px;
  right: -50px;
  max-width: 630px;
  width: 100%;
  max-height: 630px;
  object-fit: contain;
}

.hero__master-img:hover {
  transform: translate(5px, 0);


}

.hero__tag {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #d0a683;
  color: #fff;
  font-weight: bold;
  padding: 15px 15px;
  border-radius: 0 4px 0 0;
}

.hero__features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1160px;
  width: 100%;
  margin: 40px auto 20px;
  padding: 0;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.hero__feature {
  display: block;
  max-width: 370px;
}

.hero__feature strong {
  position: relative;
  padding-left: 40px;
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.hero__feature strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 32px;
  height: 8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.marker1::before {
  background-image: url('assets/img/marker1.png');
}

.marker2::before {
  background-image: url('assets/img/marker2.png');
}

.marker3::before {
  background-image: url('assets/img/marker3.png');
}
@media (max-width: 1024px) {
  .hero,
  .hero1,
  .hero2,
  .hero3,
  .hero4,
  .hero5 {
    height: auto;
    padding: 120px 20px 40px;
    background-position: center;
    background-size: cover;
  }
  .hero1 {
    height: 920px !important;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('assets/img/review-bg.jpg') center/cover no-repeat;
}

.hero1 img {
  max-width: 450px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 50%; 
  transform: translateX(50%);
}

  .hero .hero__master-wrapper {
    order: 0;
  }
  .hero .hero__content {
    order: 2;
  }

  .hero__conteiner {
    flex-direction: column;
    padding-top: 0;
    gap: 30px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__title {
    margin-bottom: 12px;
  }

  .hero__subtitle {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .hero__text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero__features {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    margin-top: 30px;
  }

  .hero__feature {
    width: 280px;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    font-size: 14px;
  }
  .hero__feature strong::before {
    display: block;
    position: absolute;
    top: 3px;
    left: 60px;
  }

  .hero__feature strong {
    font-size: 16px;
    padding-left: 40px;
  }


  .hero__master-wrapper,
  .hero__master-wrapper1,
  .hero__master-wrapper2 {
    max-width: 80%;
    max-height: none;
    height: auto;
    background-size: cover;
    margin: 0 auto;
  }
  .hero__master-wrapper2 {
    background: url('assets/img/portfolio-bg.jpg') center/cover no-repeat;
    background-size: cover;
  }
  .hero__master-block {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero__master-img,
  .hero__master-img1 {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }

  .hero__tag {
    font-size: 12px;
    padding: 10px 12px;
    bottom: 0;
  }
}

@media (max-width: 768px) {

  .hero1 img {
    max-width: 420px;
}
  .hero1 {
    height: 880px !important;
  }
}

@media (max-width: 480px) {

  .hero1 img {
    max-width: 320px;
}

  .hero1 {
    height: 740px !important;
  }

}

/* Преимущества */

.advantages {
  background-color: #DCDCDC;
  width: 100%;
  height: 600px;
  padding: 60px 0;
  margin: 0 auto;
}

.advantages__container {
  max-width: 1160px;
  width: 100%;
  height: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.advantages__subtitle {
  font-family: var(--font-main);
  font-size: 14px;
  color: #878787;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 0%;
}

.advantages__title {
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -2%;
  text-transform: uppercase;
  font-size: 78px;
  margin: 10px auto;
  color: #2d2c2c;
}

.advantages__title span {
  color: #d0a683;
}

.advantages__text {
  font-family: var(--font-main);
  font-size: 14px;
  color: #878787;
  margin-bottom: 50px;
}

.advantages__list {
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
  flex-wrap: wrap;
}

.advantages__item {
  display: flex;
  background-color: transparent;
  border-radius: 4px;
  padding: 40px 30px 30px;
  position: relative;
  max-width: 370px;
  width: 100%;
  height: 370px;
  box-sizing: border-box;
  text-align: center;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('assets/img/master-bg-form.png') center/cover no-repeat;
}

.advantages__item--highlighted {
  background-color: #D0A683;
  background-image: none;
}

.advantages__item--highlighted .advantages__item-title {
  color: #fff;
}

.advantages__icon {
  width: 56px;
  height: 56px;
  background-image: url('assets/img/adv-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  padding: 8px;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages__item--highlighted .advantages__icon {
  background-image: url('assets/img/adv-icon1.png');
  background-position: center;
  background-repeat: no-repeat;
}


.advantages__item-title {
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}
.advantages__item p {
  font-family: var(--font-main);
  font-size: 16px;
  color: #fff;
  line-height: 120%;
}
/* адаптив */

@media (max-width: 1024px) {
  .advantages {
  padding: 20px 0;
  }


  .advantages__list {
  max-width: 1024px;
  padding: 0 20px;
  }
  .advantages__item {
   max-width: 300px;
   height: auto;
  
  }

  .advantages__icon {
    display: none;
  }

}
@media (max-width: 768px) {
  .advantages {
    height: auto;
  }

  .advantages__container {
    height: auto;
  }
  .advantages__title {
    max-width: 320px;
  }
  .advantages__text {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }
  .advantages__item {
    background: none;
    text-align: center;
  }

    .advantages__item--highlighted {
    color: #2D2C2C;
  }

  .advantages__item--highlighted .advantages__icon {
    display: none;
  }
  .advantages__item--highlighted .advantages__item-title,
  .advantages__item-title,
  .advantages__item p {
    color: #2d2c2c;
  }
  .advantages__item {
    max-width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .advantages__icon {
    top: -28px;
    width: 48px;
    height: 48px;
  }

  .advantages__item-title {
    font-size: 28px;
  }

  .advantages__item p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .advantages__item {
    padding: 0 20px;
  }

}

/* Услуги */

.services {
  width: 100%;
  background-color: #DCDCDC;
  margin: 0 auto;
  padding: 80px 0;
}

.services__container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.services__label {
  font-size: 14px;
  text-transform: uppercase;
  color: #878787;
  margin: 0 auto;
  padding: 10px 0;
  letter-spacing: 1px;
  background-color: #DCDCDC;
}

.services__title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #D0A683;
  font-weight: 700;
  margin: 10px auto;
}

.services__subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  text-align: left;
}

.service-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 4px;
}

.service-card img:hover {
/*   animation: shake 0.1s; */
/*   animation-iteration-count: infinite; */
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.service-card h3 {
  font-family: var(--font-accent);
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2D2C2C;
  position: relative;
  padding-bottom: 14px;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #E8B289;
}

.service-card strong {
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #2D2C2C;
}

.service-card p {
  font-size: 16px;
  font-weight: 400;
  color: #2D2C2C;
  line-height: 1.4;
}

.services__btn-wrapper {
  text-align: center;
}

/* адаптив */

@media (max-width: 1024px) {
 .services__container {
  padding: 0 20px;
 }

  .services {
  padding: 0;
  }
  .services__title {
    font-size: 40px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card strong {
    font-size: 12px;
  }

  .service-card p {
    font-size: 14px;
  }

  .services__title {
    font-size: 32px;
  }

  .services__subtitle {
    font-size: 14px;
  }

  .services {
    padding: 60px 20px;
  }

  .services__container {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .services {
      padding: 0;
 }
 .services__container {
  padding: 0;
 }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center; 
  gap: 10px;
  padding: 0 20px;
}
.service-card p {
  display: none;
}
}



/*  Акции  */

.promo-section {
  width: 100%;
  max-height: 940px;
  height: 100%;
  color: #fff;
  padding: 0;
  margin: 20px auto;
  font-family: var(--font-main);
  text-align: center;
}

.promo-container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}

.promo-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: #878787;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.promo-title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #fff;
  font-weight: 700;
  margin: 10px auto;
  text-transform: uppercase;
}

.promo-title span {

  color: #D0A683;
}

.promo-note {
  color: #878787;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 50px;
}

.promo-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.promo-card {
  background: #2A2A2A;
  border-radius: 4px;
  max-width: 370px;
  min-height: 400px;
  overflow: hidden;
  text-align: left;
  padding-bottom: 20px;
  transition: linear 0.5s;
}

.promo-card:hover {
  transform: scale(103%);
}

.promo-card.faded {
  opacity: 0.5;
}

.promo-card.faded:hover {
  animation: init 1.5s forwards;
}

@keyframes init {
  0% {opacity: 0.5;}
  100% {opacity: 1;}
}

.promo-card.active {
  opacity: 1;
}

.promo-img {
  position: relative;
  overflow: hidden;
  height: 256px;
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-badge {
  position: absolute;
  top: -75px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: rgba(232, 179, 131, 0.9);
  display: flex;
  border-radius: 200px;
}

.promo-badge span {
  margin-left: 500px;
  background: none;
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 165px 240px;
}

.promo-badge img {
  width: 64px;
  height: 64px;
  margin: 170px 300px;
}

.promo-card, .promo-card1 h3 {
  font-family: var(--font-accent);
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.promo-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  color: #878787;
  margin: 0;
}

.promo-swiper {
  display: none;
}

@media (max-width: 1024px) {
  .promo-container {
  max-width: auto;
  margin: 0 auto;
  }
.promo-card {
  max-width: 300px;
}
}
@media (max-width: 768px) {

  .promo-card, .promo-card1 {
    text-align: center;
  }

  .promo-card.faded {
  display: none;
}

.promo-title {
  max-width: 300px;
}
}




/* Сотрудничество */

.cooperation-section {
  font-family: var(--font-main);
  color: #fff;
  width: 100%;
  height: 760px;
  background-color: #DCDCDC;
  margin: 0 auto;
  padding: 80px 0;
}

.cooperation-bg {
  position: relative;
  max-width: 1160px;
  width: 100%;
  height: 700px;
  background: url('assets/img/bg-hero.png') no-repeat center center / cover;
  padding: 0;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden; 
  z-index: 1;
}

.cooperation-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 1;
  border-radius: 8px;
}

.cooperation-bg .container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.cooperation-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: #878787;
  font-weight: 400;
  margin-top: 80px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.cooperation-title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  color: #fff;
  font-weight: 700;
  margin: 10px auto;
  text-transform: uppercase;
}

.cooperation-title span {
  color: #D0A683;
}

.cooperation-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 50px;
}

.cooperation-benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  padding: 20px 50px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 4px;
  max-width: 250px;
  width: 100%;
  height: 230px;
  text-align: center;
  color: #fff;
  transition: 0.3s ease;
  z-index: -1;
  margin: 50px 0;
}

.benefit-card img {
  width: 82px;
  height: 82px;
  margin-bottom: 16px;
  border-radius: 4px;
  margin-top: 50px;
}

.benefit-card p {
  font-family: var(--font-main);
  color: #fff;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .cooperation-section {
    height: auto;
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .cooperation-bg {
    width: 100%;
    height: auto;
    padding: 40px 0;
  }

  .cooperation-bg::before {
  width: 100%;
  }

  .cooperation-bg .container {
    padding: 0;
  }

  .cooperation-subtitle {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 12px;
  }

  .cooperation-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .cooperation-desc {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .cooperation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
  }

  .benefit-card {
    width: 300px;
    height: auto;
    margin: 20px auto;
    padding: 30px 10px;
  }

  .benefit-card img {
    display: none;
  }

  .benefit-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .btn-callback {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {

  .cooperation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  
    margin: 0 auto;

  }
  .cooperation-title {
    max-width: 300px;
    font-size: 28px;
  }

  .cooperation-desc {
    max-width: 300px;
    font-size: 13px;
    margin: 20px auto;
  }
  .benefit-card {
    max-width: 140px;
    height: auto;
    gap: 10px;
  }
  .benefit-card p {
    font-size: 13px;
  }
}

/* Форма обратной связи */

.consult {
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
  background-color: #DCDCDC;
}

.consult__container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.consult__label {
  font-family: var(--font-main);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  margin-bottom: 10px;
}

.consult__title {
  color: #D0A683;
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  margin: 10px auto;
  text-transform: uppercase;
}

.consult__title span {
  color: #2d2c2c;;
  font-weight: 800;
}

.consult__subtitle {
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #878787;
  margin-bottom: 50px;
}

.consult__body {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.consult__form-block {
  background: #2d2d2d;
  color: #fff;
  border-radius: 4px;
  padding: 40px 30px;
  flex: 1 1 520px;
  text-align: center;
  box-sizing: border-box;
  max-height: 470px;
}

.consult__form-title {
  font-family: var(--font-accent);
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 20px auto;
}


.consult__form-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #A5A5A5;
}

.consult__form input[type="text"],
.consult__form input[type="tel"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: none;
  background: #444;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  box-sizing: border-box;
}

.consult__checkbox {
  display: flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  margin: 16px 0 30px;
  color: #fff;
}

.consult__form a {
  text-decoration: none;
  color: #fff;
}

.consult__checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  background-color: #2d2d2d;
  cursor: pointer;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 20px;
}

.consult__checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.consult__image-block {
  position: relative;
  flex: 1 1 520px;
  max-width: 570px;
  width: 100%; 
  height: 470px;
  background: url('assets/img/master-bg-form.png') no-repeat center center / cover;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: visible;
}

.consult__image-block img {
  position: relative; 
  max-width: 546px;
  height: auto;
  margin-right: -50px; 
  z-index: 1;
}

.consult__socials {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 2;
}

.consult__socials a {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.consult__socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.consult__socials a:hover img {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .consult {
    padding: 20px 0;
  }
    .consult__body {
    gap: 0;
    justify-content: center;
  }

  .consult__form-title {
    padding: 0 20px;
  }
  .consult__image-block {
    order: -1; 
    margin-bottom: 0;

  }

  .consult__form-block {
    order: 0; 
    margin-top: 0;
    max-width: 570px;
    max-height: 490px;
  }

  .consult__image-block {
    max-height: 440px;
  }

  .consult__image-block img {
    max-width: 500px;
    margin-right: -30px;
  }
}

@media (max-width: 480px) {
  .consult {
    padding: 0;
  }
.consult__label {
  padding: 10px 0;
}
  .consult__form-title {
    font-size: 22px;
  }

  .consult__subtitle {
    font-size: 14px;
  }

  .consult__form-subtitle {
    font-size: 14px;
  }

  .consult__image-block {
    height: 260px;
    max-height: 260px;
    overflow-x: hidden;
  }

  .consult__image-block img {
    max-width: 260px;
  }

  .consult__checkbox {
    font-size: 11px;
    flex-wrap: wrap;
  }

  .consult__socials {
    gap: 8px;
    bottom: 8px;
    left: 8px;
  }

  .consult__socials a {
    width: 32px;
    height: 32px;
  }
}



/* Портфолио */

.portfolio {
  width: 100%;
  text-align: center;
  background-color: #DCDCDC;
  margin: 0 auto;
  padding: 20px 0 30px;
}

.portfolio__container {
  max-width: 1160px;
  margin: 0 auto;
}

.portfolio__label {
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.portfolio__title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  color: #D0A683;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.portfolio__title span {
  color: #333;
}

.portfolio__subtitle {
  font-family: var(--font-main);
  color: #878787;
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 40px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  transition: linear 0.5s;
}

.portfolio__item img:hover {
  transform: scale(103%);
}

.portfolio__btn-wrapper {
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }
}

.portfolio__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  transition: linear 0.5s;
}

.portfolio__item img:hover {
  transform: scale(103%);
}

.portfolio__btn-wrapper {
  margin-top: 40px;
}

/* Слайдер в портфолио на главной*/

.slider-container {
  position: relative;       
  width: 376px;
  height: 256px;      
  overflow: hidden;
  user-select: none;  
  background: #DCDCDC; 
  margin: 0 auto; 
}

.slider-container img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  pointer-events: none;
  user-select: none;
}

.slider-before {
  clip-path: inset(0 50% 0 0); 
  z-index: 1;
  transition: none !important;
}

.slider-after {
  clip-path: inset(0 0 0 50%); 
  z-index: 0;
  transition: none !important;
}

.slider-handle {
  position: absolute;
  top: 50%;               
  left: 50%;              
  width: 10px;
  height: 60px;           
  background-color: #fff;
  border: 2px solid rgba(0,0,0,0.8);
  cursor: ew-resize;
  transform: translate(-50%, -50%); 
  box-sizing: border-box;
  user-select: none;
  z-index: 20;
}

.slider-rhombus {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.8);
  transform: translate(-50%, -50%) rotate(45deg); 
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  z-index: 1;
}

/* Слайдер на странице портфолио */

.slider-container1 {
  position: relative;
  width: 570px;
  height: 410px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slider-container1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
}

.slider-container1 .slider-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.slider-container1 .slider-after {
  z-index: 1;
  clip-path: inset(0 0 0 50%);
}

.slider-container1 .slider-handle {
  position: absolute;
  top: 50%;               
  left: 50%;              
  width: 10px;
  height: 60px;           
  background-color: #fff;
  border: 2px solid rgba(0,0,0,0.8);
  cursor: ew-resize;
  transform: translate(-50%, -50%); 
  box-sizing: border-box;
  user-select: none;
  z-index: 20;
}

.slider-container1 .slider-rhombus {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid rgba(0,0,0,0.8);
  transform: translate(-50%, -50%) rotate(45deg); 
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  z-index: 5;
}

@media (max-width: 1024px) {

.slider-container1 {
  max-width: 480px;
  max-height: 420px;
  height: auto;
}
}

@media (max-width: 768px) {

.slider-container1 {
  max-width: 320px;
  height: auto;
}
}
/* Как мы работаем */

/* .howwork {
  height: 600px;
  margin: 0 auto;
  padding: 170px 0 0 0;
  background-color: #DCDCDC;
  align-items: center;
  justify-content: center;
} */

.howwork {
  height: auto;
  margin: 0 auto;
  padding: 136px 0 56px 0;
  background-color: #DCDCDC;
  align-items: center;
  justify-content: center;
}

.howwork1 {
  height: 600px;
  margin: 0 auto;
  padding: 170px 0 0 0;
  background-color: #2D2C2C;
  align-items: center;
  justify-content: center;
}

.howwork__container {
  max-width: 1160px;
  height: 360px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.howwork__subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  text-transform: uppercase;
  margin: 0;
}
.howwork__title1,
.howwork__title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  color: #D0A683;
  text-align: center;
  text-transform: uppercase;
  margin: 20px auto 10px;
}
.howwork__title1{
  color: #FFF;
}

.howwork__title1 span {
  color: #D0A683;
}

.howwork__title-thin {
  color: #2D2C2C;
}

.howwork__title-accent {
  color: #D0A683;
}

.howwork__description {
  font-family: var(--font-main);
  text-align: center;
  color: #878787;
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 40px;
}

.howwork__steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.howwork__step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.howwork__step img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;

}

@keyframes how-we-work-swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(45deg);
  }
  75% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.howwork__step img {
  transition: none; 
}

.howwork__step:hover img {
  animation: how-we-work-swing 0.7s ease-in-out infinite;
  animation-fill-mode: none;
  will-change: transform;
}
.howwork__label1,
.howwork__label {
  font-size: 14px;
  color: #2D2C2C;
  line-height: 120%;
  letter-spacing: 0%;
  font-weight: 600;
  text-transform: uppercase;
}

.howwork__label1 {
  text-align: center;
  color: #FFF;
}

/* Страница Услуги */

.services_str {
  margin: 0 auto;
  padding: 0;
  background-color: #DCDCDC;
}

.services_str_container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 0;
}

.services_str_label {
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  text-transform: uppercase;
  margin: 0;
}

.services_str_title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  color: #D0A683;
  text-align: center;
  text-transform: uppercase;
  margin: 20px auto 10px;
}
.services_str_title span {
  color: #2d2d2d;
}

.services_str_subtitle {
  text-align: center;
  color: #878787;
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 40px;
}

.services_str_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

.services_str_item {
  max-width: 572px;
  max-height: 760px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

.services_str_item img {
  border-radius: 4px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.services_str_item h3 {
  font-family: var(--font-accent);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0%;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #2D2C2C;
}
.services_str_item .servises_str_line {
  width: 82px;
  height: 4px;
  background-color: #D0A683;
  margin-bottom: 10px;
}

.services_str_item strong {
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 600;
  color: #878787;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  color: #2D2C2C;
}

.services_str_item ul {
  height: 76px;
  list-style: disc inside;
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  margin-bottom: 20px;
  padding-left: 10px;
}
.services_str_item p {
  height: 28px;
  font-family: var(--font-main);
  font-size: 12px;
  margin: 5px 0;
  line-height: 120%;
  letter-spacing: 0%;
}

.services__btn-wrapper .btn-callback{
  margin: 20px auto;
  bottom: 20px !important; 
}

/* Адаптив Услуги */
@media (max-width: 1280px) {
  .services_str_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 1024px) {
  .services_str_container {
    padding: 0 20px;
  }

  .services_str_title {
    font-size: 40px;
  }

  .services_str_grid {
    gap: 30px 16px;
  }

  .services_str_item h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {

  .services_str_label {
    padding: 10px 0;
  }
  .services_str_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services_str_title {
    font-size: 32px;
  }

  .services_str_item ul {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .services_str_title {
    font-size: 28px;
  }

  .services_str_subtitle {
    font-size: 14px;
  }

  .services_str_btn {
    padding: 10px;
    font-size: 13px;
  }
}

@media (max-width: 320px) {
  .services_str_container {
    padding: 0 10px;
  }

  .services_str_title {
    font-size: 24px;
  }

  .services_str_item h3 {
    font-size: 16px;
  }

  .services_str_item strong {
    font-size: 13px;
  }

  .services_str_item ul {
    font-size: 12px;
  }
}
/* Часто заказывают */
.combo {
  background-color: #2e2d2c;
  padding: 0;
  margin: 0 auto;
}

.combo-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 0;
  color: fff;
  text-align: center;
}

.combo .combo-title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #fff;
}

.combo .highlight {
  color: #D0A683;
}
.combo-container h3 {
  font-family: var(--font-accent);
  font-size: 40px;
  margin: 30px auto;
  text-align: center;
}

.combo-container .promo-badge img {
  width: 100px;
  height: 100px;
  margin: 150px 250px;
}

.promo-card1 {
  background: #2A2A2A;
  border-radius: 4px;
  width: 370px;
  min-height: 400px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: linear 0.5s;
}

.promo-card1:hover {
  transform: scale(103%);
}

.combo-container .btn-callback {
  display: inline-block;  
  margin: 0 auto;        
}

/* Адаптив */
@media (max-width: 1200px) {
.combo .combo-title {
  font-size: 55px;
  }
  .combo-container h3 {
    font-size: 28px;
  }

  .combo__card {
    max-width: 310px;
  }

  .promo-card1 {
    max-width: 310px;
  }
  .combo__icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1024px) {
.combo .combo-title {
  font-size: 40px;
  }
  .combo-container h3 {
    font-size: 24px;
  }
}



@media (max-width: 768px) {
  .combo__grid {
    flex-direction: column;
    align-items: center;
  }

  .combo__card {
    width: 100%;
    max-width: 400px;
  }

  .combo .section-title {
    font-size: 38px;
  }
}

/* ====== ОТЗЫВЫ ====== */

.reviews {
  background-color: #2a2828;
  padding: 50px 0;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

.reviews__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.reviews__subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.reviews__title {
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
  padding: 0;
}
.reviews__title span {
  color: #D0A683;
}
.reviews__desc {
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
}

/* Swiper wrapper */
.reviews__slider {
  overflow: hidden;
  padding: 0 15px;
}

/* Один отзыв */
.review-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  max-width: 376px;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.review-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); 
  z-index: 1;
  transition: background 0.6s ease; 
}
.review-slide:hover::before {
  background: rgba(0, 0, 0, 0.75);
}
.review-slide__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
}
.review-slide__author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-slide__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-slide__author-info {
  font-size: 15px;
  line-height: 1.3;
}

.review-slide__author-info span {
  display: block;
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
}

.review-slide__author-info img {
  width: 20px;
  height: 20px;
}

.review-slide__author-info small {
  display: flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
}



.review-slide__text {
  font-family: var(--font-main);
  font-size: 16px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
}

/* Swiper стили */
.swiper-slide {
  width: 376px;
}


/* Цены на странице */

.pricing-section {
  margin: 0 auto;
  padding: 100px 0;
  background-color: #DCDCDC;
}

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

.pricing-container .btn-callback {
  display: block;
  margin: 50px auto;
  padding: 10px 80px;
}

.pricing__subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  text-transform: uppercase;
  margin: 20px auto 10px;
  padding: 0;
}

.section-title {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto;
  color: #D0A683;
  padding: 0;
}

.section-title span {
  color: #2D2C2C;
}

.section-subtitle {
  font-family: var(--font-accent);
  text-align: center;
  font-size: 40px;
  letter-spacing: 0%;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.pricing-column h4 {
  font-family: var(--font-accent);
  text-align: left;
  font-size: 40px;
  letter-spacing: 0%;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.pricing-item-title {
  height: 29px;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 600;
  display: flex;
  color: #2D2C2C;
  gap: 8px;
  justify-content: space-between;
  border-bottom: 4px solid #D0A683;
  text-transform: uppercase;
}

.pricing-item {
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  color: #2D2C2C;
  padding: 8px 0;
}

.service-low {  
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  margin-top: 20px;
}
.service-low img {
  width: 12px; 
  height: 12px;
  margin: 0 5px;
}

.service {
  max-width: 70%;
}

.price {
  white-space: nowrap;
  font-size: 16px;
}
@media (max-width: 1024px) {
.pricing-container {
  padding: 0 20px;
}
}
@media (max-width: 768px) {
.pricing-grid {
      grid-template-columns: 1fr;
}
}

/*    Политика    */

.privacy-policy {
  width: 100%;
  background-color: #2D2C2C;
  color: #fff;
  padding: 0;
  margin: 0 auto;
}

.privacy-policy-container {
  max-width: 1160px;
  margin: 150px auto 50px;
}

.privacy-policy-container h1 {
  font-family: var(--font-accent);
  font-size: 80px;
  color: #F4B183;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 90%;
  letter-spacing: -2%;
}

.privacy-policy-container span {
  color: #fff;
}

.privacy-policy-container h2 {
  font-family: var(--font-accent);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0%;
  line-height: 100%;
  color: #fff;
  text-transform: uppercase;
}

.privacy-policy-container p {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}

/* Контакты */

.contacts {
  margin: 0 auto;
  padding: 100px 0;
  background-color: #DCDCDC;
}

.contacts__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
}

.contacts__subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 0%;
  line-height: 120%;
  font-weight: 400;
  color: #878787;
  text-transform: uppercase;
  margin: 20px auto 10px;
  padding: 0;
}

.contacts__title {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 78px;
  line-height: 120%;
  letter-spacing: -2%;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 auto;
  color: #2D2C2C;
  padding: 0;
}

.contacts__text {
  text-align: center;
  color: #999;
  margin-bottom: 60px;
}

.contacts__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contacts__col {
  flex: 1 1 290px;
}

.contacts__block {
  margin-bottom: 40px;
  padding-bottom: 20px;
  align-items: center;
}

.contacts__block-title {
  font-family: var(--font-accent);
  text-align: center;
  font-size: 40px;
  letter-spacing: 0%;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #2d2c2c;
  padding-bottom: 20px;
  border-bottom: 4px solid #D0A683;
}

.icon-text {
  color: #2D2C2C;
  display: flex;
  align-items: center;
  gap: 8px; 
  margin: 0; 
}

.icon-text img {
  width: 32px; 
  height: auto;
}
.icon-text a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px; 
  margin: 0; 
  color: #2D2C2C;
}


.contacts__block p {
  font-size: 14px;
  color: #333;
  margin: 6px 0;
}

.contacts__block strong {
  font-weight: 600;
  color: #2d2c2c;
}

.contacts__social-icons {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.contacts__social-icons img {
  width: 32px;
  height: 32px;
  background-color: #D0A683;
  padding: 6px;
  border-radius: 4px;
  transition: 0.3s;
}

.contacts__social-icons a:hover img {
  background-color: #b7895c;
}

.contacts__map {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 2px solid #D0A683;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .contacts__content {
    flex-direction: column;
    align-items: center; 
    gap: 40px; 
  }

  .contacts__block h3 {
    text-align: left;
  }

  .contacts__block {
    text-align: left;
  }

  .contacts__col,
  .contacts__map {
    width: 95%;
    margin: 0 auto;
  }
}
/* Команда в контактах */

.team {
  padding: 100px 0;
  background: #DCDCDC;
  margin: 0 auto;
}

.team__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

.team__subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 14px;
  color: #878787;
  text-transform: uppercase;
}

.team__title {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -2%;
  line-height: 120%;
  text-transform: uppercase;
  margin: 20px auto;
  color: #D0A683;
}

.team__title span {
  color: #2D2C2C;
}

.team__text {
  text-align: center;
  color: #999;
  font-size: 16px;
  margin-bottom: 100px;
}

.team__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.team__card {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 470px;
  border: 3px solid #D0A683;
  border-radius: 4px;
  overflow: visible;
  background: url('assets/img/master1-bg-form.png') no-repeat center bottom / cover;
  transition: transform 0.8s ease;
}

.team__card span {
color: #2D2C2C;;
}

.team__photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.8s ease;
}

.team__card:hover {
  transform: scale(1.05); 
}

.team__card:hover .team__photo {
  transform: translateX(calc(-50% + 10px)); 
}
/* Адаптив */

@media (max-width: 768px) {
  .team__grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .team__card {
    width: 90%;
    aspect-ratio: 1 / 1.1;
  }

  .team__photo {
    max-width: 360px;
  }
}

@media (max-width: 480px) {
  .team__photo {
    max-width: 340px;
  }

  .team__text {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .team__card {
    border-width: 2px;
  }
}

/* Подпись */
.team__info {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #D0A683;
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  line-height: 1.3;
  text-transform: uppercase;
  border-top-right-radius: 12px;
  z-index: 3;
}


/* 404 */

.error-page {
  align-items: center;
  background: linear-gradient(to bottom, #2D2C2C 30%, #878787 70%);
  color: #fff;
  margin: 0 auto;
  padding: 0;
}

.error-container {
  max-width: 1160px;
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 150px 0;
  overflow-x: hidden;
  background: none;
  align-items: center;
  justify-content: center;
}

.error-content {
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.error-content .btn-callback {
  max-width: 280px;
  width: 100%;
}

.error-content h1 {
  font-family: var(--font-accent);
  font-size: 240px;
  font-weight: 700;
  line-height: 90%;
  letter-spacing: -2%;
  margin: 0 auto;
}

.error-content h2 {
  font-family: var(--font-accent);
  font-size: 40px;
  margin: 30px 0;
  color: #D0A683;
  font-weight: 700;
  letter-spacing: 0%;
  line-height: 100%;
}
.error-image img {
  max-height: 80vh;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .error-page {
    flex-direction: column;
    text-align: center;
  }

  .error-image img {
    max-width: 300px;
    margin-top: 30px;
  }

  .error-content h1 {
    font-size: 100px;
  }

  .error-content .subtitle {
    font-size: 20px;
  }
}


/*   Футер */

.site-footer {

  width: 100%;
  background-color: #2D2C2C;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  margin: 0 auto;
  padding: 30px 0;
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-socials a{
  background: #d0a683;
  color: #fff;
  padding: 5px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-socials a:hover {
  background: #b78e6f;
}


.footer-socials img {
  width: 28px;
  height: 28px;
}

.footer-menu a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  text-transform: uppercase;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-menu {
  display: flex;
  gap: 24px;
}

.footer-logo img {
  width: 82px;
  height: 82px;
  transition: linear 0.5s;
}

.footer-logo img:hover {
 transform: rotate(30deg);
 border-radius: 50% 20% / 10% 40%;
}

.footer-button .btn-callback {
  background: #d0a683;
  font-size: 14px;
  padding: 10px 24px;
  transition: background 0.3s ease;
}

.footer-button .btn-callback:hover {
  background: #b78e6f;
}

.footer-contacts {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  width: 180px;
  gap: 6px;
}

.contact-item .label {
  max-width: 100px;
  width: 100%;
  height: 32px;
  background: url('assets/img/phone.png') no-repeat left center / cover;
  background-size: 32px 32px;
  text-align: center;
  justify-content: end;
  padding: 18px 0 0 10px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #C8A484;
}


.contact-item .label3 {
  max-width: 100px;
  width: 100%;
  height: 32px;
  background: url('assets/img/adress.png') no-repeat left center / cover;
  background-size: 32px 32px;
  text-align: center;
  justify-content: end;
  padding: 18px 0 0 5px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #C8A484;
}

.contact-item .label1 {
  max-width: 100px;
  width: 100%;
  height: 32px;
  background: url('assets/img/mail.png') no-repeat left center / cover;
  background-size: 32px 32px;
  text-align: center;
  justify-content: end;
  padding: 18px 0 0 5px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #C8A484;
}

.contact-item .label2 {
  max-width: 100px;
  width: 100%;
  height: 32px;
  background: url('assets/img/time.png') no-repeat left center / cover;
  background-size: 32px 32px;
  text-align: center;
  justify-content: end;
  padding: 18px 0 0 20px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #C8A484;
}

.contact-item .value {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #474747;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 13px;
  color: #878787;
}

.footer-bottom .copyright,
.footer-bottom .privacy-policy {
  flex: 1;
}

.footer-bottom .copyright {
  text-align: left;
}

.footer-bottom .privacy-policy {
  text-align: right;
}

.footer-bottom a {
  color: #878787;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-mobile-header {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 40px;
  margin: 0 auto;
}

.footer-mobile-logo img {
  width: 80px;
  height: auto;
}

.footer-mobile-text {
  align-items: center;
}

.footer-mobile-text p {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin: 20px 0 0 50px;
  line-height: 120%;
  text-transform: uppercase;
}

.footer-mobile-text span {
  font-family: var(--font-main);
  margin: 20px 0 0 50px;
  line-height: 120%;
  font-size: 12px;
  font-weight: 400;
  color: #D0A683;
}

/* Адаптация для мобильных */

@media (max-width: 1024px) {
.footer-menu {
  display: none;
}
.footer-top {
  padding: 0 20px;
}
.footer-bottom {
  padding: 0 20px;
}
}

@media (max-width: 768px) {
  .footer-mobile-header {
    display: flex;
  }
  .footer-top {
    padding: 0 20px;
    align-items: center;
    order: 2;
    flex-direction: row;
  }

  .footer-top .btn-callback {
    padding: 17px 24px;
    margin: 24px 0;
  }
  .footer-logo,
  .footer-menu {
    display: none !important;
  }

  .footer-contacts {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
  }

  .contact-item {
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-button {
    display: flex;
    justify-content: center;
    padding: 15px 0;
  }



  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0 20px;
  }

  .footer-socials a img {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
  }

  .footer-bottom .copyright,
  .footer-bottom .privacy-policy {
    margin: 5px 0;
  }
}

.thankyou {
  max-width: 1160px;
  padding: 0;
  margin: 150px auto;
  font-family: var(--font-main);
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}


@media (max-width: 1200px) {
.hero__subtitle,
.advantages__item-title,
.service-card h3,
.promo-card, .promo-card1 h3,
.consult__form-title,
.services_str_item h3,
.combo-container h3,
.section-subtitle,
.pricing-column h4,
.contacts__block-title{
  font-size: 28px;
}
}

@media (max-width: 1200px) {
.advantages__title,
.services__title,
.promo-title,
.promo-badge,
.cooperation-title,
.consult__title,
.portfolio__title,
.howwork__title1,
.howwork__title,
.services_str_title,
.combo-title,
.reviews__title,
.section-title,
.contacts__title,
.team__title {
  font-size: 55px;
}
.hero__title {
    font-size: 57px;
}
}
@media (max-width: 1024px) {
.advantages__title,
.services__title,
.promo-title,
.promo-badge,
.cooperation-title,
.consult__title,
.portfolio__title,
.howwork__title1,
.howwork__title,
.services_str_title,
.combo-title,
.reviews__title,
.section-title,
.contacts__title,
.team__title {
  font-size: 40px;
}
.hero__title {
    font-size: 42px;
}
}
@media (max-width: 1024px) {
.hero__subtitle,
.advantages__item-title,
.service-card h3,
.promo-card, .promo-card1 h3,
.consult__form-title,
.services_str_item h3,
.combo-container h3,
.section-subtitle,
.pricing-column h4,
.contacts__block-title{
  font-size: 26px;
}
}