@charset "UTF-8";
:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --main: #F1E7DD;
  --second: #59301A;
  --secondO: #F5F5F5;
  --brand-beige: #ba9470;
  --brand-green: #578033;
  --brand-yellow: #c9a60d;
  --brand-dark-green: #919a58;
  --brand-dark-blue: #7398ae;
  --brand-dark-red: #d48066;
  --brand-dark-pink: #a476a8;
  --brand-dark-turquoise: #56a59a;
  --brand-dark-l-green: #88c59a;
  --brand-dark-violet: #7a78c5;
  --project-text: #283c63;
  --project-primary: #ff403c;
  --project-secondary: #f3f8ff;
  --project-gray: #ededed;
  --text-header: #101010;
  --text-base-text: #626262;
  --button---primary: #ff403c;
  --button---primary-hover: rgba(255, 64, 60, 0.7);
  --button---secondary: #283c63;
  --button---secondary-hover: rgba(40, 60, 99, 0.7);
  --input---border: #ededed;
  --input---font: #828282;
  --functional---succes: #8cba51;
  --functional---error: #fd5e53;
  --functional---link: #ff9f59;
  --functional---offset: rgba(132, 101, 255, 0.7);
}

.main--red {
  --theme-color: #D48066;
}
.main--green {
  --theme-color: #919a58;
}
.main--blue {
  --theme-color: #7398ae;
}
.main--turquoise {
  --theme-color: #56a59a;
}
.main--pirple {
  --theme-color: #A476A8;
}
.main--green-light {
  --theme-color: #88C59A;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Thin.woff");
  font-weight: 100;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Light.woff");
  font-weight: 300;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Regular.woff");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Medium.woff");
  font-weight: 500;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Bold.woff");
  font-weight: 700;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Heavy.woff");
  font-weight: 800;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "KyivTypeSerif";
  src: url("../fonts//KyivTypeSerif-Black.woff");
  font-weight: 900;
  font-display: block;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:not([class]) {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  position: relative;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.site-container {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Victor Mono", sans-serif;
}
.btn-reset:focus-visible {
  outline: none;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}
.input-reset:focus-visible {
  outline: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: scroll;
}

.display-none {
  display: none !important;
}

html {
  --refRes: 1350;
  font-size: calc(100vw / var(--refRes) * 10) !important;
}
@media (min-width: 1350px) {
  html {
    font-size: 10px !important;
  }
}
@media (max-width: 576px) {
  html {
    --refRes: 390 !important;
  }
}

.container {
  max-width: 1350px;
  padding: 0;
}

.header {
  width: 100vw;
  background-color: #59301A;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header--scrolled {
  background-color: transparent;
}
.header--hovered {
  background-color: #59301A;
}
.header.header--with-search {
  background-color: #59301A;
}
@media (max-width: 576px) {
  .header {
    width: 100vw;
    height: 7vh;
  }
}
.header__container {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 4rem 2rem 4rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
  transition: box-shadow 0.3s ease, padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  position: relative;
}
@media (max-width: 576px) {
  .header__container {
    width: 100vw;
    height: 7vh;
    padding: 2rem;
  }
}
.header__container img {
  height: 5.5rem;
}
@media (max-width: 576px) {
  .header__container img {
    height: 3.1rem;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
  font-size: 1.4rem;
  line-height: 120%;
  letter-spacing: 0.05em;
}
@media (max-width: 576px) {
  .header__nav-list {
    display: none;
  }
}
@media (max-width: 576px) {
  .header .header__nav-link {
    color: white;
  }
}
@media (min-width: 576px) {
  .header .header__nav-link {
    position: relative;
    color: #FFFFFF;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header .header__nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4.1rem;
    width: 100%;
    height: 2px;
    background-color: #BA9470;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .header .header__nav-list:hover .header__nav-link {
    color: #AC978C;
  }
  .header .header__nav-item:hover .header__nav-link {
    color: #FFFFFF;
  }
  .header .header__nav-item:hover .header__nav-link::after,
  .header .header__nav-item:focus-within .header__nav-link::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.header .header__submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background-color: #59301A;
  padding: 1.5rem 0;
  border-radius: 0 0 1rem 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 18rem;
  z-index: 2300;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 576px) {
  .header .header__submenu {
    display: none !important;
  }
}
.header .header__nav-item:hover > .header__submenu,
.header .header__nav-item:focus-within > .header__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.header__submenu li {
  padding: 0.5rem 0;
}
.header__submenu-link {
  display: block;
  padding: 0.5rem 0;
  color: #FFF;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.3rem;
}
.header__submenu-link:hover {
  color: #BA9470;
}
.header__btn--buy-ticket {
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 500;
  background-color: #BA9470;
  color: #59301A;
  font-size: 1.6rem;
  border: none;
  height: 4.9rem;
  width: 20rem;
  border-radius: 1rem;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 576px) {
  .header__btn--buy-ticket {
    display: none;
  }
}
.header__btn--buy-ticket--hidden {
  opacity: 0;
  visibility: hidden;
}
.header__vision-toggle, .header__search-toggle {
  border: none !important;
  background-color: transparent !important;
  cursor: pointer;
}
.header__burger {
  --burger-width: 15px;
  --burger-height: 10px;
  --burger-line-height: 2px;
  position: relative;
  width: var(--burger-width);
  height: var(--burger-height);
  padding: 0;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}
.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.header__burger::before {
  top: 0;
}
.header__burger::after {
  top: calc(100% - var(--burger-line-height));
}
.header__burger .burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 576px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -0.3rem;
  }
}

.header.header--scrolled .header__container {
  -webkit-box-shadow: 0 1px 0 0 #AD9F9D;
  box-shadow: 0 1px 0 0 #AD9F9D;
}

.header__vision-toggle img {
  height: 2rem;
  width: auto;
}

