@charset "UTF-8";

/* 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 {
  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;
}

:root {
  --container-width: 1504px;
}

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

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

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

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

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

:root {
  --coefficient: 0.3333;
  --device-width: 1920;
  --mobile-coefficient: 1;
  --design-width: 1920;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #F8F8F8;
  font-variant-numeric: lining-nums;
  font-family: "Montserrat";
  font-weight: 500;
  color: #212121;
}

main {
  margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

section {
  margin-bottom: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
}

img {
  pointer-events: none;
}

.container {
  max-width: var(--container-width);
  width: 78.33vw;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

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

.grid {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
}

body::-webkit-scrollbar {
  width: 6px;
  height: 200px;
  /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
  /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
  background-color: #034389;
  border-radius: 5px;
  /* закругления плашки */
}

.btn {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  height: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  background-color: #FFFFFF;
  border: 1px solid #034389;
  line-height: 119%;
  font-weight: 500;
  text-transform: uppercase;
  color: #034389;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.btn.btn-act {
  background-color: #034389;
  color: #FFFFFF;
}

.btn:active {
  background-color: #02366E;
  color: #FFFFFF;
}

.btn-arrow {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  cursor: pointer;
}

.btn-arrow rect,
.btn-arrow path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn-arrow:active rect {
  fill: #034389;
  stroke: #FFFFFF;
}

.btn-arrow:active path {
  stroke: #FFFFFF;
}

article:has(.btn-arrow):active .btn-arrow rect {
  fill: #034389;
  stroke: #FFFFFF;
}

article:has(.btn-arrow):active .btn-arrow path {
  stroke: #FFFFFF;
}

h1 {
  font-size: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #02366E;
  font-weight: 800;
}

