@charset "UTF-8";
/* stylelint-disable no-invalid-position-at-import-rule */
:root {
  --base-size: 1vw;
  --tr: 0.3s;
  --tr-regular: all var(--tr) ease;
  --p-container: 1.5rem;
  --transition-time: 0.25s;
  --w-container: 136rem;
  --z-above-header: 103;
  --z-burger: 102;
  --z-header: 100;
  --z-main: 99;
  --z-footer: 100;
  --tr-jolly-enter: cubic-bezier(0.5, 0, 0.5, 1);
}
@media (max-width: 991px) {
  :root {
    --p-container: 1rem;
  }
}
@media (max-width: 991px) {
  :root {
    --w-container: 100%;
  }
}

:root {
  --c-primary: #79B3CD;
  --c-primary-dark: #639EB8;
  --c-primary-shadow: #639EB8;
  --gradient-primary: radial-gradient(46.8% 50% at 58.93% 50%, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  --c-secondary: #3B99FF;
  --gradient-secondary: linear-gradient(164deg, #8CC7E1 1.46%, #79B3CD 102.79%);
  --fg-regular: #2F3C4F;
  --fg-second: rgba(43, 43, 43, 0.7);
  --fg-third: #242729;
  --fg-caption: #b3b4b5;
  --fg-on: #fff;
  --fg-title: #2B2B2B;
  --fg-red: #DD5959;
  --bg-app: #EEE9E3;
  --bg-section-light: #fff;
  --bg-card: #F7F4F1;
  --bg-card-dark: #383838;
  --bg-beige: #F2F1EF;
  --c-error: #FF3b30;
  --c-success: #34C759;
}

/* stylelint-disable scss/operator-no-newline-after */
/*
  Подключает шфрит
  @include font('Inter', normal, 400, '../resources/fonts/Inter/Inter-Regular');
 */
/*
  Создает грид
 */
/*
  Делает маску из svg
 */
/*

  SCSS ONLY MIXINS

 */
/*
  Генерирует цвет по указанной яркости
*/
/*
  Создать цвет rgba из hex
*/
/*
 Кастомизирует скроллбар
*/
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter/Inter-Regular.woff2") format("woff2"), url("../resources/fonts/Inter/Inter-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter/Inter-Medium.woff2") format("woff2"), url("../resources/fonts/Inter/Inter-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter/Inter-SemiBold.woff2") format("woff2"), url("../resources/fonts/Inter/Inter-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url("../resources/fonts/Inter/Inter-Bold.woff2") format("woff2"), url("../resources/fonts/Inter/Inter-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url("../resources/fonts/Manrope/Manrope-Regular.woff2") format("woff2"), url("../resources/fonts/Manrope/Manrope-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  src: url("../resources/fonts/Manrope/Manrope-Medium.woff2") format("woff2"), url("../resources/fonts/Manrope/Manrope-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url("../resources/fonts/Manrope/Manrope-Semibold.woff2") format("woff2"), url("../resources/fonts/Manrope/Manrope-Semibold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url("../resources/fonts/Manrope/Manrope-Bold.woff2") format("woff2"), url("../resources/fonts/Manrope/Manrope-Bold.woff") format("woff");
  font-display: swap;
}
:root {
  --ff-regular: "Manrope", sans-serif;
  --ff-title: "Inter", sans-serif;
  --ff-secondary: "Inter", sans-serif;
  --fz-regular: 1.6rem;
  --fz-title: 4.5rem;
  --fz-h2: 4rem;
  --fz-h4: 2rem;
}
@media (max-width: 1099px) {
  :root {
    --fz-title: 4.5rem;
  }
}
@media (max-width: 991px) {
  :root {
    --fz-regular: 1rem;
    --fz-title: 2.5rem;
    --fz-h2: 3.2rem;
  }
}
/*
    1. Use a more-intuitive box-sizing model.
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

/*
    2. Remove default margin
 */
* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}

/*
    3. Allow percentage-based heights in the application
*/
html,
body {
  width: 100%;
}

body {
  height: 100%;
}

/*
    Typographic tweaks!
    4. Add accessible line-height
    5. Improve text rendering
 */
body {
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*
7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button:active {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}

button {
  color: inherit;
  cursor: pointer;
  background: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: inherit;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
  list-style-position: inside;
}

ol li {
  list-style-position: inside;
}

/*
    6. Improve media defaults
 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img,
svg {
  object-fit: contain;
}

/*
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-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.
 */
[type=search]::-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 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

fieldset {
  padding: 0;
  margin: 0;
}

html {
  overscroll-behavior: none;
  --fz-modifier: 0.520834;
  font-size: calc(var(--fz-modifier) * var(--base-size));
  background-color: var(--bg-app);
}
@media (max-width: 1439px) {
  html {
    --fz-modifier: 0.6949267;
  }
}
@media (max-width: 991px) {
  html {
    --fz-modifier: 1.763894;
  }
}
@media (max-width: 575px) {
  html {
    --fz-modifier: 2.666666;
  }
}
@media (max-width: 359px) {
  html {
    --fz-modifier: 2.777777;
  }
}
@media (max-width: 359px) {
  html {
    --fz-modifier: 3.125;
  }
}

body {
  color: var(--fg-regular);
  font-family: var(--ff-regular);
  font-size: var(--fz-regular);
  font-weight: 400;
  line-height: 133%;
  background: #F6F8FA;
  overscroll-behavior: none;
}

body._lock {
  overflow: hidden;
  touch-action: none;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

.wrapper > .content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

.container {
  max-width: calc(var(--w-container) + 2 * var(--p-container));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--p-container);
  padding-right: var(--p-container);
}

@media (max-width: 1099px) {
  .main {
    margin-top: auto;
  }
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75 ;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content, .is-zooming-out .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px ;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px ;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  user-select: none;
  pointer-events: none;
}

.js_use-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.js_use-bg > * {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  background-size: inherit;
  background-repeat: inherit;
  background-position: inherit;
  object-fit: cover;
}

.text-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-colored {
  color: var(--c-primary);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes minipulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.img-fluid {
  height: auto;
  display: block;
  max-width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.img-contain {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.ico-svg {
  position: relative;
  display: inline-block;
  width: auto;
  height: 100%;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.hide {
  opacity: 0 !important;
  display: none !important;
  visibility: hidden !important;
}

.color-blue {
  color: var(--c-primary);
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.w-100 {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.btn-primary {
  color: whitesmoke;
  min-height: 7.2rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 1rem 4rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-secondary);
  transition: var(--transition-time);
  border-radius: 1.2rem;
  box-shadow: 0px 10.31px 1.99px -10.31px rgba(0, 0, 0, 0.9), 0px 13.25px 6.55px -9.57px rgba(0, 0, 0, 0.25), 0px 19.14px 11.71px -11.78px rgba(0, 0, 0, 0.25), inset 0px -21.35px 2.72px -20.62px rgba(0, 0, 0, 0.5), inset -20.62px -11.05px 2.72px -20.62px rgb(118, 199, 231), inset 20.62px -11.05px 2.72px -20.62px rgb(118, 199, 231), 0px 2px 22.9px 0px rgba(101, 147, 165, 0.6);
  background: rgb(99, 158, 184);
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.15);
}
.btn-primary:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  position: absolute;
  border-radius: 1.2rem;
  box-shadow: inset 7.36px 7.36px 29.45px 0px rgba(240, 240, 229, 0.3), inset -7.36px -7.36px 29.45px 0px rgba(240, 240, 229, 0.3), 0px 0.74px 0px 0px rgba(116, 150, 164, 0.5), 0px 2px 0px 0px rgba(103, 152, 172, 0.2), 0px 3px 0px 0px rgba(119, 187, 214, 0.1);
  background: rgb(87, 158, 190);
  opacity: 1;
  transition: var(--transition-time);
}
.btn-primary span {
  z-index: 5;
  position: relative;
}
.btn-primary:hover:before {
  opacity: 0;
  transition: var(--transition-time);
}
.btn-primary:active:before {
  opacity: 1;
  transition: var(--transition-time);
}
@media (max-width: 991px) {
  .btn-primary {
    font-size: 1.4rem;
    min-height: 6rem;
  }
}
@media (max-width: 575px) {
  .btn-primary {
    min-height: 6rem;
  }
}

.btn-outline-primary {
  color: #2B2B2B;
  min-width: 28rem;
  min-height: 7.2rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  padding: 0.8rem 3rem;
  border-radius: 1.1rem;
  font-family: var(--ff-secondary);
  background-color: transparent;
  border: 1px solid #2B2B2B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-time);
}
.btn-outline-primary:hover {
  color: white;
  text-decoration: none;
  background-color: #2B2B2B;
  transition: var(--transition-time);
}
@media (max-width: 991px) {
  .btn-outline-primary {
    min-width: inherit;
    font-size: 1.4rem;
    min-height: 6rem;
  }
}
.btn-outline-secondary {
  color: rgba(61, 61, 61, 0.3);
  min-height: 6rem;
  padding: 1rem 3rem;
  border-radius: 5rem;
  font-size: 1.5rem;
  line-height: 2.1rem;
  font-family: var(--ff-secondary);
  text-transform: uppercase;
  border: 1px solid rgba(61, 61, 61, 0.3);
  transition: var(--transition-time);
}
.btn-outline-secondary:hover {
  color: rgb(61, 61, 61);
  border-color: rgb(61, 61, 61);
}
.btn-outline-secondary:active {
  color: rgba(61, 61, 61, 0.7);
  border-color: rgba(61, 61, 61, 0.7);
}
@media (max-width: 575px) {
  .btn-outline-secondary {
    min-height: 5.5rem;
  }
}

.btn-control {
  fill: #101210;
  color: #101210;
  width: 5.5rem;
  height: 5.5rem;
  cursor: pointer;
  border-radius: 50%;
  border: 1px solid #101210;
  background-color: transparent;
  transition: var(--transition-time);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}
.btn-control i {
  width: 0.6rem;
  height: 1.2rem;
}
.btn-control:hover {
  fill: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  transition: var(--transition-time);
}
.btn-control.disabled, .btn-control:disabled {
  opacity: 0.35;
  fill: #101210;
  border-color: #101210;
  cursor: default;
}
.btn-control--lg {
  width: 8rem;
  height: 8rem;
}
.btn-control--lg i {
  width: 0.9rem;
  height: 1.6rem;
}
@media (max-width: 991px) {
  .btn-control--lg {
    width: 5rem;
    height: 5rem;
  }
  .btn-control--lg i {
    width: 0.6rem;
    height: 1.2rem;
  }
}

@media (max-width: 575px) {
  .btn-send {
    min-height: 4.4rem;
  }
}

.btn-text {
  padding: 0;
  border: none;
  outline: none;
  display: inline;
  cursor: pointer;
  text-decoration: underline;
  background-color: transparent;
}
.btn-text:hover {
  text-decoration: none;
}

.tabs-nav {
  z-index: 100;
  position: relative;
}
.tabs-nav__header {
  height: 5rem;
  display: none;
  color: var(--c-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.4rem;
  border-radius: 1rem;
  padding: 0.5rem 1.6rem;
  border: 1px solid var(--c-primary);
}
.tabs-nav__header:after {
  width: 1rem;
  height: 0.5rem;
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTAnIGhlaWdodD0nNScgdmlld0JveD0nMCAwIDEwIDUnIGZpbGw9J25vbmUnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTUgNUw5LjMzMDEzIDAuNUgwLjY2OTg3M0w1IDVaJyBmaWxsPScjNzlCM0NEJy8+PC9zdmc+");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.tabs-nav__content {
  display: flex;
}
.tabs-nav__item {
  opacity: 0.5;
  height: 7.2rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2rem;
  cursor: pointer;
  position: relative;
  color: var(--fg-title);
  border-bottom: 2px solid transparent;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-time);
}
.tabs-nav__item:hover {
  opacity: 1;
  color: var(--c-primary-dark);
  transition: var(--transition-time);
}
.tabs-nav__item.active {
  opacity: 1;
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
  transition: var(--transition-time);
}
@media (max-width: 575px) {
  .tabs-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .tabs-nav__content {
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    padding: 1rem 0;
    position: absolute;
    row-gap: 2rem;
    flex-direction: column;
    background-color: white;
    border-radius: 0 0 1rem 1rem;
    border: 1px solid var(--c-primary);
    opacity: 0;
    visibility: hidden;
  }
  .tabs-nav__item {
    height: auto;
    opacity: 1;
    color: var(--c-primary);
    font-size: 1.5rem;
    line-height: 160%;
    padding: 0.4rem 1.6rem;
    border-bottom: none;
    justify-content: flex-start;
    transition: none;
  }
  .tabs-nav__item.active {
    font-weight: 700;
    text-decoration: underline;
  }
  .tabs-nav.open .tabs-nav__content {
    opacity: 1;
    visibility: visible;
  }
  .tabs-nav.open .tabs-nav__header {
    border-radius: 1rem 1rem 0 0;
  }
  .tabs-nav.open .tabs-nav__header:after {
    transform: rotate(180deg);
  }
}

[data-tabs-target] {
  display: none;
}
[data-tabs-target].active {
  display: block;
}

.navbar {
  overflow: hidden;
  border-radius: 1rem;
  background-color: white;
  margin-bottom: 3rem;
}
.navbar .swiper-wrapper {
  overflow: hidden;
  justify-content: space-between;
}
.navbar .swiper-slide {
  width: auto;
}
.navbar__button {
  height: 4.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 11%;
  overflow: hidden;
  text-decoration: none;
  font-family: var(--fg-second);
  color: var(--fg-title);
  position: relative;
  padding: 1rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__button:hover {
  color: var(--c-primary);
}
.navbar__button.active {
  color: var(--c-primary);
}
.navbar__button.active:before {
  bottom: -4px;
  left: calc(50% - 2.3rem);
  content: "";
  height: 8px;
  width: 4.6rem;
  border-radius: 5px 5px 0 0;
  background-color: var(--c-primary);
  position: absolute;
}
@media (max-width: 991px) {
  .navbar {
    margin-bottom: 1.6rem;
  }
  .navbar .swiper-wrapper {
    overflow: visible;
    justify-content: inherit;
  }
  .navbar__button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
}
@media (max-width: 575px) {
  .navbar__button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}

.field {
  width: 100%;
  display: block;
  font-weight: 400;
  position: relative;
  background: transparent;
}
.field input[type=text], .field input[type=email], .field input[type=password], .field textarea {
  margin: 0;
  width: 100%;
  height: 6.7rem;
  outline: none;
  color: #2B2B2B;
  box-shadow: none;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.1rem;
  padding: 2.2rem 2.4rem;
  background: white;
  border-radius: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid white;
}
.field input[type=text]::placeholder, .field input[type=email]::placeholder, .field input[type=password]::placeholder, .field textarea::placeholder {
  color: rgba(43, 43, 43, 0.7);
}
.field input[type=text]::-ms-clear, .field input[type=email]::-ms-clear, .field input[type=password]::-ms-clear, .field textarea::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.field input[type=text]:focus, .field input[type=text]:active, .field input[type=email]:focus, .field input[type=email]:active, .field input[type=password]:focus, .field input[type=password]:active, .field textarea:focus, .field textarea:active {
  outline: none;
}
.field input[type=text]:focus::placeholder, .field input[type=text]:active::placeholder, .field input[type=email]:focus::placeholder, .field input[type=email]:active::placeholder, .field input[type=password]:focus::placeholder, .field input[type=password]:active::placeholder, .field textarea:focus::placeholder, .field textarea:active::placeholder {
  color: transparent;
}
.field input[type=text].error, .field input[type=email].error, .field input[type=password].error, .field textarea.error {
  border-color: red !important;
}
.field textarea {
  height: auto;
  resize: none;
}
.field__icon {
  fill: #CFCFCF;
  font-size: 0;
  line-height: 0;
  cursor: text;
  top: calc(50% - 0.75rem);
  left: 2.4rem;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.field__icon svg {
  width: 100%;
  flex-shrink: 0;
}
.field--icon input[type=text], .field--icon input[type=email], .field--icon input[type=password], .field--icon textarea {
  padding-left: 4.8rem;
}
@media (max-width: 991px) {
  .field input[type=text], .field input[type=email], .field input[type=password], .field textarea {
    height: 5rem;
    font-size: 1.2rem;
    line-height: 2rem;
    padding: 1.3rem 2rem;
  }
  .field__icon {
    left: 1.4rem;
    width: 1.2rem;
    height: 1.2rem;
    top: calc(50% - 0.6rem);
  }
  .field--icon input[type=text], .field--icon input[type=email], .field--icon input[type=password], .field--icon textarea {
    padding-left: 3.4rem;
  }
}
@media (max-width: 575px) {
  .field input[type=text], .field input[type=email], .field input[type=password], .field textarea {
    height: 4.5rem;
    font-size: 1.2rem;
    line-height: 1.9rem;
    padding: 1rem 1.4rem;
  }
  .field--icon input[type=text], .field--icon input[type=email], .field--icon input[type=password], .field--icon textarea {
    padding-left: 3.4rem;
  }
}

.checkbox {
  color: #2D3035;
  font-size: 0;
  line-height: 0;
  font-weight: 400;
  position: relative;
  display: block;
}
.checkbox__input {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
}
.checkbox__input:checked + .checkbox__label:before {
  border-color: var(--c-primary);
  background: var(--c-primary);
}
.checkbox__input:checked + .checkbox__label:after {
  opacity: 1;
  visibility: visible;
}
.checkbox__input:disabled + .checkbox__label {
  opacity: 0.6;
  cursor: default;
}
.checkbox__label {
  cursor: pointer;
  color: var(--gray);
  min-height: 16px;
  font-size: 1.3rem;
  line-height: 1.8rem;
  position: relative;
  display: block;
  padding: 0 0 0 2.5rem;
}
.checkbox__label:before {
  top: 0.3rem;
  left: 0;
  z-index: 1;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  border-radius: 0.2rem;
  background: transparent;
  border: 1px solid var(--c-primary);
}
.checkbox__label:after {
  top: 0.3rem;
  left: 0;
  z-index: 5;
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTQnIGhlaWdodD0nMTQnIHZpZXdCb3g9JzAgMCAxNCAxNCcgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTAuODgyNyA0LjE4Mjg0QzEwLjcyNjUgNC4wMjQ5OSAxMC40NzMzIDQuMDI0OTkgMTAuMzE3IDQuMTgyODRMNS41MjQ3OSA5LjAyNTAzTDMuNjgyNzMgNy4xNjM3OUMzLjUyNjUzIDcuMDA1OTUgMy4yNzMyOCA3LjAwNTk2IDMuMTE3MDQgNy4xNjM3OUMyLjk2MDgyIDcuMzIxNjIgMi45NjA4MiA3LjU3NzUxIDMuMTE3MDQgNy43MzUzNUw1LjI0MTk1IDkuODgyMzVDNS4zOTgxIDEwLjA0MDIgNS42NTE1NCAxMC4wNDAxIDUuODA3NjMgOS44ODIzNUwxMC44ODI3IDQuNzU0NDFDMTEuMDM4OSA0LjU5NjU5IDExLjAzODkgNC4zNDA2OCAxMC44ODI3IDQuMTgyODRaJyBmaWxsPSd3aGl0ZScvPjwvc3ZnPg==");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 575px) {
  .checkbox__label {
    padding-top: 0.2rem;
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}

/**
 * Swiper 11.1.14
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 12, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
[data-fancybox] {
  cursor: pointer;
}

.modal {
  width: 100%;
  max-width: 116rem;
  background-color: white;
  border-radius: 4rem;
  padding: 3.6rem 9.5rem 4.6rem 9.5rem;
}
.modal__header {
  text-align: center;
  padding-top: 5rem;
  margin-bottom: 5.8rem;
  display: flex;
  row-gap: 1.6rem;
  flex-direction: column;
}
.modal__title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  color: var(--fg-title);
  font-family: var(--ff-secondary);
}
.modal__subtitle {
  font-size: 1.5rem;
  line-height: 160%;
  margin: 0 auto;
  max-width: 68rem;
  color: var(--fg-second);
}
.modal__grid {
  padding-bottom: 4rem;
  display: grid;
  grid-row-gap: 4.2rem;
  grid-column-gap: 7.8rem;
  grid-template-columns: 1fr 1fr;
}
.modal__lead {
  margin: 0 auto;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 160%;
  color: #595959;
  padding: 1.8rem 2rem;
  max-width: 48rem;
  border-radius: 3rem;
  background-color: #F6F8FA;
}
.modal__list {
  padding-bottom: 1rem;
  display: grid;
  grid-row-gap: 3.4rem;
  grid-column-gap: 7rem;
  grid-template-columns: 1fr 1fr;
}
.modal .f-button.is-close-btn {
  width: 4rem;
  height: 4rem;
  top: 5rem;
  right: 5rem;
  position: fixed;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}
.modal .f-button.is-close-btn svg {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
}
@media (max-width: 991px) {
  .modal {
    padding: 3rem;
    border-radius: 2rem;
  }
  .modal__header {
    text-align: center;
    padding-top: 0;
    margin-bottom: 3rem;
    row-gap: 1.2rem;
  }
  .modal__title {
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
  .modal__subtitle {
    font-size: 1.3rem;
    line-height: 160%;
  }
  .modal__lead {
    font-size: 1.3rem;
  }
  .modal .f-button.is-close-btn {
    top: 1rem;
    right: 1rem;
    position: absolute;
  }
  .modal .f-button.is-close-btn svg {
    stroke: var(--fg-second);
  }
  .modal__list {
    grid-template-columns: 1fr;
  }
  .modal__grid {
    padding-bottom: 2rem;
    grid-template-columns: 1fr;
  }
}
.modal-card {
  display: flex;
  column-gap: 6rem;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-card__media {
  display: block;
  overflow: hidden;
  border-radius: 2rem;
  width: 46rem;
  flex-shrink: 0;
}
.modal-card__title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  margin-bottom: 2rem;
  font-family: var(--ff-title);
}
.modal-card__text {
  max-width: 37rem;
  font-size: 1.5rem;
  line-height: 160%;
  color: var(--fg-second);
}
.modal-item {
  font-size: 1.5rem;
  line-height: 130%;
  color: var(--fg-second);
}
.modal-item__icon {
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  border-radius: 0.7rem;
  margin-bottom: 1.2rem;
  background: var(--gradient-secondary);
}
.modal-item p {
  margin-bottom: 2rem;
}
.modal-item p:last-child {
  margin-bottom: 0;
}
.modal-item__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 130%;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .modal-item {
    font-size: 1.3rem;
  }
  .modal-item__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.47rem;
    margin-bottom: 1rem;
  }
  .modal-item__title {
    font-size: 1.8rem;
    line-height: 130%;
    margin-bottom: 1.5rem;
  }
}
.fancybox__toolbar__column.is-left {
  display: none;
}
.fancybox__toolbar__column.is-right .f-button:not(:last-child) {
  display: none !important;
}

.item-info {
  color: var(--fg-second);
  font-size: 1.5rem;
  line-height: 160%;
  display: flex;
  column-gap: 2rem;
  align-items: flex-start;
}
.item-info__image {
  width: 10.8rem;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: 2rem;
}
.item-info p {
  margin-bottom: 2.2rem;
}
.item-info p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .item-info__image {
    width: 8rem;
  }
}

/*
    <button class="burger header__burger">
      <span class="burger__line"></span>
      <span class="burger__line"></span>
      <span class="burger__line"></span>
    </button>
*/
.burger {
  --line-width: 50%;
  --line-height: 2.5px;
  --line-offset: 0.8rem;
  --c-burger-line: #000;
  position: relative;
  width: var(--burger-width, 40px);
  height: var(--burger-height, 40px);
  transition: var(--tr);
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
}
.burger__line {
  position: absolute;
  top: 50%;
  right: 0%;
  display: block;
  width: var(--line-width, 50%);
  height: var(--line-height, 0.2rem);
  background: var(--c-burger-line);
  transition: var(--tr);
  border-radius: 2rem;
  pointer-events: none;
}

.burger__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - var(--line-offset)));
}

.burger__line:nth-child(2) {
  width: 30%;
  transform: translate(-80%, calc(-50% + 0px));
}

.burger__line:nth-child(3) {
  transform: translate(-50%, calc(-50% + var(--line-offset)));
  transform-origin: left;
}

.burger.is-active .burger__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 0px)) rotate(45deg);
}

.burger.is-active .burger__line:nth-child(2) {
  width: 0;
}

.burger.is-active .burger__line:nth-child(3) {
  transform: translate(-50%, calc(-50% - 0px)) rotate(-45deg);
  transform-origin: unset;
}

.header {
  z-index: 800;
  position: relative;
  background-color: white;
}
.header__container {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  z-index: 3;
  width: 5.4rem;
  height: 5.4rem;
  display: block;
  position: relative;
}
@media (max-width: 991px) {
  .header:before {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    content: "";
    z-index: 20;
    position: absolute;
    background-color: var(--c-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s var(--tr-jolly-enter);
  }
  .header--burger-opened:before {
    opacity: 1;
    visibility: visible;
    transition: all 0.45s var(--tr-jolly-enter);
  }
}

.menu {
  --fg: #68696B;
  --lh: 145.4%;
  --fw: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.menu__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  column-gap: 4rem;
  align-items: center;
}
.menu__link {
  opacity: 0.5;
  height: 6rem;
  overflow: hidden;
  position: relative;
  color: var(--fg-title);
  text-decoration: none;
  transition: var(--transition-time);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu__link:hover {
  opacity: 1;
  color: var(--c-primary);
  text-decoration: none;
  transition: var(--transition-time);
}
.menu__link.active {
  opacity: 1;
  color: var(--c-primary);
}
.menu__link.active:before {
  left: 0;
  right: 0;
  bottom: -5px;
  content: "";
  height: 8px;
  border-radius: 5px 5px 0 0;
  background-color: var(--c-primary);
  position: absolute;
}
@media (max-width: 991px) {
  .menu {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 12rem 4rem 3rem;
    position: fixed;
    background-color: white;
    transform: translateY(-100vh);
    transition: all 0.45s var(--tr-jolly-enter);
  }
  .menu__nav {
    row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu__link {
    height: auto;
  }
  .menu__link.active:before {
    display: none;
  }
  .menu--visible {
    transform: translateY(0);
    pointer-events: initial;
    transition: all 0.45s var(--tr-jolly-enter);
  }
}

.footer {
  color: var(--fg-third);
  font-family: var(--ff-secondary);
  padding-bottom: 2.6rem;
}
.footer__main {
  padding: 2rem 4.2rem 3rem 4.2rem;
  border-radius: 2rem;
  background-color: white;
  display: flex;
  row-gap: 2.5rem;
  flex-direction: column;
}
.footer__primary {
  display: flex;
  column-gap: 2rem;
  justify-content: space-between;
}
.footer__logo {
  display: block;
  width: 7.6rem;
  flex-shrink: 0;
}
.footer__contacts {
  padding-top: 2rem;
  display: flex;
  row-gap: 1.6rem;
  flex-direction: column;
}
.footer__contact {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: var(--fg-third);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  column-gap: 1.1rem;
  align-items: center;
}
.footer__contact i {
  width: 1.7rem;
  font-size: 0;
  line-height: 0;
  display: block;
  flex-shrink: 0;
}
.footer__contact span {
  display: block;
}
.footer__contact:hover {
  color: var(--fg-third);
  text-decoration: none;
}
.footer__offices {
  padding-top: 2rem;
  display: flex;
  column-gap: 1.6rem;
}
.footer__address {
  max-width: 23rem;
  color: var(--fg-third);
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-decoration: none;
  display: flex;
  column-gap: 1.1rem;
  align-items: flex-start;
}
.footer__address i {
  font-size: 0;
  line-height: 0;
  width: 1.3rem;
  display: block;
  flex-shrink: 0;
}
.footer__secondary {
  font-size: 1.3rem;
  line-height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__elem {
  color: rgba(36, 39, 41, 0.4);
}
.footer__dev a {
  color: rgba(36, 39, 41, 0.4);
  text-decoration: none;
  transition: var(--transition-time);
}
.footer__dev a:hover {
  color: rgb(36, 39, 41);
  text-decoration: underline;
  transition: var(--transition-time);
}
.footer__policy {
  color: rgba(36, 39, 41, 0.4);
  text-decoration: underline;
  transition: var(--transition-time);
}
.footer__policy:hover {
  color: rgb(36, 39, 41);
  text-decoration: underline;
  transition: var(--transition-time);
}
.footer__buttons {
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
.footer__button {
  height: 2.9rem;
  cursor: pointer;
  color: #444;
  padding: 0.4rem 2rem;
  border-radius: 5rem;
  text-decoration: none;
  border: 1px solid #444;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.7rem;
  background-color: white;
  transition: var(--transition-time);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__button:hover {
  color: white;
  background-color: #444;
  text-decoration: none;
  transition: var(--transition-time);
}
@media (max-width: 991px) {
  .footer__main {
    row-gap: 2.5rem;
    align-items: center;
    padding: 2rem 2rem 2rem 2rem;
  }
  .footer__logo {
    order: 1;
  }
  .footer__primary {
    flex-wrap: wrap;
    align-items: center;
  }
  .footer__contacts {
    order: 2;
  }
  .footer__offices {
    order: 3;
  }
  .footer__contacts {
    padding-top: 0;
  }
  .footer__secondary {
    width: 100%;
    row-gap: 2rem;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .footer__logo {
    width: 5.5rem;
    height: 5.5rem;
  }
  .footer__main {
    row-gap: 2.5rem;
  }
  .footer__offices {
    width: 100%;
    row-gap: 1rem;
    flex-direction: column;
  }
  .footer__buttons {
    width: 100%;
    margin-bottom: 0.6rem;
  }
  .footer__button {
    flex-grow: 1;
  }
}

.section {
  margin-bottom: 10rem;
}
.section--top {
  padding-top: 4rem;
}
.section--md {
  margin-bottom: 4rem;
}
.section__header {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  margin-bottom: 5rem;
  font-family: var(--ff-secondary);
}
.section__container {
  max-width: 105rem;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .section {
    margin-bottom: 6rem;
  }
  .section__header {
    font-size: 3.2rem;
    line-height: 3.2rem;
    margin-bottom: 2.2rem;
  }
  .section__header--news {
    margin-bottom: 3.5rem;
  }
  .section--top {
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .section {
    margin-bottom: 4rem;
  }
  .section__header {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 2.2rem;
  }
  .section__header--news {
    margin-bottom: 3rem;
  }
}

.news-grid {
  margin-bottom: 4.4rem;
  display: grid;
  grid-row-gap: 3rem;
  grid-column-gap: 2rem;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 991px) {
  .news-grid {
    row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }
}

.news-item {
  font-size: 1.5rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.news-item__media {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.news-item__media:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  content: "";
  position: absolute;
  background-color: rgba(99, 158, 184, 0);
  transition: var(--transition-time);
}
.news-item__media:hover:before {
  background-color: rgba(99, 158, 184, 0.3);
  transition: var(--transition-time);
}
.news-item__date {
  opacity: 0.3;
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--fg-regular);
  margin-bottom: 0.9rem;
}
.news-item__title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--ff-title);
}
.news-item__title a {
  color: var(--fg-regular);
  text-decoration: none;
  transition: var(--transition-time);
}
.news-item__title a:hover {
  color: var(--c-primary-dark);
  text-decoration: none;
  transition: var(--transition-time);
}
.news-item__text {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.news-item__footer {
  display: flex;
  align-items: center;
}
.news-item__link {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.1rem;
  cursor: pointer;
  white-space: nowrap;
  fill: var(--c-primary);
  color: var(--c-primary);
  text-decoration: none;
  transition: var(--transition-time);
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
.news-item__link span {
  display: block;
}
.news-item__link i {
  font-size: 0;
  line-height: 0;
  display: inline-block;
  height: 0.8rem;
  flex-shrink: 0;
}
.news-item__link:hover {
  fill: var(--c-primary-dark);
  color: var(--c-primary-dark);
  text-decoration: none;
  transition: var(--transition-time);
}
@media (max-width: 991px) {
  .news-item__title {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
}

.news-btn-read {
  min-width: 38.8rem;
}
@media (max-width: 575px) {
  .news-btn-read {
    min-width: inherit;
    width: 100%;
  }
}

.price-list {
  padding: 6rem 7rem;
  border-radius: 3rem;
  background-color: white;
  font-family: var(--ff-secondary);
}
.price-list__header {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 132%;
  margin-bottom: 3rem;
}
.price-list__main {
  font-size: 1.6rem;
  line-height: 132%;
}
.price-list__item {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.price-list__item:not(:first-child) {
  padding-top: 2rem;
}
.price-list__item:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(217, 217, 217, 0.6);
}
.price-list__title {
  flex-grow: 1;
  max-width: 70rem;
}
.price-list__content {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.price-list__value {
  white-space: nowrap;
}
.price-list__button {
  font-size: 0;
  line-height: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  fill: #A3A3A3;
  border: 1px solid #A3A3A3;
  transition: var(--transition-time);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-list__button i {
  width: 1.6rem;
  height: 0.8rem;
  display: block;
  flex-shrink: 0;
  transform: rotate(-45deg);
  transition: var(--transition-time);
}
.price-list__button:hover {
  fill: var(--fg-regular);
  border-color: var(--fg-regular);
  transition: var(--transition-time);
}
.price-list__button:hover i {
  transform: rotate(0deg);
  transition: var(--transition-time);
}
@media (max-width: 991px) {
  .price-list {
    padding: 3rem 4rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .price-list__main {
    font-size: 1.3rem;
    line-height: 132%;
  }
  .price-list__content {
    column-gap: 2rem;
  }
  .price-list__item:not(:first-child) {
    padding-top: 1.5rem;
  }
  .price-list__item:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 575px) {
  .price-list__main {
    font-size: 1.4rem;
    line-height: 132%;
  }
  .price-list__item {
    align-items: inherit;
  }
  .price-list__content {
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column-reverse;
  }
}

.post-block {
  border-radius: 3rem;
  padding: 3.6rem 4rem 7.6rem 4rem;
  background-color: white;
}
.post-block__avatar {
  width: 10rem;
  height: 10rem;
  display: block;
  overflow: hidden;
  margin: 0 auto 2.3rem auto;
}
.post-block__header {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 5rem;
  font-family: var(--ff-title);
}
.post-block__grid {
  width: 78rem;
  margin: 0 auto 3.5rem auto;
  display: grid;
  grid-column-gap: 2.8rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .post-block {
    padding: 3rem 4rem;
  }
  .post-block__avatar {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 1.3rem auto;
  }
  .post-block__header {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 2.5rem;
  }
  .post-block__grid {
    width: 100%;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }
  .post-block .btn-outline-primary {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .post-block {
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
  .post-block__header {
    font-size: 2rem;
    line-height: 2rem;
  }
}

.post {
  font-size: 1.5rem;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}
.post__media {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  margin-bottom: 2.7rem;
}
.post__media:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  content: "";
  position: absolute;
  background-color: rgba(99, 158, 184, 0);
  transition: var(--transition-time);
}
.post__media:hover:before {
  background-color: rgba(99, 158, 184, 0.3);
  transition: var(--transition-time);
}
.post__title {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}
.post__title a {
  color: var(--fg-regular);
  text-decoration: none;
  transition: var(--transition-time);
}
.post__title a:hover {
  color: var(--c-primary-dark);
  text-decoration: none;
  transition: var(--transition-time);
}
.post__footer {
  display: flex;
  align-items: center;
}
.post__link {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.2rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--c-primary);
  text-decoration: none;
  transition: var(--transition-time);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-primary);
}
.post__link:hover {
  color: var(--c-primary-dark);
  border-bottom-color: transparent;
  text-decoration: none;
  transition: var(--transition-time);
}
@media (max-width: 991px) {
  .post__media {
    margin-bottom: 1.4rem;
  }
  .post__title {
    font-size: 1.6rem;
    line-height: 140%;
  }
  .post__link {
    font-size: 1.5rem;
    line-height: 2.1rem;
  }
}
.consultation {
  border-radius: 3rem;
  background-color: white;
}
.consultation__header {
  position: relative;
}
.consultation__header:before {
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 1px;
  opacity: 0.5;
  position: absolute;
  background-color: #D9D9D9;
}
.consultation__body {
  padding: 3.2rem 6rem 4.8rem 6rem;
}
.consultation__row {
  display: flex;
  column-gap: 6rem;
}
.consultation__main {
  flex-grow: 1;
  color: var(--fg-second);
}
.consultation__media {
  width: 44rem;
  flex-shrink: 0;
}
.consultation__block {
  border-radius: 4.2rem;
  padding: 2rem 3rem 4rem 3rem;
  background-color: rgba(238, 233, 227, 0.5);
}
.consultation__info {
  margin-top: 3.2rem;
  display: flex;
  column-gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.consultation__tag {
  color: #343434;
  font-size: 1.8rem;
  line-height: 2rem;
  white-space: nowrap;
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  font-family: var(--ff-title);
}
.consultation__tag strong {
  font-weight: 700;
}
.consultation__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  flex-shrink: 0;
}
.consultation__image {
  display: block;
  overflow: hidden;
  margin-bottom: 2.4rem;
  border-radius: 2.5rem;
}
.consultation__divider {
  width: 2px;
  height: 2.8rem;
  background-color: #EBEBEB;
}
.consultation__intro {
  margin-bottom: 4.5rem;
}
.consultation__title {
  color: var(--fg-title);
  font-family: var(--ff-title);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 3.2rem;
  margin-bottom: 2rem;
}
.consultation__roadmap {
  list-style-type: none;
  counter-reset: num;
  margin: 0 0 2.2rem 0;
  font-size: 1.6rem;
  line-height: 140%;
  display: flex;
  row-gap: 1.35rem;
  flex-direction: column;
}
.consultation__roadmap li {
  padding-left: 4rem;
  position: relative;
}
.consultation__roadmap li:before {
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.9rem;
  color: whitesmoke;
  border-radius: 50%;
  position: absolute;
  content: counter(num);
  counter-increment: num;
  background-color: var(--fg-title);
  display: flex;
  align-items: center;
  justify-content: center;
}
.consultation__lead {
  font-size: 1.6rem;
  line-height: 140%;
  color: var(--fg-second);
  padding: 2rem;
  max-width: 34rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  background-color: var(--bg-card);
}
.consultation__lead--md {
  max-width: 39rem;
}
.consultation__text--md {
  max-width: 39rem;
}
.consultation__text p:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .consultation {
    font-size: 1.4rem;
  }
  .consultation__body {
    padding: 2rem 4rem 3rem 4rem;
  }
  .consultation__row {
    row-gap: 2rem;
    flex-direction: column;
  }
  .consultation__lead {
    max-width: 30rem;
  }
  .consultation__text {
    font-size: 1.4rem;
    line-height: 140%;
  }
  .consultation__roadmap {
    font-size: 1.4rem;
    line-height: 140%;
  }
  .consultation__media {
    width: 100%;
    border-radius: 2.5rem;
    padding: 1.5rem 2.5rem;
    background-color: rgba(238, 233, 227, 0.5);
  }
  .consultation__block {
    padding: 0;
    background-color: transparent;
  }
  .consultation__image {
    border-radius: 1.5;
  }
  .consultation__tag {
    font-size: 1.25rem;
  }
  .consultation__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .consultation__info {
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 575px) {
  .consultation {
    padding: 1rem 1rem 2.5rem 1rem;
  }
  .consultation__header {
    padding: 0;
    margin-bottom: 1.5rem;
  }
  .consultation__header:before {
    display: none;
  }
  .consultation__body {
    padding: 0;
  }
  .consultation__title {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 1.3rem;
  }
  .consultation__lead {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 140%;
    max-width: 23rem;
  }
}

.about {
  min-height: 51.4rem;
  position: relative;
}
.about:before {
  content: "";
  z-index: 10;
  left: 8.2rem;
  bottom: -19rem;
  width: 120rem;
  height: 25rem;
  position: absolute;
  background-color: #F6F8FA;
  filter: blur(40px);
}
.about__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.about__block-01 {
  margin-top: 5rem;
  width: 50rem;
  flex-shrink: 0;
  border-radius: 4.2rem;
  color: var(--fg-second);
  padding: 4.1rem 6rem 4.7rem 6rem;
  background-color: var(--bg-beige);
}
.about__block-01 .btn-primary {
  z-index: 50;
  min-width: 28rem;
  margin-top: 0.4rem;
}
.about__block-01 .list-point {
  row-gap: 1.7rem !important;
}
.about__block-02 {
  margin-top: 5rem;
  color: var(--fg-second);
  width: 36rem;
  flex-shrink: 0;
  border-radius: 3rem;
  padding: 2.2rem 2rem;
  background-color: white;
}
.about__header {
  font-weight: 700;
  font-size: 4rem;
  line-height: 90%;
  color: var(--fg-title);
  margin-bottom: 2.8rem;
  font-family: var(--ff-title);
}
.about__media {
  z-index: 5;
  pointer-events: none;
  left: calc(50% - 26rem);
  bottom: 0;
  width: 59.3rem;
  position: absolute;
}
.about .list-point {
  line-height: 160% !important;
}
@media (max-width: 991px) {
  .about {
    margin-bottom: 2rem;
  }
  .about:before {
    display: none;
  }
  .about__main {
    flex-direction: column;
  }
  .about__header {
    font-size: 3.2rem;
  }
  .about__block-01 {
    width: 100%;
    margin-top: 0;
    padding: 3rem 4rem 4rem 4rem;
    order: 1;
  }
  .about__block-01 {
    margin: 0;
    width: 100%;
    padding: 3rem 4rem;
    order: 1;
  }
  .about__media {
    width: 43rem;
    order: 2;
    margin: 0 auto;
    left: auto;
    bottom: auto;
    position: relative;
  }
  .about .btn-primary {
    width: 100%;
  }

  .about__block-02 {
    order: 3;
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .about__header {
    font-size: 2.4rem;
    margin-bottom: 1.3rem;
  }
  .about__block-01 {
    padding: 1.5rem 1.5rem 3.5rem 1.5rem;
  }
  .about__media {
    width: 100%;
    order: 2;
    margin: 0 auto;
    left: auto;
    bottom: auto;
    position: relative;
  }
  .about__block-01 {
    padding: 2.5rem 2rem 2.4rem 1.5rem;
  }
}

.about-docs {
  z-index: 30;
  overflow: hidden;
  position: relative;
  border-radius: 3rem;
  background-color: white;
  padding: 2.2rem 0 2.2rem 6rem;
  display: flex;
  align-items: center;
}
.about-docs__content {
  width: 27rem;
}
.about-docs__item {
  padding: 0.6rem;
  display: block;
  overflow: hidden;
  border-radius: 1.9rem;
}
.about-docs__image {
  display: block;
  overflow: hidden;
  border-radius: 1.2rem;
}
.about-docs__media {
  position: relative;
  width: calc(100% - 27rem);
  flex-shrink: 0;
}
.about-docs__media:before {
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  content: "";
  width: 4rem;
  position: absolute;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 43%, rgba(255, 255, 255, 0) 100%);
}
.about-docs__title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 1rem;
  font-family: var(--ff-title);
}
.about-docs__text {
  font-size: 1.2rem;
  line-height: 140%;
  color: var(--fg-second);
}
.about-docs__nav {
  margin-top: 1.8rem;
  display: flex;
  column-gap: 0.6rem;
  align-items: center;
}
.about-docs__control {
  display: none;
}
@media (max-width: 991px) {
  .about-docs {
    padding: 3rem 4rem;
    row-gap: 1.5rem;
    align-items: inherit;
    flex-direction: column;
  }
  .about-docs__content {
    width: auto;
    text-align: center;
  }
  .about-docs__title {
    font-size: 2.8rem;
    line-height: 2.8rem;
  }
  .about-docs__nav {
    display: none;
  }
  .about-docs__media {
    width: auto;
    margin: 0 -1rem;
    flex-shrink: 0;
  }
  .about-docs__control {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .about-docs {
    padding: 1.5rem 2rem 3.2rem 2rem;
  }
  .about-docs__title {
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
  }
  .about-docs__media {
    margin: 0 -0.5rem;
  }
}

[data-docs] .swiper-slide {
  width: 35rem;
  padding: 0 1rem;
}
@media (max-width: 991px) {
  [data-docs] {
    overflow: visible;
  }
  [data-docs] .swiper-slide {
    width: 40rem;
    padding: 0 1rem;
  }
}
@media (max-width: 575px) {
  [data-docs] .swiper-slide {
    width: 25.2rem;
    padding: 0 0.5rem;
  }
}

.works-header {
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
}
.works-header__block {
  width: 39rem;
  font-size: 1.5rem;
  line-height: 130%;
  border-radius: 2.2rem;
  color: var(--fg-second);
  padding: 3.2rem 2.6rem 4rem 2.6rem;
  background-color: white;
  display: flex;
  flex-shrink: 0;
  column-gap: 2rem;
  align-items: center;
  font-family: var(--ff-secondary);
}
.works-header__icon {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: 0.7rem;
  background: linear-gradient(125.37deg, rgb(140, 199, 225) 12.006%, rgb(121, 179, 205) 100%), rgb(217, 217, 217);
}
.works-header__title {
  width: 41rem;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 4rem;
  line-height: 90%;
  font-family: var(--ff-title);
  color: var(---fg-title);
}
.works-header__nav {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .works-header {
    margin-bottom: 2rem;
    row-gap: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .works-header__title {
    width: auto;
    font-size: 3.2rem;
  }
  .works-header__nav {
    display: none;
  }
  .works-header__block {
    width: 100%;
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .works-header__title {
    font-size: 2.4rem;
  }
  .works-header__block {
    padding: 1rem;
  }
}

.works {
  margin: 0 -1.1rem;
}
.works .swiper-slide {
  padding: 0 1.1rem;
}
.works__group {
  padding: 0.8rem;
  overflow: hidden;
  border-radius: 2rem;
  background-color: white;
  display: flex;
  row-gap: 0.6rem;
  flex-direction: column;
}
.works__item {
  display: block;
  overflow: hidden;
  border-radius: 2rem;
}
.works-control {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.works-control__nav {
  display: none;
}
@media (max-width: 991px) {
  .works-control {
    margin-top: 3rem;
    justify-content: space-between;
  }
  .works-control__nav {
    display: block;
  }
}
@media (max-width: 575px) {
  .works-control {
    margin-top: 2rem;
  }
}

.intro {
  max-width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.intro__media {
  width: 60.3rem;
  flex-shrink: 0;
  position: relative;
}
.intro__person {
  right: 14.7rem;
  bottom: 7.5rem;
  z-index: 50;
  height: 5.6rem;
  min-width: 14.7rem;
  padding: 1rem 1.7rem;
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 1.5rem;
  color: var(--fg-second);
  position: absolute;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.intro__person:before {
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMTcnIGhlaWdodD0nMTcnIHZpZXdCb3g9JzAgMCAxNyAxNycgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNNS44OTE1OCAwLjAyODUwMTVDNS44Nzk3OCAwLjA0NTAxNzIgNS41OTQyOCAwLjUzMzQyNSA1LjI1OTI0IDEuMTEzODVMNC42NTI4NiAyLjE3MDg5SDMuNDA0NzFIMi4xNTY1NlYzLjQxOTA0VjQuNjY3MTlMMS4wNzU5MiA1LjI5MDA5QzAuMzQ2ODUyIDUuNzEyNDMgLTAuMDAyMzQ3NTggNS45MjcxNCAxLjE4NzU0ZS0wNSA1Ljk1MDc0QzAuMDAyMzcxMzMgNS45NzE5NyAwLjI3NjA2OCA2LjQ2MDM4IDAuNjExMTExIDcuMDM4NDVDMC45NDM3OTUgNy42MTY1MiAxLjIxNzQ5IDguMDk3ODQgMS4yMTc0OSA4LjEwNDkyQzEuMjE3NDkgOC4xMTIgMC45NDM3OTUgOC41OTMzMyAwLjYxMTExMSA5LjE3MTRDMC4yNzYwNjggOS43NDk0NiAwLjAwMjM3MTMzIDEwLjIzNzkgMS4xODc1NGUtMDUgMTAuMjU5MUMtMC4wMDIzNDc1OCAxMC4yODUxIDAuMzQ2ODUyIDEwLjQ5NzQgMS4wNzgyOCAxMC45MTk4TDIuMTU2NTYgMTEuNTQ1VjEyLjc5MDhWMTQuMDM5SDMuNDA0NzFINC42NTI4Nkw1LjI1OTI0IDE1LjA5NkM1LjU5NDI4IDE1LjY3NjQgNS44ODIxNCAxNi4xNjQ4IDUuODk4NjUgMTYuMTgzN0M1LjkyNDYxIDE2LjIxMiA2LjA5Njg1IDE2LjEyIDcuMDA5OTYgMTUuNTkzOEw4LjA4ODIzIDE0Ljk2ODZMOS4xNjE3OCAxNS41ODkxQzkuNzU0MDEgMTUuOTMxMiAxMC4yNDcxIDE2LjIwNzMgMTAuMjU4OSAxNi4yMDI2QzEwLjI3MDcgMTYuMTk3OSAxMC41NTg2IDE1LjcxNDIgMTAuODk4MyAxNS4xMjQzTDExLjUxODkgMTQuMDUwOEwxMi43NzE4IDE0LjA0MzdMMTQuMDI0NiAxNC4wMzlMMTQuMDI5MyAxMi43ODYxTDE0LjAzNjQgMTEuNTM1NkwxNS4wOTgyIDEwLjkyMjFDMTUuNjgzMyAxMC41ODQ3IDE2LjE2OTQgMTAuMjk5MiAxNi4xODEyIDEwLjI4NzRDMTYuMTkzIDEwLjI3NTYgMTUuOTMxMSA5LjgwMTM3IDE1LjU4MTkgOS4xOTczNUMxNS4yNDIxIDguNjA5ODUgMTQuOTYxMyA4LjExNjcyIDE0Ljk2MTMgOC4xMDQ5MkMxNC45NjEzIDguMDkwNzcgMTUuMjQyMSA3LjYgMTUuNTgxOSA3LjAxMjQ5QzE1LjkzMTEgNi40MTA4MyAxNi4xOTMgNS45MzQyMiAxNi4xODEyIDUuOTIyNDJDMTYuMTY5NCA1LjkxMDYzIDE1LjY4MzMgNS42MjUxMyAxNS4wOTgyIDUuMjg3NzNMMTQuMDM2NCA0LjY3NDI3TDE0LjAyOTMgMy40MjM3NkwxNC4wMjQ2IDIuMTcwODlMMTIuNzcxOCAyLjE2NjE3TDExLjUxODkgMi4xNTkwOUwxMC44OTgzIDEuMDg1NTRDMTAuNTU4NiAwLjQ5NTY3NCAxMC4yNzA3IDAuMDExOTg1OCAxMC4yNTg5IDAuMDA3MjY3QzEwLjI0NzEgMC4wMDI1NDgyMiA5Ljc1NDAxIDAuMjc4NjA1IDkuMTYxNzggMC42MjA3MjZMOC4wODgyMyAxLjI0MTI2TDcuMDE3MDQgMC42MjA3MjZDNi40MjcxNyAwLjI3ODYwNSA1LjkzNjQgMC4wMDAxODg4MjggNS45MjkzMyAwLjAwMDE4ODgyOEM1LjkxOTg5IDAuMDAwMTg4ODI4IDUuOTAzMzcgMC4wMTQzNDUyIDUuODkxNTggMC4wMjg1MDE1Wk0xMS43ODc5IDYuMjE5NzJDMTIuMDYzOSA2LjUxMjI5IDEyLjI5NzUgNi43Njk0NyAxMi4zMDQ2IDYuNzkwN0MxMi4zMTE3IDYuODE0MyAxMi4zMTQgNi44NDQ5NyAxMi4zMDY5IDYuODYxNDlDMTIuMjk3NSA2Ljg4NzQ0IDExLjU4MjYgNy41MzYyOSA4LjEwNDc1IDEwLjY4MTRMNy41MjQzMiAxMS4yMDc2TDcuMDk5NjIgMTAuNzg1M0M2Ljg2NjAzIDEwLjU1NCA2LjIyODk4IDkuOTM4MjIgNS42ODM5NCA5LjQxNjc4QzUuMTM4OTEgOC44OTUzNCA0LjY3MTc0IDguNDQ0NjggNC42NDgxNCA4LjQxMTY1QzQuNjE1MTEgOC4zNjkxOCA0LjYwODAzIDguMzQwODcgNC42MjQ1NSA4LjMwNzg0QzQuNjU1MjIgOC4yNDE3NyA1Ljc0MDU3IDcuMjkwOTEgNS43ODMwNCA3LjI5MDkxQzUuODA0MjggNy4yOTA5MSA1LjkwMTAxIDcuMzY4NzcgNi4wMDAxMSA3LjQ2MzE1QzYuOTc2OTMgOC4zOTk4NSA3LjU2NDQzIDguOTQ0ODkgNy41ODA5NSA4LjkzNzgxQzcuNTkyNzQgOC45MzU0NSA4LjQxMTQ4IDguMjAxNjYgOS40MDAwOSA3LjMwNzQzQzEwLjQwMDUgNi40MDYxMSAxMS4yMTY5IDUuNjg2NDggMTEuMjQwNSA1LjY4NjQ4QzExLjI2NjQgNS42ODY0OCAxMS40ODgyIDUuOTAxMTkgMTEuNzg3OSA2LjIxOTcyWicgZmlsbD0nIzc5QjNDRCcvPjwvc3ZnPg==");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.intro__lead {
  font-size: 1.8rem;
  line-height: 160%;
  color: var(--fg-second);
  margin-bottom: 4rem;
}
.intro__lead p {
  margin: 0;
}
.intro__lead strong {
  border-bottom: 1px dashed var(--c-primary);
}
.intro__order {
  margin-bottom: 4.6rem;
  display: flex;
  column-gap: 2.2rem;
  align-items: center;
}
.intro__button {
  flex-shrink: 0;
  width: 28rem;
}
.intro__label {
  color: var(--fg-second);
  font-size: 1.3rem;
  line-height: 130%;
}
.intro__notice {
  opacity: 0.5;
  color: #404040;
  font-size: 1.4rem;
  line-height: 160%;
}
.intro__main {
  padding-bottom: 2.4rem;
}
.intro__info {
  color: #79B3CD;
}
.intro__image--sm {
  display: none;
}
@media (max-width: 991px) {
  .intro {
    flex-direction: column;
    padding-bottom: 8rem;
  }
  .intro__main {
    padding-top: 4rem;
  }
  .intro__button {
    width: 24rem;
  }
  .intro__media {
    width: 44.4rem;
    margin: 0 auto;
  }
  .intro__image--sm {
    display: block;
  }
  .intro__image--xl {
    display: none;
  }
  .intro__person {
    column-gap: 1rem;
    font-size: 1.2rem;
    height: 4.2rem;
    right: 10rem;
    bottom: 5rem;
  }
  .intro__person:before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .intro__order {
    margin-bottom: 0;
  }
  .intro__notice {
    left: 0;
    right: 0;
    z-index: 50;
    bottom: 2rem;
    text-align: center;
    position: absolute;
  }
}
@media (max-width: 575px) {
  .intro__main {
    padding-bottom: 1.8rem;
  }
  .intro__lead {
    font-size: 1.5rem;
    line-height: 160%;
    margin-bottom: 1.8rem;
  }
  .intro__order {
    row-gap: 1.6rem;
    flex-direction: column;
  }
  .intro__button {
    width: 100%;
  }
  .intro__label {
    font-size: 1.3rem;
    text-align: center;
  }
  .intro__label br {
    display: none;
  }
  .intro__media {
    width: 100%;
    max-width: 44.4rem;
    margin: 0 auto;
  }
  .intro__person {
    height: 4.3rem;
    right: 6rem;
    bottom: 4rem;
  }
  .intro__person:before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.intro-header {
  white-space: nowrap;
  color: var(--fg-title);
  font-weight: 700;
  font-size: 6.3rem;
  line-height: 90%;
  margin: 0 0 1.7rem 0;
}
.intro-header__row {
  display: block;
}
.intro-header__lead {
  color: var(--c-primary);
  position: relative;
}
.intro-header__lead:before {
  top: 1.8rem;
  bottom: 0.2rem;
  left: -1rem;
  right: -1rem;
  content: "";
  border-radius: 80px;
  position: absolute;
  border: 0.2rem solid var(--c-primary);
}
@media (max-width: 991px) {
  .intro-header {
    font-size: 5.8rem;
  }
}
@media (max-width: 575px) {
  .intro-header {
    font-size: 3.5rem;
  }
  .intro-header__lead:before {
    top: 1rem;
    bottom: 0.2rem;
    left: -0.5rem;
    right: -0.5rem;
  }
}

.features {
  margin-bottom: 4.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.features__item {
  min-height: 21rem;
  font-size: 1.9rem;
  line-height: 120%;
  padding: 2.2rem 3.8rem 3.6rem 3.8rem;
  background-color: #fff;
}
.features__item:first-child {
  border-radius: 3rem 0 0 3rem;
}
.features__item:last-child {
  border-radius: 0 3rem 3rem 0;
}
.features__item:nth-child(2) {
  position: relative;
}
.features__item:nth-child(2):after, .features__item:nth-child(2):before {
  top: 0;
  bottom: 0;
  z-index: 20;
  content: "";
  width: 3.6rem;
  position: absolute;
  filter: blur(24px);
  background: #F0F1F3;
  opacity: 0.9;
}
.features__item:nth-child(2):after {
  right: 100%;
}
.features__item:nth-child(2):before {
  left: 100%;
}
.features__media {
  fill: white;
  font-size: 0;
  line-height: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.7rem;
  margin-bottom: 1.4rem;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.features__icon {
  width: 2rem;
  height: 2rem;
  display: block;
  flex-shrink: 0;
}
.features__text p {
  margin: 0;
}
@media (max-width: 991px) {
  .features {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }
  .features__item {
    font-size: 1.5rem;
    line-height: 120%;
    min-height: 14.5rem;
    padding: 2rem;
    text-align: center;
    border-radius: 2rem;
  }
  .features__item:first-child {
    border-radius: 2rem;
  }
  .features__item:last-child {
    border-radius: 2rem;
  }
  .features__item:nth-child(2) {
    border-radius: 2rem;
  }
  .features__item:nth-child(2):after, .features__item:nth-child(2):before {
    display: none;
  }
  .features__media {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem auto;
  }
}

.essential {
  padding: 6.5rem 10rem;
  overflow: hidden;
  position: relative;
  border-radius: 4rem;
  background-color: white;
  min-height: 45.8rem;
}
.essential__media {
  right: 0;
  bottom: 0;
  width: 55rem;
  position: absolute;
}
.essential__content {
  z-index: 10;
  width: 60.4rem;
  position: relative;
}
.essential__text {
  max-width: 48rem;
  font-size: 1.65rem;
}
.essential__header {
  font-weight: 700;
  font-size: 4rem;
  line-height: 90%;
  margin-bottom: 2rem;
  font-family: var(--ff-title);
}
.essential__text p:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media (max-width: 991px) {
  .essential {
    padding: 0;
    border-radius: 2rem;
  }
  .essential__content {
    width: 100%;
    padding: 2rem 2rem;
  }
  .essential__header {
    font-size: 3.4rem;
    line-height: 90%;
  }
  .essential__media {
    width: 100%;
    right: auto;
    position: relative;
  }
  .essential__text {
    max-width: inherit;
    font-size: 1.4rem;
    line-height: 160%;
  }
}
@media (max-width: 575px) {
  .essential {
    border-radius: 2rem;
  }
  .essential__content {
    padding: 2rem 1.5rem;
  }
  .essential__header {
    font-size: 2.1rem;
    line-height: 90%;
    margin-bottom: 1.5rem;
  }
}

.steps {
  margin-bottom: 6.7rem;
}
.steps__header {
  margin-bottom: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.steps__title {
  font-weight: 700;
  font-size: 4rem;
  line-height: 4rem;
  font-family: var(--ff-secondary);
}
.steps__nav {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
.steps__control {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps__nav-sm {
  display: none;
}
@media (max-width: 991px) {
  .steps {
    margin-bottom: 3rem;
  }
  .steps__header {
    margin-bottom: 2.2rem;
  }
  .steps__title {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
  .steps__control {
    margin-top: 3rem;
  }
  .steps__nav {
    display: none;
  }
  .steps__nav-sm {
    display: block;
  }
  .steps__control {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .steps {
    margin-bottom: 2.4rem;
  }
  .steps__title {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .steps__pagination {
    margin-top: 3rem;
  }
}

.step-item {
  position: relative;
  color: var(--fg-second);
  border-radius: 4.2rem;
  background-color: white;
  padding: 4rem 8rem 5rem 5.8rem;
}
.step-item__num {
  left: 4rem;
  top: 6.5rem;
  opacity: 0.03;
  color: black;
  z-index: 1;
  font-size: 35rem;
  line-height: 110%;
  position: absolute;
  content: counter(num);
  counter-increment: num;
  font-family: var(--ff-title);
}
.step-item__top {
  z-index: 10;
  position: relative;
  color: rgba(43, 43, 43, 0.4);
  font-size: 1rem;
  line-height: 1.4rem;
  padding-bottom: 1.6rem;
  margin-bottom: 5.2rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(43, 43, 43, 0.4);
}
.step-item__main {
  z-index: 10;
  position: relative;
  display: flex;
  column-gap: 2.6rem;
  align-items: flex-start;
}
.step-item__content {
  padding-left: 14.4rem;
}
.step-item__media {
  width: 50.4rem;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: 2rem;
}
.step-item__header {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 110%;
  margin-bottom: 2rem;
  color: var(--fg-title);
  font-family: var(--ff-title);
}
.step-item__text {
  font-size: 1.6rem;
  line-height: 160%;
}
.step-item__text p:not(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .step-item {
    padding: 3rem;
    border-radius: 2rem;
  }
  .step-item:before {
    top: -1rem;
    left: auto;
    right: 1rem;
    font-size: 20rem;
  }
  .step-item__num {
    top: -1rem;
    left: auto;
    right: 1rem;
    font-size: 20rem;
  }
  .step-item__top {
    display: none;
  }
  .step-item__content {
    padding-left: 0;
  }
  .step-item__main {
    row-gap: 2rem;
    flex-direction: column;
  }
  .step-item__media {
    width: 100%;
  }
  .step-item__header {
    font-size: 2.8rem;
    line-height: 110%;
  }
}
@media (max-width: 575px) {
  .step-item {
    border-radius: 2rem;
    padding: 2rem 1.5rem;
  }
  .step-item:before {
    font-size: 15.2rem;
    line-height: 110%;
  }
  .step-item__num {
    font-size: 15.2rem;
    line-height: 110%;
  }
  .step-item__header {
    font-size: 2rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
  }
  .step-item__text {
    font-size: 1.4rem;
    line-height: 160%;
  }
}

.info {
  color: var(--fg-second);
  border-radius: 2rem;
  background-color: #fff;
  padding: 4rem 5rem 6rem 4rem;
}
.info__main {
  margin-bottom: 3rem;
  display: flex;
  row-gap: 2.8rem;
  flex-direction: column;
}
.info__row {
  display: flex;
  column-gap: 4.4rem;
  justify-content: space-between;
}
.info__col:first-child {
  width: 36.6rem;
  flex-shrink: 0;
}
.info__col:last-child {
  flex-grow: 1;
}
.info__col--pt {
  padding-top: 2rem;
}
.info__question {
  z-index: 10;
  position: relative;
  color: rgba(43, 43, 43, 0.4);
  font-size: 1rem;
  line-height: 1.4rem;
  padding-bottom: 1.6rem;
  margin-bottom: 2.6rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(43, 43, 43, 0.2);
}
.info__header {
  color: var(--fg-title);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 110%;
  margin-bottom: 0.9rem;
  font-family: var(--ff-title);
}
.info__image {
  display: block;
  overflow: hidden;
  border-radius: 2rem;
}
.info__gray {
  background-color: #F6F8FA;
  border-radius: 3rem;
  padding: 1.5rem 2.4rem;
  margin-top: 3.9rem;
}
.info__method {
  font-size: 1.3rem;
  line-height: 125%;
  background-color: #F6F8FA;
  border-radius: 3rem;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  column-gap: 1.7rem;
}
.info__badge {
  margin-bottom: 1.2rem;
}
.info__badge-title {
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.info__text p:not(:last-child) {
  margin-bottom: 2rem;
}
.info__footer {
  display: grid;
  grid-column-gap: 1.3rem;
  grid-template-columns: 30rem 1fr;
}
.info__data {
  font-size: 1.5rem;
  line-height: 160%;
}
.info__data p:not(:last-child) {
  margin-bottom: 2.4rem;
}
.info__data a {
  cursor: pointer;
  text-decoration: underline;
}
.info__data a:hover {
  text-decoration: none;
}
.info__expert {
  margin-top: 4rem;
  display: flex;
  row-gap: 1.7rem;
  flex-direction: column;
}
.info__expert--top {
  margin-top: 0;
}

.info-section .navbar__button {
  font-size: 1.6rem;
  height: 5.5rem;
}

@media (max-width: 575px) {
    .info-section .navbar__button {
        font-size: 1.2rem;
        height: 4.5rem;
    }
}

@media (max-width: 991px) {
  .info {
    padding: 3rem;
  }
  .info__main {
    row-gap: 2.3rem;
  }
  .info__row {
    row-gap: 2rem;
    flex-direction: column;
  }
  /*.info__row:first-child {
    flex-direction: column-reverse;
  }*/
  .info__question {
    display: none;
  }
  .info__header {
    font-size: 2.8rem;
    line-height: 110%;
  }
  .info__col:first-child {
    width: 100%;
    flex-shrink: 0;
  }
  .info__col:last-child {
    flex-grow: 1;
  }
  .info__col--pt {
    padding-top: 0;
  }
  .info__text {
    font-size: 1.4rem;
    line-height: 160%;
  }
  .info__footer {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  .info__expert--top {
    margin-top: 0;
  }
  .info__data {
    font-size: 1.4rem;
    line-height: 160%;
  }
  .info__gray {
    padding: 1.5rem;
    border-radius: 2.4rem;
  }
}
@media (max-width: 575px) {
  .info {
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }
  .info__main {
    margin-bottom: 1.5rem;
    display: flex;
    row-gap: 2.3rem;
  }
  .info__header {
    font-size: 2.4rem;
    line-height: 110%;
  }
  .info__text {
    font-size: 1.4rem;
    line-height: 160%;
  }
  .info__gray {
    padding: 1.5rem;
  }
  .info__method {
    row-gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }
  .info .mb-5 {
    margin-bottom: 1.5rem !important;
  }
}

.info-author {
  display: flex;
  column-gap: 1.7rem;
  align-items: center;
}
.info-author__avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.info-author__content {
  font-size: 1.2rem;
  line-height: 160%;
}
.info-author__name {
  color: var(--fg-title);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.9rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 575px) {
  .info-author__avatar {
    width: 7rem;
    height: 7rem;
  }
}

.badge {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 118%;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--ff-title);
  min-height: 3rem;
  padding: 0.4rem 2.8rem;
  border-radius: 5rem;
  background-color: white;
  display: inline-flex;
  align-items: center;
}
.badge--white {
  color: var(--fg-red);
  background-color: white;
}
.badge--dark {
  color: white;
  background-color: #4B4B4B;
}
.badge--red {
  color: white;
  background-color: var(--fg-red);
}
.badge--blue {
  color: whitesmoke;
  background: var(--c-primary);
}
.badge--sm {
  padding: 0.4rem 1.4rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  text-transform: inherit;
}
.main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-title);
}

h2,
h2 {
  font-weight: 700;
  font-size: var(--fz-h2);
  line-height: var(--fz-h2);
}
h4,
h4 {
  font-weight: 700;
  font-size: var(--fz-h4);
  line-height: 140%;
}

.list-point {
  font-size: 1.6rem;
  line-height: 140%;
  display: flex;
  row-gap: 1.35rem;
  flex-direction: column;
}
.list-point li {
  position: relative;
  padding-left: 2.5rem;
}
.list-point li:before {
  top: 0;
  left: 0.7rem;
  content: "•";
  position: absolute;
}
@media (max-width: 991px) {
  .list-point {
    font-size: 1.4rem;
  }
}

.list-line {
  font-size: 1.6rem;
  line-height: 140%;
  display: flex;
  row-gap: 1.35rem;
  flex-direction: column;
}
.list-line li {
  position: relative;
  padding-left: 2rem;
}
.list-line li:before {
  top: 0;
  left: 0;
  content: "—";
  position: absolute;
}
@media (max-width: 991px) {
  .list-line {
    font-size: 1.4rem;
  }
}

.swiper-pagination {
  font-size: 0;
  line-height: 0;
  display: flex;
  column-gap: 1.3rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .swiper-pagination {
    column-gap: 1.1rem;
  }
}
@media (max-width: 575px) {
  .swiper-pagination {
    column-gap: 0.8rem;
  }
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  background-color: #E6E6E6;
}
@media (max-width: 991px) {
  .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.swiper-pagination-bullet-active {
  background-color: var(--c-primary);
}
.swiper-pagination-bullet-active:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 0.9rem);
  left: calc(50% - 0.9rem);
  border: 1px solid var(--c-primary);
}
@media (max-width: 991px) {
  .swiper-pagination-bullet-active:before {
    width: 1.4rem;
    height: 1.4rem;
    top: calc(50% - 0.7rem);
    left: calc(50% - 0.7rem);
  }
}

.buttons-group {
  display: flex;
  column-gap: 4rem;
  align-items: center;
  justify-content: center;
}
.buttons-group__item {
  width: 28rem;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .buttons-group {
    column-gap: 1.6rem;
  }
  .buttons-group__item {
    width: calc(50% - 0.8rem);
  }
}
@media (max-width: 575px) {
  .buttons-group {
    row-gap: 1.5rem;
    flex-direction: column;
  }
  .buttons-group__item {
    width: 100%;
  }
}

.heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.heading__title {
  color: var(--fg-title);
  margin-bottom: 1.5rem;
}
.heading__subtitle {
  font-size: 1.5rem;
  line-height: 1.9rem;
  color: var(--fg-second);
}
@media (max-width: 991px) {
  .heading {
    margin-bottom: 2rem;
  }
  .heading__title {
    margin-bottom: 1rem;
  }
  .heading__subtitle {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
}
@media (max-width: 575px) {
  .heading {
    margin-bottom: 2rem;
  }
  .heading__title {
    font-size: 2.4rem;
    line-height: 90%;
    margin-bottom: 1rem;
  }
  .heading__subtitle {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

.homepage {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.homepage__body {
  z-index: 10;
  position: relative;
}
.homepage__bg {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 114rem;
  position: absolute;
}
.homepage__pattern {
  z-index: 5;
  top: 6.8rem;
  left: calc(50% - 84rem);
  width: 243.6rem;
  position: absolute;
}

.comment-portal {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.4rem;
}
.comment-portal__item {
  height: 2.9rem;
  font-size: 1.3rem;
  line-height: 160%;
  border-radius: 3rem;
  padding: 0 1rem;
  color: var(--fg-second);
  background-color: white;
  display: flex;
  column-gap: 0.8rem;
  align-items: center;
  white-space: nowrap;
}
.comment-portal__logo {
  height: 2.1rem;
  display: inline-block;
}
.comment-portal__rating {
  display: flex;
  column-gap: 0.4rem;
  align-items: center;
}
.comment-portal__link {
  color: var(--fg-second);
  text-decoration: underline;
}
.comment-portal__link:hover {
  color: var(--fg-second);
  text-decoration: none;
}
.comment-portal__star {
  width: 5.3rem;
}

.comments {
  margin: 0 -0.7rem;
  position: relative;
}
.comments:after, .comments:before {
  top: 0;
  bottom: 0;
  content: "";
  z-index: 20;
  width: 1000px;
  position: absolute;
  background-color: rgb(246, 248, 250);
}
.comments:after {
  left: 100%;
  opacity: 0.5;
}
.comments:before {
  right: 100%;
}
.comments__scrollbar {
  margin-top: 5.4rem;
}
.comments__pagination {
  display: none;
}
.comments__item {
  display: block;
}

.comments__block {
  margin-bottom: .8rem;
}

.comments__block:last-child {
  margin-bottom: 0;
}

.comments .swiper-slide {
  width: fit-content;
}

@media (max-width: 991px) {
  .comments .swiper-slide {
  width: 'auto';
  }
}

@media (max-width: 991px) {
  .comments:after, .comments:before {
    display: none;
  }
  .comments__scrollbar {
    margin-top: 2.4rem;
  }
}
@media (max-width: 575px) {
  .comments__scrollbar {
    display: none;
  }
  .comments__pagination {
    margin-top: 2.4rem;
    display: block;
  }
}

[data-comments] {
  overflow: visible;
}
[data-comments] .swiper-slide {
  padding: 0 0.7rem;
}
@media (max-width: 991px) {
  [data-comments] .swiper-slide {
    width: 24rem;
  }
}
@media (max-width: 575px) {
  [data-comments] .swiper-slide {
    width: 100%;
  }
}

.swiper-scrollbar-horizontal {
  margin: 0 0.7rem;
  position: relative;
}
.swiper-scrollbar-horizontal:before {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(121, 179, 205, 0.3);
}

.swiper-scrollbar-drag {
  height: 3px;
  z-index: 10;
  cursor: pointer;
  position: relative;
  background-color: #79B3CD;
}

.success {
  background: none;
}

@media (min-width: 992px) {
  .success .faq__content {
    grid-template-columns: auto 70%;
  }
}

.is-hidden {
  visibility: hidden !important;
  display: none !important;
}

@media (min-width: 450px) {
  .only-mobile {
    display: none;
  }
}

.is-transparent {
  opacity: 0 !important;
  pointer-events: none !important;
}

.is-opaque {
  opacity: 0.5;
}
/*# sourceMappingURL=../maps/style.css.map */
