@charset "UTF-8";
@import 'reset.css';
@import 'fonts.css';
:root {
  --black: #262D38;
  --white: #FFFFFF;
  --swamp-blue: #33486B;
  --dark-blue: #07265C;
  --blue: #1056D0;
  --blue-navi: #146AFF;
  --gray: #DEE6EE;
}

html {
  font-family: "Inter";
  background-color: var(--white);
  letter-spacing: -0.01em;
}

body {
  min-width: 320px;
  position: relative;
  min-height: 100dvh;
  background-color: var(--white);
}

.wrapper {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100dvh;
}

.header {
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.text {
  font-size: clamp(0.875rem, 0.8173rem + 0.2564vw, 1.125rem);
  line-height: 1.4;
  color: var(--swamp-blue);
}

.title {
  font-size: 42px;
  font-weight: 500;
  font-size: clamp(2rem, -1.125rem + 3.125vw, 2.625rem);
}

.container {
  max-width: 1786px;
  padding: 0 15px;
  margin: 0 auto;
}

.label__block {
  margin-bottom: clamp(2.5rem, 0rem + 2.5vw, 3rem);
}

.label__inner {
  display: inline-flex;
  padding: 20px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.0588235294);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
}

.label {
  padding-left: 20px;
  position: relative;
  font-size: clamp(1rem, 0.375rem + 0.625vw, 1.125rem);
}
.label::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--blue-navi);
}

body.no-scroll {
  overflow: hidden;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(38, 44, 56, 0.8980392157);
  color: var(--black);
  /* Скрытие по умолчанию и анимация */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* Класс, который добавляет JS для открытия */
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup.is-open .popup__inner {
  transform: translateY(0);
  opacity: 1;
}
.popup__inner {
  position: relative;
  width: 100%;
  max-width: 572px;
  /* Заменено width на max-width для адаптивности */
  padding: 50px 40px;
  border-radius: 16px;
  background-color: #f1f4f8;
  /* Плавный всплывающий эффект при открытии */
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: opacity 0.2s ease;
}
.popup__close:hover {
  opacity: 0.7;
}
.popup__content {
  display: flex;
  flex-direction: column;
}
.popup__title {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 16px;
}
.popup__text {
  letter-spacing: -0.01em;
  max-width: 400px;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: var(--swamp-blue);
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.popup__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup__label {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.popup__input {
  width: 100%;
  font-size: 18px;
  border: 1px solid rgba(51, 72, 107, 0.1607843137);
  border-radius: 6px;
  padding: 20px;
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.popup__input::-moz-placeholder {
  color: rgba(51, 72, 107, 0.5019607843);
}
.popup__input::placeholder {
  color: rgba(51, 72, 107, 0.5019607843);
}
.popup__input:focus {
  outline: none;
  border-color: rgba(51, 72, 107, 0.5019607843);
  box-shadow: 0 0 0 4px rgba(20, 106, 255, 0.1);
}
.popup__submit {
  display: flex;
  width: 100%;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  border-radius: 8px;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup__submit:hover {
  background-color: var(--blue-navi);
}
.popup__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.popup__submit-icon {
  display: inline-flex;
}
.popup__status {
  display: none;
  position: relative;
  margin-top: -8px;
  font-size: 15px;
  line-height: 1.4;
}
.popup__status.is-success, .popup__status.is-error {
  display: block;
}
.popup__status.is-success {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #157347;
}
.popup__status.is-success::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #157347;
  animation: success-check-circle 0.32s ease-out both;
}
.popup__status.is-success::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  animation: success-check-mark 0.24s ease-out 0.18s both;
}
.popup__status.is-error {
  color: #B42318;
}

@keyframes success-check-circle {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes success-check-mark {
  from {
    transform: rotate(45deg) scale(0);
  }
  to {
    transform: rotate(45deg) scale(1);
  }
}
.header {
  position: absolute;
  width: 100%;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.0588235294);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1215686275);
}
.header__container {
  height: clamp(4.375rem, 4.121rem + 1.129vw, 5.25rem);
  max-width: 1850px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 15px;
  margin: 0 auto;
}
.header__logo {
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(1.25rem, 1.1774rem + 0.3226vw, 1.5rem);
}
.header__center-block {
  display: flex;
  gap: 40px;
}
.header__center-item {
  position: relative;
  padding-left: 36px;
  font-size: clamp(1rem, 0.375rem + 0.625vw, 1.125rem);
  color: var(--white);
}
.header__center-item::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: -3px;
  left: 0;
  background: url("../images/location.svg") center no-repeat;
}
.header__center-item.clock::before {
  background: url("../images/clock.svg") center no-repeat;
}
.header__right {
  width: 320px;
  background-color: var(--gray);
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-right: calc(-50vw + 50%);
  transition: all 0.3s ease;
}
.header__right:hover {
  background-color: var(--white);
}
.header__right:hover .header__phone-link,
.header__right:hover .header__btn-label {
  color: var(--blue);
}
.header__btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
}
.header__btn-label {
  font-weight: 400;
  font-size: 16px;
}
.header__phone-link, .header__btn-label {
  transition: all 0.3s ease;
}

