/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: rgba(0, 0, 0, 0);
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --light: #f5f5f5;
  --gallery: #f0f0f0;
  --black: #0a090a;
  --thunder: #1b1a1b;
  --shaft: #383838;
  --red: #f55;
}

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

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

img {
  max-width: 100%;
}

body {
  font-family: Roboto, sans-serif;
  background-color: var(--light);
}

.body-hidden {
  overflow: hidden;
  touch-action: none;
}

:root {
  --content-width: 1520px;
  --offset-width: 15px;
  --container-width: calc(var(--content-width) + (var(--offset-width) * 2));
}

.container {
  max-width: var(--container-width);
  width: 100%;
  padding: 0 var(--offset-width);
  margin: 0 auto;
}

.btn-reset {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0;
  padding: 0;
  color: inherit;
  outline: 0;
}

.btn-arrow {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.btn-arrow._black-rect div {
  background-color: var(--black);
  color: #fff;
}

.btn-arrow span {
  display: block;
  text-align: center;
  padding: 20px 36px;
  background-color: var(--red);
  border-radius: 4px;
  flex: 1;
  color: #fff;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-arrow div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
  background-color: #fff;
  color: #000;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-arrow svg {
  width: 18px;
  height: 18px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 20px 32px;
  background-color: var(--black);
  border-radius: 4px;
  border: none;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  transition: background-color 0.2s ease;
}

.button._white {
  background-color: #fff;
  color: var(--black);
}
.button._red {
  background-color: var(--red);
}

.btn-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: var(--black);
  color: #fff;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.btn-rect._red {
  background-color: var(--red);
}

.btn-rect._white {
  background-color: #fff;
  color: var(--black);
}

.btn-rect svg {
  width: 32px;
  height: 32px;
}

.list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.sect-p {
  padding: 100px 0;
}

.sect-m {
  margin: 100px 0;
}

.sect-m-min {
  margin: 50px 0;
}

.sect-m-min-top {
  margin: 50px 0 100px 0;
}

.s-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.s-head .s-title {
  margin: 0 !important;
}

.main-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 50px 0;
}

.s-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin: 0 0 50px 0;
}

.t-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}

.input {
  padding: 16px 20px;
  border-radius: 4px;
  background-color: var(--shaft);
  outline: 0;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  color: #fff;
}

.input::-webkit-input-placeholder {
  color: #fff;
}

.input:-ms-input-placeholder {
  color: #fff;
}

.input::-ms-input-placeholder {
  color: #fff;
}

.input::placeholder {
  color: #fff;
}

.input._white {
  background-color: #fff;
  color: var(--black);
}

.input._white::-webkit-input-placeholder {
  color: var(--black);
}

.input._white:-ms-input-placeholder {
  color: var(--black);
}

.input._white::-ms-input-placeholder {
  color: var(--black);
}

.input._white::placeholder {
  color: var(--black);
}

textarea.input {
  resize: none;
}

.input-file {
  display: none;
}

.label-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 4px;
  background-color: var(--shaft);
  outline: 0;
  border: none;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  color: #fff;
}

.label-file._white {
  background-color: #fff;
  color: var(--black);
}

.label-file span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.label-file svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.slider-nav {
  display: flex;
  gap: 20px;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background-color: var(--black);
  color: #fff;
  padding: 0;
  width: 60px;
  height: 60px;
  transition: opacity 0.2s ease;
}

.slider-btn.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.7;
}

.slider-btn._next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.slider-btn svg {
  width: 22px;
  height: 22px;
}

.slider-scrollbar {
  background: rgba(0, 0, 0, 0.1);
  height: 1px;
  margin-top: 50px;
}

.slider-scrollbar .swiper-scrollbar-drag {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slider-scrollbar .swiper-scrollbar-drag::before {
  position: absolute;
  content: "";
  height: 3px;
  right: 0;
  left: 0;
  background-color: var(--black);
}

.breadcrumbs {
  padding: 20px 0;
  background-color: #fff;
}

.breadcrumbs .aioseo-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumbs .aioseo-breadcrumb {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 140%;
}

.breadcrumbs .aioseo-breadcrumb:last-child {
  opacity: 0.5;
}

.breadcrumbs .aioseo-breadcrumb a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.breadcrumbs .aioseo-breadcrumb a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--red);
}

.price-list {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
  row-gap: 20px;
  padding: 40px;
  background-color: #fff;
  border-radius: 4px;
}

.price-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  padding-top: 20px;
  border-top: 1px solid var(--gallery);
}

.price-list__item:nth-child(-n + 2) {
  border-top: none;
  padding-top: 0;
}

.content {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.content p {
  margin: 0;
}

.content p:not(:last-child) {
  margin-bottom: 20px;
}

.burger-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black);
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition:
    visibility 0.4s ease,
    opacity 0.4s ease;
}

.burger-overlay._active {
  visibility: visible;
  opacity: 0.5;
}

.burger {
  background-color: #fff;
  position: fixed;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  top: 0;
  bottom: 0;
  left: 0;
  width: 340px;
  max-width: 100%;
  padding: 30px 20px;
  z-index: 110;
  color: #fff;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  background-color: var(--black);
  -webkit-transform: translateX(-350px);
  transform: translateX(-350px);
}

.burger._open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.burger__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
}

.burger__logo {
  display: block;
  width: 150px;
}

.burger__logo img {
  width: 100%;
  display: block;
}

.burger__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 30px;
}

.burger__close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

.burger__close span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger__close span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.burger__list a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 130%;
  font-weight: 300;
  transition: opacity 0.2s ease;
}

.burger__contacts {
  margin-top: auto;
}

.burger__social {
  display: flex;
  gap: 20px;
}

.burger__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: #fff;
  color: var(--black);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.burger__social-btn svg {
  width: 24px;
  height: 24px;
}

.burger__contacts-main {
  margin-top: 20px;
}

.burger__contacts-tel {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 20px;
  transition: opacity 0.2s ease;
}
.burger__branches-btn {
  display: block;
  width: 100%;
}

.burger__address {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.5;
}

.modal {
  display: none;
  width: 650px !important;
  padding: 30px 25px !important;
  max-width: calc(100% - 30px) !important;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.modal__title {
  margin: 0;
}

.modal__close {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: opacity 0.2s ease;
}

.modal__close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

.modal__close span:first-child {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close span:last-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal__form input {
  border: 1px solid var(--black);
}

.modal__form-item {
  width: 100%;
}

.modal__form-btn {
  width: 100%;
}

.modal__form-content {
  font-size: 16px;
}

.modal__form-content a {
  text-decoration: underline;
}

.communication {
  padding: 60px 70px;
  background-color: var(--black);
  border-radius: 4px;
  color: #fff;
}

.communication__title {
  position: relative;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 500;
  line-height: 140%;
  margin: 0 0 30px 0;
}

.communication__title::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 25px;
  top: 0;
  left: -35px;
  background: url(../img/figure.svg) 0 0/100% auto no-repeat;
}

.communication__body {
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
  row-gap: 40px;
}

.communication__item {
  display: flex;
  align-items: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
}

.communication__item-num {
  font-size: 50px;
  line-height: 110%;
  letter-spacing: 5px;
  color: var(--red);
}

.communication__item-title {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 16px;
}

.communication__item-tel {
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  transition: opacity 0.2s ease;
}
.communication__btn-branches {
  max-width: 100%;
  width: 250px;
}

.communication__social {
  display: flex;
  gap: 20px;
}

.communication__social .btn-rect {
  width: 65px !important;
  height: 65px !important;
}

.header {
  position: sticky;
  top: 0;
  background-color: var(--black);
  color: #fff;
  padding: 24px 0;
  z-index: 100;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.header._hide {
  -webkit-transform: translateY(-130px);
  transform: translateY(-130px);
}

.header__container {
  display: flex;
  justify-content: space-between;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

.header__list {
  display: flex;
  gap: 30px;
}

.header__list a {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.header__logo {
  display: block;
  width: 240px;
  /* -webkit-transform: translateX(-40px);
  transform: translateX(-40px); */
}

.header__logo img {
  width: 100%;
  display: block;
}

.header__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.header__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: var(--thunder);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.header__social-btn svg {
  width: 24px;
  height: 24px;
}

.header__contacts-main {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__contacts-tel {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  transition: opacity 0.2s ease;
}

.header__addresses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__address {
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  opacity: 0.5;
  text-align: right;
}

.header__address br {
  display: none;
}

@media (max-width: 1365px) {
  .header__address {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .header__addresses {
    display: none;
  }
}

.header__burger-btn {
  flex-shrink: 0;
  display: none;
  width: 32px;
  height: 30px;
}

.header__burger-btn span {
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

.header__submenu {
  padding: 20px 0;
  background-color: var(--thunder);
  color: #fff;
}

.header__submenu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  row-gap: 25px;
}

.header__submenu-list li {
  position: relative;
}

.header__submenu-list li ul {
  width: -webkit-max-content;
  width: max-content;
  position: absolute;
  margin: 0;
  list-style: none;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  background-color: #fff;
  z-index: 20;
  color: #000;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
@media (max-width: 1200px) {
  .header__submenu-list li ul {
    left: auto;
    right: 0;
  }
}

.header__submenu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  transition: opacity 0.2s ease;
}

.header__submenu-list a svg {
  width: 13px;
  height: 13px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.hero {
  position: relative;
  background-color: var(--black);
  color: #fff;
  padding: 100px 0 140px 0;
  z-index: 1;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0 41% 0 0;
  clip-path: polygon(0 0, 100% 0, 81% 100%, 0 100%);
  background-color: rgba(10, 9, 10, 0.5);
  z-index: -1;
}

.hero__title {
  font-size: 72px;
  font-weight: 600;
  line-height: 120%;
  max-width: 1000px;
  margin: 0 0 30px 0;
}

.hero__content {
  font-size: 24px;
  font-weight: 300;
  line-height: 140%;
  max-width: 535px;
  margin: 0 0 40px 0;
}

.hero__contacts {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  row-gap: 25px;
}

.hero__tel {
  position: relative;
  font-size: 32px;
  line-height: 140%;
}

.hero__tel::before {
  position: absolute;
  content: "";
  height: 3px;
  left: 0;
  right: 0;
  bottom: -9px;
  background-color: var(--red);
  transition: right 0.3s ease;
}

.hero__social {
  display: flex;
  gap: 20px;
}

.hero__social-btn {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}

.hero__social-btn svg {
  width: 100%;
  height: 100%;
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 1179px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -2;
}

.s-address {
  position: relative;
  padding: 95px 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.s-address .container {
}

.s-address__body {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  z-index: 20;
}

.s-address__body._start {
  margin-left: 0 !important;
}

.s-address__head {
  padding: 25px 40px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  color: #fff;
  gap: 15px;
  font-size: 18px;
  line-height: 140%;
}
.s-address__head:first-child {
  border-radius: 4px 4px 0px 0px;
}
.s-address__head:last-child {
  border-radius: 0px 0px 4px 4px;
}

.s-address__head br {
  display: none;
}

.s-address__head svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
}

.s-address__main {
  padding: 40px;
  background-color: #fff;
  border-radius: 4px;
}

.s-address__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.s-address__list li {
  display: flex;
  align-items: start;
  gap: 15px;
  font-size: 18px;
  line-height: 140%;
}

.s-address__list li img {
  flex-shrink: 0;
}

.s-address__map {
  position: absolute;
  z-index: 10;
  inset: 0;
}

.s-offer {
  position: relative;
  overflow: hidden;
  background-color: var(--thunder);
  z-index: 1;
}

.s-offer::before {
  position: absolute;
  content: "";
  width: 55%;
  top: 0;
  clip-path: polygon(11% 0, 100% 0, 89% 100%, 0 100%);
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  background-color: var(--red);
  z-index: -1;
}

.s-offer__item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  gap: 30px;
  padding: 50px;
  border-radius: 4px;
  background-color: #fff;
  height: auto !important;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.s-offer__item-body {
  flex: 1;
}

.s-offer__item-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 20px 0;
}

.s-offer__item-price {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-offer__item-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  color: #fff;
  background-color: var(--black);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.s-offer__item-rect svg {
  width: 16px;
  height: 16px;
}

.s-why {
  position: relative;
  z-index: 1;
}

.s-why__logo {
  position: absolute;
  width: 785px;
  left: -75px;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
}

.s-why__head {
  display: flex;
  gap: 60px;
}

.s-why__aside {
  padding: 50px;
  background-color: #fff;
  width: 480px;
  flex-shrink: 0;
  border-radius: 4px;
}

.s-why__aside-title {
  margin: 0 0 30px 0;
}

.s-why__aside-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.s-why__aside-list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 140%;
  gap: 15px;
}

.s-why__aside-list li img {
  flex-shrink: 0;
}

.s-why__info {
  flex: 1;
  padding-bottom: 60px;
}

.s-why__content {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-why__content p {
  margin: 0;
}

.s-why__content p:not(:last-child) {
  margin-bottom: 20px;
}

.s-why__footer {
  padding: 50px;
  border-radius: 4px;
  background-color: var(--thunder);
  color: #fff;
  margin-left: auto;
  width: calc(100% - 480px);
}

.s-why__footer-title {
  margin: 0 0 30px 0;
}

.s-why__footer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 30px;
}

.s-why__footer-list li {
  display: flex;
  gap: 15px;
  font-size: 18px;
  line-height: 140%;
}

.s-why__footer-list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  background-color: var(--red);
  border-radius: 1px;
}

.s-prices {
  background-color: #fff;
}

.s-prices__spollers {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 15px;
}

.s-prices__spoller-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.s-prices__spoller-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-align: start;
  padding: 16px 28px;
  border-radius: 4px;
  background-color: var(--light);
  width: 100%;
  font-size: 18px;
  line-height: 140%;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.s-prices__spoller-btn._spoller-active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.s-prices__spoller-btn svg {
  width: 16px;
  height: 16px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.s-prices__spoller-list {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 20px;
  border-radius: 4px;
  border: 2px solid var(--light);
}

.s-prices__spoller-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-prices__spoller-list li:not(:first-child):not(:nth-child(2)) {
  padding-top: 20px;
  border-top: 1px solid var(--gallery);
}

.s-prices__form-wrapper {
  border-radius: 4px;
  background-color: var(--black);
  color: #fff;
  width: 100%;
  padding: 40px;
  margin-top: 50px;
}

.s-prices__form-head {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 30px;
}

.s-prices__form-head img {
  flex-shrink: 0;
}

.s-prices__form-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  margin: 0 0 10px 0;
}

.s-prices__form-content {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  margin: 0;
}

.s-prices__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  row-gap: 16px;
  width: 100%;
}

.s-prices__form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s-prices__form-col textarea {
  height: 100%;
}

.s-prices__form-item {
  width: 100%;
}

.s-prices__form-item._fill {
  flex: 1;
}

.s-prices__form-item .input {
  padding: 20px 28px !important;
}

.s-prices__form-policy {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 140%;
}

.s-prices__form-policy._mobile {
  margin-top: 20px;
  grid-column: 2 span;
}

.s-prices__form-policy a {
  font-weight: 500;
}

.s-prices__form-btn {
  width: 100%;
}

.s-adv {
  position: relative;
  padding-bottom: 170px;
}

.s-adv__title {
  margin: 0;
  max-width: 400px;
}

.s-adv__container {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.s-adv__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 50px;
  width: 960px;
  max-width: 100%;
  margin-left: auto;
}

.s-adv__item {
  display: flex;
  align-items: start;
  gap: 30px;
}

.s-adv__item-icon {
  width: 50px;
  flex-shrink: 0;
}

.s-adv__item-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin: 0 0 10px 0;
}

.s-adv__item-content {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  margin: 0;
}

.s-adv__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1200px;
  z-index: -1;
}

.s-team__slide {
  position: relative;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.s-team__slide-gallery {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 126%;
}

.s-team__slide-img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-team__slide-body {
  position: absolute;
  padding: 20px;
  left: 20px;
  right: 20px;
  bottom: 0;
  background-color: var(--thunder);
  border-radius: 4px;
  border-top: 5px solid var(--red);
  min-height: 142px;
  color: #fff;
}

.s-team__slide-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
}

.s-team__slide-status {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  margin-top: 10px;
}

.s-work {
  color: #fff;
  background-color: var(--thunder);
}

.s-work__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.s-work__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  row-gap: 30px;
  flex: 1;
}

.s-work__num {
  font-size: 80px;
  line-height: 100%;
  color: var(--red);
  margin-bottom: 40px;
  letter-spacing: 8px;
}

.s-work__content {
  margin: 0;
  font-size: 20px;
  line-height: 140%;
}

.s-work__content a {
  display: block;
}

.s-work__form-wrapper {
  width: 440px;
  padding: 40px;
  border-radius: 4px;
  background-color: var(--red);
  color: #fff;
}

.s-work__form-head {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
}

.s-work__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s-work__form-item {
  width: 100%;
}

.s-work__form-item .wpcf7-not-valid-tip {
  color: black;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
}

.s-work__form-policy {
  margin: 16px 0 0 0;
  font-size: 15px;
  line-height: 140%;
}

.s-work__form-policy a {
  font-weight: 700;
}

.s-contacts-info__container {
  display: flex;
  gap: 60px;
}

.s-contacts-info__body {
  width: 500px;
  flex-shrink: 0;
  padding: 50px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
}

.s-contacts-info__social {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.s-contacts-info__tel {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
}

.s-contacts-info__tel span {
  transition: opacity 0.2s ease;
}

.s-contacts-info__tel svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.s-contacts-info__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.s-contacts-info__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-contacts-info__list li a {
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.s-contacts-info__list li svg {
  color: var(--red);
  width: 32px;
  height: 32px;
}

.s-contacts-info__btn {
  width: 100%;
}

.s-contacts-info__btn span {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.s-contacts-info__gallery {
  flex: 1;
  overflow: hidden;
}

.s-contacts-info__slider {
  height: 520px !important;
  border-radius: 4px;
}

.s-contacts-info__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
  transition: background-color 0.2s ease;
}

.s-contacts-info__slider-btn.swiper-button-disabled {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.s-contacts-info__slider-btn._prev {
  left: 0;
}

.s-contacts-info__slider-btn._next {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 0;
}

.s-contacts-info__slider-btn svg {
  width: 28px;
  height: 28px;
}

.s-contacts-info__slide {
  height: 520px !important;
}

.s-contacts-info__slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.s-contacts-info__thumb-slider {
  margin-top: 20px;
}

.s-contacts-info__thumb-slide {
  border-radius: 4px;
  cursor: pointer;
  height: 150px !important;
}

.s-contacts-info__thumb-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}

.s-contacts-info__thumb-slide::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 4px;
  border: 3px solid var(--black);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.s-connect {
  padding: 34px 0;
  background-color: var(--red);
  color: #fff;
}

.s-connect__container {
  display: flex;
  align-items: center;
  gap: 90px;
  row-gap: 40px;
}

.s-connect__logo {
  display: block;
  width: 180px;
}

.s-connect__info {
  flex: 1;
}

.s-connect__info-title {
  margin-bottom: 20px !important;
}

.s-connect__content {
  font-size: 20px;
  line-height: 120%;
  margin: 0;
}

.s-connect__btn {
  width: 300px;
}

.s-price__descr {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 30px;
}

.s-price__descr p {
  margin: 0;
}
.s-price__descr p:not(:last-child) {
  margin-bottom: 20px;
}

.s-price__list-title {
  margin-bottom: 25px;
}

.s-price__list {
  margin-bottom: 50px;
}

.s-price__content {
  margin-top: 100px;
}

.s-price__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.s-price__content-item {
  flex: 1;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-price__content-item p {
  margin: 0;
}

.s-price__content-item p:not(:last-child) {
  margin-bottom: 20px;
}

.s-catalog {
  position: relative;
  background-color: var(--thunder);
  color: #fff;
  z-index: 1;
}

.s-catalog::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 545px;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--red);
  z-index: -1;
}

.s-catalog__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.s-catalog__item {
  position: relative;
  display: flex;
  align-items: end;
  border-radius: 4px;
  background-color: #fff;
  color: var(--black);
  min-height: 260px;
  z-index: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.s-catalog__item-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  color: var(--black);
}

.s-catalog__item-rect svg {
  width: 16px;
  height: 16px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.s-catalog__item-body {
  padding: 40px;
}

.s-catalog__item-title {
  margin: 0 0 10px 0;
}

.s-catalog__item-descr {
  font-size: 18px;
  line-height: 140%;
}

.s-catalog__item-img {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease;
}

.s-single__content {
  margin-bottom: 50px;
}

.s-single .communication {
  margin-bottom: 100px;
}

.s-services {
  position: relative;
  background-color: var(--thunder);
  color: #fff;
  z-index: 1;
}

.s-services::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  width: 655px;
  background-color: var(--red);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.s-services__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.s-services__item {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 350px;
  border-radius: 4px;
  background-color: #fff;
  z-index: 1;
}

.s-services__item-img {
  position: absolute;
  display: block;
  top: 2px;
  left: 2px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  -webkit-filter: brightness(50%);
  filter: brightness(50%);
  z-index: -1;
}

.s-services__item-body {
  padding: 40px;
}

.s-services__item-title {
  margin: 0 0 10px 0;
}

.s-services__item-descr {
  font-size: 18px;
  line-height: 140%;
}

.s-service-price .price-list {
  margin-bottom: 50px;
}

.s-process {
  background-color: #fff;
  overflow: hidden;
}

.s-process__slider {
  overflow: visible;
}

.s-process__slide {
  overflow: hidden;
  width: 430px !important;
  height: 430px !important;
  border-radius: 4px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.s-process__slide.swiper-slide-active,
.s-process__slide.swiper-slide-next,
.s-process__slide.swiper-slide-prev {
  opacity: 1;
}

.s-process__slide-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
}

.s-contacts__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 50px 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
}

.s-contacts__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 25px;
}

.s-contacts__item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.s-contacts__item-btn svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.s-contacts__item-btn span {
  transition: opacity 0.2s ease;
}

.s-contacts__tel {
  display: flex;
  align-items: center;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
}

.s-contacts__mail {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}

.s-contacts__social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.s-contacts__item-content {
  display: flex;
  align-items: start;
  gap: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-contacts__item-content svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

.s-contacts__btn-route {
  margin-top: 30px;
  width: 100%;
}

.s-contacts__btn-route span {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.s-contacts__map {
  width: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 500px;
  margin-top: 30px;
}

.s-about__container {
  max-width: 1735px;
  margin-left: auto;
  padding-left: 15px;
}

.s-about__body {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 60px;
}

.s-about__content {
  max-width: 700px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-about__content p {
  margin: 0;
}

.s-about__content p:not(:last-child) {
  margin-bottom: 20px;
}

.s-about__img {
  width: 960px;
  height: auto;
}

.s-benefit {
  padding: 70px 0;
  background-color: #fff;
}

.s-benefit__slide {
  display: flex !important;
  align-items: center;
  gap: 30px;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
}

.s-benefit__slide-icon {
  width: 70px;
  display: block;
}

.s-archive__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.s-archive__item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
}

.s-archive__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.s-archive__item-gallery {
  position: relative;
  padding-bottom: 63%;
  width: 100%;
}

.s-archive__item-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-archive__item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 5px solid var(--red);
  padding: 30px;
}

.s-archive__item-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin: 0;
  transition: opacity 0.2s ease;
}

.s-archive__item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  margin-top: auto;
}

.s-archive__item-date {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.s-archive__item-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--red);
  border-radius: 4px;
  color: #fff;
  transition: background-color 0.2s ease;
}

.s-archive__item-rect svg {
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.s-archive__btn-more {
  width: 100%;
  margin-top: 50px;
}

.s-jobs {
  margin-top: 50px;
}

.s-jobs__body {
  padding: 70px 0 100px 0;
  background-color: #fff;
}

.s-jobs__container {
  display: flex;
  align-items: start;
  gap: 60px;
}

.s-jobs__main {
  flex: 1;
}

.s-jobs__spoller {
  width: 100%;
}

.s-jobs__spoller:not(:last-child) {
  margin-bottom: 10px;
}

.s-jobs__spoller-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 28px;
  width: 100%;
  border-radius: 4px;
  background-color: var(--light);
  font-size: 18px;
  line-height: 140%;
}

.s-jobs__spoller-btn._spoller-active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.s-jobs__spoller-btn svg {
  width: 16px;
  height: 16px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}

.s-jobs__spoller-body {
  padding: 40px;
  border-radius: 4px;
  border: 2px solid var(--light);
}

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

.s-jobs__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gallery);
}

.s-jobs__item span:first-child {
  opacity: 0.5;
}

.s-jobs__spoller-content {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--light);
}

.s-jobs__spoller-content strong {
  font-weight: 700;
}

.s-jobs__spoller-content p {
  margin: 0;
}

.s-jobs__btn-respond {
  margin-top: 40px;
}

.s-jobs__form-wrapper {
  position: sticky;
  top: 20px;
  width: 500px;
  padding: 40px;
  background-color: var(--red);
  color: #fff;
  border-radius: 4px;
  flex-shrink: 0;
}

.s-jobs__form-title {
  position: relative;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
  padding-left: 35px;
  background: url(../img/figure-black.svg) top 0 left 0/20px auto no-repeat;
  margin: 0 0 20px 0;
}

.s-jobs__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s-jobs__form-item {
  width: 100%;
}

.s-jobs__form-policy {
  margin: 16px 0 0 0;
  font-size: 15px;
  line-height: 140%;
}

.s-jobs__form-policy a {
  font-weight: 700;
}

.footer {
  padding: 70px 0;
  background-color: var(--black);
  color: #fff;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  row-gap: 50px;
}

.footer__contacts {
  max-width: 300px;
}

.footer__title {
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0 0 25px 0;
}

.footer__contacts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
}

.footer__contacts-list li {
  font-size: 18px;
  line-height: 140%;
  opacity: 0.7;
}

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

.footer__tel {
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  color: var(--red);
  transition: opacity 0.2s ease;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social-btn {
  display: block;
  width: 28px;
  height: 28px;
  transition: opacity 0.2s ease;
}

.footer__social-btn svg {
  width: 100%;
  height: 100%;
}

.footer__mail {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer__nav {
  display: flex;
  gap: 30px;
  flex: 0 1 715px;
}

.footer__nav-item {
  flex: 1;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 140%;
  transition: opacity 0.2s ease;
}

.footer__main {
  display: flex;
  flex-direction: column;
  flex: 0 1 275px;
  height: auto;
}

.footer__logo {
  display: block;
  width: 240px;
}

.footer__logo img {
  display: block;
  width: 100%;
}

.footer__main-bottom {
  padding-top: 30px;
  margin-top: auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  color: hsla(0, 0%, 100%, 0.5);
}

.footer__main-bottom a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer__main-content {
  margin: 0 0 10px 0;
}

.footer__dev {
  margin-top: 30px;
  display: flex !important;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .s-prices__form-policy._mobile {
    display: none;
  }
}

@media (max-width: 1539px) {
  .header__contacts {
    gap: 30px;
  }

  .s-offer__item {
    padding: 35px;
  }

  .s-work__wrapper {
    gap: 40px;
  }

  .s-work__items {
    gap: 30px;
  }

  .s-about__img {
    width: 720px;
  }
}

@media (max-width: 1365px) {
  .header__list {
    gap: 20px;
  }

  .header__list a {
    font-size: 16px;
  }

  .header__logo {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    width: 200px;
  }

  .header__contacts-tel {
    font-size: 20px;
  }

  .header__submenu-list {
    gap: 40px;
    row-gap: 25px;
  }

  .hero::before {
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
  }

  .hero__title {
    font-size: 58px;
  }

  .s-offer__slider {
    overflow: visible !important;
  }

  .s-offer__item {
    width: 425px !important;
  }

  .s-adv__container {
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-bottom: 20px !important;
  }

  .s-work__wrapper {
    flex-direction: column;
  }

  .s-work__form-wrapper {
    width: 100%;
  }

  .s-contacts-info__container {
    gap: 30px;
  }

  .s-contacts-info__body {
    width: 420px;
    padding: 25px;
  }

  .s-contacts-info__thumb-slide {
    aspect-ratio: 1/1;
    height: auto !important;
  }

  .s-catalog__wrapper {
    gap: 30px;
  }

  .s-catalog__item-body {
    padding: 20px;
  }

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

  .s-services__item {
    min-height: 260px;
  }

  .s-services__item-body {
    padding: 20px;
  }

  .s-contacts__item {
    padding: 0 30px;
  }

  .s-about__body {
    gap: 30px;
  }

  .s-about__img {
    width: 560px;
  }

  .s-archive__wrapper {
    gap: 30px;
  }

  .s-archive__item-title {
    font-size: 20px;
  }

  .s-jobs__container {
    gap: 40px;
  }

  .s-jobs__spoller-body {
    padding: 25px;
  }

  .s-jobs__list {
    gap: 25px;
    row-gap: 20px;
  }

  .s-jobs__form-wrapper {
    width: 400px;
    padding: 25px;
  }
  .s-contacts__item {
    max-width: 500px;
  }
  .s-contacts__body {
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .s-contacts__item {
    align-items: center;
    margin: 0 auto;
  }
  .s-contacts__item:not(:last-child) {
    border-right: none;
    padding-bottom: 20px;
  }
  .s-contacts__item:not(:last-child)::after {
    position: absolute;
    content: "";
    width: 250px;
    max-width: 100%;
    bottom: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .s-contacts__item-content {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 1439px) {
  .s-contacts__tel {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  .price-list {
    gap: 80px;
    row-gap: 20px;
  }

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

  .header__social {
    flex-direction: row;
    gap: 15px;
  }

  .header__submenu-list a {
    font-size: 16px;
  }

  .s-address {
    display: block;
    padding: 60px 0 0 0;
  }

  .s-address__body {
    max-width: none;
    width: 100%;
    margin-bottom: 30px;
  }

  .s-address__map {
    position: static;
    width: 100%;
    height: 500px;
  }

  .s-why__head {
    gap: 30px;
  }

  .s-why__info {
    padding-bottom: 30px;
  }

  .s-why__footer {
    width: 100%;
    margin-top: 30px;
  }

  .s-prices__spollers {
    gap: 25px;
    row-gap: 15px;
  }

  .s-prices__spoller-list {
    gap: 30px;
    padding: 30px;
  }

  .s-contacts-info__slider {
    height: 440px !important;
  }

  .s-connect__container {
    flex-direction: column;
    text-align: center;
  }

  .s-catalog__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .s-process__slide {
    width: 380px !important;
    height: 380px !important;
  }

  .s-process__slide.swiper-slide-next,
  .s-process__slide.swiper-slide-prev {
    opacity: 0.5;
  }

  .s-contacts__btn-route {
    max-width: 350px;
  }

  .s-about__container {
    padding-left: 0;
  }

  .s-about__title {
    padding: 0 15px;
  }

  .s-about__body {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .s-about__content {
    padding: 0 15px;
    width: 100%;
    max-width: none;
  }

  .s-about__img {
    width: 720px;
  }

  .s-archive__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .s-jobs__container {
    flex-wrap: wrap;
  }

  .s-jobs__main {
    flex: none;
    width: 100%;
  }

  .s-jobs__spoller-content {
    margin-top: 25px;
    padding-bottom: 25px;
  }

  .s-jobs__btn-respond {
    margin-top: 25px;
  }

  .s-jobs__form-wrapper {
    position: static;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }

  .footer__container {
    flex-wrap: wrap;
  }

  .footer__contacts {
    order: 2;
  }

  .footer__nav {
    order: 3;
  }

  .footer__main {
    order: 1;
  }
}

@media (max-width: 1199px) and (max-width: 992px) {
  .s-address__map {
    height: 400px;
  }
}

@media (max-width: 1199px) and (max-width: 767px) {
  .s-address__map {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .sect-p {
    padding: 80px 0;
  }

  .sect-m {
    margin: 80px 0;
  }

  .sect-m-min-top {
    margin: 50px 0 80px 0;
  }

  .main-title {
    font-size: 48px;
  }

  .s-title {
    font-size: 38px;
  }

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

  .price-list {
    gap: 40px;
    row-gap: 20px;
  }

  .burger {
    display: flex;
  }

  .communication {
    padding: 40px 60px;
  }

  .communication__title {
    font-size: 28px;
  }

  .communication__body {
    gap: 40px;
  }

  .communication__item {
    gap: 20px;
  }

  .communication__item-num {
    font-size: 42px;
  }

  .communication__item-tel {
    font-size: 26px;
  }

  .communication__social .btn-rect {
    width: 50px !important;
    height: 50px !important;
  }

  .header__nav {
    display: none;
  }

  .header__container {
    justify-content: start;
  }
  .header__contacts {
    margin-left: auto;
    gap: 15px;
  }
  .header__contacts-tel {
    display: none;
  }

  .header__burger-btn {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

  .header__submenu {
    display: none;
  }

  .hero {
    padding: 80px 0;
  }

  .hero::before {
    right: 0;
    clip-path: none;
  }

  .hero__img {
    clip-path: none;
  }

  .s-why__head {
    flex-direction: column-reverse;
  }

  .s-why__aside {
    width: 100%;
  }

  .s-why__info {
    flex: none;
    padding-bottom: 0;
  }

  .s-prices__spoller-col {
    grid-column: 2 span;
  }

  .s-prices__spoller {
    grid-column: 2 span;
  }

  .s-prices__form-wrapper {
    padding: 30px;
  }

  .s-prices__form {
    gap: 20px;
    row-gap: 16px;
  }

  .s-adv {
    padding-bottom: 0;
  }

  .s-adv__body {
    width: 100%;
    padding: 30px 15px;
  }

  .s-adv__img {
    position: static;
    height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .s-team {
    overflow: hidden;
  }

  .s-team__slider {
    overflow: visible !important;
  }

  .s-team__slide {
    width: 340px !important;
  }

  .s-team__slide-title {
    font-size: 18px;
  }

  .s-team__slide-status {
    font-size: 16px;
  }

  .s-work__num {
    font-size: 64px;
    margin-bottom: 25px;
  }

  .s-work__content {
    font-size: 18px;
  }

  .s-contacts-info__container {
    flex-wrap: wrap;
  }

  .s-contacts-info__body {
    width: 100%;
  }

  .s-price__content {
    margin-top: 80px;
  }

  .s-price__content-item {
    flex: none;
    width: 100%;
  }

  .s-catalog__item {
    min-height: 200px;
  }

  .s-single .communication {
    margin-bottom: 80px;
  }

  .s-services::before {
    width: 50%;
  }

  .s-process__slide {
    width: 320px !important;
    height: 320px !important;
  }

  .s-contacts__map {
    height: 400px;
  }

  .s-benefit {
    padding: 50px 0;
  }

  .s-jobs__body {
    padding: 60px 0 80px 0;
  }

  .footer {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .sect-p {
    padding: 60px 0;
  }

  .sect-m {
    margin: 60px 0;
  }

  .sect-m-min {
    margin: 40px 0;
  }

  .sect-m-min-top {
    margin: 40px 0 60px 0;
  }

  .s-head {
    margin-bottom: 30px;
  }

  .main-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .s-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .t-title {
    font-size: 24px;
  }

  .slider-nav {
    gap: 15px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
  }

  .slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .slider-scrollbar {
    margin-top: 30px;
  }

  .price-list {
    gap: 20px;
  }

  .price-list__item {
    grid-column: 2 span;
  }

  .price-list__item:nth-child(2) {
    border-top: 1px solid var(--gallery);
    padding-top: 20px;
  }

  .communication__title {
    font-size: 24px;
  }

  .communication__item-num {
    font-size: 34px;
  }

  .header {
    padding: 18px 0;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__content {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .hero__contacts {
    gap: 30px;
    row-gap: 25px;
    margin-top: 30px;
  }

  .hero__tel {
    font-size: 26px;
  }

  .s-offer::before {
    width: 80%;
  }

  .s-offer__item {
    width: 340px !important;
    padding: 25px;
  }

  .s-offer__item-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .s-offer__item-price {
    font-size: 16px;
  }

  .s-offer__item-rect {
    width: 48px;
    height: 48px;
  }

  .s-why__aside {
    padding: 30px;
  }

  .s-why__footer {
    padding: 30px;
  }

  .s-why__footer-list li {
    grid-column: 2 span;
    font-size: 16px;
  }

  .s-prices__spoller-btn {
    padding: 15px 20px;
  }

  .s-prices__spoller-list {
    padding: 20px;
    gap: 25px;
    row-gap: 15px;
  }

  .s-prices__form-wrapper {
    margin-top: 30px;
    padding: 25px;
  }

  .s-prices__form-title {
    font-size: 24px;
  }

  .s-prices__form-col {
    grid-column: 2 span;
  }

  .s-prices__form-policy._desk {
    display: none;
  }

  .s-adv__img {
    height: 400px;
  }

  .s-work__item {
    grid-column: 3 span;
  }

  .s-work__form-wrapper {
    padding: 25px;
  }

  .s-contacts-info__list {
    margin-bottom: 30px;
    margin-top: 20px;
    gap: 20px;
  }

  .s-price__list-title {
    margin-bottom: 20px;
  }
  .s-price__list {
    margin-bottom: 30px;
  }

  .s-price__content {
    margin-top: 60px;
  }

  .s-price__content-wrapper {
    gap: 30px;
  }

  .s-catalog::after {
    width: 50%;
  }

  .s-catalog__item {
    grid-column: 2 span;
  }

  .s-single__content {
    margin-bottom: 30px;
  }

  .s-single .communication {
    margin-bottom: 60px;
  }

  .s-services__item {
    grid-column: 2 span;
  }

  .s-service-price .price-list {
    margin-bottom: 30px;
  }

  .s-process__slide {
    width: 280px !important;
    height: 280px !important;
  }

  .s-contacts__body {
    padding: 25px 0;
  }

  .s-contacts__item {
    padding: 0 15px;
  }

  .s-contacts__map {
    height: 350px;
  }

  .s-benefit__slide {
    font-size: 18px;
    gap: 20px;
  }

  .s-benefit__slide-icon {
    width: 50px;
  }

  .s-archive__wrapper {
    gap: 20px;
  }

  .s-archive__item-body {
    padding: 20px;
  }

  .s-archive__item-title {
    font-size: 18px;
  }

  .s-archive__item-rect {
    width: 45px;
    height: 45px;
  }

  .s-archive__btn-more {
    margin-top: 30px;
  }

  .s-jobs {
    margin-top: 30px;
  }

  .s-jobs__body {
    padding: 50px 0;
  }

  .s-jobs__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .s-jobs__item {
    font-size: 16px;
    padding-bottom: 15px;
  }

  .s-jobs__spoller-content {
    font-size: 16px;
  }

  .s-jobs__form-title {
    font-size: 24px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: none;
    width: 100%;
  }

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

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

  .footer__main {
    align-items: center;
    text-align: center;
    flex: none;
    width: 100%;
  }

  .footer__main-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 0;
    padding-top: 0;
    order: 4;
  }

  .footer__dev {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .header__container {
    gap: 15px;
  }
  .slider-nav {
    display: none;
  }

  .price-list {
    padding: 25px 20px;
  }

  .modal {
    padding: 20px 15px !important;
  }

  .communication {
    padding: 30px 20px;
  }

  .communication__title {
    padding-left: 35px;
  }

  .communication__title::before {
    left: 0;
  }

  .communication__item-tel {
    font-size: 24px;
  }

  .header__logo {
    width: 130px;
  }

  .hero__title {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .s-address__head {
    padding: 15px 25px;
  }

  .s-address__main {
    padding: 25px;
  }

  .s-why__aside {
    padding: 25px;
  }

  .s-why__footer {
    padding: 25px;
  }

  .s-prices__spoller-list li {
    grid-column: 2 span;
  }

  .s-prices__spoller-list li:nth-child(2) {
    padding-top: 20px;
    border-top: 1px solid var(--gallery);
  }

  .s-adv__item {
    gap: 20px;
  }

  .s-adv__item-icon {
    width: 35px;
  }

  .s-adv__item-title {
    font-size: 18px;
  }

  .s-adv__item-content {
    font-size: 16px;
  }

  .s-adv__img {
    height: 350px;
  }

  .s-contacts-info__tel {
    font-size: 24px;
  }

  .s-contacts-info__list li {
    font-size: 16px;
    gap: 16px;
  }

  .s-contacts-info__slider {
    height: auto !important;
    aspect-ratio: 1/1;
  }

  .s-contacts__map {
    height: 300px;
  }

  .s-archive__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .s-contacts__item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .communication__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .communication__item:not(:last-child) {
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
  }

  .s-contacts-info__body {
    padding: 25px 15px;
  }

  .s-connect__btn {
    width: 100%;
  }

  .s-catalog::after {
    width: 80%;
  }

  .s-jobs__spoller-body {
    padding: 15px;
  }

  .s-jobs__form-wrapper {
    padding: 25px 15px;
  }
}

@media (any-hover: hover) {
  .btn-arrow:hover span {
    background-color: var(--thunder);
  }

  .btn-arrow:hover div {
    background-color: var(--red);
    color: #fff;
  }

  .button:hover {
    background-color: var(--shaft);
  }

  .button._white:hover {
    background-color: var(--thunder);
    color: #fff;
  }
  .button._red:hover {
    background-color: var(--thunder);
  }

  .btn-rect:hover {
    background-color: var(--red);
  }

  .btn-rect._red:hover {
    background-color: var(--thunder);
  }

  .btn-rect._white:hover {
    background-color: var(--thunder);
    color: #fff;
  }

  .slider-btn:hover {
    opacity: 0.7;
  }

  .breadcrumbs .aioseo-breadcrumb a:hover {
    color: var(--red);
  }

  .breadcrumbs .aioseo-breadcrumb-separator {
    display: none;
  }

  .burger__list a:hover {
    opacity: 0.5;
  }

  .burger__social-btn:hover {
    color: #fff;
    background-color: var(--thunder);
  }

  .burger__contacts-tel:hover {
    opacity: 0.5;
  }

  .modal__close:hover {
    opacity: 0.5;
  }

  .modal__form-content a:hover {
    text-decoration: none;
  }

  .communication__item-tel:hover {
    opacity: 0.5;
  }

  .header__list a:hover {
    opacity: 1;
  }

  .header__social-btn:hover {
    color: var(--thunder);
    background-color: #fff;
  }

  .header__contacts-tel:hover {
    opacity: 0.5;
  }

  .header__submenu-list li:hover ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header__submenu-list a:hover {
    opacity: 0.5;
  }

  .header__submenu-list a:hover svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .hero__tel:hover::before {
    right: 100%;
  }

  .hero__social-btn:hover {
    opacity: 0.5;
  }

  .s-offer__item:hover {
    color: #fff;
    background-color: var(--thunder);
  }

  .s-offer__item:hover .s-offer__item-rect {
    color: var(--thunder);
    background-color: #fff;
  }

  .s-prices__spoller-btn:hover {
    background-color: var(--thunder);
    color: #fff;
  }

  .s-prices__form-policy a:hover {
    text-decoration: underline;
  }

  .s-work__content a:hover {
    text-decoration: underline;
  }

  .s-work__form-policy a:hover {
    text-decoration: underline;
  }

  .s-contacts-info__tel:hover span {
    opacity: 0.6;
  }

  .s-contacts-info__list li a:hover {
    opacity: 0.6;
  }

  .s-contacts-info__slider-btn:hover {
    background-color: #000;
  }

  .s-contacts-info__thumb-slide:hover::before {
    opacity: 0.5;
  }

  .s-catalog__item:hover {
    color: #fff;
  }

  .s-catalog__item:hover .s-catalog__item-rect svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .s-catalog__item:hover .s-catalog__item-img {
    opacity: 1;
  }

  .s-process__slide:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .s-contacts__item-btn:hover span {
    opacity: 0.6;
  }

  .s-archive__item:hover .s-archive__item-title {
    opacity: 0.7;
  }

  .s-archive__item:hover .s-archive__item-rect {
    background-color: var(--thunder);
  }

  .s-archive__item:hover .s-archive__item-rect svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .s-jobs__form-policy a:hover {
    text-decoration: underline;
  }

  .footer__tel:hover {
    opacity: 0.6;
  }

  .footer__social-btn:hover {
    opacity: 0.6;
  }

  .footer__mail:hover {
    opacity: 1;
  }

  .footer__list a:hover {
    opacity: 0.5;
  }

  .footer__main-bottom a:hover {
    color: #fff;
  }
}

@media (hover: none) {
  .btn-arrow:active span {
    background-color: var(--thunder);
  }

  .btn-arrow:active div {
    background-color: var(--red);
    color: #fff;
  }

  .button:active {
    background-color: var(--shaft);
  }

  .button._white:active {
    background-color: var(--thunder);
    color: #fff;
  }
  .button._red:active {
    background-color: var(--thunder);
  }

  .btn-rect:active {
    background-color: var(--red);
  }

  .btn-rect._red:active {
    background-color: var(--thunder);
  }

  .btn-rect._white:active {
    background-color: var(--thunder);
    color: #fff;
  }

  .slider-btn:active {
    opacity: 0.7;
  }

  .breadcrumbs .aioseo-breadcrumb a:active {
    color: var(--red);
  }

  .burger__list a:active {
    opacity: 0.5;
  }

  .burger__social-btn:active {
    color: #fff;
    background-color: var(--thunder);
  }

  .burger__contacts-tel:active {
    opacity: 0.5;
  }

  .modal__close:active {
    opacity: 0.5;
  }

  .modal__form-content a:active {
    text-decoration: none;
  }

  .communication__item-tel:active {
    opacity: 0.5;
  }

  .header__list a:active {
    opacity: 1;
  }

  .header__social-btn:active {
    color: var(--thunder);
    background-color: #fff;
  }

  .header__contacts-tel:active {
    opacity: 0.5;
  }

  .header__submenu-list li:active ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .header__submenu-list a:active {
    opacity: 0.5;
  }

  .header__submenu-list a:active svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .hero__tel:active::before {
    right: 100%;
  }

  .hero__social-btn:active {
    opacity: 0.5;
  }

  .s-offer__item:active {
    color: #fff;
    background-color: var(--thunder);
  }

  .s-offer__item:active .s-offer__item-rect {
    color: var(--thunder);
    background-color: #fff;
  }

  .s-prices__spoller-btn:active {
    background-color: var(--thunder);
    color: #fff;
  }

  .s-prices__form-policy a:active {
    text-decoration: underline;
  }

  .s-work__content a:active {
    text-decoration: underline;
  }

  .s-work__form-policy a:active {
    text-decoration: underline;
  }

  .s-contacts-info__tel:active span {
    opacity: 0.6;
  }

  .s-contacts-info__list li a:active {
    opacity: 0.6;
  }

  .s-contacts-info__slider-btn:active {
    background-color: #000;
  }

  .s-contacts-info__thumb-slide:active::before {
    opacity: 0.5;
  }

  .s-catalog__item:active {
    color: #fff;
  }

  .s-catalog__item:active .s-catalog__item-rect svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .s-catalog__item:active .s-catalog__item-img {
    opacity: 1;
  }

  .s-process__slide:active img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .s-contacts__item-btn:active span {
    opacity: 0.6;
  }

  .s-archive__item:active .s-archive__item-title {
    opacity: 0.7;
  }

  .s-archive__item:active .s-archive__item-rect {
    background-color: var(--thunder);
  }

  .s-archive__item:active .s-archive__item-rect svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .s-jobs__form-policy a:active {
    text-decoration: underline;
  }

  .footer__tel:active {
    opacity: 0.6;
  }

  .footer__social-btn:active {
    opacity: 0.6;
  }

  .footer__mail:active {
    opacity: 1;
  }

  .footer__list a:active {
    opacity: 0.5;
  }

  .footer__main-bottom a:active {
    color: #fff;
  }
}

form p span {
  display: block;
}

.wpcf7-response-output {
  display: none;
}

.not-found {
  text-align: center;
}

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

.not-found__num {
  font-size: 20em;
  font-weight: 600;
  margin-bottom: 30px;
}

.not-found__content {
  margin: 0px 0px 25px 0px;
  font-size: 18px;
}

@media (max-width: 767px) {
  .not-found__num {
    font-size: 15em;
  }
}

@media (max-width: 575px) {
  .not-found__num {
    font-size: 12em;
  }
}

@media (max-width: 420px) {
  .not-found__num {
    font-size: 10em;
  }
}

.wpcf7-spinner {
  display: none;
}

.s-jobs__form .wpcf7-not-valid-tip {
  color: var(--black);
}

.menu-item-has-children a {
  position: relative;
}

.menu-item-has-children a:hover::after {
  transform: rotate(180deg);
}

.menu-item-has-children a::after {
  content: "";
  width: 13px;
  height: 13px;
  background: url(../img/arrow-white.svg) center / 100% auto no-repeat;
  transition: transform 0.2s ease;
}

.mob-phone {
  width: 32px;
  height: 32px;
  margin-left: auto;
  display: none;
  flex-shrink: 0;
  color: var(--red);
}
.mob-phone svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .mob-phone {
    display: block;
  }
  .header__social-btn {
    background-color: var(--red);
  }
}

.header__nav #menu-item-351,
.header__nav #menu-item-352,
.header__nav #menu-item-353,
.header__nav #menu-item-354,
.header__nav #menu-item-355 {
  display: none;
}

#menu-menyu-v-shapke-1 .sub-menu {
  display: none;
  list-style-type: none;
  padding-left: 20px;
  padding-top: 15px;
}

#menu-menyu-v-shapke-1 > .menu-item-has-children > a {
  pointer-events: none;
  padding-right: 20px;
  background: url("../img/arrow-white.svg") no-repeat right center / 10px;
}
#menu-menyu-v-shapke-1 > .menu-item-has-children.active > a {
  background: url("../img/arrow-white-up.svg") no-repeat right center / 10px;
}

.float-btns {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 404;
}

.float-btn-wrap {
  position: relative;
}

.float-btn-wrap a {
  text-decoration: none;
}

.whatsapp-button,
.telegram-button,
.phone-button,
.max-button {
  background: #43d854;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  color: #fff;
  text-align: center;
  line-height: 53px;
  font-size: 35px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-btn-wrap svg {
  width: 30px;
  height: auto;
}

.telegram-button {
  color: #2aabee;
  background: #fff;
  font-size: 55px;
}

.phone-button {
  background: #2aabee;
  color: #fff;
}

.max-button {
  background: linear-gradient(
    90deg,
    rgba(63, 194, 253, 1) 0%,
    rgba(48, 66, 241, 1) 50%,
    rgba(166, 91, 220, 1) 100%
  );
}

.whatsapp-button:before,
.whatsapp-button:after,
.telegram-button:before,
.telegram-button:after,
.phone-button:before,
.phone-button:after,
.max-button:before,
.max-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #43d854;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.telegram-button:before,
.telegram-button:after {
  border: 1px solid #2aabee;
}

.phone-button:before,
.phone-button:after {
  border: 1px solid #2aabee;
}

.whatsapp-button:after,
.telegram-button:after,
.phone-button:after {
  animation-delay: 0.5s;
}

.max-button:before,
.max-button:after {
  border: 1px solid #3fc2fd;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.s-service-intro__buttons {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 30px;
  row-gap: 20px;
}
.s-service-intro__btn {
  flex: 0 1 300px;
}
.s-service-intro__tel {
  display: block;
  font-size: 18px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.s-service-intro__tel:hover {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .s-service-intro__buttons {
    gap: 20px;
  }
  .s-service-intro__btn {
    font-size: 16px;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 480px) {
  .s-service-intro__buttons {
    gap: 15px;
  }
  .s-service-intro__tel {
    font-size: 16px;
  }
  .s-service-intro__buttons {
    flex-wrap: wrap;
  }
  .s-service-intro__btn {
    flex: auto;
    width: 100%;
    font-size: 14px;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}

.header-addresses {
  display: none;
  background-color: var(--black);
}
.header-addresses__list {
  position: relative;
  padding: 10px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 5px;
}
.header-addresses__list::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 1px;
  background-color: white;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.header-addresses__list li {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 300;
  font-size: 16px;
  line-height: 115%;
  color: rgba(255, 255, 255, 0.7);
}
.header-addresses__list li svg {
  width: 24px;
  height: 24px;
  color: var(--red);
}

@media (max-width: 1199px) {
  .header-addresses {
    display: block;
  }
}

.sect-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.sect-tabs .btn-outline:first-child {
  border-radius: 4px 0px 0px 4px;
}
.sect-tabs .btn-outline:not(:last-child) {
  border-right: none;
}
.sect-tabs .btn-outline:last-child {
  border-radius: 0px 4px 4px 0px;
}

.btn-outline {
  cursor: pointer;
  border: 1px solid var(--red);
  background-color: transparent;
  background-color: white;

  padding: 20px 36px;
  font-size: 18px;
  line-height: 140%;

  transition:
    color 0.2s ease,
    background-color;
}
.btn-outline:hover {
  color: white;
  background-color: var(--red);
}
.btn-outline._active {
  pointer-events: none;
  color: white;
  background-color: var(--red);
}

[data-tab] {
  display: none;
  transition: opacity 0.4s ease;
}
[data-tab]._active {
  display: block;
}

@media (max-width: 991px) {
  .sect-tabs {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .sect-tabs {
    gap: 10px;
  }
  .sect-tabs .btn-outline {
    border-radius: 4px !important;
    width: 100%;
  }
}

.header__contacts-info {
}
.header__contacts-grid {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
}
.header__contacts-address {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);

  transition: color 0.3s ease;
}
.header__contacts-address:hover {
  color: white;
}
.header__contacts-item-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.header__contacts-item-tel {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 16px;
  line-height: 140%;

  transition: opacity 0.3s ease;
}
.header__contacts-item-tel:hover {
  opacity: 0.7;
}
.header__contacts-social {
  display: block;
  transition: opacity 0.3s ease;
}
.header__contacts-social:hover {
  opacity: 0.7;
}
.header__contacts-mobile {
  display: flex;
  gap: 15px;
}

@media (max-width: 1499px) {
  .header__contacts-grid {
    gap: 20px;
  }
}
@media (max-width: 1365px) {
  .header__contacts-address {
    font-size: 14px;
  }
  .header__contacts-item-tel {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .header__contacts-grid {
    display: none;
  }
}
@media (min-width: 1199px) {
  .header__contacts-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .header__contacts-info {
    margin-left: auto;
  }
}
.header__contacts-mob {
  width: 32px;
  height: 32px;
  color: var(--red);

  transition: color 0.3s ease;
}
.header__contacts-mob:hover {
  color: white;
}
.header__contacts-mob svg {
  width: 100%;
  height: 100%;
}

.header__drop {
  position: relative;
}
.header__drop-body {
  position: fixed;
  left: 15px;
  right: 15px;
  top: 73px;
  padding: 15px 0px;
  background-color: white;
  border-radius: 0 0 4px 4px;
  color: var(--black);
  z-index: 10;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease;
}
.header__drop-body._open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header__drop-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  padding: 0 35px;
  margin: 0px 0px 15px 0px;
}
.header__drop-item {
  padding: 0 35px;
}
.header__drop-item:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #0a090a;
  margin-bottom: 15px;
}
.header__drop-address {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 10px;
  opacity: 0.7;
}
.header__drop-link {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  font-size: 16px;
  line-height: 140%;
  transition: color 0.3s ease;
}
.header__drop-link:hover {
  color: var(--red);
}
.header__drop-link-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: var(--red);
  color: white;
}
.header__drop-link-rect svg {
  width: 18px;
  height: 18px;
}
.header-nav {
  padding: 20px 0px;
  background-color: var(--thunder);
  color: rgba(255, 255, 255, 0.7);
}
.header-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header-nav__nav {
  flex-shrink: 0;
}
.header-nav__list {
  display: flex;
  gap: 50px;
}
.header-nav__list .sub-menu {
  display: none;
}
.header-nav__list .menu-item-has-children {
  display: none;
}
.header-nav__list a {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;

  transition: color 0.3s ease;
}
.header-nav__list a:hover {
  color: white;
}
.header-nav__work-time {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-nav__work-time br {
  display: none;
}
.header-nav__work-time svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 140%;
}

@media (max-width: 1365px) {
  .header-nav__list {
    gap: 20px;
  }
  .header-nav__list a {
    font-size: 16px;
  }
  .header-nav__work-time {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .header-nav__work-time br {
    display: block;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    z-index: -9999;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
  }
}

.s-contacts__grid {
  padding: 50px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
.s-contacts__grid-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.s-contacts__grid-item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: -49px;
  width: 1px;
  display: none;
  background-color: rgba(0, 0, 0, 0.1);
}
.s-contacts__grid-item:not(:last-child)::after {
  display: block;
}
.s-contacts__item-row {
  display: flex;
  align-items: start;
  gap: 20px;

  font-size: 18px;
  line-height: 140%;
}
.s-contacts__item-row._work-time {
  font-weight: 300;
}
.s-contacts__item-row a {
  transition: color 0.3s ease;
}
.s-contacts__item-row a:hover {
  color: var(--red);
}
.s-contacts__item-icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  flex-shrink: 0;
}
.s-contacts__item-tel {
  font-weight: 500;
  font-size: 28px;
  line-height: 140%;
}
.s-contacts__social-btn {
  margin-top: auto;
  width: 28px;
  height: 28px;
  display: block;
  transition: opacity 0.3s ease !important;
}
.s-contacts__social-btn:hover {
  opacity: 0.7;
}
.s-contacts__social-btn svg {
  width: 100%;
  height: 100%;
}
.s-contacts__item-mail {
  font-weight: 500;
}
.s-contacts__item-route {
  margin-top: auto;
  width: 100%;
}
.s-contacts__item-route span {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 1539px) {
  .s-contacts__grid {
    padding: 40px 30px;
    gap: 40px;
    row-gap: 40px;
  }
  .s-contacts__grid-item::after {
    right: -19px;
  }
  .s-contacts__item-tel {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .s-contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .s-contacts__grid-item:not(:last-child)::after {
    display: none;
  }
  .s-contacts__grid-item:nth-child(odd)::after {
    display: block;
  }
}
@media (max-width: 991px) {
  .s-contacts__grid-item {
    gap: 20px;
  }
  .s-contacts__item-tel {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .s-contacts__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
  .s-contacts__grid-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .s-contacts__grid-item::after {
    display: none !important;
  }
  .s-contacts__item-row {
    gap: 14px;
    font-size: 16px;
  }
  .s-contacts__item-icon {
    width: 24px;
    height: 24px;
  }
}

.modal__branches {
}
.modal__branches-item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #0a090a;
}
.modal__branches-item .address {
  font-weight: 300;
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 10px;
  opacity: 0.7;
}
.modal__branches-item .tel {
  font-size: 26px;
  transition: color 0.3s ease;
}
.modal__branches-item .tel:hover {
  color: var(--red);
}

@media (max-width: 991px) {
  .modal__branches-item .address {
    font-size: 18px;
  }
  .modal__branches-item .tel {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .modal__branches-item .address {
    font-size: 16px;
  }
  .modal__branches-item .tel {
    font-size: 18px;
  }
  .modal__branches-item:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.b-cookie {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 500;
  border: #f7f4ed;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.25);
  width: 500px;
  max-width: calc(100% - 30px);
  font-size: 15px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + 15px));

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.b-cookie._open {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}
.b-cookie._hide {
  opacity: 0;
}
.b-cookie__body {
  padding: 15px 20px 20px 20px;
}
.b-cookie__close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0px 0px 15px auto;

  transition: opacity .3s ease;
}
.b-cookie__close svg {
  width: 100%;
  height: 100%;
}
.b-cookie__close:hover {
  opacity: 0.7;
}
.b-cookie__content {
  margin: 0;
}
.b-cookie__content a {
  text-decoration: underline;
}
.b-cookie__content a:hover {
  text-decoration: none;
}
.b-cookie__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  width: 100%;
  max-width: 100%;
  padding: 12px 20px;
  border-radius: 4px;
  margin-top: 15px;

  user-select: none;
  background-color: var(--black);
  color: white;

  transition: opacity 0.3s ease;
}
.b-cookie__btn:hover {
  opacity: 0.8;
}
.b-cookie__toggle {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
  font-size: 14px;
  cursor: pointer;
  border-radius: 50%;
  left: 15px;
  bottom: 15px;
  width: 55px;
  height: 55px;

  background-color: var(--black);
  color: white;
  z-index: 490;

  transition: opacity 0.3s ease;
}
.b-cookie__toggle:hover {
  opacity: 0.8;
}
.b-cookie__toggle._hide {
  opacity: 0;
}

.check-wrapper {
  --url: url("../img/check.svg");
  position: relative;
}
.check-wrapper._white {
  --url: url("../img/check-white.svg");
}
.check-wrapper._white .wpcf7-list-item-label {
  --border: white;
  --color: white;
}
.check-wrapper input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.check-wrapper input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: var(--url) center / 10px auto no-repeat;
}
.check-wrapper .wpcf7-not-valid .wpcf7-list-item-label {
  --border: rgb(255, 83, 83);
  --color: rgb(255, 83, 83);
}
.check-wrapper .wpcf7-list-item-label {
  --border: black;
  --color: black;

  display: flex;
  align-items: start;
  width: fit-content;
  gap: 15px;
  cursor: pointer;

  font-size: 14px;
  color: var(--color);

}
.check-wrapper .wpcf7-list-item-label a {
  text-decoration: underline;
  color: inherit;
}
.check-wrapper .wpcf7-list-item-label a:hover {
  text-decoration: none;
}
.check-wrapper .wpcf7-list-item {
  margin-left: 0;
}
.check-wrapper .wpcf7-list-item-label::before {
  display: block;
  content: "";
  flex-shrink: 0;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
}
