@charset "UTF-8";
:root {
  --pl-color-white: #ffffff;
  --pl-color-black: #000000;
  --pl-color-black-brand: #333c55;
  --pl-color-black-brand-dark: #202638;
  --pl-color-black-brand-darkest: #0e111d;
  --pl-color-black-brand-darkest2: #0c0f16;
  --pl-color-blue-dark: #0b1b49;
  --pl-color-gray-light: #f1f4fa;
  --pl-color-gray-brand: #9fa4c3;
  --pl-color-brand: #e61d25;
  --pl-color-brand-light: #fd3c3c;
  --pl-color-brand-dark: #c90202;
  --pl-color-form-bg: #e5ebf5;
  --pl-color-table-border: #e4e4ee;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: local("Inter-Thin"), url("../fonts/Inter-Thin.woff2") format("woff2"), url("../fonts/Inter-Thin.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: local("Inter-ExtraLight"), url("../fonts/Inter-ExtraLight.woff2") format("woff2"), url("../fonts/Inter-ExtraLight.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: local("Inter-Light"), url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter-Regular"), url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: local("Inter-Medium"), url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: local("Inter-SemiBold"), url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: local("Inter-Bold"), url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: local("Inter-ExtraBold"), url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: local("Inter-Black"), url("../fonts/Inter-Black.woff2") format("woff2"), url("../fonts/Inter-Black.woff") format("woff");
  font-display: swap;
}
html {
  box-sizing: border-box;
}

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

*:first-child {
  margin-top: 0;
}

*:last-child {
  margin-bottom: 0;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-white, #ffffff);
}

a {
  color: var(--pl-color-brand, #e61d25);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a {
    transition-property: color;
    transition-duration: 0.3s;
  }
  a:focus, a:hover {
    color: var(--pl-color-brand-dark, #c90202);
  }
}
a:active {
  opacity: 0.9;
}
a:not([href]) {
  color: inherit;
}

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

button:not(:disabled) {
  cursor: pointer;
}

input,
button,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

/* plugins */
: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-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: 0.2s ease-out 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-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: 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-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: 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-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: 0.2s 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-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: 0.1s 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: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: 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: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: 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: 1050;
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}

