@charset "UTF-8";
/*
Please read: https://github.com/unocss/unocss/blob/main/packages-presets/reset/tailwind-compat.md
*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: var(--un-default-border-color, #e5e7eb); /* 2 */
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS.
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 1 */
  /* Will affect the button style of most component libraries, so disable it */
  /* https://github.com/unocss/unocss/issues/2127 */
  /* background-color: transparent; !* 2 *! */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/*
Make elements with the HTML hidden attribute stay hidden by default.
*/
[hidden]:where(:not([hidden=until-found])) {
  display: none;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

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

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

[data-tippy-root] {
  max-width: calc(100vw - 10px);
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.tippy-box[data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.tippy-box[data-inertia][data-state=visible] {
  -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
          transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-v42-cyrillic_latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-v42-cyrillic_latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-sans-v42-cyrillic_latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-v42-cyrillic_latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "smileicons";
  src: url("../fonts/smileicons.ttf?r6pot7") format("truetype"), url("../fonts/smileicons.woff?r6pot7") format("woff"), url("../fonts/smileicons.svg?r6pot7#smileicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --color-red: #FF1530;
  --color-blue: #072D5C;
  --color-dark: #081A27;
  --color-light-red: #FFB8C0;
  --color-grey: #A5BED2;
  --box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

body {
  font-family: "Noto Sans", sans-serif;
  color: #3D4A60;
  line-height: 1.2;
}

body.stopped {
  overflow: hidden;
}

.page-main {
  background: #f8fbfc;
  padding-top: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  overflow: hidden;
}

.container {
  max-width: 1860px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 10px;
  }
}

.section-title {
  font-size: clamp(26px, 0.0253164557 * 100vw + 0.9113924051px, 48px);
  line-height: 1.1;
}

.default-tag {
  border-radius: 55px;
  background: #48B9BF;
  color: white;
  height: 31px;
  padding: 0 11px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.item-arrow-link {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: url(/img/magic/link-arrow.svg) center center/10px no-repeat, white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.promo-section {
  margin-bottom: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px);
}
.promo-section .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px) 1fr clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px);
}
@media (max-width: 1199px) {
  .promo-section .wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.promo-section .item {
  border-radius: 15px;
  padding: 35px 40px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #E2E8F1;
  position: relative;
  overflow: hidden;
}
.promo-section .item > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .promo-section .item {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .promo-section .item {
    padding: 15px;
  }
}
.promo-section .item-img {
  position: absolute;
  z-index: 0;
  max-width: 102%;
}
.promo-section .item-content {
  max-width: 540px;
}
.promo-section .first-slider {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.promo-section .first-slider .splide__arrows {
  position: absolute;
  bottom: 35px;
  left: 200px;
  z-index: 1;
}
@media (max-width: 991px) {
  .promo-section .first-slider .splide__arrows {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .promo-section .first-slider .splide__arrows {
    display: none;
  }
}
.promo-section .first-slider .splide__pagination {
  position: absolute;
  bottom: 54px;
  left: 340px;
  z-index: 1;
}
@media (max-width: 991px) {
  .promo-section .first-slider .splide__pagination {
    bottom: 39px;
  }
}
@media (max-width: 767px) {
  .promo-section .first-slider .splide__pagination {
    position: static;
    margin-top: 10px;
  }
  .promo-section .first-slider .splide__pagination .splide__pagination__page {
    background: rgba(61, 74, 96, 0.2);
  }
  .promo-section .first-slider .splide__pagination .splide__pagination__page.is-active {
    background: #3D4A60;
  }
}
@media (max-width: 767px) {
  .promo-section .first-slider {
    margin-bottom: 20px;
  }
}
.promo-section .item-title {
  font-size: clamp(26px, 0.0115074799 * 100vw + 14.5960874568px, 36px);
  margin-bottom: clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px);
  line-height: 1.12;
}
.promo-section .item-subtitle {
  font-size: clamp(14px, 0.0069044879 * 100vw + 7.1576524741px, 20px);
  line-height: 1.35;
}
.promo-section .big-item-btn {
  margin-top: clamp(20px, 0.0057537399 * 100vw + 14.2980437284px, 25px);
}
.promo-section .item-big {
  background: #E2E8F1;
  aspect-ratio: 1194/610;
}
.promo-section .item-big .item-img {
  right: 0;
  bottom: 0;
}
.promo-section .item-big .item-content {
  margin-top: auto;
}
.promo-section .second-slider {
  overflow: hidden;
}
.promo-section .second-slider .splide__track {
  height: 100%;
}
.promo-section .second-slider .splide__arrows {
  position: absolute;
  left: 40px;
  bottom: 35px;
  z-index: 1;
}
.promo-section .second-slider .splide__arrow {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #E5ECF2;
}
.promo-section .item-second-slider {
  height: 100%;
  color: white;
  background: -webkit-gradient(linear, left top, left bottom, from(#5DC6CB), to(#5DC6CB)), -webkit-gradient(linear, left top, left bottom, from(#E1E8F2), to(#E1E8F2));
  background: linear-gradient(#5DC6CB, #5DC6CB), linear-gradient(#E1E8F2, #E1E8F2);
}
.promo-section .item-second-slider .item-img {
  right: 0;
  bottom: 0;
}
.promo-section .item-second-slider .item-img-mobile {
  display: none;
}
.promo-section .item-bottom {
  min-height: 448px;
}
.promo-section .item-bottom .btn {
  margin-top: auto;
}
.promo-section .item-bottom .item-img {
  right: 0;
  bottom: 0;
}
.promo-section .item-bottom-3 .item-title, .promo-section .item-bottom-3 .item-subtitle {
  max-width: 238px;
}
.promo-section .item-bottom-4 {
  color: white;
  background-color: #5DC6CB;
}
.promo-section .item-bottom-4 .item-title, .promo-section .item-bottom-4 .item-subtitle {
  max-width: 258px;
}
.promo-section .item-bottom-5 {
  color: white;
  background-color: #B8BABC;
}
.promo-section .item-bottom-5 .item-title {
  margin-bottom: clamp(10px, 0.0230149597 * 100vw + -12.8078250863px, 30px);
}
.promo-section .item-bottom-5 .item-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.promo-section .item-bottom-5 .item-subtitle p {
  max-width: 189px;
}
@media (max-width: 767px) {
  .promo-section .item-bottom-5 .item-subtitle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 1399px) {
  .item-title br, .item-subtitle br {
    display: none;
  }
}
@media (max-width: 1299px) and (min-width: 1200px) {
  .promo-section .item-second-slider .item-img {
    max-width: 75%;
  }
}
@media (max-width: 1199px) {
  .promo-section .item-second-slider {
    height: initial;
    aspect-ratio: 586/586;
  }
  .promo-section .item-bottom {
    min-height: initial;
    aspect-ratio: 586/586;
  }
  .promo-section .item-second-slider .item-img {
    display: none;
    max-width: 45%;
  }
  .promo-section .item-second-slider .item-img-mobile {
    display: block;
  }
  .promo-section .item-bottom-4 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 849px) {
  .promo-section .item-bottom-5 .item-subtitle img {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .promo-section .item-small {
    aspect-ratio: 165/200;
  }
  .promo-section .item-small .item-subtitle {
    margin-bottom: 10px;
  }
  .promo-section .second-slider .splide__arrows {
    left: 15px;
    bottom: 15px;
  }
}
@media (max-width: 575px) {
  .promo-section .item-small .item-subtitle {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .promo-section .item-small .item-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .promo-section .second-slider .splide__arrow {
    width: 30px;
  }
  .promo-section .second-slider .splide__arrow svg {
    width: 12px;
  }
  .promo-section .item-big {
    min-height: 500px;
    aspect-ratio: initial;
  }
  .promo-section .item-big .item-content {
    margin-top: 0;
  }
  .promo-section .item-big .item-img {
    max-width: initial;
    width: 160%;
  }
  .promo-section .item-second-slider .item-img {
    max-width: 50%;
  }
  .promo-section .item-title, .promo-section .item-subtitle {
    max-width: initial !important;
  }
  .promo-section .item-bottom .item-img {
    max-width: initial;
    width: 110%;
  }
  .promo-section .item-bottom-5 .item-subtitle img {
    width: 79px;
    margin-top: 12px;
  }
  .promo-section .item-bottom-5 .item-subtitle p {
    max-width: 92px;
  }
  .promo-section .first-slider .splide__track {
    overflow: visible;
  }
}
@media (max-width: 449px) {
  .promo-section .item-big {
    min-height: 500px;
  }
}
@media (max-width: 399px) {
  .promo-section .item-second-slider .item-img {
    max-width: 40%;
  }
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 0 25px;
  max-width: 100%;
  color: white;
  height: 52px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 70px;
  font-weight: 500;
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  background: #F85E76;
}

.btn-plus {
  gap: 0;
  background: rgba(61, 74, 96, 0.4);
  padding: 0 20px;
}
.btn-plus span {
  display: block;
  width: 0;
  overflow: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #3D4A60;
}
.btn-plus svg path {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn-plus:hover {
  background: white;
}
.btn-plus:hover svg path {
  fill: #3D4A60;
}
.btn-plus:hover span {
  width: 100px;
}
@media (max-width: 575px) {
  .btn-plus {
    height: 30px;
    background: white;
    padding: 0 10px;
  }
  .btn-plus span {
    font-size: 12px;
  }
  .btn-plus svg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .btn-plus svg path {
    fill: #3D4A60;
  }
  .btn-plus:hover {
    padding: 0 15px;
  }
  .btn-plus:hover span {
    width: 70px;
  }
}

.btn-big-section-link {
  height: clamp(70px, 0.0276179517 * 100vw + 42.6306098964px, 94px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  border-radius: 16px;
  background: #EDF0F7;
  padding: 0 20px;
  max-width: 100%;
  width: 1190px;
  font-size: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  margin: 0 auto;
}

.splide__arrow {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.splide__arrow[disabled] {
  opacity: 0.5;
}

.splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  pointer-events: initial;
}

.splide__pagination__page {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
}
.splide__pagination__page.is-active {
  background: white;
}

.splide__pagination-dark .splide__pagination__page {
  background: rgba(61, 74, 96, 0.2);
}
.splide__pagination-dark .splide__pagination__page.is-active {
  background: #3D4A60;
}

@media (max-width: 575px) {
  .splide__pagination__page {
    width: 6px;
  }
  .splide__pagination {
    gap: 5px;
  }
}
.offers-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0;
}
.offers-section .wrapper {
  border-radius: 20px;
  background: #E3E8EF;
  padding: clamp(30px, 0.0978135788 * 100vw + -66.9332566168px, 115px) clamp(10px, 0.0230149597 * 100vw + -12.8078250863px, 30px) clamp(30px, 0.1380897583 * 100vw + -106.8469505178px, 150px);
  overflow: hidden;
}
.offers-section .splide {
  max-width: 1250px;
  margin: 0 auto;
}
.offers-section .splide__slide.is-active .item {
  -webkit-box-shadow: 0px 14px 30px 0px #ced7e3;
          box-shadow: 0px 14px 30px 0px #ced7e3;
}
.offers-section .top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(30px, 0.0184119678 * 100vw + 11.753739931px, 46px);
}
.offers-section .item {
  border-radius: 25px;
  padding: clamp(20px, 0.0080552359 * 100vw + 12.0172612198px, 27px) clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px) 20px;
  background: linear-gradient(-66.636deg, #FFFFFF 0%, #EDD1BB 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.offers-section .item > * {
  position: relative;
  z-index: 1;
}
.offers-section .item-img {
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 52%;
}
.offers-section .item-date {
  border-radius: 8px;
  padding: 5px 6px;
  font-weight: 600;
  font-size: 12px;
  background: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.offers-section .item-date:before {
  content: "";
  width: 19px;
  aspect-ratio: 1;
  background: url(/img/offers/percent.svg) center center/contain no-repeat;
}
.offers-section .item-title {
  margin-top: 16px;
  font-size: clamp(17px, 0.0080552359 * 100vw + 9.0172612198px, 24px);
  line-height: 1.375;
}
.offers-section .item-list {
  margin-top: 15px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(30px, 0.0345224396 * 100vw + -4.2117376295px, 60px);
}
.offers-section .item-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.offers-section .item-list li:before {
  content: "";
  display: block;
  width: 17px;
  height: 15px;
  background: url(/img/offers/list-check.svg) center center/contain no-repeat;
}
.offers-section .item-bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.offers-section .item-price-old {
  font-weight: 600;
  color: rgba(61, 74, 96, 0.3);
  text-decoration: line-through;
}
.offers-section .item-price-current {
  margin-top: 10px;
  font-weight: 600;
  font-size: clamp(24px, 0.0138089758 * 100vw + 10.3153049482px, 36px);
  line-height: 0.8;
}
.offers-section .item-price-current span {
  font-size: clamp(18px, 0.0046029919 * 100vw + 13.4384349827px, 22px);
}
.offers-section .item-main {
  max-width: 52%;
}
.offers-section .item-2 {
  background-image: linear-gradient(-61.309deg, #FFFFFF 0%, #F85E76 100%);
}
.offers-section .item-3 {
  background-image: linear-gradient(-66.636deg, #FFFFFF 0%, #5DC6CB 100%);
}
.offers-section .splide__pagination {
  margin-top: 15px;
}
.offers-section .splide__track {
  overflow: initial;
}

@media (max-width: 575px) {
  .offers-section .item-main {
    max-width: initial;
  }
  .offers-section .item-img {
    position: static;
    height: 160px;
    margin: 20px auto 0;
    -webkit-transform: initial;
            transform: initial;
    max-width: 100%;
  }
}
.awards-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0;
  overflow: hidden;
}
.awards-section .main-item {
  border-radius: 20px;
  background: white;
  padding: clamp(30px, 0.0690448792 * 100vw + -38.4234752589px, 90px) clamp(20px, 0.1093210587 * 100vw + -88.33716916px, 115px);
  position: relative;
  aspect-ratio: 1495/702;
  overflow: hidden;
}
.awards-section .main-item-title {
  line-height: 1.0625;
}
.awards-section .main-slider {
  max-width: 1495px;
  margin: 0 auto;
}
.awards-section .main-slider .splide__track {
  overflow: initial;
}
.awards-section .main-slider .splide__pagination {
  margin-top: 15px;
}
.awards-section .main-item-content {
  max-width: 50%;
}
.awards-section .main-item-text {
  margin-top: 20px;
  font-size: clamp(14px, 0.0069044879 * 100vw + 7.1576524741px, 20px);
  line-height: 1.35;
}
.awards-section .main-item-img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 102%;
}
.awards-section .thumb-slider {
  margin: 20px auto 40px;
  max-width: 1315px;
}
.awards-section .thumb-slider .splide__track {
  overflow: visible;
}
.awards-section .thumb-item-text {
  opacity: 0;
  font-size: clamp(10px, 0.002301496 * 100vw + 7.7192174914px, 12px);
  margin-top: 10px;
  line-height: 1.36;
}
.awards-section .thumb-item-title {
  font-size: clamp(12px, 0.002301496 * 100vw + 9.7192174914px, 14px);
  margin-top: 10px;
  line-height: 1.375;
}
.awards-section .thumb-item {
  border-radius: 20px;
  background: #EEF1F7;
  padding: 20px;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.awards-section .thumb-item-top {
  position: relative;
  height: 160px;
}
.awards-section .thumb-item-img {
  position: absolute;
  inset: 0;
  margin: auto auto auto 0;
  max-width: 100%;
  max-height: 100%;
}
.awards-section .thumb-item-img-active {
  display: none;
}
.awards-section .thumb-item.is-active {
  background: white;
  -webkit-box-shadow: 0px 4px 40px 0px rgba(87, 139, 141, 0.25);
          box-shadow: 0px 4px 40px 0px rgba(87, 139, 141, 0.25);
}
.awards-section .thumb-item.is-active .thumb-item-text {
  opacity: 0.7;
}
.awards-section .thumb-item.is-active .thumb-item-img-initial {
  display: none;
}
.awards-section .thumb-item.is-active .thumb-item-img-active {
  display: block;
}
.awards-section .thumb-item.is-prev {
  opacity: 0;
  pointer-events: none;
}
.awards-section .thumb-navigation {
  height: 100%;
  width: 292px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.awards-section .thumb-navigation .splide__arrow {
  border: 1px solid #E5ECF2;
}
.awards-section .thumb-navigation-title {
  font-size: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
}

@media (max-width: 991px) {
  .awards-section .thumb-navigation {
    position: static;
    -webkit-transform: initial;
            transform: initial;
    padding: 0;
    width: auto;
    height: auto;
    margin: 40px 0 20px;
  }
  .awards-section .thumb-navigation br {
    display: none;
  }
  .awards-section .thumb-item.is-prev {
    opacity: initial;
    pointer-events: initial;
  }
  .awards-section .thumb-item {
    height: auto !important;
  }
  .awards-section .thumb-slider {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .awards-section .main-item-content {
    max-width: initial;
  }
  .awards-section .main-item {
    min-height: initial;
    aspect-ratio: initial;
    padding-bottom: 0;
    height: 100%;
  }
  .awards-section .main-item-img {
    position: static;
    height: 239px;
    margin: 20px auto 0;
  }
  .awards-section .sliders-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .awards-section .thumb-navigation {
    margin: 0 0 30px;
  }
  .awards-section .thumb-slider {
    margin: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .awards-section .btn-big-section-link {
    margin-top: 30px;
  }
  .awards-section .splide {
    max-width: 100%;
  }
  .awards-section .thumb-navigation-title {
    font-size: clamp(26px, 0.0253164557 * 100vw + 0.9113924051px, 48px);
  }
}
@media (max-width: 575px) {
  .awards-section .thumb-item-top {
    height: 140px;
  }
  .awards-section .thumb-item-img {
    margin: auto;
  }
  .awards-section .thumb-item {
    text-align: center;
  }
  .awards-section .main-item-title {
    font-size: 20px;
  }
}
.magic-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0;
  overflow: hidden;
}
.magic-section .wrapper {
  border-radius: 20px;
  background: linear-gradient(114.21deg, #B5B0A5 0%, #EDEDED 97%);
  padding: clamp(30px, 0.080552359 * 100vw + -49.8273878021px, 100px) clamp(10px, 0.0230149597 * 100vw + -12.8078250863px, 30px);
}
.magic-section .splide {
  max-width: 1218px;
  margin: 0 auto;
}
.magic-section .splide__track {
  overflow: visible;
}
.magic-section .item {
  background: white;
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  overflow: hidden;
  padding: clamp(20px, 0.0172612198 * 100vw + 2.8941311853px, 35px) clamp(15px, 0.0230149597 * 100vw + -7.8078250863px, 35px) 15px;
  min-height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.magic-section .item > * {
  position: relative;
  z-index: 1;
}
.magic-section .item-tags-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.magic-section .item-tags-wrapper .default-tag:nth-child(2) {
  background: #E8BF9F;
  color: #3D4A60;
}
.magic-section .item-title {
  margin-top: 60px;
  font-size: clamp(22px, 0.0092059839 * 100vw + 12.8768699655px, 30px);
  line-height: 1.37;
}
.magic-section .item-subtitle {
  margin-top: 10px;
  opacity: 0.7;
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  margin-bottom: 40px;
  line-height: 1.31;
}
.magic-section .item-bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.magic-section .item-review-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  font-weight: 600;
  font-size: clamp(15px, 0.003452244 * 100vw + 11.5788262371px, 18px);
}
.magic-section .item-review-count:before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url(/img/magic/review-star.svg) center center/contain no-repeat;
}
.magic-section .item-medals-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.magic-section .item-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.magic-section .item.is-prev {
  opacity: 0;
  pointer-events: none;
}
.magic-section .navigation-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 470px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}
.magic-section .navigation-title {
  color: white;
  line-height: 1.0625;
}
.magic-section .navigation-subtitle {
  margin-top: 20px;
  color: white;
  font-size: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  margin-bottom: 20px;
  line-height: 1.35;
}
.magic-section .navigation-bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.magic-section .splide__pagination {
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .magic-section .navigation-wrapper {
    position: static;
    height: initial;
    width: initial;
    margin-bottom: 20px;
    padding: 0;
  }
  .magic-section .item.is-prev {
    opacity: initial;
    pointer-events: initial;
  }
  .magic-section .wrapper {
    overflow: hidden;
  }
}
@media (max-width: 575px) {
  .magic-section .item {
    aspect-ratio: 470/700;
    min-height: initial;
  }
  .magic-section .item-medals-wrapper img {
    width: 25px;
  }
  .magic-section .item-medals-wrapper {
    gap: 5px;
  }
  .magic-section .item-arrow-link {
    width: 25px;
    background-size: 8px;
  }
}
.team-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0 0;
}
.team-section .section-title {
  text-align: center;
}
.team-section .subtitle {
  margin: 20px auto 0;
  max-width: 745px;
  font-size: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  text-align: center;
  line-height: 1.35;
}
.team-section .splide {
  margin-top: 40px;
}
.team-section .splide__track {
  overflow: visible;
}
.team-section .item {
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  background: white;
  padding: clamp(20px, 0.0172612198 * 100vw + 2.8941311853px, 35px) clamp(15px, 0.0230149597 * 100vw + -7.8078250863px, 35px) 20px;
  aspect-ratio: 436/538;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.team-section .item > * {
  position: relative;
  z-index: 1;
}
.team-section .item .default-tag {
  background: #3D4A60;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.team-section .item:hover {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
          box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
}
.team-section .splide.is-initialized:not(.is-active) .splide__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-section .item-img {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  max-width: 102%;
  max-height: 102%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  z-index: 0;
}
.team-section .item-title {
  margin-top: auto;
  font-size: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  line-height: 1.37;
}
.team-section .item-bottom {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.team-section .item-subtitle {
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  opacity: 0.7;
  line-height: 1.32;
}
.team-section .btn-big-section-link {
  margin-top: 40px;
}
.team-section .big-logo-section {
  width: 100%;
}
.team-section .splide__pagination {
  margin-top: 15px;
}

@media (max-width: 991px) {
  .team-section .splide.is-initialized:not(.is-active) .splide__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.banner-slider .banner {
  min-height: 92px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  font-weight: 500;
  font-size: clamp(14px, 0.0126582278 * 100vw + 1.4556962025px, 25px);
  color: white;
  position: relative;
  overflow: hidden;
}
.banner-slider .banner > * {
  position: relative;
  z-index: 1;
}
.banner-slider .banner img {
  z-index: 0;
}
.banner-slider .banner b {
  text-transform: uppercase;
  font-weight: inherit;
}
.banner-slider .banner-red {
  background: linear-gradient(90.119deg, #F62D4C 0%, #FB8799 100%), linear-gradient(#72DBD4, #72DBD4);
}
.banner-slider .splide__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
.banner-slider .splide__arrow {
  width: 30px;
  background: rgba(255, 255, 255, 0.7);
  pointer-events: initial;
}
.banner-slider .splide__arrow svg {
  width: 10px;
  aspect-ratio: 1;
}
.banner-slider:hover .splide__arrows {
  opacity: 1;
}
.banner-slider .banner-btn {
  height: clamp(40px, 0.0115074799 * 100vw + 28.5960874568px, 50px);
  font-weight: 400;
  background: white;
  color: #FF5274;
  text-align: center;
}
.banner-slider .small-text {
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  font-weight: 400;
  max-width: 150px;
}
.banner-slider .banner-grey {
  background: linear-gradient(90.119deg, #6A6E71 0%, #B8BABC 100%), linear-gradient(#72DBD4, #72DBD4);
}
.banner-slider .banner-grey b {
  color: #E8BF9F;
}
.banner-slider .banner-yellow {
  background: linear-gradient(90.119deg, #E8BF9F 54%, #E6D1C0 100%), linear-gradient(#E8BF9F, #E8BF9F);
}
.banner-slider .banner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.banner-slider .banner-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner-slider .banner-list li:before {
  content: "";
  display: block;
  width: clamp(15px, 0.0080552359 * 100vw + 7.0172612198px, 22px);
  aspect-ratio: 1;
  background: url(/img/infobar/list-check.svg) center/contain no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 991px) {
  .banner-slider .banner {
    padding: 10px;
  }
  .banner-slider .banner img {
    display: none;
  }
  .banner-slider .banner img.mobile-bg {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .banner-slider .banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
    font-size: 12px;
    line-height: 1;
  }
  .banner-slider .banner .small-text {
    display: none;
  }
  .banner-slider .splide__arrows {
    opacity: 1 !important;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0;
    -webkit-transform: initial;
            transform: initial;
    left: initial;
    top: initial;
    right: 10px;
    bottom: 10px;
  }
  .banner-slider .banner-btn {
    height: 30px;
    font-size: 12px;
  }
}
.advantages-section {
  margin: 0 0 clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px);
}
.advantages-section .section-title {
  text-align: center;
  margin-bottom: clamp(30px, 0.0345224396 * 100vw + -4.2117376295px, 60px);
}
.advantages-section .splide.is-initialized:not(.is-active) .splide__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px) 1fr clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
}
.advantages-section .item {
  border-radius: 15px;
  padding: clamp(20px, 0.0230149597 * 100vw + -2.8078250863px, 40px) clamp(15px, 0.0287686997 * 100vw + -13.5097813579px, 40px);
  overflow: hidden;
  background: linear-gradient(#E2E8F1, #E2E8F1), linear-gradient(157.775deg, #35A1A6 0%, #83D4D7 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.advantages-section .item > * {
  position: relative;
  z-index: 1;
}
.advantages-section .item-title {
  font-size: clamp(20px, 0.0184119678 * 100vw + 1.753739931px, 36px);
  margin-bottom: clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
  line-height: 1.12;
}
.advantages-section .item-subtitle {
  font-size: clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
  margin-bottom: 15px;
  line-height: 1.35;
}
.advantages-section .item-btn {
  margin-top: auto;
  background: rgba(61, 74, 96, 0.3);
  font-weight: 400;
  gap: 15px;
}
.advantages-section .item-btn:after {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 1;
  background: url(/img/advantages/btn-arrow.svg) center/contain no-repeat;
}
.advantages-section .item-btn:hover {
  background: white;
  color: #3D4A60;
}
.advantages-section .item-btn:hover:after {
  -webkit-filter: brightness(0) saturate(100%) invert(25%) sepia(9%) saturate(1792%) hue-rotate(179deg) brightness(95%) contrast(83%);
          filter: brightness(0) saturate(100%) invert(25%) sepia(9%) saturate(1792%) hue-rotate(179deg) brightness(95%) contrast(83%);
}
.advantages-section .item-img {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 102%;
}
.advantages-section .item-1 {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  min-height: 893px;
}
.advantages-section .item-1 .item-title {
  max-width: 393px;
}
.advantages-section .item-1 .item-subtitle {
  max-width: 346px;
}
.advantages-section .item-2 .item-title {
  max-width: 423px;
}
.advantages-section .item-2 .item-subtitle {
  max-width: 295px;
}
.advantages-section .item-3 {
  background: -webkit-gradient(linear, left top, left bottom, from(#EEE5DA), to(#EEE5DA)), -webkit-gradient(linear, left top, left bottom, from(#E1E8F2), to(#E1E8F2));
  background: linear-gradient(#EEE5DA, #EEE5DA), linear-gradient(#E1E8F2, #E1E8F2);
}
.advantages-section .item-3 .item-title {
  max-width: 410px;
}
.advantages-section .item-3 .item-subtitle {
  max-width: 385px;
}
.advantages-section .item-3 .item-img {
  position: static;
  margin-bottom: 20px;
}
.advantages-section .item-4 {
  background: -webkit-gradient(linear, left top, left bottom, from(#EEE5DA), to(#EEE5DA)), -webkit-gradient(linear, left top, left bottom, from(#E1E8F2), to(#E1E8F2));
  background: linear-gradient(#EEE5DA, #EEE5DA), linear-gradient(#E1E8F2, #E1E8F2);
}
.advantages-section .item-4 .item-title {
  max-width: 473px;
}
.advantages-section .item-4 .item-subtitle {
  max-width: 228px;
}
.advantages-section .item-5 .item-title {
  max-width: 372px;
}
.advantages-section .item-5 .item-subtitle {
  max-width: 242px;
}
.advantages-section .splide__pagination {
  margin-top: 15px;
}

@media (max-width: 1599px) {
  .advantages-section .item-title {
    font-size: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  }
  .advantages-section .item-subtitle {
    font-size: clamp(15px, 0.003452244 * 100vw + 11.5788262371px, 18px);
  }
  .advantages-section .item-3 .item-img {
    width: 200px;
  }
  .advantages-section .item-small .item-img {
    max-width: 80%;
  }
  .advantages-section .item-1 {
    min-height: 750px;
  }
}
@media (max-width: 1399px) {
  .advantages-section .item-1 {
    min-height: 700px;
  }
}
@media (max-width: 1199px) {
  .advantages-section .item-1 {
    min-height: 660px;
  }
  .advantages-section .item-1 .item-img {
    max-width: 120%;
  }
}
@media (max-width: 991px) {
  .advantages-section .splide.is-initialized:not(.is-active) .splide__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .advantages-section .item {
    min-height: 500px !important;
  }
  .advantages-section {
    margin-top: 20px;
  }
  .advantages-section .item-1 .item-img {
    max-width: 80%;
  }
  .advantages-section .item-small .item-img {
    max-width: 120%;
  }
  .advantages-section .splide__track {
    overflow: visible;
  }
}
.services-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0;
}
.services-section .wrapper {
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  background: white;
  padding: clamp(30px, 0.0552359033 * 100vw + -24.7387802071px, 78px) 0 clamp(30px, 0.0759493671 * 100vw + -45.2658227848px, 96px);
}
.services-section .section-title {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.services-section .divider {
  height: 1px;
  background: #EDF0F7;
  margin: clamp(20px, 0.0276179517 * 100vw + -7.3693901036px, 44px) 0 clamp(20px, 0.0138089758 * 100vw + 6.3153049482px, 32px);
}
.services-section .splide.is-initialized:not(.is-active) .splide__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.services-section .item {
  padding: 0 clamp(20px, 0.0299194476 * 100vw + -9.6501726122px, 46px);
}
.services-section .item-title {
  font-size: clamp(22px, 0.0138089758 * 100vw + 8.3153049482px, 34px);
  line-height: 1.35;
}
.services-section .item-advantage {
  margin-top: 9px;
  background: rgba(9, 106, 100, 0.08);
  min-height: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: clamp(12px, 0.0046029919 * 100vw + 7.4384349827px, 16px);
  gap: 10px;
}
.services-section .item-advantage:before {
  content: "";
  display: block;
  width: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  aspect-ratio: 1;
  background: url(/img/services/plus-icon.svg) center/contain no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.services-section .item-list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-size: clamp(15px, 0.003452244 * 100vw + 11.5788262371px, 18px);
  list-style-type: "—";
  padding-left: 20px;
  line-height: 1.39;
}
.services-section .item-list li {
  padding-left: 8px;
}
.services-section .item-list li span {
  border-radius: 31px;
  padding: 3px 6px 5px;
  color: white;
  background: #E8BF9F;
  font-size: 13px;
  font-weight: 600;
}
.services-section .item-list li span.red-tag {
  background: #F85E76;
}
.services-section .item-list li::marker {
  color: #9AB5CA;
}
.services-section .splide__track {
  overflow: visible;
}

@media (max-width: 1199px) {
  .services-section .splide.is-initialized:not(.is-active) .splide__list {
    -ms-grid-columns: -webkit-max-content 0 -webkit-max-content;
    -ms-grid-columns: max-content 0 max-content;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 50px 0;
  }
}
@media (max-width: 767px) {
  .services-section .splide.is-initialized:not(.is-active) .splide__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    justify-items: center;
  }
}
.task-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0;
}
.task-section .wrapper {
  max-width: 1260px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 803fr clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px) 437fr;
  grid-template-columns: 803fr 437fr;
  gap: clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
}
.task-section .wrapper-left {
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  background: #EEF1F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.task-section .wrapper-left-title {
  font-size: clamp(26px, 0.0345224396 * 100vw + -8.2117376295px, 56px);
  margin: clamp(20px, 0.0207134638 * 100vw + -0.5270425777px, 38px) clamp(15px, 0.0264672037 * 100vw + -11.2289988493px, 38px);
  line-height: 1.12;
}
.task-section .wrapper-left-bottom {
  border-radius: clamp(20px, 0.0057537399 * 100vw + 14.2980437284px, 25px);
  background: white;
  padding: clamp(20px, 0.0069044879 * 100vw + 13.1576524741px, 26px) clamp(15px, 0.0161104718 * 100vw + -0.9654775604px, 29px) clamp(20px, 0.0161104718 * 100vw + 4.0345224396px, 34px);
  margin: clamp(40px, 0.0460299194 * 100vw + -5.6156501726px, 80px) 10px 10px;
}
.task-section .wrapper-left-bottom-text {
  font-size: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  margin-bottom: 26px;
  line-height: 1.35;
}
.task-section .wrapper-left-bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.task-section .wrapper-left-bottom-list li {
  background: #EBF3F3;
  padding: 10px 20px;
  font-weight: 600;
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  border-radius: 10px;
}
.task-section .wrapper-right {
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  overflow: hidden;
  background: linear-gradient(168.038deg, #B5B0A5 0%, #EDEDED 97%), linear-gradient(#CCC8C1, #CCC8C1);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.task-section .wrapper-right > * {
  position: relative;
  z-index: 1;
}
.task-section .wrapper-right-tags {
  margin: clamp(20px, 0.0069044879 * 100vw + 13.1576524741px, 26px) clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.task-section .wrapper-right-tags .default-tag:nth-child(2) {
  color: #3D4A60;
  background: white;
}
.task-section .wrapper-right-bottom {
  background-color: rgba(255, 255, 255, 0.3);
  margin: 10px;
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  padding: 19px clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
  backdrop-filter: blur(10px);
}
.task-section .wrapper-right-bottom-title {
  font-size: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  line-height: 1.37;
}
.task-section .wrapper-right-bottom-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  opacity: 0.7;
  list-style-image: url(/img/task/list-check.svg);
  padding-left: 25px;
  line-height: 1.31;
}
.task-section .wrapper-right-img {
  max-width: initial;
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 991px) {
  .task-section .wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .task-section .wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .task-section .wrapper-right {
    aspect-ratio: 437/567;
  }
}
.reviews-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0 clamp(60px, 0.0632911392 * 100vw + -2.7215189873px, 115px);
}
.reviews-section .section-title {
  text-align: center;
}
.reviews-section .subtitle {
  margin-top: 12px;
  text-align: center;
  font-size: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  opacity: 0.7;
  line-height: 1.31;
}
.reviews-section .splide {
  margin-top: clamp(30px, 0.0172612198 * 100vw + 12.8941311853px, 45px);
}
.reviews-section .splide__track {
  overflow: visible;
}
.reviews-section .splide.is-initialized:not(.is-active) .splide__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(10px, 0.0057537399 * 100vw + 4.2980437284px, 15px) 1fr clamp(10px, 0.0057537399 * 100vw + 4.2980437284px, 15px) 1fr clamp(10px, 0.0057537399 * 100vw + 4.2980437284px, 15px) 1fr clamp(10px, 0.0057537399 * 100vw + 4.2980437284px, 15px) 1fr clamp(10px, 0.0057537399 * 100vw + 4.2980437284px, 15px) 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 0.0057537399 * 100vw + 4.2980437284px, 15px);
}
.reviews-section .item {
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  background: #EEF1F8;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.reviews-section .item:hover {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
          box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
}
.reviews-section .item-top {
  margin: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px) clamp(15px, 0.0172612198 * 100vw + -2.1058688147px, 30px) clamp(60px, 0.0517836594 * 100vw + 8.6823935558px, 105px);
}
.reviews-section .item-bottom {
  border-radius: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
  margin: 12px 14px;
  background: white;
  padding: 12px clamp(15px, 0.003452244 * 100vw + 11.5788262371px, 18px) 17px;
}
.reviews-section .item-rating {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-max-content 6px auto;
  -ms-grid-columns: max-content 6px auto;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.reviews-section .item-rating span {
  color: #5DC6CB;
  font-weight: bold;
  font-size: clamp(18px, 0.0345224396 * 100vw + -16.2117376295px, 48px);
}
.reviews-section .item-rating img {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.reviews-section .item-reviews-count {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 0.0046029919 * 100vw + 9.4384349827px, 18px);
  color: rgba(61, 74, 96, 0.7);
  line-height: 1.31;
}
.reviews-section .item-reviews-count:after {
  content: "";
  display: block;
  width: clamp(10px, 0.0046029919 * 100vw + 5.4384349827px, 14px);
  aspect-ratio: 1;
  background: url(/img/reviews/link-arrow.svg) center/contain no-repeat;
}
.reviews-section .splide__pagination {
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .reviews-section .splide.is-initialized:not(.is-active) .splide__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.clinic-section {
  margin-top: clamp(60px, 0.0632911392 * 100vw + -2.7215189873px, 115px);
  overflow: hidden;
}
.clinic-section .splide {
  max-width: 1260px;
  margin: 0 auto;
}
.clinic-section .splide__track {
  overflow: visible;
}
.clinic-section .slider-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(30px, 0.0287686997 * 100vw + 1.4902186421px, 55px);
}
.clinic-section .splide__arrow {
  border: 1px solid #E5ECF2;
}
.clinic-section .item-img {
  aspect-ratio: 1264/767;
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.clinic-section .item.is-prev .item-img, .clinic-section .item.is-next .item-img {
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
}
.clinic-section .item.is-prev .item-img {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.clinic-section .item.is-next .item-img {
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.clinic-section .splide__pagination {
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .clinic-section .item.is-prev .item-img, .clinic-section .item.is-next .item-img {
    -webkit-transform: initial;
            transform: initial;
  }
  .clinic-section .item-img {
    -webkit-transition: initial;
    transition: initial;
  }
}
.patient-section {
  margin-top: clamp(70px, 0.080552359 * 100vw + -9.8273878021px, 140px);
}
.patient-section .container {
  max-width: 1320px;
}
.patient-section .subtitle {
  margin-top: 16px;
  font-size: clamp(16px, 0.0046029919 * 100vw + 11.4384349827px, 20px);
  opacity: 0.7;
  line-height: 1.31;
}
.patient-section .news-wrapper {
  margin-top: clamp(30px, 0.0115074799 * 100vw + 18.5960874568px, 40px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 760fr clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px) 479fr;
  grid-template-columns: 760fr 479fr;
  grid-auto-rows: 1fr;
  gap: clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px);
}
.patient-section .news-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: white;
  padding: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px) clamp(15px, 0.0172612198 * 100vw + -2.1058688147px, 30px) clamp(20px, 0.003452244 * 100vw + 16.5788262371px, 23px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.patient-section .news-item > * {
  position: relative;
  z-index: 1;
}
.patient-section .news-item-img {
  z-index: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.patient-section .patient-tag {
  border-radius: 10px;
  background: white;
  padding: 5.5px 10px;
  font-size: 14px;
  color: #3D4A60;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.patient-section .news-item-date {
  margin-top: auto;
  font-size: clamp(14px, 0.0046029919 * 100vw + 9.4384349827px, 18px);
}
.patient-section .news-item-title {
  margin-top: 5px;
  font-size: clamp(18px, 0.0069044879 * 100vw + 11.1576524741px, 24px);
  max-width: calc(100% - 120px);
  line-height: 1.375;
}
.patient-section .news-slider {
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 20px;
}
.patient-section .news-slider:hover {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.patient-section .news-slider .splide__arrows {
  position: absolute;
  right: clamp(15px, 0.0172612198 * 100vw + -2.1058688147px, 30px);
  bottom: clamp(20px, 0.003452244 * 100vw + 16.5788262371px, 23px);
  z-index: 1;
}
.patient-section .news-slider .splide__arrow {
  background: transparent;
  border: 1px solid white;
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.patient-section .news-slider .splide__track {
  height: 100%;
}
.patient-section .expert-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 324fr 155fr;
  grid-template-columns: 324fr 155fr;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 20px;
}
.patient-section .expert-item:hover {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
          box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
}
.patient-section .expert-item-left {
  border-radius: 20px;
  background: #EEF1F7;
  padding: 20px clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.patient-section .expert-item-title {
  margin-top: auto;
  padding-top: 15px;
  font-size: clamp(14px, 0.0046029919 * 100vw + 9.4384349827px, 18px);
  line-height: 1.39;
}
.patient-section .expert-item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.patient-section .videos-wrapper {
  margin-top: clamp(30px, 0.0115074799 * 100vw + 18.5960874568px, 40px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px) 1fr clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 0.0115074799 * 100vw + -1.4039125432px, 20px);
}
.patient-section .videos-item {
  overflow: hidden;
  border-radius: 20px;
  background: url(/img/patient/video-bg-paint.svg) right top no-repeat, linear-gradient(65.057deg, #5DC6CB 0%, #0C7381 100%);
  color: white;
  position: relative;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.patient-section .videos-item:hover {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
          box-shadow: 0px 20px 40px 0px rgba(87, 139, 141, 0.15);
}
.patient-section .videos-item > * {
  position: relative;
  z-index: 1;
}
.patient-section .videos-item-img {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}
.patient-section .videos-item-top {
  padding: 18px clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
}
.patient-section .videos-item-title {
  margin-top: 7px;
  font-size: clamp(18px, 0.0069044879 * 100vw + 11.1576524741px, 24px);
  max-width: 238px;
}
.patient-section .videos-item-bottom {
  margin: auto 10px 10px;
  padding: 10px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.patient-section .videos-item-bottom:after {
  content: "";
  display: block;
  width: clamp(30px, 0.0230149597 * 100vw + 7.1921749137px, 50px);
  aspect-ratio: 1;
  background: url(/img/patient/play-icon.svg) center/contain no-repeat;
}
.patient-section .services-slider {
  margin-top: clamp(50px, 0.0575373993 * 100vw + -7.0195627158px, 100px);
}
.patient-section .services-slider .splide__pagination {
  margin-top: 15px;
}
.patient-section .services-item {
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(20px, 0.0230149597 * 100vw + -2.8078250863px, 40px) clamp(15px, 0.0287686997 * 100vw + -13.5097813579px, 40px);
  position: relative;
  color: white;
}
.patient-section .services-item > * {
  position: relative;
  z-index: 1;
}
.patient-section .services-item-img {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 105%;
}
.patient-section .services-item-img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.patient-section .services-item-img-mobile {
  display: none;
}
.patient-section .services-item-content {
  max-width: 403px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.patient-section .services-item-title {
  font-size: clamp(22px, 0.0207134638 * 100vw + 1.4729574223px, 40px);
  line-height: 1.13;
}
.patient-section .services-item-text {
  margin-top: 12px;
  font-size: clamp(15px, 0.0057537399 * 100vw + 9.2980437284px, 20px);
  margin-bottom: 40px;
  line-height: 1.32;
}
.patient-section .services-item-bottom {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(15px, 0.0172612198 * 100vw + -2.1058688147px, 30px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.patient-section .services-item-btn {
  background: white;
  color: #3D4A60;
  font-weight: 400;
}
.patient-section .services-item-link {
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  text-decoration: underline;
}
.patient-section .big-logo-section {
  width: 100%;
}

@media (max-width: 991px) {
  .patient-section .services-item-img {
    display: none;
    max-width: 45%;
  }
  .patient-section .services-item-img-mobile {
    display: block;
  }
  .patient-section .services-slider .splide__track {
    overflow: visible;
  }
  .patient-section .services-item-content {
    max-width: 50%;
  }
}
@media (max-width: 819px) {
  .patient-section .news-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-auto-rows: initial;
  }
  .patient-section .news-slider {
    grid-row: initial;
    height: 500px;
  }
}
@media (max-width: 767px) {
  .patient-section .videos-wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .patient-section .services-item-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .patient-section .services-item-btn {
    height: 40px;
    font-size: 12px;
    padding: 0 15px;
  }
  .patient-section .services-item-link {
    font-size: 12px;
  }
  .patient-section .services-item-title {
    font-size: 18px;
  }
  .patient-section .services-item-text {
    font-size: 12px;
  }
  .patient-section .services-item-img {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .patient-section .news-slider {
    height: 350px;
  }
}
@media (max-width: 449px) {
  .patient-section .services-item-img {
    max-width: 60%;
  }
  .patient-section .services-item-content {
    max-width: 60%;
  }
}
.stories-section {
  margin: clamp(80px, 0.080552359 * 100vw + 0.1726121979px, 150px) 0;
  overflow-x: clip;
}
.stories-section .container {
  max-width: 1320px;
}
.stories-section .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.stories-section .more-link {
  background: transparent;
  border: 1px solid #9AB5CA;
  color: #3D4A60;
}
.stories-section .splide {
  margin-top: clamp(30px, 0.0115074799 * 100vw + 18.5960874568px, 40px);
}
.stories-section .splide__track {
  overflow: visible;
}
.stories-section .item-main {
  margin-top: clamp(15px, 0.0103567319 * 100vw + 4.7364787112px, 24px);
  aspect-ratio: 410/600;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
.stories-section .item-main > * {
  position: relative;
  z-index: 1;
}
.stories-section .item-clinic-name {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(14px, 0.001150748 * 100vw + 12.8596087457px, 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 0.0069044879 * 100vw + 3.1576524741px, 16px);
}
.stories-section .item-clinic-name:before {
  content: "";
  display: block;
  width: clamp(40px, 0.0230149597 * 100vw + 17.1921749137px, 60px);
  aspect-ratio: 1;
  background: url(/img/stories/clinic-logo.svg) center/cover no-repeat;
}
.stories-section .item-bottom {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  color: white;
}
.stories-section .item-bottom-title {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.39;
  margin-bottom: 7px;
  font-size: clamp(16px, 0.002301496 * 100vw + 13.7192174914px, 18px);
}
.stories-section .item-bottom-link {
  font-weight: 500;
  text-decoration: underline;
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  text-underline-offset: 5px;
}
.stories-section .item-avatar {
  width: clamp(80px, 0.0345224396 * 100vw + 45.7882623705px, 110px);
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.stories-section .item-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.stories-section .item-progress-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(5px, 0.0057537399 * 100vw + -0.7019562716px, 10px);
  margin: 0 clamp(15px, 0.0115074799 * 100vw + 3.5960874568px, 25px);
}
.stories-section .item-progress-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 50px;
  height: 3px;
  overflow: hidden;
  position: relative;
  background: #D9D9D9;
}
.stories-section .item-progress-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #5DC6CB;
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}
.stories-section .splide__slide {
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.stories-section .splide__slide.is-next .item-progress-wrapper {
  opacity: 0;
}
.stories-section .splide__slide.is-active .item-main {
  cursor: pointer;
  -webkit-filter: initial;
          filter: initial;
}
.stories-section .consult-form {
  background: #5DC6CB;
  border-radius: 20px;
  padding: clamp(20px, 0.0092059839 * 100vw + 10.8768699655px, 28px) clamp(15px, 0.0195627158 * 100vw + -4.3866513234px, 32px) clamp(20px, 0.0230149597 * 100vw + -2.8078250863px, 40px);
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(33.3333% - 8px);
  aspect-ratio: 410/600;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0px 5px 110.3000030518px 0px rgba(93, 198, 203, 0.68);
          box-shadow: 0px 5px 110.3000030518px 0px rgba(93, 198, 203, 0.68);
}
.stories-section .consult-form-top {
  font-weight: 600;
  font-size: clamp(14px, 0.001150748 * 100vw + 12.8596087457px, 15px);
}
.stories-section .consult-form-title {
  font-size: clamp(22px, 0.0161104718 * 100vw + 6.0345224396px, 36px);
  line-height: 1.12;
}
.stories-section .consult-form-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: clamp(14px, 0.002301496 * 100vw + 11.7192174914px, 16px);
  list-style-image: url(/img/stories/form-list-check.svg);
  padding-left: 25px;
  line-height: 1.3;
}
.stories-section .consult-form-tooltip-icon {
  display: inline-block;
  cursor: pointer;
}
.stories-section .consult-form-inputs-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.stories-section .consult-form-input {
  border-radius: 58px;
  background: white;
  height: 52px;
  padding: 0 clamp(20px, 0.0057537399 * 100vw + 14.2980437284px, 25px);
  color: #3D4A60;
  outline: none;
  font-size: clamp(16px, 0.002301496 * 100vw + 13.7192174914px, 18px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.stories-section .consult-form-input::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.7;
}
.stories-section .consult-form-input::-moz-placeholder {
  color: inherit;
  opacity: 0.7;
}
.stories-section .consult-form-input:-ms-input-placeholder {
  color: inherit;
  opacity: 0.7;
}
.stories-section .consult-form-input::-ms-input-placeholder {
  color: inherit;
  opacity: 0.7;
}
.stories-section .consult-form-input::placeholder {
  color: inherit;
  opacity: 0.7;
}
.stories-section .consult-form-btn {
  padding: 0 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.stories-section .consult-form-btn:after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url(/img/stories/button-arrow.svg) center/contain no-repeat;
}
.stories-section .consult-form-policy-wrapper {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.stories-section .consult-form-policy-wrapper span {
  font-size: 13px;
}
.stories-section .consult-form-policy-wrapper a {
  text-decoration: underline;
}
.stories-section .consult-form-checkbox {
  width: 20px;
  height: 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 20px;
  background: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.stories-section .consult-form-checkbox:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 100%;
  background: #9EA5AF;
  left: 2px;
  right: 2px;
  top: 2px;
  -webkit-box-shadow: 0px 2px 5px 0px #9ea5af;
          box-shadow: 0px 2px 5px 0px #9ea5af;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
.stories-section .consult-form-checkbox:checked:before {
  top: 12px;
  background: #F85E76;
  -webkit-box-shadow: 0px -1px 5px 0px #f85e76;
          box-shadow: 0px -1px 5px 0px #f85e76;
}
.stories-section .just-validate-error-field {
  outline: 2px solid #F85E76;
}
.stories-section .just-validate-error-label {
  display: none;
}

.tippy-box[data-theme=consultFormListTooltip] {
  background: white;
  color: #3D4A60;
  border-radius: 15px;
  font-size: clamp(12px, 0.002301496 * 100vw + 9.7192174914px, 14px);
}
.tippy-box[data-theme=consultFormListTooltip] .tippy-arrow {
  display: none;
}
.tippy-box[data-theme=consultFormListTooltip] .tippy-content {
  padding: 12px 15px;
}

@media (max-width: 991px) {
  .stories-section .consult-form {
    position: static;
    margin-top: 20px;
    width: 50%;
    aspect-ratio: initial;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .stories-section .consult-form {
    width: 100%;
  }
  .stories-section .title-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.pb-header {
  z-index: 200;
}
.pb-header .i {
  font-family: "smileicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pb-header .i-dzen:before {
  content: "\e913";
}
.pb-header .i-vk:before {
  content: "\e90e";
}
.pb-header .i-youtube:before {
  content: "\e90f";
}
.pb-header .i-ig:before {
  content: "\e910";
}
.pb-header .i-phone:before {
  content: "\e90a";
}
.pb-header .i-left:before {
  content: "\e902";
}
.pb-header .i-right:before {
  content: "\e906";
}
.pb-header .button {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 18px 30px;
  font-family: "Noto Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#F85E76), to(rgba(248, 94, 118, 0.3))), #CC0147;
  background: linear-gradient(180deg, #F85E76 0%, rgba(248, 94, 118, 0.3) 100%), #CC0147;
  border: none;
  -webkit-box-shadow: 0 2px 0 0 #B0244A, 0 10px 30px 0 rgba(221, 38, 90, 0.5);
  box-shadow: 0 2px 0 0 #B0244A, 0 10px 30px 0 rgba(221, 38, 90, 0.5);
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 1px #9c1d40;
  border-radius: 30px;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .pb-header .button {
    padding: 13px 20px;
    -webkit-box-shadow: 0 2px 0 0 #B0244A, 0 5px 15px 0 rgba(221, 38, 90, 0.5);
    box-shadow: 0 2px 0 0 #B0244A, 0 5px 15px 0 rgba(221, 38, 90, 0.5);
  }
}
.pb-header .button:before {
  content: "";
  width: 90%;
  min-width: 173px;
  height: 173px;
  background: rgba(252, 252, 252, 0.2);
  position: absolute;
  right: 45%;
  top: -8px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pb-header .button:focus {
  outline: none;
}
.pb-header .button:focus:before {
  -webkit-transform: scale3d(2.3, 2.3, 1);
  transform: scale3d(2.3, 2.3, 1);
}
.pb-header .button:hover:before {
  -webkit-transform: scale3d(2.3, 2.3, 1);
  transform: scale3d(2.3, 2.3, 1);
}
.pb-header .button:active:before {
  -webkit-transform: scale3d(2.3, 2.3, 1);
  transform: scale3d(2.3, 2.3, 1);
}
.pb-header .button--medium {
  padding: 11px 20px;
}
.pb-header .button--pink {
  background: #F85E76;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #FFF;
  text-shadow: none;
  text-transform: none;
  font-weight: 500;
}
.pb-header .button--pink:before {
  display: none;
}
.pb-header .button--pink:focus {
  background: #0FD8CC;
  color: #FFF;
  outline: none;
}
.pb-header .button--pink:hover {
  background: #0FD8CC;
  color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  transform: none;
}
.pb-header .button--pink:active {
  background: #0FD8CC;
  color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  transform: none;
}
.pb-header .btn-round-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #FFF;
  background: #9AB5CA;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 449px) {
  .pb-header .btn-round-icon {
    width: 30px;
    height: 30px;
  }
  .pb-header .btn-round-icon svg, .pb-header .btn-round-icon .i {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.pb-header .btn-round-icon:hover {
  background: #F85E76;
}
.pb-header .btn-round-icon--pink {
  background: #F85E76;
}
.pb-header .btn-round-icon--pink:hover {
  background: #0FD8CC;
}
.pb-header .s-main-nav {
  height: 56px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 1199px) {
  .pb-header .s-main-nav {
    display: none;
  }
}
.pb-header .main-nav {
  position: relative;
  z-index: 50;
}
.pb-header .burger {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 14px;
  right: 10px;
  z-index: 101;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1199px) {
  .pb-header .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 680px) {
  .pb-header .burger {
    top: 10px;
    width: 40px;
    height: 40px;
  }
}
.pb-header .burger:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #0FD8CC;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.pb-header .burger figure {
  position: relative;
  z-index: 2;
  width: 25px;
  height: 2px;
  background: #FFF;
  -webkit-transition: background 0.2s ease 0.1s, -webkit-transform 0.4s ease;
  transition: background 0.2s ease 0.1s, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.2s ease 0.1s;
  transition: transform 0.4s ease, background 0.2s ease 0.1s, -webkit-transform 0.4s ease;
}
@media (max-width: 449px) {
  .pb-header .burger figure {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.pb-header .burger figure:after, .pb-header .burger figure:before {
  content: "";
  width: 25px;
  height: 2px;
  background: #FFF;
  position: absolute;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.pb-header .burger figure:before {
  -webkit-transform: rotate(0) translate3d(0, -6px, 0);
  transform: rotate(0) translate3d(0, -6px, 0);
}
.pb-header .burger figure:after {
  -webkit-transform: rotate(0) translate3d(0, 6px, 0);
  transform: rotate(0) translate3d(0, 6px, 0);
}
.pb-header .burger.active:before {
  background: #F85E76;
}
.pb-header .burger.active figure {
  background: transparent;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: background 0.1s ease, -webkit-transform 0.4s ease;
  transition: background 0.1s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.1s ease;
  transition: transform 0.4s ease, background 0.1s ease, -webkit-transform 0.4s ease;
}
.pb-header .burger.active figure:before {
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0) scaleX(0.7);
  transform: rotate(-45deg) translate3d(0, 0, 0) scaleX(0.7);
}
.pb-header .burger.active figure:after {
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0) scaleX(0.7);
  transform: rotate(45deg) translate3d(0, 0, 0) scaleX(0.7);
}
.pb-header .s-top-panel-new {
  position: relative;
  z-index: 51;
  background: #FFF;
  padding: 22px 0;
  height: 88px;
  border-bottom: 1px solid #EDF0F7;
}
@media (max-width: 1199px) {
  .pb-header .s-top-panel-new {
    padding: 14px 0;
    height: 69px;
  }
}
@media (max-width: 680px) {
  .pb-header .s-top-panel-new {
    height: auto;
    padding: 15px 0;
  }
}
.pb-header .top-panel-new {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .pb-header .top-panel-new {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.pb-header .top-panel-new__logo {
  display: block;
  width: 227px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 1330px) {
  .pb-header .top-panel-new__logo {
    width: 180px;
  }
}
@media (max-width: 1199px) {
  .pb-header .top-panel-new__logo {
    width: 160px;
  }
}
.pb-header .top-panel-new__logo:hover {
  opacity: 0.8;
}
.pb-header .top-panel-new__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.pb-header .top-panel-new__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 1330px) {
  .pb-header .top-panel-new__right {
    gap: 15px;
  }
}
@media (max-width: 449px) {
  .pb-header .top-panel-new__right {
    gap: 5px;
  }
}
.pb-header .top-panel-new__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1330px) {
  .pb-header .top-panel-new__cont {
    gap: 6px;
  }
}
@media (max-width: 680px) {
  .pb-header .top-panel-new__cont {
    display: none;
  }
}
@media (max-width: 1199px) {
  .pb-header .top-panel-new__cont--regions {
    display: none;
  }
}
.pb-header .top-panel-new__cont__label {
  font-size: 14px;
  color: #7b90a1;
  white-space: nowrap;
}
@media (max-width: 1330px) {
  .pb-header .top-panel-new__cont__label {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .pb-header .top-panel-new__cont__label {
    display: none;
  }
}
.pb-header .top-panel-new__cont__val {
  font-weight: 600;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  top: 0.05em;
  font-size: 18px;
}
@media (max-width: 1330px) {
  .pb-header .top-panel-new__cont__val {
    font-size: 16px;
  }
}
.pb-header .top-panel-new__worktime {
  font-size: 14px;
  color: #7b90a1;
  white-space: nowrap;
}
@media (max-width: 1330px) {
  .pb-header .top-panel-new__worktime {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .pb-header .top-panel-new__worktime {
    display: none;
  }
}
.pb-header .top-panel-new__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
@media (max-width: 680px) {
  .pb-header .top-panel-new__actions .top-panel-new__callback {
    display: none;
  }
}
.pb-header .top-panel-new__mob-call {
  font-size: 20px;
  display: none;
}
@media (max-width: 680px) {
  .pb-header .top-panel-new__mob-call {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.pb-header .top-panel-new__callback {
  position: relative;
}
.pb-header .top-panel-new__callback:hover .top-panel-new__callback__pop {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pb-header .top-panel-new__callback__pop {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 190px;
  width: auto;
  padding-top: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, -4px, 0);
  transform: translate3d(0, -4px, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pb-header .top-panel-new__callback__list {
  background: #FFF;
  z-index: 10;
  border-radius: 15px;
  border: 1px solid #cedae1;
  padding: 6px 6px;
  font-size: 14px;
  line-height: 1;
  -webkit-box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.1);
}
.pb-header .top-panel-new__callback__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  padding: 6px 8px;
  border-radius: 10px;
  background: #FFF;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.pb-header .top-panel-new__callback__link:hover {
  background: #e6eff6;
}
.pb-header .top-panel-new__callback__link:active {
  background: #e6eff6;
  -webkit-transform: scale3d(0.97, 0.97, 1);
  transform: scale3d(0.97, 0.97, 1);
}
.pb-header .top-panel-new__callback__link img {
  width: 1.71em;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pb-header .main-nav-new__panel {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #FFF), to(#EFF1F8));
  background: linear-gradient(to bottom, #FFF 20%, #EFF1F8);
}
.pb-header .main-nav-new__panel .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 56px;
  gap: 35px;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
.pb-header .main-nav-new__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 0.0230149597 * 100vw + -12.8078250863px, 30px);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1399px) {
  .pb-header .main-nav-new__nav {
    gap: 10px;
  }
}
.pb-header .main-nav-new__nav__item {
  position: relative;
}
.pb-header .main-nav-new__nav__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
  gap: 0.3em;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 1399px) {
  .pb-header .main-nav-new__nav__item > a {
    font-size: 14px;
  }
}
.pb-header .main-nav-new__nav__item > a:hover {
  color: #0FD8CC;
}
.pb-header .main-nav-new__nav__item > a svg {
  width: 0.75em;
  height: auto;
  stroke: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pb-header .main-nav-new__nav__item:hover .main-nav-new__sub {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0) translate3d(0, 0, 0);
  transform: translate(-50%, 0) translate3d(0, 0, 0);
}
.pb-header .main-nav-new__nav__item:hover .main-nav-new__sub--left {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.pb-header .main-nav-new__nav__item:hover > a svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.pb-header .main-nav-new__sub {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0) translate3d(0, -8px, 0);
  transform: translate(-50%, 0) translate3d(0, -8px, 0);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 1330px) {
  .pb-header .main-nav-new__sub {
    padding-top: 8px;
  }
}
.pb-header .main-nav-new__sub--left {
  left: -20px;
  -webkit-transform: translate3d(0, -8px, 0);
  transform: translate3d(0, -8px, 0);
}
.pb-header .main-nav-new__sub-panel {
  background: #FFF;
  border-radius: 30px;
  padding: 25px;
  -webkit-box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1330px) {
  .pb-header .main-nav-new__sub-panel {
    padding: 15px;
    min-width: 180px;
  }
}
.pb-header .main-nav-new__sub-panel--two-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 960px;
}
@media (max-width: 1330px) {
  .pb-header .main-nav-new__sub-panel--two-col {
    gap: 20px;
    width: 800px;
  }
}
.pb-header .main-nav-new__sub__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.25;
}
@media (max-width: 1330px) {
  .pb-header .main-nav-new__sub__list {
    font-size: 14px;
  }
}
.pb-header .main-nav-new__sub__list a {
  display: inline-block;
  position: relative;
  padding: 0.5em 0.4em 0.5em 1.3em;
  border-radius: 8px;
  background: #FFF;
  min-width: 10em;
}
.pb-header .main-nav-new__sub__list a:hover {
  background: #e6eff6;
  color: #F85E76;
}
.pb-header .main-nav-new__sub__list a:before {
  content: "";
  position: absolute;
  left: 0.6em;
  top: 1em;
  width: 0.3em;
  height: 0.3em;
  background: #9AB5CA;
  border-radius: 50%;
}
.pb-header .main-nav-new__sub__list a.strong {
  font-weight: 600;
}
.pb-header .main-nav-new__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 0.0115074799 * 100vw + 8.5960874568px, 30px);
}
@media (max-width: 1399px) {
  .pb-header .main-nav-new__links {
    gap: 10px;
  }
}
.pb-header .main-nav-new__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3em;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 1399px) {
  .pb-header .main-nav-new__link {
    font-size: 14px;
  }
}
.pb-header .main-nav-new__link:hover {
  color: #0FD8CC;
}
.pb-header .main-nav-new__link img {
  width: 1.25em;
  height: auto;
  pointer-events: none;
}
.pb-header .main-nav-new__actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  display: none;
}
.pb-header .main-nav-new__big-sub-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  padding-top: 12px;
  -webkit-transform: translate3d(0, -8px, 0);
          transform: translate3d(0, -8px, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}
@media (max-width: 1330px) {
  .pb-header .main-nav-new__big-sub-wrapper {
    padding-top: 8px;
  }
}
.pb-header .main-nav-new__big-sub {
  background: #FFF;
  border-radius: 30px;
  -webkit-box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 18px 48px 0px rgba(0, 0, 0, 0.1);
  overflow: auto;
}
.pb-header .doctors-submenu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}
.pb-header .doctors-submenu__team {
  border: 1px solid #cedae1;
  border-radius: 24px;
  padding: 10px 20px;
}
.pb-header .doctors-submenu__team--full {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.pb-header .doctors-submenu__team--full .doctors-submenu__team__grid {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.pb-header .doctors-submenu__team__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  color: #0FD8CC;
  margin-bottom: 0.5em;
  font-size: 20px;
}
.pb-header .doctors-submenu__team__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.pb-header .doctors-submenu__team__hero:hover small, .pb-header .doctors-submenu__team__hero:hover strong {
  color: #F85E76;
}
.pb-header .doctors-submenu__team__hero:hover img {
  -webkit-box-shadow: 0 0 0 2px #F85E76;
  box-shadow: 0 0 0 2px #F85E76;
}
.pb-header .doctors-submenu__team__hero img {
  width: 40px;
  height: auto;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 0 0 0 #F85E76;
  box-shadow: 0 0 0 0 #F85E76;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pb-header .doctors-submenu__team__hero strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0.2em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pb-header .doctors-submenu__team__hero small {
  display: block;
  font-size: 12px;
  color: #7b90a1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pb-header .doctors-submenu__team__hero--big {
  margin-bottom: 15px;
}
.pb-header .doctors-submenu__team__hero--big img {
  width: 50px;
}
.pb-header .doctors-submenu__team__hero--big strong {
  font-size: 18px;
}
.pb-header .doctors-submenu__team__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.pb-header .mob-panel-new {
  display: none;
  position: fixed;
  width: 320px;
  max-width: 100%;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 100;
  color: #000000;
  background: #FFF;
  -webkit-box-shadow: 0 0px 36px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0px 36px 0 rgba(0, 0, 0, 0);
  border-radius: 30px 0 0 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0);
  pointer-events: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 25px 25px;
  will-change: transform, box-shadow;
}
@media (max-width: 1199px) {
  .pb-header .mob-panel-new {
    display: block;
  }
}
.pb-header .mob-panel-new.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: all;
  -webkit-box-shadow: 0 0px 36px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0px 36px 0 rgba(0, 0, 0, 0.1);
}
.pb-header .mob-panel-new__logo {
  display: block;
  width: 160px;
}
.pb-header .mob-panel-new__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.pb-header .mob-panel-new__contacts {
  padding-top: 25px;
  margin-bottom: 12px;
}
.pb-header .mob-panel-new__contacts__title {
  color: #546B8B;
  line-height: 1.2;
  margin-bottom: 0.6em;
  font-size: 14px;
}
.pb-header .mob-panel-new__contacts__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.pb-header .mob-panel-new__contact a {
  font-size: 15px;
  display: block;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.pb-header .mob-panel-new__contact span {
  display: block;
  line-height: 1.2;
  font-size: 13px;
  color: #546B8B;
}
.pb-header .mob-panel-new__callback {
  margin-bottom: 10px;
}
.pb-header .mob-panel-new__callback .button {
  width: 100%;
}
.pb-header .mob-panel-new__callback .button svg {
  width: 12px;
  height: auto;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.pb-header .mob-panel-new__callback__pop {
  padding-top: 4px;
  display: none;
}
.pb-header .mob-panel-new__callback__list {
  background: #FFF;
  border-radius: 15px;
  border: 1px solid #cedae1;
  padding: 6px 6px;
  font-size: 14px;
  line-height: 1;
}
.pb-header .mob-panel-new__callback__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  padding: 6px 8px;
  border-radius: 10px;
  background: #FFF;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.pb-header .mob-panel-new__callback__link:hover {
  background: #e6eff6;
}
.pb-header .mob-panel-new__callback__link:active {
  background: #e6eff6;
  -webkit-transform: scale3d(0.97, 0.97, 1);
  transform: scale3d(0.97, 0.97, 1);
}
.pb-header .mob-panel-new__callback__link img {
  width: 1.71em;
  height: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.pb-header .mob-panel-new__nav {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 20px;
}
.pb-header .mob-panel-new__nav__item {
  position: relative;
  border-bottom: 1px solid #cedae1;
  padding: 0.5em 0;
}
.pb-header .mob-panel-new__nav__item:last-child {
  border-bottom: none;
}
.pb-header .mob-panel-new__nav__item > a {
  display: inline-block;
  padding: 0.4em;
  margin-left: -0.4em;
  border-radius: 4px;
  -webkit-tap-highlight-color: transparent;
}
.pb-header .mob-panel-new__nav__item > a:active {
  background: #e6eff6;
}
.pb-header .mob-panel-new__nav__item.has-sub {
  padding-right: 40px;
}
.pb-header .mob-panel-new__nav__item__arrow {
  position: absolute;
  right: 0;
  top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.pb-header .mob-panel-new__nav__item__arrow:active {
  background: #e6eff6;
}
.pb-header .mob-panel-new__nav__item__arrow svg {
  width: 16px;
  height: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pb-header .mob-panel-new__nav__sub {
  list-style: none;
  font-weight: 400;
  font-size: 14px;
  padding: 0.5em 0 0.5em 1em;
  display: none;
}
.pb-header .mob-panel-new__nav__sub > li {
  margin-bottom: 0.8em;
}
.pb-header .mob-panel-new__nav__sub > li:last-child {
  margin-bottom: 0;
}
.pb-header .mob-panel-new__nav__sub > li > a {
  -webkit-tap-highlight-color: transparent;
}
.pb-header .mob-panel-new__nav__sub > li > a:active {
  color: #0FD8CC;
}
.pb-header .mob-panel-new__nav__sub > li > a.strong {
  font-weight: 600;
}
.pb-header .mob-panel-new__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  margin-bottom: 20px;
}
.pb-header .mob-panel-new__links .main-nav-new__link {
  font-size: 16px;
}
.pb-header .footer-new__socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .pb-header .footer-new__socials__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.pb-header .footer-new__socials__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #EDF0F7;
  color: #9AB5CA;
  font-size: 18px;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pb-header .footer-new__socials__list a:hover {
  border-color: #F85E76;
  color: #F85E76;
}
.pb-header .footer-new__socials__list a:hover svg {
  fill: #F85E76;
}
.pb-header .footer-new__socials__list a svg {
  fill: #9AB5CA;
  height: 18px;
  width: auto;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.pb-header .footer-new__socials__list a .i-ig {
  -webkit-filter: blur(2.5px);
  filter: blur(2.5px);
}
.pb-header .mob-panel-new__nav__item__arrow svg {
  position: absolute;
  right: 10px;
}
.pb-header .mob-panel-new__nav__item__arrow {
  width: 60%;
}
.pb-header .mob-panel-new__nav__item > a {
  width: 100%;
}
@media (max-width: 1199px) {
  .pb-header .s-top-panel-new .burger {
    top: 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    right: 0;
  }
}
@media (max-width: 449px) {
  .pb-header .s-top-panel-new .burger {
    top: 0;
    width: 30px;
    height: 30px;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    right: 0;
  }
}
.pb-header .mob-panel-new__close {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 14px;
  right: 10px;
  z-index: 101;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1199px) {
  .pb-header .mob-panel-new__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 680px) {
  .pb-header .mob-panel-new__close {
    top: 10px;
    width: 40px;
    height: 40px;
  }
}
.pb-header .mob-panel-new__close:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #0FD8CC;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.pb-header .mob-panel-new__close figure {
  position: relative;
  z-index: 2;
  width: 25px;
  height: 2px;
  background: #FFF;
  -webkit-transition: background 0.2s ease 0.1s, -webkit-transform 0.4s ease;
  transition: background 0.2s ease 0.1s, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.2s ease 0.1s;
  transition: transform 0.4s ease, background 0.2s ease 0.1s, -webkit-transform 0.4s ease;
}
.pb-header .mob-panel-new__close figure:before, .pb-header .mob-panel-new__close figure:after {
  content: "";
  width: 25px;
  height: 2px;
  background: #FFF;
  position: absolute;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.pb-header .mob-panel-new__close figure:before {
  -webkit-transform: rotate(0) translate3d(0, -6px, 0);
  transform: rotate(0) translate3d(0, -6px, 0);
}
.pb-header .mob-panel-new__close figure:after {
  -webkit-transform: rotate(0) translate3d(0, 6px, 0);
  transform: rotate(0) translate3d(0, 6px, 0);
}
.pb-header .mob-panel-new__close:before {
  background: #ff5274;
}
.pb-header .mob-panel-new__close figure {
  background: transparent;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: background 0.1s ease, -webkit-transform 0.4s ease;
  transition: background 0.1s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.1s ease;
  transition: transform 0.4s ease, background 0.1s ease, -webkit-transform 0.4s ease;
}
.pb-header .mob-panel-new__close figure:before {
  -webkit-transform: rotate(-45deg) translate3d(0, 0, 0) scaleX(0.7);
  transform: rotate(-45deg) translate3d(0, 0, 0) scaleX(0.7);
}
.pb-header .mob-panel-new__close figure:after {
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0) scaleX(0.7);
  transform: rotate(45deg) translate3d(0, 0, 0) scaleX(0.7);
}
@media (max-width: 1400px) {
  .pb-header .main-nav-new__sub-panel {
    max-width: calc(690px + 30 * (100vw - 1000px) / 450);
  }
}
.pb-header .top-panel-new__whatsapp {
  background: #2CD74E;
}
.pb-header .top-panel-new__telegram {
  background: #2894F7;
}
.pb-header .top-panel-new-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 580px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 680px) {
  .pb-header .top-panel-new-center {
    display: none;
  }
}
.pb-header .main-nav.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
.pb-header .main-nav.fixed .main-nav-new__link span {
  display: none;
}
.pb-header .main-nav.fixed .main-nav-new__links {
  gap: 15px;
}
.pb-header .main-nav.fixed .main-nav-new__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pb-header .main-nav-new__big-sub-wrapper.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 2;
}
@media (max-width: 1199px) {
  .pb-header .s-top-panel-new.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}

.footer-new {
  background: #FFF;
  padding-top: 70px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .footer-new {
    padding-top: 50px;
  }
}
.footer-new .container {
  max-width: 1320px;
}
.footer-new .i {
  font-family: "smileicons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-new .i-dzen:before {
  content: "\e913";
}
.footer-new .i-vk:before {
  content: "\e90e";
}
.footer-new .i-youtube:before {
  content: "\e90f";
}
.footer-new .i-ig:before {
  content: "\e910";
}
.footer-new .link-simple {
  color: #F85E76;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .link-simple:hover {
  color: #72dbd4;
  border-color: #72dbd4;
}
.footer-new .button {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 18px 30px;
  font-family: "Noto Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#F85E76), to(rgba(248, 94, 118, 0.3))), #CC0147;
  background: linear-gradient(180deg, #F85E76 0%, rgba(248, 94, 118, 0.3) 100%), #CC0147;
  border: none;
  -webkit-box-shadow: 0 2px 0 0 #B0244A, 0 10px 30px 0 rgba(221, 38, 90, 0.5);
  box-shadow: 0 2px 0 0 #B0244A, 0 10px 30px 0 rgba(221, 38, 90, 0.5);
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 1px #9c1d40;
  border-radius: 30px;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .footer-new .button {
    padding: 13px 20px;
    -webkit-box-shadow: 0 2px 0 0 #B0244A, 0 5px 15px 0 rgba(221, 38, 90, 0.5);
    box-shadow: 0 2px 0 0 #B0244A, 0 5px 15px 0 rgba(221, 38, 90, 0.5);
  }
}
.footer-new .button:before {
  content: "";
  width: 90%;
  min-width: 173px;
  height: 173px;
  background: rgba(252, 252, 252, 0.2);
  position: absolute;
  right: 45%;
  top: -8px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer-new .button:focus {
  outline: none;
}
.footer-new .button:focus:before {
  -webkit-transform: scale3d(2.3, 2.3, 1);
  transform: scale3d(2.3, 2.3, 1);
}
.footer-new .button:hover:before {
  -webkit-transform: scale3d(2.3, 2.3, 1);
  transform: scale3d(2.3, 2.3, 1);
}
.footer-new .button:active:before {
  -webkit-transform: scale3d(2.3, 2.3, 1);
  transform: scale3d(2.3, 2.3, 1);
}
.footer-new .button--medium {
  padding: 11px 20px;
}
.footer-new .button--pink {
  background: #F85E76;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #FFF;
  text-shadow: none;
  text-transform: none;
  font-weight: 500;
}
.footer-new .button--pink:before {
  display: none;
}
.footer-new .button--pink:focus {
  background: #0FD8CC;
  color: #FFF;
  outline: none;
}
.footer-new .button--pink:hover {
  background: #0FD8CC;
  color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  transform: none;
}
.footer-new .button--pink:active {
  background: #0FD8CC;
  color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  transform: none;
}
.footer-new .footer-services__title {
  display: block;
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.1;
}
@media (max-width: 480px) {
  .footer-new .footer-services__title {
    font-size: 16px;
  }
}
.footer-new .footer-new-services {
  background: #EDF0F7;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.footer-new .footer-new-services__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  background: #EDF0F7;
  padding: 30px;
  font-size: 24px;
  white-space: nowrap;
  gap: 0.5em;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .footer-new .footer-new-services__title {
    padding: 20px;
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .footer-new .footer-new-services__title {
    padding: 15px;
    font-size: 16px;
  }
}
.footer-new .footer-new-services__title:hover {
  background: #dbe1ef;
}
.footer-new .footer-new-services__title svg {
  width: 0.75em;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  top: 0.1em;
}
.footer-new .footer-new-services__main {
  padding: 10px 50px 50px 50px;
  display: none;
}
@media (max-width: 1330px) {
  .footer-new .footer-new-services__main {
    padding: 10px 30px 30px 30px;
  }
}
@media (max-width: 680px) {
  .footer-new .footer-new-services__main {
    padding: 10px 15px 15px 15px;
  }
}
.footer-new .footer-new-services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer-new .footer-new-services__grid {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer-new-services__grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .footer-new .footer-new-services__grid {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .footer-new .footer-new-services__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.footer-new .footer-new-services__cat {
  margin-bottom: 30px;
}
.footer-new .footer-new-services__cat:last-child {
  margin-bottom: 0;
}
.footer-new .footer-new-services__cat__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0.4em;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}
@media (max-width: 680px) {
  .footer-new .footer-new-services__cat__title {
    font-size: 14px;
  }
}
.footer-new .footer-new-services__cat__title a {
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-new .footer-new-services__cat__title a:hover {
  color: #0FD8CC;
}
.footer-new .footer-new-services__cat__list {
  font-size: 14px;
  line-height: 1.3;
  padding-left: 20px;
}
@media (max-width: 680px) {
  .footer-new .footer-new-services__cat__list {
    font-size: 12px;
  }
}
.footer-new .footer-new-services__cat__list li {
  margin-bottom: 0.4em;
}
.footer-new .footer-new-services__cat__list li:last-child {
  margin-bottom: 0;
}
.footer-new .footer-new-services__cat__list a {
  color: #7b90a1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new-services__cat__list a:hover {
  color: #0FD8CC;
}
.footer-new .footer-new-services__cat__list .has-sub {
  position: relative;
}
.footer-new .footer-new-services__cat__list .has-sub figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -22px;
  top: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new-services__cat__list .has-sub figure:hover svg {
  stroke: #0FD8CC;
}
.footer-new .footer-new-services__cat__list .has-sub figure svg {
  width: 11px;
  height: auto;
  stroke: #7b90a1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new-services__cat__list__sub {
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 10px;
  display: none;
}
.footer-new .footer-new-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 50px 0;
}
@media (max-width: 1024px) {
  .footer-new .footer-new-main {
    gap: 40px 20px;
  }
}
@media (max-width: 768px) {
  .footer-new .footer-new-main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
}
.footer-new .footer-new__title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.footer-new .footer-new__title a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new__title a:hover {
  color: #0FD8CC;
}
@media (max-width: 768px) {
  .footer-new .footer-new-main__left {
    text-align: center;
  }
}
.footer-new .footer-new__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-new .footer-new__phones {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.footer-new .footer-new__phone small {
  display: block;
  color: #7b90a1;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 2px;
}
.footer-new .footer-new__phone a {
  white-space: nowrap;
  font-weight: 600;
  font-size: 18px;
  -webkit-tap-highlight-color: transparent;
}
.footer-new .footer-new__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px 26px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .footer-new .footer-new__actions {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.footer-new .footer-new__actions .link-simple {
  font-size: 14px;
}
.footer-new .footer-new__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-new .footer-new__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.footer-new .footer-new__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.3em;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #cedae1;
  padding: 0.6em 1em;
  border-radius: 40px;
}
@media (max-width: 1330px) {
  .footer-new .footer-new__link {
    font-size: 14px;
  }
}
.footer-new .footer-new__link:hover {
  color: #0FD8CC;
  border-color: #0FD8CC;
}
.footer-new .footer-new__link img {
  width: 1.25em;
  height: auto;
}
.footer-new .footer-new__prizes {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .footer-new .footer-new__prizes {
    margin-bottom: 30px;
  }
}
.footer-new .footer-new__prizes__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-new .footer-new__prizes__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-new .footer-new__prize {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.footer-new .footer-new__prize:hover .footer-new__prize__pop {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.footer-new .footer-new__prize img {
  display: block;
  width: 36px;
  height: auto;
}
.footer-new .footer-new__prize__pop {
  position: absolute;
  z-index: 10;
  bottom: 100%;
  left: calc(50% - 95px);
  background: #FFF;
  border-radius: 13px;
  padding: 12px 14px;
  -webkit-filter: drop-shadow(6px 15px 20px rgba(152, 152, 152, 0.2));
  filter: drop-shadow(6px 15px 20px rgba(152, 152, 152, 0.2));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #7b90a1;
  line-height: 1.25;
  width: 190px;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}
.footer-new .footer-new__prize__pop:before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer-new .footer-new__prize-num {
  color: #000;
  color: #7b90a1;
  font-size: 22px;
  font-weight: 600;
  padding-left: 0.2em;
}
.footer-new .footer-new__socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .footer-new .footer-new__socials__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-new .footer-new__socials__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #EDF0F7;
  color: #9AB5CA;
  font-size: 18px;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new__socials__list a:hover {
  border-color: #F85E76;
  color: #F85E76;
}
.footer-new .footer-new__socials__list a:hover svg {
  fill: #F85E76;
}
.footer-new .footer-new__socials__list a svg {
  fill: #9AB5CA;
  height: 18px;
  width: auto;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.footer-new .footer-new__socials__list a .i-ig {
  -webkit-filter: blur(2.5px);
  filter: blur(2.5px);
}
.footer-new .footer-new-main__right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 680px) {
  .footer-new .footer-new-main__right {
    display: none;
  }
}
.footer-new .footer-new-main__col .footer-new__title {
  margin-bottom: 1em;
}
.footer-new .footer-new__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.25;
  gap: 0.85em;
}
.footer-new .footer-new__nav a {
  position: relative;
  color: #7b90a1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 1.43em;
}
.footer-new .footer-new__nav a:hover {
  color: #0FD8CC;
}
.footer-new .footer-new-bottom {
  border-top: 1px solid #cedae1;
  background: #FFF;
  padding: 30px 0;
  font-size: 14px;
  line-height: 1.25;
  color: #7b90a1;
}
@media (max-width: 1024px) {
  .footer-new .footer-new-bottom {
    font-size: 12px;
    padding: 20px 0;
  }
}
.footer-new .footer-new-bottom-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-new .footer-new-bottom-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer-new .footer-new-cookie {
  max-width: 55em;
}
.footer-new .footer-new-cookie a {
  text-decoration: underline;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new-cookie a:hover {
  color: #0FD8CC;
}
.footer-new .footer-new-logo {
  display: block;
  width: 270px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1024px) {
  .footer-new .footer-new-logo {
    width: 220px;
  }
}
.footer-new .footer-new-logo:hover {
  opacity: 0.8;
}
.footer-new .footer-new-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-new .footer-new-bottom-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 20px;
}
@media (max-width: 1024px) {
  .footer-new .footer-new-bottom-end {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}
.footer-new .footer-new-bottom-end a {
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-new .footer-new-bottom-end a:hover {
  color: #0FD8CC;
}
.footer-new .i.i-ig {
  -webkit-filter: blur(2.5px);
  filter: blur(2.5px);
}