/* VARS */

:root {
  --color-main: #2197ac;
  --color-main2: #64bda5;
  --color-dark: #083c45;
  --color-white: #ffffff;
  --color-blue-light: #e6f3f5;
  --color-grey: #808c8e;
  --color-grey-light: #e2e2e2;
}

/* FONTS */

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

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

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

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

/* CSS RESET */

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

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

html,
body {
  position: relative;
  min-width: 320px;
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

label {
  cursor: pointer;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

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

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

address {
  font-style: normal;
}

legend {
  display: block;
}

/* BODY */

body {
  color: var(--color-dark);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
}

body._locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

/* WRAPPER */

.wrapper {
  padding: 0 20px 20px;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/* CONTAINER */

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1150px;
}

/* COMMON */

/* PAGE */

.page-intro {
  padding: 230px 0 40px;
  min-height: 488px;
  background-color: var(--color-main);
  border-radius: 20px;
  color: var(--color-white);
  overflow: hidden;
}

.page-intro.page-intro--light {
  color: var(--color-dark);
  background-color: var(--color-blue-light);
}

.page-intro.page-intro--light .breadcrumbs {
  color: var(--color-dark);
}

.page-intro.page-intro--light .breadcrumbs > span > span::after {
  background: url("../img/icons/sprite.svg#arrow3-dark") center/100% 100% no-repeat;
}

.page-intro.page-intro--light .page-title {
  font-size: 48px;
  line-height: 1.2;
}

.page-intro.page-intro--light .page-title:not(:last-child) {
  margin-bottom: 28px;
}

.page-intro .breadcrumbs {
  color: var(--color-white);
}

.page-intro .breadcrumbs > span > span::after {
  background: url("../img/icons/sprite.svg#arrow3-white") center/100% 100% no-repeat;
}

.page-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  word-break: break-word;
}

.page-title:not(:last-child) {
  margin-bottom: 40px;
}

.page-date {
  font-size: 18px;
  line-height: 1.1;
  color: var(--color-grey);
  text-transform: lowercase;
}

/* SECTION */

.section {
  padding: 128px 0 140px;
}

.section.section--bg {
  border-radius: 12px;
}

.section.section--dark {
  background-color: var(--color-main);
}

.section.section--light {
  background-color: var(--color-blue-light);
}

.section-v2 {
  padding: 80px 0;
}

.section-top {
  margin-bottom: 80px;
}

.section-title {
  width: 60%;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  word-break: break-word;
}

.section-title.section-title--w {
  color: var(--color-white);
}

.section-title > span,
.section-title > b,
.section-title > strong {
  color: var(--color-main);
}

.section-text {
  font-size: 18px;
  line-height: 1.55;
}

.section-text img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.section-text > p:not(:last-child) {
  margin-bottom: 28px;
}

.section-text strong,
.section-text b {
  font-weight: 700;
}

.section-text > ul > li {
  padding-left: 40px;
  position: relative;
}

.section-text > ul > li::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("../img/icons/sprite.svg#check-circle-green") center/contain no-repeat;
}

.section-text > ul > li:not(:last-child) {
  margin-bottom: 20px;
}

/* CONTENT EDITOR */

.content-editor {
  font-size: 18px;
  line-height: 1.55;
}

.content-editor > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

.content-editor h1,
.content-editor h2,
.content-editor h3,
.content-editor h4,
.content-editor h5,
.content-editor h6 {
  padding: 0;
  margin: 0;
  margin-top: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.content-editor h1:not(:last-child),
.content-editor h2:not(:last-child),
.content-editor h3:not(:last-child),
.content-editor h4:not(:last-child),
.content-editor h5:not(:last-child),
.content-editor h6:not(:last-child) {
  margin-bottom: 40px;
}

.content-editor h1 {
  font-size: 44px;
}

.content-editor h2 {
  font-size: 40px;
}

.content-editor h3 {
  font-size: 32px;
}

.content-editor h4 {
  font-size: 24px;
}

.content-editor h5,
.content-editor h6 {
  font-size: 20px;
}

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

.content-editor picture,
.content-editor img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.content-editor picture:not(:last-child),
.content-editor img:not(:last-child) {
  margin-bottom: 40px;
}

.content-editor a {
  color: var(--color-main);
  font-weight: 700;
  text-decoration: underline;
}

.content-editor blockquote {
  padding: 40px;
  background-color: var(--color-blue-light);
  border-radius: 12px;
}

.content-editor blockquote:not(:last-child) {
  margin-bottom: 40px;
}

.content-editor ol,
.content-editor ul {
  max-width: 900px;
}

.content-editor ol:not(:last-child),
.content-editor ul:not(:last-child) {
  margin-bottom: 40px;
}

.content-editor ol > li:not(:last-child),
.content-editor ul > li:not(:last-child) {
  margin-bottom: 20px;
}

.content-editor ol > li > p,
.content-editor ul > li > p {
  margin-top: 16px;
}

.content-editor ol > li > p:not(:last-child),
.content-editor ul > li > p:not(:last-child) {
  margin-bottom: 20px;
}

.content-editor ol > li > ol > li,
.content-editor ol > li > ul > li,
.content-editor ul > li > ol > li,
.content-editor ul > li > ul > li {
  font-size: 16px;
}

.content-editor ol > li > ol > li:not(:last-child),
.content-editor ol > li > ul > li:not(:last-child),
.content-editor ul > li > ol > li:not(:last-child),
.content-editor ul > li > ul > li:not(:last-child) {
  margin-bottom: 18px;
}

.content-editor ol {
  counter-reset: item;
  list-style: none;
}

.content-editor ol > li {
  padding-left: 44px;
  position: relative;
}

.content-editor ol > li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1em;
  font-weight: 700;
}

.content-editor ul {
  list-style: none;
}

.content-editor ul > li {
  position: relative;
  padding-left: 32px;
}

.content-editor ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("../img/icons/sprite.svg#point-green") center/contain no-repeat;
}

.content-editor table {
  width: 100%;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  border-radius: 12px;
  border-spacing: 0;
  border: 1px solid var(--color-main);
}

.content-editor table:not(:last-child) {
  margin-bottom: 40px;
}

.content-editor table tr:first-child th:first-child,
.content-editor table tr:first-child td:first-child {
  border-radius: 12px 0 0 0;
}

.content-editor table tr:first-child th:last-child,
.content-editor table tr:first-child td:last-child {
  border-radius: 0 12px 0 0;
}

.content-editor table tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}

.content-editor table tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

.content-editor table tr:nth-child(odd) {
  background-color: var(--color-blue-light);
}

.content-editor table th,
.content-editor table td {
  padding: 16px 20px;
  word-break: break-word;
}

.content-editor table th:not(:last-child),
.content-editor table td:not(:last-child) {
  border-right: 1px solid var(--color-main);
}