.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__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;
  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__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;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  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: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 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: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 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: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content, .fancybox__container:not(.is-compact) .has-map .fancybox__content, .fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.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: 20px;
  --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);
  -webkit-user-select: none;
  -moz-user-select: none;
  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;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.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);
  min-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: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  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));
}

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  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-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.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 {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  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;
  margin: auto 0;
  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: 20px;
  --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-hidden {
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  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;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

: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;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox__container:not(.has-toolbar) .fancybox__content {
  padding: 0;
}

.fancybox__container.is-compact .popup-form {
  overflow: hidden;
}

/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */
@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;
  overflow: clip;
  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 */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* basics */
.article-after:not(:first-child) {
  padding-top: 48px;
}
@media (min-width: 1000px) {
  .article-after:not(:first-child) {
    padding-top: 56px;
  }
}
@media (min-width: 1260px) {
  .article-after:not(:first-child) {
    padding-top: 48px;
  }
}
@media (min-width: 1660px) {
  .article-after:not(:first-child) {
    padding-top: 64px;
  }
}
.article-after__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-after__btn-wrap:not(:first-child) {
  padding-top: 32px;
}
@media (min-width: 720px) {
  .article-after__btn-wrap:not(:first-child) {
    padding-top: 40px;
  }
}
@media (min-width: 1000px) {
  .article-after__btn-wrap:not(:first-child) {
    padding-top: 48px;
  }
}
.article-after .article-after__btn {
  width: 100%;
  padding: 11px 63px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .article-after .article-after__btn {
    padding-block: 15px;
    font-size: 14px;
  }
}
@media (min-width: 1000px) {
  .article-after .article-after__btn {
    max-width: 400px;
  }
}
@media (min-width: 1660px) {
  .article-after .article-after__btn {
    max-width: 480px;
    padding-block: 19px;
  }
}

.article-content__header {
  margin-bottom: 24px;
}
@media (min-width: 1260px) {
  .article-content__header {
    margin-bottom: 32px;
  }
}
@media (min-width: 1420px) {
  .article-content__header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1660px) {
  .article-content__header {
    margin-bottom: 48px;
  }
}
.article-content__title {
  margin-bottom: 0;
}
.article-content__title:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 720px) {
  .article-content__title:not(:last-child) {
    margin-bottom: 16px;
  }
}
.article-content__time {
  opacity: 0.75;
}

.content *:not(table *) {
  margin-block: 16px;
}
@media (min-width: 720px) {
  .content *:not(table *) {
    margin-block: 24px;
  }
}
.content *:first-child,
.content *[class]:first-child {
  margin-top: 0;
}
.content *:last-child,
.content *[class]:last-child {
  margin-bottom: 0;
}
.content img {
  border-radius: 4px;
}
.content li {
  margin-block: 8px;
}
@media (min-width: 720px) {
  .content li {
    margin-block: 16px;
  }
}
.content .accent-block,
.content .double-block {
  margin-block: 48px;
}
@media (min-width: 1000px) {
  .content .accent-block,
  .content .double-block {
    margin-block: 56px;
  }
}
@media (min-width: 1260px) {
  .content .accent-block,
  .content .double-block {
    margin-block: 64px;
  }
}
@media (min-width: 1660px) {
  .content .accent-block,
  .content .double-block {
    margin-block: 80px;
  }
}
@media (min-width: 1000px) {
  .content .double-block > * {
    margin-block: 0;
  }
}
@media (max-width: 999px) {
  .content .double-block > *:nth-child(2) {
    margin-top: 48px;
  }
}
.content ol:not([class]) li,
.content ul:not([class]) li {
  position: relative;
  padding-left: 28px;
}
@media (min-width: 720px) {
  .content ol:not([class]) li,
  .content ul:not([class]) li {
    padding-left: 32px;
  }
}
.content ul:not([class]) li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pl-color-brand, #e61d25);
  font-size: 20px;
}
.content ol:not([class]) {
  counter-reset: list;
}
.content ol:not([class]) li {
  counter-increment: list;
}
.content ol:not([class]) li::before {
  content: counter(list) ". ";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  color: var(--pl-color-brand, #e61d25);
}
.content h1,
.content .h1,
.content h2,
.content .h2,
.content h3,
.content .h3,
.content h4,
.content .h4 {
  margin-block: 48px 16px;
}
@media (min-width: 720px) {
  .content h1,
  .content .h1,
  .content h2,
  .content .h2,
  .content h3,
  .content .h3,
  .content h4,
  .content .h4 {
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) {
  .content h1,
  .content .h1,
  .content h2,
  .content .h2,
  .content h3,
  .content .h3,
  .content h4,
  .content .h4 {
    margin-top: 56px;
  }
}
@media (min-width: 1260px) {
  .content h1,
  .content .h1,
  .content h2,
  .content .h2,
  .content h3,
  .content .h3,
  .content h4,
  .content .h4 {
    margin-top: 64px;
  }
}
@media (min-width: 1660px) {
  .content h1,
  .content .h1,
  .content h2,
  .content .h2,
  .content h3,
  .content .h3,
  .content h4,
  .content .h4 {
    margin-top: 80px;
  }
}
.content h1 + h2,
.content h1 + .h2,
.content h1 + .h3,
.content h1 + .h4,
.content .h1 + h2,
.content .h1 + .h2,
.content .h1 + .h3,
.content .h1 + .h4,
.content h2 + h3,
.content h2 + .h3,
.content h2 + .h4,
.content .h2 + h3,
.content .h2 + .h3,
.content .h2 + .h4,
.content h3 + h4,
.content h3 + .h4,
.content .h3 + h4,
.content .h3 + .h4 {
  margin-top: 16px;
}
@media (min-width: 720px) {
  .content h1 + h2,
  .content h1 + .h2,
  .content h1 + .h3,
  .content h1 + .h4,
  .content .h1 + h2,
  .content .h1 + .h2,
  .content .h1 + .h3,
  .content .h1 + .h4,
  .content h2 + h3,
  .content h2 + .h3,
  .content h2 + .h4,
  .content .h2 + h3,
  .content .h2 + .h3,
  .content .h2 + .h4,
  .content h3 + h4,
  .content h3 + .h4,
  .content .h3 + h4,
  .content .h3 + .h4 {
    margin-top: 24px;
  }
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
input[type=password] {
  display: inline-block;
  padding: 14px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-overflow: ellipsis;
  background-color: var(--pl-color-white, #ffffff);
  border: none;
  outline: 2px solid transparent;
  outline-offset: -2px;
  border-radius: 50px;
  transition-property: box-shadow, outline-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (min-width: 1660px) {
  input[type=text],
  input[type=tel],
  input[type=number],
  input[type=email],
  input[type=password] {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline-color: var(--pl-color-gray-brand, #9fa4c3);
}
input[type=text]:disabled,
input[type=tel]:disabled,
input[type=number]:disabled,
input[type=email]:disabled,
input[type=password]:disabled {
  opacity: 0.5;
}
input[type=text].error,
input[type=tel].error,
input[type=number].error,
input[type=email].error,
input[type=password].error {
  outline-color: var(--pl-color-brand, #e61d25);
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder {
  color: var(--pl-color-black-brand, #333c55);
  opacity: 0.5;
  -moz-transition-property: color, opacity;
  transition-property: color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder {
  color: var(--pl-color-black-brand, #333c55);
  opacity: 0.5;
  transition-property: color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

table {
  position: relative;
  display: block;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: auto hidden;
  scrollbar-color: var(--pl-color-table-border, #e4e4ee) transparent;
  scrollbar-width: thin;
}
table::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
table::-webkit-scrollbar-thumb {
  background-color: var(--pl-color-table-border, #e4e4ee);
  background-clip: content-box;
  border-width: 6px;
  border-style: solid;
  border-color: transparent;
  border-radius: 16px;
}
table tbody {
  display: table;
  min-width: 100%;
  border-right: 1px solid var(--pl-color-table-border, #e4e4ee);
  border-bottom: 1px solid var(--pl-color-table-border, #e4e4ee);
  border-radius: 4px;
}
table tr:first-child > *:first-child {
  border-top-left-radius: 4px;
}
table tr:first-child > *:last-child {
  border-top-right-radius: 4px;
}
table tr:last-child > *:first-child {
  border-bottom-left-radius: 4px;
}
table tr:last-child > *:last-child {
  border-bottom-right-radius: 4px;
}
table th,
table td {
  position: relative;
  padding: 14px 16px;
}
table th::before,
table td::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: -1px;
  left: 0;
  border: 1px solid var(--pl-color-table-border, #e4e4ee);
  border-radius: inherit;
  pointer-events: none;
}
table th {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: start;
  color: rgba(51, 60, 85, 0.7);
  background-color: var(--pl-color-gray-light, #f1f4fa);
}
@media (min-width: 720px) {
  table th {
    font-size: 16px;
  }
}
table td {
  font-size: 14px;
  line-height: 24px;
  vertical-align: top;
}
@media (min-width: 720px) {
  table td {
    font-size: 16px;
    line-height: 28px;
  }
}
table td > *:not(:last-child) {
  margin-bottom: 2px;
}
table .column-main {
  min-width: 240px;
}
@media (min-width: 720px) {
  table .column-main {
    min-width: 274px;
  }
}
table .column-area,
table .column-price {
  min-width: 200px;
}
table .link {
  font-weight: 500;
}
table .price {
  font-weight: 500;
}
table .label {
  display: inline-block;
  padding: 5px 8px 3px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.05em;
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-brand, #e61d25);
  background-image: linear-gradient(270deg, #ed0000, #c90202);
  border-radius: 4px;
}

.text-gradient {
  background-image: linear-gradient(270deg, #ff8155, #ed0000 53%, #c90202);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icons-lg {
  --icons-lg-li-icon-size: 72px;
}
.icons-lg li {
  background-repeat: no-repeat;
  background-size: var(--icons-lg-li-icon-size) var(--icons-lg-li-icon-size);
  background-position: center top;
}
@media (max-width: 719px) {
  .icons-lg li {
    padding-top: calc(var(--icons-lg-li-icon-size) + 14px);
  }
}
@media (min-width: 720px) {
  .icons-lg li {
    display: flex;
    align-items: center;
    min-height: var(--icons-lg-li-icon-size);
    padding-left: calc(var(--icons-lg-li-icon-size) + 40px);
    background-position: left center;
  }
}
@media (min-width: 1260px) {
  .icons-lg li {
    align-items: flex-start;
    background-position-y: top;
  }
}
.icons-lg li:not(:last-child) {
  margin-bottom: 24px;
}

.accent-block {
  padding: 24px;
  background-color: var(--pl-color-gray-light, #f1f4fa);
  border-radius: 4px;
}
@media (min-width: 720px) {
  .accent-block {
    padding: 48px;
  }
}
@media (min-width: 1260px) {
  .accent-block {
    padding-inline: 56px;
  }
}
@media (min-width: 1420px) {
  .accent-block {
    padding-inline: 64px;
  }
}
@media (min-width: 1660px) {
  .accent-block {
    padding: 64px 80px;
  }
}
.accent-block h1,
.accent-block .h1,
.accent-block h2,
.accent-block .h2,
.accent-block h3,
.accent-block .h3,
.accent-block h4,
.accent-block .h4 {
  color: var(--pl-color-blue-dark, #0b1b49);
}

@media (min-width: 1000px) {
  .double-block {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1000px) {
  .double-block > *:nth-child(1), .double-block > *:nth-child(2) {
    width: calc(50% - 10px);
    padding-right: 48px;
  }
}

.link {
  color: var(--pl-color-brand, #e61d25);
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .link {
    transition-property: color;
    transition-duration: 0.3s;
  }
  .link:focus, .link:hover {
    color: var(--pl-color-brand-dark, #c90202);
  }
}
.link:active {
  opacity: 0.9;
}
.link:not([href]) {
  color: inherit;
}
.link--from-light {
  color: var(--pl-color-white, #ffffff);
}
@media (hover: hover) and (pointer: fine) {
  .link--from-light:focus, .link--from-light:hover {
    color: var(--pl-color-brand-light, #fd3c3c);
  }
}
.link--to-light {
  color: var(--pl-color-brand-light, #fd3c3c);
}
@media (hover: hover) and (pointer: fine) {
  .link--to-light:focus, .link--to-light:hover {
    color: var(--pl-color-white, #ffffff);
  }
}
.link--dark {
  color: var(--pl-color-black-brand, #333c55);
}
@media (hover: hover) and (pointer: fine) {
  .link--dark:focus, .link--dark:hover {
    color: var(--pl-color-brand, #e61d25);
  }
}

.nav__list, .breadcrumbs__list, .submenu__list, .social, .brief, .aside-list__list, .content ol:not([class]),
.content ul:not([class]), .icons-lg {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.header:not(.header--index) + .header-placeholder, .hero {
  padding-top: 64px;
}
@media (min-width: 720px) {
  .header:not(.header--index) + .header-placeholder, .hero {
    padding-top: 72px;
  }
}
@media (min-width: 1000px) {
  .header:not(.header--index) + .header-placeholder, .hero {
    padding-top: 104px;
  }
}

.map-section__header, .binary--dark .binary__content-part, .section-pt {
  padding-top: 48px;
}
@media (min-width: 720px) {
  .map-section__header, .binary--dark .binary__content-part, .section-pt {
    padding-top: 64px;
  }
}
@media (min-width: 1260px) {
  .map-section__header, .binary--dark .binary__content-part, .section-pt {
    padding-top: 80px;
  }
}
@media (min-width: 1660px) {
  .map-section__header, .binary--dark .binary__content-part, .section-pt {
    padding-top: 120px;
  }
}

.main__title-wrap + *, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pt2 {
  padding-top: 48px;
}
@media (min-width: 1000px) {
  .main__title-wrap + *, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pt2 {
    padding-top: 56px;
  }
}
@media (min-width: 1260px) {
  .main__title-wrap + *, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pt2 {
    padding-top: 64px;
  }
}
@media (min-width: 1660px) {
  .main__title-wrap + *, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pt2 {
    padding-top: 80px;
  }
}

.map-section__header, .binary--dark .binary__content-part, .section-pb {
  padding-bottom: 48px;
}
@media (min-width: 720px) {
  .map-section__header, .binary--dark .binary__content-part, .section-pb {
    padding-bottom: 64px;
  }
}
@media (min-width: 1260px) {
  .map-section__header, .binary--dark .binary__content-part, .section-pb {
    padding-bottom: 80px;
  }
}
@media (min-width: 1660px) {
  .map-section__header, .binary--dark .binary__content-part, .section-pb {
    padding-bottom: 120px;
  }
}

.main__aside, .main__content:not(:last-child), .map-section2__header, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pb2 {
  padding-bottom: 48px;
}
@media (min-width: 1000px) {
  .main__aside, .main__content:not(:last-child), .map-section2__header, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pb2 {
    padding-bottom: 56px;
  }
}
@media (min-width: 1260px) {
  .main__aside, .main__content:not(:last-child), .map-section2__header, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pb2 {
    padding-bottom: 64px;
  }
}
@media (min-width: 1660px) {
  .main__aside, .main__content:not(:last-child), .map-section2__header, .form-block--section .form-block__container, .form-block--section .form-block__form-message, .section-pb2 {
    padding-bottom: 80px;
  }
}

.binary--dark .binary__content-wrap {
  padding-right: 18px;
  padding-left: 18px;
}
@media (min-width: 720px) {
  .binary--dark .binary__content-wrap {
    padding-right: 34px;
    padding-left: 34px;
  }
}
@media (min-width: 1000px) {
  .binary--dark .binary__content-wrap {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1260px) {
  .binary--dark .binary__content-wrap {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 1420px) {
  .binary--dark .binary__content-wrap {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (min-width: 1660px) {
  .binary--dark .binary__content-wrap {
    padding-right: 130px;
    padding-left: 130px;
  }
}

.hh {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}
@media (min-width: 720px) {
  .hh {
    font-size: 64px;
    line-height: 80px;
  }
}
@media (min-width: 1260px) {
  .hh {
    font-size: 72px;
    line-height: 88px;
  }
}
@media (min-width: 1420px) {
  .hh {
    font-size: 88px;
    line-height: 100px;
  }
}
@media (min-width: 1660px) {
  .hh {
    font-size: 100px;
    line-height: 120px;
  }
}

h1,
.h1 {
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
}
@media (min-width: 720px) {
  h1,
  .h1 {
    font-size: 48px;
    line-height: 56px;
  }
}
@media (min-width: 1660px) {
  h1,
  .h1 {
    font-size: 64px;
    line-height: 76px;
  }
}

h2,
.h2 {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
}
@media (min-width: 720px) {
  h2,
  .h2 {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (min-width: 1660px) {
  h2,
  .h2 {
    font-size: 40px;
    line-height: 52px;
  }
}

h3,
.h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 720px) {
  h3,
  .h3 {
    font-size: 26px;
    line-height: 40px;
  }
}
@media (min-width: 1660px) {
  h3,
  .h3 {
    font-size: 32px;
    line-height: 48px;
  }
}

h4,
.h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 720px) {
  h4,
  .h4 {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 1660px) {
  h4,
  .h4 {
    font-size: 26px;
    line-height: 40px;
  }
}

.text-24,
.text-l {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 720px) {
  .text-24,
  .text-l {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 1660px) {
  .text-24,
  .text-l {
    font-size: 24px;
    line-height: 36px;
  }
}

body, .text-20,
.text {
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 720px) {
  body, .text-20,
  .text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1660px) {
  body, .text-20,
  .text {
    font-size: 20px;
    line-height: 32px;
  }
}

.text-16,
.text-s {
  font-size: 14px;
  line-height: 24px;
}
@media (min-width: 720px) {
  .text-16,
  .text-s {
    font-size: 16px;
    line-height: 28px;
  }
}

.text-14,
.text-xs {
  font-size: 14px;
  line-height: 24px;
}

.fw200 {
  font-weight: 200;
}

.fw300 {
  font-weight: 200;
}

.container {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
}
@media (min-width: 720px) {
  .container {
    padding-right: 34px;
    padding-left: 34px;
  }
}
@media (min-width: 1000px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1260px) {
  .container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 1420px) {
  .container {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (min-width: 1660px) {
  .container {
    padding-right: 130px;
    padding-left: 130px;
  }
}

.container-paddings {
  padding-right: 18px;
  padding-left: 18px;
}
@media (min-width: 720px) {
  .container-paddings {
    padding-right: 34px;
    padding-left: 34px;
  }
}
@media (min-width: 1000px) {
  .container-paddings {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1260px) {
  .container-paddings {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 1420px) {
  .container-paddings {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (min-width: 1660px) {
  .container-paddings {
    padding-right: 130px;
    padding-left: 130px;
  }
}

.sticky-shadow {
  box-shadow: 0 1px 0 0 rgba(51, 59, 85, 0.05);
}

.bg-light {
  background-color: var(--pl-color-gray-light, #f1f4fa);
}

/* modules elements */
.aside-list {
  font-weight: 500;
}
.aside-list__link {
  display: inline-block;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (min-width: 1260px) {
  .aside-list__link {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.aside-list__item.current .aside-list__link:not(:hover):not(:focus) {
  color: var(--pl-color-brand, #e61d25);
}

ymaps[class*=balloon_layout_normal] {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 40px 0 rgba(165, 165, 197, 0.16);
}

ymaps[class*=balloon__layout] {
  background-color: #ffffff;
  border-radius: 12px;
}

ymaps[class*=balloon__close] {
  width: 40px;
  background-size: 12px 12px;
}

ymaps[class*=balloon__close] + ymaps[class*=balloon__content] {
  min-width: 260px;
  margin-right: 0;
  padding: 20px;
}

ymaps[class*=balloon__content] > * {
  width: 100% !important;
  height: auto !important;
}

.balloon {
  font-family: "Inter", Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--pl-color-black-brand, #333c55);
}
.balloon > * {
  margin-block: 10px;
}
.balloon > *:first-child {
  margin-top: 0;
}
.balloon > *:last-child {
  margin-bottom: 0;
}
.balloon img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-block: 16px;
}
.balloon__head {
  padding-right: 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.balloon__head--lg {
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
}
.balloon__link {
  display: block;
  font-weight: 500;
  color: var(--pl-color-brand, #e61d25);
}
.balloon__link:focus, .balloon__link[href]:hover {
  color: var(--pl-color-brand-dark, #c90202);
}
.balloon__link--lg {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
}

.banner-aside {
  display: flex;
  border-radius: 4px;
  background-color: var(--pl-color-gray-light, #f1f4fa);
  overflow: hidden;
  min-height: var(--pl-banner-aside-min-height, 100px);
}
@media (min-width: 1260px) {
  .banner-aside {
    --pl-banner-aside-min-height: 334px;
  }
}
@media (min-width: 1420px) {
  .banner-aside {
    --pl-banner-aside-min-height: 364px;
  }
}
@media (min-width: 1660px) {
  .banner-aside {
    --pl-banner-aside-min-height: 480px;
  }
}
.banner-aside::before {
  content: "Баннер";
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 600;
  font-size: 64px;
  line-height: 76px;
  color: #d3ddf2;
  transform: translate(-50%, -50%);
}
.banner-aside__descr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-aside__inner {
  position: relative;
  display: flex;
  width: 100%;
}
.banner-aside__inner > * {
  width: 100%;
}

.brief {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
@media (min-width: 720px) {
  .brief {
    -moz-column-gap: 48px;
    column-gap: 48px;
  }
}
@media (min-width: 1000px) {
  .brief {
    -moz-column-gap: 56px;
    column-gap: 56px;
  }
}
@media (max-width: 719px) {
  .brief--hero {
    justify-content: center;
  }
}

.btn {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 7px 23px;
  font-weight: 500;
  text-align: center;
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-white, #ffffff);
  border: 1px solid transparent;
  border-radius: 200px;
}
@media (hover: hover) and (pointer: fine) {
  .btn {
    transition-property: color, background-color, border-color, box-shadow;
    transition-duration: 0.3s;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:focus, .btn:hover[href], .btn:hover:not(:disabled) {
    color: var(--pl-color-brand, #e61d25);
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:active {
    opacity: 0.9;
  }
}
.btn:disabled {
  opacity: 0.5;
}
.btn.active .btn__text {
  display: none;
}
.btn:not(.active) .btn__text2 {
  display: none;
}
.btn__text, .btn__text2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn__text svg, .btn__text2 svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
.btn--lg {
  padding: 15px 35px;
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
@media (min-width: 720px) {
  .btn--lg {
    padding: 19px 47px;
    font-size: 17px;
  }
}
@media (min-width: 1420px) {
  .btn--lg {
    padding: 25px 63px;
  }
}
.btn--md {
  padding-block: 15px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .btn--md {
    padding-inline: 63px;
    font-size: 14px;
  }
}
@media (min-width: 1660px) {
  .btn--md {
    padding-block: 19px;
  }
}
.btn--brand {
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-brand, #e61d25);
}
@media (hover: hover) and (pointer: fine) {
  .btn--brand:focus, .btn--brand:hover[href], .btn--brand:hover:not(:disabled) {
    color: var(--pl-color-white, #ffffff);
    background-color: var(--pl-color-brand-light, #fd3c3c);
  }
}
.btn--dark {
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-black-brand-dark, #202638);
}
@media (hover: hover) and (pointer: fine) {
  .btn--dark:focus, .btn--dark:hover[href], .btn--dark:hover:not(:disabled) {
    color: var(--pl-color-white, #ffffff);
    background-color: var(--pl-color-black-brand, #333c55);
  }
}
.btn--dark--to-red {
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-black-brand-dark, #202638);
}
@media (hover: hover) and (pointer: fine) {
  .btn--dark--to-red:focus, .btn--dark--to-red:hover[href], .btn--dark--to-red:hover:not(:disabled) {
    color: var(--pl-color-white, #ffffff);
    background-color: var(--pl-color-brand, #e61d25);
    box-shadow: 0 4px 24px 0 rgba(253, 60, 60, 0.5);
  }
}
.btn--border {
  border-color: rgba(61, 70, 98, 0.15);
}
@media (hover: hover) and (pointer: fine) {
  .btn--border:focus, .btn--border:hover[href], .btn--border:hover:not(:disabled) {
    border-color: rgba(61, 70, 98, 0.25);
    box-shadow: 0 8px 24px 0 rgba(145, 160, 205, 0.15);
  }
}

.btn-arrow {
  position: relative;
  display: flex;
  align-items: center;
  width: 48px;
  height: 32px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 2px;
  transition-property: opacity;
  transition-duration: 0.3s;
}
@media (min-width: 720px) {
  .btn-arrow {
    height: 40px;
  }
}
@media (min-width: 1260px) {
  .btn-arrow {
    width: 56px;
    height: 48px;
  }
}
.btn-arrow__inner {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--pl-color-black, #000000);
  background-color: var(--pl-color-gray-light, #f1f4fa);
  border-radius: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .btn-arrow__inner {
    transition-property: color, background-color, border-color, box-shadow;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
  }
}
.btn-arrow:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-arrow[aria-controls*=swiper]:disabled {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .btn-arrow:focus-visible .btn-arrow__inner, .btn-arrow:hover:not(:disabled) .btn-arrow__inner {
    color: var(--pl-color-black, #000000);
    background-color: #e6ebf3;
  }
}
.btn-arrow__icon {
  position: relative;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .btn-arrow__icon {
    transition-property: opacity, fill, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
  }
}
.btn-arrow--left .btn-arrow__icon {
  transform: rotate(180deg);
}
.btn-arrow--right .btn-arrow__icon {
  transform: rotate(0);
}
.btn-arrow--down .btn-arrow__icon {
  transform: rotate(90deg);
}
.btn-arrow--down.active .btn-arrow__icon {
  transform: rotate(-90deg);
}
.btn-arrow--up .btn-arrow__icon {
  transform: rotate(-90deg);
}
.btn-arrow--up-active .btn-arrow__icon {
  transform: rotate(90deg);
}
.btn-arrow--dark .btn-arrow__inner {
  color: var(--pl-color-gray-brand, #9fa4c3);
  background-color: rgba(12, 15, 22, 0.89);
}
@media (min-width: 1000px) {
  .btn-arrow--dark:focus-visible .btn-arrow__inner, .btn-arrow--dark:hover:not(:disabled) .btn-arrow__inner {
    color: var(--pl-color-brand-light, #fd3c3c);
    background-color: #0c0f16;
  }
}
.btn-arrow--white .btn-arrow__inner {
  color: var(--pl-color-gray-brand, #9fa4c3);
  background-color: var(--pl-color-white, #ffffff);
}
@media (min-width: 1000px) {
  .btn-arrow--white:focus-visible .btn-arrow__inner, .btn-arrow--white:hover:not(:disabled) .btn-arrow__inner {
    color: var(--pl-color-black-brand, #333c55);
    background-color: var(--pl-color-white, #ffffff);
    box-shadow: 0 8px 24px 0 rgba(145, 160, 205, 0.15);
  }
}
.btn-arrow--round {
  width: 56px;
  height: 56px;
  border-radius: 100px;
}
.btn-arrow--round .btn-arrow__inner {
  background-color: var(--pl-color-white, #ffffff);
  border: 1px solid rgba(61, 70, 98, 0.15);
}
.btn-arrow--round:focus-visible .btn-arrow__inner, .btn-arrow--round:hover:not(:disabled) .btn-arrow__inner {
  background-color: var(--pl-color-white, #ffffff);
  border-color: rgba(61, 70, 98, 0.25);
  box-shadow: 0 8px 24px 0 rgba(145, 160, 205, 0.15);
}

.card-album {
  display: flex;
}
.card-album__inner {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 50%;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-gray-brand, #9fa4c3);
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .card-album__inner {
    padding-top: 110%;
  }
}
@media (min-width: 1000px) {
  .card-album__inner {
    font-size: 13px;
  }
}
.card-album__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--pl-color-white, #ffffff);
  opacity: 0;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .card-album__inner::before {
    transition-property: opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-album:focus .card-album__inner::before, .card-album[href]:hover .card-album__inner::before {
    opacity: 0.05;
  }
}
.card-album__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: opacity 0.3s;
}
.card-album__icon-wrap {
  margin-bottom: 16px;
}
.card-album__icon {
  display: flex;
  width: 32px;
  height: 32px;
  margin-inline: auto;
  fill: currentColor;
}
@media (min-width: 720px) {
  .card-album__icon {
    width: 64px;
    height: 64px;
  }
}
.card-album__desc {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  padding: 4px 16px;
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-black-brand, #333c55);
  border-top-right-radius: 4px;
}
@media (min-width: 1000px) {
  .card-album__desc {
    padding: 8px 24px;
  }
}
.card-album__desc-inner {
  flex-grow: 1;
  display: block;
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 100%;
  text-overflow: ellipsis;
}
.card-album--gallery .card-album__inner {
  padding-top: 65.855%;
}

.card-icon {
  display: block;
}
.card-icon__inner {
  display: block;
  height: 100%;
  padding: 24px 18px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-brand-dark, #c90202);
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 720px) {
  .card-icon__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1660px) {
  .card-icon__inner {
    font-size: 20px;
    line-height: 32px;
  }
}
.card-icon__icon-wrap {
  margin-bottom: 16px;
}
.card-icon__icon {
  display: flex;
  width: 32px;
  height: 32px;
  margin-inline: auto;
  fill: currentColor;
}
@media (min-width: 720px) {
  .card-icon__icon {
    width: 64px;
    height: 64px;
  }
}
.card-icon__desc {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
}
.card-icon__desc-inner {
  -webkit-line-clamp: 5;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
  /* Обрезаем всё за пределами блока */
}

.card-news {
  display: flex;
  box-sizing: border-box;
}
.card-news__inner {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 320px;
  font-size: 14px;
  line-height: 24px;
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-gray-light, #f1f4fa);
  border-radius: 4px;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .card-news__inner {
    transition-property: background-color, box-shadow;
    transition-duration: 0.3s;
  }
}
@media (min-width: 1420px) {
  .card-news__inner {
    min-height: 366px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-news__inner:focus, .card-news__inner:hover {
    color: var(--pl-color-black-brand, #333c55);
    background-color: #e6ebf3;
  }
}
.card-news__content-wrap {
  position: relative;
  display: flex;
  width: 100%;
}
.card-news__content {
  padding: 20px 24px;
  width: 100%;
}
@media (min-width: 1260px) {
  .card-news__content {
    padding: 32px;
  }
}
@media (min-width: 1420px) {
  .card-news__content {
    padding-block: 40px;
  }
}
.card-news__date {
  display: inline-block;
  margin-bottom: 8px;
  opacity: 0.8;
}
.card-news__title-wrap:not(:last-child) {
  margin-bottom: 8px;
}
@media (min-width: 1260px) {
  .card-news__title-wrap:not(:last-child) {
    margin-bottom: 12px;
  }
}
.card-news__title-wrap, .card-news__title {
  font-weight: 600;
  font-size: inherit;
  line-height: inherit;
}
@media (min-width: 1420px) {
  .card-news__title-wrap, .card-news__title {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-news__title-wrap, .card-news__title {
    transition-property: color;
    transition-duration: 0.3s;
  }
}
.card-news__title {
  -webkit-line-clamp: 3;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
  /* Обрезаем всё за пределами блока */
}
.card-news__text {
  -webkit-line-clamp: 7;
  /* Число отображаемых строк */
  display: -webkit-box;
  /* Включаем флексбоксы */
  -webkit-box-orient: vertical;
  /* Вертикальная ориентация */
  overflow: hidden;
  /* Обрезаем всё за пределами блока */
}
@media (min-width: 1420px) and (max-width: 1659px) {
  .card-news--aside .card-news__inner {
    min-height: 320px;
  }
}
@media (min-width: 1260px) and (max-width: 1659px) {
  .card-news--aside .card-news__content {
    padding: 20px 24px;
  }
}
@media (min-width: 1260px) and (max-width: 1419px) {
  .card-news--aside .card-news__title-wrap:not(:last-child) {
    margin-bottom: 8px;
  }
}
@media (min-width: 1260px) and (max-width: 1419px) {
  .card-news--aside .card-news__title-wrap, .card-news--aside .card-news__title {
    font-size: 16px;
  }
}
.card-news--img .card-news__inner {
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-gray-brand, #9fa4c3);
  background-image: url(../images/sprite.svg#no-img);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 48px 48px;
}
.card-news--img .card-news__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.card-news--img .card-news__content-wrap {
  align-items: flex-end;
}
@media (hover: hover) and (pointer: fine) {
  .card-news--img .card-news__content-wrap {
    transition-property: background-color;
    transition-duration: 0.3s;
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-news--img .card-news__inner:focus .card-news__content-wrap, .card-news--img .card-news__inner:hover .card-news__content-wrap {
    background-color: rgba(61, 70, 98, 0.4);
  }
}
.card-news--img .card-news__content {
  padding-top: 40px;
  background-image: linear-gradient(transparent, rgba(34, 42, 67, 0.7));
}
@media (min-width: 1260px) {
  .card-news--img .card-news__content {
    padding-bottom: 32px;
  }
}
.card-news--white .card-news__inner {
  background-color: var(--pl-color-white, #ffffff);
}
@media (hover: hover) and (pointer: fine) {
  .card-news--white .card-news__inner:focus, .card-news--white .card-news__inner:hover {
    color: var(--pl-color-black-brand, #333c55);
    background-color: var(--pl-color-white, #ffffff);
    box-shadow: 0px 16px 40px 0px rgba(145, 160, 205, 0.15);
  }
}
@media (hover: hover) and (pointer: fine) {
  .card-news--white .card-news__inner:focus .card-news__title, .card-news--white .card-news__inner:hover .card-news__title {
    color: var(--pl-color-brand, #e61d25);
  }
}

.contacts__inner {
  padding: 15px 23px 23px;
  font-size: 14px;
  line-height: 24px;
  background-color: var(--pl-color-white, #ffffff);
  border: 1px solid rgba(61, 70, 98, 0.15);
  border-radius: 4px;
}
@media (min-width: 720px) {
  .contacts__inner {
    padding: 23px 31px 25px;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (min-width: 1420px) {
  .contacts__inner {
    padding-block: 29px 31px;
  }
}
@media (min-width: 1660px) {
  .contacts__inner {
    padding: 31px 39px 35px;
  }
}
.contacts__part:not(:first-child) {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
}
.contacts__part:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(159, 164, 195, 0.15);
}
.contacts__part > *:not(:last-child) {
  margin-bottom: 8px;
}
.contacts__caption {
  opacity: 0.72;
}
@media (min-width: 720px) {
  .contacts__caption--main:not(:last-child) {
    margin-bottom: 16px;
  }
}
.contacts__place {
  font-weight: 500;
}
@media (min-width: 1660px) {
  .contacts__place {
    font-size: 20px;
    line-height: 32px;
  }
}
.contacts__link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 1660px) {
  .contacts__link {
    font-size: 20px;
    line-height: 32px;
  }
}
.contacts__link--lg {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 1660px) {
  .contacts__link--lg {
    font-size: 24px;
    line-height: 24px;
  }
}
.contacts__link svg {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.contacts--dark .contacts__inner {
  border-color: transparent;
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-black-brand, #333c55);
}
.contacts--dark .contacts__caption {
  color: var(--pl-color-gray-light, #f1f4fa);
  opacity: 1;
}

.form {
  font-weight: 500;
}
.form__message-part:not(.hidden):not(:last-child) {
  margin-bottom: 16px;
}
.form__message-part:not(.hidden):not(:first-child) {
  margin-top: 16px;
}
.form__fields-wrap > *:not(:last-child) {
  margin-bottom: 16px;
}
.form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form__input {
  width: 100%;
  max-width: 100%;
}
.form__input.error + .form__input-message {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: var(--pl-color-brand, #e61d25);
  border-radius: 4px;
}
@media (max-width: 719px) {
  .form__input.error + .form__input-message {
    align-self: center;
  }
}
.form__input:not(.error) + .form__input-message {
  display: none;
}
.form__btn {
  width: 100%;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-width: 0;
}
@media (min-width: 1660px) {
  .form__btn {
    min-height: 64px;
  }
}
.form__footer {
  color: var(--pl-color-gray-brand, #9fa4c3);
}
@media (min-width: 720px) {
  .form--block .form__fields-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
  }
}
@media (min-width: 1660px) {
  .form--block .form__fields-wrap {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.form--block .form__fields-wrap > * {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 720px) {
  .form--block .form__fields-wrap > * {
    width: calc(50% - 8px);
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .form--block .form__fields-wrap > * {
    width: calc(33.3333333333% - 12px);
  }
}
@media (min-width: 1660px) {
  .form--block .form__fields-wrap > * {
    width: calc(33.3333333333% - 15px);
  }
}
@media (min-width: 720px) and (max-width: 999px) {
  .form--block .form__field--name {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .form--block .form__field--message {
    width: 100%;
  }
}
.form--block .form__fields-info {
  width: 100%;
}
@media (max-width: 719px) {
  .form--block .form__fields-info {
    padding-top: 8px;
  }
}
@media (min-width: 720px) {
  .form--block .form__fields-info {
    display: flex;
    align-items: center;
    width: calc(50% - 8px);
    flex-grow: 1;
  }
}
.form--popup .form__fields-wrap > :not(:last-child) {
  margin-bottom: 24px;
}
.form--popup .form__btn {
  width: 100%;
}
.form--popup .form__input.error + .form__input-message {
  align-self: center;
}
@media (min-width: 720px) {
  .form--section .form__fields-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
}
@media (min-width: 1660px) {
  .form--section .form__fields-wrap {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.form--section .form__fields-wrap > * {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 720px) {
  .form--section .form__fields-wrap > * {
    width: calc(50% - 8px);
    margin-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .form--section .form__fields-wrap > * {
    width: calc(25% - 12px);
  }
}
@media (min-width: 1660px) {
  .form--section .form__fields-wrap > * {
    width: calc(25% - 15px);
  }
}
.form--section .form__fields-info {
  width: 100%;
}
@media (min-width: 720px) and (max-width: 999px) {
  .form--section .form__fields-info {
    padding-top: 8px;
  }
}
@media (max-width: 719px) {
  .form--section .form__fields-info {
    padding-top: 24px;
  }
}

.form-message {
  position: relative;
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--pl-color-form-bg, inherit);
  border-radius: 16px;
  overflow: hidden;
  transition: opacity 0.3s 0.3s ease-in-out;
}
.form-message--hidden {
  opacity: 0;
  transition-delay: 0s;
}
.form-message__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1000px) {
  .form-message__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 48px;
  }
}
@media (min-width: 1260px) {
  .form-message__inner {
    row-gap: 32px;
  }
}
@media (min-width: 720px) {
  .form-message__content {
    position: relative;
    min-height: 48px;
    padding-left: 72px;
  }
}
.form-message__iconwrap {
  display: flex;
  margin-bottom: 16px;
}
@media (max-width: 719px) {
  .form-message__iconwrap {
    justify-content: center;
  }
}
@media (min-width: 720px) {
  .form-message__iconwrap {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }
}
.form-message__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.form-message__title:not(:last-child) {
  margin-bottom: 16px;
}
.form-message__btn-wrap {
  padding-top: 24px;
}
@media (min-width: 1000px) {
  .form-message__btn-wrap {
    padding-top: 0;
    flex-shrink: 0;
  }
}
.form-message__btn {
  background-color: var(--pl-color-form-bg, transparent);
  padding: 15px 23px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 719px) {
  .form-message__btn {
    width: 100%;
  }
}
@media (min-width: 720px) {
  .form-message__btn {
    padding: 15px 63px;
  }
}
@media (min-width: 1660px) {
  .form-message__btn {
    min-height: 64px;
  }
}
@media (min-width: 1000px) {
  .form-block--popup .form-message__inner {
    flex-direction: column;
  }
}
@media (min-width: 720px) {
  .form-block--popup .form-message__content {
    padding-left: 0;
  }
}
@media (min-width: 720px) {
  .form-block--popup .form-message__iconwrap {
    position: static;
    justify-content: center;
    margin-bottom: 16px;
  }
}

.form-block {
  background-color: var(--pl-color-form-bg, #e5ebf5);
  transition: height 0.3s 0.3s ease-in-out;
}
@media (max-width: 719px) {
  .form-block {
    text-align: center;
  }
}
.form-block__container {
  transition: opacity 0.3s 0.3s ease-out;
}
.form-block__container--hidden {
  opacity: 0;
  transition-delay: 0s;
}
.form-block__top {
  margin-bottom: 20px;
}
.form-block__title {
  color: var(--pl-color-blue-dark, #0b1b49);
}
.form-block__footer {
  position: relative;
  margin-top: 24px;
  padding-top: 24px;
}
@media (min-width: 1000px) {
  .form-block__footer {
    margin-top: 48px;
    padding-top: 48px;
    font-size: 16px;
  }
}
@media (min-width: 1420px) {
  .form-block__footer {
    width: 100%;
  }
}
.form-block__footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--pl-color-black-brand, #333c55);
  opacity: 0.1;
}
.form-block__footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}
@media (max-width: 719px) {
  .form-block__footer-inner {
    flex-direction: column;
  }
}
.form-block--block {
  border-radius: 4px;
}
.form-block--block .form-block__container, .form-block--block .form-block__form-message {
  padding: 48px 32px;
}
@media (min-width: 720px) {
  .form-block--block .form-block__container, .form-block--block .form-block__form-message {
    padding-inline: 48px;
  }
}
@media (min-width: 1000px) {
  .form-block--block .form-block__container, .form-block--block .form-block__form-message {
    padding: 56px 64px;
  }
}
@media (min-width: 1660px) {
  .form-block--block .form-block__container, .form-block--block .form-block__form-message {
    padding: 64px 80px;
  }
}
.form-block--block .form-block__top {
  margin-bottom: 24px;
}
.form-block--block .form-block__footer {
  margin-top: 18px;
  padding-top: 18px;
}
@media (min-width: 720px) {
  .form-block--block .form-block__footer {
    margin-top: 32px;
    padding-top: 32px;
  }
}
@media (min-width: 1260px) {
  .form-block--block .form-block__footer {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.form-block--block .form-block__footer-inner {
  row-gap: 16px;
}
.form-block--popup {
  max-width: 480px;
  margin-inline: auto;
  text-align: center;
}
.form-block--popup .form-block__container, .form-block--popup .form-block__form-message {
  padding: 24px 16px;
}
@media (min-width: 720px) {
  .form-block--popup .form-block__container, .form-block--popup .form-block__form-message {
    padding: 32px 24px;
  }
}
@media (min-width: 1000px) {
  .form-block--popup .form-block__container, .form-block--popup .form-block__form-message {
    padding: 64px 48px;
  }
}
@media (min-width: 720px) {
  .form-block--popup .form-block__top {
    margin-bottom: 32px;
  }
}
@media (min-width: 720px) {
  .form-block--popup .form-block__footer {
    margin-top: 32px;
    padding-top: 32px;
  }
}
@media (min-width: 720px) {
  .form-block--popup .form-block__footer-inner {
    flex-direction: column;
  }
}
.form-block--section .form-block__container, .form-block--section .form-block__form-message {
  padding-right: 18px;
  padding-left: 18px;
}
@media (min-width: 720px) {
  .form-block--section .form-block__container, .form-block--section .form-block__form-message {
    padding-right: 34px;
    padding-left: 34px;
  }
}
@media (min-width: 1000px) {
  .form-block--section .form-block__container, .form-block--section .form-block__form-message {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 1260px) {
  .form-block--section .form-block__container, .form-block--section .form-block__form-message {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media (min-width: 1420px) {
  .form-block--section .form-block__container, .form-block--section .form-block__form-message {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media (min-width: 1660px) {
  .form-block--section .form-block__container, .form-block--section .form-block__form-message {
    padding-right: 130px;
    padding-left: 130px;
  }
}
@media (min-width: 1420px) {
  .form-block--section .form-block__main {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (min-width: 1420px) {
  .form-block--section .form-block__top {
    flex-shrink: 0;
    flex-grow: 0;
    width: 305px;
    margin-bottom: 0;
  }
}
@media (min-width: 1660px) {
  .form-block--section .form-block__top {
    width: 400px;
  }
}

.grid-album__list-wrap {
  position: relative;
}
.grid-album__list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: -6px;
  padding: 0;
}
@media (min-width: 720px) {
  .grid-album__list {
    margin: -10px;
  }
}
.grid-album__list.swiper-wrapper {
  flex-wrap: nowrap;
  margin: 0;
}
.grid-album__item {
  display: flex;
  width: 100%;
  margin: 6px;
  transition-property: height, margin, opacity;
  transition-duration: 0.3s, 0s, 0.3s;
  transition-delay: 0s, 0s, 0.3s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 720px) {
  .grid-album__item {
    width: calc(50% - 20px);
    margin: 10px;
  }
}
@media (min-width: 1000px) {
  .grid-album__item {
    width: calc(33.3333333333% - 20px);
  }
}
@media (min-width: 1260px) {
  .grid-album__item {
    width: calc(25% - 20px);
  }
}
.grid-album__item.swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
}
@media (min-width: 1000px) and (max-width: 1259px) {
  .grid-album__item--width-x2 {
    width: calc(66.6666666667% - 20px);
  }
}
.grid-album__item > * {
  width: 100%;
}
.grid-album:not(.swiper-initialized) .grid-album__item--hidden {
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  overflow: hidden !important;
}
.grid-album__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
}
@media (min-width: 720px) {
  .grid-album__btn-wrap {
    padding-top: 40px;
  }
}
@media (min-width: 1000px) {
  .grid-album__btn-wrap {
    padding-top: 48px;
  }
}
@media (min-width: 1660px) {
  .grid-album__btn-wrap {
    padding-top: 64px;
  }
}
.grid-album__btn {
  width: 100%;
  padding: 11px 63px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .grid-album__btn {
    padding-block: 15px;
    font-size: 14px;
  }
}
@media (min-width: 1000px) {
  .grid-album__btn {
    max-width: 400px;
  }
}
@media (min-width: 1660px) {
  .grid-album__btn {
    max-width: 480px;
    padding-block: 19px;
  }
}
@media (min-width: 720px) {
  .grid-album--aside .grid-album__item {
    width: 100%;
  }
}
.grid-album--gallery .grid-album__list {
  display: grid;
}
@media (min-width: 720px) {
  .grid-album--gallery .grid-album__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .grid-album--gallery .grid-album__list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.grid-album--gallery .grid-album__item {
  width: auto;
}
@media (min-width: 1000px) {
  .grid-album--gallery .grid-album__item:nth-child(5n+1), .grid-album--gallery .grid-album__item:nth-child(5n+2) {
    grid-column-end: span 3;
  }
}
@media (min-width: 1000px) {
  .grid-album--gallery .grid-album__item:nth-child(5n+4), .grid-album--gallery .grid-album__item:nth-child(5n+5) {
    grid-column-end: span 2;
  }
}
@media (min-width: 720px) {
  .grid-album--gallery .grid-album__item:nth-child(5n+3) {
    grid-column-end: span 2;
  }
}
@media (min-width: 1000px) {
  .grid-album--gallery .grid-album__item:nth-child(5n+3) {
    grid-column-end: span 4;
    grid-row-end: span 2;
  }
}

.grid-wrap__title {
  color: var(--pl-color-blue-dark, #0b1b49);
  margin-bottom: 16px;
}
@media (min-width: 720px) {
  .grid-wrap__title {
    margin-bottom: 24px;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 12px;
  column-gap: 12px;
  min-height: 32px;
  padding-right: 8px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition-timing-function: ease;
}
@media (min-width: 720px) {
  .link-arrow {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow__text {
    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
}
.link-arrow__icon {
  position: relative;
  left: 0;
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow__icon {
    transition-property: opacity, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow:focus-visible .link-arrow__icon, .link-arrow:hover .link-arrow__icon {
    transform: translateX(8px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow:focus-visible .link-arrow__text, .link-arrow:focus-visible .link-arrow__icon, .link-arrow:hover .link-arrow__text, .link-arrow:hover .link-arrow__icon {
    opacity: 1;
  }
}
.link-arrow--light {
  color: var(--pl-color-black-brand, #333c55);
}
@media (hover: hover) and (pointer: fine) {
  .link-arrow--light:focus-visible, .link-arrow--light:hover {
    color: var(--pl-color-black-brand, #333c55);
  }
}
.link-arrow--light .link-arrow__text {
  color: var(--pl-color-black-brand, #333c55);
  opacity: 0.7;
}
.link-arrow--light .link-arrow__icon {
  color: var(--pl-color-gray-brand, #9fa4c3);
  opacity: 0.4;
}
.link-arrow--red .link-arrow__icon {
  color: var(--pl-color-gray-brand, #9fa4c3);
  opacity: 0.4;
}

.message {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition-property: height, margin-bottom, margin-top, opacity, visibility;
  transition-duration: 0.15s, 0.15s, 0.15s, 0.15s, 0s;
  transition-delay: 0s, 0s, 0s, 0.15s, 0s;
  transition-timing-function: ease-in-out;
}
.message:not(.hidden):not(:last-child) {
  margin-bottom: 16px;
}
.message:not(.hidden):not(:first-child) {
  margin-top: 16px;
}
.message.hidden {
  display: block !important;
  height: 0;
  visibility: hidden;
  opacity: 0;
  transition-property: height, margin-bottom, margin-top, opacity, visibility;
  transition-delay: 0.15s, 0.15s, 0.15s, 0s, 0.3s;
}
.message__inner {
  padding: 8px 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border-radius: 4px;
}
.message__content {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
.message.error .message__inner {
  color: var(--pl-color-brand, #e61d25);
  background-color: var(--pl-color-white, #ffffff);
}

.share__inner {
  padding: 30px 28px;
  background-color: var(--pl-color-form-bg, #e5ebf5);
  text-align: center;
  border-radius: 4px;
}
@media (min-width: 720px) {
  .share__inner {
    padding-block: 34px;
  }
}
@media (min-width: 1260px) {
  .share__inner {
    padding-block: 54px;
  }
}
.share__title {
  margin-bottom: 16px;
  color: var(--pl-color-blue-dark, #0b1b49);
}
@media (min-width: 720px) {
  .share__title {
    margin-bottom: 24px;
  }
}
.share__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social {
  display: flex;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.social__link {
  display: flex;
  width: 40px;
  height: 40px;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
}
.social__icon-wrap {
  position: relative;
  display: flex;
  width: 40px;
  height: 40px;
  margin: auto;
  overflow: hidden;
}
.social__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
}
.social--mono .social__link:focus .social__icon--mono, .social--mono .social__link:hover .social__icon--mono, .social--color .social__link:focus .social__icon--color, .social--color .social__link:hover .social__icon--color, .social--mono .social__link:not(:focus):not(:hover) .social__icon--color, .social--color .social__link:not(:focus):not(:hover) .social__icon--mono {
  opacity: 0;
  pointer-events: none;
}

.submenu {
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
}
@media (min-width: 1260px) {
  .submenu {
    font-size: 16px;
  }
}
.submenu__inner {
  position: relative;
  margin-right: -6px;
  margin-left: -6px;
  overflow: hidden;
}
.submenu__inner::before, .submenu__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
}
.submenu__inner::before {
  background-image: linear-gradient(-90deg, transparent, var(--pl-color-white, #ffffff));
  left: 0;
}
.submenu__inner::after {
  background-image: linear-gradient(90deg, transparent, var(--pl-color-white, #ffffff));
  right: 0;
}
.submenu__list {
  scrollbar-color: var(--pl-color-table-border, #e4e4ee) transparent;
  scrollbar-width: thin;
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
  padding-left: 6px;
  padding-right: 6px;
  overflow: scroll hidden;
}
.submenu__list::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}
.submenu__list::-webkit-scrollbar-thumb {
  background-color: var(--pl-color-table-border, #e4e4ee);
  background-clip: content-box;
  border-width: 6px;
  border-style: solid;
  border-color: transparent;
  border-radius: 16px;
}
.submenu__link {
  display: inline-block;
  padding: 6px 24px;
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-gray-light, #f1f4fa);
  border-radius: 4px;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 1260px) {
  .submenu__link {
    padding-inline: 32pxs;
  }
}
.submenu__link:focus, .submenu__link[href]:hover {
  color: var(--pl-color-brand, #e61d25);
  background-color: #e6ebf3;
}
.submenu__item.current .submenu__link {
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-brand, #e61d25);
}

.tel {
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
}
.tel--vertical {
  flex-direction: column;
}
.tel__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .header.scroll .header-mobile .tel__link:focus, .header.scroll .header-mobile .tel__link[href]:hover, .header:not(.scroll) .tel__link:focus, .header:not(.scroll) .tel__link[href]:hover {
    color: inherit;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header.scroll .tel__link:focus, .header.scroll .tel__link[href]:hover {
    color: inherit;
  }
}
.tel__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: transparent;
  transform: translateY(-5px);
  transition-property: background-color, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.header.scroll .header-mobile .tel__link:focus::after, .header.scroll .header-mobile .tel__link[href]:hover::after, .header.scroll .header-mobile .tel__link.current::after, .header:not(.scroll) .tel__link:focus::after, .header:not(.scroll) .tel__link[href]:hover::after, .header:not(.scroll) .tel__link.current::after {
  color: inherit;
  background-color: var(--pl-color-brand-light, #fd3c3c);
  transform: translateY(0);
}
.header.scroll .tel__link:focus::after, .header.scroll .tel__link[href]:hover::after, .header.scroll .tel__link.current::after {
  background-color: var(--pl-color-brand-light, #fd3c3c);
  transform: translateY(0);
}

/* modules sections */
@media (min-width: 1260px) {
  .binary {
    display: flex;
  }
}
.binary--dark {
  color: var(--pl-color-white, #ffffff);
  background-color: var(--pl-color-black-brand, #333c55);
}
@media (min-width: 1260px) {
  .binary > * {
    width: 50%;
  }
}
@media (max-width: 1259px) {
  .binary:not(.binary--dark) .binary__content-part {
    margin-bottom: 48px;
  }
}
@media (min-width: 1260px) {
  .binary:not(.binary--dark) .binary__content-part {
    margin-right: 48px;
  }
}
@media (max-width: 719px) {
  .binary--dark .binary__text-main {
    text-align: center;
  }
}
.binary__content > *:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 719px) {
  .binary__btn {
    width: 100%;
  }
}
@media (min-width: 1260px) {
  .binary__img-part {
    display: flex;
  }
}
@media (min-width: 1260px) {
  .binary__img-box {
    position: relative;
    width: 100%;
  }
}
.binary__img-box img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: auto;
}
@media (min-width: 1260px) {
  .binary__img-box img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
}

@media (min-width: 1260px) {
  .contacts-section__inner {
    display: flex;
  }
}
@media (max-width: 999px) {
  .contacts-section__address-part {
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) and (max-width: 1259px) {
  .contacts-section__address-part {
    display: flex;
    margin-bottom: 40px;
  }
}
@media (min-width: 1260px) {
  .contacts-section__address-part {
    width: 32.2%;
    flex-shrink: 0;
    margin-right: 48px;
  }
}
.contacts-section__contacts-wrap {
  width: 100%;
}
@media (min-width: 1000px) and (max-width: 1259px) {
  .contacts-section__contacts-wrap {
    width: calc(50% - 20px);
  }
}
@media (max-width: 999px) {
  .contacts-section__contacts-wrap:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) and (max-width: 1259px) {
  .contacts-section__contacts-wrap:not(:last-child) {
    margin-right: 40px;
  }
}
@media (min-width: 1260px) {
  .contacts-section__contacts-wrap:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contacts-section__form-part {
  flex-grow: 1;
}

.genplan-section__map-wrap {
  position: relative;
  overflow: hidden;
  background-color: #d0d2dc;
}
.genplan-section__map-wrap::before {
  content: "ГЕНПЛАН";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--pl-color-white, #ffffff);
  font-size: 50px;
  line-height: 120px;
}
@media (min-width: 720px) {
  .genplan-section__map-wrap::before {
    font-size: 100px;
  }
}
.genplan-section__map-inner {
  position: relative;
  height: 560px;
  max-height: calc(90vh - 40px - 64px);
  max-height: calc(90svh - 40px - 64px);
}
@media (min-width: 720px) {
  .genplan-section__map-inner {
    height: 900px;
  }
}

.grid-section .text-gradient {
  display: block;
}
.grid-section__container > *:not(:last-child) {
  margin-bottom: 48px;
}
@media (min-width: 1000px) {
  .grid-section__container > *:not(:last-child) {
    margin-bottom: 56px;
  }
}
@media (min-width: 1260px) {
  .grid-section__container > *:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media (min-width: 1420px) {
  .grid-section__container > *:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media (min-width: 1260px) {
  .grid-section__top {
    display: flex;
    flex-direction: row-reverse;
    -moz-column-gap: 64px;
    column-gap: 64px;
  }
}
@media (min-width: 1660px) {
  .grid-section__top {
    -moz-column-gap: 120px;
    column-gap: 120px;
  }
}
@media (max-width: 1259px) {
  .grid-section__top > *:not(:last-child) {
    margin-bottom: 32px;
  }
}
.grid-section__content-part > *:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .grid-section__content-part > *:not(:last-child) {
    margin-bottom: 32px;
  }
}
.grid-section__text-part > *:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 719px) {
  .grid-section__img-part {
    margin-right: -18px;
    margin-left: -18px;
  }
}
@media (min-width: 1260px) {
  .grid-section__img-part {
    display: flex;
    flex-shrink: 0;
    width: 480px;
  }
}
@media (min-width: 1420px) {
  .grid-section__img-part {
    width: 520px;
  }
}
@media (min-width: 1660px) {
  .grid-section__img-part {
    width: 680px;
  }
}
@media (min-width: 1260px) {
  .grid-section__img-box {
    width: 100%;
  }
}
.grid-section__img-box img {
  width: 100%;
  height: auto;
  min-height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 720px) {
  .grid-section__img-box img {
    border-radius: 4px;
  }
}

.hero {
  position: relative;
  color: var(--pl-color-white, #ffffff);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
.hero__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero__slider {
  height: 100%;
}
.hero__slide {
  position: relative;
  height: auto;
}
.hero__slide img {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: var(--pl-color-black-brand, #333c55);
  opacity: 0.4;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 40px;
  flex-grow: 1;
  padding-block: 16px;
}
@media (min-width: 720px) {
  .hero__container {
    row-gap: 50px;
    padding-bottom: 0;
  }
}
@media (min-width: 1000px) {
  .hero__container {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1420px) {
  .hero__container {
    padding-bottom: 64px;
  }
}
@media (min-width: 1000px) {
  .hero__content {
    margin-block: auto;
  }
}
.hero__content-main {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (min-width: 720px) {
  .hero__content-main {
    row-gap: 48px;
  }
}
@media (min-width: 1000px) {
  .hero__content-main {
    row-gap: 64px;
  }
}
@media (min-width: 1420px) {
  .hero__content-main {
    row-gap: 100px;
  }
}
@media (max-width: 719px) {
  .hero__content-top {
    text-align: center;
  }
}
.hero__title {
  margin-block: 0;
}
.hero__title-row {
  display: block;
}
.hero__title-row--with-icon svg {
  width: 64px;
  height: 64px;
  fill: currentColor;
}
@media (max-width: 719px) {
  .hero__title-row--with-icon svg {
    display: none;
  }
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}
@media (max-width: 719px) {
  .hero__btns {
    flex-direction: column;
  }
}
@media (min-width: 1420px) {
  .hero__btns {
    row-gap: 48px;
  }
}
.hero__bottom {
  display: flex;
  gap: 44px;
}
@media (min-width: 720px) {
  .hero__bottom {
    justify-content: space-between;
  }
}
@media (min-width: 720px) and (max-width: 999px) {
  .hero__bottom {
    row-gap: 20px;
  }
}
@media (max-width: 999px) {
  .hero__bottom {
    flex-direction: column;
  }
}
.hero__slider-btns {
  display: flex;
  justify-content: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
}
@media (min-width: 720px) {
  .hero__slider-btns {
    justify-content: flex-end;
  }
}

.map-section__header {
  background-color: var(--pl-color-gray-light, #f1f4fa);
  text-align: center;
}
.map-section__title {
  margin-bottom: 8px;
}
.map-section__btn {
  padding-inline: 40px;
  font-style: 600px;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.map-section__inner > *:not(:last-child) {
  margin-bottom: 24px;
}
.map-section__coords {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--pl-color-gray-brand, #9fa4c3);
}
.map-section__main {
  position: relative;
}
.map-section__map-wrap {
  height: auto;
  overflow: hidden;
  transition: height 0.3s 0s ease-in-out;
}
.map-section__map-wrap:not(.open) {
  height: 0;
}
.map-section__map-inner {
  position: relative;
  height: 720px;
  max-height: calc(90vh - 40px - 64px);
  max-height: calc(90svh - 40px - 64px);
  background-color: var(--pl-color-gray-light, #f1f4fa);
}
.map-section__map-inner > * {
  width: 100%;
  height: 100%;
}
.map-section__mainbtn-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.map-section2__header {
  text-align: center;
}
.map-section2__inner {
  padding: 32px 24px;
  background-color: var(--pl-color-gray-light, #f1f4fa);
}
@media (min-width: 720px) {
  .map-section2__inner {
    padding-inline: 48px;
  }
}
@media (min-width: 1000px) {
  .map-section2__inner {
    padding-inline: 56px;
  }
}
@media (min-width: 1260px) {
  .map-section2__inner {
    padding-inline: 64px;
  }
}
@media (min-width: 1420px) {
  .map-section2__inner {
    padding-inline: 80px;
  }
}
.map-section2__inner > *:not(:last-child) {
  margin-bottom: 24px;
}
.map-section2__coords {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--pl-color-brand, #e61d25);
}
.map-section2__coords svg {
  display: inline-flex;
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-right: 8px;
}
.map-section2__main {
  position: relative;
}
.map-section2__title-wrap {
  margin-bottom: 40px;
}
.map-section2__title {
  margin-bottom: 8px;
}
.map-section2__map-wrap {
  overflow: hidden;
}
.map-section2__map-inner {
  position: relative;
  height: 720px;
  max-height: calc(90vh - 40px - 64px);
  max-height: calc(90svh - 40px - 64px);
  background-color: var(--pl-color-gray-light, #f1f4fa);
}
.map-section2__map-inner > * {
  width: 100%;
  height: 100%;
}

.news {
  overflow: hidden;
}
.news__header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .news__header {
    -moz-column-gap: 40px;
    column-gap: 40px;
    margin-bottom: 32px;
  }
}
@media (max-width: 719px) {
  .news__title-wrap {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 719px) {
  .news__link-arrow {
    display: none;
  }
}
@media (min-width: 720px) {
  .news__link-arrow {
    padding-top: 8px;
  }
}
.news__slider {
  overflow: visible;
}
.news__slider-inner {
  display: flex;
}
.news__slide {
  flex-shrink: 0;
  width: 300px;
}
@media (min-width: 720px) {
  .news__slide {
    width: 380px;
  }
}
@media (min-width: 1420px) {
  .news__slide {
    width: 400px;
  }
}
.news__card {
  height: 100%;
}
.news__slider-btns {
  display: none;
}
@media (min-width: 720px) {
  .news__slider-btns {
    display: flex;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-left: auto;
  }
}

.section {
  position: relative;
}
.section--404, .section__container {
  height: 100%;
}
.section + .section:not(.section--form) {
  padding-top: 0;
}

.section-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.section-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
}
.section-404__title {
  margin-bottom: 16px;
}
.section-404__404 {
  display: block;
  margin-bottom: 16px;
  font-size: 64px;
  line-height: 76px;
}
.section-404__subtitle {
  display: block;
}
.section-404__btn-wrap {
  padding-top: 24px;
}
@media (min-width: 1260px) {
  .section-404__btn-wrap {
    padding-top: 32px;
  }
}
@media (min-width: 1420px) {
  .section-404__btn-wrap {
    padding-top: 40px;
  }
}
@media (min-width: 1660px) {
  .section-404__btn-wrap {
    padding-top: 48px;
  }
}

.section-img__inner {
  position: relative;
  padding-block: 120px;
  color: var(--pl-color-white, #ffffff);
  background-color: #5A5C6A;
}
@media (min-width: 1260px) {
  .section-img__inner {
    padding-block: 164px;
  }
}
@media (min-width: 1660px) {
  .section-img__inner {
    padding-block: 190px;
  }
}
.section-img__content {
  position: relative;
}
@media (min-width: 1000px) {
  .section-img__content {
    padding-inline: 120px;
  }
}
@media (min-width: 1260px) {
  .section-img__content {
    padding-inline: 150px;
  }
}
@media (min-width: 1420px) {
  .section-img__content {
    padding-inline: 190px;
  }
}
@media (min-width: 1660px) {
  .section-img__content {
    padding-inline: 270px;
  }
}
.section-img__bg img {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-img__bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--pl-color-black-brand, #333c55);
  opacity: 0.4;
  pointer-events: none;
}

/* modules global */
.breadcrumbs {
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (min-width: 720px) {
  .breadcrumbs {
    font-size: 14px;
  }
}
@media (max-width: 719px) {
  .breadcrumbs__inner {
    overflow: hidden;
    margin-right: -18px;
    margin-left: -18px;
  }
}
.breadcrumbs__list {
  display: block;
}
@media (max-width: 719px) {
  .breadcrumbs__list {
    white-space: nowrap;
    overflow: visible hidden;
    margin-bottom: -20px;
    padding-bottom: 20px;
    padding-right: 18px;
    padding-left: 18px;
  }
}
.breadcrumbs__item {
  position: relative;
  display: inline-block;
}
.breadcrumbs__link {
  display: inline-block;
}

.footer {
  padding-block: 42px;
  font-size: 13px;
  line-height: 22px;
  color: var(--pl-color-gray-light, #f1f4fa);
  background-color: var(--pl-color-black-brand-darkest, #0e111d);
}
@media (min-width: 720px) {
  .footer {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 1260px) {
  .footer {
    padding-block: 56px;
  }
}
.footer a {
  color: inherit;
}
.footer a:focus,
.footer a:hover[href] {
  color: var(--pl-color-brand-light, #fd3c3c);
}
.footer__text-info {
  color: var(--pl-color-gray-brand, #9fa4c3);
}
@media (min-width: 1000px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media (max-width: 999px) {
  .footer__part:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 719px) {
  .footer__part-inner {
    text-align: center;
  }
}
@media (min-width: 720px) {
  .footer__part-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
  }
}
@media (max-width: 719px) {
  .footer__part-inner > *:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (max-width: 719px) {
  .footer__social-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.h-btn {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  color: inherit;
  background-color: transparent;
  border-width: 0;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.h-btn__lay, .h-btn__lay::before, .h-btn__lay::after {
  position: absolute;
  display: block;
  width: 32px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition-timing-function: ease-in-out;
}
.h-btn__lay {
  top: 9px;
  left: calc(50% - 16px);
  transition: background-color 0.3s, transform 0.1s 0s, top 0.1s 0.1s;
}
.h-btn__lay::before {
  content: "";
  top: 10px;
  opacity: 1;
  transition: background-color 0.3s, transform 0.1s 0s, opacity 0.1s 0.1s, width 0.3s, top 0.1s 0.1s;
}
.h-btn__lay::after {
  content: "";
  top: 20px;
  transition: background-color 0.3s, transform 0.1s 0s, top 0.1s 0.1s;
}
@media (hover: hover) and (pointer: fine) {
  .h-btn:focus-visible .h-btn__lay, .h-btn:hover .h-btn__lay {
    top: 5px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .h-btn:focus-visible .h-btn__lay::before, .h-btn:hover .h-btn__lay::before {
    top: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .h-btn:focus-visible .h-btn__lay::after, .h-btn:hover .h-btn__lay::after {
    top: 28px;
  }
}
.h-btn.active .h-btn__lay {
  top: calc(50% - 1.5px);
  transform: rotate(-45deg);
  transition: background-color 0.3s, transform 0.1s 0.2s, top 0.1s 0.1s;
}
.h-btn.active .h-btn__lay::before {
  opacity: 0;
  transform: rotate(45deg);
  transition: background-color 0.3s, transform 0.1s 0.2s, opacity 0.1s 0.1s;
}
.h-btn.active .h-btn__lay::after {
  top: 0;
  transform: rotate(90deg);
  transition: background-color 0.3s, transform 0.1s 0.2s, top 0.1s 0.1s;
}
@media (hover: hover) and (pointer: fine) {
  .h-btn.active:focus-visible .h-btn__lay, .h-btn.active:focus-visible .h-btn__lay::before, .h-btn.active:focus-visible .h-btn__lay::after, .h-btn.active:hover .h-btn__lay, .h-btn.active:hover .h-btn__lay::before, .h-btn.active:hover .h-btn__lay::after {
    background-color: var(--pl-color-brand, #e61d25);
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 18px 40px;
}
@media (min-width: 720px) {
  .nav__list {
    row-gap: 26px;
  }
}
@media (min-width: 1000px) {
  .nav__list {
    -moz-column-gap: 64px;
    column-gap: 64px;
  }
}
@media (min-width: 1260px) {
  .nav__list {
    -moz-column-gap: 26px;
    column-gap: 26px;
  }
}
@media (min-width: 1420px) {
  .nav__list {
    -moz-column-gap: 36px;
    column-gap: 36px;
  }
}
@media (min-width: 1660px) {
  .nav__list {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.nav--vertical .nav__list {
  flex-direction: column;
  align-items: normal;
}
@media (min-width: 1000px) {
  .nav--vertical .nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: inherit;
}
.nav__link.current {
  color: var(--pl-color-brand, #e61d25);
}
@media (hover: hover) and (pointer: fine) {
  .header.scroll .header-mobile .nav__link:focus, .header.scroll .header-mobile .nav__link[href]:hover, .header:not(.scroll) .nav__link:focus, .header:not(.scroll) .nav__link[href]:hover {
    color: inherit;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header.scroll .nav__link:focus, .header.scroll .nav__link[href]:hover {
    color: inherit;
  }
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: transparent;
  transform: translateY(-5px);
  transition-property: background-color, transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.header.scroll .header-mobile .nav__link:focus::after, .header.scroll .header-mobile .nav__link[href]:hover::after, .header.scroll .header-mobile .nav__link.current::after, .header:not(.scroll) .nav__link:focus::after, .header:not(.scroll) .nav__link[href]:hover::after, .header:not(.scroll) .nav__link.current::after {
  color: inherit;
  background-color: var(--pl-color-brand-light, #fd3c3c);
  transform: translateY(0);
}
.header.scroll .nav__link:focus::after, .header.scroll .nav__link[href]:hover::after, .header.scroll .nav__link.current::after {
  background-color: var(--pl-color-brand-light, #fd3c3c);
  transform: translateY(0);
}

.header {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-white, #ffffff);
  transition-property: color, background-color, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 1260px) {
  .header {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1420px) {
  .header {
    font-weight: 400;
    font-size: 18px;
  }
}
.header--index {
  color: var(--pl-color-white, #ffffff);
  background-color: transparent;
}
.header.active, .header.scroll {
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-white, #ffffff);
}
.header__container {
  position: relative;
  padding-block: 16px 8px;
  background-color: inherit;
  transition-property: padding-block;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 720px) {
  .header__container {
    padding-top: 24px;
  }
}
@media (min-width: 1000px) {
  .header__container {
    padding-block: 32px;
  }
}
@media (min-width: 1260px) {
  .header__container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.header.scroll .header__container {
  padding-block: 12px;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 1259px) {
  .header__inner {
    padding-right: 88px;
  }
}
@media (max-width: 719px) {
  .header__inner {
    padding-right: 56px;
  }
}
.header__logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  width: 236px;
  height: 40px;
}
@media (min-width: 720px) {
  .header__logo-wrap {
    width: 262px;
  }
}
@media (min-width: 1000px) {
  .header__logo-wrap {
    width: 280px;
  }
}
@media (min-width: 1420px) {
  .header__logo-wrap {
    width: 328px;
  }
}
.header__logo-wrap a {
  color: inherit;
}
.header__logo-box {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.header:not(.header--index) .header__logo-box, .header.active .header__logo-box, .header.scroll .header__logo-box {
  color: var(--pl-color-brand, #e61d25);
}
.header__logo {
  width: 236px;
  height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
  fill: currentColor;
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 720px) {
  .header__logo {
    width: 262px;
    height: 24px;
  }
}
@media (max-width: 1259px) {
  .header__nav-wrap {
    display: none;
  }
}
@media (min-width: 1260px) {
  .header__nav-wrap {
    white-space: nowrap;
  }
}
.header__contacts-wrap {
  display: flex;
  align-items: center;
  gap: 20px 48px;
}
@media (max-width: 999px) {
  .header__contacts-wrap {
    display: none;
  }
}
@media (min-width: 1000px) {
  .header__contacts-wrap {
    margin-left: auto;
  }
}
@media (min-width: 1260px) {
  .header__contacts-wrap {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (min-width: 1420px) {
  .header__contacts-wrap {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
.header__menubtns-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media (min-width: 1260px) {
  .header__menubtns-wrap {
    display: none;
  }
}
.header__btn {
  min-height: 40px;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 719px) {
  .header__btn {
    width: 100%;
    padding: 15px 23px;
  }
}
.header--index:not(.scroll) .header__btn {
  border-color: transparent;
}
.header .tel a {
  font-weight: 600;
}
@media (min-width: 720px) {
  .header .tel a {
    font-size: 17px;
    line-height: 24px;
    color: inherit;
  }
}

.header-placeholder {
  padding-top: 0;
  transition-property: padding-top;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.header-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: flex;
  flex-direction: row-reverse;
  width: 0;
  visibility: hidden;
  transition-property: width, visibility;
  transition-delay: 0.3s;
}
.header-mobile.active {
  width: 100%;
  visibility: visible;
  transition-delay: 0s;
}
.header-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: var(--pl-color-black, #000000);
  opacity: 0;
  z-index: -1;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
}
.header-mobile.active::before {
  opacity: 0.7;
}
.header-mobile__wrap {
  width: 100%;
  transform: translateY(-120%);
  transition-property: transform;
  transition-timing-function: ease-in-out;
  transition-duration: 0.3s;
  overflow: hidden auto;
}
.header-mobile.active .header-mobile__wrap {
  transform: translateY(0);
}
.header-mobile__inner {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  max-width: 100%;
  padding: 16px 20px 48px;
  color: var(--pl-color-black-brand, #333c55);
  background-color: var(--pl-color-white, #ffffff);
}
@media (max-width: 719px) {
  .header-mobile__inner {
    text-align: center;
  }
}
@media (min-width: 720px) {
  .header-mobile__inner {
    padding-inline: 34px;
  }
}
@media (min-width: 1000px) {
  .header-mobile__inner {
    padding-inline: 40px;
  }
}
.header-mobile__nav-wrap a {
  color: inherit;
}
.header-mobile__top {
  display: flex;
  flex-direction: row-reverse;
}
.header-mobile__main {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
  padding-top: 68px;
}
@media (min-width: 720px) {
  .header-mobile__main {
    row-gap: 40px;
    padding-top: 84px;
  }
}
@media (min-width: 1000px) {
  .header-mobile__main {
    padding-top: 100px;
  }
}
.header-mobile__contacts {
  display: flex;
}
@media (max-width: 719px) {
  .header-mobile__contacts {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (min-width: 720px) {
  .header-mobile__contacts {
    align-items: center;
    -moz-column-gap: 48px;
    column-gap: 48px;
  }
}
@media (min-width: 1000px) {
  .header-mobile__contacts {
    display: none;
  }
}
.header-mobile__bottom {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.to-top {
  position: sticky;
  right: 5px;
  bottom: 10px;
  left: 100%;
  z-index: 2;
  display: flex;
  width: 64px;
  height: 64px;
  margin-top: -74px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--pl-color-white, #ffffff);
  border-radius: 50%;
  transition-property: opacity, transform, color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 1420px) {
  .to-top {
    right: 22px;
    margin-right: 22px;
  }
}
.to-top:not(.to-top--active) {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .to-top:focus, .to-top:hover {
    color: var(--pl-color-white, #ffffff);
  }
}
.to-top::before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  background-color: var(--pl-color-black-brand-darkest2, #0c0f16);
}
@media (hover: hover) and (pointer: fine) {
  .to-top::before {
    opacity: 0.8;
    transition-property: opacity, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
  }
}
@media (hover: hover) and (pointer: fine) {
  .to-top:focus-visible::before, .to-top:hover::before {
    opacity: 1;
  }
}
.to-top svg {
  position: relative;
  width: 16px;
  height: 22px;
  margin: auto;
  fill: currentColor;
}
.to-top__text {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.main {
  --pl-aside-width: 280px;
  --pl-content-wrap-space: 64px;
}
@media (min-width: 1420px) {
  .main {
    --pl-aside-width: 304px;
    --pl-content-wrap-space: 80px;
  }
}
@media (min-width: 1660px) {
  .main {
    --pl-aside-width: 400px;
  }
}
.main__content-wrap {
  display: flex;
  flex-grow: 1;
}
@media (max-width: 1259px) {
  .main__content-wrap {
    flex-wrap: wrap;
  }
}
.main__top + .main__content-wrap {
  padding-top: 8px;
}
.main__content {
  flex-shrink: 0;
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 1260px) {
  .main__content:not(:last-child) {
    width: calc(100% - var(--pl-content-wrap-space) - var(--pl-aside-width));
    margin-right: var(--pl-content-wrap-space);
  }
}
.main__title:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 720px) {
  .main__title:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 1660px) {
  .main__title:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 1259px) {
  .main__aside {
    display: none;
  }
}
@media (min-width: 1260px) {
  .main__aside {
    flex-shrink: 0;
    display: block;
    width: var(--pl-aside-width);
  }
}
@media (min-width: 1260px) {
  .main__aside > *:not(:first-child) {
    margin-top: 64px;
  }
}
@media (min-width: 1660px) {
  .main__aside > *:not(:first-child) {
    margin-top: 80px;
  }
}
@media (min-width: 1260px) {
  .main__aside > *:last-child {
    position: sticky;
    top: 80px;
  }
}
.main__bottom {
  margin-top: auto;
}

.page {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  background-color: var(--pl-color-white, #ffffff);
}
.page__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  flex: 0 0 auto;
}
.page__main {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background-color: var(--pl-color-white, #ffffff);
}
.page:not(.page--index) .page__main {
  padding-top: 36px;
}
@media (min-width: 1260px) {
  .page:not(.page--index) .page__main {
    padding-top: 56px;
  }
}
@media (min-width: 1660px) {
  .page:not(.page--index) .page__main {
    padding-top: 80px;
  }
}
.page__footer {
  position: sticky;
  z-index: -1;
  bottom: 0;
  flex: 0 0 auto;
}

/* special rules */
.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.visually-hidden:first-child + * {
  margin-top: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 719px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 720px) and (max-width: 999px) {
  .hidden-tablet {
    display: none !important;
  }
}

.uppercase {
  text-transform: uppercase;
}
/*# sourceMappingURL=maps/style.css.map */
