@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/lato-300.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/lato-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/lato-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "RobotoCyr";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --dark: #191919;
  --dark-soft: #333333;
  --on-dark: #e8e8e8;
  --dash: #464646;
  --bg: #f5f5f5;
  --card: #ffffff;
  --line: #eaeaea;
  --text: #525252;
  --muted: #666666;
  --accent: #53c1ef;
  --accent-dark: #429fc7;
  --vc-blue: #0088cc;
  --vc-blue-dark: #0074ad;
  --sidebar: 300px;
  --topbar: 80px;
}

body {
  font-family: "Lato", "RobotoCyr", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 400;
}
h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 400;
}
h3 {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
}

p + p,
p + h3,
ul + p {
  margin-top: 16px;
}

a {
  color: var(--accent);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent-dark);
}

.underline {
  display: block;
  height: 10px;
  margin: 10px 0;
  background-image: url("/assets/image/underline.webp");
  background-position: 0 0;
  background-repeat: repeat-x;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: var(--dark);
  color: var(--on-dark);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  z-index: 99;
}
.sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sidebar__brand {
  padding: 30px 15px;
}
.sidebar__logo img {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.sidebar__nav .menu__item > a,
.sidebar__nav .menu__item > span {
  display: block;
  padding: 10px 30px;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  text-align: center;
  color: var(--on-dark);
  border-top: 1px dashed var(--dash);
  transition: color 0.4s ease;
}
.sidebar__nav .menu__item:last-child > a,
.sidebar__nav .menu__item:last-child > span {
  border-bottom: 1px dashed var(--dash);
}
.sidebar__nav .menu__item > a:hover {
  color: var(--accent);
}
.sidebar__nav .menu__item {
  position: relative;
}
.sidebar__nav .menu__item--parent::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}
.sidebar__nav .submenu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 40;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #191919;
}
.sidebar__nav .menu__item--parent:hover > .submenu,
.sidebar__nav .menu__item--parent:focus-within > .submenu {
  display: block;
}
.sidebar__nav .submenu a {
  display: block;
  padding: 12px 20px;
  color: var(--muted);
  line-height: 22px;
}
.sidebar__nav .submenu a:hover,
.sidebar__nav .submenu .is-current > a {
  color: #ffffff;
}
.sidebar__nav .menu__item--parent > span {
  cursor: pointer;
}

.sidebar__contacts {
  padding: 30px 30px 10px;
  text-align: center;
  border-bottom: 1px dashed var(--dash);
}
.sidebar__contacts a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  line-height: 28px;
}
.sidebar__contacts a:hover {
  color: var(--accent);
}
.sidebar__contacts .ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
  flex: 0 0 auto;
}
.sidebar__contacts a:first-child .ico {
  stroke: none;
}
.sidebar__contacts a:last-child .ico {
  fill: none;
}

.sidebar__social {
  padding: 30px 30px 20px;
  text-align: center;
}
.sidebar__social-title {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 26px;
  color: var(--on-dark);
}
.sidebar__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 2px;
  border-radius: 100%;
  color: var(--on-dark);
}
.sidebar__social-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.sidebar__foot {
  padding: 30px 30px 20px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.sidebar__foot a {
  font-weight: 700;
  color: var(--on-dark);
}
.sidebar__foot a:hover {
  color: var(--accent);
}

.topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar);
  background: var(--dark);
  z-index: 100;
  align-items: center;
}
.topbar__burger {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex: 0 0 auto;
}
.topbar__burger svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.topbar__logo {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  padding-right: 80px;
}
.topbar__logo img {
  width: auto;
  height: 70px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer__panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: var(--dark-soft);
  color: #d1d1d1;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}
.drawer__panel::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.drawer.is-open .drawer__backdrop {
  opacity: 1;
}
.drawer.is-open .drawer__panel {
  transform: translateY(0);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.drawer__close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.drawer__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.drawer__nav .menu__item > a,
.drawer__nav .menu__item > span {
  display: block;
  padding: 3px 5px 3px 28px;
  font-size: 14px;
  line-height: 30px;
  color: #d1d1d1;
}
.drawer__nav .menu__item.is-current > a,
.drawer__nav .menu__item > a:hover {
  background: #1f1f1f;
  color: #ffffff;
}
.drawer__nav .submenu {
  background: rgba(0, 0, 0, 0.15);
}
.drawer__nav .submenu a {
  display: block;
  padding: 3px 5px 3px 45px;
  font-size: 14px;
  line-height: 30px;
  color: #d1d1d1;
}
.drawer__nav .submenu a:hover,
.drawer__nav .submenu .is-current > a {
  background: #1f1f1f;
  color: #ffffff;
}
.drawer__nav .menu__item > span {
  cursor: default;
}
.drawer__contacts {
  padding: 16px 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 12px;
}
.drawer__contacts a {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #d1d1d1;
}

.content {
  margin-left: var(--sidebar);
  background: var(--bg);
  min-height: 100vh;
}

.page-content {
  padding: 20px 15px 20px;
}

.item-page {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 10px 20px 20px;
  margin-bottom: 15px;
}
.item-page .post-title {
  margin-top: 5px;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
}
.item-page p {
  margin-bottom: 0;
}
.item-page ul,
.item-page ol {
  margin: 16px 0;
  padding-left: 54px;
}
.item-page ul {
  list-style: disc;
}
.item-page ol {
  list-style: decimal;
}
.item-page li {
  line-height: 1.5;
}
.item-page figure {
  margin: 0;
}
.item-page img {
  display: block;
  width: 100%;
  max-width: min(100%, 800px);
  height: auto;
  margin: 20px auto;
}
.item-page hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}
.heading-center {
  text-align: center;
  margin: 10px 0;
}

.row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 16px 0;
}
.row2 > * {
  flex: 1 1 300px;
  min-width: 0;
}
.row2__wide {
  flex: 2 1 380px;
}
.row2__narrow {
  flex: 1 1 240px;
}
.item-home {
  padding: 20px;
}
.item-home .cta {
  margin-top: 0;
}