.header__search-toggle img {
  width: 2.5rem;
  height: 2.5rem;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 576px) {
  .header__buttons {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .header__vision-toggle img {
    height: 1.2rem;
    width: auto;
  }
  .header__search-toggle img {
    height: 1.5rem;
    width: auto;
  }
  .header__container > button {
    margin-left: 1rem;
  }
  .header__container > button:first-of-type {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .header__nav.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    top: 6vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #59301A;
    padding: 5rem 2rem 2rem 2rem;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 2200;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav.menu.menu--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header__nav.menu .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .header__nav.menu .header__nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
  }
  .header__nav.menu .header__nav-link::after {
    display: none;
  }
  .header__nav.menu .header__nav-item:has(.header__submenu) .header__nav-link::after {
    content: "";
    border: solid #BA9470;
    border-width: 0 2px 2px 0;
    vertical-align: middle;
    display: inline-block;
    padding: 4px;
    margin-top: -8px;
    margin-left: 1.5rem;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header__nav.menu .header__nav-item.submenu-open .header__nav-link::after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: 3px;
  }
  .header__nav.menu .header__submenu {
    padding: 0;
    margin: 0;
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__nav.menu .header__submenu .header__submenu-link {
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFF;
    text-decoration: none;
  }
  .header__nav.menu .header__nav-item.submenu-open > .header__submenu {
    max-height: 20rem;
    opacity: 1;
    pointer-events: auto;
  }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}

.menu__btn--buy-ticket {
  display: none;
}
@media (max-width: 576px) {
  .menu__btn--buy-ticket {
    margin-top: auto;
    margin-bottom: 20vh;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    display: block;
    font-family: "KyivTypeSerif", sans-serif;
    font-weight: 500;
    background-color: #BA9470;
    color: #59301A;
    font-size: 1.6rem;
    border: none;
    height: 4.9rem;
    width: 20rem;
    border-radius: 1rem;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__search-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 4rem;
  background-color: #59301A;
  border-top: 1px solid #AC978C;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease, -webkit-transform 0.3s ease;
}
.header__search-panel .header__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 88rem;
  border: 1px solid #BA9470;
  margin-top: 1rem;
}
@media (max-width: 576px) {
  .header__search-panel .header__search-form {
    max-width: 35rem;
  }
}
.header__search-panel .header__search-form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  color: #DED6D1;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
.header__search-panel .header__search-form input::-webkit-input-placeholder {
  color: #DED6D1;
  opacity: 1;
}
.header__search-panel .header__search-form input::-moz-placeholder {
  color: #DED6D1;
  opacity: 1;
}
.header__search-panel .header__search-form input:-ms-input-placeholder {
  color: #DED6D1;
  opacity: 1;
}
.header__search-panel .header__search-form input::-ms-input-placeholder {
  color: #DED6D1;
  opacity: 1;
}
.header__search-panel .header__search-form input::placeholder {
  color: #DED6D1;
  opacity: 1;
}
.header__search-panel .header__search-form button {
  background: none;
  border: none;
  padding: 1rem;
  cursor: pointer;
}
.header__search-panel .header__search-form button img {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 576px) {
  .header__search-panel .header__search-form button img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.header__search-panel.search-panel--active {
  max-height: 20rem;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  padding: 2rem 4rem;
}

.header__submenu-panel {
  position: absolute;
  margin-top: 6.9rem;
  padding-bottom: 2rem;
  top: 3rem;
  left: 0;
  width: 100vw;
  background-color: #59301A;
  border-top: 1px solid #AC978C;
  z-index: 2400;
  opacity: 0;
  max-height: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  pointer-events: auto;
  -webkit-transition: opacity 0.4s ease, max-height 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, max-height 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, -webkit-transform 0.4s ease;
}
.header--with-submenu .header__submenu-panel {
  opacity: 1;
  max-height: 30rem !important;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  pointer-events: auto;
  width: 100vw !important;
}
.header--hovered .header__submenu-panel {
  opacity: 1;
  max-height: 0.5rem;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  pointer-events: auto;
}
.header__submenu-panel .header__submenu-panel-inner {
  margin-left: var(--submenu-offset-left);
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
}
.header__submenu-panel a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.header__submenu-panel a:hover {
  color: #BA9470;
}
@media (max-width: 576px) {
  .header__submenu-panel {
    display: none;
  }
}

.footer {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #59301A;
  color: #FFFFFF;
  width: 100%;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.5em 10em;
}
@media (max-width: 576px) {
  .footer__container {
    padding: 2em;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 2.5em;
}
@media (max-width: 576px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1em;
  }
}
.footer .footer__left-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6em;
}
@media (max-width: 576px) {
  .footer .footer__left-group {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__logo {
  width: 15.8em;
  height: 7em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 576px) {
  .footer__logo {
    width: 10em;
    margin-left: 1rem;
  }
}
.footer__btn--feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  background-color: #BA9470;
  color: #FFFFFF;
  height: 4.9rem;
  width: 21.7rem;
  font-size: 1.6em;
  border: none;
  border-radius: 0.65em;
  cursor: pointer;
  margin-left: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .footer__btn--feedback {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__links--desktop {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.2em;
  -webkit-column-gap: 8em;
  -moz-column-gap: 8em;
  column-gap: 8em;
}
.footer__links--mobile {
  padding: 2em 0 2em 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1em;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em;
}
.footer__link {
  color: #FFF;
  font-size: 1.6em;
}
.footer__socials-feedback {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 2rem;
}
@media (max-width: 576px) {
  .footer__socials-feedback {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1em;
  }
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .footer__socials {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer__social {
  width: 4em;
  height: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.8em;
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #BA9470;
}
@media (max-width: 576px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1em;
  }
}
.footer__copyright {
  font-size: 1.4em;
}
.footer__policy {
  text-decoration: underline;
  color: inherit;
  font-size: 1.4em;
}
.footer__creator {
  color: inherit;
  margin-left: auto;
  font-size: 1.2em;
}
@media (max-width: 576px) {
  .footer__creator {
    margin-left: 0;
  }
}
.footer__creator img {
  height: 3em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25em;
}

.footer__btn--mobile {
  display: none;
}

.footer__btn--desktop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 576px) {
  .footer__btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .footer__btn--desktop {
    display: none;
  }
}
.footer__links--mobile {
  display: none;
}

@media (max-width: 576px) {
  .footer__links--desktop {
    display: none;
  }
  .footer__links--mobile {
    display: -ms-grid;
    display: grid;
  }
}
.frame {
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .frame {
    padding: 4rem 0;
  }
}

.title {
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--second);
}
.title--underline {
  display: inline-block;
  border-bottom: 3px solid var(--theme-color);
  padding-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .title {
    font-size: 2.4rem;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-beige);
  margin-bottom: 4rem;
}
.breadcrumbs__text {
  color: inherit;
}
.breadcrumbs a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.6;
}
@media (max-width: 576px) {
  .breadcrumbs {
    margin-bottom: 3rem;
    gap: 1rem 2.5rem;
  }
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
}
.accordion__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.2rem;
}
.accordion__trigger {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: start;
  gap: 2rem;
  background: transparent;
  border: 1px solid var(--brand-beige);
  padding: 2.5rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 120%;
  color: var(--brand-brown);
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordion__trigger:hover {
  opacity: 0.6;
}
.accordion__trigger svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.accordion__trigger[aria-expanded=true] svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion__trigger[aria-expanded=true] {
  background: rgba(186, 148, 112, 0.5);
}
@media (max-width: 576px) {
  .accordion__trigger {
    font-size: 1.6rem;
  }
}
.accordion__content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}
.accordion .documents-list__link {
  font-family: "KyivTypeSerif", sans-serif;
  background: var(--brand-yellow);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accordion .documents-list__link:hover {
  opacity: 0.8;
}
.accordion .document-list__icon svg path {
  fill: var(--brand-yellow);
}

.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__trigger {
  width: 100%;
  border: 1px solid var(--second);
  padding: 0.9rem 3rem;
  background: transparent;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 120%;
  color: var(--brand-beige);
}
@media (max-width: 576px) {
  .custom-select__trigger {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
}
.custom-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  border-bottom: 1px solid var(--second);
  background: var(--main);
}
.custom-select.is-open .custom-select__list {
  max-height: 250px;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.custom-select svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.custom-select.is-open svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.custom-select__option {
  padding: 0.9rem 3rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  background: transparent;
  border-inline: 1px solid var(--second);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.custom-select__option:not(:last-child) {
  border-bottom: 1px solid var(--second);
}
.custom-select__option:hover {
  opacity: 0.6;
}
@media (max-width: 576px) {
  .custom-select__option {
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
}

.btn {
  cursor: pointer;
  border: none;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 120%;
  color: var(--light-color);
  padding: 1.5rem 3rem;
  min-width: 21.1rem;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  opacity: 0.8;
}
.btn--brown {
  background: var(--second);
}

.fancy-button {
  width: 5rem;
  height: 5rem;
  background: none;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fancy-button svg {
  width: 80% !important;
  height: 80% !important;
  display: block;
}

@media (max-width: 576px) {
  .fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
    padding: 0 2rem;
  }
}

.fancybox__caption {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 120%;
  text-align: start;
  padding: 4.2rem 0 0.4rem 0 !important;
}
.fancybox__caption:before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  height: 0.3rem;
  width: 12.6rem;
  background: var(--brand-dark-red);
}
@media (max-width: 576px) {
  .fancybox__caption {
    margin: 0 2rem !important;
    padding: 4.2rem 2rem 0.4rem 0 !important;
  }
}

@media (max-width: 576px) {
  .is-compact .fancybox__footer {
    position: absolute;
    /* bottom: 16.7rem; */
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination__item {
  border: none;
  background: none;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: var(--second);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination__item svg {
  width: 1.1rem;
  height: 0.7rem;
}
.pagination__item:hover {
  opacity: 0.8;
}
.pagination__item:disabled {
  cursor: not-allowed;
  color: var(--brand-beige);
}
.pagination__item:disabled svg path {
  stroke: var(--brand-beige);
}
@media (max-width: 576px) {
  .pagination__item span {
    display: none;
  }
  .pagination__item svg {
    width: 1.5rem;
    height: 1rem;
  }
}
@media (max-width: 576px) {
  .pagination {
    gap: 3.5rem;
  }
}

.video {
  cursor: pointer;
  position: relative;
}
.video img, .video iframe, .video video {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  max-height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.video__play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 100%;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--brand-beige);
}
.video__play img {
  position: absolute;
  top: 50%;
  width: 1.8rem;
  height: 2.2rem;
  min-height: 2.2rem;
  max-height: 2.2rem;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: unset !important;
}
@media (max-width: 576px) {
  .video__play img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.video__play:hover {
  opacity: 0.7;
}

.login__description {
  font-size: 1.4rem;
  color: #000;
  opacity: 0.5;
  max-width: 32rem;
  margin: 0.5rem 0;
  text-align: center;
}
.login__box {
  margin-top: 1rem;
  width: 32rem;
  border-radius: 1rem;
  border: 0.1rem solid var(--gray);
  padding: 3rem 3rem 2.4rem 3rem;
}
@media (max-width: 576px) {
  .login__box {
    width: 35.8rem;
    padding: 3rem 2rem;
  }
}
.login__box_gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.login__form + .login__form {
  margin-top: 2rem;
}
.login__form_disabled {
  opacity: 0.5;
  pointer-events: none;
}
.login__form_disabled * {
  pointer-events: none;
}
.login__form-block {
  margin-bottom: 1rem;
}
.login__form-block input {
  background: var(--second);
  padding: 1rem 1.4rem;
  border-radius: 1rem !important;
  border: none !important;
  width: 100%;
  height: 4rem;
  outline: none;
  font-size: 1.4rem;
}
.login__form-block.error input {
  background: rgba(255, 64, 60, 0.1333333333);
}
.login__form-block.error .login__form-error {
  display: block;
}
.login__form-error {
  display: none;
  color: #FF403C;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  padding-left: 1.4rem;
}
.login__form-label {
  color: #000;
  opacity: 0.5;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  padding-left: 1.4rem;
}
.login__text {
  font-size: 1.4rem;
  color: #000;
  opacity: 0.3;
  line-height: 1.2;
  max-width: 23rem;
}
.login__account {
  font-size: 1.4rem;
  color: var(--main);
  padding: 1.2rem;
  background: var(--second);
  display: block;
  border-radius: 1rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (min-width: 576px) {
  .login__account:not(:disabled):hover {
    background: var(--main);
    color: #fff;
  }
  .login__account:not(:disabled):active {
    opacity: 0.4 !important;
    background: var(--main);
    color: #fff;
  }
}

.error {
  font-family: Montserrat, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  gap: 1.5rem;
}
.error__title {
  font-family: "KyivTypeSerif", sans-serif;
  font-size: 12rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #C9A60D;
}
@media (max-width: 576px) {
  .error__title {
    font-size: 9.6rem;
  }
}
.error__text {
  font-size: 2.4rem;
  text-align: center;
  color: var(--second);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .error__text {
    font-size: 2.4rem;
    white-space: normal;
    padding: 0 2rem;
  }
}
.error__text--small {
  font-size: 2rem;
  font-weight: 400;
  color: var(--second);
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 120%;
}
@media (max-width: 576px) {
  .error__text--small {
    font-size: 2rem;
    white-space: normal;
    padding: 0 2rem;
  }
}
.error__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4rem;
  background-color: var(--second);
  color: var(--secondO);
  height: 5rem;
  width: 28rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  .error__btn {
    width: 27rem;
    height: 4.9rem;
    font-size: 1.6rem;
  }
}

.profile__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .profile__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 2rem;
  }
}
.profile__title {
  font-weight: 800;
  font-size: 3.2rem;
}
.profile__logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.7rem;
  -moz-column-gap: 0.7rem;
  column-gap: 0.7rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.profile__logout svg {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 576px) {
  .profile__logout:hover {
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
  }
  .profile__logout:active {
    opacity: 0.3 !important;
  }
}
.profile__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  position: relative;
  width: 100%;
}
@media (max-width: 576px) {
  .profile__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1.6rem;
  }
}
.profile__block {
  border-radius: 1rem;
  border: 0.1rem solid var(--gray);
  padding: 2.6rem 2rem;
  width: 100%;
  position: relative;
}
@media (max-width: 576px) {
  .profile__block {
    width: 100%;
  }
}
.profile__block_data {
  width: 30rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .profile__block_data {
    width: 100%;
  }
}
.profile__block-title {
  font-size: 1.8rem;
  color: var(--main);
  font-weight: 600;
  margin-bottom: 1rem;
}
.profile__data + .profile__data {
  margin-top: 1rem;
}
.profile__data-label {
  padding-left: 1.4rem;
  font-size: 1.4rem;
  color: #000;
  opacity: 0.3;
  margin-bottom: 0.4rem;
}
.profile__data-value {
  padding: 1.2rem 1.4rem;
  font-size: 1.4rem;
  background: var(--second);
  border-radius: 1rem;
}
.profile__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .profile__search {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1rem;
    margin-bottom: 0rem;
  }
}
.profile__search-input {
  width: 100%;
  border: none;
  outline: none;
  background: var(--second);
  height: 4rem;
  border-radius: 1rem;
  padding: 0 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--main);
}
.profile__search-input::-webkit-input-placeholder {
  font-weight: 400;
  color: var(--main);
  opacity: 0.5;
}
.profile__search-input::-moz-placeholder {
  font-weight: 400;
  color: var(--main);
  opacity: 0.5;
}
.profile__search-input:-ms-input-placeholder {
  font-weight: 400;
  color: var(--main);
  opacity: 0.5;
}
.profile__search-input::-ms-input-placeholder {
  font-weight: 400;
  color: var(--main);
  opacity: 0.5;
}
.profile__search-input::placeholder {
  font-weight: 400;
  color: var(--main);
  opacity: 0.5;
}
.profile__search-btn {
  max-width: 17.9rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .profile__search-btn {
    max-width: 100%;
  }
}
.profile__table {
  width: 100%;
  padding: 0 1.8rem;
}
@media (max-width: 576px) {
  .profile__table {
    display: none;
  }
}
.profile__table tr {
  width: 100%;
}
.profile__table th, .profile__table td {
  font-size: 1.4rem;
  color: var(--main);
  opacity: 0.5;
  text-align: left;
  font-weight: 400;
  padding: 1rem 0;
}
.profile__table th:nth-of-type(1), .profile__table td:nth-of-type(1) {
  width: 16rem;
  padding-right: 2rem;
}
.profile__table th:nth-of-type(2), .profile__table td:nth-of-type(2) {
  width: 29rem;
  padding-right: 2rem;
}
.profile__table th:nth-of-type(3), .profile__table td:nth-of-type(3) {
  width: 10rem;
  text-align: center;
  padding-right: 2rem;
}
.profile__table th:nth-of-type(4), .profile__table td:nth-of-type(4) {
  width: 11.4rem;
  text-align: center;
}
.profile__table td {
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 1;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.profile__refuse {
  margin-left: auto;
  margin-top: 1rem;
  color: var(--main);
  background: transparent;
  border: 0.1rem solid var(--main);
  max-width: 30rem;
}
@media (max-width: 576px) {
  .profile__refuse {
    max-width: 100%;
    margin-top: 2rem;
  }
}
.profile__result {
  display: none;
}
@media (max-width: 576px) {
  .profile__result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem;
  }
  .profile__result:not(:empty) {
    margin-top: 4rem;
  }
}
.profile__result-label {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  color: var(--main);
  opacity: 0.5;
}
.profile__result-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--main);
}

