/* 
* Root
* Browser
* Main
* Typography
* Buttons
* Form
* Checkbox
* Header
* Worktime
* Breadcrumbs
* Hero
* Benefits
* Callback
* Feedback
* Showcase
* Services
* Content
* Contacts
* Gallery
* Footer
* Notice
* Fancybox
* Cookie
*/

/* root */
/**************************/
:root {
  --font-title: "eurostile_otblack", "Open Sans", sans-serif;
  --font-text: "basis_grotesque_proregular", "Open Sans", sans-serif;
  --color-black: #262626;
  --color-dark: #1a1a1a;
  --color-night: #0a0a0a;
  --color-white: #ffffff;
  --color-light: #f5f9fc;
  --color-gray: #5b5b5b;
  --color-secondary: #c4c4c4;
  --color-accent: #e00315;
  --title-large: clamp(28px, 5vw, 48px);
  --title-middle: clamp(24px, 4vw, 36px);
  --title-small: clamp(18px, 2.5vw, 22px);
  --text-large: clamp(15px, 1.6vw, 18px);
  --text-middle: clamp(14px, 1.4vw, 16px);
  --text-small: clamp(13px, 1.2vw, 15px);
}

/* browser */
/**************************/
::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-black);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-dark);
}

::-webkit-scrollbar-track {
  border: none;
  background-color: var(--color-gray);
}

::selection {
  background-color: var(--color-black);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-black);
  color: var(--color-white);
}

/* main */
/**************************/
* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

*,
::after,
::before {
  position: relative;
}

html,
body {
  font-family: var(--font-text);
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-light);
}

html {
  scroll-behavior: smooth;
}

body {
  user-select: text;
  padding-top: 110px;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* typography */
/**************************/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  line-height: 1.2;
  text-transform: uppercase;
}

/* buttons */
/**************************/
.btn {
  font-family: var(--font-title);
  padding: 12px 25px;
  font-size: 14px;
  border: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: .3s all;
  border-radius: 30px;
}

.btn:active.focus,
.btn:active:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn__flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
  transform: skewX(-45deg);
  left: -150%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}

.btn__up {
  background-color: var(--color-gray);
  box-shadow: none;
  border: 0;
  color: var(--color-white);
  font-size: 25px;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 55px;
  right: 55px;
  border-radius: 50%;
  transform: scale(0);
  transition: all .7s ease-in-out;
  cursor: pointer;
  z-index: 9997;
}

body .b24-widget-button-wrapper {
  display: none !important;
}

/* form */
/**************************/
.form-group {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: 20px;
}

.form-label {
  margin-bottom: 7px;
  font-family: var(--font-title);
  font-size: 12px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.form-input {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  font-family: var(--font-text);
  font-size: var(--text-middle);
  color: var(--color-black);
  background-color: var(--color-light);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
}

.form-textarea {
  width: 100%;
  height: 54px;
  padding: 0 20px;
  font-family: var(--font-text);
  font-size: var(--text-middle);
  color: var(--color-black);
  background-color: var(--color-light);
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}

.form-input:hover,
.form-textarea:hover {
  background-color: var(--color-white);
  border-color: var(--color-secondary);
}

.form-input:focus,
.form-textarea:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(224, 3, 21, 0.08);
}

.form-link {
  color: var(--color-black);
  text-decoration: underline var(--color-secondary) dotted;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.form-link:hover,
.form-link:focus {
  color: var(--color-accent);
}

/* checkbox */
/**************************/
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:checked+label,
[type="checkbox"]:not(:checked)+label {
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  color: var(--color-gray);
  font-size: 14px;
}

[type="checkbox"]:checked+label:before,
[type="checkbox"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-accent);
  background-color: var(--color-white);
  border-radius: 4px;
}

[type="checkbox"]:checked+label:after,
[type="checkbox"]:not(:checked)+label:after {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--color-accent);
  border-radius: 2px;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: all 0.2s ease;
}

[type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

[type="checkbox"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

/* header */
/**************************/
.menu__toggle {
  display: none;
}

header {
  width: 100%;
  height: auto;
}

header .container {
  display: flex;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0 15px;
  transition: .5s ease-in-out;
  z-index: 1030;
}

.header._header-down {
  top: -100px;
}

.header._header-up {
  top: 0;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  color: var(--dark);
  width: 100%;
  padding: 0 36px;
  height: 100%;
  min-height: 80px;
  border-radius: 48px;
  margin-top: 15px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.297);
  position: relative;
}

.header__logo {
  display: flex;
  grid-column: 1;
  flex-basis: auto;
}

.header__image {
  height: 40px;
  width: auto;
}

.header__nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  flex-basis: auto;
  min-width: 0;
}

.menu__link {
  padding: 10px 0;
  margin-right: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
}

.menu__link:last-child {
  margin-right: 0;
}

.menu__link span {
  font-family: var(--font-title);
  font-size: 16px;
  border: none;
}

.menu__link span:hover,
.menu__link span:focus,
.menu__link span:active {
  color: inherit;
}

.menu__link:after {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 0;
  height: 2px;
  left: 50%;
  background-color: var(--color-accent);
  transition: all .3s ease;
  transform: translateX(-50%);
  z-index: 2;
}

.menu__link:hover::after,
.menu__link.active::after {
  width: 100%;
}

.submenu-toggle {
  display: none;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  display: none;
  padding: 10px 20px;
  background-color: var(--color-black);
  border-radius: 12px;
  width: max-content;
  text-align: left;
  z-index: 100;
  list-style: none;
  backdrop-filter: blur(20px);
}

.sub-menu li a {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: 2;
  color: var(--color-white);
  text-decoration: none;
}

.sub-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  background-color: var(--color-accent);
  transition: all .3s ease;
  transform: translateX(-50%);
}

.sub-menu li a:hover::after,
.sub-menu li a:focus::after {
  width: 100%;
}

.menu__link:hover>.sub-menu {
  display: block;
}

.header__phone .mdi-phone {
  display: none;
}

.header__infobox {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  flex-basis: auto;
  white-space: nowrap;
  align-items: flex-end;
  justify-content: center;
}

.header__phone {
  text-decoration: none;
}

.header__phone .mdi-phone {
  display: none;
}

.header__number {
  font-size: 22px;
  font-family: var(--font-title);
  color: var(--color-dark);
  letter-spacing: 1px;
}

/* worktime */
/**************************/
#worktime {
  margin-top: -7px;
}

.work-status__text {
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.work-status__text.is-open {
  color: var(--color-gray);
}

.work-status__text.is-closed {
  color: var(--color-gray);
}

/* breadcrumbs */
/**************************/
.breadcrumbs {
  padding: 0 15px 30px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0 36px;
  list-style: none;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: var(--text-small);
  color: var(--color-gray);
}

.breadcrumb__item:not(:last-child)::after {
  content: "\F0142";
  font-family: "Material Design Icons";
  margin: 0 10px;
  color: var(--color-secondary);
}

.breadcrumb__item a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color .3s ease;
}

.breadcrumb__item a:hover,
.breadcrumb__item a:focus {
  color: var(--color-accent);
}

.breadcrumb__item.active {
  color: var(--color-black);
  pointer-events: none;
}

/* hero */
/**************************/
.hero {
  min-height: 600px;
  height: 60vh;
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.hero .container {
  height: 100%;
}

.hero__media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  z-index: 0;
}