.slider {
  position: relative;
  height: min(900px, 100vh);
  overflow: hidden;
  margin-bottom: 20px;
}
.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slider__slide.is-active {
  opacity: 1;
}
.slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider__caption {
  position: absolute;
  right: 0;
  bottom: 245px;
  max-width: 500px;
  padding: 15px 30px;
  background: #ffffff;
  color: #313131;
  text-transform: uppercase;
}
.slider__caption span {
  font-size: 28px;
  line-height: 32px;
  font-weight: 300;
}
.slider__dots {
  position: absolute;
  top: 0;
  right: 15px;
  display: flex;
  gap: 10px;
  padding: 20px 0;
  z-index: 3;
}
.slider__dots button {
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background: none;
}
.slider__dots button.is-active::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background: #ffffff;
}

.home-title {
  margin: 0;
  padding: 30px 15px 0;
  text-align: center;
  font-size: 26px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 400;
}
.services {
  margin: 0 15px 30px;
}
.services__title {
  padding: 14px 0 0;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 400;
}
.services__line {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 20px auto 30px;
  border-top: 1px solid #d2d2d2;
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.card {
  position: relative;
  flex: 0 0 32%;
  min-height: 230px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.card--vovkove {
  background-image: url("/assets/image/cta-vovkove.webp");
}
.card--area {
  background-image: url("/assets/image/cta-area.webp");
}
.card--events {
  background-image: url("/assets/image/cta-events.webp");
}
.card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-align: center;
  transition: background 0.2s ease-in-out;
}
.card:hover .card__overlay {
  background: rgba(0, 0, 0, 0.3);
}
.card__overlay h2 {
  font-size: 20px;
  line-height: 40px;
  height: 40px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 1px 1px rgb(70, 70, 70);
}
.card__desc {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.card:hover .card__desc {
  opacity: 1;
}
.card__actions {
  margin-top: 20px;
}
.button {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 17px;
  border-radius: 5px;
  font-size: 18px;
  background: var(--accent);
  color: #ffffff;
  transition: background 0.2s ease-in-out;
}
.button:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  background: #f7f7f7;
}
.cta__text {
  flex: 1 1 320px;
  min-width: 0;
}
.cta__text h2 {
  font-size: 26px;
  line-height: 32px;
}
.cta__button {
  display: inline-block;
  padding: 18px 25px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
  background: var(--vc-blue);
  color: #ffffff;
  box-shadow: 0 3px 0 var(--vc-blue-dark);
}
.cta__button:hover {
  background: var(--vc-blue-dark);
  color: #f7f7f7;
}

.gallery-slider {
  position: relative;
}
.gallery-slider__viewport {
  position: relative;
  max-width: 150px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
}
.gallery-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.gallery-slider__slide.is-active {
  opacity: 1;
}
.gallery-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.gallery-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.gallery-slider__nav button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.gallery-slider__nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9));
}
.gallery-slider__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 14px 0 0;
}
.gallery-slider__dots button {
  width: 11px;
  height: 11px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
.gallery-slider__dots button.is-active {
  background: #000000;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 47%), 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 20px 0 30px;
}
.photo-grid__item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ededed;
}
.photo-grid__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.4s ease;
}
.photo-grid__item:hover img,
.photo-grid__item:focus-visible img {
  transform: scale(1.04);
}

