@import 'reset.css';
@import 'fonts.css';
:root {
  --header-height: 120px;
  --blue-extra-dark: #1C2638;
  --blue-dark: #326EDE;
  --blue-default: #538CF7;
  --gray-medium: #E5E9F0;
  --gray-light: #F3F6FA;
  --white: #FFFFFF;
  --stroke-dark: #C4CCD8;
  --stroke-medium: #E0E4EB;
  --text-black: #1C2638;
  --text-blue-default: #538CF7;
  --text-gray-dark: #8C95A4;
  --text-red: #FF5656;
}

body {
  min-width: 360px;
  position: relative;
  min-height: 100dvh;
  font-family: "Inter";
  background-color: var(--white);
  letter-spacing: -0.01em;
  color: var(--blue-extra-dark);
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

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

main {
  flex: 1 1 auto;
}

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

.alert {
  padding: clamp(0.5rem, 0.4489rem + 0.2273vw, 0.6875rem) 0;
  background-color: var(--blue-default);
  display: flex;
  justify-content: center;
  text-align: center;
}
.alert__messege {
  max-width: clamp(20.1875rem, 13.3693rem + 30.303vw, 45.1875rem);
  line-height: 1.3;
  color: #FFFFFF;
  font-size: clamp(0.8125rem, 0.6591rem + 0.6818vw, 1.375rem);
  font-weight: 500;
}

.label {
  position: relative;
  padding-left: 20px;
  color: var(--text-gray-dark);
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  font-weight: 500;
}
.label::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  background-color: var(--blue-default);
  border-radius: 2px;
  transform: translateY(-50%);
}

.title {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 1.0909rem + 1.8182vw, 3rem);
}

input {
  display: flex;
  align-items: center;
  padding: 10px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--stroke-medium);
  font-size: 18px;
}
input::-moz-placeholder {
  font-size: 18px;
}
input::placeholder {
  font-size: 18px;
}