.hero__media:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .3));
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  inset: 0;
  border-radius: 24px;
  height: 100%;
  color: var(--color-white);
  overflow: hidden;
  padding: 0 36px;
  z-index: 2;
}

.hero__title {
  text-transform: uppercase;
  font-size: var(--title-large);
  width: 60%;
  text-align: left;
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 24px;
}

.hero__description {
  text-transform: uppercase;
  font-size: var(--text-middle);
  width: 60%;
  text-align: left;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  line-height: 2;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.hero__action {
  margin-top: 0;
  padding: 22px 30px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 3;
}

/* benefits */
/**************************/
.benefits {
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.benefits .container {
  height: 100%;
}

.benefits__list {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: benefit;
  width: 100%;
  gap: 20px;
}

.benefits__item {
  position: relative;
  counter-increment: benefit;
  grid-column: span 1;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 36px;
  border-radius: 24px;
  color: var(--dark);
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgb(237, 237, 237);
  overflow: hidden;
}

.benefits__item::before {
  position: absolute;
  content: "";
  top: -40px;
  right: -40px;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  border-radius: 100%;
  border: 25px solid var(--color-secondary);
  animation: shadow 5s linear infinite;
}

@keyframes shadow {

  0%,
  100% {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .15), 0 0 0 35px #eee;
  }

  50% {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .15), 0 0 0 50px #eee;
  }
}

.benefits__item::after {
  content: counter(benefit, decimal-leading-zero) ".";
  position: absolute;
  top: 12px;
  left: 24px;
  color: var(--color-gray);
  font-family: var(--font-title);
  font-size: var(--title-small);
  transform: rotate(-90deg);
  pointer-events: none;
}

.benefits__title {
  font-size: var(--title-small);
  text-transform: uppercase;
  margin: 30px 0 15px;
}

.benefits__description {
  font-size: var(--text-middle);
  color: var(--color-gray);
}