h2.section-header {
  text-align: center;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

h2.section-header.act {
  color: #034389;
}

.section-block {
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  padding: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
}

.hero-block {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.page-header {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.page-header__inner {
  position: relative;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  padding: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.page-header__inner::before {
  content: "";
  background: url(../images/components/page-header-bg-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(303px * var(--coefficient), 303 * 100vw / var(--design-width) * var(--mobile-coefficient), 303px * var(--mobile-coefficient));
  height: clamp(149px * var(--coefficient), 149 * 100vw / var(--design-width) * var(--mobile-coefficient), 149px * var(--mobile-coefficient));
}

.page-header__inner::after {
  content: "";
  background: url(../images/components/page-header-bg-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: clamp(303px * var(--coefficient), 303 * 100vw / var(--design-width) * var(--mobile-coefficient), 303px * var(--mobile-coefficient));
  height: clamp(149px * var(--coefficient), 149 * 100vw / var(--design-width) * var(--mobile-coefficient), 149px * var(--mobile-coefficient));
}

.page-header .breadcrumbs {
  text-align: center;
}

.page-header h1 {
  text-align: center;
}

.breadcrumbs {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  line-height: 119%;
}

.breadcrumbs a {
  color: #212121;
  position: relative;
}

.breadcrumbs a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #212121;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrumbs a:active::after {
  width: 100%;
}

.breadcrumbs span {
  font-weight: 600;
  color: #034389;
}

.input {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(6px * var(--coefficient), 6 * 100vw / var(--design-width) * var(--mobile-coefficient), 6px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.4);
}

.input svg {
  width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.input input {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  color: #FFFFFF;
  width: 100%;
}

.input input::placeholder {
  color: #FFFFFF;
  font-weight: 500;
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  opacity: 0.7;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.input input:focus::placeholder {
  opacity: 0;
}

.textarea {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: clamp(6px * var(--coefficient), 6 * 100vw / var(--design-width) * var(--mobile-coefficient), 6px * var(--mobile-coefficient));
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  height: clamp(116px * var(--coefficient), 116 * 100vw / var(--design-width) * var(--mobile-coefficient), 116px * var(--mobile-coefficient));
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.4);
}

.textarea svg {
  width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.textarea textarea {
  width: 100%;
  height: 100%;
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  color: #FFFFFF;
  outline: none;
  resize: none;
}

.textarea textarea::placeholder {
  color: #FFFFFF;
  font-weight: 500;
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  opacity: 0.7;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.textarea textarea:focus {
  outline: none;
  resize: none;
}

.textarea textarea:focus::placeholder {
  opacity: 0;
}

.form-inputs {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.form-inputs-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.form-inputs-row:not(:last-child) {
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.form-inputs-row .input {
  flex: 1;
}

.form-inputs-row .form-accepts {
  flex: 1;
}

.form-inputs-row:has(.form-accepts) {
  align-items: flex-start;
}

.search-input {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(6px * var(--coefficient), 6 * 100vw / var(--design-width) * var(--mobile-coefficient), 6px * var(--mobile-coefficient));
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  border: 1px solid rgba(33, 33, 33, 0.2);
  background: rgba(3, 67, 137, 0.1);
}

.search-input.white {
  background: #f2f2f7;
}

.search-input svg {
  width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  flex: none;
}

.search-input input {
  width: 100%;
  color: #034389;
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
}

.search-input input::placeholder {
  color: #034389;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.search-input input:focus::placeholder {
  opacity: 0;
}

/* ========================== Стилизация checkbox ==================== */

.check-label {
  cursor: pointer;
}

.check-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.fakecheck {
  width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border: 2px solid #FFFFFF;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}

.fakecheck svg polyline {
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  transition: all 0.3s ease 0s;
}

.fakecheck.checked svg polyline {
  stroke-dashoffset: 0;
}

.fakecheck.checked {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}

.fakecheck.checked svg polyline {
  stroke-dashoffset: 0;
}

.form__policy {
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  justify-content: flex-start;
}

.form__policy p {
  font-size: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  color: #FFFFFF;
  font-weight: 500;
}

.form__policy p a {
  text-decoration: underline;
  color: #FFFFFF;
  font-weight: 700;
}

.form-accepts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.feedback-block {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  flex: 1;
}

.feedback-block > .wpcf7 {
  width: 100%;
}

.feedback-block:has(.feedback-block__text) {
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.feedback-block > img {
  width: 100%;
  height: clamp(356px * var(--coefficient), 356 * 100vw / var(--design-width) * var(--mobile-coefficient), 356px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  object-fit: cover;
}

.feedback-block__text {
  padding: clamp(31px * var(--coefficient), 31 * 100vw / var(--design-width) * var(--mobile-coefficient), 31px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(31px * var(--coefficient), 31 * 100vw / var(--design-width) * var(--mobile-coefficient), 31px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border: 1px solid #BA4644;
  width: 100%;
}

.feedback-block__text strong {
  display: block;
  line-height: 120%;
  font-weight: 600;
  color: #BA4644;
  text-align: center;
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
}

.feedback-block__text p {
  line-height: 120%;
  text-align: center;
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
}

.feedback-block form {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background-color: #034389;
  width: 100%;
}

.feedback-block form input[type=submit] {
  width: 100%;
}

/* ========================== Стилизация пагинации ==================== */

.pagination ul.page-numbers {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.pagination li {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 119%;
  font-weight: 600;
}

.pagination li svg {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.pagination li .current {
  background-color: #BA4644;
  color: #FFFFFF;
  border-radius: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pagination li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li a,
.pagination li .dots {
  cursor: pointer;
  color: rgba(33, 33, 33, 0.2);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/* ========================== Стилизация Popup окон ==================== */

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
}

.popup {
  width: clamp(911px * var(--coefficient), 911 * 100vw / var(--design-width) * var(--mobile-coefficient), 911px * var(--mobile-coefficient));
  min-height: fit-content;
  height: auto;
  padding: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  overflow: hidden;
  background: linear-gradient(162deg, #034389 0%, #0658b1 100%);
  border: 3px solid #FFFFFF;
  display: none;
  margin: 0;
}

.popup__header {
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  justify-content: space-between;
  font-size: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  color: #FFFFFF;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.popup-close {
  width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  cursor: pointer;
  flex: none;
}

.popup-close path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup-close:active path {
  stroke: #BA4644;
}

.popup p.subtitle {
  line-height: 120%;
  color: #FFFFFF;
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

.popup form .form-inputs-row:not(:last-child) {
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================== ПЛАШКА COOKIE ==================== */

.accept-cookies {
  margin: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, #212121 0%, #262626 100%);
  width: 100%;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.accept-cookies__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.accept-cookies p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  color: #FFFFFF;
}

.accept-cookies p a {
  text-decoration: underline;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accept-cookies p a:active {
  color: #BA4644;
}

.accept-cookies button {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  background-color: #FFFFFF;
  line-height: 119%;
  text-transform: uppercase;
  color: #034389;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accept-cookies button:active {
  background-color: #034389;
  color: #FFFFFF;
}

.accept-cookies.show {
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.header {
  position: sticky;
  top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  z-index: 10;
}

.header__inner {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background-color: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 3;
}

.header__logo {
  display: block;
  height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  width: clamp(200px * var(--coefficient), 200 * 100vw / var(--design-width) * var(--mobile-coefficient), 200px * var(--mobile-coefficient));
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__nav ul {
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.header__nav ul a {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 119%;
  color: #212121;
  position: relative;
}

.header__nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #212121;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__nav ul a:active::after {
  width: 100%;
}

.header__contact {
  gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.header__contact-info span {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 119%;
  opacity: 0.7;
  display: block;
  text-align: right;
  width: 100%;
}

.header__contact-phone {
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
}

.header__contact-phone img {
  width: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  height: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.header__contact-phone a {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 119%;
  color: #212121;
  font-weight: 600;
}

.header__mobile {
  display: none;
}

.modal-menu {
  display: none;
}

.footer__inner {
  padding: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  background: linear-gradient(162deg, #034389 0%, #0658b1 100%);
  color: #FFFFFF;
}

.footer__logo {
  width: clamp(300px * var(--coefficient), 300 * 100vw / var(--design-width) * var(--mobile-coefficient), 300px * var(--mobile-coefficient));
  height: clamp(120px * var(--coefficient), 120 * 100vw / var(--design-width) * var(--mobile-coefficient), 120px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  display: block;
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__top {
  padding-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__info > span {
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  opacity: 0.7;
  display: block;
}

.footer__info > span:not(:last-child) {
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.footer__info > span:last-of-type {
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.footer__info > a {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  display: block;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__info > a:not(:last-child) {
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.footer__info > a:active {
  color: #BA4644;
}

.footer__col {
  margin-left: auto;
  width: clamp(390px * var(--coefficient), 390 * 100vw / var(--design-width) * var(--mobile-coefficient), 390px * var(--mobile-coefficient));
}

.footer__col:has(.search-input) {
  width: clamp(464px * var(--coefficient), 464 * 100vw / var(--design-width) * var(--mobile-coefficient), 464px * var(--mobile-coefficient));
}

.footer__col:last-child {
  margin-left: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.footer__col .search-input {
  height: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  width: 100%;
}

.footer__col > button {
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  width: 100%;
}

.footer__col > button.mobile {
  display: none;
}

.footer__col h3 {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  opacity: 0.7;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer__col nav {
  margin-top: clamp(88px * var(--coefficient), 88 * 100vw / var(--design-width) * var(--mobile-coefficient), 88px * var(--mobile-coefficient));
}

.footer__col nav ul {
  column-count: 2;
  column-gap: clamp(12px * var(--coefficient), 1200vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.footer__col nav li {
  padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
}

.footer__col nav li a {
  color: #FFFFFF;
  position: relative;
}

.footer__col nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__col nav li a:active::after {
  width: 100%;
}

.footer__contacts {
  gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.footer__contacts h3 {
  margin-bottom: 0;
}

.footer__contacts li {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.footer__contacts li a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.footer__contacts li img {
  width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  flex: none;
}

.footer__contacts li span {
  display: block;
  opacity: 0.6;
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
}

.footer__contacts li p {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__social {
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  row-gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.footer__social a {
  display: block;
  width: 100%;
  height: clamp(44px * var(--coefficient), 44 * 100vw / var(--design-width) * var(--mobile-coefficient), 44px * var(--mobile-coefficient));
}

.footer__social a img {
  width: 100%;
  height: 100%;
}

.footer__bottom {
  padding-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
}

.footer__bottom span {
  opacity: 0.7;
}

.footer__bottom .developed {
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.footer__bottom .developed img {
  width: clamp(147px * var(--coefficient), 147 * 100vw / var(--design-width) * var(--mobile-coefficient), 147px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

.numbers:not(:has(.numbers__item)) {
  display: none;
}

.numbers__items {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.numbers__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  background: linear-gradient(162deg, #034389 0%, #0658b1 100%);
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.numbers__item img {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.numbers__item strong {
  display: block;
  font-weight: 700;
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
}

.numbers__item span {
  font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
}

.quiz__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  align-items: stretch;
}

.quiz-block {
  height: auto;
  width: clamp(944px * var(--coefficient), 944 * 100vw / var(--design-width) * var(--mobile-coefficient), 944px * var(--mobile-coefficient));
  background: rgba(3, 67, 137, 0.4);
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.process:not(:has(.process__item)) {
  display: none;
}

.process__items {
  justify-content: space-between;
  padding: clamp(166px * var(--coefficient), 166 * 100vw / var(--design-width) * var(--mobile-coefficient), 166px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(166px * var(--coefficient), 166 * 100vw / var(--design-width) * var(--mobile-coefficient), 166px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  border-top: 1px solid rgba(33, 33, 33, 0.2);
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

.process__item {
  position: relative;
}

.process__item:nth-child(2n+1)::after {
  content: "";
  background: url(../images/components/process-line-top.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(216px * var(--coefficient), 216 * 100vw / var(--design-width) * var(--mobile-coefficient), 216px * var(--mobile-coefficient));
  height: clamp(108px * var(--coefficient), 108 * 100vw / var(--design-width) * var(--mobile-coefficient), 108px * var(--mobile-coefficient));
  position: absolute;
  left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  bottom: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
}

.process__item:nth-child(2n+1)::before {
  content: "";
  background: url(../images/components/process-line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(11px * var(--coefficient), 11 * 100vw / var(--design-width) * var(--mobile-coefficient), 11px * var(--mobile-coefficient));
  height: clamp(166px * var(--coefficient), 166 * 100vw / var(--design-width) * var(--mobile-coefficient), 166px * var(--mobile-coefficient));
  position: absolute;
  left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  bottom: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
}

.process__item:nth-child(2n+1) span {
  bottom: clamp(228px * var(--coefficient), 228 * 100vw / var(--design-width) * var(--mobile-coefficient), 228px * var(--mobile-coefficient));
}

.process__item:nth-child(2n)::after {
  content: "";
  background: url(../images/components/process-line-bottom.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(216px * var(--coefficient), 216 * 100vw / var(--design-width) * var(--mobile-coefficient), 216px * var(--mobile-coefficient));
  height: clamp(108px * var(--coefficient), 108 * 100vw / var(--design-width) * var(--mobile-coefficient), 108px * var(--mobile-coefficient));
  position: absolute;
  left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  top: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
}

.process__item:nth-child(2n)::before {
  content: "";
  background: url(../images/components/process-line.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(11px * var(--coefficient), 11 * 100vw / var(--design-width) * var(--mobile-coefficient), 11px * var(--mobile-coefficient));
  height: clamp(166px * var(--coefficient), 166 * 100vw / var(--design-width) * var(--mobile-coefficient), 166px * var(--mobile-coefficient));
  position: absolute;
  left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  top: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.process__item:nth-child(2n) span {
  top: clamp(228px * var(--coefficient), 228 * 100vw / var(--design-width) * var(--mobile-coefficient), 228px * var(--mobile-coefficient));
}

.process__item:last-child::after {
  display: none;
}

.process__item span {
  line-height: 120%;
  text-align: center;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  white-space: nowrap;
}

.process__item img {
  width: clamp(120px * var(--coefficient), 120 * 100vw / var(--design-width) * var(--mobile-coefficient), 120px * var(--mobile-coefficient));
  height: clamp(120px * var(--coefficient), 120 * 100vw / var(--design-width) * var(--mobile-coefficient), 120px * var(--mobile-coefficient));
  position: relative;
  z-index: 2;
}

.cases .swiper {
  overflow: visible;
}

.cases .swiper-wrapper {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.cases .swiper-slide {
  width: 100% !important;
}

.cases__items {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.cases__item {
  position: relative;
  height: clamp(505px * var(--coefficient), 505 * 100vw / var(--design-width) * var(--mobile-coefficient), 505px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.cases__item > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  object-fit: cover;
}

.cases__item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.cases__item-title {
  font-size: clamp(15px * var(--coefficient), 15 * 100vw / var(--design-width) * var(--mobile-coefficient), 15px * var(--mobile-coefficient));
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  height: clamp(34px * var(--coefficient), 34 * 100vw / var(--design-width) * var(--mobile-coefficient), 34px * var(--mobile-coefficient));
  position: absolute;
  left: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  top: clamp(23px * var(--coefficient), 23 * 100vw / var(--design-width) * var(--mobile-coefficient), 23px * var(--mobile-coefficient));
  z-index: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  line-height: 120%;
  font-weight: 600;
  border-radius: 1000px;
  background: linear-gradient(90deg, #c8def7 0%, #a7d0ff 100%);
}

.cases__item-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  background-color: #FFFFFF;
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
}

.cases__item-info span {
  display: block;
  opacity: 0.5;
}

.cases__item-info p {
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.cases__item-info strong {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #034389;
}

.cases__item .btn-arrow {
  position: absolute;
  right: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  z-index: 2;
}

.cases .slider-navigation {
  display: none;
}

.staff .swiper-wrapper {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.staff .swiper-wrapper .swiper-slide {
  width: 100% !important;
  height: auto;
}

.staff__items {
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.staff__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  background: #f6fbff;
  border: 1px solid #d3d3d3;
  overflow: hidden;
  height: 100%;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.staff__item > img {
  width: clamp(307px * var(--coefficient), 307 * 100vw / var(--design-width) * var(--mobile-coefficient), 307px * var(--mobile-coefficient));
  height: clamp(345px * var(--coefficient), 345 * 100vw / var(--design-width) * var(--mobile-coefficient), 345px * var(--mobile-coefficient));
  object-fit: cover;
}

.staff__item-info {
  height: auto;
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.staff__item-info h3 {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 600;
}

.staff__item-info > p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 119%;
  opacity: 0.5;
}

.staff__item-info ul {
  align-items: flex-start;
  gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  padding-top: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  padding-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  margin-top: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  border-top: 1px solid rgba(33, 33, 33, 0.2);
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

.staff__item-info ul li {
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  line-height: 119%;
  width: 100%;
  justify-content: flex-start;
}

.staff__item-info ul li p {
  color: #616264;
}

.staff__item-info ul li span {
  color: #212121;
  font-weight: 700;
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
}

.staff__item-info ul li img {
  width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.staff__item-info button {
  width: 100%;
  margin-top: auto;
}

.staff .slider-navigation {
  display: none;
}

.faq__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  align-items: flex-start;
  position: relative;
}

.faq .feedback-block {
  position: sticky;
  top: clamp(176px * var(--coefficient), 176 * 100vw / var(--design-width) * var(--mobile-coefficient), 176px * var(--mobile-coefficient));
}

.faq__items {
  flex: none;
  width: clamp(992px * var(--coefficient), 992 * 100vw / var(--design-width) * var(--mobile-coefficient), 992px * var(--mobile-coefficient));
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.faq__item {
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
  width: 100%;
}

.faq__item-question {
  cursor: pointer;
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 120%;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.faq__item-question h3,
.faq__item-question svg,
.faq__item-question svg path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq__item-question svg {
  width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  flex: none;
}

.faq__item-question.open h3 {
  color: #BA4644;
}

.faq__item-question.open svg {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__item-question.open svg path {
  stroke: #BA4644;
}

.faq__item-answer {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  opacity: 0.7;
  display: none;
}

.contacts__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  align-items: flex-start;
  position: relative;
}

.contacts__items--wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  flex: 1;
}

.contacts__items--wrapper .swiperMapItems {
  width: 100%;
}

.contacts__map {
  width: clamp(816px * var(--coefficient), 816 * 100vw / var(--design-width) * var(--mobile-coefficient), 816px * var(--mobile-coefficient));
  height: clamp(508px * var(--coefficient), 508 * 100vw / var(--design-width) * var(--mobile-coefficient), 508px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  overflow: hidden;
  flex: none;
  position: relative;
}

.contacts__map--wrapper {
  position: sticky;
  top: clamp(176px * var(--coefficient), 176 * 100vw / var(--design-width) * var(--mobile-coefficient), 176px * var(--mobile-coefficient));
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  width: clamp(816px * var(--coefficient), 816 * 100vw / var(--design-width) * var(--mobile-coefficient), 816px * var(--mobile-coefficient));
  flex: none;
}

.contacts__map .map,
.contacts__map .map > ymaps {
  width: 100%;
  height: 100%;
}

.contacts__map-social {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  justify-content: space-between;
}

.contacts__map-social button {
  width: 100%;
}

.contacts__map-social ul {
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.contacts__map-social ul li {
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  border: 1px solid #034389;
  line-height: 115%;
  background-color: #FFFFFF;
  box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  position: relative;
}

.contacts__map-social ul li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.contacts__map-social ul li img {
  width: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  height: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
}

.contacts .map__items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  height: clamp(428px * var(--coefficient), 428 * 100vw / var(--design-width) * var(--mobile-coefficient), 428px * var(--mobile-coefficient));
  padding-right: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  width: auto;
}

.contacts .map__items::-webkit-scrollbar {
  width: 6px;
  height: 200px;
  /* ширина scrollbar */
}

.contacts .map__items::-webkit-scrollbar-track {
  background: rgba(3, 67, 137, 0.3);
  /* цвет дорожки */
}

.contacts .map__items::-webkit-scrollbar-thumb {
  background-color: rgba(3, 67, 137, 0.5);
  border-radius: 10px;
  /* закругления плашки */
}

.contacts:not(:has(.section-block)) .map__items {
  height: auto;
}

.contacts .map__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: stretch;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border: 1px solid #034389;
  background-color: #FFFFFF;
  cursor: pointer;
  width: 100%;
  height: auto;
}

.contacts .map__item > img {
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  width: clamp(197px * var(--coefficient), 197 * 100vw / var(--design-width) * var(--mobile-coefficient), 197px * var(--mobile-coefficient));
  height: auto;
  object-fit: cover;
}

.contacts .map__item strong {
  display: block;
  line-height: 115%;
  font-weight: 600;
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  padding-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

.contacts .map__item-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: 100%;
}

.contacts .map__item-info .btn {
  width: 100%;
  margin-top: clamp(35px * var(--coefficient), 35 * 100vw / var(--design-width) * var(--mobile-coefficient), 35px * var(--mobile-coefficient));
}

.contacts .map__item-row {
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  height: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  line-height: 115%;
  border: 1px solid rgba(33, 33, 33, 0.2);
  box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  position: relative;
}

.contacts .map__item-row:not(:last-child) {
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.contacts .map__item-row a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.contacts .map__item-row img {
  width: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  height: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  flex: none;
}

.contacts .slider-navigation {
  display: none;
}

.consultation-form__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  padding: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background: linear-gradient(162deg, #034389 0%, #0658b1 100%);
  align-items: stretch;
  color: #FFFFFF;
}

.consultation-form__inner > img {
  flex: none;
  height: auto;
  width: clamp(560px * var(--coefficient), 560 * 100vw / var(--design-width) * var(--mobile-coefficient), 560px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  object-fit: cover;
}

.consultation-form__form {
  flex: 1;
}

.consultation-form__form h2 {
  font-size: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.consultation-form__form > p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  line-height: 120%;
}

.hero {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.hero__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  align-items: stretch;
}

.hero__inner > img {
  width: clamp(736px * var(--coefficient), 736 * 100vw / var(--design-width) * var(--mobile-coefficient), 736px * var(--mobile-coefficient));
  height: clamp(525px * var(--coefficient), 525 * 100vw / var(--design-width) * var(--mobile-coefficient), 525px * var(--mobile-coefficient));
  object-fit: cover;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.hero__content {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  flex: 1;
}

.hero__content-info {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  width: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__content-info::before {
  content: "";
  background: url(../images/components/hero-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(424px * var(--coefficient), 424 * 100vw / var(--design-width) * var(--mobile-coefficient), 424px * var(--mobile-coefficient));
  height: clamp(294px * var(--coefficient), 294 * 100vw / var(--design-width) * var(--mobile-coefficient), 294px * var(--mobile-coefficient));
  position: absolute;
  right: 0;
  bottom: 0;
}

.hero__content-info h1 {
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  position: relative;
  z-index: 2;
}

.hero__content-info p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.hero__content-info button {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.counter {
  width: 100%;
}

.counter > span {
  display: block;
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  background: rgba(3, 67, 137, 0.8);
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  color: #FFFFFF;
  line-height: 120%;
  padding: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient)) clamp(57px * var(--coefficient), 57 * 100vw / var(--design-width) * var(--mobile-coefficient), 57px * var(--mobile-coefficient)) clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient)) clamp(57px * var(--coefficient), 57 * 100vw / var(--design-width) * var(--mobile-coefficient), 57px * var(--mobile-coefficient));
  width: fit-content;
  margin: 0 auto;
}

.counter-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(75px * var(--coefficient), 75 * 100vw / var(--design-width) * var(--mobile-coefficient), 75px * var(--mobile-coefficient));
}

.counter ul {
  border: 4px solid rgba(5, 66, 137, 0.8);
  box-shadow: inset 8px 12px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: #FFFFFF;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  height: clamp(75px * var(--coefficient), 75 * 100vw / var(--design-width) * var(--mobile-coefficient), 75px * var(--mobile-coefficient));
  overflow: hidden;
}

.counter ul li {
  flex: 1;
  height: clamp(75px * var(--coefficient), 75 * 100vw / var(--design-width) * var(--mobile-coefficient), 75px * var(--mobile-coefficient));
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  line-height: 120%;
  border-right: 1px solid rgba(33, 33, 33, 0.1);
}

.counter ul li:first-child {
  font-weight: 700;
  border-right: 1px solid rgba(33, 33, 33, 0.7);
}

.counter ul li:nth-child(2),
.counter ul li:nth-child(3),
.counter ul li:nth-child(4) {
  font-weight: 600;
}

.counter ul li:nth-child(5),
.counter ul li:nth-child(6),
.counter ul li:nth-child(7) {
  font-weight: 500;
}

.counter ul li:nth-child(8),
.counter ul li:nth-child(9),
.counter ul li:nth-child(10) {
  font-weight: 400;
  color: #b84742;
}

.debt-types:not(:has(.debt-types__item)) {
  display: none;
}

.debt-types__items {
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.debt-types__item {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background: linear-gradient(90deg, #c8def7 0%, #a7d0ff 100%);
}

.debt-types__item h3 {
  font-weight: 700;
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.debt-types__item p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.advantages .section-block {
  background-color: #F6FBFF;
  position: relative;
}

.advantages .section-block::before {
  content: "";
  background: url(../images/components/advantages-bg-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(254px * var(--coefficient), 254 * 100vw / var(--design-width) * var(--mobile-coefficient), 254px * var(--mobile-coefficient));
  height: clamp(125px * var(--coefficient), 125 * 100vw / var(--design-width) * var(--mobile-coefficient), 125px * var(--mobile-coefficient));
  position: absolute;
  left: 0;
  top: 0;
}

.advantages .section-block::after {
  content: "";
  background: url(../images/components/advantages-bg-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(163px * var(--coefficient), 163 * 100vw / var(--design-width) * var(--mobile-coefficient), 163px * var(--mobile-coefficient));
  height: clamp(131px * var(--coefficient), 131 * 100vw / var(--design-width) * var(--mobile-coefficient), 131px * var(--mobile-coefficient));
  position: absolute;
  right: 0;
  top: 0;
}

.advantages__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  align-items: stretch;
}

.advantages__inner > img {
  width: clamp(560px * var(--coefficient), 560 * 100vw / var(--design-width) * var(--mobile-coefficient), 560px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  flex: none;
  height: auto;
  object-fit: cover;
}

.advantages__content-text {
  line-height: 130%;
  font-weight: 400;
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.advantages__content-text h3 {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 130%;
}

.advantages__content > ul {
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.advantages__content > ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  font-weight: 600;
  background: linear-gradient(90deg, #c8def7 0%, #a7d0ff 100%);
}

.advantages__content > ul li img {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.services__items {
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.services__item {
  position: relative;
  height: clamp(315px * var(--coefficient), 315 * 100vw / var(--design-width) * var(--mobile-coefficient), 315px * var(--mobile-coefficient));
}

.services__item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.services__item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.services__item-bg .bg-hover {
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services__item-bg .bg-default {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services__item-row {
  width: clamp(72px * var(--coefficient), 72 * 100vw / var(--design-width) * var(--mobile-coefficient), 72px * var(--mobile-coefficient));
  height: clamp(223px * var(--coefficient), 223 * 100vw / var(--design-width) * var(--mobile-coefficient), 223px * var(--mobile-coefficient));
  position: absolute;
  right: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.services__item-row rect,
.services__item-row path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services__item-row--mobile {
  display: none;
}

.services__item-content {
  width: clamp(608px * var(--coefficient), 608 * 100vw / var(--design-width) * var(--mobile-coefficient), 608px * var(--mobile-coefficient));
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  padding-right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services__item-content p {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 115%;
  opacity: 0.8;
  margin-top: auto;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services__item-title {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  line-height: 110%;
  font-weight: 600;
  color: #034389;
}

.services__item-title h3 {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services__item-title svg {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  flex: none;
}

.services__item-title svg path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.services__item:active .services__item-row rect {
  fill: #FFFFFF;
}

.services__item:active .services__item-row path {
  stroke: #034389;
}

.services__item:active .services__item-bg .bg-hover {
  opacity: 1;
}

.services__item:active .services__item-bg .bg-default {
  opacity: 0;
}

.services__item:active .services__item-title {
  color: #FFFFFF;
}

.services__item:active .services__item-title svg path {
  fill: #FFFFFF;
}

.services__item:active .services__item-content {
  color: #FFFFFF;
}

.service-info__inner {
  align-items: stretch;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.service-info__img {
  min-height: clamp(570px * var(--coefficient), 570 * 100vw / var(--design-width) * var(--mobile-coefficient), 570px * var(--mobile-coefficient));
  width: clamp(480px * var(--coefficient), 480 * 100vw / var(--design-width) * var(--mobile-coefficient), 480px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  flex: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  position: relative;
}

.service-info__img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.service-info__advantages {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.service-info__advantages li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  line-height: 120%;
  color: #FFFFFF;
  width: 100%;
}

.service-info__advantages li img {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  flex: none;
}

.service-info__content {
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.service-info__block {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.service-info__block:first-child {
  grid-column: span 2;
  background: #FFFFFF;
}

.service-info__block:first-child .service-info__block--title {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  line-height: 120%;
}

.service-info__block:first-child .service-info__block--title img {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
}

.service-info__block--title {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 110%;
  color: #034389;
}

.service-info__block--title img {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.service-info__block--text {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 130%;
  opacity: 0.8;
}

.service-info__block--text ul {
  padding-left: 1rem;
}

.service-info__block--text ul li {
  list-style-type: disc;
}

.service-info__block--text ol {
  padding-left: 2rem;
}

.service-info__block--text ol li {
  list-style-type: decimal;
}

.service-video:not(:has(.service-video-img--wrapper > img)) {
  display: none;
}

.service-video-img--wrapper {
  width: 100%;
  position: relative;
  height: clamp(679px * var(--coefficient), 679 * 100vw / var(--design-width) * var(--mobile-coefficient), 679px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.service-video-img--wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.service-video-img--wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.service-video-img--wrapper button {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.service-video-img--wrapper button img {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
}

.service-video--wrapper {
  position: relative;
}

.service-video--wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  object-fit: cover;
}

.blog__items {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.blog__item {
  height: clamp(460px * var(--coefficient), 460 * 100vw / var(--design-width) * var(--mobile-coefficient), 460px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  position: relative;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

.blog__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.blog__item > a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.blog__item-date {
  font-size: clamp(15px * var(--coefficient), 15 * 100vw / var(--design-width) * var(--mobile-coefficient), 15px * var(--mobile-coefficient));
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 600;
  border-radius: 1000px;
  background: linear-gradient(90deg, #c8def7 0%, #a7d0ff 100%);
  width: fit-content;
  position: absolute;
  left: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  top: clamp(23px * var(--coefficient), 23 * 100vw / var(--design-width) * var(--mobile-coefficient), 23px * var(--mobile-coefficient));
}

.blog__item-info {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background-color: #FFFFFF;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.blog__item-info h3 {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 110%;
}

.blog__item-info p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 119%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-background-clip: text;
}

.blog__item .btn-arrow {
  position: absolute;
  right: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  z-index: 2;
}

.article__inner {
  align-items: flex-start;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.article__more {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  width: clamp(384px * var(--coefficient), 384 * 100vw / var(--design-width) * var(--mobile-coefficient), 384px * var(--mobile-coefficient));
  flex: none;
  border: 1px solid rgba(33, 33, 33, 0.2);
  background-color: #FFFFFF;
  position: sticky;
  top: clamp(176px * var(--coefficient), 176 * 100vw / var(--design-width) * var(--mobile-coefficient), 176px * var(--mobile-coefficient));
}

.article__more h2 {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
}

.article__more ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

.article__more ul li {
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.article__more ul li:not(:last-child) {
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

.article__content {
  flex: 1;
}

.article__content > img {
  width: 100%;
  height: clamp(426px * var(--coefficient), 426 * 100vw / var(--design-width) * var(--mobile-coefficient), 426px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  object-fit: cover;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.article__content-text {
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  line-height: 119%;
}

.article__content-text ul {
    padding-left: 1rem;
}

.article__content-text ul li {
    list-style-type: disc;
}

.article__content-text ol {
    padding-left: 1rem;
}

.article__content-text a {
    color: #034389;
    text-decoration: underline;
}

.article__content-text ol li {
    list-style-type: decimal;
}

.article__content-text h2 {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.article__content .wp-block-group:not(:last-child) {
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

.article__content--title {
  font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
}

.article__content--date {
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
  line-height: 120%;
  color: #034389;
}

.article__content--date img {
  width: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  height: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.about-hero {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.about-hero__inner {
  padding: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  position: relative;
}

.about-hero__inner::before {
  content: "";
  background: url(../images/components/about-hero-bg-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(421px * var(--coefficient), 421 * 100vw / var(--design-width) * var(--mobile-coefficient), 421px * var(--mobile-coefficient));
  height: 100%;
}

.about-hero__inner::after {
  content: "";
  background: url(../images/components/about-hero-bg-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(421px * var(--coefficient), 421 * 100vw / var(--design-width) * var(--mobile-coefficient), 421px * var(--mobile-coefficient));
  height: 100%;
}

.about-hero .breadcrumbs {
  text-align: center;
}

.about-hero h1 {
  text-align: center;
  margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.about-hero .counter {
  margin: 0 auto;
  width: clamp(736px * var(--coefficient), 736 * 100vw / var(--design-width) * var(--mobile-coefficient), 736px * var(--mobile-coefficient));
}

.about-hero__advantages {
  margin: 0 auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  width: clamp(736px * var(--coefficient), 736 * 100vw / var(--design-width) * var(--mobile-coefficient), 736px * var(--mobile-coefficient));
}

.about-hero__advantages li {
  padding: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  border: 2px solid #054289;
  background-color: #FFFFFF;
  position: relative;
}

.about-hero__advantages li img {
  width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: clamp(-24px * var(--mobile-coefficient), -2400vw / var(--design-width) * var(--mobile-coefficient), -24px * var(--coefficient));
}

.about-hero__advantages li strong {
  display: block;
  text-align: center;
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(7px * var(--coefficient), 7 * 100vw / var(--design-width) * var(--mobile-coefficient), 7px * var(--mobile-coefficient));
}

.about-hero__advantages li span {
  display: block;
  text-align: center;
  line-height: 110%;
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.about-advantages:not(:has(.about-advantages__item)) {
  display: none;
}

.about-advantages__items {
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.about-advantages__item {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  text-align: center;
  background: linear-gradient(162deg, #034389 0%, #0658b1 100%);
  color: #FFFFFF;
}

.about-advantages__item img {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
  border-radius: 100%;
}

.about-advantages__item h3 {
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(30px * var(--coefficient), 30 * 100vw / var(--design-width) * var(--mobile-coefficient), 30px * var(--mobile-coefficient));
  font-weight: 700;
}

.partners:not(:has(.partners-row li)) {
  display: none;
}

.partners .section-block {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
}

.partners-row {
  overflow: hidden;
}

.partners-row:not(:last-child) {
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.partners-row:nth-child(2n) .partners-row--wrapper {
  animation: running-animation-reverse 30s linear infinite;
}

.partners-row--wrapper {
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  animation: running-animation 30s linear infinite;
}

.partners-row li {
  padding: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  border-radius: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 119%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #034389;
  flex: none;
  white-space: nowrap;
}

.partners-row li img {
  width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

@keyframes running-animation {
  0% {
    transform: translateZ(0);
  }

  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes running-animation-reverse {
  0% {
    transform: translateZ(0);
  }

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

.branches {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.branches__inner {
  padding: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  align-items: stretch;
  position: relative;
}

.branches__inner::before {
  content: "";
  background: url(../images/components/branches-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(1110px * var(--coefficient), 1110 * 100vw / var(--design-width) * var(--mobile-coefficient), 1110px * var(--mobile-coefficient));
  height: clamp(343px * var(--coefficient), 343 * 100vw / var(--design-width) * var(--mobile-coefficient), 343px * var(--mobile-coefficient));
}

.branches__content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.branches__content h1 {
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.branches__content > p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 600;
}

.branches__content button {
  margin-top: auto;
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.branches__map {
  width: clamp(816px * var(--coefficient), 816 * 100vw / var(--design-width) * var(--mobile-coefficient), 816px * var(--mobile-coefficient));
  min-height: clamp(443px * var(--coefficient), 443 * 100vw / var(--design-width) * var(--mobile-coefficient), 443px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  height: auto;
  flex: none;
  border: 1px solid #034389;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.branches__map img {
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.branches__map span {
  padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  position: absolute;
  right: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background-color: #BA4644;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 120%;
}

.contacts-hero {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.contacts-hero__inner {
  padding: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  align-items: stretch;
}

.contacts-hero__content h1 {
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.contacts-hero__content ul {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.contacts-hero__content ul hr {
  width: 100%;
  height: 1px;
  background-color: rgba(33, 33, 33, 0.2);
}

.contacts-hero__content li {
  width: 100%;
  border: 1px solid rgba(33, 33, 33, 0.2);
  box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  position: relative;
  justify-content: flex-start;
  border-radius: clamp(15px * var(--coefficient), 15 * 100vw / var(--design-width) * var(--mobile-coefficient), 15px * var(--mobile-coefficient));
  padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
}

.contacts-hero__content li img {
  width: clamp(30px * var(--coefficient), 30 * 100vw / var(--design-width) * var(--mobile-coefficient), 30px * var(--mobile-coefficient));
  height: clamp(30px * var(--coefficient), 30 * 100vw / var(--design-width) * var(--mobile-coefficient), 30px * var(--mobile-coefficient));
  flex: none;
}

.contacts-hero__content li span {
  display: block;
  margin-bottom: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 115%;
  opacity: 0.7;
}

.contacts-hero__content li strong {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 115%;
  font-weight: 500;
}

.contacts-hero__content li a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contacts-hero__content button {
  width: 100%;
}

.contacts-hero__social {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  padding-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-top: 1px solid rgba(33, 33, 33, 0.2);
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

.contacts-hero__social a {
  display: block;
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.contacts-hero__social img {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.contacts-hero__map {
  width: clamp(816px * var(--coefficient), 816 * 100vw / var(--design-width) * var(--mobile-coefficient), 816px * var(--mobile-coefficient));
  min-height: clamp(443px * var(--coefficient), 443 * 100vw / var(--design-width) * var(--mobile-coefficient), 443px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  height: auto;
  flex: none;
  border: 1px solid #034389;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.contacts-hero__map img {
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacts-hero__map span {
  padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  position: absolute;
  right: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background-color: #BA4644;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 120%;
}

.reviews-hero {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.reviews-hero__inner {
  padding: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #f6fbff;
  text-align: center;
  position: relative;
}

.reviews-hero__inner::before {
  content: "";
  background: url(../images/components/reviews-hero-bg-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(451px * var(--coefficient), 451 * 100vw / var(--design-width) * var(--mobile-coefficient), 451px * var(--mobile-coefficient));
  height: clamp(324px * var(--coefficient), 324 * 100vw / var(--design-width) * var(--mobile-coefficient), 324px * var(--mobile-coefficient));
}

.reviews-hero__inner::after {
  content: "";
  background: url(../images/components/reviews-hero-bg-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: clamp(451px * var(--coefficient), 451 * 100vw / var(--design-width) * var(--mobile-coefficient), 451px * var(--mobile-coefficient));
  height: clamp(324px * var(--coefficient), 324 * 100vw / var(--design-width) * var(--mobile-coefficient), 324px * var(--mobile-coefficient));
}

.reviews-hero__inner > p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 120%;
}

.reviews-hero h1 {
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.reviews-hero .btn {
  width: fit-content;
  margin: 0 auto;
  width: clamp(466px * var(--coefficient), 466 * 100vw / var(--design-width) * var(--mobile-coefficient), 466px * var(--mobile-coefficient));
}

.reviews-video .slider-navigation {
  display: none;
}

.reviews-video__inner {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.reviews-video__inner > svg {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews-video__inner > svg.swiper-button-disabled {
  opacity: 0.5;
}

.reviews-video .swiper {
  flex: 1;
}

.reviews-video .swiper-slide {
  height: clamp(547px * var(--coefficient), 547 * 100vw / var(--design-width) * var(--mobile-coefficient), 547px * var(--mobile-coefficient));
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  overflow: hidden;
}

.reviews-video .swiper-slide iframe {
  width: 100%;
  height: 100%;
}

.reviews__inner {
  align-items: flex-start;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  position: relative;
}

.reviews__form {
  width: clamp(480px * var(--coefficient), 480 * 100vw / var(--design-width) * var(--mobile-coefficient), 480px * var(--mobile-coefficient));
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  flex: none;
  background: #054289;
  color: #FFFFFF;
}

.reviews__form-rate {
  gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  padding-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.reviews__form-rate svg {
  width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews__form-rate svg path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews__form-rate:has(> :nth-child(1):hover) > :nth-child(-n+1) path {
  fill: #FFD700;
}

.reviews__form-rate:has(> :nth-child(2):hover) > :nth-child(-n+2) path {
  fill: #FFD700;
}

.reviews__form-rate:has(> :nth-child(3):hover) > :nth-child(-n+3) path {
  fill: #FFD700;
}

.reviews__form-rate:has(> :nth-child(4):hover) > :nth-child(-n+4) path {
  fill: #FFD700;
}

.reviews__form-rate:has(> :nth-child(5):hover) > :nth-child(-n+5) path {
  fill: #FFD700;
}


.reviews__form-rate[data-rate="1"] svg:nth-child(-n+1) path {
  fill: #FFD700;
}

.reviews__form-rate[data-rate="2"] svg:nth-child(-n+2) path {
  fill: #FFD700;
}

.reviews__form-rate[data-rate="3"] svg:nth-child(-n+3) path {
  fill: #FFD700;
}

.reviews__form-rate[data-rate="4"] svg:nth-child(-n+4) path {
  fill: #FFD700;
}

.reviews__form-rate[data-rate="5"] svg:nth-child(-n+5) path {
  fill: #FFD700;
}


.reviews__form h2 {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  line-height: 120%;
  text-align: center;
  font-weight: 600;
}

.reviews__form > p {
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  text-align: center;
  line-height: 120%;
}

.reviews__form input[type=submit] {
  width: 100%;
}

.reviews__items {
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.reviews__items--wrapper {
  flex: 1;
  position: sticky;
  top: clamp(176px * var(--coefficient), 176 * 100vw / var(--design-width) * var(--mobile-coefficient), 176px * var(--mobile-coefficient));
}

.reviews__item {
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: #FFFFFF;
}

.reviews__item-header {
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  justify-content: flex-start;
}

.reviews__item-header img {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  flex: none;
}

.reviews__item-header h3 {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  margin-bottom: clamp(5px * var(--coefficient), 5 * 100vw / var(--design-width) * var(--mobile-coefficient), 5px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 600;
}

.reviews__item-header span {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 400;
  opacity: 0.7;
}

.reviews__item-rate {
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.reviews__item-rate svg {
  width: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  height: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.reviews__item-rate[data-rate="1"] svg:nth-child(-n+1) path {
  fill: #FFD700;
}

.reviews__item-rate[data-rate="2"] svg:nth-child(-n+2) path {
  fill: #FFD700;
}

.reviews__item-rate[data-rate="3"] svg:nth-child(-n+3) path {
  fill: #FFD700;
}

.reviews__item-rate[data-rate="4"] svg:nth-child(-n+4) path {
  fill: #FFD700;
}

.reviews__item-rate[data-rate="5"] svg:nth-child(-n+5) path {
  fill: #FFD700;
}

.reviews__item-text {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  line-height: 120%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-background-clip: text;
}

.reviews__item-text.open {
  -webkit-line-clamp: none;
}

.reviews__item-more {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 120%;
  font-weight: 600;
  text-align: right;
  opacity: 0.7;
  display: block;
  cursor: pointer;
}

.error-404 {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.error-404 .section-block {
  position: relative;
  background: #f6fbff;
}

.error-404 .section-block::before {
  content: "";
  background: url(../images/components/404-bg-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(473px * var(--coefficient), 473 * 100vw / var(--design-width) * var(--mobile-coefficient), 473px * var(--mobile-coefficient));
  height: clamp(463px * var(--coefficient), 463 * 100vw / var(--design-width) * var(--mobile-coefficient), 463px * var(--mobile-coefficient));
}

.error-404 .section-block::after {
  content: "";
  background: url(../images/components/404-bg-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: clamp(473px * var(--coefficient), 473 * 100vw / var(--design-width) * var(--mobile-coefficient), 473px * var(--mobile-coefficient));
  height: clamp(463px * var(--coefficient), 463 * 100vw / var(--design-width) * var(--mobile-coefficient), 463px * var(--mobile-coefficient));
}

.error-404__inner svg {
  width: clamp(306px * var(--coefficient), 306 * 100vw / var(--design-width) * var(--mobile-coefficient), 306px * var(--mobile-coefficient));
  height: clamp(154px * var(--coefficient), 154 * 100vw / var(--design-width) * var(--mobile-coefficient), 154px * var(--mobile-coefficient));
  display: block;
  margin: 0 auto;
  margin-bottom: clamp(21px * var(--coefficient), 21 * 100vw / var(--design-width) * var(--mobile-coefficient), 21px * var(--mobile-coefficient));
}

.error-404__inner h1 {
  font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(21px * var(--coefficient), 21 * 100vw / var(--design-width) * var(--mobile-coefficient), 21px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
  color: #212121;
  text-align: center;
}

.error-404__inner p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(21px * var(--coefficient), 21 * 100vw / var(--design-width) * var(--mobile-coefficient), 21px * var(--mobile-coefficient));
  line-height: 115%;
  text-align: center;
}

.error-404__inner .btn {
  width: fit-content;
  margin: 0 auto;
}

.thanks {
  padding-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.thanks .section-block {
  position: relative;
  background: #f6fbff;
}

.thanks .section-block::before {
  content: "";
  background: url(../images/components/thanks-bg-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: clamp(398px * var(--coefficient), 398 * 100vw / var(--design-width) * var(--mobile-coefficient), 398px * var(--mobile-coefficient));
  height: clamp(331px * var(--coefficient), 331 * 100vw / var(--design-width) * var(--mobile-coefficient), 331px * var(--mobile-coefficient));
}

.thanks .section-block::after {
  content: "";
  background: url(../images/components/thanks-bg-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: clamp(398px * var(--coefficient), 398 * 100vw / var(--design-width) * var(--mobile-coefficient), 398px * var(--mobile-coefficient));
  height: clamp(331px * var(--coefficient), 331 * 100vw / var(--design-width) * var(--mobile-coefficient), 331px * var(--mobile-coefficient));
}

.thanks__inner h1 {
  font-size: clamp(44px * var(--coefficient), 44 * 100vw / var(--design-width) * var(--mobile-coefficient), 44px * var(--mobile-coefficient));
  margin-bottom: clamp(21px * var(--coefficient), 21 * 100vw / var(--design-width) * var(--mobile-coefficient), 21px * var(--mobile-coefficient));
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #212121;
  text-align: center;
}

.thanks__inner p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(21px * var(--coefficient), 21 * 100vw / var(--design-width) * var(--mobile-coefficient), 21px * var(--mobile-coefficient));
  line-height: 115%;
  text-align: center;
}

.thanks__inner .btn {
  width: fit-content;
  margin: 0 auto;
}

.docs__inner {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 119%;
}

.docs__inner h2 {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-bottom: 1px solid rgba(33, 33, 33, 0.2);
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
}

.docs .wp-block-group {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  background-color: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

.docs .wp-block-group:not(:last-child) {
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

@media only screen and (max-width: 640px) {
  :root {
    --coefficient: 0.8205;
    --device-width: 640;
    --mobile-coefficient: 1.641;
    --design-width: 640;
  }

  body {
    background-color: #FFFFFF;
  }

  main {
    margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  section {
    margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }

  .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  h1 {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  }

  h2.section-header {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .btn {
    padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    height: clamp(43px * var(--coefficient), 43 * 100vw / var(--design-width) * var(--mobile-coefficient), 43px * var(--mobile-coefficient));
  }

  .btn-arrow {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    cursor: pointer;
  }

  .section-block {
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .page-header {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .page-header__inner {
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .page-header__inner::before {
    background: url(../images/components/page-header-bg-mobile.svg);
    left: auto;
    right: 0;
    top: 0;
    width: clamp(162px * var(--coefficient), 162 * 100vw / var(--design-width) * var(--mobile-coefficient), 162px * var(--mobile-coefficient));
    height: clamp(113px * var(--coefficient), 113 * 100vw / var(--design-width) * var(--mobile-coefficient), 113px * var(--mobile-coefficient));
  }

  .page-header__inner::after {
    display: none;
  }

  .page-header .breadcrumbs {
    text-align: left;
  }

  .page-header h1 {
    text-align: left;
  }

  .breadcrumbs {
    font-size: clamp(13px * var(--coefficient), 13 * 100vw / var(--design-width) * var(--mobile-coefficient), 13px * var(--mobile-coefficient));
  }

  .feedback-block {
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    flex: 1;
  }

  .feedback-block > img {
    width: 100%;
    height: clamp(356px * var(--coefficient), 356 * 100vw / var(--design-width) * var(--mobile-coefficient), 356px * var(--mobile-coefficient));
    border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    object-fit: cover;
    display: none;
  }

  .feedback-block__text {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .feedback-block__text strong {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .feedback-block__text p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .feedback-block form {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .input {
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .input svg,
  .textarea svg {
    width: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
    height: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .input input {
    font-size: clamp(13px * var(--coefficient), 13 * 100vw / var(--design-width) * var(--mobile-coefficient), 13px * var(--mobile-coefficient));
  }

  .input input::placeholder {
    font-size: clamp(13px * var(--coefficient), 13 * 100vw / var(--design-width) * var(--mobile-coefficient), 13px * var(--mobile-coefficient));
  }

  .form-inputs-row {
    flex-direction: column;
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .form-inputs-row:not(:last-child) {
    padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .form-inputs-row .input {
    width: 100%;
  }

  .form-inputs-row .form-accepts {
    width: 100%;
  }

  .form-inputs-row:has(.form-accepts) {
    align-items: flex-start;
  }

  .search-input {
    height: clamp(52px * var(--coefficient), 52 * 100vw / var(--design-width) * var(--mobile-coefficient), 52px * var(--mobile-coefficient));
  }

  .search-input svg {
    width: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
    height: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .search-input input {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .slider-navigation {
    margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .slider-navigation > svg {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    flex: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .slider-navigation > svg.swiper-button-disabled {
    opacity: 0.5;
  }

  .slider-navigation .swiper-pagination-bullets {
    position: static !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  }

  .slider-navigation .swiper-pagination-bullet {
    width: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    height: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #212121;
    opacity: 0.2;
    margin: 0 !important;
  }

  .slider-navigation .swiper-pagination-bullet-active {
    opacity: 1;
    width: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    height: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация пагинации ==================== */

  .pagination ul.page-numbers {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .pagination li {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .pagination li svg {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .header {
    top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .header__inner {
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .header__logo {
    display: block;
    height: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
    width: clamp(141px * var(--coefficient), 141 * 100vw / var(--design-width) * var(--mobile-coefficient), 141px * var(--mobile-coefficient));
  }

  .header__nav {
    display: none;
  }

  .header__contact {
    display: none;
  }

  .header__mobile {
    display: flex;
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .header__mobile > a {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .header__mobile > a img {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  /* ========================== Cтили для бургер меню ==================== */

  .header__burger-menu {
    background: #034389;
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 100;
  }

  #burger_menu {
    z-index: 10;
    width: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    height: clamp(13px * var(--coefficient), 13 * 100vw / var(--design-width) * var(--mobile-coefficient), 13px * var(--mobile-coefficient));
    position: relative;
    transform: rotate(0deg);
    transition: 0.4s ease-in-out;
    cursor: pointer;
  }

  #burger_menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #FFFFFF;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  #burger_menu span:nth-child(1) {
    top: 0px;
  }

  #burger_menu span:nth-child(2),
  #burger_menu span:nth-child(3) {
    top: clamp(6px * var(--coefficient), 6 * 100vw / var(--design-width) * var(--mobile-coefficient), 6px * var(--mobile-coefficient));
  }

  #burger_menu span:nth-child(4) {
    top: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  #burger_menu.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .header__burger-menu:has(#burger_menu.open) {
    background: #034389;
  }

  #burger_menu.open span {
    background: #FFFFFF;
  }

  #burger_menu.open span:nth-child(2) {
    transform: rotate(45deg);
  }

  #burger_menu.open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  #burger_menu.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }

  .hidden {
    overflow: hidden !important;
  }

  .modal-menu {
    position: absolute;
    width: 100%;
    height: calc(100dvh + clamp(32px * var(--coefficient), 3200vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient)));
    left: -100%;
    top: clamp(-32px * var(--mobile-coefficient), -3200vw / var(--design-width) * var(--mobile-coefficient), -32px * var(--coefficient));
    background-color: #FFFFFF;
    z-index: 1;
    display: block;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow-y: auto;
  }

  .modal-menu.open {
    left: 0;
  }

  .modal-menu nav {
    margin-top: clamp(104px * var(--coefficient), 104 * 100vw / var(--design-width) * var(--mobile-coefficient), 104px * var(--mobile-coefficient));
    width: 100%;
  }

  .modal-menu nav li {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    width: 100%;
    text-align: left;
    line-height: 119%;
  }

  .modal-menu nav li a {
    color: #212121;
  }

  .modal-menu nav li:not(:last-child) {
    border-bottom: 1px solid rgba(33, 33, 33, 0.2);
  }

  .modal-menu__contacts {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-bottom: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  }

  .modal-menu__contacts > button.btn {
    width: 100%;
  }

  .modal-menu__contacts > ul {
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .modal-menu__contacts > ul li {
    gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    height: clamp(52px * var(--coefficient), 52 * 100vw / var(--design-width) * var(--mobile-coefficient), 52px * var(--mobile-coefficient));
    font-weight: 500;
    line-height: 115%;
    border: 1px solid rgba(33, 33, 33, 0.2);
    box-shadow: inset 0 2px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #FFFFFF;
    width: 100%;
    justify-content: flex-start;
    position: relative;
  }

  .modal-menu__contacts > ul li a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }

  .modal-menu__contacts > ul li span {
    display: block;
    margin-bottom: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
    font-size: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .modal-menu__contacts > ul li strong {
    font-weight: 500;
  }

  .modal-menu__contacts > ul li img {
    width: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    height: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .modal-menu__social {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-top: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-top: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    padding-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    border-top: 1px solid rgba(33, 33, 33, 0.2);
    border-bottom: 1px solid rgba(33, 33, 33, 0.2);
  }

  .modal-menu__social a {
    display: block;
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .modal-menu__social a img {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .footer__inner {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-bottom: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
    flex-direction: column;
  }

  .footer__logo {
    width: clamp(198px * var(--coefficient), 198 * 100vw / var(--design-width) * var(--mobile-coefficient), 198px * var(--mobile-coefficient));
    height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
    margin: 0 auto;
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__info {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    padding-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }

  .footer__info > span {
    text-align: center;
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .footer__info > span:not(:last-child) {
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .footer__info > a {
    text-align: center;
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .footer__info > a:not(:last-child) {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .footer__col {
    margin-left: auto;
    width: 100%;
  }

  .footer__col:has(.search-input) {
    width: 100%;
  }

  .footer__col:last-child {
    margin-left: 0;
  }

  .footer__col .search-input {
    height: clamp(52px * var(--coefficient), 52 * 100vw / var(--design-width) * var(--mobile-coefficient), 52px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    width: 100%;
    display: none;
  }

  .footer__col > button {
    margin-bottom: 0;
    width: 100%;
    display: none;
  }

  .footer__col > button.mobile {
    display: flex;
  }

  .footer__col h3 {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    text-align: center;
  }

  .footer__col nav {
    margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    padding-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .footer__col nav ul {
    column-count: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    align-items: center;
  }

  .footer__col nav li {
    padding: 0;
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .footer__contacts {
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .footer__contacts h3 {
    display: none;
  }

  .footer__contacts li {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
    border: none;
  }

  .footer__contacts li img {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .footer__contacts li span {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .footer__social {
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    row-gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    padding-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer__bottom {
    flex-direction: column;
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .footer__bottom > span {
    display: block;
    text-align: center;
  }

  .footer__bottom .developed {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .footer__bottom .developed img {
    width: clamp(118px * var(--coefficient), 118 * 100vw / var(--design-width) * var(--mobile-coefficient), 118px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .numbers {
    display: none;
  }

  .numbers__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .numbers__item img {
    width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .numbers__item strong {
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .numbers__item span {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .quiz__inner {
    flex-direction: column;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .quiz-block {
    height: clamp(500px * var(--coefficient), 500 * 100vw / var(--design-width) * var(--mobile-coefficient), 500px * var(--mobile-coefficient));
    width: 100%;
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .process__items {
    gap: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border: none;
    padding-left: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .process__item {
    position: relative;
    width: 100%;
  }

  .process__item:nth-child(2n+1)::after {
    background: url(../images/components/process-line-round-mobila.svg);
    width: clamp(61px * var(--coefficient), 61 * 100vw / var(--design-width) * var(--mobile-coefficient), 61px * var(--mobile-coefficient));
    height: clamp(122px * var(--coefficient), 122 * 100vw / var(--design-width) * var(--mobile-coefficient), 122px * var(--mobile-coefficient));
    left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
    top: clamp(39px * var(--coefficient), 39 * 100vw / var(--design-width) * var(--mobile-coefficient), 39px * var(--mobile-coefficient));
    bottom: auto;
  }

  .process__item:nth-child(2n+1)::before {
    background: url(../images/components/process-line-mobile.svg);
    width: clamp(70px * var(--coefficient), 70 * 100vw / var(--design-width) * var(--mobile-coefficient), 70px * var(--mobile-coefficient));
    height: clamp(11px * var(--coefficient), 11 * 100vw / var(--design-width) * var(--mobile-coefficient), 11px * var(--mobile-coefficient));
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .process__item:nth-child(2n+1) span {
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: clamp(116px * var(--coefficient), 116 * 100vw / var(--design-width) * var(--mobile-coefficient), 116px * var(--mobile-coefficient));
  }

  .process__item:nth-child(2n)::after {
    background: url(../images/components/process-line-round-mobila.svg);
    width: clamp(61px * var(--coefficient), 61 * 100vw / var(--design-width) * var(--mobile-coefficient), 61px * var(--mobile-coefficient));
    height: clamp(122px * var(--coefficient), 122 * 100vw / var(--design-width) * var(--mobile-coefficient), 122px * var(--mobile-coefficient));
    left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
    top: clamp(39px * var(--coefficient), 39 * 100vw / var(--design-width) * var(--mobile-coefficient), 39px * var(--mobile-coefficient));
    bottom: auto;
  }

  .process__item:nth-child(2n)::before {
    background: url(../images/components/process-line-mobile.svg);
    width: clamp(70px * var(--coefficient), 70 * 100vw / var(--design-width) * var(--mobile-coefficient), 70px * var(--mobile-coefficient));
    height: clamp(11px * var(--coefficient), 11 * 100vw / var(--design-width) * var(--mobile-coefficient), 11px * var(--mobile-coefficient));
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .process__item:nth-child(2n) span {
    top: 50%;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: clamp(116px * var(--coefficient), 116 * 100vw / var(--design-width) * var(--mobile-coefficient), 116px * var(--mobile-coefficient));
  }

  .process__item:last-child::after {
    display: none;
  }

  .process__item span {
    line-height: 105%;
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    display: block;
    height: fit-content;
    white-space: normal;
    text-align: left;
  }

  .process__item img {
    width: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
    height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  }

  .cases {
    overflow-x: clip;
  }

  .cases .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0;
  }

  .cases .swiper-slide {
    width: 100% !important;
  }

  .cases__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .cases__item {
    height: clamp(433px * var(--coefficient), 433 * 100vw / var(--design-width) * var(--mobile-coefficient), 433px * var(--mobile-coefficient));
  }

  .cases__item-title {
    font-size: clamp(13px * var(--coefficient), 13 * 100vw / var(--design-width) * var(--mobile-coefficient), 13px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    top: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .cases__item-info span {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .cases .slider-navigation {
    display: flex;
  }

  .staff {
    overflow-x: clip;
  }

  .staff .swiper-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0;
  }

  .staff__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .staff__item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }

  .staff__item > img {
    width: 100%;
    height: clamp(334px * var(--coefficient), 334 * 100vw / var(--design-width) * var(--mobile-coefficient), 334px * var(--mobile-coefficient));
  }

  .staff__item-info {
    padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .staff__item-info h3 {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    margin-bottom: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
    line-height: 110%;
  }

  .staff__item-info h3 br {
    display: none;
  }

  .staff__item-info > p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    line-height: 105%;
  }

  .staff__item-info ul li {
    line-height: 105%;
  }

  .staff .slider-navigation {
    display: flex;
  }

  .faq__inner {
    flex-direction: column;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .faq .feedback-block {
    position: sticky;
    top: clamp(176px * var(--coefficient), 176 * 100vw / var(--design-width) * var(--mobile-coefficient), 176px * var(--mobile-coefficient));
  }

  .faq__items {
    flex: none;
    width: 100%;
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .faq__item {
    padding-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .faq__item-question {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .faq__item-answer {
    padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    line-height: 115%;
  }

  .contacts__inner {
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    flex-direction: column;
  }

  .contacts__items--wrapper {
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    width: 100%;
  }

  .contacts .swiper {
    width: 100%;
  }

  .contacts__map {
    width: 100%;
    height: clamp(524px * var(--coefficient), 524 * 100vw / var(--design-width) * var(--mobile-coefficient), 524px * var(--mobile-coefficient));
    border-radius: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .contacts__map--wrapper {
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    width: 100%;
  }

  .contacts__map .map,
  .contacts__map .map > ymaps {
    width: 100%;
    height: 100%;
  }

  .contacts__map-social {
    width: 100%;
    padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .contacts__map-social ul {
    gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
    width: 100%;
  }

  .contacts__map-social ul li {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .contacts .map__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    overflow: visible;
    gap: 0;
    width: clamp(329px * var(--coefficient), 329 * 100vw / var(--design-width) * var(--mobile-coefficient), 329px * var(--mobile-coefficient));
    height: auto;
    padding-right: 0;
  }

  .contacts:not(:has(.section-block)) .map__items {
    height: auto;
  }

  .contacts .map__item {
    flex-direction: column;
    height: auto;
  }

  .contacts .map__item > img {
    width: 100%;
    height: clamp(200px * var(--coefficient), 200 * 100vw / var(--design-width) * var(--mobile-coefficient), 200px * var(--mobile-coefficient));
  }

  .contacts .map__item strong {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .contacts .map__item-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: fit-content;
    flex: 1;
  }

  .contacts .map__item-info .btn {
    
    margin-top: auto;
  }

  .contacts .map__item-row {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .contacts .slider-navigation {
    display: flex;
  }

  .consultation-form__inner {
    flex-direction: column;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .consultation-form__inner > img {
    height: clamp(158px * var(--coefficient), 158 * 100vw / var(--design-width) * var(--mobile-coefficient), 158px * var(--mobile-coefficient));
    width: 100%;
  }

  .consultation-form__form {
    width: 100%;
  }
  
  .consultation-form__form .form-inputs-row:has(input[type="submit"]) {
    padding-bottom: 0;
    border-bottom: none;
  }

  .consultation-form__form h2 {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  }

  .consultation-form__form > p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .consultation-form__form > p br {
    display: none;
  }

  .hero {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .hero__inner {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-bottom: clamp(126px * var(--coefficient), 126 * 100vw / var(--design-width) * var(--mobile-coefficient), 126px * var(--mobile-coefficient));
    flex-direction: column;
    position: relative;
  }

  .hero__inner > img {
    width: 100%;
    height: clamp(255px * var(--coefficient), 255 * 100vw / var(--design-width) * var(--mobile-coefficient), 255px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .hero__content {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    flex: 1;
  }

  .hero__content-info {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .hero__content-info::before {
    background: url(../images/components/hero-bg-mobile.svg);
    width: clamp(361px * var(--coefficient), 361 * 100vw / var(--design-width) * var(--mobile-coefficient), 361px * var(--mobile-coefficient));
    height: clamp(150px * var(--coefficient), 150 * 100vw / var(--design-width) * var(--mobile-coefficient), 150px * var(--mobile-coefficient));
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .hero__content-info p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  }

  .hero__content-info button {
    width: 100%;
  }

  .hero__content .counter {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
  }

  .counter {
    width: 100%;
  }

  .counter > span {
    border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .counter-item {
    height: clamp(75px * var(--coefficient), 75 * 100vw / var(--design-width) * var(--mobile-coefficient), 75px * var(--mobile-coefficient));
  }

  .counter ul {
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    height: clamp(75px * var(--coefficient), 75 * 100vw / var(--design-width) * var(--mobile-coefficient), 75px * var(--mobile-coefficient));
  }

  .counter ul li {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .debt-types__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .debt-types__item {
    padding: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .debt-types__item h3 {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .debt-types__item p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .advantages .section-block::before {
    display: none;
  }

  .advantages .section-block::after {
    display: none;
  }

  .advantages__inner {
    flex-direction: column;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .advantages__inner > img {
    height: clamp(229px * var(--coefficient), 229 * 100vw / var(--design-width) * var(--mobile-coefficient), 229px * var(--mobile-coefficient));
    width: 100%;
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .advantages__content-text {
    line-height: 110%;
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .advantages__content-text h3 {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    line-height: 110%;
  }

  .advantages__content > ul {
    grid-template-columns: 1fr;
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .advantages__content > ul li {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__item {
    position: relative;
    height: auto;
  }

  .services__item-bg {
    display: none;
  }

  .services__item-row {
    width: clamp(72px * var(--coefficient), 72 * 100vw / var(--design-width) * var(--mobile-coefficient), 72px * var(--mobile-coefficient));
    height: clamp(223px * var(--coefficient), 223 * 100vw / var(--design-width) * var(--mobile-coefficient), 223px * var(--mobile-coefficient));
    position: absolute;
    right: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    display: none;
  }

  .services__item-row--mobile {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    background-color: #034389;
    border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    display: none;
  }

  .services__item-row--mobile svg {
    width: clamp(26px * var(--coefficient), 26 * 100vw / var(--design-width) * var(--mobile-coefficient), 26px * var(--mobile-coefficient));
    height: clamp(26px * var(--coefficient), 26 * 100vw / var(--design-width) * var(--mobile-coefficient), 26px * var(--mobile-coefficient));
  }

  .services__item-content {
    width: 100%;
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border: 2px solid #034389;
  }

  .services__item-content p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    margin-top: 0;
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__item-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__item-title svg {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .service-info__inner {
    flex-direction: column;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .service-info__img {
    min-height: clamp(428px * var(--coefficient), 428 * 100vw / var(--design-width) * var(--mobile-coefficient), 428px * var(--mobile-coefficient));
    width: 100%;
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .service-info__img > img {
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .service-info__advantages {
    gap: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .service-info__advantages li {
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .service-info__advantages li img {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .service-info__content {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .service-info__block {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .service-info__block:first-child {
    grid-column: auto;
  }

  .service-info__block:first-child .service-info__block--title {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    flex-direction: column;
    align-items: flex-start;
  }

  .service-info__block:first-child .service-info__block--title img {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .service-info__block--title {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .service-info__block--title img {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .service-info__block--text {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .service-video-img--wrapper {
    height: clamp(525px * var(--coefficient), 525 * 100vw / var(--design-width) * var(--mobile-coefficient), 525px * var(--mobile-coefficient));
  }

  .blog__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .blog__item {
    height: clamp(433px * var(--coefficient), 433 * 100vw / var(--design-width) * var(--mobile-coefficient), 433px * var(--mobile-coefficient));
  }

  .blog__item-date {
    font-size: clamp(13px * var(--coefficient), 13 * 100vw / var(--design-width) * var(--mobile-coefficient), 13px * var(--mobile-coefficient));
    top: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .blog__item-info h3 {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .blog__item-info p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    line-height: 115%;
  }

  .article__inner {
    flex-direction: column;
    gap: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }

  .article__more {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    width: 100%;
  }

  .article__more h2 {
    font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .article__more ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
  }

  .article__content {
    width: 100%;
  }

  .article__content > img {
    width: 100%;
    height: clamp(200px * var(--coefficient), 200 * 100vw / var(--design-width) * var(--mobile-coefficient), 200px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .article__content-text {
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .article__content-text h2 {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .article__content--title {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .article__content--date {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .about-hero {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .about-hero__inner {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .about-hero__inner::before {
    background: url(../images/components/page-header-bg-mobile.svg);
    left: auto;
    right: 0;
    top: 0;
    width: clamp(162px * var(--coefficient), 162 * 100vw / var(--design-width) * var(--mobile-coefficient), 162px * var(--mobile-coefficient));
    height: clamp(113px * var(--coefficient), 113 * 100vw / var(--design-width) * var(--mobile-coefficient), 113px * var(--mobile-coefficient));
  }

  .about-hero__inner::after {
    display: none;
  }

  .about-hero .breadcrumbs {
    text-align: left;
  }

  .about-hero h1 {
    text-align: left;
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .about-hero .counter {
    margin: 0 auto;
    width: 100%;
  }

  .about-hero__advantages {
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    width: 100%;
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .about-hero__advantages li img {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    top: clamp(-16px * var(--mobile-coefficient), -1600vw / var(--design-width) * var(--mobile-coefficient), -16px * var(--coefficient));
  }

  .about-hero__advantages li strong {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .about-hero__advantages li span {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .about-advantages {
    display: none;
  }

  .about-advantages__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .about-advantages__item {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .about-advantages__item img {
    width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .about-advantages__item h3 {
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .partners-row:not(:last-child) {
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .partners-row--wrapper {
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .partners-row li {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .partners-row li img {
    width: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    height: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .branches {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .branches__inner {
    flex-direction: column;
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    gap: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  }

  .branches__inner::before {
    display: none;
  }

  .branches__content > p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  }

  .branches__content > p br {
    display: none;
  }

  .branches__content button {
    margin-top: auto;
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .branches__map {
    width: 100%;
    min-height: clamp(178px * var(--coefficient), 178 * 100vw / var(--design-width) * var(--mobile-coefficient), 178px * var(--mobile-coefficient));
    height: clamp(178px * var(--coefficient), 178 * 100vw / var(--design-width) * var(--mobile-coefficient), 178px * var(--mobile-coefficient));
    border-radius: clamp(10px * var(--coefficient), 10 * 100vw / var(--design-width) * var(--mobile-coefficient), 10px * var(--mobile-coefficient));
  }

  .branches__map span {
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    right: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    top: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .contacts-hero {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .contacts-hero__inner {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    flex-direction: column;
  }

  .contacts-hero__content h1 {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .contacts-hero__content ul {
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .contacts-hero__content li {
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .contacts-hero__content li img {
    width: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    height: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .contacts-hero__content li span {
    font-size: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .contacts-hero__content li strong {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .contacts-hero__social {
    padding-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    padding-top: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .contacts-hero__social a {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .contacts-hero__social img {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .contacts-hero__map {
    width: 100%;
    min-height: clamp(174px * var(--coefficient), 174 * 100vw / var(--design-width) * var(--mobile-coefficient), 174px * var(--mobile-coefficient));
    height: clamp(174px * var(--coefficient), 174 * 100vw / var(--design-width) * var(--mobile-coefficient), 174px * var(--mobile-coefficient));
    border-radius: clamp(10px * var(--coefficient), 10 * 100vw / var(--design-width) * var(--mobile-coefficient), 10px * var(--mobile-coefficient));
  }

  .contacts-hero__map img {
    border-radius: clamp(10px * var(--coefficient), 10 * 100vw / var(--design-width) * var(--mobile-coefficient), 10px * var(--mobile-coefficient));
  }

  .contacts-hero__map span {
    padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    border-radius: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    right: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    top: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .reviews-hero {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .reviews-hero__inner {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .reviews-hero__inner::before {
    background: url(../images/components/page-header-bg-mobile.svg);
    left: auto;
    right: 0;
    top: 0;
    width: clamp(162px * var(--coefficient), 162 * 100vw / var(--design-width) * var(--mobile-coefficient), 162px * var(--mobile-coefficient));
    height: clamp(113px * var(--coefficient), 113 * 100vw / var(--design-width) * var(--mobile-coefficient), 113px * var(--mobile-coefficient));
  }

  .reviews-hero__inner::after {
    display: none;
  }

  .reviews-hero__inner > p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .reviews-hero h1 {
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    text-align: left;
  }

  .reviews-hero .breadcrumbs {
    text-align: left;
  }

  .reviews-hero .btn {
    width: fit-content;
    margin: 0 auto;
    width: 100%;
  }

  .reviews-video .slider-navigation {
    display: flex;
  }

  .reviews-video__inner {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .reviews-video__inner > svg {
    display: none;
  }

  .reviews-video .swiper {
    flex: 1;
  }

  .reviews-video .swiper-slide {
    height: clamp(403px * var(--coefficient), 403 * 100vw / var(--design-width) * var(--mobile-coefficient), 403px * var(--mobile-coefficient));
    width: clamp(227px * var(--coefficient), 227 * 100vw / var(--design-width) * var(--mobile-coefficient), 227px * var(--mobile-coefficient));
  }

  .reviews__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    position: relative;
  }

  .reviews__form {
    display: none;
  }

  .reviews__items {
    grid-template-columns: 1fr;
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin: 0;
  }

  .reviews__item {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    box-shadow: none;
  }

  .reviews__item-header {
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .reviews__item-header img {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .reviews__item-header h3 {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .reviews__item-header span {
    font-size: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .reviews__item-rate {
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .reviews__item-text {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .reviews__item-more {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .error-404 {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .error-404 .section-block::before {
    background: url(../images/components/404-bg-mobile.svg);
    left: auto;
    right: 0;
    top: 0;
    width: clamp(131px * var(--coefficient), 131 * 100vw / var(--design-width) * var(--mobile-coefficient), 131px * var(--mobile-coefficient));
    height: clamp(98px * var(--coefficient), 98 * 100vw / var(--design-width) * var(--mobile-coefficient), 98px * var(--mobile-coefficient));
  }

  .error-404 .section-block::after {
    display: none;
  }

  .error-404__inner svg {
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    margin-right: auto;
  }

  .error-404__inner h1 {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    text-align: left;
  }

  .error-404__inner p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    text-align: left;
  }

  .error-404__inner .btn {
    width: 100%;
  }

  .thanks {
    padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .thanks .section-block::before {
    background: url(../images/components/404-bg-mobile.svg);
    left: auto;
    right: 0;
    top: 0;
    width: clamp(131px * var(--coefficient), 131 * 100vw / var(--design-width) * var(--mobile-coefficient), 131px * var(--mobile-coefficient));
    height: clamp(98px * var(--coefficient), 98 * 100vw / var(--design-width) * var(--mobile-coefficient), 98px * var(--mobile-coefficient));
  }

  .thanks .section-block::after {
    display: none;
  }

  .thanks__inner h1 {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
    margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    text-align: left;
  }

  .thanks__inner p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    text-align: left;
  }

  .thanks__inner .btn {
    width: 100%;
  }

  .docs__inner {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    line-height: 115%;
  }

  .docs__inner h2 {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    padding-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  .docs .wp-block-group {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .docs-page .page-header h1 {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  }
  
  .popup {
    width: clamp(360px * var(--coefficient), 360 * 100vw / var(--design-width) * var(--mobile-coefficient), 360px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }
  
  .popup__header {
    font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
    gap: 0;
  }
  
  .popup p.subtitle {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));  
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    align-items: flex-start;
  }
  
  .popup p.subtitle br {
      display: none;
  }
  
  .popup-close {
    width: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
    height: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  }
  
  .popup form .form-inputs-row:has(input[type="submit"]) {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media (hover: hover) {
  .btn:hover {
    background-color: #02366E;
    color: #FFFFFF;
  }

  .btn-arrow:hover rect {
    fill: #034389;
    stroke: #FFFFFF;
  }

  .btn-arrow:hover path {
    stroke: #FFFFFF;
  }

  article:has(.btn-arrow):hover .btn-arrow rect {
    fill: #034389;
    stroke: #FFFFFF;
  }

  article:has(.btn-arrow):hover .btn-arrow path {
    stroke: #FFFFFF;
  }

  .breadcrumbs a:hover::after {
    width: 100%;
  }

  .pagination li a:hover,
  .pagination li .dots:hover {
    color: #212121;
  }

  .popup-close:hover path {
    stroke: #BA4644;
  }

  .accept-cookies p a:hover {
    color: #BA4644;
  }

  .accept-cookies button:hover {
    background-color: #034389;
    color: #FFFFFF;
  }

  .header__nav ul a:hover::after {
    width: 100%;
  }

  .footer__info > a:hover {
    color: #BA4644;
  }

  .footer__col nav li a:hover::after {
    width: 100%;
  }

  .footer__contacts li:has(a):hover p {
    color: #BA4644;
  }

  .services__item:hover .services__item-row rect {
    fill: #FFFFFF;
  }

  .services__item:hover .services__item-row path {
    stroke: #034389;
  }

  .services__item:hover .services__item-bg .bg-hover {
    opacity: 1;
  }

  .services__item:hover .services__item-bg .bg-default {
    opacity: 0;
  }

  .services__item:hover .services__item-title {
    color: #FFFFFF;
  }

  .services__item:hover .services__item-title svg path {
    fill: #FFFFFF;
  }

  .services__item:hover .services__item-content {
    color: #FFFFFF;
  }
}