.hero {
  padding-top: clamp(10.25rem, -2.25rem + 12.5vw, 12.75rem);
  padding-bottom: clamp(4.375rem, -11.25rem + 15.625vw, 7.5rem);
  position: relative;
  max-width: 100%;
  background: url("../images/hero_bg.webp") center/cover no-repeat;
  color: var(--white);
  z-index: 2;
}
.hero::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: rgba(0, 19, 51, 0.7490196078);
}
.hero__container {
  position: relative;
  z-index: 5;
}
.hero__inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.hero__right, .hero__left {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__left-top {
  max-width: 424px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1215686275);
  border: 1px solid rgba(255, 255, 255, 0.1215686275);
  border-radius: 16px;
}
.hero__left-top-title {
  max-width: 300px;
  line-height: 1.2;
  font-size: clamp(1rem, -0.25rem + 1.25vw, 1.25rem);
}
.hero__left-top-title span {
  font-weight: 600;
}
.hero__left-messengers {
  margin-top: 20px;
  display: flex;
  gap: 6px;
}
.hero__left-messenger {
  max-width: 64px;
  overflow: hidden;
}
.hero__left-bottom {
  display: flex;
  flex-direction: column;
}
.hero__title {
  max-width: 640px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 0.9;
  font-size: clamp(3rem, -0.125rem + 3.125vw, 3.625rem);
  margin-bottom: 32px;
}
.hero__subtitle {
  max-width: 572px;
  line-height: 1.4;
  font-size: clamp(1rem, 0.375rem + 0.625vw, 1.125rem);
}
.hero__right {
  max-width: 572px;
  gap: 249px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__right-top {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.hero__right-item {
  position: relative;
  padding-top: 16px;
}
.hero__right-item::before,
.hero__right-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.hero__right-item::before {
  background-color: rgba(255, 255, 255, 0.32);
}
.hero__right-item::after {
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s ease-in-out;
}
.hero__right-item:nth-child(2)::after {
  transition-delay: 0.22s;
}
.hero__right-item:nth-child(3)::after {
  transition-delay: 0.44s;
}
.hero__right-top.is-animated .hero__right-item::after {
  transform: scaleX(1);
}
.hero__right-item-suptext {
  display: block;
  font-size: clamp(1rem, 0.375rem + 0.625vw, 1.125rem);
  line-height: 1.4;
  margin-bottom: 18px;
}
.hero__right-item-num {
  display: inline-block;
  min-width: 5ch;
  font-size: clamp(2.25rem, 1rem + 1.25vw, 2.5rem);
  line-height: 1.4;
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  .hero__right-item::after {
    transform: scaleX(1);
    transition: none;
  }
}
.hero__right-btn {
  display: inline-flex;
  padding: 30px 92px;
  font-weight: 500;
  line-height: 1.4;
  font-size: 18px;
  background-color: var(--blue);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.hero__right-btn:hover {
  background-color: var(--blue-navi);
}

.cards {
  padding-top: clamp(2.5rem, 1.7379rem + 3.3871vw, 5.125rem);
  padding-bottom: clamp(2.5rem, 1.7379rem + 3.3871vw, 5.125rem);
}
.cards__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cards__item {
  padding: 30px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #F1F4F8;
  border-radius: 16px;
}
.cards__item-img {
  max-width: 40px;
}
.cards__item-text {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--swamp-blue);
  font-size: clamp(1.125rem, 0.5rem + 0.625vw, 1.25rem);
}

.works {
  padding-bottom: 20px;
}
.works__container {
  max-width: 1910px;
}
.works__inner {
  display: flex;
  gap: 20px;
}
.works__left {
  flex: 0 0 50%;
  overflow: hidden;
  border-radius: 20px;
}
.works__left img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.works__right {
  border-radius: 20px;
  background-color: #F1F4F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px clamp(1.25rem, 0.5242rem + 3.2258vw, 3.75rem);
}
.works-label__inner {
  border: 1px solid #DEE2E7;
  background-color: var(--white);
  margin-bottom: clamp(2.5rem, 0rem + 2.5vw, 3rem);
}
.works__title {
  margin-bottom: clamp(3rem, -2rem + 5vw, 4rem);
}
.works__text-block {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.7097rem + 1.2903vw, 3rem);
}
.works__text {
  position: relative;
  padding-left: 48px;
}
.works__text::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 0;
  left: 0;
  border: 2px solid var(--blue-navi);
  border-radius: 50%;
}
.works__text::after {
  position: absolute;
  content: "1";
  width: 18px;
  height: 18px;
  top: 4px;
  left: 12px;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--blue-navi);
}
.works__text:nth-child(2)::after {
  content: "2";
  left: 11px;
}
.works__text:nth-child(3)::after {
  content: "3";
  left: 11px;
}
.works__text-top {
  margin-bottom: 12px;
  color: var(--swamp-blue);
  line-height: 1.4;
  font-size: clamp(1.125rem, 0.5rem + 0.625vw, 1.25rem);
  font-weight: 600;
}
.works__text-botom {
  font-size: 16px;
  max-width: 540px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--swamp-blue);
}