/* callback */
/**************************/
.callback {
  position: relative;
  scroll-margin-top: 150px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.callback .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.callback__media {
  background: transparent;
  grid-column: span 3;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 0;
  height: 100%;
  overflow: hidden;
}

.callback__media picture {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.callback__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.callback__content {
  background-color: var(--color-white);
  grid-column: span 2;
  grid-row: span 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 125px;
  align-self: start;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
  overflow: hidden;
}

.callback__title {
  margin: 0;
  margin-bottom: 30px;
  padding: 24px 36px 0;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.btn__callback {
  display: block;
  margin: 30px auto 0;
  padding: 22px 30px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* feedback */
/**************************/
.feedback {
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.feedback .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.feedback__media {
  background: transparent;
  grid-column: span 3;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 0;
  height: 100%;
  overflow: hidden;
}

.feedback__media picture {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.feedback__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.feedback__content {
  background-color: var(--color-white);
  grid-column: span 2;
  grid-row: span 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 125px;
  align-self: start;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
  overflow: hidden;
}

.feedback__title {
  margin: 0;
  margin-bottom: 30px;
  padding: 24px 36px 0;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.btn__feedback {
  display: block;
  margin: 30px auto 0;
  padding: 22px 30px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

/* showcase */
/**************************/
.showcase {
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.showcase .container {
  overflow: hidden;
}

.showcase__title {
  margin: 0 auto 30px;
  padding: 0 36px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.showcase__categories {
  margin: 0 auto;
}

.showcase__category {
  margin-bottom: 30px;
  overflow: hidden;
}

.showcase__category:last-child {
  margin-bottom: 0;
}

.showcase__category-title {
  margin: 0 0 30px;
  padding: 0 36px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.showcase__slider {
  overflow: visible;
}

.showcase__slider .swiper-wrapper {
  align-items: stretch;
}

.showcase__slide {
  position: relative;
  height: auto;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
}

.showcase__slide picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.showcase__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .3));
  z-index: 2;
}

.showcase__image {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.showcase__item {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  padding: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.showcase__item:hover {
  transform: translateY(-4px);
}

.showcase__item-title {
  margin: 0;
  padding: 0 36px 30px;
  font-family: var(--font-title);
  font-size: var(--title-small);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.showcase__scroll {
  margin-top: 24px;
}

/* services */
/**************************/
.services {
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.services .container {
  overflow: hidden;
}

.services__heading {
  margin: 0 0 30px;
  padding: 0 36px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.services__slider {
  overflow: visible;
}

.services .swiper-wrapper {
  align-items: stretch;
}

.services .swiper-slide {
  position: relative;
  height: auto;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
}

.services .swiper-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.services .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .3));
  z-index: 2;
}

.services__image {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.services__item {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
  padding: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services__item:hover {
  transform: translateY(-4px);
}

.services__title {
  margin: 0;
  padding: 0 36px 30px;
  font-family: var(--font-title);
  font-size: var(--title-small);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

.services__link {
  margin-top: auto;
  font-family: var(--font-title);
  font-size: 14px;
  color: var(--color-accent);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.services__link:hover,
.services__link:focus {
  color: var(--color-dark);
}

.services__scroll {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  margin: 24px 0 0 38px;
  padding-left: 65px;
  color: var(--color-secondary);
  font-size: var(--text-small);
}

.services__scroll-icon {
  position: absolute;
  top: -4px;
  left: 8px;
  width: 19px;
  height: 32px;
  background-image: url("../img/scroll.svg");
  background-size: cover;
  transform: rotate(-90deg);
}

.services__scroll-icon::before,
.services__scroll-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  width: 13px;
  height: 13px;
  border-left: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  transform: rotate(-45deg);
  animation: servicesScrollArrow 3s infinite;
}

.services__scroll-icon::before {
  top: 28px;
  animation-delay: 0.3s;
}

.services__scroll-icon::after {
  top: 37px;
}

.services__scroll-dot {
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  animation: servicesScrollDot 3s infinite;
}

@keyframes servicesScrollArrow {

  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }

  50% {
    transform: translateY(3px) rotate(-45deg);
  }
}

@keyframes servicesScrollDot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(14px);
  }
}

.service-price {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
  padding: 12px 24px;
}

.service__label {
  font-family: var(--font-title);
  font-size: 10px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service__value {
  font-family: var(--font-title);
  font-size: var(--title-small);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
}

.service__value sup {
  font-size: 60%;
  top: -.4em;
}

/* content */
/**************************/
.content {
  --content-card-height: 724px;
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.content .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: flex-start;
}

.content__header {
  grid-column: 1 / -1;
}

.content__heading {
  margin: 0;
  padding: 0 36px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.content__content {
  grid-column: span 3;
  height: var(--content-card-height);
  max-height: var(--content-card-height);
  padding: 36px;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
  overflow: hidden;
  transition: max-height .8s cubic-bezier(.22, .61, .36, 1);
}

.content__content::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(rgba(255, 255, 255, 0), var(--color-white) 70%);
  pointer-events: none;
  z-index: 2;
}

.content__content.is-open {
  height: auto;
  overflow: visible;
}

.content__content.is-open::after {
  opacity: 0;
}

.content__description {
  color: var(--color-gray);
  font-size: var(--text-middle);
  line-height: 1.8;
}

.content__description>*:first-child {
  margin-top: 0;
}

.content__description>*:last-child {
  margin-bottom: 0;
}

.content__description h2,
.content__description h3,
.content__description h4 {
  margin: 40px 0 20px;
  color: var(--color-black);
}

.content__description img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.content__reviews {
  grid-column: span 2;
  position: sticky;
  top: 125px;
  height: var(--content-card-height);
  padding: 12px;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
  overflow: hidden;
}

.content__reviews::before {
  content: "";
  position: absolute;
  top: 130px;
  left: 24px;
  right: 24px;
  height: 74px;
  background-color: var(--color-white);
  z-index: 3;
  border-radius: 18px;
}

.content__reviews::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 86px;
  background-color: var(--color-white);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
  z-index: 2;
}

.content__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.content__review-button {
  position: absolute;
  top: 140px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .7px;
  box-shadow: 0 10px 30px rgba(224, 3, 21, .25);
}

.content__more,
.content__map-link {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 54px;
  padding: 0 8px 0 22px;
  background-color: var(--color-white);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .05);
  text-decoration: none;
  cursor: pointer;
  transform: translateX(-50%);
  transition: all .3s ease;
}

.content__more:hover,
.content__map-link:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .05);
}

.content__more-text,
.content__map-link-text {
  font-family: var(--font-title);
  font-size: 13px;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: .7px;
  white-space: nowrap;
}

.content__more-icon,
.content__map-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--color-white);
  font-size: 18px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  border-radius: 50%;
  transition: transform .3s ease;
}

.content__more:hover .content__more-icon {
  transform: rotate(180deg);
}

.content__map-link:hover .content__map-link-icon {
  transform: translate(2px, -2px);
}

/* contacts */
/**************************/
.contacts {
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.contacts .container {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
}

.contacts__content {
  position: relative;
  z-index: 2;
  width: 420px;
  max-width: 100%;
  margin-left: 0;
  padding: 36px;
  background-color: var(--color-white);
  border-radius: 24px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, .08),
    0 2px 8px rgba(0, 0, 0, .05);
}

.contacts__title {
  margin: 0 0 24px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.contacts__address {
  margin-bottom: 24px;
  color: var(--color-gray);
  font-size: var(--text-middle);
  line-height: 1.8;
}

.contacts__phone {
  display: inline-block;
  margin-bottom: 24px;
  font-family: var(--font-title);
  font-size: 28px;
  color: var(--color-black);
  text-decoration: none;
  letter-spacing: 1px;
}

.contacts__messengers {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  margin-bottom: 24px;
}

.contacts__messenger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 66px;
  width: 66px;
  border: 0;
  background-color: var(--color-gray);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-white);
  margin-right: 15px;
}

.contacts__messenger:last-child {
  margin-right: 0;
}

.contacts__messenger img {
  height: 22px;
  width: 22px;
  margin-bottom: 7px;
}

.contacts__messenger {
  color: var(--color-white);
  font-size: 8px;
  text-transform: uppercase;
}

.contacts__wrapper {
  position: absolute;
  inset: 0;
  grid-column: unset;
  border-radius: 24px;
  box-shadow: none;
  z-index: 1;
}

.map__inner {
  width: 100%;
  height: 100%;
  min-height: 560px;
}

/* gallery */
/**************************/
.gallery {
  position: relative;
  margin-bottom: 30px;
  padding: 0 15px;
}

.gallery .container {
  overflow: hidden;
}

.gallery__title {
  margin: 0 0 30px;
  padding: 0 36px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.gallery__slider {
  overflow: visible;
}

.gallery .swiper-wrapper {
  align-items: stretch;
}

.gallery__item {
  height: auto;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgb(237, 237, 237);
}

.gallery__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: zoom-in;
}

.gallery__link::after {
  content: "\F0349";
  font-family: "Material Design Icons";
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 24px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  box-shadow: 0 10px 30px rgba(224, 3, 21, .25);
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}

.gallery__link:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery__link picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery__image {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery__link:hover .gallery__image {
  transform: scale(1.04);
}

.gallery__scroll {
  margin-top: 24px;
}

/* footer */
/**************************/
.footer {
  background-color: var(--color-night);
  color: var(--color-white);
  padding: 30px 15px;
  width: 100%;
  height: auto;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: var(--color-dark);
  border: 1px solid var(--color-black);
  border-radius: 20px;
  padding: 48px 36px;
}

.footer__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 36px;
  width: 100%;
}

.footer__media {
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer__rating {
  margin: 15px 0;
}

.footer__image {
  height: 40px;
  width: auto;
}

.footer__nav {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}

.footer__navtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
  position: relative;
  font-family: var(--font-title);
  margin: 0 0 20px;
  font-size: 16px;
}

.footer__navtitle:before {
  content: '';
  background-color: var(--color-accent);
  display: block;
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: -13px;
}

.footer__navlist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer__navlink {
  text-decoration: none;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s ease;
  cursor: pointer;
  line-height: 2;
}

.footer__navlink span:hover,
.footer__navlink span:focus,
.footer__navlink span:active {
  color: var(--color-white);
}

.footer__infobox {
  display: flex;
  flex-basis: auto;
  margin-right: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.footer__phone {
  text-decoration: none;
}

.footer__number {
  font-size: 22px;
  font-family: var(--font-title);
  color: var(--color-white);
  letter-spacing: 1px;
}

.footer__messengers {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 15px 0;
}

.footer__messengers button {
  background: transparent;
}

.footer__messenger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 66px;
  width: 66px;
  border: 0;
  border: 1px solid var(--color-secondary);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-white);
  margin-right: 15px;
}

.footer__messenger:last-child {
  margin-right: 0;
}

.footer__messenger img {
  height: 22px;
  width: 22px;
  margin-bottom: 7px;
}

.footer__messenger {
  color: inherit;
  font-size: 8px;
  text-transform: uppercase;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--color-black);
  font-size: 14px;
  letter-spacing: 1.2px;
}

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--color-secondary);
  width: 100%;
}

.footer__copyright a {
  text-decoration: none;
  color: var(--color-secondary);
  text-decoration: underline var(--color-secondary) dotted;
  text-underline-offset: 5px;
}

.footer__developer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-secondary);
  white-space: nowrap;
  padding-left: 30px;
}

.footer__developer a {
  text-decoration: none;
  color: var(--color-secondary);
}

/* notice */
/**************************/
.notice {
  padding: 0 15px;
  margin-bottom: 30px;
}

.notice .container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice__card {
  width: 100%;
  max-width: 800px;
  padding: 60px;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 2px 8px rgb(237, 237, 237);
  text-align: center;
  overflow: hidden;
}

.notice__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: .08;
}

.notice__code {
  margin-bottom: 15px;
  font-family: var(--font-title);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
}

.notice__title {
  margin: 0 0 20px;
  font-size: var(--title-middle);
  color: var(--color-black);
  letter-spacing: 1px;
}

.notice__description {
  max-width: 500px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: var(--text-middle);
  line-height: 1.8;
}

.notice__actions {
  margin-top: 40px;
}

.notice__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.notice__code--success {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  color: var(--color-white);
  font-size: 54px;
  box-shadow: 0 15px 40px rgba(224, 3, 21, .25);
}

/* fancybox */
/**************************/
.fancybox-container,
.fancybox__container {
  z-index: 99999 !important;
}