.header__top {
  padding: 15px 0;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.header__right, .header__left {
  display: flex;
  align-items: center;
}
.header__left {
  gap: clamp(2.875rem, -43.8226rem + 47.7419vw, 12.125rem);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-img {
  flex: 0 0 40px;
}
.header__logo-text {
  font-weight: 600;
  font-size: clamp(1.125rem, 1.0227rem + 0.4545vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--blue-extra-dark);
}
.header__worktime-text {
  margin-bottom: 10px;
  color: var(--text-gray-dark);
  font-size: 18px;
}
.header__worktime-date {
  font-size: 18px;
  color: var(--blue-extra-dark);
}
.header__right {
  display: flex;
  gap: 20px;
}
.header__right-messege {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.3;
  text-align: right;
}
.header__right-messege span {
  font-weight: 600;
}
.header__btn {
  padding: 0 5px 0 28px;
  display: flex;
  gap: 28px;
  align-items: center;
  background-color: var(--text-blue-default);
  border-radius: 6px;
  height: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  transition: all 0.3s ease;
}
.header__btn:hover {
  transform: all 0.3s ease;
  background-color: var(--blue-dark);
}
.header__btn:hover .header__arrow img {
  animation: arrowSlide 0.3s ease-in-out forwards;
}
.header__btn-img {
  display: none;
  width: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
  height: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
}
.header__arrow {
  width: clamp(2.375rem, 1.0729rem + 1.9544vw, 3.125rem);
  height: clamp(2.375rem, 1.0729rem + 1.9544vw, 3.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.header__arrow img {
  max-width: 24px;
  height: 24px;
  will-change: transform, opacity;
}
.header__nav {
  max-width: 100%;
  background-color: var(--gray-light);
}
.header__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-item:not(:last-child) {
  border-right: 1px solid var(--stroke-dark);
}
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 10px;
  width: 100%;
  height: 100%;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header__nav-link img {
  max-width: 16px;
}

.dropdown-menu {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #1e293b;
  list-style: none;
  margin: 0;
  padding: 8px 0 0 0;
  border-radius: 0 0 6px 6px;
  z-index: 100;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dropdown-menu li {
  background-color: var(--gray-light);
  width: 100%;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #000000;
  display: block;
  padding: 15px 15px;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background-color: var(--text-blue-default);
  color: #ffffff;
}

.alert {
  color: var(--white);
  font-weight: 500;
  line-height: 1.3;
  font-size: clamp(1rem, 0.8977rem + 0.4545vw, 1.375rem);
}

.messengers {
  display: flex;
  gap: 6px;
}
.messengers__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: 60px;
  width: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
  height: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
  border-radius: 6px;
  overflow: hidden;
}
.messengers__item img {
  max-width: 24px;
}

.telegram {
  background-color: #2AA2D5;
}

.whatsapp {
  background-color: #27D045;
}

.max {
  background: linear-gradient(135deg, #44CCFF 0%, #5533EE 50%, #9933DD 100%);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav-item:hover,
.has-dropdown:hover {
  background-color: var(--blue-default);
  color: var(--white);
  transition: all 0.3 ease;
}

.arrow {
  width: 16px;
  height: 16px;
  background: url("../images/tick.svg") center/cover no-repeat;
  transition: all 0.3s ease;
}

.nav__btn {
  display: none;
}

.header__nav-item.is-active,
.header__nav-item.is-active .header__nav-link {
  background-color: var(--blue-default);
  color: var(--white);
}

.header__nav-item.is-active .arrow {
  background: url(../images/tick-white.svg) center/cover no-repeat;
}

.header__nav-link .arrow {
  background: url(../images/tick.svg) center/cover no-repeat;
}

.dropdown-menu a.is-active {
  background-color: var(--text-blue-default);
  color: var(--white);
}

.hero {
  padding: clamp(15.1875rem, 13.6875rem + 6.6667vw, 20.6875rem) 0 clamp(3.75rem, 3.0682rem + 3.0303vw, 6.25rem) 0;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
}
.hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero__title {
  margin-bottom: clamp(4.0625rem, 0.858rem + 14.2424vw, 15.8125rem);
  max-width: 1052px;
  font-size: clamp(1.75rem, 1.1364rem + 2.7273vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__item {
  position: relative;
  padding-left: 34px;
  font-weight: 500;
  font-size: clamp(1rem, 0.8636rem + 0.6061vw, 1.5rem);
  color: var(--white);
}
.hero__item::before {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  content: "";
  background: url("../images/hero-frame.svg") center/cover no-repeat;
}

.prices {
  padding: clamp(5rem, 3.2955rem + 7.5758vw, 11.25rem) 0;
}
.prices__title {
  max-width: 910px;
  margin-top: clamp(1.75rem, 1.375rem + 1.6667vw, 3.125rem);
  margin-bottom: clamp(2rem, 1.6932rem + 1.3636vw, 3.125rem);
}
.prices__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prices__row, .prices__title-row {
  padding: clamp(1.25rem, 1.1818rem + 0.303vw, 1.5rem) clamp(0.625rem, 0.4545rem + 0.7576vw, 1.25rem);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  line-height: 1.3;
  border-radius: 8px;
  overflow: hidden;
}
.prices__title-row {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  background-color: var(--gray-medium);
}
.prices__row {
  background-color: var(--gray-light);
}
.prices__row.align {
  align-items: center;
}
.prices__col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.6818rem + 0.303vw, 1rem);
}
.prices__col-item.normal {
  max-width: 420px;
  font-size: clamp(1rem, 0.9659rem + 0.1515vw, 1.125rem);
}
.prices__col-item.weight {
  font-weight: 500;
}
.prices__col-item.parination {
  position: relative;
  padding-left: 18px;
}
.prices__col-item.parination::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--blue-extra-dark);
}
.prices__col-item .red {
  color: var(--text-red);
}
.prices__col-item .grey {
  color: var(--text-gray-dark);
}

.registration {
  padding-bottom: clamp(5rem, 4.3182rem + 3.0303vw, 7.5rem);
}
.registration__text-inner {
  margin-bottom: clamp(1.75rem, 1.375rem + 1.6667vw, 3.125rem);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.registration__title {
  margin-bottom: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem);
  max-width: 910px;
}
.registration__title span {
  color: var(--text-gray-dark);
}
.registration__subtitle-block {
  display: flex;
  gap: 20px;
}
.registration__subtitle {
  max-width: 445px;
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  line-height: 1.3;
}
.registration__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.625rem, 0.4545rem + 0.7576vw, 1.25rem);
}
.registration__contacts {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
}
.registration__contacts-text {
  max-width: 910px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: clamp(1.875rem, 1.5341rem + 1.5152vw, 3.125rem);
}

.card-registration {
  margin-bottom: clamp(1.875rem, 1.3636rem + 2.2727vw, 3.75rem);
  padding: clamp(1.25rem, 1.0795rem + 0.7576vw, 1.875rem) clamp(1.25rem, 1.0795rem + 0.7576vw, 1.875rem) clamp(1.25rem, 1.0795rem + 0.7576vw, 1.875rem) 30px;
  background-color: var(--gray-light);
  border-radius: 8px;
}
.card-registration__img {
  width: clamp(4.5rem, 4.3636rem + 0.6061vw, 5rem);
  height: clamp(4.5rem, 4.3636rem + 0.6061vw, 5rem);
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.5rem, -1.7045rem + 14.2424vw, 13.25rem);
}
.card-registration__img img {
  max-width: 40px;
  max-height: 40px;
}
.card-registration__title {
  font-weight: 500;
  font-size: clamp(1rem, 0.8636rem + 0.6061vw, 1.5rem);
  margin-bottom: clamp(0.75rem, 0.6818rem + 0.303vw, 1rem);
  line-height: 1.3;
}
.card-registration__text {
  max-width: 365px;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8409rem + 0.1515vw, 1rem);
}