.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-box video,
.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000000;
}
.video-facade {
  position: absolute;
  inset: 0;
  display: block;
  background: #000000;
}
.video-facade img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
}
.video-facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.video-facade__play svg {
  width: 64px;
  height: 64px;
  fill: rgba(255, 255, 255, 0.9);
}
.video-facade__play circle {
  fill: rgba(0, 0, 0, 0.45);
}
.video-facade:hover .video-facade__play {
  opacity: 0.75;
}
.map-box {
  position: relative;
  height: 350px;
}
.map-box--wide {
  height: 450px;
  margin: 16px 0 0;
}
.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-facade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  background: #e5e3df;
}
.map-facade svg {
  width: 56px;
  height: 56px;
  fill: #b9b6b0;
}
.map-facade circle {
  fill: #e5e3df;
}
.map-facade__label {
  font-size: 18px;
  line-height: 22px;
  color: var(--accent);
}
.map-facade:hover .map-facade__label {
  color: var(--accent-dark);
}
.map-facade__note {
  max-width: 340px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

.site-footer {
  background: var(--bg);
  padding-bottom: 20px;
}
.widgets {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 15px 0;
}
.widget {
  flex: 1 1 300px;
  min-width: 0;
  padding: 0 15px;
  margin-bottom: 20px;
}
.widget:first-child {
  padding-left: 0;
}
.widget:last-child {
  padding-right: 0;
}
.widget__inner {
  height: 100%;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
}
.widget__title {
  margin-top: 5px;
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  text-transform: uppercase;
}
.widget__inner h3 {
  margin-top: 16px;
  font-size: 22px;
}
.widget__inner p {
  margin-top: 4px;
}

.events-title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-align: center;
  color: #333333;
  margin-bottom: 12px;
}
.events-notice {
  padding: 15px 20px;
  margin-bottom: 16px;
  background: #d9edf7;
  border: 1px solid #bce8f1;
  border-radius: 4px;
  color: #31708f;
  font-size: 16px;
}
.item-page table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background-color: transparent;
}
.item-page table::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.item-page thead,
.item-page tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 600px;
}
.item-page tr {
  display: flex;
  width: 100%;
  transition: background-color 0.2s ease;
}
.item-page tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}
.item-page tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
.item-page th,
.item-page td {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 110px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  text-align: center;
  color: #111111;
  white-space: normal;
  word-break: break-word;
  box-sizing: border-box;
}
.item-page th:first-child,
.item-page td:first-child {
  justify-content: flex-start;
  text-align: left;
}
.item-page tbody tr:last-child th,
.item-page tbody tr:last-child td {
  border-bottom: none;
}
.item-page thead th {
  background-color: rgba(0, 0, 0, 0.06);
  color: #111111;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.page-events tbody tr:first-child td:first-child,
.page-events tbody tr:last-child td:nth-child(n + 4) {
  color: #999999;
}

@media (max-width: 991px) {
  .sidebar {
    display: none;
  }
  .topbar {
    display: flex;
  }
  .content {
    margin-left: 0;
    margin-top: var(--topbar);
  }
  .widget:first-child {
    padding-left: 15px;
  }
  .widget:last-child {
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .drawer {
    display: none;
  }
}

@media (max-width: 801px) {
  .services {
    margin: 0;
  }
  .services__grid {
    gap: 0;
  }
  .card {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }
  .page-content {
    padding: 20px 0;
  }
  .item-page {
    margin: 0 15px 15px;
  }
  .widgets {
    margin: 15px 0 0;
  }
}

@media (max-width: 601px) {
  .slider__caption {
    padding: 12px 20px;
  }
  .slider__caption span {
    font-size: 22px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  .slider__caption span {
    font-size: 18px;
    line-height: 20px;
  }
  .slider__dots {
    display: none;
  }
}
@media (min-width: 768px) {
  .widget {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .row2 > * {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .row2__wide {
    flex: 0 0 calc(66.6667% - 15px);
    max-width: calc(66.6667% - 15px);
  }
  .row2__narrow {
    flex: 0 0 calc(33.3333% - 15px);
    max-width: calc(33.3333% - 15px);
  }
}
@media (max-width: 767px) {
  .widget {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .slider {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .slider__caption {
    bottom: 12%;
  }
}