.targets {
  padding-top: clamp(7.5rem, -5rem + 12.5vw, 10rem);
  padding-bottom: clamp(5rem, 4.2742rem + 3.2258vw, 7.5rem);
  background-color: #F1F4F8;
}
.targets__title {
  text-align: center;
  margin-bottom: clamp(3.125rem, 0rem + 3.125vw, 3.75rem);
}
.targets__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.625rem, 0.4435rem + 0.8065vw, 1.25rem);
}
.targets__card {
  padding: 20px;
  background-color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.targets__card-left {
  border-radius: 8px;
  background-color: #F1F4F8;
  padding: 16px;
}
.targets__card-img {
  max-width: 32px;
  overflow: hidden;
}
.targets__card-text {
  font-weight: 600;
  color: var(--swamp-blue);
  line-height: 1.4;
}

.prices {
  display: none;
  padding-top: clamp(7.5rem, -5rem + 12.5vw, 10rem);
  padding-bottom: clamp(7.5rem, -5rem + 12.5vw, 10rem);
}
.prices__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prices__table {
  width: 100%;
  border: 1px solid #DEE2E7;
  border-radius: 6px;
}
.prices__table-row {
  display: flex;
  justify-content: space-between;
  padding: 26px 24px;
  color: var(--swamp-blue);
}
.prices__table-row:not(:last-child) {
  border-bottom: 1px solid #DEE2E7;
}
.prices__table-name {
  font-weight: 600;
}

.prices-label__inner {
  margin-bottom: clamp(2.5rem, 0rem + 2.5vw, 3rem);
  border: 1px solid #DEE2E7;
  background-color: #F1F4F8;
}

.odd {
  background-color: #F1F4F8;
}

.feedback {
  padding-bottom: clamp(7.5rem, -5rem + 12.5vw, 10rem);
  background-color: #F1F4F8;
}
.feedback__inner, .feedback__slider {
  min-width: 0;
}
.feedback__title {
  margin-bottom: clamp(2.5rem, 0rem + 2.5vw, 3rem);
}
.feedback :deep(.swiper-wrapper),
.feedback .swiper-wrapper {
  align-items: stretch;
}
.feedback__slider {
  width: 100%;
  overflow: visible !important;
  touch-action: pan-y;
  /* Позволяет свайпать мышкой и пальцем, не блокируя вертикальную прокрутку */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* Запрещает выделение текста мышкой при перетаскивании */
}
.feedback__slide {
  height: auto !important;
  display: flex !important;
  flex-shrink: 0 !important;
  /* Не даем Swiper плющить слайды в 0px */
}
.feedback__card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 1.0685rem + 0.8065vw, 1.875rem);
  background-color: var(--white);
  border-radius: 16px;
  height: 100%;
  width: 100%;
}
.feedback__author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(1.25rem, 1.0685rem + 0.8065vw, 1.875rem);
}
.feedback__avatar {
  border-radius: 8px;
  max-width: 80px;
  max-height: 80px;
  pointer-events: none;
  /* Запрещает "утаскивание" картинки мышкой на ПК */
}
.feedback__name {
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--swamp-blue);
}
.feedback__stars {
  display: flex;
  gap: 2px;
}
.feedback__stars img {
  max-width: 20px;
  max-height: 20px;
  pointer-events: none;
}
.feedback__text {
  max-width: 512px;
  flex: 1 1 auto;
}