.temporarily {
  padding: clamp(5rem, 3.2955rem + 7.5758vw, 11.25rem) 0;
  background-color: var(--gray-light);
}
.temporarily__inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.temporarily__left {
  flex-basis: 50%;
}
.temporarily__img {
  max-width: 755px;
  border-radius: 12px;
  overflow: hidden;
}
.temporarily__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.temporarily__label {
  margin-bottom: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem);
}
.temporarily__title {
  max-width: 755px;
  margin-bottom: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem);
}
.temporarily__text {
  max-width: 400px;
  margin-bottom: clamp(1.25rem, 1.0795rem + 0.7576vw, 1.875rem);
}
.temporarily__text, .temporarily__list {
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  line-height: 1.3;
}
.temporarily__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 755px;
}
.temporarily__item {
  position: relative;
  padding-left: 18px;
}
.temporarily__item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  left: 0;
  top: 9px;
  background-color: var(--blue-extra-dark);
  border-radius: 50%;
}
.temporarily__subtitle {
  margin: clamp(1.75rem, 1.375rem + 1.6667vw, 3.125rem) 0 clamp(1.25rem, 1.1818rem + 0.303vw, 1.5rem) 0;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0227rem + 0.4545vw, 1.5rem);
  line-height: 1.3;
}

.temporarily.white {
  background-color: var(--white);
}

.temporarily.white.gray {
  background-color: var(--gray-light);
}

.temporarily__subtitle.mod {
  margin: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem) 0 clamp(1.25rem, 1.1818rem + 0.303vw, 1.5rem) 0;
}

.temporarily.white .temporarily__left {
  flex: 0 0 50%;
}

.temporarily__text.mod {
  max-width: 100%;
}

.who {
  padding: clamp(4.75rem, 2.9773rem + 7.8788vw, 11.25rem) 0;
}
.who__label {
  margin-bottom: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem);
}
.who__title {
  max-width: 755px;
  margin-bottom: clamp(2rem, 1.6932rem + 1.3636vw, 3.125rem);
}
.who__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.item-who {
  padding: clamp(1.25rem, 1.0795rem + 0.7576vw, 1.875rem);
  border: 1px solid var(--stroke-dark);
  border-radius: 8px;
}
.item-who__img {
  width: clamp(4.5rem, 4.3636rem + 0.6061vw, 5rem);
  height: clamp(4.5rem, 4.3636rem + 0.6061vw, 5rem);
  margin-bottom: clamp(1.5rem, 1.3977rem + 0.4545vw, 1.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--gray-light);
}
.item-who__img img {
  max-width: clamp(2rem, 1.8636rem + 0.6061vw, 2.5rem);
}
.item-who__text {
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
}
.item-who__text span {
  font-weight: 600;
}