.content-editor table th {
  font-weight: 700;
  border-bottom: 1px solid var(--color-main);
}

.content-editor .content-editor__2cols {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.content-editor .content-editor__2cols:not(:last-child) {
  margin-bottom: 40px;
}

.content-editor .content-editor__2cols > * {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}

.content-editor .content-editor__2cols img {
  max-height: 340px;
}

/* BUTTONS */

.btn {
  padding: 10px 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-height: 64px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--color-main2);
  border: 1px solid var(--color-main2);
  border-radius: 64px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.btn.btn--w {
  color: var(--color-main);
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.btn.btn--tr {
  color: var(--color-main2);
  background-color: transparent;
}

.btn.btn--wtr {
  color: var(--color-white);
  background-color: transparent;
  border-color: var(--color-white);
}

.btn svg {
  margin-right: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.btn > span {
  text-align: left;
}

/* FORMS */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

.form {
  position: relative;
}

.form:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background: url("../img/loading.svg") center/140px 140px no-repeat;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.form._sending::after {
  opacity: 1;
  visibility: visible;
}

.form._sending button[type="submit"] {
  opacity: 0.3;
  pointer-events: none;
}

.form-item {
  position: relative;
}

.form-item:not(:last-child) {
  margin-bottom: 30px;
}

.form-input {
  padding: 0 20px;
  display: block;
  width: 100%;
  height: 63px;
  font-size: 18px;
  line-height: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 12px;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.form-input::-webkit-input-placeholder {
  color: var(--color-grey);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-moz-placeholder {
  color: var(--color-grey);
  -moz-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input:-ms-input-placeholder {
  color: var(--color-grey);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::-ms-input-placeholder {
  color: var(--color-grey);
  -ms-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input::placeholder {
  color: var(--color-grey);
  -webkit-transition: opacity 0.1s ease, visibility 0.1s ease;
  transition: opacity 0.1s ease, visibility 0.1s ease;
}

.form-input:focus::-webkit-input-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-input:focus::-moz-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-input:focus:-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-input:focus::-ms-input-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-input:focus::placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-input.form-input--ta {
  padding: 20px;
  resize: none;
  overflow: auto;
  height: 118px;
}

.form-input._error {
  -webkit-box-shadow: inset 0 0 0 2px red;
  box-shadow: inset 0 0 0 2px red;
}

.form-btn.btn {
  margin-top: 30px;
}

/* CHECKBOX  */

.check-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}

.check-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.check-custom {
  margin-right: 10px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: transparent;
  border: 1px solid var(--color-white);
  border-radius: 4px;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.check-custom:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  z-index: 1;
  background-color: var(--color-white);
  border-radius: 2px;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.check-txt {
  position: relative;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.3;
}

.check-txt a {
  text-decoration: underline;
}

.check-input:checked + .check-custom:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.check-input:focus-visible + .check-custom {
  outline: 0.15em solid black;
}

.check-input:disabled + .check-custom {
  opacity: 0.3;
}

.check-input:disabled:checked + .check-custom {
  opacity: 0.3;
}

.check-input:disabled:checked + .check-custom:after {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.check-input._error + .check-custom {
  -webkit-box-shadow: inset 0 0 0 2px red;
  box-shadow: inset 0 0 0 2px red;
}

/* SPLIDE SLIDER */

.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

.splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.splide__arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-main2);
  border: 1px solid var(--color-main2);
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
  transition: opacity 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.splide__arrow:disabled {
  cursor: default;
  opacity: 0.3;
}

.splide__arrow svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.splide__arrow.splide__arrow--prev {
  margin-right: 30px;
}

.splide__arrow.splide__arrow--prev svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__arrow.splide__arrow--next svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* BREADCRUMBS */

.breadcrumbs {
  margin-bottom: 28px;
  color: var(--color-dark);
}

.breadcrumbs > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs > span > span {
  padding-right: 38px;
  position: relative;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.breadcrumbs > span > span:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("../img/icons/sprite.svg#arrow3-dark") center/100% 100% no-repeat;
}

.breadcrumbs > span > span:last-child {
  padding-right: 0;
}

.breadcrumbs > span > span:last-child:after {
  display: none;
}

/* GRID BODY */

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

/* CARDS SLIDER */

.cards-slider .splide__track {
  padding: 0 1px !important;
}

.cards-slider__bottom {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.cards-slider__bottom:has(.cards-slider__btn.btn) {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* POPUP */

.popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .popup {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }
}

.popup._open {
  opacity: 1;
  visibility: visible;
}

.popup._open .popup-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

html._loaded .popup {
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-body {
  padding: 30px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
}

.popup-content {
  padding: 40px 30px;
  position: relative;
  width: 100%;
  max-width: 450px;
  color: var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.popup-close::after,
.popup-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 1px;
  background-color: var(--color-main);
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.popup-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-title {
  padding-right: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.popup-title:not(:last-child) {
  margin-bottom: 20px;
}

.popup-text {
  color: var(--color-grey);
  font-size: 18px;
  line-height: 1.55;
}

/* TOP-CONTACTS */

.top-contacts {
  margin: 0 auto;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1680px;
}

.top-contacts__inner {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-contacts__socials {
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
}

.top-contacts__socials > a {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: block;
  color: var(--color-main);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.top-contacts__socials > a svg,
.top-contacts__socials > a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.top-contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 120px;
}

.top-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-contacts__item.top-contacts__item--schedule .top-contacts__item-icon svg,
.top-contacts__item.top-contacts__item--schedule img {
  width: 90%;
  height: 90%;
}

.top-contacts__item.top-contacts__item--phone .top-contacts__item-icon svg,
.top-contacts__item.top-contacts__item--phone img {
  width: 75%;
  height: 75%;
}

.top-contacts__item-icon {
  margin-right: 20px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-main2);
}

.top-contacts__item-icon svg,
.top-contacts__item-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
  object-fit: contain;
}

.top-contacts__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 20px;
}

.top-contacts__item-list > li {
  font-size: 18px;
  line-height: 1;
}

.top-contacts__item-list > li > a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.top-contacts__item-list > li > a[href^="tel:"] {
  white-space: nowrap;
}

/* HEADER */

.header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
  z-index: 9;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.header-inner {
  padding: 72px 40px 0;
  -webkit-transition: padding 0.2s ease;
  transition: padding 0.2s ease;
}

.header-body {
  position: relative;
  margin: 0 auto;
  padding: 15px 20px;
  max-width: 1680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 120px;
}

.header-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.header-logo {
  position: relative;
  z-index: 3;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 174px;
  height: 52px;
}

.header-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.header-nav {
  margin: 0 8% 0 40px;
  position: relative;
  z-index: 3;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px 36px;
}

.header-menu > li {
  position: relative;
  z-index: 1;
}

.header-menu > li.menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-menu > li.menu-item-has-children > a::after {
  content: "";
  margin-left: 10px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: url("../img/icons/sprite.svg#arrow1-dark") center/100% 100% no-repeat;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.header-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-menu .sub-menu {
  padding: 20px;
  position: absolute;
  left: 50%;
  top: calc(100% + 40px);
  width: auto;
  min-width: 200px;
  max-width: 300px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(-50%, -10px, 0);
  transform: translate3d(-50%, -10px, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}

.header-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: transparent;
}

.header-menu .sub-menu > li {
  display: block;
}

.header-menu .sub-menu > li:not(:last-child) {
  margin-bottom: 16px;
}

.header-menu .sub-menu > li > a {
  display: inline-block;
  font-size: 16px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-language {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header-language > li {
  position: relative;
  width: 90px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 52px;
  cursor: pointer;
}

.header-language > li::after {
  content: "";
  margin-left: 10px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: url("../img/icons/sprite.svg#arrow1-dark") center/100% 100% no-repeat;
}

.header-language > li > a {
  pointer-events: none;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-language .sub-menu {
  padding: 20px;
  position: absolute;
  left: 50%;
  top: calc(100% + 24px);
  -webkit-transform: translate3d(-50%, -10px, 0);
  transform: translate3d(-50%, -10px, 0);
  width: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
}

.header-language .sub-menu::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: transparent;
}

.header-language .sub-menu > li:not(:last-child) {
  margin-bottom: 16px;
}

.header-language .sub-menu > li > a {
  font-size: 16px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-language .current-lang {
  color: var(--color-main);
}

.header-btn--mobile.btn {
  display: none;
  margin: 32px auto 0;
  padding: 10px 20px;
  width: 100%;
  max-width: 380px;
  min-height: 52px;
  font-size: 16px;
}

.header-controls {
  position: relative;
  z-index: 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-btn.btn {
  min-height: 52px;
  font-size: 16px;
}

.header-burger {
  display: none;
  margin-left: 20px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.header-burger span {
  position: absolute;
  bottom: calc(20% - 1px);
  left: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: var(--color-dark);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-burger span:before,
.header-burger span:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-burger span:before {
  top: -20px;
}

.header-burger span:after {
  top: -10px;
}

.header-burger._active span {
  bottom: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header-burger._active span:before {
  top: 0;
  width: 100%;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header-burger._active span:after {
  width: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* PREFOOTER */

.prefooter > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.prefooter-info {
  margin-right: 100px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--color-white);
}

.prefooter-title.section-title {
  width: 100%;
}

.prefooter-title.section-title:not(:last-child) {
  margin-bottom: 40px;
}

.prefooter-text {
  max-width: 510px;
}

.prefooter-text:not(:last-child) {
  margin-bottom: 40px;
}

.prefooter-contacts {
  margin-top: auto;
}

.prefooter-contacts > .contacts-item {
  color: var(--color-white);
}

.prefooter-contacts > .contacts-item > .contacts-item__body > span > a {
  font-size: 28px;
}

.prefooter-form__wrapper {
  margin-top: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 445px;
}

/* FOOTER */

.footer {
  padding: 140px 0 132px;
}

.footer-logo {
  margin-bottom: 80px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 252px;
  height: 76px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left center;
  object-position: left center;
}

.footer-body {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-contacts {
  margin-right: 20%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 350px;
}

.footer-nav {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav__col:first-child {
  margin-right: 21%;
}

.footer-nav__title {
  margin-bottom: 40px;
  color: var(--color-grey);
  font-size: 16px;
  line-height: 1.25;
}

.footer-nav__menu > li:not(:last-child) {
  margin-bottom: 28px;
}

.footer-nav__menu > li > a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-bottom {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid var(--color-grey-light);
}

.footer-copy {
  margin-right: 40px;
  max-width: 388px;
}

.footer-dev > a {
  color: var(--color-main);
  text-decoration: underline;
}

/* TWO COLS */

.two-cols__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.two-cols__col {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

/* INNER INTRO */

.inner-intro {
  margin-bottom: 20px;
  position: relative;
}

.inner-intro > .container {
  position: relative;
  z-index: 2;
}

.inner-intro__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 44.5%;
  height: 100%;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.inner-intro__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.inner-intro__content {
  padding: 224px 0 132px;
  width: 57%;
}

.inner-intro__text {
  max-width: 288px;
  font-size: 18px;
  line-height: 1.3;
}

.inner-intro__text:not(:last-child) {
  margin-bottom: 40px;
}

/* CONTACTS */

.contacts > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.contacts-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 44%;
  flex: 0 1 44%;
}

.contacts-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contacts-item:not(:last-child) {
  margin-bottom: 72px;
}

.contacts-item__title {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.25;
}

.contacts-item__body > span {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.contacts-item__body > span:not(:last-child) {
  margin-bottom: 10px;
}

.contacts-item__body > span > a {
  line-height: 1;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.contacts-item__body > span > a[href^="mailto:"] {
  word-break: break-word;
}

.contacts-item__body > span > a[href^="tel:"] {
  white-space: nowrap;
}

.contacts-item__body > a {
  color: var(--color-main);
  font-size: 16px;
  line-height: 1.1;
  text-decoration: underline;
}

.contacts-item__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.contacts-item__socials > a {
  position: relative;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 50%;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.contacts-item__socials > a svg,
.contacts-item__socials > a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contacts-form__wrapper {
  padding: 60px 80px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 56%;
  flex: 0 1 56%;
  background-color: var(--color-blue-light);
  border-radius: 12px;
}

.contacts-form__wrapper .check-custom {
  border-color: var(--color-dark);
}

.contacts-form__wrapper .check-custom:after {
  background-color: var(--color-dark);
}

.contacts-form__wrapper .check-txt {
  color: var(--color-dark);
}

.contacts-title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.contacts-text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

/* INFO */

.info {
  margin-bottom: 40px;
}

.info:has(+ .section.section--bg) {
  margin-bottom: 90px;
}

.info-inner {
  padding: 52px 11% 60px;
  background-color: var(--color-main);
  border-radius: 12px;
  color: var(--color-white);
  text-align: center;
}

.info-title {
  margin-bottom: 28px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.13;
  text-transform: uppercase;
}

.info-text.section-text {
  margin: 0 auto 35px;
  max-width: 580px;
  line-height: 1.3;
}

/* INTRO */

.intro {
  position: relative;
}

.intro > .container {
  position: relative;
  z-index: 3;
  min-height: 93vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
}

.intro-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(rgba(33, 150, 171, 0.8)), color-stop(65%, rgba(33, 150, 171, 0)));
  background: linear-gradient(to right, rgba(33, 150, 171, 0.8), rgba(33, 150, 171, 0) 65%);
}

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

.intro-inner {
  padding: 180px 0 88px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.intro-content {
  margin-right: 80px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.intro-pretitle {
  margin-bottom: 22px;
  padding: 15px 20px;
  display: inline-block;
  color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.6);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .intro-pretitle {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.intro-title {
  color: var(--color-white);
  font-size: 90px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-title:not(:last-child) {
  margin-bottom: 88px;
}

.intro-text {
  padding: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 340px;
  color: #085a68;
  font-size: 18px;
  line-height: 1.3;
  border: 2px solid var(--color-white);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.6);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .intro-text {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

/* ABOUT */

.about-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-body:not(:last-child) {
  margin-bottom: 80px;
}

.about-img {
  margin-right: 120px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 49%;
}

.about-img > div {
  padding-bottom: 88%;
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.about-img > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.about-content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* PRINCIPLES */

.principles-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px 30px;
}

.principles-item {
  -ms-grid-column-span: 1;
  grid-column: 1 span;
  padding: 20px 20px 36px;
  min-height: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid var(--color-main);
  border-radius: 12px;
}

.principles-item__icon {
  margin-bottom: 30px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.principles-item__icon img,
.principles-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 62%;
  height: 62%;
  -o-object-fit: contain;
  object-fit: contain;
}

.principles-item__title {
  margin-top: auto;
  color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  word-break: break-word;
}

.principles-item__title:not(:last-child) {
  margin-bottom: 32px;
}

.principles-item__text {
  font-size: 18px;
  line-height: 1.55;
}

.principles-info {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  padding: 56px 40px 40px;
  color: var(--color-white);
  background-color: var(--color-main);
  border-radius: 12px;
}

.principles-info__title {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.principles-info_text {
  margin-bottom: 36px;
  font-size: 18px;
  line-height: 1.3;
}

/* ABOUT DR */

.about-dr__inner {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--color-main);
}

.about-dr__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.about-dr__content-top {
  margin-bottom: 36px;
}

.about-dr__content-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--color-main);
}

.about-dr__content-bottom > span {
  display: block;
  line-height: 1.55;
}

.about-dr__content-bottom > span:first-child {
  font-weight: 700;
}

.about-dr__content-bottom > span:not(:last-child) {
  margin-bottom: 30px;
}

.about-dr__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.about-dr__image > div {
  padding-bottom: 81%;
  position: relative;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
}

.about-dr__image > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

/* SERVICES-HOME */

.services-home__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.services-home__title {
  margin: 0 40px 0 0;
}

.services-home__btn.btn {
  margin-bottom: 14px;
  min-height: 52px;
  font-size: 16px;
}

.services-home__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-home__body > .service-card:first-child {
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}

/* SERVICES */

.services-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-body > .service-card:first-child:has(+ .service-card + .service-card + .service-card),
.services-body > .service-card:nth-child(4):has(+ .service-card + .service-card),
.services-body > .service-card:nth-child(6):has(+ .service-card + .service-card) {
  -ms-grid-row-span: 2;
  grid-row: 2 span;
}

/* SERVICE CARD */

.service-card {
  padding: 100px 20px 40px;
  min-height: 260px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-white);
  border-radius: 12px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
}

.service-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--color-main);
  background-image: url("../img/icons/sprite.svg#arrow2-white");
  background-position: center;
  background-size: 25% 25%;
  background-repeat: no-repeat;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.service-card > span {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  word-break: break-word;
}

/* TEAM */

.team-title.section-title {
  width: 100%;
  max-width: 860px;
}

.team-item__photo {
  margin-bottom: 20px;
  padding-bottom: 114%;
  position: relative;
  width: 100%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.team-item__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.team-item__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
}

.team-item__name:not(:last-child) {
  margin-bottom: 15px;
}

.team-item__text {
  font-size: 18px;
  line-height: 1.55;
}

/* REVIEWS */

.reviews-title.section-title {
  width: 100%;
  max-width: 860px;
}

.reviews-item {
  padding: 30px 20px 20px;
  border: 1px solid var(--color-main);
  border-radius: 12px;
}

.reviews-item::before {
  content: "";
  margin-bottom: 132px;
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  color: var(--color-main);
  background: url("../img/icons/sprite.svg#quotes") center/contain no-repeat;
}

.reviews-item.splide__slide {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.reviews-item__info {
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviews-item__photo {
  margin-right: 10px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.reviews-item__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.reviews-item__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  word-break: break-word;
}

.reviews-item__name:not(:last-child) {
  margin-bottom: 6px;
}

.reviews-item__info-text {
  font-size: 14px;
  line-height: 1.25;
}

.reviews-item__text {
  font-size: 16px;
  line-height: 1.55;
}

/* BLOG-HOME */

.blog-home__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 30px;
}

.blog-home__bottom {
  margin-top: 80px;
}

/* BLOG */

.blog-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 30px;
}

.blog-body > .blog-card:nth-child(8n-3),
.blog-body > .blog-card:nth-child(8n + 2) {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}

.blog-body > .blog-card:nth-child(8n-2),
.blog-body > .blog-card:nth-child(8n + 1) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

/* BLOG CARD */

.blog-card {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.blog-card__img {
  margin-bottom: 36px;
}

.blog-card__img > a {
  position: relative;
  display: block;
  width: 100%;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.blog-card__img > a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.blog-card__date {
  margin-bottom: 18px;
  color: var(--color-grey);
  font-size: 18px;
  line-height: 1.1;
  text-transform: lowercase;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: uppercase;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* BLOG SECTION */

.blog-section.section-v2 {
  padding-bottom: 68px;
}

.blog-article {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-main);
}

/* WHY */

.why-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-item {
  padding: 20px 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 450px;
  border: 1px solid var(--color-main);
  border-radius: 12px;
}

.why-item__icon {
  margin-bottom: 36px;
  position: relative;
  width: 80px;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 50%;
}

.why-item__icon img,
.why-item__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.why-item__title {
  margin: auto 0 30px;
  color: var(--color-main);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-item__text {
  font-size: 18px;
  line-height: 1.55;
}

/* PRICES */

.prices-title {
  padding: 20px 20px 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-grey-light);
}

.prices-title:not(:last-child) {
  margin-bottom: 40px;
}

.prices-list:not(:last-child) {
  margin-bottom: 40px;
}

.prices-list > li {
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px 40px;
  font-size: 18px;
  line-height: 1.25;
  border-radius: 12px;
}

.prices-list > li:nth-child(odd) {
  background-color: var(--color-blue-light);
}

.prices-list > li > div:first-child {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.prices-list > li > div:last-child {
  margin-left: auto;
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.prices-text {
  max-width: 900px;
}

.prices-text:not(:last-child) {
  margin-bottom: 40px;
}

.prices-2cols {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.prices-2cols > * {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}

.prices-2cols:not(:last-child) {
  margin-bottom: 40px;
}

.prices-frame {
  padding: 40px;
  border: 1px solid var(--color-main);
  border-radius: 12px;
}

.prices-frame:not(:last-child) {
  margin-bottom: 40px;
}

/* REVIEW FORM SECTION */

.review-form__inner {
  padding: 60px 40px;
  background-color: var(--color-blue-light);
  border-radius: 12px;
}

.review-form {
  margin: 0 auto;
  max-width: 600px;
}

.review-form .check-custom {
  border-color: var(--color-dark);
}

.review-form .check-custom:after {
  background-color: var(--color-dark);
}

.review-form .check-txt {
  color: var(--color-dark);
}

.review-form__text {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.55;
}

/* RESPONSIVE */

@media screen and (min-width: 1200px) {
  .header._scrolled {
    -webkit-transform: translate3d(0, -105%, 0);
    transform: translate3d(0, -105%, 0);
    pointer-events: none;
  }

  .header._not-top .header-body::after,
  .header._not-top .header-menu .sub-menu,
  .header._not-top .header-language .sub-menu {
    background-color: rgb(255, 255, 255);
  }

  .header._not-top .header-inner {
    padding: 20px 40px 0;
  }

  .header-menu .sub-menu {
    display: block;
  }

  .header-language > li:hover > a {
    color: var(--color-main);
  }

  .header-language > li:hover .sub-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (min-width: 1200px) and (pointer: fine) {
  .header-menu > li.menu-item-has-children:hover {
    z-index: 2;
  }

  .header-menu > li.menu-item-has-children:hover > a::after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .header-menu > li.menu-item-has-children:hover > .sub-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media screen and (max-width: 1640px) {
  .header-logo {
    width: 140px;
    height: 44px;
  }

  .header-nav {
    margin: 0 40px;
  }

  .header-menu > li > a,
  .header-menu .sub-menu > li > a,
  .header-language > li > a,
  .header-language .sub-menu > li > a {
    font-size: 14px;
  }

  .header-language > li {
    width: 76px;
    height: 48px;
  }

  .header-btn.btn {
    font-size: 14px;
    min-height: 48px;
  }

  .inner-intro__img {
    width: 42%;
  }

  .inner-intro__content {
    padding: 200px 0 96px;
  }

  .intro-title {
    font-size: 76px;
  }

  .intro-title:not(:last-child) {
    margin-bottom: 72px;
  }
}

@media screen and (max-width: 1439.98px) {
  .wrapper {
    padding: 0 15px 15px;
  }

  .page-intro {
    padding: 180px 0 80px;
    min-height: unset;
  }

  .page-title {
    font-size: 60px;
  }

  .section {
    padding: 112px 0;
  }

  .section-top {
    margin-bottom: 60px;
  }

  .section-title {
    width: 80%;
  }

  .section-title {
    font-size: 52px;
  }

  .top-contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px 60px;
  }

  .top-contacts__item-icon {
    margin-right: 12px;
  }

  .top-contacts__item-list {
    gap: 5px 16px;
  }

  .top-contacts__item-list > li {
    font-size: 16px;
  }

  .header-inner {
    padding: 64px 25px 0;
  }

  .header-nav {
    margin: 0 30px;
  }

  .header-menu {
    margin-right: 24px;
    gap: 6px 24px;
  }

  .header-language > li {
    width: 76px;
  }

  .header-btn.btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .footer {
    padding: 112px 0 88px;
  }

  .contacts.section-v2:last-child {
    padding-bottom: 40px;
  }

  .intro-title {
    font-size: 68px;
  }

  .intro-title:not(:last-child) {
    margin-bottom: 60px;
  }

  .about-top {
    margin-bottom: 32px;
  }

  .services-home__btn.btn {
    margin-bottom: 8px;
  }

  .reviews-item::before {
    margin-bottom: 80px;
  }

  .blog-section.section-v2 {
    padding-bottom: 32px;
  }

  .why-item {
    min-height: 420px;
  }
}

@media screen and (max-width: 1199.98px) {
  .wrapper {
    padding: 60px 15px 15px;
  }

  .page-intro {
    padding: 140px 0 60px;
  }

  .section-v2 {
    padding: 64px 0;
  }

  .grid-body {
    gap: 40px 20px;
  }

  .top-contacts {
    max-height: 200px;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
    background-color: #f5f5f5;
  }

  .top-contacts:has(+ .header._not-top) {
    max-height: 0;
  }

  .top-contacts__socials {
    margin-right: 28px;
    gap: 10px;
  }

  .top-contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px 28px;
  }

  .top-contacts__item-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }

  .top-contacts__item-list {
    gap: 5px 16px;
  }

  .top-contacts__item-list > li {
    font-size: 14px;
  }

  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    width: 100%;
    z-index: 9;
  }

  .header {
    position: static;
  }

  .header-inner {
    padding: 0;
  }

  .header-body {
    border-radius: 0;
  }

  .header-body::after {
    width: calc(100% + 20px);
    background-color: rgb(255, 255, 255);
  }

  .header-logo {
    margin-right: 20px;
  }

  .header-burger {
    display: block;
  }

  .header-nav {
    margin: 0;
    padding: 160px 20px 80px;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transform: translate3d(0, -105%, 0);
    transform: translate3d(0, -105%, 0);
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow-y: auto;
    background-color: var(--color-white);
    will-change: transform;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
    transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  }

  @supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .header-nav {
      background-color: rgba(255, 255, 255, 0.7);
      -webkit-backdrop-filter: blur(15px);
      backdrop-filter: blur(15px);
    }
  }

  .header-nav._active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .header-menu {
    margin: 0 0 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }

  .header-menu > li.menu-item-has-children {
    display: block;
    text-align: center;
    cursor: pointer;
  }

  .header-menu > li.menu-item-has-children._active > a::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
  }

  .header-menu > li.menu-item-has-children > a {
    margin-right: 44px;
    position: relative;
    display: inline-block;
  }

  .header-menu > li.menu-item-has-children > a::after {
    margin-left: 0;
    position: absolute;
    top: 50%;
    left: calc(100% + 10px);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: url("../img/icons/sprite.svg#arrow1-dark") center/60% 60% no-repeat;
    pointer-events: none;
  }

  .header-menu > li > a {
    font-size: 24px;
  }

  .header-menu > li .sub-menu {
    cursor: default;
    padding: 24px 0 12px;
    position: relative;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    min-width: unset;
    max-width: unset;
    text-align: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header-menu > li .sub-menu::before {
    display: none;
  }

  .header-menu > li .sub-menu > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .header-menu > li .sub-menu > li > a {
    font-size: 18px;
  }

  .header-language > li {
    width: auto;
    height: auto;
    background-color: transparent;
  }

  .header-language > li::after,
  .header-language > li > a {
    display: none;
  }

  .header-language .sub-menu {
    margin: 0 auto;
    padding: 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: var(--color-white);
  }

  .header-language .sub-menu::before {
    display: none;
  }

  .header-language .sub-menu > li:not(:last-child) {
    margin: 0 28px 0 0;
  }

  .header-language .sub-menu > li > a {
    font-size: 20px;
  }

  .prefooter-info {
    margin-right: 60px;
  }

  .prefooter-form__wrapper {
    width: 400px;
  }

  .prefooter-form__wrapper .form-btn.btn {
    width: 100%;
  }

  .footer-contacts {
    margin-right: 12%;
  }

  .footer-nav__col:first-child {
    margin-right: 15%;
  }

  .inner-intro__img {
    width: 55%;
    border-radius: 0 20px 20px 0;
  }

  .inner-intro__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  }

  .inner-intro__content {
    padding: 148px 0 84px;
    width: 64%;
  }

  .contacts-form__wrapper {
    padding: 52px;
  }

  .info {
    margin-bottom: 20px;
  }

  .intro > .container {
    min-height: 640px;
  }

  .intro-inner {
    padding: 140px 0 88px;
  }

  .about-img {
    margin-right: 60px;
    width: 40%;
  }

  .principles-body {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }

  .principles-item {
    min-height: 280px;
  }

  .principles-info {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .services-home__body {
    gap: 20px;
  }

  .services-body {
    gap: 20px;
  }

  .blog-home__body {
    gap: 40px 20px;
  }

  .blog-body {
    gap: 40px 20px;
  }

  .why-body {
    gap: 20px;
  }
}

@media screen and (max-width: 991.98px) {
  body {
    font-size: 16px;
  }

  .wrapper {
    padding: 60px 0 0;
  }

  .page-intro {
    border-radius: 0;
  }

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

  .page-date {
    font-size: 16px;
  }

  .section {
    padding: 88px 0;
  }

  .section.section--bg {
    border-radius: 0;
  }

  .section-top {
    margin-bottom: 44px;
  }

  .section-title {
    font-size: 44px;
  }

  .section-text {
    font-size: 16px;
  }

  .section-text > ul > li {
    padding-left: 32px;
  }

  .section-text > ul > li::before {
    width: 20px;
    height: 20px;
  }

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

  .content-editor h1 {
    font-size: 40px;
  }

  .content-editor h2 {
    font-size: 36px;
  }

  .content-editor h3 {
    font-size: 28px;
  }

  .content-editor h4 {
    font-size: 24px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 18px;
  }

  .btn {
    padding: 10px 20px;
    min-height: 52px;
    font-size: 16px;
  }

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

  .form-input {
    padding: 0 16px;
    font-size: 16px;
    height: 56px;
  }

  .form-input.form-input--ta {
    padding: 16px;
  }

  .splide__arrow {
    width: 52px;
    height: 52px;
  }

  .splide__arrow.splide__arrow--prev {
    margin-right: 20px;
  }

  .grid-body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .cards-slider__bottom {
    margin-top: 60px;
  }

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

  .prefooter > .container {
    display: block;
  }

  .prefooter-info {
    margin: 0 0 40px;
    text-align: center;
  }

  .prefooter-text {
    margin: 0 auto;
  }

  .prefooter-form__wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
  }

  .footer {
    padding: 88px 0 56px;
  }

  .footer-logo {
    margin: 0 auto 52px;
  }

  .footer-logo img {
    -o-object-position: center;
    object-position: center;
  }

  .footer-body {
    display: block;
  }

  .footer-contacts {
    margin: 0 0 68px;
    width: 100%;
    text-align: center;
  }

  .footer-contacts .contacts-item__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .footer-nav__col {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
  }

  .footer-nav__col:first-child {
    margin: 0;
  }

  .footer-nav__title {
    margin-bottom: 28px;
  }

  .footer-nav__menu > li:not(:last-child) {
    margin-bottom: 24px;
  }

  .inner-intro {
    margin-bottom: 0;
  }

  .inner-intro__img {
    border-radius: 0;
  }

  .contacts.section-v2:last-child {
    padding-bottom: 20px;
  }

  .contacts > .container {
    display: block;
  }

  .contacts-info {
    margin: 0 0 48px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 44px 30px;
  }

  .contacts-info .contacts-item:not(:last-child) {
    margin-bottom: 0;
  }

  .contacts-item:not(:last-child) {
    margin-bottom: 44px;
  }

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

  .info:has(+ .section.section--bg) {
    margin-bottom: 68px;
  }

  .info-title {
    font-size: 36px;
  }

  .intro-bg {
    border-radius: 0;
  }

  .intro-content {
    margin-right: 48px;
  }

  .intro-title {
    font-size: 62px;
  }

  .intro-text {
    padding: 20px;
    width: 288px;
    font-size: 16px;
    line-height: 1.55;
  }

  .about-body:not(:last-child) {
    margin-bottom: 62px;
  }

  .about-img {
    margin-right: 40px;
  }

  .principles-body {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .principles-item {
    padding: 20px 20px 24px;
    min-height: unset;
  }

  .principles-item__icon {
    margin-bottom: 24px;
  }

  .principles-item__title:not(:last-child) {
    margin-bottom: 20px;
  }

  .principles-item__text {
    font-size: 16px;
  }

  .principles-info {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .principles-info_text {
    font-size: 16px;
  }

  .services-home__top {
    display: block;
  }

  .services-home__title {
    margin: 0;
  }

  .services-home__btn.btn {
    margin: 20px 0 0;
  }

  .service-card {
    padding: 88px 15px 24px;
    min-height: 224px;
  }

  .service-card::before {
    top: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
  }

  .service-card > span {
    font-size: 20px;
  }

  .team-item__name:not(:last-child) {
    margin-bottom: 12px;
  }

  .team-item__text {
    font-size: 16px;
  }

  .blog-body > .blog-card:nth-child(8n-3),
  .blog-body > .blog-card:nth-child(8n + 2),
  .blog-body > .blog-card:nth-child(8n-2),
  .blog-body > .blog-card:nth-child(8n + 1) {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .blog-card__img {
    margin-bottom: 24px;
  }

  .blog-card__img > a {
    height: 300px;
  }

  .blog-card__date,
  .blog-card__title {
    font-size: 16px;
  }

  .blog-home__bottom {
    margin-top: 62px;
  }

  .why-body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .why-item {
    padding: 20px 20px 24px;
    min-height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .why-item:nth-child(3n) {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .why-item__icon {
    margin-bottom: 24px;
  }

  .why-item__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0 0 16px;
    font-size: 20px;
  }

  .why-item__text {
    font-size: 16px;
  }

  .prices-list > li {
    padding: 20px;
    font-size: 16px;
  }

  .prices-title {
    padding: 20px 20px 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .section-title {
    width: 100%;
  }

  .content-editor blockquote {
    padding: 20px;
  }

  .breadcrumbs > span {
    gap: 6px 12px;
  }

  .breadcrumbs > span > span {
    padding-right: 24px;
    font-size: 14px;
  }

  .breadcrumbs > span > span:after {
    top: 50%;
    width: 8px;
    height: 8px;
  }

  .top-contacts__inner {
    padding: 7px 15px 9px;
  }

  .top-contacts__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 5px 20px;
  }

  .top-contacts__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .top-contacts__item.top-contacts__item--phone {
    margin-left: auto;
  }

  .top-contacts__item-list {
    padding-top: 3px;
    display: block;
  }

  .top-contacts__item-list > li:not(:last-child) {
    margin-bottom: 10px;
  }

  .prefooter-title.section-title:not(:last-child) {
    margin-bottom: 32px;
  }

  .prefooter-contacts > .contacts-item > .contacts-item__body > span > a {
    font-size: 24px;
  }

  .footer-nav {
    gap: 20px;
  }

  .footer-nav__col {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .footer-nav__title {
    margin-bottom: 24px;
  }

  .footer-nav__menu > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .footer-nav__menu > li > a {
    font-size: 14px;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-copy {
    margin: 0 auto 20px;
  }

  .two-cols__body {
    display: block;
  }

  .two-cols__col:first-child {
    margin-bottom: 28px;
  }

  .inner-intro__content {
    width: 88%;
  }

  .inner-intro__img {
    right: -28%;
    width: 80%;
  }

  .contacts-info {
    margin: 0 0 48px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }

  .contacts-item__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .info {
    margin: 0;
  }

  .info-inner {
    padding: 40px 40px 48px;
  }

  .intro > .container {
    min-height: unset;
  }

  .intro-bg::after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(33, 150, 171, 0.8)), color-stop(85%, rgba(33, 150, 171, 0)));
    background: linear-gradient(to right, rgba(33, 150, 171, 0.8), rgba(33, 150, 171, 0) 85%);
  }

  .intro-bg img {
    -o-object-position: 48% center;
    object-position: 48% center;
  }

  .intro-inner {
    padding: 140px 0 68px;
    display: block;
  }

  .intro-content {
    margin: 0 0 60px 0;
    width: 75%;
  }

  .intro-pretitle {
    padding: 12px 20px;
    font-size: 16px;
  }

  .intro-title {
    font-size: 52px;
    word-break: break-word;
  }

  .intro-title:not(:last-child) {
    margin-bottom: 48px;
  }

  .intro-text {
    width: 100%;
  }

  .about-top {
    margin-bottom: 32px;
  }

  .about-body {
    display: block;
  }

  .about-body:not(:last-child) {
    margin-bottom: 48px;
  }

  .about-img {
    margin-bottom: 32px;
    width: 100%;
  }

  .about-dr__inner {
    padding-bottom: 28px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-dr__content,
  .about-dr__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .about-dr__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .about-dr__image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .about-dr__content-bottom > span:not(:last-child) {
    margin-bottom: 20px;
  }

  .services-home__body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .services-body {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .services-body > .service-card:nth-child(4):has(+ .service-card + .service-card),
  .services-body > .service-card:nth-child(6):has(+ .service-card + .service-card) {
    -ms-grid-row-span: 1;
    grid-row: 1 span;
  }

  .service-card {
    min-height: 200px;
  }

  .reviews-item::before {
    margin-bottom: 40px;
  }

  .reviews-item__info {
    margin-bottom: 24px;
  }

  .blog-card__img > a {
    height: 280px;
  }

  .blog-section.section-v2 {
    padding-bottom: 20px;
  }

  .prices-frame {
    padding: 20px;
  }
}

@media screen and (max-width: 640px) {
  .content-editor .content-editor__2cols {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .top-contacts__socials {
    display: none;
  }

  .top-contacts__content {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .prices-list > li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .prices-2cols {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

@media screen and (max-width: 575.98px) {
  .wrapper {
    padding: 40px 0 0;
  }

  .page-intro {
    padding: 120px 0 48px;
  }

  .page-intro.page-intro--light .page-title {
    font-size: 32px;
  }

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

  .section {
    padding: 64px 0;
  }

  .section-v2 {
    padding: 52px 0;
  }

  .section-top {
    margin-bottom: 32px;
  }

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

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

  .section-text > ul > li:not(:last-child) {
    margin-bottom: 16px;
  }

  .content-editor h1,
  .content-editor h2,
  .content-editor h3,
  .content-editor h4,
  .content-editor h5,
  .content-editor h6 {
    margin-top: 40px;
  }

  .content-editor h1:not(:last-child),
  .content-editor h2:not(:last-child),
  .content-editor h3:not(:last-child),
  .content-editor h4:not(:last-child),
  .content-editor h5:not(:last-child),
  .content-editor h6:not(:last-child) {
    margin-bottom: 20px;
  }

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

  .content-editor picture:not(:last-child),
  .content-editor img:not(:last-child),
  .content-editor blockquote:not(:last-child),
  .content-editor ol:not(:last-child),
  .content-editor ul:not(:last-child),
  .content-editor table:not(:last-child),
  .content-editor .content-editor__2cols:not(:last-child) {
    margin-bottom: 28px;
  }

  .content-editor h1 {
    font-size: 32px;
  }

  .content-editor h2 {
    font-size: 28px;
  }

  .content-editor h3 {
    font-size: 24px;
  }

  .content-editor h4 {
    font-size: 20px;
  }

  .content-editor h5,
  .content-editor h6 {
    font-size: 16px;
  }

  .content-editor ol > li:not(:last-child),
  .content-editor ul > li:not(:last-child) {
    margin-bottom: 16px;
  }

  .content-editor ol > li > p,
  .content-editor ul > li > p {
    margin-top: 12px;
  }

  .content-editor ol > li > p:not(:last-child),
  .content-editor ul > li > p:not(:last-child) {
    margin-bottom: 16px;
  }

  .content-editor ol > li > ol > li,
  .content-editor ol > li > ul > li,
  .content-editor ul > li > ol > li,
  .content-editor ul > li > ul > li {
    font-size: 14px;
  }

  .content-editor ol > li > ol > li:not(:last-child),
  .content-editor ol > li > ul > li:not(:last-child),
  .content-editor ul > li > ol > li:not(:last-child),
  .content-editor ul > li > ul > li:not(:last-child) {
    margin-bottom: 12px;
  }

  .content-editor ol > li {
    padding-left: 32px;
  }

  .content-editor ul > li {
    padding-left: 24px;
  }

  .content-editor table {
    font-size: 14px;
  }

  .content-editor table th,
  .content-editor table td {
    padding: 12px;
  }

  .btn {
    min-height: 48px;
    font-size: 14px;
  }

  .splide__arrow {
    width: 44px;
    height: 44px;
  }

  .grid-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px 20px;
  }

  .cards-slider__bottom {
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cards-slider__btn.btn {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .popup-content {
    padding: 40px 20px;
  }

  .popup-close {
    top: 4px;
    right: 4px;
  }

  .popup-title {
    padding-right: 36px;
    font-size: 24px;
  }

  .popup-text {
    font-size: 16px;
  }

  .top-contacts__item-icon {
    width: 18px;
    height: 18px;
  }

  .top-contacts__item-list {
    padding-top: 3px;
  }

  .top-contacts__item-list > li {
    font-size: 13px;
  }

  .header-logo {
    width: 120px;
    height: 40px;
  }

  .header-nav {
    padding: 128px 20px 60px;
  }

  .header-menu {
    margin: 0 0 40px;
    gap: 28px;
  }

  .header-menu li.menu-item-has-children > a {
    margin-right: 40px;
  }

  .header-menu li.menu-item-has-children > a::after {
    width: 28px;
    height: 28px;
  }

  .header-menu li > a {
    font-size: 20px;
  }

  .header-menu li .sub-menu > li > a {
    font-size: 16px;
  }

  .header-language .sub-menu > li > a {
    font-size: 18px;
  }

  .header-btn--mobile.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-btn.btn {
    padding: 0;
    width: 40px;
    height: 40px;
    min-height: unset;
  }

  .header-btn.btn svg {
    margin: 0;
    width: 16px;
    height: 16px;
  }

  .header-btn.btn > span {
    display: none;
  }

  .header-burger {
    margin-left: 15px;
    width: 32px;
  }

  .footer {
    padding: 64px 0 40px;
  }

  .footer-logo {
    width: 200px;
    height: 60px;
  }

  .footer-copy,
  .footer-dev {
    font-size: 14px;
  }

  .two-cols__col:first-child {
    margin-bottom: 20px;
  }

  .inner-intro__content {
    padding: 120px 0 60px;
    width: 100%;
  }

  .inner-intro__img::after {
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.2)));
    background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.2));
  }

  .inner-intro__text {
    font-size: 16px;
  }

  .contacts.section-v2:last-child {
    padding-bottom: 0px;
  }

  .contacts-item:not(:last-child) {
    margin-bottom: 40px;
  }

  .contacts-item__body > span {
    font-size: 20px;
  }

  .contacts-form__wrapper {
    padding: 40px 20px 32px;
  }

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

  .info:has(+ .section.section--bg) {
    margin-bottom: 44px;
  }

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

  .info-inner {
    padding: 40px 20px 32px;
  }

  .intro-bg::after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(33, 150, 171, 0.8)), color-stop(90%, rgba(33, 150, 171, 0.3)));
    background: linear-gradient(to right, rgba(33, 150, 171, 0.8), rgba(33, 150, 171, 0.3) 90%);
  }

  .intro-bg img {
    -o-object-position: 55% center;
    object-position: 55% center;
  }

  .intro-content {
    width: 90%;
  }

  .intro-pretitle {
    font-size: 14px;
  }

  .intro-title {
    font-size: 40px;
  }

  .intro-btn.btn svg {
    display: none;
  }

  .principles-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .principles-info {
    padding: 40px 20px 28px;
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .services-home__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .services-home__btn.btn {
    min-height: 48px;
    font-size: 14px;
  }

  .services-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }

  .reviews-item__photo {
    width: 52px;
    height: 52px;
  }

  .reviews-item__name:not(:last-child) {
    margin-bottom: 3px;
  }

  .blog-home__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .blog-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .blog-body > .blog-card:nth-child(8n-3),
  .blog-body > .blog-card:nth-child(8n + 2),
  .blog-body > .blog-card:nth-child(8n-2),
  .blog-body > .blog-card:nth-child(8n + 1) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .blog-card {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .blog-card__img > a {
    height: 240px;
  }

  .blog-card__date {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .blog-home__bottom {
    margin-top: 48px;
  }

  .why-body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 20px 20px 24px;
    min-height: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .why-item:nth-child(3n) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .prices-list > li {
    padding: 16px 10px;
    gap: 10px 40px;
  }

  .prices-title {
    padding: 10px 10px 20px;
    font-size: 20px;
  }

  .prices-title:not(:last-child) {
    margin-bottom: 28px;
  }

  .prices-text:not(:last-child) {
    margin-bottom: 28px;
  }

  .review-form__inner {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 350px) {
  .container {
    padding: 0 15px;
  }

  .page-intro.page-intro--light .page-title {
    font-size: 28px;
  }

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

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

  .top-contacts__inner {
    padding: 7px 10px 9px;
  }

  .top-contacts__item-icon {
    margin-right: 5px;
  }

  .top-contacts__item-list {
    padding-top: 4px;
  }

  .top-contacts__item-list > li {
    font-size: 12px;
  }

  .top-contacts__item-list > li:not(:last-child) {
    margin-bottom: 8px;
  }
}

@media (pointer: fine) {
  .content-editor a:hover {
    text-decoration: none;
  }

  .btn:hover {
    color: var(--color-main2);
    background-color: transparent;
  }

  .btn.btn--w:hover {
    color: var(--color-white);
    background-color: transparent;
  }

  .btn.btn--tr:hover {
    color: var(--color-white);
    background-color: var(--color-main2);
  }

  .btn.btn--wtr:hover {
    color: var(--color-main);
    background-color: var(--color-white);
  }

  .check-txt a:hover {
    text-decoration: none;
  }

  .splide__arrow:hover:not(:disabled) {
    color: var(--color-white);
    background-color: var(--color-main2);
  }

  .breadcrumbs > span > span > a:hover {
    text-decoration: underline;
  }

  .popup-close:hover::after,
  .popup-close:hover::before {
    background-color: red;
  }

  .top-contacts__socials > a:hover {
    color: var(--color-main2);
  }

  .top-contacts__item-list > li > a:hover {
    color: var(--color-main2);
  }

  .header-menu > li > a:hover {
    color: var(--color-main);
  }

  .header-menu .sub-menu > li > a:hover {
    color: var(--color-main);
  }

  .header-language .sub-menu > li > a:hover {
    color: var(--color-main);
  }

  .header-burger:hover span {
    background-color: var(--color-main2);
  }

  .header-burger:hover span::before,
  .header-burger:hover span:after {
    background-color: var(--color-main2);
  }

  .prefooter-contacts > .contacts-item > .contacts-item__body > span > a:hover {
    color: var(--color-white);
    text-decoration: underline;
  }

  .footer-nav__menu > li > a:hover {
    color: var(--color-main);
  }

  .footer-dev > a:hover {
    text-decoration: none;
  }

  .contacts-item__body > span > a:hover {
    color: var(--color-main);
  }

  .contacts-item__body > a:hover {
    text-decoration: none;
  }

  .contacts-item__socials > a:hover {
    opacity: 0.8;
  }

  .service-card:hover {
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
    color: var(--color-main);
    background-color: var(--color-white);
    border-color: var(--color-main);
  }

  .service-card:hover::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .blog-card__img > a:hover {
    opacity: 0.8;
  }

  .blog-card__title:hover {
    color: var(--color-main);
  }
}