.fancybox-navigation .fancybox-button,
.fancybox__nav .f-button {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.fancybox-navigation .fancybox-button--arrow_left,
.fancybox__nav .f-button.is-prev {
  left: 30px !important;
}

.fancybox-navigation .fancybox-button--arrow_right,
.fancybox__nav .f-button.is-next {
  right: 30px !important;
}

/* cookie */
/**************************/
.cookie__notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 100%;
  padding: 0 15px;
  z-index: 9998;
  animation: cookieShow .4s ease;
}

.cookie__notice .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  max-width: 1400px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.297);
}

.cookie__notice .container > div {
  flex: 1 1 auto;
  font-size: var(--text-middle);
  color: var(--color-gray);
  line-height: 1.6;
}

.cookie__notice p {
  margin: 0 0 6px;
}

.cookie__notice a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.cookie__notice a:hover {
  text-decoration: underline;
}

.cookie__notice button {
  flex: 0 0 auto;
  width: max-content;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, #5f000a 0%, #a00111 25%, #e00315 55%, #ff4b5a 100%);
  cursor: pointer;
  transition: .3s ease;
}

@keyframes cookieShow {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  /* root */
  /**************************/
  :root {
    --title-large: clamp(26px, 4vw, 42px);
    --title-middle: clamp(22px, 3vw, 32px);
    --title-small: clamp(17px, 2vw, 20px);

    --text-large: 16px;
    --text-middle: 15px;
    --text-small: 13px;
  }

  /* buttons */
  /**************************/
  .btn {
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: .5px;
  }

  .btn__flare {
    width: 40px;
  }

  .btn__up {
    width: 46px;
    height: 46px;
    right: 25px;
    bottom: 25px;
    font-size: 22px;
  }

  /* form */
  /**************************/
  .form-group {
    margin-bottom: 18px;
  }

  .form-label {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.6px;
  }

  .form-input,
  .form-textarea {
    height: 50px;
    padding: 0 16px;
    border-radius: 10px;
  }

  .form-textarea {
    min-height: 120px;
    padding: 14px 16px;
  }

  .form-input:focus,
  .form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(224, 3, 21, 0.08);
  }

  .form-link {
    text-underline-offset: 3px;
  }

  /* checkbox */
  /**************************/
  [type="checkbox"]:checked + label,
  [type="checkbox"]:not(:checked) + label {
    padding-left: 28px;
    font-size: 13px;
    line-height: 1.5;
  }

  [type="checkbox"]:checked + label:before,
  [type="checkbox"]:not(:checked) + label:before {
    width: 15px;
    height: 15px;
  }

  [type="checkbox"]:checked + label:after,
  [type="checkbox"]:not(:checked) + label:after {
    width: 10px;
    height: 10px;
    top: 3px;
    left: 3px;
  }

  /* overlay */
  /**************************/
  .overlay__main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 998;
  }

  .overlay__main.active {
    visibility: visible;
    opacity: 1;
  }

  /* header */
  /**************************/
  body.menu__change {
    overflow: hidden;
  }

  .header {
    padding: 0 15px;
  }

  .header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 0 24px;
    gap: 15px;
  }

  .header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
  }

  .header__image {
    height: 36px;
  }

  .header__infobox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
  }

  .menu__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-left: 15px;
    color: var(--color-dark);
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    order: 3;
    z-index: 1032;
  }

  .menu__toggle .mdi-close {
    color: var(--color-white);
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 35%;
    height: 100vh;
    margin: 0;
    padding: 80px 0 40px;
    overflow-y: auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    list-style: none;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    transition: left .5s ease;
    z-index: 1031;
  }

  .header__nav.active {
    left: 0;
  }

  .menu__link {
    width: 100%;
    margin-right: 0;
    padding: 0;
    text-align: left;
  }

  .menu__link span:hover,
  .menu__link span:focus,
  .menu__link span:active {
    color: var(--color-white);
  }

  .menu__link > a,
  .menu__link > span {
    display: block;
    width: 100%;
    padding: 14px 56px 14px 24px;
    font-size: 16px;
    color: var(--color-white);
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
  }

  .menu__link:after {
    display: none;
  }

  .submenu-toggle {
    display: block;
    position: absolute;
    top: 7px;
    right: 14px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-secondary);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: transform .3s ease, color .3s ease;
    z-index: 2;
  }

  .menu__link.submenu-open > .submenu-toggle {
    transform: rotate(90deg);
    color: var(--color-white);
  }

  .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    display: none;
    width: 100%;
    margin: 0;
    padding: 4px 0 10px;
    border-radius: 0;
    text-align: left;
    background-color: rgba(255, 255, 255, .04);
  }

  .menu__link:hover > .sub-menu {
    display: none;
  }

  .menu__link.submenu-open > .sub-menu {
    display: block;
  }

  .sub-menu li a {
    display: block;
    padding: 8px 24px 8px 40px;
    color: var(--color-secondary);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    text-decoration: none;
  }

  .sub-menu li a::after {
    display: none;
  }

  /* worktime */
  /**************************/
  #worktime {
    margin-top: -4px;
  }

  .work-status__text {
    font-size: 9px;
    letter-spacing: .4px;
    line-height: 1.3;
    text-align: right;
  }

  .work-status__text.is-open,
  .work-status__text.is-closed {
    color: var(--color-gray);
  }

  /* breadcrumbs */
  /**************************/
  .breadcrumbs {
    padding: 0 15px 25px;
  }

  .breadcrumb {
    padding: 0 24px;
    gap: 6px 0;
  }

  .breadcrumb__item {
    font-size: 13px;
    line-height: 1.4;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 8px;
    font-size: 12px;
  }

  /* hero */
  /**************************/
  .hero {
    min-height: 520px;
    height: 55vh;
    margin-bottom: 25px;
  }

  .hero__media,
  .hero__content {
    border-radius: 20px;
  }

  .hero__content {
    padding: 0 30px;
  }

  .hero__title {
    width: 75%;
    margin-bottom: 20px;
    letter-spacing: .5px;
  }

  .hero__description {
    width: 75%;
    margin-bottom: 25px;
    line-height: 1.8;
  }

  .hero__actions {
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .hero__action {
    padding: 18px 26px;
  }

  /* benefits */
  /**************************/
  .benefits {
    margin-bottom: 25px;
  }

  .benefits__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }

  .benefits__item {
    padding: 20px 24px;
    border-radius: 20px;
  }

  .benefits__item::before {
    top: -35px;
    right: -35px;
    width: 40px;
    height: 40px;
    border-width: 20px;
  }

  .benefits__item::after {
    top: 10px;
    left: 18px;
  }

  .benefits__title {
    margin: 24px 0 12px;
  }

  .benefits__description {
    line-height: 1.7;
  }

  /* callback */
  /**************************/
  .callback {
    margin-bottom: 25px;
    scroll-margin-top: 130px;
  }

  .callback .container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
  }

  .callback__media {
    grid-column: span 3;
  }

  .callback__image {
    border-radius: 20px;
  }

  .callback__content {
    grid-column: span 2;
    padding: 24px;
    border-radius: 20px;
    top: 110px;
  }

  .callback__title {
    margin-bottom: 24px;
    padding: 20px 24px 0;
    letter-spacing: .5px;
  }

  .btn__callback {
    margin-top: 24px;
    padding: 18px 26px;
  }

  /* feedback */
  /**************************/
  .feedback {
    margin-bottom: 25px;
  }

  .feedback .container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
  }

  .feedback__media {
    grid-column: span 3;
  }

  .feedback__image {
    border-radius: 20px;
  }

  .feedback__content {
    grid-column: span 2;
    padding: 24px;
    border-radius: 20px;
    top: 110px;
  }

  .feedback__title {
    margin-bottom: 24px;
    padding: 20px 24px 0;
    letter-spacing: .5px;
  }

  .btn__feedback {
    margin-top: 24px;
    padding: 18px 26px;
  }

  /* showcase */
  /**************************/
  .showcase {
    margin-bottom: 25px;
  }

  .showcase__title {
    margin-bottom: 25px;
    padding: 0 24px;
    letter-spacing: .5px;
  }

  .showcase__category {
    margin-bottom: 25px;
  }

  .showcase__category-title {
    margin-bottom: 25px;
    padding: 0 24px;
    letter-spacing: .5px;
  }

  .showcase__slide {
    min-height: 400px;
    border-radius: 20px;
  }

  .showcase__item-title {
    padding: 0 24px 24px;
    line-height: 1.4;
    letter-spacing: .5px;
  }

  .showcase__scroll {
    margin-top: 20px;
  }

  /* services */
  /**************************/
  .services {
    margin-bottom: 25px;
  }

  .services__heading {
    margin-bottom: 25px;
    padding: 0 24px;
    letter-spacing: .5px;
  }

  .services .swiper-slide {
    min-height: 400px;
    border-radius: 20px;
  }

  .services__title {
    padding: 0 24px 24px;
    line-height: 1.4;
    letter-spacing: .5px;
  }

  .services__link {
    font-size: 13px;
  }

  .services__scroll {
    margin: 20px 0 0 24px;
    padding-left: 55px;
  }

  .services__scroll-icon {
    top: -6px;
    left: 6px;
    transform: rotate(-90deg) scale(.9);
  }

  .service-price {
    min-height: 58px;
    padding: 10px 20px;
  }

  .service__label {
    font-size: 9px;
    letter-spacing: .8px;
  }

  .service__value {
    line-height: 1.1;
  }

  /* content */
  /**************************/
  .content {
    --content-card-height: 650px;
    margin-bottom: 25px;
  }

  .content .container {
    gap: 15px;
  }

  .content__heading {
    padding: 0 24px;
    letter-spacing: .5px;
  }

  .content__content {
    grid-column: span 3;
    padding: 24px;
    border-radius: 20px;
  }

  .content__content::after {
    height: 110px;
  }

  .content__description {
    line-height: 1.7;
  }

  .content__description h2,
  .content__description h3,
  .content__description h4 {
    margin: 32px 0 16px;
  }

  .content__description img {
    border-radius: 16px;
  }

  .content__reviews {
    grid-column: span 2;
    top: 110px;
    padding: 10px;
    border-radius: 20px;
  }

  .content__reviews::before {
    left: 20px;
    right: 20px;
    top: 137px;
    height: 96px;
  }

  .content__review-button {
    top: 140px;
    height: 52px;
    padding: 0 34px;
    font-size: 12px;
  }

  .content__more,
  .content__map-link {
    bottom: 24px;
    height: 50px;
    padding: 0 8px 0 18px;
    gap: 12px;
  }

  .content__more-text,
  .content__map-link-text {
    font-size: 12px;
    letter-spacing: .5px;
  }

  .content__more-icon,
  .content__map-link-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  /* contacts */
  /**************************/
  .contacts {
    margin-bottom: 25px;
  }

  .contacts .container {
    min-height: 500px;
    border-radius: 20px;
  }

  .contacts__content {
    width: 380px;
    padding: 28px;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .contacts__title {
    margin-bottom: 20px;
    letter-spacing: .5px;
  }

  .contacts__address {
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .contacts__phone {
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: .5px;
  }

  .contacts__messengers {
    margin-bottom: 20px;
  }

  .contacts__messenger {
    width: 62px;
    height: 62px;
    margin-right: 12px;
    font-size: 7px;
  }

  .contacts__messenger img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .contacts__wrapper {
    border-radius: 20px;
  }

  .map__inner {
    min-height: 500px;
  }

  /* gallery */
  /**************************/
  .gallery {
    margin-bottom: 25px;
  }

  .gallery__title {
    margin-bottom: 25px;
    padding: 0 24px;
    letter-spacing: .5px;
  }

  .gallery__item {
    min-height: 380px;
    border-radius: 20px;
  }

  .gallery__link::after {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    font-size: 20px;
    opacity: 1;
    transform: none;
  }

  .gallery__image {
    transition: transform .3s ease;
  }

  .gallery__scroll {
    margin-top: 20px;
  }

  /* footer */
  /**************************/
  .footer {
    padding: 25px 15px;
  }

  footer .container {
    padding: 36px 24px;
    border-radius: 16px;
  }

  .footer__wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: flex-start;
    gap: 40px;
  }

  .footer__media {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__infobox {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-top: 120px;
    align-items: flex-start;
  }

  .footer__image {
    height: 36px;
  }

  .footer__nav {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 30px;
    justify-content: flex-start;
  }

  .footer__navtitle {
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: .5px;
  }

  .footer__navtitle:before {
    width: 60px;
    bottom: -10px;
  }

  .footer__navlink {
    line-height: 1.8;
    letter-spacing: .5px;
  }

  .footer__number {
    font-size: 20px;
    letter-spacing: .5px;
  }

  .footer__messengers {
    justify-content: flex-start;
    margin: 12px 0;
  }

  .footer__messenger {
    width: 62px;
    height: 62px;
    margin-right: 12px;
    font-size: 7px;
  }

  .footer__messenger img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .footer__bottom {
    padding-top: 20px;
    font-size: 13px;
    letter-spacing: .8px;
  }

  .footer__copyright {
    gap: 8px 16px;
  }

  .footer__copyright p {
    margin-bottom: 0;
  }

  .footer__developer {
    padding-left: 20px;
  }

  /* notice */
  /**************************/
  .notice {
    margin-bottom: 25px;
  }

  .notice .container {
    min-height: 60vh;
  }

  .notice__card {
    max-width: 700px;
    padding: 48px 36px;
    border-radius: 20px;
  }

  .notice__card::before {
    top: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
  }

  .notice__code {
    margin-bottom: 12px;
  }

  .notice__title {
    margin-bottom: 16px;
    letter-spacing: .5px;
  }

  .notice__description {
    line-height: 1.7;
  }

  .notice__actions {
    margin-top: 32px;
  }

  .notice__button {
    padding: 18px 26px;
  }

  .notice__code--success {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
    font-size: 46px;
  }

  /* cookie */
  /**************************/
  .cookie__notice {
    width: 100%;
    bottom: 10px;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cookie__notice > div {
    display: flex;
    gap: 20px;
  }

  .cookie__notice button {
    flex: 0 0 auto;
    width: max-content;
    white-space: nowrap;
    padding: 12px 18px;
    font-size: 11px;
    letter-spacing: .5px;
  }
}

@media (max-width: 992px) {
  /* root */
  /**************************/
  :root {
    --title-large: clamp(24px, 4vw, 38px);
    --title-middle: clamp(20px, 3vw, 28px);
    --title-small: clamp(16px, 2vw, 18px);

    --text-large: 15px;
    --text-middle: 14px;
    --text-small: 12px;
  }

  /* buttons */
  /**************************/
  .btn {
    padding: 11px 20px;
    font-size: 12px;
    letter-spacing: .5px;
  }

  .btn__flare {
    width: 35px;
  }

  .btn__up {
    width: 44px;
    height: 44px;
    right: 20px;
    bottom: 20px;
    font-size: 20px;
  }

  /* form */
  /**************************/
  .form-group {
    margin-bottom: 16px;
  }

  .form-label {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: .5px;
  }

  .form-input,
  .form-textarea {
    height: 48px;
    padding: 0 14px;
    border-radius: 10px;
  }

  .form-textarea {
    min-height: 110px;
    padding: 12px 14px;
  }

  .form-input:focus,
  .form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(224, 3, 21, 0.08);
  }

  .form-link {
    text-underline-offset: 3px;
  }

  /* checkbox */
  /**************************/
  [type="checkbox"]:checked + label,
  [type="checkbox"]:not(:checked) + label {
    padding-left: 26px;
    font-size: 12px;
    line-height: 1.5;
  }

  [type="checkbox"]:checked + label:before,
  [type="checkbox"]:not(:checked) + label:before {
    width: 14px;
    height: 14px;
  }

  [type="checkbox"]:checked + label:after,
  [type="checkbox"]:not(:checked) + label:after {
    width: 9px;
    height: 9px;
    top: 3px;
    left: 3px;
  }

  /* header */
  /**************************/
  body.menu__change {
    overflow: hidden;
  }

  .header {
    padding: 0 15px;
  }

  .header__wrapper {
    min-height: 75px;
    padding: 0 20px;
    gap: 12px;
  }

  .header__logo {
    order: 2;
    margin-left: auto;
  }

  .header__image {
    height: 32px;
  }

  .header__infobox {
    order: 1;
    margin-left: 0;
  }

  .header__phone .mdi-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 32px;
    color: var(--color-dark);
  }

  .header__number {
    display: none;
  }

  .work-status__text {
    font-size: 9px;
  }

  .menu__toggle {
    width: 32px;
    height: 32px;
    margin-left: 0;
    font-size: 32px;
    order: 3;
  }

  .header__nav {
    width: 320px;
    max-width: 85vw;
    padding: 75px 0 30px;
  }

  .menu__link > a,
  .menu__link > span {
    padding: 12px 50px 12px 20px;
    font-size: 15px;
  }

  .submenu-toggle {
    top: 5px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .sub-menu li a {
    padding: 8px 20px 8px 36px;
    font-size: 13px;
  }

  /* worktime */
  /**************************/
  #worktime {
    display: none;
  }

  /* breadcrumbs */
  /**************************/
  .breadcrumb {
    padding: 0 20px;
  }

  .breadcrumb__item {
    font-size: 12px;
  }

  /* hero */
  /**************************/
  .hero {
    min-height: 480px;
    height: 50vh;
    margin-bottom: 25px;
  }

  .hero__media,
  .hero__content {
    border-radius: 18px;
  }

  .hero__content {
    padding: 0 24px;
  }

  .hero__title {
    width: 85%;
    margin-bottom: 18px;
    letter-spacing: .5px;
  }

  .hero__description {
    width: 85%;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .hero__action {
    padding: 16px 24px;
  }

  /* benefits */
  /**************************/
  .benefits {
    margin-bottom: 25px;
  }

  .benefits__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .benefits__item {
    padding: 20px 24px;
    border-radius: 18px;
  }

  .benefits__item::before {
    top: -30px;
    right: -30px;
    width: 35px;
    height: 35px;
    border-width: 18px;
  }

  .benefits__item::after {
    top: 10px;
    left: 18px;
  }

  .benefits__title {
    margin: 22px 0 10px;
  }

  .benefits__description {
    line-height: 1.6;
  }

  /* callback */
  /**************************/
  .callback {
    margin-bottom: 25px;
    scroll-margin-top: 120px;
  }

  .callback .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .callback__media {
    width: 100%;
  }

  .callback__image {
    border-radius: 20px;
    min-height: 400px;
  }

  .callback__content {
    position: relative;
    top: auto;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
  }

  .callback__title {
    margin-bottom: 24px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .btn__callback {
    margin-top: 24px;
    padding: 18px 26px;
  }

  /* feedback */
  /**************************/
  .feedback {
    margin-bottom: 25px;
  }

  .feedback .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .feedback__media {
    width: 100%;
  }

  .feedback__image {
    border-radius: 20px;
    min-height: 400px;
  }

  .feedback__content {
    position: relative;
    top: auto;
    width: 100%;
    padding: 24px;
    border-radius: 20px;
  }

  .feedback__title {
    margin-bottom: 24px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .btn__feedback {
    margin-top: 24px;
    padding: 18px 26px;
  }

  /* showcase */
  /**************************/
  .showcase {
    margin-bottom: 25px;
  }

  .showcase__title {
    margin-bottom: 20px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .showcase__category {
    margin-bottom: 25px;
  }

  .showcase__category-title {
    margin-bottom: 20px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .showcase__slide {
    min-height: 360px;
    border-radius: 18px;
  }

  .showcase__item-title {
    padding: 0 20px 20px;
    line-height: 1.4;
    letter-spacing: .5px;
  }

  .showcase__scroll {
    margin-top: 16px;
  }

  /* services */
  /**************************/
  .services {
    margin-bottom: 25px;
  }

  .services__heading {
    margin-bottom: 20px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .services .swiper-slide {
    min-height: 360px;
    border-radius: 18px;
  }

  .services__title {
    padding: 0 20px 20px;
    line-height: 1.4;
    letter-spacing: .5px;
  }

  .services__link {
    font-size: 12px;
  }

  .services__scroll {
    margin: 16px 0 0 20px;
    padding-left: 50px;
    font-size: 12px;
  }

  .services__scroll-icon {
    top: -7px;
    left: 5px;
    transform: rotate(-90deg) scale(.85);
  }

  .service-price {
    min-height: 54px;
    padding: 8px 18px;
  }

  .service__label {
    font-size: 8px;
    letter-spacing: .8px;
  }

  .service__value {
    line-height: 1.1;
  }

  /* content */
  /**************************/
  .content {
    --content-card-height: auto;
    margin-bottom: 25px;
  }

  .content .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .content__heading {
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .content__content {
    width: 100%;
    height: auto;
    max-height: none;
    padding: 24px;
    border-radius: 20px;
  }

  .content__content::after {
    height: 110px;
  }

  .content__description {
    line-height: 1.7;
  }

  .content__description h2,
  .content__description h3,
  .content__description h4 {
    margin: 32px 0 16px;
  }

  .content__description img {
    border-radius: 16px;
  }

  .content__reviews {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    height: 650px;
    padding: 10px;
    border-radius: 20px;
  }

  .content__reviews::before {
    left: 20px;
    right: 20px;
    top: 137px;
    height: 96px;
  }

  .content__review-button {
    top: 140px;
    height: 52px;
    padding: 0 34px;
    font-size: 12px;
  }

  .content__more,
  .content__map-link {
    bottom: 24px;
    height: 50px;
    padding: 0 8px 0 18px;
    gap: 12px;
  }

  .content__more-text,
  .content__map-link-text {
    font-size: 12px;
    letter-spacing: .5px;
  }

  .content__more-icon,
  .content__map-link-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  /* contacts */
  /**************************/
  .contacts {
    margin-bottom: 25px;
  }

  .contacts .container {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
    border-radius: 20px;
    gap: 15px;
  }

  .contacts__content {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px;
    border-radius: 20px;
  }

  .contacts__title {
    margin-bottom: 20px;
    letter-spacing: .5px;
  }

  .contacts__address {
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .contacts__phone {
    margin-bottom: 20px;
    font-size: 24px;
    letter-spacing: .5px;
  }

  .contacts__messengers {
    margin-bottom: 20px;
  }

  .contacts__messenger {
    width: 54px;
    height: 54px;
    margin-right: 12px;
  }

  .contacts__messenger img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .contacts__messenger {
    font-size: 7px;
  }

  .contacts__wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
  }

  .map__inner {
    width: 100%;
    height: 100%;
    min-height: 450px;
  }

  /* gallery */
  /**************************/
  .gallery {
    margin-bottom: 25px;
  }

  .gallery__title {
    margin-bottom: 20px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .gallery__item {
    min-height: 340px;
    border-radius: 18px;
  }

  .gallery__link::after {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 18px;
    opacity: 1;
    transform: none;
  }

  .gallery__image {
    transition: transform .3s ease;
  }

  .gallery__scroll {
    margin-top: 16px;
  }

  /* footer */
  /**************************/
  .footer {
    padding: 25px 15px;
  }

  footer .container {
    padding: 32px 20px;
    border-radius: 16px;
  }

  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

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

  .footer__image {
    height: 36px;
  }

  .footer__rating {
    margin: 15px 0 0;
  }

  .footer__infobox {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0;
    order: 2;
  }

  .footer__number {
    font-size: 20px;
    letter-spacing: .5px;
  }

  .footer__messengers {
    justify-content: center;
    margin: 24px 0 0;
  }

  .footer__messenger {
    width: 60px;
    height: 60px;
    margin-right: 12px;
  }

  .footer__messenger:last-child {
    margin-right: 0;
  }

  .footer__messenger img {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }

  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    margin-top: 36px;
    gap: 24px;
    width: 100%;
    order: 3;
  }

  .footer__navtitle {
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: .5px;
  }

  .footer__navtitle:before {
    width: 60px;
    bottom: -10px;
  }

  .footer__navlink {
    line-height: 1.8;
    letter-spacing: .5px;
  }

  .footer__bottom {
    padding-top: 20px;
    font-size: 13px;
    letter-spacing: .8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer__copyright {
    gap: 8px 16px;
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer__copyright p {
    margin-bottom: 0;
  }

  .footer__developer {
    padding-left: 0;
  }

  /* notice */
  /**************************/
  .notice {
    margin-bottom: 25px;
  }

  .notice .container {
    min-height: 55vh;
  }

  .notice__card {
    max-width: 640px;
    padding: 40px 30px;
    border-radius: 18px;
  }

  .notice__card::before {
    top: -70px;
    right: -70px;
    width: 130px;
    height: 130px;
  }

  .notice__code {
    margin-bottom: 10px;
  }

  .notice__title {
    margin-bottom: 14px;
    letter-spacing: .5px;
  }

  .notice__description {
    line-height: 1.6;
  }

  .notice__actions {
    margin-top: 28px;
  }

  .notice__button {
    padding: 16px 24px;
  }

  .notice__code--success {
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    font-size: 42px;
  }

  /* cookie */
  /**************************/
  .cookie__notice {
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
  }

  .cookie__notice > div {
    line-height: 1.5;
  }

  .cookie__notice button {
    padding: 12px 22px;
    font-size: 12px;
    letter-spacing: .5px;
  }
}

@media (max-width: 768px) {
  /* header */
  /**************************/
  .header__image {
    height: 28px;
  }

  /* content */
  /**************************/
  .content {
    --content-card-height: auto;
    margin-bottom: 25px;
  }

  .content .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .content__heading {
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .content__content {
    width: 100%;
    height: 420px;
    max-height: 420px;
    padding: 24px;
    border-radius: 20px;
    overflow: hidden;
  }

  .content__content::after {
    height: 120px;
    opacity: 1;
  }

  .content__content.is-open {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .content__content.is-open::after {
    opacity: 0;
  }

  .content__description {
    line-height: 1.7;
  }

  .content__description h2,
  .content__description h3,
  .content__description h4 {
    margin: 32px 0 16px;
  }

  .content__description img {
    border-radius: 16px;
  }

  .content__reviews {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    height: 600px;
    padding: 10px;
    border-radius: 20px;
  }

  .content__reviews::before {
    left: 20px;
    right: 20px;
    top: 137px;
    height: 96px;
  }

  .content__review-button {
    top: 140px;
    height: 52px;
    padding: 0 34px;
    font-size: 12px;
  }

  .content__more,
  .content__map-link {
    bottom: 24px;
    height: 50px;
    padding: 0 8px 0 18px;
    gap: 12px;
  }

  .content__more-text,
  .content__map-link-text {
    font-size: 12px;
    letter-spacing: .5px;
  }

  .content__more-icon,
  .content__map-link-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  /* main */
  /**************************/
  body {
    padding-top: 90px;
  }

  /* header */
  /**************************/
  body.menu__change {
    overflow: hidden;
  }

  .header {
    padding: 0 10px;
  }

  .header__wrapper {
    min-height: 65px;
    padding: 0 15px;
    gap: 10px;
    margin-top: 10px;
    border-radius: 18px;
  }

  .header__logo {
    order: 2;
    margin-left: auto;
  }

  .header__image {
    height: 28px;
  }

  .header__infobox {
    order: 1;
    margin-left: 0;
  }

  .header__phone .mdi-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 28px;
    color: var(--color-dark);
  }

  .header__number {
    display: none;
  }

  .menu__toggle {
    width: 28px;
    height: 28px;
    margin-left: 0;
    font-size: 28px;
    order: 3;
  }

  .header__nav {
    width: 280px;
    max-width: 90vw;
    padding: 65px 0 25px;
  }

  .menu__link > a,
  .menu__link > span {
    padding: 12px 45px 12px 18px;
    font-size: 14px;
  }

  .submenu-toggle {
    top: 5px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .sub-menu li a {
    padding: 8px 18px 8px 32px;
    font-size: 12px;
  }

  /* hero */
  /**************************/
  .hero {
    padding: 0 10px;
  }

  .hero__title {
    width: 100%;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: .5px;
  }

  .hero__description {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
  }

  .hero__actions {
    width: 100%;
    gap: 12px;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }

  .hero__action {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
  }

  /* benefits */
  /**************************/
  .benefits {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .benefits__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefits__item {
    padding: 18px 20px;
    border-radius: 16px;
  }

  .benefits__item::before {
    top: -25px;
    right: -25px;
    width: 30px;
    height: 30px;
    border-width: 15px;
  }

  .benefits__item::after {
    top: 8px;
    left: 14px;
  }

  .benefits__title {
    margin: 20px 0 10px;
    line-height: 1.4;
  }

  .benefits__description {
    line-height: 1.6;
  }

  /* callback */
  /**************************/
  .callback {
    margin-bottom: 20px;
    scroll-margin-top: 100px;
    padding: 0 10px;
  }

  .callback .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .callback__media {
    width: 100%;
  }

  .callback__image {
    min-height: 250px;
    border-radius: 16px;
  }

  .callback__content {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .callback__title {
    margin-bottom: 20px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .btn__callback {
    width: 100%;
    margin-top: 20px;
    padding: 16px 20px;
  }

  /* feedback */
  /**************************/
  .feedback {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .feedback .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .feedback__media {
    width: 100%;
  }

  .feedback__image {
    min-height: 250px;
    border-radius: 16px;
  }

  .feedback__content {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
  }

  .feedback__title {
    margin-bottom: 20px;
    padding: 0 20px;
    letter-spacing: .5px;
  }

  .btn__feedback {
    width: 100%;
    margin-top: 20px;
    padding: 16px 20px;
    text-align: center;
  }

  /* showcase */
  /**************************/
  .showcase {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .showcase__title {
    margin-bottom: 16px;
    padding: 0 10px;
    letter-spacing: .5px;
  }

  .showcase__category {
    margin-bottom: 20px;
  }

  .showcase__category-title {
    margin-bottom: 16px;
    padding: 0 10px;
    letter-spacing: .5px;
  }

  .showcase__slide {
    min-height: 300px;
    border-radius: 16px;
  }

  .showcase__item-title {
    padding: 0 16px 16px;
    line-height: 1.4;
    letter-spacing: .5px;
  }

  .showcase__scroll {
    margin-top: 12px;
  }

  /* services */
  /**************************/
  .services {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .services__heading {
    margin-bottom: 16px;
    padding: 0 10px;
    letter-spacing: .5px;
  }

  .services .swiper-slide {
    min-height: 300px;
    border-radius: 16px;
  }

  .services__title {
    padding: 0 16px 16px;
    line-height: 1.4;
    letter-spacing: .5px;
  }

  .services__link {
    font-size: 11px;
  }

  .services__scroll {
    margin: 12px 0 0 10px;
    padding-left: 46px;
    font-size: 11px;
  }

  .services__scroll-icon {
    top: -8px;
    left: 4px;
    transform: rotate(-90deg) scale(.8);
  }

  .service-price {
    min-height: 50px;
    padding: 8px 16px;
  }

  .service__label {
    font-size: 8px;
    letter-spacing: .6px;
  }

  .service__value {
    line-height: 1.1;
  }

  /* content */
  /**************************/
  .content {
    --content-card-height: auto;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .content .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .content__heading {
    padding: 0 10px;
    letter-spacing: .5px;
  }

  .content__content {
    width: 100%;
    height: 380px;
    max-height: 380px;
    padding: 18px;
    border-radius: 16px;
  }

  .content__content::after {
    height: 90px;
  }

  .content__content.is-open {
    height: auto;
    max-height: none;
  }

  .content__description {
    line-height: 1.6;
  }

  .content__description h2,
  .content__description h3,
  .content__description h4 {
    margin: 24px 0 12px;
  }

  .content__description img {
    border-radius: 12px;
  }

  .content__reviews {
    position: relative;
    top: auto;
    width: 100%;
    height: 500px;
    padding: 8px;
    border-radius: 16px;
  }

  .content__reviews::before {
    left: 16px;
    right: 16px;
    top: 135px;
    height: 100px;
  }

  .content__reviews::after {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .content__review-button {
    top: 140px;
    height: 46px;
    padding: 0 24px;
    font-size: 11px;
  }

  .content__more,
  .content__map-link {
    bottom: 18px;
    height: 44px;
    padding: 0 6px 0 14px;
    gap: 10px;
  }

  .content__more-text,
  .content__map-link-text {
    font-size: 11px;
    letter-spacing: .4px;
  }

  .content__more-icon,
  .content__map-link-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  /* contacts */
  /**************************/
  .contacts {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .contacts .container {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
    border-radius: 16px;
    gap: 12px;
  }

  .contacts__content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 20px;
    border-radius: 16px;
  }

  .contacts__title {
    margin-bottom: 16px;
    letter-spacing: .5px;
  }

  .contacts__address {
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .contacts__phone {
    margin-bottom: 16px;
    font-size: 24px;
    letter-spacing: .5px;
  }

  .contacts__messengers {
    margin-bottom: 16px;
  }

  .contacts__messenger {
    width: 58px;
    height: 58px;
    margin-right: 10px;
  }

  .contacts__messenger img {
    width: 19px;
    height: 19px;
    margin-bottom: 5px;
  }

  .contacts__wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
  }

  .map__inner {
    width: 100%;
    height: 100%;
    min-height: 360px;
  }

  /* gallery */
  /**************************/
  .gallery {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .gallery__title {
    margin-bottom: 16px;
    padding: 0 10px;
    letter-spacing: .5px;
  }

  .gallery__item {
    min-height: 280px;
    border-radius: 16px;
  }

  .gallery__link::after {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    opacity: 1;
    transform: none;
  }

  .gallery__image {
    transition: transform .3s ease;
  }

  .gallery__scroll {
    margin-top: 12px;
  }

  /* footer */
  /**************************/
  .footer {
    padding: 20px 10px;
  }

  footer .container {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    text-align: center;
  }

  .footer__media {
    align-items: center;
    text-align: center;
  }

  .footer__image {
    height: 34px;
  }

  .footer__rating {
    margin: 15px 0 0;
  }

  .footer__infobox {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0;
    order: 2;
    text-align: center;
  }

  .footer__number {
    font-size: 24px;
    letter-spacing: .5px;
  }

  .footer__messengers {
    justify-content: center;
    margin: 20px 0 0;
  }

  .footer__messenger {
    margin-right: 10px;
  }

  .footer__messenger:last-child {
    margin-right: 0;
  }

  .footer__messenger img {
    width: 19px;
    height: 19px;
    margin-bottom: 5px;
  }

  .footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 28px;
    width: 100%;
    order: 3;
    text-align: center;
  }

  .footer__navlist {
    align-items: center;
    text-align: center;
  }

  .footer__navtitle {
    margin-bottom: 36px;
    font-size: 16px;
    letter-spacing: .5px;
    text-align: center;
  }

  .footer__navtitle:before {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    bottom: -10px;
  }

  .footer__navlink {
    line-height: 1.8;
    letter-spacing: .5px;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer__bottom {
    padding-top: 20px;
    font-size: 12px;
    letter-spacing: .6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer__copyright {
    justify-content: center;
    gap: 8px 14px;
    margin-bottom: 12px;
    text-align: center;
  }

  .footer__copyright p {
    margin-bottom: 0;
  }

  .footer__developer {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }

  /* notice */
  /**************************/
  .notice {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .notice .container {
    min-height: 50vh;
  }

  .notice__card {
    max-width: 100%;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .notice__card::before {
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
  }

  .notice__code {
    margin-bottom: 8px;
  }

  .notice__title {
    margin-bottom: 12px;
    letter-spacing: .5px;
  }

  .notice__description {
    line-height: 1.6;
  }

  .notice__actions {
    margin-top: 24px;
  }

  .notice__button {
    width: 100%;
    padding: 16px 20px;
    justify-content: center;
  }

  .notice__code--success {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    font-size: 34px;
  }

  /* cookie */
  /**************************/
  .cookie__notice {
    width: 100%;
    bottom: 10px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
  }

  .cookie__notice .container {
    flex-direction: column;
  }

  .cookie__notice > div {
    line-height: 1.5;
  }

  .cookie__more {
    text-transform: uppercase;
  }

  .cookie__notice button {
    width: 100%;
    padding: 14px 20px;
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: .5px;
  }
}