.consultation {
  padding-top: 80px;
}
.consultation_title {
  max-width: 488px;
  margin-bottom: clamp(1.5rem, -1rem + 2.5vw, 2rem);
}
.consultation_title span {
  color: var(--blue);
}
.consultation__inner {
  padding: 20px;
  display: flex;
  gap: 20px;
  background-color: #F1F4F8;
  border-radius: 16px;
  overflow: hidden;
}
.consultation__left {
  margin-left: 40px;
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consultation__text {
  max-width: 344px;
  line-height: 1.3;
  margin-bottom: clamp(3.75rem, 3.3871rem + 1.6129vw, 5rem);
}
.consultation__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  background-color: var(--white);
  border-radius: 16px;
}
.consultation__phone {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: clamp(1.25rem, 0rem + 1.25vw, 1.5rem);
}
.consultation__works {
  font-size: clamp(0.625rem, -1.25rem + 1.875vw, 1rem);
  color: var(--swamp-blue);
}
.consultation__contacts-right {
  display: flex;
  gap: 20px;
}
.consultation__contacts-text {
  max-width: 250px;
  padding-left: 12px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--swamp-blue);
  text-align: right;
}
.consultation__contacts-text span {
  position: relative;
  font-weight: 600;
}
.consultation__contacts-text span::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: -12px;
  top: 6px;
  border-radius: 50%;
  background-color: #5CC949;
}
.consultation__contacts-messengers {
  display: flex;
  gap: 6px;
}
.consultation__right {
  flex: 0 0 48%;
  overflow: hidden;
  border-radius: 16px;
}
.consultation__right img {
  -o-object-fit: cover;
     object-fit: cover;
}

.consultation-label__inner {
  background-color: var(--white);
  margin-bottom: clamp(2.5rem, 0rem + 2.5vw, 3rem);
}

.messenger {
  max-width: 48px;
  max-height: 48px;
  overflow: hidden;
}
.messenger img {
  height: 100%;
}