.refuse {
  padding: 5rem 0;
}
@media (max-width: 576px) {
  .refuse {
    padding: 1.6rem;
  }
}
.refuse__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  row-gap: 2rem;
}
.refuse__doc {
  border: 0.1rem solid #e9e9e9;
  border-radius: 0.5rem;
  width: 55.1rem;
  padding: 3rem;
}
@media (max-width: 576px) {
  .refuse__doc {
    width: 35.8rem;
    padding: 2rem;
  }
}
.refuse__doc * {
  font-family: "Times New Roman";
}
.refuse__doc-text {
  font-size: 1.2rem;
  line-height: 1.2;
  position: relative;
}
.refuse__doc-text_error {
  color: red;
  position: absolute;
  top: 0;
  left: -1rem;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  line-height: 2rem;
  opacity: 0;
}
@media (max-width: 576px) {
  .refuse__doc-text_error {
    right: 0;
    left: unset;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    top: 1.8rem;
    /* top: unset;
    left: unset;
    right: unset;
    transform: translate(0); */
  }
}
.refuse__doc-text_error-right {
  left: unset;
  right: -1rem;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  white-space: nowrap;
}
@media (max-width: 576px) {
  .refuse__doc-text_error-right {
    right: unset;
    left: 0;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    top: 1.9rem;
    /* position: relative;
    top: unset;
    left: unset;
    right: unset;
    transform: translate(0); */
  }
}
@media (max-width: 576px) {
  .refuse__doc-text_error-bic {
    left: 2.7rem;
  }
}
@media (max-width: 576px) {
  .refuse__doc-text_error-bank {
    left: 5.8rem;
  }
}
.refuse__doc-text_right {
  max-width: 24.4rem;
  text-align: right;
  margin-left: auto;
}
.refuse__doc-text_value {
  border-radius: 0.5rem;
  opacity: 0.5;
  margin-bottom: 0.2rem;
}
.refuse__doc-text_wide {
  max-width: 30.8rem;
}
.refuse__doc-text_inline {
  display: inline-block;
}
.refuse__doc-text_baloon {
  margin-bottom: 0;
}
.refuse__doc-text_margin {
  margin-top: 0.8rem;
}
.refuse__doc-text_top {
  margin-top: 1.5rem;
}
.refuse__doc-input {
  width: 100%;
  padding: 0.3rem 0.6rem;
  background: var(--second);
  border-radius: 0.5rem;
  margin-bottom: 0.2rem;
  border: none;
  color: var(--main);
  font-size: 1.2rem;
  font-weight: 600;
  outline: none;
}
.refuse__doc-input:user-invalid {
  background: #FFDBDB;
}
@media (max-width: 576px) {
  .refuse__doc-input:user-invalid {
    margin-bottom: 1.5rem;
  }
}
.refuse__doc-input:user-invalid + .refuse__doc-text_error {
  opacity: 1;
}
.refuse__doc-input_right {
  text-align: right;
}
.refuse__doc-input_bic {
  display: inline-block;
  width: 8.4rem;
  text-align: center;
}
.refuse__doc-input_bank {
  display: inline-block;
  width: 15.5rem;
  text-align: center;
}
.refuse__doc-title {
  text-align: center;
  margin-top: 4.7rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 1.2rem;
}
.refuse__doc-title_margin {
  margin-top: 2rem;
}
.refuse__submit {
  max-width: 19rem;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3500;
}
.modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.modal__content {
  position: relative;
  background: #fff;
  padding: 3rem 4rem;
  width: 70rem;
  height: 56rem;
  border-radius: 2rem;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 576px) {
  .modal__content {
    padding: 2rem;
    height: 68rem;
    width: 35rem;
  }
}
.modal__content--thanks {
  height: 45rem;
  width: 70rem;
}
@media (max-width: 576px) {
  .modal__content--thanks {
    height: 50vh;
    width: 35rem;
  }
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 3.5rem;
  cursor: pointer;
  color: #59301A;
}
@media (max-width: 576px) {
  .modal__close {
    display: none;
  }
}

.feedback-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 576px) {
  .feedback-form {
    gap: 1.5rem;
  }
}
.feedback-form__title {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  color: #59301A;
  font-family: "KyivTypeSerif", sans-serif;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .feedback-form__title {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.feedback-form label {
  position: relative;
  color: #BA9470;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 2rem;
  font-size: 1.6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 2rem;
}
.feedback-form label.label--textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 576px) {
  .feedback-form label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    font-size: 1.6rem;
    width: 31rem;
    padding-left: 0;
  }
}
.feedback-form textarea:focus + .feedback-form__counter {
  display: none;
}
.feedback-form input,
.feedback-form textarea {
  padding: 1rem;
  color: #BA9470;
  font-weight: 500;
  border: 1px solid #BA9470;
  border-radius: 1rem;
  font-size: 1.6rem;
  height: 4rem;
  width: 44rem;
}
.feedback-form input::-webkit-input-placeholder, .feedback-form textarea::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: #BA9470;
  font-weight: 400;
}
.feedback-form input::-moz-placeholder, .feedback-form textarea::-moz-placeholder {
  font-size: 1.4rem;
  color: #BA9470;
  font-weight: 400;
}
.feedback-form input:-ms-input-placeholder, .feedback-form textarea:-ms-input-placeholder {
  font-size: 1.4rem;
  color: #BA9470;
  font-weight: 400;
}
.feedback-form input::-ms-input-placeholder, .feedback-form textarea::-ms-input-placeholder {
  font-size: 1.4rem;
  color: #BA9470;
  font-weight: 400;
}
.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  font-size: 1.4rem;
  color: #BA9470;
  font-weight: 400;
}
@media (max-width: 576px) {
  .feedback-form input,
  .feedback-form textarea {
    width: 31rem;
    height: 4rem;
  }
}
.feedback-form textarea {
  width: 44rem;
  height: 20rem;
  resize: none;
}
@media (max-width: 576px) {
  .feedback-form textarea {
    height: 20rem;
    width: 31rem;
  }
}
.feedback-form__counter {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
}
@media (max-width: 576px) {
  .feedback-form__counter {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    display: block;
    text-align: right;
    font-size: 1.4rem;
    color: #BA9470;
    font-weight: 400;
  }
}
.feedback-form__checkbox {
  margin-left: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.4rem;
  gap: 1rem;
}
.feedback-form__checkbox input[type=checkbox] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.3rem;
}
.feedback-form__checkbox a {
  color: #59301A;
  font-weight: 600;
  text-decoration: underline;
  word-break: break-word;
}
.feedback-form__submit {
  background-color: #59301A;
  color: white;
  padding: 0;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  height: 4.9rem;
  width: 19rem;
  font-size: 1.6rem;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.feedback-thanks {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}
.feedback-thanks__title {
  font-family: "KyivTypeSerif", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-top: -2rem;
}
@media (max-width: 576px) {
  .feedback-thanks__title {
    font-size: 2.4rem;
    margin: 0;
  }
}
.feedback-thanks__text {
  text-align: center;
  font-size: 1.6rem;
  color: #BA9470;
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .feedback-thanks__text {
    margin-bottom: 0;
  }
}
.feedback-thanks__back {
  margin-top: 2rem;
  background-color: #59301A;
  color: white;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  height: 4.9rem;
  width: 24rem;
  font-size: 1.6rem;
}

.gosuslugi-section {
  font-family: var(--font-family);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  gap: 3em;
  padding: 14.7rem;
  background-color: var(--main);
  width: 100%;
}
.gosuslugi-section > div {
  background-color: var(--light-color);
  padding: 3em;
  border-radius: 2em;
  color: var(--second);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.gosuslugi-section h1 {
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.gosuslugi-section p {
  font-size: 1.6rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.gosuslugi-section a {
  margin-top: 3rem;
}
.gosuslugi-section__resolve {
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  height: 32.5rem;
  width: 50rem;
}
.gosuslugi-section__resolve h1 {
  color: #0065B3;
}
.gosuslugi-section__resolve-image {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 15rem;
  height: auto;
  z-index: 1;
}
.gosuslugi-section__rate {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  height: 32.5rem;
  width: 50rem;
}
.gosuslugi-section__rate h1 {
  color: var(--second);
}
.gosuslugi-section__card {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  width: 104rem;
  height: 18rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 3rem 4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.gosuslugi-section__card h1 {
  color: #578033;
}
.gosuslugi-section__card > .content {
  max-width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.gosuslugi-section__card > .button-wrapper {
  max-width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding-top: 4rem;
}
.gosuslugi-section__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  color: var(--light-color);
  border: none;
  border-radius: 0.65em;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 5rem;
  width: auto;
  min-width: 15rem;
  padding: 0 1.5em;
  font-size: 1.6rem;
}
.gosuslugi-section__btn--resolve {
  background-color: #1C65EB;
}
.gosuslugi-section__btn--rate {
  background-color: var(--second);
}
.gosuslugi-section__btn--card {
  background-color: #578033;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (max-width: 576px) {
  .gosuslugi-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3rem;
    gap: 2rem;
  }
  .gosuslugi-section__resolve {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .gosuslugi-section__rate {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gosuslugi-section__card {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .gosuslugi-section__resolve-image {
    position: static;
    width: 100%;
    max-width: 15rem;
    padding-bottom: 0.5rem;
    margin-left: -1rem;
  }
  .gosuslugi-section > div {
    width: 100%;
    height: auto;
  }
  .gosuslugi-section__card {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: auto;
    width: 100%;
    padding: 2rem;
  }
  .gosuslugi-section__card > .content {
    max-width: 100%;
  }
  .gosuslugi-section__card > .button-wrapper {
    max-width: 85%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 3rem;
  }
  .gosuslugi-section__btn--card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}
.main-event {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  height: 80.82vh;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 576px) {
  .main-event {
    margin-bottom: 0;
    aspect-ratio: unset;
  }
}
.main-event__wallpaper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.main-event__wallpaper-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}
.main-event__wallpaper-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgba(0, 0, 0, 0.4)), color-stop(0%, transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 0%);
  z-index: 1;
  pointer-events: none;
}
.main-event__content {
  position: relative;
  max-width: 1350px;
  width: 100%;
  margin: 46vh auto;
  padding: 0 10rem;
  z-index: 3;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.main-event__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.5rem;
  font-size: 1.4rem;
}
.main-event__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 2rem;
  padding-right: 1rem;
  border-right: 3px solid #BA9470;
}
.main-event__date-day {
  font-weight: 600;
  font-size: 1.8rem;
}
.main-event__date-time {
  font-weight: 300;
  font-size: 2.7rem;
}
.main-event__location {
  font-size: 2rem;
  text-align: left;
}
.main-event__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.main-event__title-frame {
  height: 7.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.main-event__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main-event__type {
  font-size: 2rem;
  font-weight: normal;
}
.main-event__name {
  font-family: "KyivTypeSerif", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  color: #fff;
}
.main-event__button {
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 500;
  background-color: #BA9470;
  color: #59301A;
  font-size: 1.6rem;
  border: none;
  height: 4.9rem;
  width: 20rem;
  border-radius: 1rem;
  cursor: pointer;
  margin-left: 34rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .main-event__button {
    display: block;
    margin-left: -23rem;
    margin-top: 15rem;
  }
}
.main-event__carousel {
  width: 100%;
  height: 80.82vh;
  position: relative;
}
.main-event__slide {
  width: 100%;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-event__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 70vh;
  right: 7vh;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  gap: 2rem;
}

.main-event__progress {
  position: absolute;
  top: 75vh !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
}

@media (max-width: 576px) {
  .main-event {
    border-radius: 0;
    height: 105vh;
  }
  .main-event__carousel {
    height: 100vh;
    aspect-ratio: unset;
  }
  .main-event__slide {
    height: 100vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .main-event__wallpaper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .main-event__wallpaper-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
  }
  .main-event__wallpaper-overlay {
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, rgba(0, 0, 0, 0.4)), color-stop(0%, transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 100%, transparent 0%);
    z-index: 2;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
  }
  .main-event__content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    margin-top: 43vh;
    margin-bottom: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
    color: #fff;
  }
  .main-event__date-day {
    font-weight: 600;
    font-size: 1.2rem;
  }
  .main-event__date-time {
    font-weight: 300;
    font-size: 1.6rem;
  }
  .main-event__location {
    font-size: 1.6rem;
    text-align: left;
  }
  .main-event__title-frame {
    height: 4.7rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .main-event__type {
    font-size: 1.6rem;
    font-weight: normal;
  }
  .main-event__name {
    font-family: "KyivTypeSerif", sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
  }
  .main-event__info {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  .main-event__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
  .main-event__navigation {
    top: auto;
    bottom: 5rem;
    right: 2rem;
    gap: 2.5rem;
  }
  .main-event__progress {
    top: 95vh !important;
    left: 1rem;
    right: 1rem;
    height: 12px;
    gap: 8px;
  }
}
.swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.4rem;
  background-color: #BA9470;
  border-radius: 0;
  opacity: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #FFF;
  width: 3.7rem;
  height: 0.4rem;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
}

.section-block {
  padding: 8rem 15rem;
  font-family: "Montserrat", sans-serif;
}
.section-block .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4rem;
}
.section-block .section-header h1 {
  font-size: 3.6rem;
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 500;
  color: var(--second);
  margin: 0;
}
.section-block .section-header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--brand-beige);
}
.section-block .section-header__tab {
  cursor: pointer;
  border: none;
  padding: 1.3rem 2.2rem;
  font-weight: 600;
  line-height: 120%;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--brand-beige);
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-block .section-header__tab[aria-selected=true] {
  background: var(--brand-yellow);
  color: var(--light-color);
}
.section-block .section-header__tab:hover {
  opacity: 0.6;
}
@media (max-width: 576px) {
  .section-block .section-header__tab {
    padding: 1.3rem 1.8rem;
    width: 100%;
  }
}
.section-block .section-link {
  text-decoration: underline;
  color: #BA9470;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  .section-block {
    padding: 3rem 0 3rem 2rem;
  }
  .section-block .section-header h1 {
    font-size: 2.4rem;
  }
  .section-block .section-link {
    font-size: 1.4rem;
  }
}

.nav-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.recent-events {
  position: relative;
  padding-bottom: 4rem;
}
.recent-events .recent-events-swiper {
  width: 90vw;
  padding-right: 5rem;
}
@media (max-width: 576px) {
  .recent-events .recent-events-swiper {
    width: 94vw;
  }
}
.recent-events .recent-events-card--spacer {
  width: 20rem;
  margin-right: 0 !important;
  background: transparent;
  pointer-events: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  .recent-events .recent-events-card--spacer {
    display: none;
  }
}
.recent-events-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50rem;
  height: 26rem;
  scroll-snap-align: start;
  border-radius: 2rem;
  margin-right: 4rem !important;
}
@media (max-width: 576px) {
  .recent-events-card {
    width: 27rem;
    height: 15rem;
    margin-right: 2rem !important;
  }
}
.recent-events-card__image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  height: 26rem;
}
.recent-events-card__image {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.recent-events-card__image:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .recent-events-card__image {
    height: 15rem;
    width: 27rem;
  }
}
.recent-events-card__date {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  color: var(--light-color);
  font-weight: 600;
  font-size: 2rem;
  background-color: transparent;
  padding: 0.3rem 0.6rem;
}
.recent-events-card__label {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  background-color: rgba(186, 148, 112, 0.9);
  color: var(--light-color);
  height: 6.5rem;
  width: 45rem;
  font-size: 2rem;
  padding-left: 3.5rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 576px) {
  .recent-events-card__image-wrapper {
    height: 15rem;
  }
  .recent-events-card__label {
    width: 70vw;
    height: 5.5rem;
    font-size: 1.6rem;
    text-align: left;
    padding-left: 4.5rem;
  }
  .recent-events-card__date {
    font-size: 1.6rem;
  }
}
.recent-events-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 576px) {
  .recent-events-navigation {
    position: absolute;
    top: 0;
    right: 2rem;
    z-index: 10;
  }
}
@media (max-width: 576px) {
  .recent-events .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
}

.galleries .galleries-swiper {
  width: 90vw;
  padding-right:  5rem;
}
@media (max-width: 576px) {
  .galleries .galleries-swiper {
    width: 94vw;
  }
}
.galleries .galleries-card--spacer {
  width: 20rem;
  margin-right: 0 !important;
  background: transparent;
  pointer-events: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  .galleries .galleries-card--spacer {
    display: none;
  }
}
.galleries-card {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50rem;
  height: 26rem;
  border-radius: 2rem;
  margin-right: 4rem !important;
}
@media (max-width: 576px) {
  .galleries-card {
    width: 27rem;
    height: 15rem;
    margin-right: 2rem !important;
  }
}
.galleries-card__image-wrapper {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  height: 26rem;
  z-index: 0;
}
.galleries-card__image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(186, 148, 112, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(186, 148, 112, 0.6) 100%);
  pointer-events: none;
  border-radius: 2rem;
  z-index: 1;
}
.galleries-card__image {
  display: block;
}
/* @media (max-width: 576px) {
  .galleries-card__image {
    height: 15rem;
  }
} */
.galleries-card__label {
  position: absolute;
  bottom: 2rem;
  color: var(--light-color);
  font-size: 2rem;
  padding-left: 3.5rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  z-index: 2;
}
@media (max-width: 576px) {
  .galleries-card__image-wrapper {
    height: 15rem;
  }
  .galleries-card__label {
    font-size: 1.6rem;
    padding-left: 1.5rem;
  }
}
.galleries-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 576px) {
  .galleries-navigation {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0;
    margin-right: 2rem;
  }
}

.nav-btn.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.creative-unions {
  position: relative;
}
@media (max-width: 576px) {
  .creative-unions .section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
}
.creative-unions .creative-unions__swiper {
  overflow: hidden;
  width: 90vw;
}
@media (max-width: 576px) {
  .creative-unions .creative-unions__swiper {
    width: 94vw;
    overflow-x: hidden;
  }
}
.creative-unions .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.creative-unions .swiper-slide {
  margin-right: 0 !important;
}
.creative-unions .creative-unions__tab {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 21rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
}
@media (max-width: 576px) {
  .creative-unions .creative-unions__tab {
    width: 20rem;
    gap: 1.5rem;
  }
}
.creative-unions .creative-unions__tab:nth-child(1) .tab-icon {
  background-color: #919A58;
}
.creative-unions .creative-unions__tab:nth-child(2) .tab-icon {
  background-color: #7398AE;
}
.creative-unions .creative-unions__tab:nth-child(3) .tab-icon {
  background-color: #D48066;
}
.creative-unions .creative-unions__tab:nth-child(4) .tab-icon {
  background-color: #56A59A;
}
.creative-unions .creative-unions__tab:nth-child(5) .tab-icon {
  background-color: #A476A8;
}
.creative-unions .creative-unions__tab:nth-child(6) .tab-icon {
  background-color: #88C59A;
}
.creative-unions .tab-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.creative-unions .tab-title {
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--second);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 2.5rem;
  height: 12rem;
  width: 21rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  white-space: normal;
  border-right: 1px solid #BA9470;
}
@media (max-width: 576px) {
  .creative-unions .tab-title {
    font-size: 1.6rem;
    padding: 0 2rem;
    height: 11rem;
    width: auto;
  }
}
.creative-unions .creative-unions__tab:nth-of-type(1) .tab-title {
  border-left: 1px solid #BA9470;
}

.contacts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 13rem;
  margin-bottom: 15rem;
  font-family: "Montserrat", sans-serif;
  gap: 3rem;
}
@media (max-width: 576px) {
  .contacts-wrapper {
    margin-top: 8rem;
    margin-bottom: 5rem;
  }
}
.contacts-wrapper .contacts-title {
  font-family: "KyivTypeSerif", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  padding-left: 16rem;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-title {
    padding-left: 2rem;
  }
}
.contacts-wrapper .contacts-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
  padding-left: 16rem;
  padding-right: 16rem;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contacts-wrapper .contacts-content__left,
.contacts-wrapper .contacts-content__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.contacts-wrapper .contacts-content__left {
  width: 46rem;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-content__left {
    display: none;
  }
}
.contacts-wrapper .contacts-content__right {
  margin-right: 21rem;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-content__right {
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-content__right .contacts-section--orginfo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-content__right .contacts-section--socials {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-content__right .contacts-section--feedback {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
.contacts-wrapper .contacts-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-family: "KyivTypeSerif", sans-serif;
  color: #BA9470;
  font-weight: 500;
  font-size: 1.8rem;
}
.contacts-wrapper .contacts__member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.contacts-wrapper .contacts__member .contacts__name {
  font-size: 1.6rem;
  font-weight: 600;
}
.contacts-wrapper .contacts__member .contacts__role,
.contacts-wrapper .contacts__member .contacts__phone {
  font-size: 1.6rem;
  font-weight: 400;
}
.contacts-wrapper .contacts-orginfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.contacts-wrapper .contacts-orginfo .contacts__address,
.contacts-wrapper .contacts-orginfo .contacts__phone,
.contacts-wrapper .contacts-orginfo .contacts__email,
.contacts-wrapper .contacts-orginfo .contacts__workhours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}
.contacts-wrapper .contacts__subtitle {
  font-size: 1.6rem;
  font-weight: 600;
}
.contacts-wrapper p {
  font-size: 1.6rem;
  font-weight: 400;
}
.contacts-wrapper .contacts-feedback {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.contacts-wrapper .contacts-feedback__button {
  background: transparent;
  border: 1px solid #8B6E5F;
  height: 4.9rem;
  width: 21.7rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  cursor: pointer;
  color: #59301A;
  font-weight: 500;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-feedback__button {
    width: 35rem;
  }
}
.contacts-wrapper .contacts-socials {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.contacts-wrapper .contacts-socials__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 2rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts-socials__list {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}
.contacts-wrapper .contacts__social {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.8em;
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts__social {
    width: 5rem;
    height: 5rem;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .contacts-wrapper .contacts__social img {
    height: 50%;
    width: 50%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.contacts-wrapper #yandex-map {
  margin-top: 5rem;
  margin-left: 16rem;
  width: 103rem;
  height: 35rem;
}
@media (max-width: 576px) {
  .contacts-wrapper #yandex-map {
    margin-left: 2rem;
    width: 35rem;
    height: 20rem;
  }
}

.contacts-section--admin-mobile {
  display: none;
}
@media (max-width: 576px) {
  .contacts-section--admin-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 3rem;
    gap: 2rem;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.contacts-section--admin-desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}

.history-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 13rem;
  margin-bottom: 13rem;
  font-family: "Montserrat", sans-serif;
  gap: 5rem;
}
@media (max-width: 576px) {
  .history-wrapper {
    margin-top: 8rem;
    margin-bottom: 4rem;
    gap: 3rem;
  }
}
.history-wrapper .history__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 576px) {
  .history-wrapper .history__tab {
    gap: 2rem;
  }
}
.history-wrapper .history__tab__label {
  font-family: "KyivTypeSerif", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  -webkit-text-decoration-color: #C9A60D;
  text-decoration-color: #C9A60D;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 3px;
  padding-left: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 576px) {
  .history-wrapper .history__tab__label {
    padding-left: 2rem;
    font-size: 2.4rem;
    gap: 1rem;
  }
}
.history-wrapper .history__tab__label img {
  height: 2.5rem;
}
.history-wrapper .history__tab__content {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 0 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 576px) {
  .history-wrapper .history__tab__content {
    padding: 0 2rem;
  }
}
.history-wrapper .history__quote {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFF;
  margin-left: 16rem;
  height: 23rem;
  width: 103rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .history-wrapper .history__quote {
    margin-left: 2rem;
    height: 53rem;
    width: 35rem;
  }
}
.history-wrapper .history__quote p {
  font-size: 1.6rem;
  padding: 0 6.8rem;
  font-style: italic;
}
@media (max-width: 576px) {
  .history-wrapper .history__quote p {
    padding: 4rem 4rem 2rem 6rem;
  }
}
.history-wrapper .history__quote .decoration-up {
  position: absolute;
  top: 0;
  left: 0;
}
.history-wrapper .history__quote .decoration-down {
  position: absolute;
  top: 16rem;
  right: 0;
}
@media (max-width: 576px) {
  .history-wrapper .history__quote .decoration-down {
    inset: auto 0 0 auto;
  }
}

.history__slider {
  padding-top: 5rem;
  margin-left: 5rem;
}
@media (max-width: 576px) {
  .history__slider {
    width: 100vw;
    margin-left: -1rem;
    margin-right: -2rem;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 0;
  }
}
.history__slider .slider__swiper {
  position: relative;
  overflow: hidden;
  width: 110rem;
}
@media (max-width: 576px) {
  .history__slider .slider__swiper {
    overflow: hidden;
    width: 97vw;
    padding: 0;
  }
}
.history__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.history__slider .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
}
@media (max-width: 576px) {
  .history__slider .swiper-slide {
    gap: 2rem;
    width: calc(85vw - 4rem) !important;
  }
}
.history__slider .swiper-slide .slider__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
}
@media (max-width: 576px) {
  .history__slider .swiper-slide .slider__card {
    width: 29rem;
  }
}
.history__slider .swiper-slide .slider__image {
  width: 55rem;
  height: 27rem;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  .history__slider .swiper-slide .slider__image {
    width: 27rem;
    height: 15rem;
  }
}
.history__slider .slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .history__slider .slider__nav {
    padding-right: 2rem;
  }
}
.history__slider .slider__nav .swiper-button-prev,
.history__slider .slider__nav .swiper-button-next {
  width: 4.5rem;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.history__slider .slider__nav .swiper-button-prev .slider__icon,
.history__slider .slider__nav .swiper-button-next .slider__icon {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.personnel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13rem;
  margin-bottom: 15rem;
}
@media (max-width: 576px) {
  .personnel {
    gap: 3rem;
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
}
.personnel__title {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding-left: 16rem;
  font-size: 3.6rem;
}
@media (max-width: 576px) {
  .personnel__title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 2.4rem;
    font-weight: 500;
    padding-left: 2rem;
  }
}
.personnel__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2rem;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  align-self: flex-start;
  padding-left: 16rem;
}
@media (max-width: 576px) {
  .personnel__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.personnel__member {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  display: block;
  line-height: 1.4;
}
.personnel__name {
  font-weight: 600;
}
.personnel__role {
  font-weight: 500;
}

.project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13rem;
  margin-bottom: 15rem;
}
@media (max-width: 576px) {
  .project {
    gap: 3rem;
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
}
.project__title {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding-left: 16rem;
  font-size: 3.6rem;
}
@media (max-width: 576px) {
  .project__title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 2.4rem;
    font-weight: 500;
    padding-left: 2rem;
  }
}
.project__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1rem;
  background: #7398AE;
  height: 26rem;
  width: 103rem;
}
@media (max-width: 576px) {
  .project__item {
    gap: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 3rem);
    height: auto;
    margin: 0 1.5rem;
  }
}
.project__image {
  width: 40rem;
  height: 26rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.project__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 63rem;
  padding: 3rem;
  gap: 2rem;
}
@media (max-width: 576px) {
  .project__content {
    height: auto;
    width: 100%;
    padding: 2.5rem;
  }
}
.project__name {
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 400;
}
@media (max-width: 576px) {
  .project__name {
    font-size: 1.8rem;
  }
}
.project__description {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  color: #FFFFFF;
  font-weight: 400;
}
.project__link {
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 400;
}

.about-project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13rem;
  margin-bottom: 15rem;
}
.about-project .breadcrumbs-about .breadcrumb {
  margin-left: -65rem;
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .about-project .breadcrumbs-about .breadcrumb {
    -webkit-transform: translate(-2rem, -1rem);
    -ms-transform: translate(-2rem, -1rem);
    transform: translate(-2rem, -1rem);
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .about-project {
    gap: 2rem;
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
}
.about-project__title {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding-left: 18rem;
  font-size: 3.6rem;
}
@media (max-width: 576px) {
  .about-project__title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 0 2rem;
  }
}
.about-project__description {
  color: var(--second);
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 18rem;
  word-break: break-word;
  overflow-wrap: break-word;
  -ms-hyphens: none;
  hyphens: none;
}
@media (max-width: 576px) {
  .about-project__description {
    padding: 0rem 2rem;
  }
}
.about-project__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 4rem;
  gap: 3rem;
}
@media (max-width: 576px) {
  .about-project__content {
    margin-top: 2rem;
  }
}
.about-project p {
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-size: 3.6rem;
  font-weight: 600;
  padding-left: 6rem;
}
@media (max-width: 576px) {
  .about-project p {
    padding-left: 2rem;
    font-size: 2.2rem;
    font-weight: 500;
  }
}
.about-project .video-embed {
  position: relative;
  width: 103rem;
  aspect-ratio: 16/9;
  border-radius: 2rem;
  overflow: hidden;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 6rem;
}
@media (max-width: 576px) {
  .about-project .video-embed {
    width: 35rem;
    margin-left: 0;
  }
}
.about-project .video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.about-project .video-embed__placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.about-project .video-embed.has-video iframe {
  display: block;
}
.about-project .video-embed.has-video .video-embed__placeholder {
  display: none;
}
.about-project__slider {
  padding-top: 2rem;
  margin-left: 6rem;
}
@media (max-width: 576px) {
  .about-project__slider {
    width: 100vw;
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
.about-project__slider .slider__swiper {
  position: relative;
  overflow: hidden;
  width: 103rem;
}
@media (max-width: 576px) {
  .about-project__slider .slider__swiper {
    overflow: hidden;
    width: 100%;
    padding: 0 1rem;
    margin-right: unset;
  }
}
.about-project__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-project__slider .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
}
@media (max-width: 576px) {
  .about-project__slider .swiper-slide {
    gap: 2rem;
    width: calc(85vw - 4rem) !important;
  }
}
.about-project__slider .swiper-slide .slider__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: 0;
}
@media (max-width: 576px) {
  .about-project__slider .swiper-slide .slider__card {
    width: 29rem;
  }
}
.about-project__slider .swiper-slide .slider__image {
  width: 50rem;
  height: 27rem;
  display: block;
  border-radius: 2rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 576px) {
  .about-project__slider .swiper-slide .slider__image {
    width: 27rem;
    height: 15rem;
  }
}
.about-project__slider .swiper-slide .slider__caption {
  margin-top: 0.8rem;
  font-size: 2rem;
  text-align: center;
  color: #ba9470;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 576px) {
  .about-project__slider .swiper-slide .slider__caption {
    font-size: 1.4rem;
  }
}
.about-project__slider .slider__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-project__slider .slider__nav .swiper-button-prev,
.about-project__slider .slider__nav .swiper-button-next {
  width: 4.5rem;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.about-project__slider .slider__nav .swiper-button-prev .slider__icon,
.about-project__slider .slider__nav .swiper-button-next .slider__icon {
  width: 4.5rem;
  height: 4.5rem;
  -o-object-fit: contain;
  object-fit: contain;
  color: #83A2B4;
}

.breadcrumb {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding-left: 16rem;
}
@media (max-width: 576px) {
  .breadcrumb {
    padding-left: 2rem;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #BA9470;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media (max-width: 576px) {
  .breadcrumb__list {
    gap: 1rem 3rem;
  }
}
.breadcrumb__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb__item::after {
  content: "/";
  position: absolute;
  right: -1.5rem;
  color: #BA9470;
  font-weight: 400;
}
.breadcrumb__item:last-child::after {
  display: none;
}
@media (max-width: 576px) {
  .breadcrumb__item:last-child:nth-child(n+3) {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.breadcrumb__link {
  text-decoration: none;
  color: #BA9470;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}

.personnel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 13rem;
  margin-bottom: 15rem;
}
@media (max-width: 576px) {
  .personnel {
    gap: 3rem;
    margin-bottom: 8rem;
    margin-top: 8rem;
  }
}
.personnel__title {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding-left: 16rem;
  font-size: 3.6rem;
}
@media (max-width: 576px) {
  .personnel__title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 2.4rem;
    font-weight: 500;
    padding-left: 2rem;
  }
}
.personnel__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2rem;
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  align-self: flex-start;
  padding-left: 16rem;
}
@media (max-width: 576px) {
  .personnel__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.personnel__member {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  display: block;
  line-height: 1.4;
}
.personnel__name {
  font-weight: 600;
}
.personnel__role {
  font-weight: 500;
}

.ymaps-2-1-79-balloon__content {
  padding: 0 !important;
  background: transparent !important;
}

.custom-balloon {
  background: #fff;
  padding: 1rem;
  min-width: 18rem;
  font-family: sans-serif;
  line-height: 1.4;
}

.custom-balloon__title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.custom-balloon__text {
  font-size: 1rem;
}

.rating {
  margin-left: 0.3rem;
  color: #f5a623;
}

@media (max-width: 576px) {
  .ymaps-2-1-79-balloon {
    max-width: 55vw !important;
  }
  .custom-balloon {
    max-width: 10rem !important;
    padding: 0.6rem !important;
  }
  .custom-balloon__title {
    font-size: 1rem !important;
  }
  .custom-balloon__text {
    font-size: 0.875rem !important;
  }
}
.breadcrumbs-wrapper {
  position: relative;
}
.breadcrumbs-wrapper .breadcrumb {
  position: absolute;
  top: 13.5vh;
  left: 14vw;
  z-index: 40;
  color: #FFF !important;
}
@media (max-width: 576px) {
  .breadcrumbs-wrapper .breadcrumb {
    position: absolute;
    top: 8rem;
    left: 0;
  }
}
.breadcrumbs-wrapper .breadcrumb *,
.breadcrumbs-wrapper .breadcrumb *::before,
.breadcrumbs-wrapper .breadcrumb *::after {
  color: inherit !important;
}
.breadcrumbs-wrapper .breadcrumb__item, .breadcrumbs-wrapper .breadcrumb__link, .breadcrumbs-wrapper .breadcrumb__list {
  color: inherit !important;
}

.textpage {
  margin-bottom: 9rem;
  position: relative;
  overflow-x: hidden;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  height: 65rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 576px) {
  .textpage {
    margin-bottom: 0;
  }
}
.textpage__wallpaper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.textpage__wallpaper-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}
.textpage__wallpaper-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.textpage__content {
  position: relative;
  max-width: 1350px;
  width: 100%;
  margin: 37rem auto;
  padding: 0 10rem;
  z-index: 3;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.textpage__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.5rem;
  font-size: 1.4rem;
}
.textpage__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 2rem;
  padding-right: 1rem;
  border-right: 3px solid #BA9470;
}
.textpage__date-day {
  font-weight: 600;
  font-size: 1.8rem;
}
.textpage__date-time {
  font-weight: 300;
  font-size: 2.7rem;
}
.textpage__location {
  font-size: 2rem;
  text-align: left;
}
.textpage__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.textpage__title-frame {
  height: 7.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.textpage__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.textpage__type {
  font-size: 2rem;
  font-weight: normal;
}
.textpage__name {
  font-family: "KyivTypeSerif", sans-serif;
  font-size: 4rem;
  font-weight: 500;
}
.textpage__button {
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 500;
  background-color: #BA9470;
  color: #59301A;
  font-size: 1.6rem;
  border: none;
  height: 4.9rem;
  width: 20rem;
  border-radius: 1rem;
  cursor: pointer;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-right: 12rem;
  margin-top: -8rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .textpage__button {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    display: block;
    margin-top: 10rem;
    margin-right: 0;
  }
}
.textpage__carousel {
  width: 100%;
  height: 65rem;
  position: relative;
}
.textpage__slide {
  width: 100%;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.textpage__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 58rem;
  right: 3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  gap: 2rem;
}
.textpage__progress {
  position: absolute;
  top: 58rem !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9;
}
@media (max-width: 576px) {
  .textpage {
    border-radius: 0;
    height: 105vh;
  }
  .textpage__carousel {
    height: 100vh;
  }
  .textpage__slide {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .textpage__wallpaper {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .textpage__wallpaper-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
  }
  .textpage__wallpaper-overlay {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.4)));
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    border-bottom-left-radius: 5rem;
    border-bottom-right-radius: 5rem;
  }
  .textpage__content {
    padding: 2rem;
    margin-top: 43vh;
    margin-bottom: 4rem;
    gap: 3rem;
  }
  .textpage__date-day {
    font-size: 1.2rem;
  }
  .textpage__date-time {
    font-size: 1.6rem;
  }
  .textpage__location {
    font-size: 1.6rem;
  }
  .textpage__title-frame {
    height: 4.7rem;
  }
  .textpage__type {
    font-size: 1.6rem;
  }
  .textpage__name {
    font-size: 2.8rem;
  }
  .textpage__info {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  .textpage__title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1rem;
  }
  .textpage__navigation {
    top: auto;
    bottom: 5rem;
    right: 2rem;
    gap: 2.5rem;
  }
  .textpage__progress {
    top: 79rem !important;
    left: 1rem;
    right: 1rem;
    height: 12px;
    gap: 8px;
  }
}

.boilerplate-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  color: #59301A;
  gap: 5rem;
  margin-bottom: 13rem;
  padding: 0 16rem;
}
@media (max-width: 576px) {
  .boilerplate-wrapper {
    padding: 0 2rem;
    margin-bottom: 10rem;
  }
}

h1 {
  font-size: 3.6rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 576px) {
  h3 {
    font-size: 1.8rem;
  }
}

.boilerplate__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
}

.boilerplate__pics {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.boilerplate__pics .boilerplate__pics img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media (max-width: 576px) {
  .boilerplate__pics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.boilerplate__framed {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FFF;
  height: 23rem;
  width: 103rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .boilerplate__framed {
    margin-left: 0;
    height: 57rem;
    width: 35rem;
  }
}
.boilerplate__framed p {
  font-size: 1.6rem;
  padding: 0 6.8rem;
  font-style: italic;
}
@media (max-width: 576px) {
  .boilerplate__framed p {
    padding: 4rem 4rem 2rem 6rem;
  }
}
.boilerplate__framed .decoration-up {
  position: absolute;
  top: 0;
  left: 0;
}
.boilerplate__framed .decoration-down {
  position: absolute;
  top: 16rem;
  right: 0;
}
@media (max-width: 576px) {
  .boilerplate__framed .decoration-down {
    top: 50rem;
  }
}

.boilerplate__content ul {
  padding-left: 1rem;
  margin-bottom: 4rem;
}
.boilerplate__content ul li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  list-style: inside;
}
@media (max-width: 576px) {
  .boilerplate__content ul li {
    margin-bottom: 2rem;
  }
}
.boilerplate__content ol {
  list-style: none;
  padding-left: 1rem;
  margin-bottom: 4rem;
}
.boilerplate__content ol li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}
@media (max-width: 576px) {
  .boilerplate__content ol li {
    margin-bottom: 2rem;
  }
}
.boilerplate__content ol li::before {
  content: "1.";
  position: absolute;
  left: 0;
  font-weight: 400;
  color: #59301A;
}

.boilerplate-photos {
  text-align: center;
  font-size: 1.6rem;
  font-style: italic;
  color: #BA9470;
}
.boilerplate-photos img {
  width: 100%;
  height: auto;
  display: block;
}
.boilerplate-photos span {
  display: inline-block;
  margin-top: 1rem;
}

.boilerplate__button {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background-color: #59301A;
  color: #FFF;
  font-size: 1.6rem;
  border: none;
  height: 4.9rem;
  width: 20rem;
  border-radius: 1rem;
  cursor: pointer;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .boilerplate__button {
    display: block;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-top: -1rem;
  }
}

.custom-audio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 64.2rem;
  height: 5rem;
  gap: 3rem;
  background: var(--brand-beige, #f7f5ef);
  padding: 2rem;
  border: 1px solid #ba9470;
}
.custom-audio svg {
  width: 2.5rem !important;
  height: auto !important;
}
.custom-audio__play {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #59301A;
}
.custom-audio__progress {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  accent-color: #59301A;
}
.custom-audio__time {
  font-size: 1.6rem;
  color: #FFFFFF;
  white-space: nowrap;
}

.custom-audio__progress {
  -webkit-appearance: none;
  width: 21.3rem;
  height: 0.2rem;
  background: #ccc;
  border-radius: 0.1rem;
  cursor: pointer;
  margin: 0 0.8rem;
}

/* WebKit: стили для трека */
.custom-audio__progress::-webkit-slider-runnable-track {
  height: 0.2rem;
  background: #59301A;
  border-radius: 0.1rem;
}

/* WebKit: стили для ползунка */
.custom-audio__progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: #59301A;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.4rem;
  -webkit-box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* Firefox: трек */
.custom-audio__progress::-moz-range-track {
  height: 0.2rem;
  background: #59301A;
  border-radius: 0.1rem;
}

/* Firefox: ползунок */
.custom-audio__progress::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background: #59301A;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.custom-audio__volume-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 12rem;
  padding: 0 0.5rem 0 2rem;
}

.custom-audio__mute {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #59301A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom-audio__volume {
  -webkit-appearance: none;
  width: 4.4rem;
  height: 0.2rem;
  background: #ccc;
  border-radius: 0.1rem;
  cursor: pointer;
}

/* WebKit: трек */
.custom-audio__volume::-webkit-slider-runnable-track {
  height: 0.2rem;
  background: #59301A;
  border-radius: 0.1rem;
}

/* WebKit: ползунок */
.custom-audio__volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: #59301A;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -0.4rem;
  -webkit-box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* Firefox: трек */
.custom-audio__volume::-moz-range-track {
  height: 0.2rem;
  background: #59301A;
  border-radius: 0.1rem;
}

/* Firefox: ползунок */
.custom-audio__volume::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background: #59301A;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media (max-width: 576px) {
  .custom-audio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 7.4rem;
    width: 34.8rem;
    gap: 1rem;
  }
  .custom-audio .custom-audio__progress {
    width: 100%;
    margin-bottom: 0.75rem;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .custom-audio .custom-audio__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .custom-audio .custom-audio__controls .custom-audio__play {
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 0;
  }
  .custom-audio .custom-audio__controls .custom-audio__time {
    margin-left: 1.5rem;
    margin-right: auto;
  }
  .custom-audio .custom-audio__controls .custom-audio__volume-wrapper {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0;
    gap: 1.5rem;
  }
}
.custom-audio__play,
.custom-audio__pause {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  line-height: 0;
}

.custom-audio__play svg,
.custom-audio__pause svg {
  width: 1.5rem !important;
  height: auto !important;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media (max-width: 576px) {
  .custom-audio__play svg,
  .custom-audio__pause svg {
    width: 1.5rem !important;
  }
}
.unions-page {
  margin-top: 3.5rem;
}
.unions-page .breadcrumbs-container .breadcrumb {
  -webkit-transform: translateX(-16rem);
  -ms-transform: translateX(-16rem);
  transform: translateX(-16rem);
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}
@media (max-width: 576px) {
  .unions-page .breadcrumbs-container .breadcrumb {
    -webkit-transform: translate(0rem);
    -ms-transform: translate(0rem);
    transform: translate(0rem);
    margin-bottom: 1.5rem;
    margin-top: -1.5rem;
  }
}
.unions-page .section-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 4.5rem;
}
.unions-page .section-header p {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.05em;
  color: var(--brand-brown);
}
@media (max-width: 576px) {
  .unions-page .section-header {
    padding: 0 2rem;
    gap: 2.7rem;
  }
}
@media (max-width: 576px) {
  .unions-page .breadcrumbs {
    padding: 0 2rem;
  }
}
@media (max-width: 576px) {
  .unions-page {
    padding: 6rem 0;
  }
}

.section-content--muted-icons .creative-unions__tab .tab-icon {
  background-color: #D5BDA7 !important;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.section-content--muted-icons .creative-unions__tab:hover:nth-child(1) .tab-icon {
  background-color: #919A58 !important;
}
.section-content--muted-icons .creative-unions__tab:hover:nth-child(2) .tab-icon {
  background-color: #7398AE !important;
}
.section-content--muted-icons .creative-unions__tab:hover:nth-child(3) .tab-icon {
  background-color: #D48066 !important;
}
.section-content--muted-icons .creative-unions__tab:hover:nth-child(4) .tab-icon {
  background-color: #56A59A !important;
}
.section-content--muted-icons .creative-unions__tab:hover:nth-child(5) .tab-icon {
  background-color: #A476A8 !important;
}
.section-content--muted-icons .creative-unions__tab:hover:nth-child(6) .tab-icon {
  background-color: #88C59A !important;
}

.union-detail {
  margin-top: 3.5rem;
}
.union-detail .breadcrumbs-container .breadcrumb {
  -webkit-transform: translateX(-16rem);
  -ms-transform: translateX(-16rem);
  transform: translateX(-16rem);
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .union-detail .breadcrumbs-container .breadcrumb {
    -webkit-transform: translate(-2rem, -1rem);
    -ms-transform: translate(-2rem, -1rem);
    transform: translate(-2rem, -1rem);
    margin-bottom: 2rem;
  }
}
.union-detail__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4.1rem;
  gap: 2rem;
}
@media (max-width: 576px) {
  .union-detail__top {
    gap: 1rem;
    padding-right: 2rem;
  }
  .union-detail__content {
    padding-right: 2rem;
  }
}
.union-detail__icon {
  background: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 5rem;
  min-height: 5rem;
  max-height: 5rem;
  max-width: 5rem;
  border-radius: 50%;
}
/* .union-detail__icon img {
  width: 1.7rem;
  height: 2.2rem;
} */
.union-detail__title {
  font-family: "KyivTypeSerif", sans-serif;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  color: var(--theme-color);
}
@media (max-width: 576px) {
  .union-detail__title {
    font-size: 2rem;
    line-height: 140%;
  }
}
.union-detail-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
  margin-bottom: 3.4rem;
  padding: 0;
}
@media (max-width: 576px) {
  .union-detail-tabs {
    overflow-y: scroll;
    margin-bottom: 3rem;
    gap: 3.4rem;
  }
}
.union-detail-tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.union-detail__tab {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  text-transform: uppercase;
  border: none;
  background: none;
  color: var(--brand-beige);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 0;
  cursor: pointer;
}
.union-detail__tab:hover {
  opacity: 0.6;
}
@media (max-width: 576px) {
  .union-detail__tab:hover {
    opacity: 1;
  }
}
.union-detail__tab.active {
  color: var(--brand-brown);
}
@media (max-width: 576px) {
  .union-detail__wrapper {
    margin-right: 2rem;
  }
}
.union-detail__content {
  font-size: 1.6rem;
  line-height: 160%;
  color: var(--brand-brown);
}
.union-detail__content ul:not(.documents-list),
.union-detail__content ol:not(.documents-list) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-left: 2.5rem;
}
.union-detail__content ul li:not(.documents-list__item) {
  list-style-type: disc;
}
.union-detail__content b {
  font-weight: 500;
}
.union-detail__content a:not(.documents-list__link) {
  color: inherit;
}
.union-detail__content a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.union-detail__content a:hover {
  opacity: 0.6;
}
@media (max-width: 576px) {
  .union-detail {
    margin-top: 6.1rem;
  }
}

.documents-list {
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3.3rem;
}
.documents-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 576px) {
  .documents-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.documents-list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
.documents-list__body p {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: var(--brand-brown);
  max-width: 75.6rem;
}
@media (max-width: 576px) {
  .documents-list__body p {
    font-size: 1.4rem;
    padding-right: 3rem;
  }
}
.documents-list__link {
  padding: 1.5rem 4.5rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: var(--light-color);
  background: var(--theme-color);
}
@media (max-width: 576px) {
  .documents-list__link {
    width: 100%;
    text-align: center;
  }
}

.document-list__icon svg {
  width: 3.2rem;
  height: 3.2rem;
}
@media (max-width: 576px) {
  .document-list__icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.document-list__icon svg path {
  fill: var(--theme-color);
}

.documents-page {
  margin-top: 5rem;
}
.documents-page .breadcrumbs-docs .breadcrumb {
  -webkit-transform: translateX(-16rem);
  -ms-transform: translateX(-16rem);
  transform: translateX(-16rem);
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .documents-page .breadcrumbs-docs .breadcrumb {
    -webkit-transform: translate(-2rem);
    -ms-transform: translate(-2rem);
    transform: translate(-2rem);
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .documents-page {
    margin-top: 6rem;
    padding: 2rem;
  }
}

.afisha-page {
  margin-top: 5rem;
}
.afisha-page .breadcrumbs-container .breadcrumb {
  -webkit-transform: translateX(-16rem);
  -ms-transform: translateX(-16rem);
  transform: translateX(-16rem);
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .afisha-page .breadcrumbs-container .breadcrumb {
    -webkit-transform: translate(-2rem, -1rem);
    -ms-transform: translate(-2rem, -1rem);
    transform: translate(-2rem, -1rem);
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .afisha-page {
    margin-top: 6rem;
    padding-right: 2rem;
  }
}
.afisha-page__filter {
  padding-bottom: 3.9rem;
  border-bottom: 1px solid var(--brand-beige);
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .afisha-page__filter {
    padding-bottom: 2.4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .afisha-page .section-header {
    margin-bottom: 2.4rem;
  }
}
.afisha-page__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 576px) {
  .afisha-page__top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}
.afisha-page-tags {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 2.8rem;
}
@media (max-width: 576px) {
  .afisha-page-tags {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.3rem;
  }
}
.afisha-page__tag {
  cursor: pointer;
  padding: 1rem 4rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 120%;
  color: var(--light-color);
  border: unset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.afisha-page__tag:hover {
  opacity: 0.6;
}
.afisha-page__tag--red {
  background: var(--brand-dark-red);
}
.afisha-page__tag--dark-blue {
  background: var(--brand-dark-blue);
}
.afisha-page__tag--green {
  background: var(--brand-dark-green);
}
.afisha-page__tag--dark-turquoise {
  background: var(--brand-dark-turquoise);
}
@media (max-width: 576px) {
  .afisha-page__tag {
    font-size: 1.4rem;
    padding: 1rem 2.2rem;
  }
}
.afisha-page__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 3.9rem;
}
@media (max-width: 576px) {
  .afisha-page__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem;
    gap: 3.5rem;
  }
}
.afisha-page__show {
  display: block;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .afisha-page .recent-events-card {
    width: 100%;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .afisha-page .recent-events-card__label {
    width: 80vw;
    text-align: left;
    line-height: 120%;
    padding-left: 5rem;
  }
}

@media (max-width: 576px) {
  .afisha-page__content .recent-events-card__image {
    height: 20rem;
    width: 34.7rem;
  }

  .afisha-page__content .recent-events-card__image-wrapper {
    height: 20rem;
    width: 34.7rem;
  }
}

.afisha-content {
  margin-top: 9.7rem;
  margin-bottom: 9rem;
}
.afisha-content .breadcrumbs-afisha {
  position: relative;
}
.afisha-content .breadcrumbs-afisha .breadcrumb {
  position: absolute;
  top: 3rem;
  left: 25rem;
  z-index: 40;
  color: #FFF !important;
}
@media (max-width: 1900px) {
  .afisha-content .breadcrumbs-afisha .breadcrumb {
    left: 8rem;
  }
}
@media (max-width: 1350px) {
  .afisha-content .breadcrumbs-afisha .breadcrumb {
    left: -4rem;
  }
}
@media (max-width: 576px) {
  .afisha-content .breadcrumbs-afisha .breadcrumb {
    position: absolute;
    top: 8rem;
    left: 0;
  }
}
.afisha-content .breadcrumbs-afisha .breadcrumb *,
.afisha-content .breadcrumbs-afisha .breadcrumb *::before,
.afisha-content .breadcrumbs-afisha .breadcrumb *::after {
  color: inherit !important;
}
.afisha-content .breadcrumbs-afisha .breadcrumb__item, .afisha-content .breadcrumbs-afisha .breadcrumb__link, .afisha-content .breadcrumbs-afisha .breadcrumb__list {
  color: inherit !important;
}
@media (max-width: 576px) {
  .afisha-content {
    margin-bottom: 4.2rem;
    margin-top: 0;
  }
}
.afisha-content__inner {
  width: 100%;
  height: 53rem;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
.afisha-content__inner .main-event__slide {
  height: 100%;
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__slide {
    height: 100vh;
  }
}
.afisha-content__inner .main-event__content {
  font-family: "Montserrat", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 27rem auto;
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__content {
    margin-top: auto;
    margin-bottom: 5vh;
  }
}
.afisha-content__inner .main-event__title {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.afisha-content__inner .main-event__title-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 46.7rem;
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__title-body svg {
    width: 4.7rem;
    height: 4.9rem;
  }
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__title-body {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
  }
}
.afisha-content__inner .main-event__buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5rem;
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__buy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin-right: 0;
  }
}
.afisha-content__inner .main-event__button {
  cursor: pointer;
  margin-left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .afisha-content__inner .main-event__button {
    margin-top: 0;
  }
}
@media (max-width: 576px) {
  .afisha-content__inner {
    height: 100vh;
  }
}
.afisha-content__inner .main-event__date {
  border-right: 3px solid var(--theme-color);
}
.afisha-content__inner .main-event__title-body svg path {
  fill: var(--theme-color);
}
.afisha-content__inner .main-event__button {
  background: var(--theme-color);
  color: #FFFFFF;
}
.afisha-content .breadcrumbs {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: 14vh;
  left: 23vw;
  z-index: 2;
  color: var(--light-color);
}
@media (max-width: 576px) {
  .afisha-content .breadcrumbs {
    left: 2rem;
    top: 7.6rem;
  }
}
.afisha-about {
  padding: 0 16rem;
  margin-bottom: 8.6rem;
}
@media (max-width: 576px) {
  .afisha-about {
    padding: 0;
    margin-bottom: 4.8rem;
  }
}
.afisha-about__info {
  margin-bottom: 6.6rem;
}
.afisha-about__info .title {
  margin-bottom: 4.5rem;
}
@media (max-width: 576px) {
  .afisha-about__info .title {
    margin-bottom: 3rem;
  }
}
.afisha-about__info p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 0.05em;
}
@media (max-width: 576px) {
  .afisha-about__info {
    margin-bottom: 4.9rem;
    padding: 0 2rem;
  }
}
.afisha-about__title {
  margin-bottom: 3.5rem;
}
@media (max-width: 576px) {
  .afisha-about__title {
    margin-bottom: 2rem;
    padding: 0 2rem;
  }
}
.afisha-about .video {
  margin-bottom: 4rem;
}
.afisha-about .video img, .afisha-about .video iframe, .afisha-about .video video {
  border-radius: 20px;
  max-height: 58rem;
  min-height: 58rem;
}
@media (max-width: 576px) {
  .afisha-about .video img, .afisha-about .video iframe, .afisha-about .video video {
    max-height: 25rem;
    min-height: 25rem;
  }
}
@media (max-width: 576px) {
  .afisha-about .video {
    margin-bottom: 3rem;
    padding: 0 2rem;
  }
}
.afisha-about .video__play {
  background: var(--theme-color);
  width: 6rem;
  height: 6rem;
}
@media (max-width: 576px) {
  .afisha-about .video__play {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.afisha-about .video__play img {
  max-height: 1.8rem;
  min-height: 1.5rem;
}
.afisha-about__swiper .swiper-wrapper {
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .afisha-about__swiper .swiper-wrapper {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.afisha-about__slide {
  max-width: 50rem;
  height: 27rem;
  overflow: hidden;
  border-radius: 20px;
}
.afisha-about__slide img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.afisha-about__slide:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55.91%, rgba(212, 128, 102, 0)), color-stop(99.76%, var(--theme-color)));
  background: linear-gradient(180deg, rgba(212, 128, 102, 0) 55.91%, var(--theme-color) 99.76%);
  opacity: 0.8;
  border-radius: 20px;
}
@media (max-width: 576px) {
  .afisha-about__slide {
    height: 14.8rem;
    max-width: 27.4rem;
    min-width: 27.4rem;
  }
  .afisha-about__slide:first-child {
    margin-left: 2rem;
  }
  .afisha-about__slide:last-child {
    margin-right: 2rem;
  }
}
.afisha-about__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 0 2rem;
}
.afisha-about__text {
  display: block;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 4rem;
  bottom: 2.7rem;
  font-weight: 600;
  font-size: 2rem;
  line-height: 120%;
  color: var(--light-color);
  max-width: 38rem;
}
.afisha-about__text:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 0;
  height: 0.2rem;
  width: 6.8rem;
}
@media (max-width: 576px) {
  .afisha-about__text {
    max-width: 21rem;
    font-size: 1.6rem;
    left: 2rem;
    bottom: 0.8rem;
  }
}

.nav-btn--border {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
}
.nav-btn--border svg {
  width: 1.2rem;
  height: 2rem;
}
.nav-btn--border svg path {
  stroke: var(--theme-color);
}

.gallery-page {
  margin-top: 5rem;
}
.gallery-page .breadcrumbs-container .breadcrumb {
  -webkit-transform: translateX(-16rem);
  -ms-transform: translateX(-16rem);
  transform: translateX(-16rem);
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .gallery-page .breadcrumbs-container .breadcrumb {
    -webkit-transform: translate(-2rem, -1rem);
    -ms-transform: translate(-2rem, -1rem);
    transform: translate(-2rem, -1rem);
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  .gallery-page {
    margin-top: 6rem;
    padding-right: 2rem;
  }
}
.gallery-page__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem;
  margin-bottom: 2.6rem;
}
.gallery-page__tab {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--brand-beige);
  border: unset;
  background: unset;
  padding: 0;
  -webkit-transition: color 0.3s, font-weight 0.3s;
  transition: color 0.3s, font-weight 0.3s;
}
.gallery-page__tab::before {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 10.1rem;
  height: 0.2rem;
  background: var(--second);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 576px) {
  .gallery-page__tab::before {
    width: 3.7rem;
  }
}
.gallery-page__tab[aria-selected=true] {
  color: var(--second);
  font-weight: 600;
}
.gallery-page__tab[aria-selected=true]::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.gallery-page__tab[aria-selected=true]:hover {
  opacity: 0.6;
}
.gallery-page__tab .mobile {
  display: none;
}
@media (max-width: 576px) {
  .gallery-page__tab .mobile {
    display: block;
  }
  .gallery-page__tab .desktop {
    display: none;
  }
}
.gallery-page__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 576px) {
  .gallery-page__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.gallery-page__img {
  position: relative;
  height: 20rem;
}
.gallery-page__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-page__img span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 2rem;
  left: 2.3rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 120%;
  color: var(--light-color);
  z-index: 1;
}
.gallery-page__img span svg {
  width: 2rem;
  height: 2rem;
}
.gallery-page__img span:before {
  content: "";
  position: absolute;
  top: -0.6rem;
  left: 0;
  width: 6.8rem;
  height: 0.2rem;
  background: var(--brand-yellow);
}
.gallery-page__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 576px) {
  .gallery-page__info {
    gap: 3rem;
  }
}
.gallery-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6rem;
}
@media (max-width: 576px) {
  .gallery-page__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.2rem;
  }
}
.gallery-page__text {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 120%;
  color: var(--brand-beige);
  max-width: 31.6rem;
}
.gallery-page .video {
  height: 20rem;
}
@media (max-width: 576px) {
  .gallery-page .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 3rem;
  }
}
.gallery-page__content--house .gallery-page__img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55.91%, rgba(186, 148, 112, 0)), color-stop(99.76%, #ba9470));
  background: linear-gradient(180deg, rgba(186, 148, 112, 0) 55.91%, #ba9470 99.76%);
  opacity: 0.8;
  z-index: 0;
}

.search-result {
  margin-top: 5rem;
}
@media (max-width: 576px) {
  .search-result {
    margin-right: 2rem;
  }
}
.search-result__body {
  position: relative;
  width: 100%;
  margin-bottom: 1.7rem;
}
@media (max-width: 576px) {
  .search-result__body {
    margin-bottom: 1.1rem;
  }
}
.search-result__input {
  width: 100%;
  padding: 1.4rem 0;
  border: none;
  border-bottom: 1px solid var(--second);
  background: none;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 120%;
  color: var(--second);
  -webkit-appearance: none;
  border-radius: 0;
}
.search-result__input:focus {
  outline: none;
}
@media (max-width: 576px) {
  .search-result__input {
    font-size: 2.4rem;
  }
}
.search-result__reset {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  background: none;
}
.search-result__reset svg {
  width: 2.2rem;
  height: 2.2rem;
}
@media (max-width: 576px) {
  .search-result__reset svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.search-result__text {
  display: inline-block;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  color: var(--brand-beige);
  margin-bottom: 5.8rem;
}
@media (max-width: 576px) {
  .search-result__text {
    margin-bottom: 3.5rem;
    font-size: 1.4rem;
  }
}
.search-result__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}
.search-result__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  gap: 2.2rem;
  padding: 3.3rem 4rem;
  color: var(--second);
  border: 1px solid var(--second);
}
.search-result__card:hover {
  color: var(--light-color);
  background: var(--brand-green);
}
.search-result__title {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 120%;
}
.search-result__info {
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: 0.05em;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  font-family: "KyivTypeSerif", sans-serif;
  background-color: var(--main);
  color: var(--second);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.bg-tinted {
  background-color: #ECE0D4;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.galleries,
.creative-unions,
.recent-events {
  position: relative;
  z-index: 0;
}
.galleries::before,
.creative-unions::before,
.recent-events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  z-index: -1;
}

.galleries::before {
  background-color: #ECE0D4;
}

.creative-unions::before {
  background-color: #F1E7DD;
}

.recent-events::before {
  background-color: #ECE0D4;
}

.dis-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.fancybox__caption {
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 576px) {
  .fancybox__caption {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .fancy-button {
    margin-top: 45vh !important;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.pagination__item:disabled {
  cursor: default !important;
}
/*# sourceMappingURL=main.css.map */