.works {
  padding: clamp(4.75rem, 2.9773rem + 7.8788vw, 11.25rem) 0;
  background-color: var(--gray-light);
}
.works__inner {
  display: flex;
  gap: 20px;
}
.works__left {
  flex: 0 0 50%;
}
.works__label {
  margin-bottom: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem);
}
.works__title {
  margin-bottom: clamp(2.5rem, 2.1591rem + 1.5152vw, 3.75rem);
}
.works__img {
  max-width: 755px;
  border-radius: 12px;
  overflow: hidden;
}
.works__img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.9091rem + 1.5152vw, 2.5rem);
}
.steps__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  left: 27px;
  top: 59px;
  bottom: clamp(-2.1875rem, -0.569rem - 1.5414vw, -1.6875rem);
  border-left: 2px dotted #538CF7;
  transform: translateX(-50%);
}
.steps .steps__num {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 2px solid var(--blue-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-default);
  font-size: clamp(1rem, 0.9659rem + 0.1515vw, 1.125rem);
  font-weight: 600;
  background-color: transparent;
  z-index: 1;
}
.steps__text {
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  line-height: 1.4;
}

.works .temporarily__subtitle.mod {
  max-width: 755px;
}

.works .temporarily__text {
  max-width: 755px;
}

.faq {
  padding: clamp(4.75rem, 2.9773rem + 7.8788vw, 11.25rem) 0;
}
.faq__label {
  margin-bottom: clamp(1.75rem, 1.5455rem + 0.9091vw, 2.5rem);
}
.faq__title {
  margin-bottom: clamp(1.875rem, 1.7045rem + 0.7576vw, 2.5rem);
}
.faq__flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.faq__left {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.faq__subtitle {
  margin-bottom: clamp(1.5rem, 1.3636rem + 0.6061vw, 2rem);
  line-height: 1.3;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.0227rem + 0.4545vw, 1.5rem);
}
.faq__phone {
  display: block;
  margin-bottom: clamp(1.875rem, 1.8409rem + 0.1515vw, 2rem);
  font-size: clamp(1rem, 0.9659rem + 0.1515vw, 1.125rem);
  font-weight: 500;
}
.faq__right {
  flex: 0 0 50%;
}

.content-label {
  color: var(--text-gray-dark);
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  margin-bottom: 20px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 0.5909rem + 0.1515vw, 0.75rem);
}
.accordion__item {
  background-color: var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.accordion__header {
  width: 100%;
  padding: clamp(1.125rem, 1.0398rem + 0.3788vw, 1.4375rem) 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.accordion__title {
  font-size: clamp(0.875rem, 0.7727rem + 0.4545vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
}
.accordion__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--white, #FFFFFF);
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background-color: var(--blue-default);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.accordion__icon::before {
  width: 16px;
  height: 2px;
}
.accordion__icon::after {
  width: 2px;
  height: 16px;
}
.accordion__item.is-open .accordion__icon::after {
  transform: rotate(-90deg);
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion__text {
  padding: 0 24px 20px 24px;
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  line-height: 1.3;
  color: var(--text-gray-dark);
}

.faq__content .messengers .messengers__item {
  min-height: 60px;
}
.faq__content .messengers .messengers__item img {
  max-width: 24px;
}

.accordion__item.is-open .accordion__icon {
  background-color: var(--blue-default);
}
.accordion__item.is-open .accordion__icon::after, .accordion__item.is-open .accordion__icon::before {
  background-color: var(--white);
}

.homeowners__hero {
  padding-bottom: clamp(5rem, 4.3523rem + 2.8788vw, 7.375rem);
}
.homeowners__title {
  margin-bottom: clamp(2.5rem, 2.1591rem + 1.5152vw, 3.75rem);
}
.homeowners__text {
  max-width: 910px;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
}

.footer {
  padding: clamp(2.5rem, 1.8182rem + 3.0303vw, 5rem) 0 40px 0;
  background-color: var(--blue-extra-dark);
  color: var(--white);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 20px;
}
.footer__left .header__logo {
  margin-bottom: clamp(1rem, 0.9659rem + 0.1515vw, 1.125rem);
}
.footer__left .header__logo .header__logo-text {
  color: var(--white);
}
.footer__left {
  display: flex;
  flex-direction: column;
}
.footer__text {
  max-width: 445px;
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  line-height: 1.3;
  color: var(--text-gray-dark);
}
.footer__copy {
  flex: 1 1 auto;
  display: flex;
  align-items: end;
  color: var(--text-gray-dark);
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
}
.footer__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__right-left {
  display: flex;
  flex-direction: column;
}
.footer__list.mid {
  height: 100%;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: space-between;
}
.footer__item.mod {
  color: var(--text-gray-dark);
  margin-bottom: 32px;
}
.footer__item {
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  transition: all 0.3 ease;
}
.footer__item:hover {
  color: var(--text-blue-default);
}
.footer__right-right .footer__list {
  gap: 0;
}
.footer__right-right .footer__list .footer__item.mod {
  margin-bottom: 32px;
}

.footer__item a.is-active {
  color: var(--blue-default);
  font-weight: 600;
}

.footer__item a {
  transition: color 0.2s ease;
}

.footer__item a:hover {
  color: var(--blue-default);
}

.footer__item.adress {
  margin-bottom: 22px;
}

.footer__item.tel {
  margin-bottom: 48px;
}

.footer__text.last {
  margin-top: 12px;
}

.footer__copy-text.hidden {
  display: none;
}

.breadcrumbs {
  padding: 60px 0;
  letter-spacing: -0.02em;
  color: var(--text-gray-dark);
}
.breadcrumbs span {
  color: var(--text-black);
}

.hero-permanent__title {
  margin-bottom: clamp(2.5rem, 2.1591rem + 1.5152vw, 3.75rem);
}

.text-registration.none {
  padding: 0 0;
}

.text-registration {
  padding: clamp(5rem, 4.3182rem + 3.0303vw, 7.5rem) 0;
}

.text-inner {
  display: flex;
  gap: 20px;
}
.text-inner__left {
  flex: 0 0 50%;
}
.text-inner__title {
  max-width: 600px;
}
.text-inner__right-text {
  max-width: 100%;
}

.temporary__faq {
  padding: 0 0 clamp(4.75rem, 2.9773rem + 7.8788vw, 11.25rem) 0;
}

.hero-temporary__title {
  max-width: 1040px;
}

.reviews__hero {
  padding-bottom: 0;
}

.reviews-content {
  padding-bottom: clamp(5rem, 3.2955rem + 7.5758vw, 11.25rem);
}
.reviews-content__block {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.reviews-content__inner {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 20px;
  border-top: 1px solid var(--stroke-dark);
}
.reviews-content__name {
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.7727rem + 0.4545vw, 1.25rem);
}
.reviews-content__date {
  font-size: clamp(0.75rem, 0.6477rem + 0.4545vw, 1.125rem);
  line-height: 1.3;
  color: var(--text-gray-dark);
}
.reviews-content__inner-right {
  max-width: 910px;
  font-weight: 500;
  font-size: clamp(1rem, 0.8636rem + 0.6061vw, 1.5rem);
  line-height: 1.3;
}

.contacts-content {
  padding-bottom: clamp(5rem, 3.2955rem + 7.5758vw, 11.25rem);
}
.contacts-content__inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 20px;
}
.contacts-content__title {
  margin-bottom: clamp(3.75rem, 3.0682rem + 3.0303vw, 6.25rem);
}
.contacts-content__left-box {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.5341rem + 1.5152vw, 3.125rem);
}
.contacts-content__flex {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.9318rem + 0.303vw, 1.25rem);
}
.contacts-content__flex-label {
  font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
  color: var(--text-gray-dark);
}
.contacts-content__flex-number {
  font-weight: 500;
  font-size: clamp(1rem, 0.9318rem + 0.303vw, 1.25rem);
}
.contacts-content__flex-text {
  max-width: 445px;
  font-size: clamp(0.75rem, 0.6818rem + 0.303vw, 1rem);
  line-height: 1.3;
}
.contacts-content__flex-text span {
  font-weight: 600;
}
.contacts-content__flex-text.mod {
  font-size: clamp(1rem, 0.9659rem + 0.1515vw, 1.125rem);
}
.contacts-content__right-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.contacts-content__right-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.popup {
  padding: 0 10px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0.9;
}
.popup__inner {
  padding: 40px 35px;
  width: 400px;
  background-color: var(--white);
  border-radius: 8px;
}
.popup__title {
  line-height: 1.3;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 39px;
  text-align: center;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup__submit {
  width: 100%;
  padding: 21px 20px;
  text-align: center;
  border-radius: 8px;
  background-color: var(--blue-default);
  color: var(--white);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-medium);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup.is-open {
  opacity: 1;
  visibility: visible;
}
.popup__inner {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 40px 35px;
  background-color: var(--white);
  border-radius: 8px;
}
.popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--text-gray-dark, #8C95A4);
  border-radius: 2px;
  transition: background-color 0.2s ease;
}
.popup__close::before {
  transform: rotate(45deg);
}
.popup__close::after {
  transform: rotate(-45deg);
}
.popup__close:hover::before, .popup__close:hover::after {
  background-color: var(--text-black, #1C2638);
}
.popup__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-black);
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup__input {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  border: 1px solid var(--stroke-medium);
  border-radius: 8px;
  font-size: 18px;
  font-family: inherit;
  color: var(--text-black);
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}
.popup__input:focus {
  border-color: var(--blue-default);
}
.popup__input::-moz-placeholder {
  font-size: 18px;
  color: var(--text-gray-dark, #8C95A4);
  opacity: 1;
}
.popup__input::placeholder {
  font-size: 18px;
  color: var(--text-gray-dark, #8C95A4);
  opacity: 1;
}
.popup__submit {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  background-color: var(--blue-default);
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.popup__submit:hover {
  background-color: var(--blue-dark);
}

@media (max-width: 1565px) {
  .header__right-messege {
    display: none;
  }
}
@media (max-width: 1341px) {
  .registration__text-inner {
    grid-template-columns: 1fr 1fr;
  }
  .registration__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .registration__contacts {
    grid-template-columns: repeat(2, 1fr);
  }
  .who__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__right,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    height: auto;
  }
  .footer__left {
    align-items: center;
  }
  .footer__text {
    margin-bottom: 40px;
    text-align: center;
  }
  .footer__item.mod,
  .footer__list.mid {
    display: none;
  }
  .footer__right-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__right-right .messengers .messengers__item {
    width: 60px;
    height: 60px;
  }
  .footer__right-right .messengers .messengers__item img {
    min-width: 24px;
  }
  .footer__copy-text {
    display: none;
  }
  .footer__inner {
    gap: 0;
  }
  .footer__copy-text.hidden {
    display: block;
    font-size: clamp(0.875rem, 0.8068rem + 0.303vw, 1.125rem);
    line-height: 1.3;
    color: var(--text-gray-dark);
  }
}
@media (max-width: 1251px) {
  .hero__list {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 1161px) {
  .registration__contacts:first-child {
    display: none;
  }
  .registration__contacts {
    grid-template-columns: 1fr;
  }
  .works__inner,
  .temporarily__inner {
    flex-direction: column;
  }
  .temporarily__left {
    flex-basis: 100%;
  }
  .temporarily__img {
    max-height: 600px;
    max-width: 100%;
  }
  .works__left {
    flex: 0 0 100%;
  }
  .works__img {
    max-width: 100%;
  }
  .steps__item {
    flex-direction: column;
    align-items: start;
  }
  .steps__item:not(:last-child)::after {
    display: none;
  }
  .steps__item {
    gap: 10px;
  }
  .steps__list {
    gap: 24;
  }
  .steps .steps__num {
    width: 40px;
    height: 40px;
  }
  .contacnts__breadcrumbs {
    padding: 40px 0;
  }
  .contacts-content__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contacts-content .messengers .messengers__item {
    height: 60px;
  }
  .contacts-content__right {
    min-height: 644px;
  }
}
@media (max-width: 1065px) {
  .header {
    background-color: var(--gray-light);
  }
  .header__top {
    border-bottom: 1px solid var(--stroke-dark);
  }
  .header__btn-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__btn-img img {
    width: 24px;
  }
  .header__btn {
    padding: 0;
    background-color: var(--white);
  }
  .header__btn span {
    display: none;
  }
  .registration .registration__inner .contacts-btn span {
    display: block;
  }
  .header__arrow,
  .header__arrow span {
    display: none;
  }
  .prices__col-item .red {
    display: inline;
  }
  .arrow {
    display: block;
  }
  .has-dropdown .arrow span {
    display: block;
  }
  .header__right {
    gap: 6px;
  }
}
@media (max-width: 1000px) {
  .header {
    position: relative;
    z-index: 1001;
  }
  .header__top {
    width: 100%;
    border-bottom: none;
    justify-content: space-between;
  }
  .header__nav-item:not(:last-child) {
    border-right: none;
  }
  .header__nav {
    position: fixed;
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    left: -120%;
    width: 100%;
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 148px 15px 10px 15px;
  }
  .header__nav.active {
    left: 0%;
  }
  .header__nav-link.first {
    display: none;
  }
  .header__list {
    grid-template-columns: 1fr;
    font-size: 24px;
  }
  .arrow {
    display: none;
  }
  .dropdown-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0;
    position: static;
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    color: var(--blue-extra-dark);
    font-size: 24px;
    transform: none;
  }
  .dropdown-menu li {
    font-size: 24px;
  }
  .header__burger {
    position: relative;
    display: block;
    width: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
    height: clamp(2rem, 1.5227rem + 2.1212vw, 3.75rem);
    background-color: var(--blue-default);
    border-radius: 6px;
  }
  .header__burger:before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    background: url("../images/burger.svg") center/cover no-repeat;
  }
  .header__burger.open:before {
    background: url("../images/burger-close.svg") center/cover no-repeat;
  }
  .dropdown-menu li {
    background-color: var(--white);
  }
  .header .container {
    display: flex;
    align-items: center;
  }
  .header__nav.open {
    max-width: 100%;
    left: 0%;
    z-index: 999;
    transition: all 0.3s ease;
    background-color: var(--white);
  }
  .nav__btn-block {
    max-width: 100%;
    margin-top: 178px;
    padding: 0;
  }
  .nav__btn {
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--blue-default);
    border-radius: 6px;
    color: var(--white);
    font-weight: 500;
    text-align: center;
  }
  .text-inner {
    flex-direction: column;
  }
}
@media (max-width: 841px) {
  .registration__text-inner {
    grid-template-columns: 1fr;
  }
  .registration__text-block {
    margin-top: 28px;
  }
  .faq__flex {
    flex-direction: column;
  }
  .faq__right {
    order: 1;
  }
  .faq__left {
    order: 2;
  }
}
@media (max-width: 765px) {
  .header__worktime {
    display: none;
  }
  .header__btn-img img,
  .messengers__item img {
    max-width: clamp(1.125rem, 0.7917rem + 1.4815vw, 1.5rem);
  }
  .prices__title-row {
    display: none;
  }
  .prices__row {
    grid-template-columns: 1fr;
  }
  .prices__col-item.normal {
    font-weight: 500;
  }
  .prices__col-item.weight {
    font-weight: 400;
  }
  .who__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 555px) {
  .hero__list {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .registration__subtitle-block {
    flex-direction: column;
    gap: 15px;
  }
  .registration__cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 393px) {
  .header__top {
    gap: 10px;
  }
  .header__logo {
    gap: 5px;
  }
}
@media (max-width: 380px) {
  .container {
    padding: 0 10px;
  }
}
@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(150%);
    opacity: 1;
  }
  46% {
    transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.contacts-btn .header__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-btn .header__btn-img {
  display: none;
}

.contacts-btn .header__arrow {
  height: clamp(2.5rem, 2.1591rem + 1.5152vw, 3.75rem);
  width: clamp(2.5rem, 2.1591rem + 1.5152vw, 3.75rem);
}

.contacts-btn {
  padding: 5px 5px 5px clamp(1.5rem, 1.4318rem + 0.303vw, 1.75rem);
  display: flex;
  gap: 28px;
  align-items: center;
  background-color: var(--text-blue-default);
  border-radius: 6px;
  height: clamp(3.125rem, 2.7841rem + 1.5152vw, 4.375rem);
  font-weight: 500;
  font-size: clamp(1rem, 0.9659rem + 0.1515vw, 1.125rem);
  color: var(--white);
  transition: all 0.3s ease;
}

.has-dropdown:hover .arrow {
  background: url("../images/tick-white.svg");
  transform: rotate(-180deg);
}/*# sourceMappingURL=style.css.map */