.footer {
  padding-top: 20px;
  padding-bottom: clamp(0.625rem, 0.4435rem + 0.8065vw, 1.25rem);
}
.footer__inner {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--swamp-blue);
  border-radius: 16px;
}
.footer__copy {
  color: var(--white);
  line-height: 1;
}
.footer__right {
  display: flex;
  align-items: center;
}
.footer__btn {
  padding: 18px 42px;
  background-color: var(--blue);
  border-radius: 6px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.footer__btn:hover {
  background-color: var(--blue-navi);
}

.consultation__contacts-messengers {
  margin-right: 20px;
}

.footer-text {
  color: var(--white);
  vertical-align: middle;
}

@media (max-width: 1600px) {
  .label__block {
    margin-bottom: clamp(2rem, 1.8548rem + 0.6452vw, 2.5rem);
  }
  .hero {
    padding-top: clamp(10.25rem, 15.5726rem - 5.3226vw, 14.375rem);
    padding-bottom: clamp(4.375rem, 5.5847rem - 1.2097vw, 5.3125rem);
  }
  .label,
  .hero__left-top-title {
    font-size: clamp(0.875rem, 0.8387rem + 0.1613vw, 1rem);
  }
  .hero__title {
    font-size: clamp(1.75rem, 1.3871rem + 1.6129vw, 3rem);
  }
  .cards__item-text {
    font-size: clamp(0.875rem, 0.8173rem + 0.2564vw, 1.125rem);
  }
  .works__text-top {
    font-size: clamp(1rem, 0.9637rem + 0.1613vw, 1.125rem);
  }
  .works-label__inner {
    margin-bottom: clamp(2rem, 1.8548rem + 0.6452vw, 2.5rem);
  }
  .title {
    font-size: clamp(1.5rem, 1.3548rem + 0.6452vw, 2rem);
  }
  .works__title {
    font-size: clamp(2rem, 1.7097rem + 1.2903vw, 3rem);
  }
  .feedback,
  .targets {
    padding-top: clamp(5rem, 4.2742rem + 3.2258vw, 7.5rem);
  }
  .targets__title {
    margin-bottom: clamp(2rem, 1.6734rem + 1.4516vw, 3.125rem);
  }
  .prices {
    padding-top: clamp(5rem, 4.2742rem + 3.2258vw, 7.5rem);
    padding-bottom: clamp(5rem, 4.2742rem + 3.2258vw, 7.5rem);
  }
  .consultation-label__inner,
  .feedback-label__inner,
  .prices-label__inner {
    margin-bottom: clamp(2rem, 1.8548rem + 0.6452vw, 2.5rem);
  }
  .feedback__title {
    margin-bottom: clamp(2rem, 1.8548rem + 0.6452vw, 2.5rem);
  }
  .consultation_title {
    margin-bottom: clamp(1.25rem, 1.1774rem + 0.3226vw, 1.5rem);
  }
}
@media (max-width: 1419px) {
  .consultation__inner {
    padding-top: 80px;
    flex-direction: column;
  }
  .consultation__right {
    display: none;
  }
  .consultation__left {
    margin-left: 0px;
    flex: 0 0 auto;
  }
}
@media (max-width: 1315px) {
  .cards__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1225px) {
  .header {
    background-color: transparent;
    border-bottom: none;
    width: 100%;
  }
  .header__container {
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
    padding: 0;
    height: auto;
  }
  .header__left {
    text-align: center;
    min-height: 70px;
    justify-content: center;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.0588235294);
    border: 1px solid rgba(255, 255, 255, 0.1215686275);
  }
  .header__logo {
    position: relative;
    z-index: 51;
  }
  .header__center {
    padding: 30px 0;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .header__right {
    width: 100%;
    background-color: transparent;
  }
  .header__btn {
    color: var(--white);
  }
  .header__btn-label {
    display: none;
  }
  .hero__inner {
    flex-direction: column;
  }
  .hero__left-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 80px;
  }
  .hero__left-top-title {
    text-align: center;
  }
  .hero__right-top,
  .hero__label {
    display: none;
  }
  .hero__title,
  .hero__subtitle {
    max-width: 100%;
    text-align: center;
  }
  .hero__right-btn,
  .hero__right {
    max-width: 100%;
  }
  .hero__right-bottom {
    text-align: center;
  }
  .prices__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .prices__right {
    display: none;
  }
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 1009px) {
  .targets__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 973px) {
  .works__inner {
    flex-direction: column;
  }
  .works__left {
    flex: 1 1 auto;
    max-height: 600px;
  }
}
@media (max-width: 830px) {
  .footer__copy {
    font-size: 10px;
    text-align: center;
    order: 2;
  }
  .footer__right {
    order: 1;
  }
}
@media (max-width: 800px) {
  .consultation__left {
    margin-left: 0px;
    flex: 1 1 auto;
    align-items: center;
  }
  .consultation__text,
  .consultation_title {
    text-align: center;
  }
  .consultation__contacts {
    flex-direction: column;
    gap: 18px;
    width: 100%;
    align-items: center;
  }
  .consultation__contacts-right {
    flex-direction: column;
    align-items: center;
  }
  .consultation__contacts-text {
    text-align: center;
  }
  .consultation__contacts-text {
    font-size: 14px;
  }
  .footer__c-r {
    display: none;
  }
}
@media (max-width: 677px) {
  .header__center-block {
    flex-direction: column;
    align-items: center;
  }
  .header__center-item {
    padding-left: 0;
  }
  .header__center-item::before {
    display: none;
  }
  .header__center-block {
    gap: 16px;
  }
  .prices__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 603px) {
  .cards__item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }
  .targets__title {
    text-align: left;
  }
  .targets__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .hero__right-btn {
    padding: 20px 50px;
  }
  .popup__inner {
    padding: 30px 20px;
    border-radius: 16px;
    background-color: #f1f4f8;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .popup__title {
    font-size: 30px;
  }
  .popup__text {
    margin-bottom: 25px;
  }
  .popup__input {
    font-size: 16px;
    padding: 15px;
  }
  .popup__submit {
    padding: 15px;
    font-size: 16px;
  }
  .popup__text {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */
