@charset "UTF-8";

/* Base */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

:root {
  --container-width: 1470px;
  --container-padding: 15px;
  --font-main: "GolosText", sans-serif;
  --page-bg: #ffffff;
  --text: #212121;
  --grey: #f5f5f5;
  --grey-text: #676767;
  --primary: #446beb;
  --secondary: #3964f2;
  --border: #dddddd;
  --white: #ffffff;
  --red: #e34234;
  --green: #008a4b;
  --radius-big: 40px;
  --radius-medium: 20px;
  --radius-small: 10px;
  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

@font-face {
  font-family: GolosText;
  font-display: swap;
  src: url("../fonts/GolosText-Bold.woff2") format("woff2"), url("../fonts/GolosText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: GolosText;
  font-display: swap;
  src: url("../fonts/GolosText-Black.woff2") format("woff2"), url("../fonts/GolosText-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: GolosText;
  font-display: swap;
  src: url("../fonts/GolosText-ExtraBold.woff2") format("woff2"), url("../fonts/GolosText-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: GolosText;
  font-display: swap;
  src: url("../fonts/GolosText-SemiBold.woff2") format("woff2"), url("../fonts/GolosText-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: GolosText;
  font-display: swap;
  src: url("../fonts/GolosText-Regular.woff2") format("woff2"), url("../fonts/GolosText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: GolosText;
  font-display: swap;
  src: url("../fonts/GolosText-Medium.woff2") format("woff2"), url("../fonts/GolosText-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  font-family: var(--font-main);
  text-wrap: balance;
  font-size: 16px;
  line-height: 1.33;
  font-weight: 400;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  color: var(--text);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

.section {
  padding: 80px 0;
}

.title-l {
  font-size: 54px;
  font-weight: 600;
  line-height: 0.92;
}

.title {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.167;
}

.subtitle {
  margin-bottom: 20px;
  font-size: 26px;
}

.btn {
  font-size: 18px;
  font-weight: 700;
  padding: 20px 30px;
  min-height: 58px;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
  width: fit-content;
  color: var(--white);
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.32s linear;
}

.btn-primary {
  background-image: linear-gradient(var(--primary), var(--secondary));
}

.btn-primary:hover {
  filter: brightness(120%);
}

.btn-secondary {
  padding: 10px 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  background-color: var(--white);
  color: var(--text);
  border: 1px solid #EEEEEE;
  min-height: 44px;
}

.btn-secondary:hover {
  filter: brightness(120%);
}

.btn-grey {
  padding: 10px 20px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  background-color: var(--grey);
  color: var(--text);
  border: 1px solid var(--grey);
  min-height: 44px;
}

.btn-grey:hover {
  background-color: var(--white);
  border-color: #EEEEEE;
}

.btn-outline {
  border: 1px solid var(--white);
}

.btn-outline:hover {
  filter: brightness(120%);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.btn-white:hover {
  filter: brightness(120%);
}

.btn-transparent {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}

.btn-transparent:hover {
  filter: brightness(120%);
}

/* Стили чекбоксов */
input[type=checkbox] {
  width: 24px;
  height: 24px;
}

.custom-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* для элемента input c type="checkbox" */
.custom-checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox>label {
  display: inline-flex;
  align-items: start;
  user-select: none;
  font-weight: 400;
  font-size: 16px;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox>label::before {
  margin-top: 2px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 5px;
  margin-right: 9px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  display: flex;
  justify-content: start;
  align-items: start;
}

.custom-checkbox>label span {
  margin-right: 6px;
}

/* .custom-checkbox>label span:nth-child(1):after {
    content: ",";
} */
/* стили при наведении курсора на checkbox */
.custom-checkbox>input:not(:disabled):not(:checked)+label:hover::before {
  border-color: var(--primary);
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox>input:checked+label::before {
  background: var(--primary) url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICA8cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTQuMDQyOTM4OTYsMTAuMDQyODE4MyBDMy43OTc2NzQzOCw5LjQwOTg2NTU4IDQuNjU2MjkwNjcsOC44NTU2NjM3NCA1LjI2OTY0MjM4LDguODU1NjYzNzQgQzUuODgyOTk0MDksOC44NTU2NjM3NCA3LjcyMzA0OTA3LDExLjUyNjc2MTQgNy43MjMwNDkwNywxMS41MjY3NjE0IEM3LjcyMzA0OTA3LDExLjUyNjc2MTQgMTIuMzIzMTg2OSw0LjQwMzgzNDI5IDEyLjYyOTg2MjksNC4xMDcwNDU2NiBDMTIuOTM2NTM4OSwzLjgxMDI1NzAzIDE0LjQ2OTkxODIsNC4xMDcwNDU2NiAxMy44NTY1NjYzLDUuMjk0MjAwMTggQzEzLjMxMzMyMTYsNi4zNDU2NjA4NCA4LjMzNjQwMDkyLDEzLjYwNDI4MTggOC4zMzY0MDA5MiwxMy42MDQyODE4IEM4LjMzNjQwMDkyLDEzLjYwNDI4MTggNy43MjMwNDkyMSwxNC40OTQ2NDc3IDcuMTA5Njk3NTEsMTMuNjA0MjgxOCBDNi40OTYzNDU4LDEyLjcxMzkxNTkgNC4yODgyMDM1NSwxMC42NzU3NzA5IDQuMDQyOTM4OTYsMTAuMDQyODE4MyBaIi8+ICA8L2c+PC9zdmc+) no-repeat center;
  background-size: 18px 18px;
  border-color: var(--primary);
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-checkbox>input:disabled+label::before {
  background-color: #e9ecef;
}

/* Радио-кнопки */
input[type=radio] {
  width: 24px;
  height: 24px;
}

/* для элемента input c type="checkbox" */
.custom-radio>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-radio>label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  font-weight: 400;
  font-size: 16px;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-radio>label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  margin-right: 9px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* стили при наведении курсора на checkbox */
.custom-radio>input:not(:disabled):not(:checked)+label:hover::before {
  border-color: #547efe;
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-radio>input:checked+label::before {
  border: 5px solid #547efe;
}

/* стили для чекбокса, находящегося в состоянии disabled */
.custom-radio>input:disabled+label::before {
  background-color: #e9ecef;
}

.btn-plus,
.btn-minus {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 29px;
  line-height: 29px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  cursor: pointer;
  float: left;
  width: 30px;
  max-width: 30px;
  transition: all 0.32s linear;
  position: relative;
  z-index: 3;
}

.btn-minus {
  padding-bottom: 5px;
}

.btn-plus:hover,
.btn-minus:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-minus:disabled {
  background-color: transparent;
  cursor: default;
}

.btn-minus:disabled:hover {
  background-color: var(--grey);
  color: var(--primary);
}

.item__number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  gap: 5px;
}

.item__number input {
  border: none;
  text-align: center;
  display: inline-block;
  max-width: 45px;
  float: left;
  height: 100%;
  line-height: 30px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  color: var(--black);
  border-radius: 5px;
}

.item__number input::placeholder {
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
}

.item__number-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.item__number-wrap span {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1;
}

.tab {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.tab-header {
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.tab-header__item,
.tab-btn {
  padding: 10px 25px;
  margin-right: 10px;
  height: 80px;
  border: 1px solid #ededed;
  background-color: var(--white);
  border-radius: var(--radius-medium);
  text-decoration: none;
  transition: all 0.32s linear;
  cursor: pointer;
  display: grid;
  grid-template-columns: 40px auto;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  -webkit-appearance: button;
  text-wrap: nowrap;
}

.tab-header__item svg,
.tab-btn svg {
  width: 40px;
  height: 40px;
}

.tab-btn-active,
.tab-header__item.active,
.tab-header__item.slick-slide.slick-active {
  cursor: default;
  background: linear-gradient(0deg, rgba(68, 107, 235, 0.1) 0%, rgba(57, 100, 242, 0.1) 100%);
  border: 1px solid var(--secondary);
}

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

.tab-content__item {
  display: none;
}

.tab-content__item.active {
  display: block;
  position: relative;
}

.tab-btn-hidden {
  opacity: 0;
  position: relative;
  z-index: -10;
}

.tab-pane:not(.tab-pane-show) {
  display: none;
}

.tab-nav__arrow {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev-arrow,
.next-arrow {
  position: absolute;
  top: 12px;
  z-index: 1;
  cursor: pointer;
}

.prev-arrow {
  left: 0px;
  transform: rotate(180deg);
  opacity: 0;
  z-index: -10;
}

.prev-arrow.active {
  opacity: 1;
  z-index: 1;
}

.next-arrow {
  right: 0px;
  opacity: 0;
  z-index: -10;
}

.next-arrow.active {
  opacity: 1;
  z-index: 1;
}

.input {
  padding: 20px;
  display: block;
  width: 100%;
  height: 60px;
  font-family: var(--font-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: var(--black);
  appearance: textfield;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  outline: none;
  position: relative;
  text-overflow: ellipsis;
  z-index: 2;
}

.input::placeholder {
  font-family: var(--font-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: var(--black);
}

.input:focus,
.input:active {
  border: 1px solid var(--primary);
  background-color: var(--white);
}

.arrow {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.arrow-prev,
.arrow-next {
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.32s linear;
}

.arrow-prev {
  transform: rotate(180deg);
}

.arrow-prev svg,
.arrow-next svg {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-prev:hover svg path:first-of-type,
.arrow-next:hover svg path:first-of-type {
  fill: var(--grey);
}

.arrow-prev:hover svg path:last-of-type,
.arrow-next:hover svg path:last-of-type {
  fill: var(--primary);
}

.prices {
  padding: 5px 0;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  position: fixed;
  top: -1px;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  background-color: #FF5255;
  color: var(--white);
  z-index: 1000;
}

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

.prices__btn {
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  min-height: 36px;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
  width: fit-content;
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.32s linear;
  background-color: var(--white);
  color: var(--text);
}

/* Модальное окно */

.modal {
  border-radius: var(--radius-big) !important;
  background-color: var(--grey) !important;
  border: 1px solid var(--border);
  max-width: 700px;
  width: 100%;
  overflow: hidden;
}

.modal__wrap {
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.modal__close {
  position: absolute;
  z-index: 10;
  top: 30px;
  right: 30px;
  cursor: pointer;
}

.modal__close svg {
  width: 32px;
  height: 32px;
  transition: all 0.32s linear;
}

.modal__close svg path {
  stroke: var(--text);
}

.modal__close svg:hover {
  transform: rotate(90deg);
}

.modal__title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.modal__form input {
  margin-bottom: 10px;
}

.modal__link {
  color: var(--primary);
}

.modal__link:hover {
  color: var(--main-blue);
}

.modal__btn {
  margin: 0 auto;
}

.modal__btn.no-active {
  pointer-events: none;
}

.modal__wrap .custom-checkbox {
  margin-bottom: 20px;
  justify-content: start;
}

.bg {
  width: 100%;
  height: 179%;
  position: absolute;
  z-index: 0;
  top: 50px;
  right: -60px;
  transform: rotate(30deg);
}

.none {
  display: none !important;
}

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

.no-scroll {
  overflow-y: hidden;
}

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

.text-right {
  text-align: right;
}

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

.d-flex {
  display: flex;
}

.flex-center {
  justify-content: center;
}

/* Контейнеры */
.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  width: 100%;
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

/* Blocks */

.footer {
  margin-bottom: 60px;
  overflow: hidden;
}

.footer__wrap {
  background-color: var(--grey);
  border-radius: var(--radius-big);
}

.footer__top {
  border-bottom: 1px solid #E3E3E3;
  display: flex;
  justify-content: space-between;
}

.footer__left {
  padding: 60px 60px 0 60px;
  max-width: 770px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 65px;
  position: relative;
}

.footer__links {
  max-width: 243px;
  width: 100%;
}

.footer__img {
  max-width: 243px;
  width: 100%;
  height: 320px;
  position: absolute;
  bottom: 0px;
  left: 60px;
  z-index: 0;
}

.footer__logo {
  margin: 30px auto 120px;
  display: block;
  max-width: 124px;
  height: 26px;
  position: relative;
  z-index: 1;
}

.footer__link {
  margin: 0 32px;
  padding: 20px;
  display: block;
  max-width: calc(100% - 70px);
  width: 100%;
  height: 48px;
  border-radius: var(--radius-small);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 19px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.footer__link-light {
  margin-bottom: 10px;
  background-color: var(--white);
  color: var(--text);
}

.footer__link-top {
  font-size: 9px;
  line-height: 10px;
  color: var(--grey-text);
}

.footer__link-dark {
  background-color: #0077FF;
  color: var(--white);
}

.footer__link-dark .footer__link-top {
  color: var(--white);
}

.footer__title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
}

.footer__email a {
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 600;
  text-decoration: underline;
}

.footer__email-text {
  color: var(--grey-text);
}

.footer__contact-link {
  margin-bottom: 30px;
  display: block;
  font-size: 18px;
  line-height: 1.33;
  font-weight: 600;
  text-decoration: underline;
}

.footer__contact-link:visited {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}

.footer__social-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  transition: all 0.32s linear;
}

.footer__social-link-icon svg {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__social-link-icon svg path {
  fill: var(--text);
  transition: all 0.32s linear;
}

.footer__social-link-telegram:hover .footer__social-link-icon {
  background-color: #0088cc;

  & svg path {
    fill: var(--grey);
  }
}

.footer__social-link-vk:hover .footer__social-link-icon {
  background-color: #0077ff;

  & svg path {
    fill: var(--grey);
  }
}

.footer__social-link-whatsapp:hover .footer__social-link-icon {
  background-color: #25D366;

  & svg path {
    fill: var(--grey);
  }
}

.footer__right {
  padding: 60px 60px 35px 60px;
  max-width: 670px;
  position: relative;
}

.footer__menu ul {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer__menu li a:hover {
  color: var(--primary);
}

.footer .btn-group {
  flex-direction: column;
  align-items: start;
  gap: 18px;
}

.footer .btn {
  font-size: 15px;
  line-height: 1.267;
  max-width: 270px;
  width: 100%;
}

.footer__btn-dark {
  background-color: var(--white);
  color: var(--text);
}

.footer__bg-img {
  max-width: 240px;
  width: 100%;
  height: 230px;
  position: absolute;
  z-index: 1;
  right: 0px;
  bottom: -25px;
}

.footer__bottom {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.footer__copyright {
  max-width: 420px;
  width: 100%;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--grey-text);
}

.footer__bottom-link {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--grey-text);
  text-decoration: underline;
}

.footer__bottom-link:visited {
  text-decoration: underline;
}

.footer__innopolis-logo {
  margin: 10px 0;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.footer__innopolis-logo-img {
  max-width: 150px;
  width: 100%;
}

.footer__innopolis-logo-text {
  margin-top: 12px;
  font-size: 18px;
  line-height: 0.8;
  font-weight: 600;
}

.header__wrap {
  margin: 63px 0 18px;
  padding: 0 15px;
  border-radius: var(--radius-medium);
  background-color: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  min-height: 91px;
}

.header__contacts {
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__phone {
  display: flex;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1875;
}

.header__phone-number {
  margin-bottom: 5px;
  text-wrap: nowrap;
}

.header__phone-link {
  background-image: linear-gradient(var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
}

.header__phone-link::after {
  content: " ";
  position: absolute;
  background-image: linear-gradient(var(--primary), var(--secondary));
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__social a {
  width: 24px;
  height: 24px;
}

.header__btn-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__btn-wrap .btn {
  font-size: 16px;
}

.header__user-btn {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: var(--radius-small);
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__burger-wrap {
  display: none;
}

.header .btn-secondary {
  padding: 20px 30px;
  min-height: 58px;
  font-size: 16px;
  font-weight: 700;
}

.nav__list {
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 50px;
}

.nav li {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1875;
}

.nav__item {
  padding: 10px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.nav a:hover {
  color: var(--primary);
}

.nav__item span {
  text-wrap: nowrap;
}

.nav__item-arrow {
  margin-top: 2px;
  width: 10px;
  height: 7px;
  transition: all 0.32s linear;
  cursor: pointer;
}

.nav__item-arrow svg {
  width: 10px;
  height: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submenu {
  display: none;
  background-color: var(--white);
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
  z-index: 1000;
  width: max-content;
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
}

.submenu ul {
  padding: 10px;
  margin: 0;
  list-style-type: none;
}

.submenu ul li a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  border-radius: var(--radius-small);
}

.submenu ul li a:hover {
  background-color: var(--grey);
}

.active>.submenu {
  display: block;
}

.active .nav__item-arrow {
  transform: rotate(180deg);
}

.icons-wrapper {
  padding: 30px 0;
  display: flex;
  column-gap: 30px;
}

.icon {
  width: 32px;
  height: 32px;
}

.logo {
  margin-left: 10px;
  max-width: 187px;
  width: 100%;
}

.top {
  padding: 0;
  padding-bottom: 113px;
}

.top__wrap {
  padding-bottom: 49px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 77px;
  position: relative;
}

.top__text {
  margin-left: 74px;
  max-width: 588px;
  width: 100%;
}

.top__title-wrap {
  margin-top: 75px;
  position: relative;
}

.top__title {
  margin-bottom: 20px;
  text-align: center;
}

.top__title-img {
  max-width: 48px;
  width: 100%;
  height: 31px;
  position: absolute;
  top: -38px;
  left: 0px;
}

.top__subtitle {
  margin-bottom: 18px;
  text-align: center;
}

.top .btn {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.top__list {
  padding: 20px;
  max-width: 700px;
  width: 100%;
  min-height: 720px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 88px);
  gap: 20px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
}

.top__item {
  padding: 20px;
  border-radius: var(--radius-medium);
  background-color: var(--white);
  border: 1px solid #ededed;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.top__item svg {
  max-width: 40px;
  width: 100%;
  height: 40px;
}

.top__img {
  max-width: 1480px;
  width: 100%;
  position: absolute;
  left: -4px;
  bottom: -6px;
  z-index: 0;
}

.types {
  padding-top: 0;
}

.types__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.types__item {
  padding: 29px;
  min-height: 438px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  text-align: center;
}

.types__item-center {
  padding-top: 40px;
  grid-column: span 2;
  background-color: var(--white);
  border: none;
  justify-content: start;
  position: relative;
}

.types__item-icon {
  margin-bottom: 14px;
}

.types__title-wrap {
  position: relative;
}

.types__title-img {
  max-width: 331px;
  width: 100%;
  height: 20px;
  position: absolute;
  bottom: 10px;
  right: 5px;
}

.types__img {
  max-width: 610px;
  width: 100%;
  height: 306px;
  position: absolute;
  bottom: -70px;
  right: 11px;
}

.types__item-title {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
}

.types__item-text {
  margin-bottom: 10px;
}

.types .btn-secondary {
  margin: auto auto 0 auto;
}

.types .btn-primary {
  margin: 20px auto 0;
}

.types .title {
  text-align: center;
}

.plan {
  padding-bottom: 165px;
}

.plan__wrap {
  padding: 80px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
  position: relative;
}

.plan__text {
  margin-bottom: 20px;
  max-width: 528px;
}

.plan__title {
  margin-bottom: 18px;
}

.plan__title-2 {
  margin-bottom: 32px;
  max-width: 699px;
}

.plan__img {
  max-width: 699px;
  width: 100%;
  height: 510px;
  position: absolute;
  bottom: -100px;
  right: 46px;
}

.areas__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  min-height: 100vh;
}

.areas__left {
  margin-top: 40px;
  max-width: 574px;
  width: 100%;
  position: sticky;
  top: 90px;
  z-index: 1;
}

.areas__title-wrap {
  position: relative;
}

.areas__title {
  margin-bottom: 18px;
  text-wrap: initial;
}

.areas__title-img {
  max-width: 48px;
  width: 100%;
  height: 31px;
  position: absolute;
  top: -29px;
  left: -44px;
}

.areas__right {
  max-width: 823px;
  width: 100%;
  min-height: 100vh;
}

.areas__list {
  margin-bottom: -300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.areas__item {
  height: 260px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.areas__item:nth-of-type(2) {
  transform: translateY(-60px);
}

.areas__item:nth-of-type(3) {
  transform: translateY(-120px);
}

.areas__item:nth-of-type(4) {
  transform: translateY(-180px);
}

.areas__item:nth-of-type(5) {
  transform: translateY(-240px);
}

.areas__item:nth-of-type(6) {
  transform: translateY(-300px);
}

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

.areas__item-img {
  padding: 20px;
  position: relative;
}

.areas__img {
  width: 220px;
  height: 220px;
}

.areas__item-icon {
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background-color: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
}

.areas__item-icon svg {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.areas__item-info {
  padding: 40px;
  height: 100%;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
}

.areas__item-title {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
}

.areas__item-text {
  font-weight: 500;
}

.areas__right .btn {
  margin: 20px auto;
}

.form {
  padding: 30px;
  border-radius: var(--radius-big);
  border: 1px solid var(--border);
}

.form-content__wrap {
  padding: 30px;
  border-radius: var(--radius-big);
  border: 1px solid var(--border);
}

.form-content__text {
  color: var(--grey-text);
}

.form-content__subtitle {
  margin-bottom: 19px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
}

.form .input {
  margin-bottom: 12px;
}

.form-content__btn {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}
.wpcf7-submit {
   max-width: 100% !important;
}
.form-content__btn.no-active {
  pointer-events: none;
}

.input-readonly {
  padding: 0;
  height: 0;
  opacity: 0;
  margin-bottom: 0;
}
.form-content .input-readonly {
    margin-bottom: 0px;
}
.areas .form-content__btn {
  margin-bottom: 0;
}
.form-content .custom-checkbox {
  margin-bottom: 18px;
  justify-content: start;
}
.form-content__descr {
  text-align: center;
  color: var(--grey-text);
}

.form-content__descr a {
  text-decoration: underline;
}

.instruments {
  padding-bottom: 160px;
}

.instruments .tab-content__item .instruments__img-wrap {
  display: none;
}

.instruments .tab-content__item.active .instruments__img-wrap {
  display: block;
  min-height: 0;
}

.instruments__title-number {
  position: relative;
}

.instruments__title {
  margin-bottom: 19px;
}

.instruments__title-img {
  max-width: 80.5px;
  width: 100%;
  height: 21px;
  position: absolute;
  bottom: -2px;
  left: 0px;
}

.instruments__left {
  padding: 80px;
  max-width: 823px;
  width: 100%;
  background: linear-gradient(var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--radius-big);
}

.instruments__subtitle {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1.33;
  font-weight: 600;
}

.instruments__img-wrap {
  max-width: 750px;
  width: 100%;
  position: absolute;
  top: 38px;
  right: 0px;
}

.instruments__img {
  max-width: 100%;
  align-self: stretch;
  width: 100%;
  position: relative;
  z-index: 2;
}

.instruments__img img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.instruments__animation {
  position: absolute;
  top: 37px;
  right: 42px;
  max-width: 659px;
  width: 100%;
  z-index: 1;
}

.instruments__animation video {
  width: 100%;
  height: 100%;
}

.instruments__mobile.active {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.instruments__mobile .instruments__left {
  max-width: 1225px;
}

.instruments__mobile .instruments__img-wrap {
  max-width: 350px;
  top: 0;
}

.instruments__mobile .instruments__animation {
  max-width: 283px;
  top: 32px;
  right: 36px;
}

.instruments__mobile .instruments__animation video {
  border-radius: 30px;
}

.instruments__left ul {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.instruments__left li {
  padding: 10px;
  display: flex;
  align-items: start;
  gap: 5px;
  border-radius: var(--radius-small);
  background-color: rgba(255, 255, 255, 0.1);
}

.instruments__left li svg {
  max-width: 24px;
  width: 100%;
  height: 24px;
}

.instruments__arrow-prev,
.instruments__arrow-next {
  position: absolute;
  top: 11px;
}

.instruments__arrow-prev {
  left: 0;
  opacity: 0;
  z-index: -2;
}

.instruments__arrow-prev.active {
  opacity: 1;
  z-index: 2;
}

.instruments__arrow-next {
  right: 0;
}

.instruments .slick-initialized .slick-slide {
  display: flex;
}

.control__wrap {
  padding: 80px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  position: relative;
}

.control__animation-wrap {
  position: absolute;
  bottom: 0;
  left: 160px;
  max-width: 474px;
  width: 100%;
  height: 677px;
}

.control__img {
  position: relative;
  z-index: 2;
}

.control__img img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.control__animation {
  position: absolute;
  top: 22px;
  left: 80px;
  max-width: 240px;
  width: 100%;
  z-index: 1;
}

.control__tab {
  padding: 10px;
  width: fit-content;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: linear-gradient(var(--primary), var(--secondary));
  color: var(--white);
  position: relative;
  z-index: 4;
}

.control__tab-1 {
  margin-top: 37px;
  margin-bottom: 156px;
}

.control__tab-2 {
  margin-bottom: 150px;
  margin-left: 380px;
}

.control__tab-3 {
  margin-left: 30px;
  margin-bottom: 10px;
}

.control__right {
  margin-left: auto;
  max-width: 641px;
  width: 100%;
}

.control__title {
  margin-bottom: 17px;
  text-wrap: initial;
}

.control__text {
  margin-bottom: 100px;
  color: var(--grey-text);
  font-weight: 500;
  text-wrap: initial;
}

.control .form-content__wrap {
  padding: 0px;
  border-radius: 0;
  border: none;
}

.control .btn,
.control .input {
  position: relative;
  z-index: 3;
}

.more__title {
  margin-bottom: 40px;
  text-align: center;
}

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

.more li {
  padding: 30px;
  min-height: 410px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.more__img {
  margin-bottom: 12px;
  max-width: 148px;
  width: 100%;
}

.more__item-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;

}

.more__item-text {
  text-align: center;
}

.clients__slider-wrap {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.clients__top {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.clients__top .arrow {
  margin: 0;
}

.clients__title {
  margin-bottom: 0;
}

.clients__list {
  margin: 0 -20px;
}

.clients__list li {
  margin: 0 20px;
  padding: 10px 20px;
  border-radius: var(--radius-big);
  border: 1px solid var(--border);
  min-height: 200px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.clients__list img {
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.3s ease;
  cursor: pointer;

}

.clients__list img:hover {
  filter: grayscale(0%);
}

.cases__wrap {
  padding: 80px 0 20px;
  border-radius: var(--radius-big);
  background-image: linear-gradient(var(--primary), var(--secondary));
  color: var(--white);
  position: relative;
}

.cases__img {
  max-width: 308px;
  width: 100%;
  height: 308px;
  position: absolute;
  bottom: -83px;
  right: -47px;
}

.cases__title-wrap {
  padding: 0 80px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cases__title {
  margin-bottom: 0;
}

.cases__info-wrap {
  margin-left: auto;
  position: relative;
}

.cases__info {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-small);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.cases__title-img {
  position: absolute;
  top: -30px;
  right: -37px;
  max-width: 47px;
  width: 100%;
  height: 34px;
}

.cases .arrow {
  margin: 0;
}

.cases__slider-wrap {
  margin: 0 -20px;
}

.cases__list {
  padding: 0 80px;
  margin-bottom: 50px;
  width: 100%;
}

.cases__item {
  margin: 0 20px;
  padding: 30px;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  border-radius: var(--radius-big);
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  min-height: 645px;
}

.cases__item-top {
  margin-bottom: 21px;
  position: relative;
}

.cases__item-img {
  height: 220px;
}

.cases__item-img img {
  border-radius: var(--radius-medium);
  object-fit: cover;
}

.cases__top-area {
  padding: 10px;
  background-color: var(--white);
  color: var(--text);
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: var(--radius-small);
  font-size: 13px;
  line-height: 24px;
  font-weight: 600;
}

.cases__top-amount {
  padding: 8px;
  background-image: linear-gradient(var(--primary), var(--secondary));
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border-radius: var(--radius-small);
  font-size: 13px;
  line-height: 14px;
  font-weight: 600;
}

.cases__item-name {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1.33;
  font-weight: 600;
  color: var(--text);
}

.cases__item-text {
  margin-bottom: 22px;
  color: var(--grey-text);
  min-height: 43px;
}

.cases__item-blocks {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cases__item-block {
  padding: 10px 15px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-medium);
  background: linear-gradient(0deg, rgba(68, 107, 235, 0.1) 0%, rgba(57, 100, 242, 0.1) 100%);
  min-height: 140px;
}

.cases__item-block-number {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
}

.cases__item-block-info {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
}

.cases__item-about {
  color: var(--grey-text);
  text-wrap: initial;
  margin-bottom: auto;
  min-height: 64px;
}

.cases__total {
  margin: 0 20px;
  display: flex;
  border-radius: var(--radius-big);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cases__total-left {
  padding: 55px;
  max-width: 843px;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--radius-big);
  color: var(--text);
}

.cases__total-title-wrap {
  position: relative;
}

.cases__total-title {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
}

.cases__total-title-img {
  max-width: 115px;
  width: 100%;
  height: 6.3px;
  position: absolute;
  bottom: 0;
  left: 0px;
}

.cases__total-list {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  gap: 30px;
}

.cases__total-number {
  margin-bottom: 10px;
  display: flex;
  justify-content: start;
  align-items: flex-end;
  gap: 5px;
  font-size: 48px;
  line-height: 1.167;
  font-weight: 600;
}

.cases__total-img {
  margin-bottom: 8px;
  max-width: 24px;
  width: 100%;
  height: 35px;
}

.cases__total-text {
  font-weight: 600;
  color: var(--grey-text);
  text-wrap: initial;
}

.cases__total-right {
  padding: 55px;
}

.cases__subtitle {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 600;
}

.cases__text {
  margin-bottom: 70px;
}

.cases .btn-grey {
  margin: 10px auto 0 auto;
}

.reviews {
  padding-bottom: 160px;
}

.reviews__title {
  margin-bottom: 40px;
  text-align: center;
}

.reviews__slider-wrap {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.reviews__list {
  margin: 0 -20px 42px;
}

.reviews__item {
  margin: 0 20px;
}

.reviews__item-top {
  margin-bottom: 25px;
  padding: 40px 40px 77px;
  background-color: var(--grey);
  border-radius: var(--radius-medium);
  border-top: 1px solid var(--border);
  position: relative;
}

.reviews__item-text {
  text-wrap: initial;
}

.reviews__item-img {
  max-width: 94px;
  width: 100px;
  height: 70px;
  position: absolute;
  bottom: -3px;
  right: 44px;
}

.reviews__item-img-bg {
  max-width: 40px;
  width: 100%;
  height: 24px;
  position: absolute;
  bottom: -19px;
  left: 36px;
}

.reviews__item-author {
  margin-left: 19px;
  display: flex;
  align-items: center;
  gap: 21px;
}

.reviews__item-avatar {
  width: 80px;
  height: 80px;
}

.reviews__item-avatar img {
  border-radius: 50%;
}

.reviews__item-avatar-initials {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--grey);
  border-radius: 50%;
  border: 1px solid var(--border);
  font-weight: 600;
}

.reviews__item-name {
  font-weight: 600;
}

.reviews__item-job {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: var(--grey-text);
}

/* Блок Тарифы */

.tariff-box__wrap {
  padding: 80px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
}

.tarif .tab-header {
  justify-content: center;
}

.tarif .title {
  text-align: center;
}

.tarif__table-wrap {
  margin: 0 auto;
  margin-bottom: 10px;
  max-width: 1000px;
  width: 100%;
  border-radius: var(--radius-big);
  border: 1px solid #dddddd;
}

.tarif__table {
  max-width: 1000px;
  width: 100%;
  border-radius: var(--radius-big);
  background-color: #f5f5f5;
  border-collapse: separate;
  border-spacing: 0;
  color: #2e2f35;
  overflow-x: auto;
}

.tarif__table thead {
  display: block;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  border-top-left-radius: var(--radius-big);
  border-top-right-radius: var(--radius-big);
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: transparent;
}

.tarif__table tr {
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 150px 150px 150px 150px;
  gap: 10px;
  align-self: center;
  position: relative;
}

.tarif__table tr td:first-child {
  justify-content: start;
}

.tarif__table td {
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #dddddd;
}

.tarif__table td:last-of-type {
  border-right: none;
}

.tarif__table td svg {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarif__table th {
  padding: 15px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarif__table tbody tr:nth-child(odd) {
  background-color: var(--white);
}

.tarif__table tbody tr:nth-child(odd):hover {
  background-color: #f4f4f4;
}

.tarif__table tbody tr:hover {
  background-color: #f4f4f4;
}

.tarif__table tbody tr:last-of-type {
  border-bottom-left-radius: var(--radius-big);
  border-bottom-right-radius: var(--radius-big);
}

.tarif__prices {
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 180px 180px 180px;
  gap: 10px;
}

.tarif__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}

.tarif__btns {
  padding: 0 25px;
  margin: 0 auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 150px 150px 150px 150px;
  gap: 10px;
}

.tarif__btn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  font-size: 16px;
}

.tarif__table-wrap-mobile {
  display: none;
}

.tarif .tariff .tab-nav {
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  order: -1;
}

.tarif input[type=checkbox] {
  width: 30px;
  height: 30px;
}

.tarif .custom-checkbox>label::before {
  margin-top: 2px;
  width: 25px;
  height: 25px;
  border: 1px solid #adb5bd;
  border-radius: 5px;
  margin-right: 9px;
}

.tarif .tarif .custom-checkbox>input:not(:disabled):not(:checked)+label:hover::before {
  border-color: #008a4b;
}

.tarif .custom-checkbox>input:checked+label::before {
  background: #008a4b url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICA8cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZmlsbD0iI0ZGRiIgZD0iTTQuMDQyOTM4OTYsMTAuMDQyODE4MyBDMy43OTc2NzQzOCw5LjQwOTg2NTU4IDQuNjU2MjkwNjcsOC44NTU2NjM3NCA1LjI2OTY0MjM4LDguODU1NjYzNzQgQzUuODgyOTk0MDksOC44NTU2NjM3NCA3LjcyMzA0OTA3LDExLjUyNjc2MTQgNy43MjMwNDkwNywxMS41MjY3NjE0IEM3LjcyMzA0OTA3LDExLjUyNjc2MTQgMTIuMzIzMTg2OSw0LjQwMzgzNDI5IDEyLjYyOTg2MjksNC4xMDcwNDU2NiBDMTIuOTM2NTM4OSwzLjgxMDI1NzAzIDE0LjQ2OTkxODIsNC4xMDcwNDU2NiAxMy44NTY1NjYzLDUuMjk0MjAwMTggQzEzLjMxMzMyMTYsNi4zNDU2NjA4NCA4LjMzNjQwMDkyLDEzLjYwNDI4MTggOC4zMzY0MDA5MiwxMy42MDQyODE4IEM4LjMzNjQwMDkyLDEzLjYwNDI4MTggNy43MjMwNDkyMSwxNC40OTQ2NDc3IDcuMTA5Njk3NTEsMTMuNjA0MjgxOCBDNi40OTYzNDU4LDEyLjcxMzkxNTkgNC4yODgyMDM1NSwxMC42NzU3NzA5IDQuMDQyOTM4OTYsMTAuMDQyODE4MyBaIi8+ICA8L2c+PC9zdmc+) no-repeat center;
  background-size: 25px 25px;
  border-color: #008a4b;
}

.tarif .custom-checkbox>input:disabled+label::before {
  background-color: #e9ecef;
}

.tarif__text {
  margin-top: 10px;
  text-align: center;
}

.tarif__terms {
  margin-top: 12px;
}

.tarif__terms .tab-content {
  margin: 20px auto 0;
  max-width: 900px;
  width: 100%;
}

.tarif__toggle-switch-wrap {
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #dddddd;
  border-radius: var(--radius-big);
}

.tarif__toggle-switch {
  display: flex;
  justify-content: center;
  align-items: start;
}

.tarif__toggle-switch-wrap .btn {
  margin: 22px auto 0;
}

.tarif__toggle-switch-botom {
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
  min-height: 27px;
}

.tarif__toggle-switch .custom-radio {
  min-width: 80px;
}

.tarif__toggle-switch .custom-radio label {
  margin-bottom: 8px;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tarif__toggle-switch .custom-radio label::before {
  margin-right: 0;
  margin-top: 5px;
  order: 2;
}

.tarif .line {
  width: 50px;
  height: 1px;
  background-color: #adb5bd;
  margin-top: 37px;
  align-self: start;
  flex-shrink: 0;
}

.tarif__price-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 10px;
}

.tarif__price-without-discount {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: line-through;
  color: red;
}

.tarif__names {
  text-align: center;
  font-weight: 600;
}

.tarif__services-content {
  margin: 40px auto 120px;
  padding: 40px;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
}

.tarif__services-table {
  margin: 0 auto;
}

.tarif__services-table tr {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 150px;
  gap: 20px;
}

.tarif__services-option-name {
  display: flex;
  justify-content: space-between;
}

.tarif__services-price {
  text-align: center;
  font-weight: 600;
}

.tarif__services-note {
  margin-top: 12px;
  text-align: center;
  font-size: 16px;
  color: var(--grey-text);
}

.tarif__services-tooltip {
  margin: 0 10px;
  position: relative;
}

.tarif__table td .tarif__services-tooltip svg {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarif__services-tooltip-button {
  display: block;
  width: 20px;
  height: 20px;
}

.tarif__services-option-list {
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
  max-width: 450px;
  min-width: 450px;
  width: 100%;
  opacity: 0;
  height: 0;
  position: absolute;
  z-index: -10;
}

.tarif__services-option-list span {
  font-weight: 600;
}

.tarif__services-option-list ul {
  margin-top: 10px;
}

.tarif__services-tooltip li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  gap: 8px;
  font-size: 16px;
}

.tarif__services-tooltip li:first-of-type {
  padding-top: 0;
}

.tarif__services-tooltip li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.tarif__services-tooltip li:before {
  margin-top: 8px;
  content: "";
  max-width: 6px;
  width: 100%;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.tarif__services-tooltip:hover .tarif__services-option-list {
  opacity: 1;
  height: fit-content;
  z-index: 50;
}

.tarif__table tr td:first-child {
  justify-content: space-between;
}

.banner {
  padding: 0;
}

/* Стилизация страниц блока Программы */

.description {
  margin-bottom: 18px;
  text-align: center;
}

.save .title,
.card__wrap .title {
  text-align: center;
  margin-bottom: 20px;
}

.save,
.card {
  padding: 40px 0;

}

.card__wrap {
  padding: 80px;
  border-radius: var(--radius-big);
  background-color: var(--grey);
  border: 1px solid var(--border);
}



.form .wpcf7-form {
  max-width: 50%;
}

.wpcf7-submit {
  background-image: linear-gradient(var(--primary), var(--secondary)) !important;
  max-width: fit-content;
}

@media (max-width: 768px) {
  .card__wrap {
    padding: 40px;
  }
}

@media (max-width: 500px) {
  .card__wrap {
    padding: 30px;
  }

  .form .wpcf7-form {
    max-width: 100%;
  }
}

/* Основной адаптив */

@media (max-width: 1500px) {
  .areas__title-img {
    top: -29px;
    left: -25px;
  }

  .cases__item {
    min-height: 667px;
  }
}

@media (max-width: 1400px) {
  .header__wrap {
    gap: 20px;
  }

  .nav__list {
    column-gap: 15px;
  }

  .top__wrap {
    gap: 40px;
  }

  .top__text {
    margin-left: 0px;
  }

  .instruments__img-wrap {
    max-width: 600px;
    right: 0px;
  }

  .instruments__animation {
    max-width: 510px;
    top: 31px;
    right: 42px;
  }

  .instruments__mobile .instruments__left {
    max-width: 1100px;
  }

  .cases__item-about {
    min-height: 84px;
  }

  .cases__item {
    min-height: 689px;
  }

  .cases__img {
    bottom: -184px;
    right: 0px;
  }

  .footer__logo {
    margin: 65px auto 120px;
  }
}

@media (max-width: 1300px) {
  .title {
    font-size: 42px;
  }

  .logo {
    margin-left: 0px;
    max-width: 160px;
  }

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

  .top__title-wrap {
    margin: 75px auto 0;
    max-width: fit-content;
  }

  .top__title-img {
    top: -25px;
    left: 48px;
  }

  .top__text {
    max-width: 100%;
  }

  .top__list {
    max-width: 100%;
    min-height: 520px;
  }

  .top__img {
    max-width: 1300px;
  }

  .types__list {
    gap: 20px;
  }

  .types__item-icon svg {
    width: 80px;
    height: 80px;
  }

  .types__item-title {
    font-size: 22px;
  }

  .types__item-center {
    padding-top: 0px;
  }

  .plan__img {
    max-width: 510px;
    height: 450px;
  }

  .areas__img {
    width: 180px;
    height: 180px;
  }

  .areas__item {
    height: 220px;
  }

  .areas__item-info {
    padding: 20px 30px;
  }

  .areas__item-title,
  .instruments__subtitle,
  .cases__subtitle {
    margin-bottom: 15px;
    font-size: 28px;
  }

  .instruments__left {
    padding: 60px;
    max-width: 700px;
  }

  .instruments__mobile .instruments__left {
    max-width: 995px;
  }

  .control__wrap {
    padding: 60px;
  }

  .control__wrap {
    flex-direction: column;
  }

  .control__animation-wrap {
    bottom: unset;
    top: -70px;
    left: 100px;
    z-index: 3;
    max-width: 400px;
  }

  .control__animation {
    top: 6px;
    left: 64px;
    max-width: 211px;
  }

  .control__tab-2 {
    margin-bottom: 75px;
  }

  .control__tab-3 {
    margin-bottom: 50px;
  }

  .control__right {
    margin-left: 0;
    max-width: 100%;
  }

  .control__text {
    margin-bottom: 50px;
  }

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

  .cases__wrap {
    padding: 60px 0 20px;
  }

  .cases__title-wrap {
    padding: 0 60px;
  }

  .cases__list {
    padding: 0 60px;
  }

  .cases__total-left {
    padding: 40px;
  }

  .cases__total-right {
    padding: 40px;
  }

  .cases__total-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .cases__total-title {
    font-size: 32px;
  }

  .cases__list {
    margin-bottom: 40px;
  }

  .cases__item-block-number {
    font-size: 28px;
  }

  .cases__total-number {
    font-size: 32px;
  }

  .footer__left {
    padding: 40px 40px 0 40px;
    max-width: 700px;
    gap: 45px;
  }

  .footer__bottom {
    padding: 20px 40px;
    gap: 40px;
  }

  .footer__img {
    left: 40px;
  }

  .footer__right {
    padding: 40px 40px 35px 40px;
    max-width: 620px;
  }

  .footer__links {
    width: 243px;
    max-width: unset;
  }
}

@media (max-width: 1180px) {
  body.noscroll {
    overflow: hidden;
  }

  .title {
    font-size: 36px;
  }

  .header__wrap {
    padding: 0 15px;
    margin: 60px 0 15px;
    gap: 15px;
  }

  .header__logo {
    position: relative;
    z-index: 6;
  }

  .header__btn-wrap {
    margin-left: auto;
  }

  .header__burger-wrap {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-small);
  }

  .header__burger {
    display: block;
    position: relative;
    z-index: 11;
    width: 28px;
    height: 18px;
  }

  .header__burger span {
    position: absolute;
    background-color: var(--secondary);
    left: 0;
    width: 100%;
    top: 8px;
    height: 2px;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before,
  .header__burger:after {
    content: "";
    background-color: var(--secondary);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border-radius: 4px;
    transition: all 0.3s ease 0s;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger.active span {
    transform: scale(0);
  }

  .header__burger.active:before {
    transform: rotate(45deg);
    top: 8px;
  }

  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 8px;
  }

  .header__nav {
    padding: 40px 20px;
    position: fixed;
    z-index: -2;
    top: 130px;
    left: -120%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease 0s;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }

  .nav__list {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .header__nav.active {
    left: 0;
    z-index: 5;
  }

  .submenu {
    display: block;
    position: static;
    border: none;
    border-radius: 0;
    background-color: transparent;
  }

  .nav__item-arrow {
    display: none;
  }

  .submenu ul {
    padding: 5px;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
  }

  .submenu ul li a {
    padding: 5px;
  }

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

  .types__item {
    min-height: 350px;
  }

  .types__item-center {
    order: -1;
    min-height: 350px;
  }

  .plan__img {
    bottom: -150px;
    right: -30px;
  }

  .areas__wrap {
    flex-direction: column;
    gap: 20px;
    min-height: unset;
  }

  .areas__left {
    margin-top: 40px;
    position: static;
    align-self: flex-start;
  }

  .instruments .tab-content__item.active {
    display: block;
  }

  .instruments__img-wrap {
    position: relative;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .instruments__img img {
    display: block;
  }

  .instruments__animation {
    position: absolute;
    top: 25px;
    width: 90%;
    max-width: 659px;
  }

  .instruments__animation video {
    display: block;
  }

  .instruments__left {
    padding-top: 50px;
    max-width: 100%;
  }

  .instruments__mobile .instruments__img-wrap {
    max-width: 390px;
  }

  .instruments__mobile .instruments__animation {
    max-width: 320px;
    top: 37px;
    right: 42px;
  }

  .control__right {
    max-width: 460px;
  }

  .control__text {
    margin-bottom: 20px;
  }

  .control__wrap {
    padding: 40px;
  }

  .cases__wrap {
    padding: 40px 0 20px;
  }

  .cases__item {
    min-height: 610px;
  }

  .cases__title-wrap {
    padding: 0 40px;
  }

  .cases__list {
    padding: 0 40px;
  }

  .cases__list {
    margin-bottom: 30px;
  }

  .cases__item {
    padding: 20px;
  }

  .cases__item-block {
    min-height: 106px;
  }

  .cases__item-block-number {
    font-size: 24px;
  }

  .cases__item-img {
    height: 200px;
  }

  .cases__item-name {
    font-size: 20px;
  }

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

  .cases__item-block-info {
    font-size: 13px;
    line-height: 16px;
  }

  .cases__total-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .cases__text {
    margin-bottom: 40px;
  }

  .reviews__item-top {
    padding: 30px 30px 55px;
  }

  .footer__menu ul {
    margin-bottom: 20px;
    gap: 15px;
  }

  .footer__title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.2;
  }

  .clients__list li {
    min-height: 150px;
  }
}

@media (max-width: 1080px) {
  .cases__item {
    min-height: 580px;
  }

  .reviews__item {
    margin: 0 10px;
  }

  .reviews__list {
    margin: 0 -10px 30px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__left {
    max-width: 100%;
    border-right: none;
  }

  .footer__contacts {
    width: 100%;
  }

  .footer__links {
    max-width: 243px;
    width: 100%;
  }

  .footer .btn-group {
    flex-direction: row;
    gap: 10px;
  }

  .cases__item-block {

    min-height: 90px;
  }
}

@media (max-width: 900px) {
  .plan__img {
    position: static;
    max-width: 400px;
    height: 300px;
  }

  .control__tab-2 {
    margin-bottom: 140px;
    margin-left: 315px;
  }

  .control__tab-1 {
    margin-bottom: 100px;
  }

  .control__tab-3 {
    margin-bottom: 130px;
  }

  .control__right {
    max-width: 100%;
  }

  .tab-pane[data-id="0"] .price__item .price__point {
    width: 100%;
  }

  .clients__list {
    grid-template-columns: repeat(2, 1fr);

  }

  .cases__item {
    min-height: 635px;
  }
}

@media (max-width: 768px) {
  :root {
    --radius-big: 25px;
    --radius-medium: 15px;
    --radius-small: 10px;
  }

  body {
    font-size: 14px;
  }

  .section {
    padding: 30px 0;
  }

  .title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .logo {
    max-width: 145px;
  }

  .types__title-img {
    max-width: 250px;
    height: 10px;
  }

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

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

  .btn,
  .header .btn-secondary {
    font-size: 16px;
    padding: 14px 21px;
    min-height: 50px;
    font-weight: 500;
  }

  .custom-checkbox>label {
    font-size: 14px;
  }

  .prices {
    font-size: 18px;
  }

  .form__info input {
    height: 42px;
  }

  .tab-header {
    flex-wrap: wrap;
  }

  .tab-header__item,
  .tab-btn {
    padding: 10px 14px;
    height: 60px;
    grid-template-columns: 30px auto;
    gap: 5px;
  }

  .tab-header__item svg,
  .tab-btn svg {
    width: 30px;
    height: 30px;
  }

  .arrow-prev,
  .arrow-next {
    width: 40px;
    height: 40px;
  }

  .arrow-prev svg,
  .arrow-next svg {
    width: 40px;
    height: 40px;
  }

  .prices {

    font-size: 14px;
    font-weight: 500;

  }

  .prices__wrap {
    gap: 10px;
  }

  .prices__btn {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    min-height: 32px;

  }

  .instruments__arrow-prev,
  .instruments__arrow-next {
    top: 10px;
  }

  .header__contacts {
    padding: 40px 20px;
    margin: 0 15px;
    position: fixed;
    z-index: -2;
    top: 320px;
    left: -120%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transition: all 0.3s ease 0s;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 20px;
  }

  .header__contacts.active {
    left: 0;
    z-index: 5;
  }

  .header__btn-wrap {
    padding: 40px 20px;
    margin: 0 15px;
    position: fixed;
    z-index: -2;
    top: 500px;
    left: -120%;
    width: 100%;
    height: fit-content;
    background-color: var(--white);
    transition: all 0.3s ease 0s;
    overflow: auto;
    display: flex;
    justify-content: start;
    gap: 20px;
  }

  .header__btn-wrap.active {
    left: 0;
    z-index: 5;
  }

  .header__wrap .btn {
    margin-left: 0;
  }

  .header__user-btn {
    border: 1px solid var(--border);
    width: 50px;
    height: 50px;
  }

  .header__burger-wrap {
    width: 50px;
    height: 50px;
  }

  .header__wrap {
    min-height: 80px;
  }

  .top__title-wrap {
    margin-top: 45px;
  }

  .top__list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 64px);
    gap: 10px;
  }

  .top__title-img {
    top: -24px;
    left: 26px;
  }

  .types__item-center {
    min-height: 250px;
  }

  .types__img {
    height: 210px;
  }

  .plan__wrap {
    padding: 40px;
  }

  .tariff-box__wrap {
    padding: 40px;
  }

  .plan__img {
    max-width: 450px;
    height: 380px;
  }

  .areas__left {
    max-width: 100%;
  }

  .form__subtitle {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .areas__img {
    width: 150px;
    height: 150px;
  }

  .areas__item {
    height: 190px;
  }

  .areas__item:nth-of-type(2) {
    transform: translateY(-40px);
  }

  .areas__item:nth-of-type(3) {
    transform: translateY(-80px);
  }

  .areas__item:nth-of-type(4) {
    transform: translateY(-120px);
  }

  .areas__item:nth-of-type(5) {
    transform: translateY(-160px);
  }

  .areas__item:nth-of-type(6) {
    transform: translateY(-200px);
  }

  .areas__item-icon {
    padding: 5px;
    top: 15px;
    left: 15px;
  }

  .areas__item-icon svg {
    width: 30px;
    height: 30px;
  }

  .areas__item-title,
  .instruments__subtitle {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .areas__item-info {
    padding: 15px 25px;
  }

  .areas__list {
    margin-bottom: -200px;
  }

  .instruments__img-wrap {
    max-width: 100%;
  }

  .instruments__animation {
    max-width: 86%;
    top: 27px;
    right: 7%;
    left: 7%;
  }

  .instruments__title-img {
    max-width: 67.5px;
    height: 15px;
  }

  .instruments__left {
    padding: 30px;
    padding-top: 50px;
  }

  .instruments__mobile .instruments__left {
    padding-top: 30px;
  }

  .control__animation-wrap {
    top: -19px;
    left: 131px;
    max-width: 321px;
  }

  .control__animation {
    top: 6px;
    left: 55px;
    max-width: 166px;
  }

  .control__wrap {
    padding: 30px;
  }

  .more ul {
    gap: 20px;
  }

  .more li {
    min-height: 200px;
  }

  .cases {
    padding-bottom: 135px;
  }

  .cases__wrap {
    padding: 40px 0 20px;
  }

  .cases__title-wrap {
    padding: 0 40px;
  }

  .cases__list {
    padding: 0 40px;
  }

  .cases__slider-wrap {
    margin: 0 -10px;
  }

  .cases__item {
    margin: 0 10px;
  }

  .cases__total-left {
    padding: 30px;
  }

  .cases__total-right {
    padding: 30px;
  }

  .footer__img {
    width: 243px;
    max-width: unset;
  }

  .footer__copyright {
    max-width: 100%;
  }

  .footer__social {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

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

  .footer__email a {
    font-size: 20px;
  }

  .footer__title {
    font-size: 24px;
  }

  .tarif__table-wrap-mobile {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .tarif__table-wrap-mobile .tarif__btns .tarif__price {
    margin-top: 22px;
    margin-bottom: 22px;
  }


  .tarif__table-wrap-mobile .tarif__prices,
  .tarif__table-wrap-mobile .tarif__btns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tarif__table-wrap-mobile .tarif__btns .tarif__btn {
    margin: 0 auto;
  }

  .tarif__table-wrap {
    display: none;
  }

  .tarif__table-wrap-mobile-1,
  .tarif__table-wrap-mobile-2,
  .tarif__table-wrap-mobile-3 {
    border-radius: var(--radius);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
  }

  .tarif-table-1 tr,
  .tarif-table-2 tr,
  .tarif-table-3 tr {
    grid-template-columns: 1fr 180px;
  }

  .tarif__table tr {
    grid-template-columns: 1fr 180px;
  }

  .tarif__table td svg {
    width: 24px;
    height: 24px;
  }

  .tarif__price,
  .tarif__price-without-discount {
    font-size: 18px;
  }

  .tarif__prices,
  .tarif__btns {
    display: none;
  }

  .tab-btn {
    height: 60px;
    max-width: 175px;
    min-width: 175px;
  }

  .tarif__terms {
    display: none;
  }

  .tarif__toggle-switch .custom-radio {
    min-width: 60px;
    width: 50%;
  }

  .tarif__toggle-switch {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .tarif__toggle-switch-bottom {
    max-width: unset;
    min-height: 20px;
  }

  .line {
    display: none;
  }

  .tarif__table-wrap-mobile-1 {
    border-radius: 40px;
    box-shadow: none;
    border: 1px solid #dddddd;
  }

  .tarif .tab-nav {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tarif .tab-btn {
    max-width: 100%;
    min-width: 100%;
  }

  .form__inner {
    max-width: 100%;
  }

  .clients__title {
    margin-bottom: 0;
  }
}

@media (max-width: 650px) {
  .submenu ul {
    flex-direction: column;
  }

  .nav li {
    font-size: 14px;
  }

  .nav__list {
    gap: 15px;
  }

  .submenu ul li a {
    padding: 2px;
  }

  .header__btn-wrap {
    top: 570px;
  }

  .plan__img {
    max-width: 380px;
    height: 300px;
    right: -50px;
  }

  .areas__img {
    width: 110px;
    height: 110px;
  }

  .areas__item {
    height: 160px;
  }

  .areas__item-info {
    padding: 10px 20px;
  }

  .areas__item:nth-of-type(2) {
    transform: translateY(-15px);
  }

  .areas__item:nth-of-type(3) {
    transform: translateY(-30px);
  }

  .areas__item:nth-of-type(4) {
    transform: translateY(-45px);
  }

  .areas__item:nth-of-type(5) {
    transform: translateY(-60px);
  }

  .areas__item:nth-of-type(6) {
    transform: translateY(-75px);
  }

  .areas__item-icon {
    top: 10px;
    left: 10px;
  }

  .areas__item-title {
    margin-bottom: 2px;
    font-size: 20px;
  }

  .areas__item-text {
    font-size: 14px;
  }

  .areas__list {
    margin-bottom: -85px;
  }

  .control__tab-1 {
    margin-bottom: 80px;
  }

  .control__tab-2 {
    margin-bottom: 80px;
    margin-left: 280px;
  }

  .control__tab-3 {
    margin-left: 0px;
  }

  .tarif__table-wrap {
    max-width: 100%;
  }

  .tarif__table {
    max-width: 100%;
  }

  .price__item {
    grid-template-columns: 1fr;
  }

  .cases {
    padding-bottom: 110px;
  }

  .cases__total {
    flex-direction: column;
  }

  .cases__item {
    min-height: 530px;
  }

  .cases__item-about {
    min-height: 64px;
  }

  .cases__img {
    height: 210px;
    bottom: -100px;
  }

  .cases__wrap {
    padding: 20px 0 20px;
  }

  .cases__title-wrap {
    padding: 0 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: start;
    row-gap: 15px;
  }

  .cases__info-wrap {
    order: 2;
  }

  .cases__list {
    padding: 0 20px;
  }

  .cases__total-left {
    padding: 20px;
  }

  .cases__total-right {
    padding: 20px;
  }

  .cases__item-text {
    margin-bottom: 10px;
  }

  .cases__item-blocks {
    margin-bottom: 10px;
  }

  .cases__total-list {
    gap: 15px;
  }

  .cases__title-img {
    top: -25px;
    right: -21px;
    max-width: 32px;
    height: 25px;
  }

  .footer__contact-link {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .footer__email a {
    font-size: 18px;
  }

  .footer__title {
    font-size: 22px;
  }

  .footer__left {
    padding: 30px 30px 0 30px;
    gap: 20px;
  }

  .footer__right {
    padding: 30px 30px 25px 30px;
  }

  .footer__bottom {
    padding: 20px 30px;
    gap: 30px;
  }

  .footer__img {
    left: 30px;
  }

  .footer__img {
    width: 200px;
  }

  .footer__links {
    max-width: 200px;
  }

  .footer__logo {
    margin: 64px auto 116px;
  }

  .footer__img {
    height: 300px;
  }

  .footer__social-link-icon {
    width: 40px;
    height: 40px;
  }

  .footer__social-link-icon svg {
    width: 28px;
    height: 28px;
  }

  .footer__bg-img {
    display: none;
  }
}

@media (max-width: 500px) {
  .title-l {
    font-size: 36px;
  }

  .header__wrap {
    min-height: 65px;
  }

  .header__nav {
    padding: 0px 20px 20px 20px;
  }

  .header__btn-wrap {
    padding: 10px;
  }

  .top__title-img {
    max-width: 36px;
    height: 20px;
    top: -16px;
    left: 25px;
  }

  .top__list {
    min-height: 415px;
  }

  .top__item svg {
    max-width: 30px;
    height: 30px;
  }

  .top__title-wrap {
    margin-top: 10px;
  }

  .types__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .types__item-center {
    grid-column: span 1;
  }

  .types__item-icon {
    margin-bottom: 10px;
  }

  .types__item-icon svg {
    width: 80px;
    height: 80px;
  }

  .types__item {
    padding: 20px;
    min-height: unset;
  }

  .types__item-center {
    min-height: 235px;
  }

  .types__item-title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .plan__img {
    max-width: 300px;
    height: 250px;
  }

  .plan__wrap {
    padding: 30px;
  }

  .plan .btn {
    width: 100%;
  }

  .tariff-box__wrap {
    padding: 30px;
  }

  .tariff-box .btn {
    width: 100%;
  }

  .areas__list {
    margin-bottom: -85px;
  }

  .areas__right .btn {
    width: 100%;
  }

  .areas__img {
    width: 100px;
    height: 100px;
  }

  .areas__item {
    height: 180px;
  }

  .areas__item-img {
    padding: 15px;
  }

  .areas__item-icon svg {
    width: 25px;
    height: 25px;
  }

  .areas__item-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .areas__item-text {
    font-size: 13px;
    line-height: 1.2;
  }

  .form__wrap {
    padding: 20px;
  }

  .instruments .btn-white,
  .instruments .btn-transparent {
    max-width: 100%;
    min-width: 100%;
  }

  .more__img {
    max-width: 80px;
  }

  .more__item-title {
    font-size: 18px;
  }

  .control__animation-wrap {
    top: -19px;
    left: 30px;
    max-width: 300px;
  }

  .control__animation {
    top: 3px;
    left: 48px;
    max-width: 158px;
  }

  .control__tab-1,
  .control__tab-2,
  .control__tab-3 {
    margin: 0;
    margin-bottom: 10px;
  }

  .control__tab-1 {
    margin-top: 270px;
  }

  .more ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .more li {
    min-height: 180px;
  }

  .cases__img {
    bottom: -150px;
  }

  .footer__left {
    flex-direction: column;
  }

  .footer__img {
    bottom: unset;
    top: 40px;
  }

  .footer .btn-group {
    flex-direction: column;
  }

  .footer .btn {
    max-width: 100%;
  }

  .footer__title {
    margin-top: 10px;
  }

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

  .footer__copyright {
    order: 2;
  }

  .tarif-table-1 tr,
  .tarif-table-2 tr,
  .tarif-table-3 tr {
    grid-template-columns: 1fr 120px;
  }

  .tarif__table tr {
    grid-template-columns: 1fr 120px;
  }

  .tarif__table-wrap-mobile .tarif__btns {
    margin-top: 22px;
  }

  .tarif__old .tarif__table-wrap-mobile .tarif__btns {
    margin-top: 0;
  }

  .instruments__animation {
    max-width: 82%;
    top: 32px;
    right: 9%;
    left: 9%;
  }

  .instruments__left .btn-group {
    flex-direction: column;
  }

  .instruments__subtitle {
    font-size: 20px;
    line-height: 1.3;
  }

  .instruments__mobile .instruments__animation {
    max-width: 82%;
    top: 37px;
    right: 9%;
    left: 9%;
  }

  .clients__list li {
    min-height: 110px;
  }
}

@media (max-width: 375px) {
  .top__list {
    min-height: 380px;
  }

  .title {
    font-size: 24px;
  }

  .tarif-table-1 tr,
  .tarif-table-2 tr,
  .tarif-table-3 tr {
    grid-template-columns: 1fr 100px;
  }

  .tarif__table tr {
    grid-template-columns: 1fr 110px;
  }

  .instruments__animation {
    max-width: 84%;
    top: 20px;
    right: 8%;
    left: 8%;
  }
}