html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

address {
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans';
  src: local('OpenSans-Regular'),
    url('../fonts/OpenSans-Regular.woff2') format('woff2'),
    url('../fonts/OpenSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenSans';
  src: local('OpenSans-SemiBold'),
    url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
    url('../fonts/OpenSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'OpenSans';
  src: local('OpenSans-Bold'),
    url('../fonts/OpenSans-Bold.woff2') format('woff2'),
    url('../fonts/OpenSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* glob */
:root {
  --amethyst-color: #9d5cd0;
  --biloba-flower-color: #d1a9f0;
  --heliotrope-color: #c283f3;
  --royal-purple-color: #7943a4;
  --black-color: #000;
  --title-color: #333;
  --descr-color: #333;
}

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

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.page {
  position: relative;
  font-family: 'OpenSans', sans-serif;
  font-weight: 400;
  min-width: 320px;
}

.container {
  margin: 0 auto;
  max-width: 1700px;
  padding: 0 50px;
}

.section-offset {
  padding: 80px 0 77px;
}

.section-title {
  margin: 0;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 48px;
  line-height: 65px;
  color: var(--title-color);
}

.swiper-slide {
  height: auto;
}

.simple-link {
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  outline: none;
  color: var(--amethyst-color);
  -webkit-transition: color .3s, background-color .3s, border-color .3s;
  transition: color .3s, background-color .3s, border-color .3s;
}

.simple-link:focus-visible {
  color: #fff;
  background-color: var(--amethyst-color);
}

.simple-link:hover {
  border-color: var(--amethyst-color);
  color: var(--amethyst-color);
  background-color: transparent;
}

.simple-link:active {
  color: var(--royal-purple-color);
  border-color: var(--royal-purple-color);
}

.modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  top: 0;
  padding: 50px;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, .5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility .4s, opacity .4s;
  transition: visibility .4s, opacity .4s;
  z-index: 99999;
}

.modal__box {
  display: none;
  position: relative;
  margin: auto;
  max-width: 900px;
  width: 65%;
  min-width: 774px;
  height: 500px;
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.8);
  z-index: 10;
  -webkit-transition: -webkit-transform .6s;
  transition: -webkit-transform .6s;
  transition: transform .6s;
  transition: transform .6s, -webkit-transform .6s;
}

.modal__close-btn {
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  outline: none;
  color: var(--black-color);
  -webkit-transition: color .3s;
  transition: color .3s;
}

.modal__close-btn:focus-visible {
  color: var(--amethyst-color);
}

.modal__close-btn:hover {
  color: var(--amethyst-color);
}

.modal__close-btn:active {
  color: var(--royal-purple-color);
}

.close-btn-line {
  position: absolute;
  display: block;
  width: 21px;
  height: 1px;
  background-color: currentColor;
}

.close-btn-line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close-btn-line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__img {
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal__info {
  -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;
  padding: 50px;
  width: 55%;
  height: 100%;
}

.modal__descr-wrap {
  max-height: 300px;
}

.modal__descr-wrap .simplebar-track.simplebar-vertical {
  margin: 0;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}

.modal__descr-wrap .simplebar-scrollbar:before {
  background-color: var(--amethyst-color);
}

.modal__descr-wrap .simplebar-track.simplebar-vertical {
  background-color: transparent;
}

.modal__descr-wrap .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0;
}

.modal__descr-wrap .simplebar-track.simplebar-vertical {
  background-color: #cacaca;
}

.modal__title {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: var(--title-color);
}

.modal__subtitle {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--title-color);
}

.modal__date {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #999;
}

.modal__descr {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal.open .modal__box {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal__box--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stop-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  padding-right: 17px;
}

.js-focus-visible:focus:not(.focus-visible) {
  outline: none;
}

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header__top {
  padding: 30px 0 27px;
  background-color: var(--black-color);
}

.header__top-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.burger,
.search-open-btn,
.search-close-btn,
.mobile-search {
  display: none;
}

.header__logo {
  outline: none;
}

.header__logo:focus-visible .logo-img {
  outline: 1px solid #fff;
  outline-offset: 8px;
}

.nav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(1247 / 1600 * 100%);
}

.nav__list {
  padding-bottom: 5px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: max(550px, 60.4%);
}

.nav__link {
  position: relative;
  outline: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  -webkit-transition: color .3s, background-color .3s;
  transition: color .3s, background-color .3s;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -6px;
  bottom: -3px;
  left: -6px;
  background-color: var(--royal-purple-color);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.nav__link:focus-visible::before {
  opacity: 1;
}

.nav__link:hover::before {
  opacity: 0;
}

.nav__link:active::before {
  opacity: 0;
}

.nav__link-text {
  position: relative;
  z-index: 10;
}

.nav__link:hover {
  color: var(--heliotrope-color);
}

.nav__link:active {
  color: var(--royal-purple-color);
}

.login-btn {
  position: relative;
  padding-bottom: 4px;
  outline: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  -webkit-transition: color .3s, background-color 0.3s;
  transition: color .3s, background-color 0.3s;
}

.login-btn::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 41%;
  left: 0;
  width: 5px;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  z-index: 10;
}

@-moz-document url-prefix() {
  .login-btn::before {
    top: 43%;
  }
}

.login-btn:hover::before {
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
}

.login-btn::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -8px;
  bottom: 0;
  left: -8px;
  background-color: var(--royal-purple-color);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.login-btn:focus-visible::after {
  opacity: 1;
}

.login-btn:hover::after {
  opacity: 0;
}

.login-btn:active::after {
  opacity: 0;
}

.login-btn:hover {
  color: var(--heliotrope-color);
}

.login-btn:active {
  color: var(--royal-purple-color);
}

.login-btn svg {
  position: relative;
  margin-right: 1px;
  fill: currentColor;
  -webkit-transition: fill .3s;
  transition: fill .3s;
  z-index: 10;
}

.login-btn__text {
  position: relative;
  z-index: 10;
}

.header__bottom {
  padding: 22px 0 20px;
  background-color: rgba(0, 0, 0, 0.5);
}

.header__bottom-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.art-nav {
  width: max(720px, 65.2%);
}

.art-nav__list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.art-nav__btn {
  position: relative;
  padding: 1px 20px 2px 5px;
  -webkit-transform: translateX(-5px);
  transform: translateX(-5px);
  outline: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  background-color: transparent;
  -webkit-transition: color .3s, background-color 0.3s;
  transition: color .3s, background-color 0.3s;
}

.art-nav__btn:focus-visible {
  color: #fff;
  background-color: var(--royal-purple-color);
}

.art-nav__btn:hover {
  color: var(--amethyst-color);
  background-color: transparent;
}

.art-nav__btn:active {
  color: var(--royal-purple-color);
  background-color: transparent;
}

.art-nav__btn::before {
  content: '';
  position: absolute;
  display: block;
  right: 10px;
  top: 16px;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  background-color: currentColor;
}

.art-nav__btn::after {
  content: '';
  position: absolute;
  display: block;
  right: 5px;
  top: 16px;
  width: 7px;
  height: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  background-color: currentColor;
}

.art-nav__item.art-nav__item--open .art-nav__btn::before {
  -webkit-transform: translate(5px, -3px) rotate(45deg);
  transform: translate(5px, -3px) rotate(45deg);
}

.art-nav__item.art-nav__item--open .art-nav__btn::after {
  -webkit-transform: translate(-5px, -3px) rotate(-45deg);
  transform: translate(-5px, -3px) rotate(-45deg);
}

.art-nav__item {
  position: relative;
}

.art-nav__dropdown {
  position: absolute;
  left: 0;
  top: 48px;
  padding: 40px;
  width: 300px;
  max-height: 300px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity .3s, visibility .3s, -webkit-transform .3s;
  transition: opacity .3s, visibility .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s, visibility .3s;
  transition: transform .3s, opacity .3s, visibility .3s, -webkit-transform .3s;
}

@-moz-document url-prefix() {
  .art-nav__dropdown {
    top: 49px;
  }
}

.art-nav__item.art-nav__item--open .art-nav__dropdown {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.art-nav__dropdown-item:not(:last-child) {
  margin-bottom: 20px;
}

.art-nav__dropdown-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.art-nav__dropdown-item--tintoretto {
  background-image: url('../img/dropdown/tintoretto.jpg');
}

.art-nav__dropdown-item--friedrich {
  background-image: url('../img/dropdown/friedrich.jpg');
}

.art-nav__dropdown-item--leonardo {
  background-image: url('../img/dropdown/leonardo.jpg');
}

.art-nav__dropdown-item--verrocchio {
  background-image: url('../img/dropdown/verrocchio.jpg');
}

.art-nav__dropdown-item--mone {
  background-image: url('../img/dropdown/mone.jpg');
}

.art-nav__dropdown-item--sisley {
  background-image: url('../img/dropdown/sisley.jpg');
}

.art-nav__dropdown-item--mane {
  background-image: url('../img/dropdown/mane.jpg');
}

.art-nav__dropdown-item--renuar {
  background-image: url('../img/dropdown/renuar.jpg');
}

.art-nav__dropdown-item--vangog {
  background-image: url('../img/dropdown/vangog.jpg');
}

.art-nav__dropdown-item--sezan {
  background-image: url('../img/dropdown/sezan.jpg');
}

.art-nav__dropdown-item--gogen {
  background-image: url('../img/dropdown/gogen.jpg');
}

.art-nav__dropdown-item--sera {
  background-image: url('../img/dropdown/sera.jpg');
}

.art-nav__dropdown-item--kandinskij {
  background-image: url('../img/dropdown/kandinskij.jpg');
}

.art-nav__dropdown-item--marinetti {
  background-image: url('../img/dropdown/marinetti.jpg');
}

.art-nav__dropdown-item--malewicz {
  background-image: url('../img/dropdown/malewicz.jpg');
}

.art-nav__dropdown-item--picasso {
  background-image: url('../img/dropdown/picasso.jpg');
}

.art-nav__dropdown-item--carra {
  background-image: url('../img/dropdown/carra.jpg');
}

.art-nav__dropdown-item--pratella {
  background-image: url('../img/dropdown/pratella.jpg');
}

.art-nav__dropdown-item--severini {
  background-image: url('../img/dropdown/severini.jpg');
}

.art-nav__dropdown-item--balla {
  background-image: url('../img/dropdown/balla.jpg');
}

.art-nav__dropdown-link {
  position: relative;
  display: block;
  padding: 9px 14px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

.art-nav__dropdown-link:focus-visible {
  outline: none;
  border-color: var(--amethyst-color);
}

.art-nav__dropdown-link:hover {
  border-color: var(--amethyst-color);
}

.art-nav__dropdown-link::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(194, 131, 243, 0.4);
  opacity: 0;
  z-index: 5;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.art-nav__dropdown-link:active {
  outline: none;
  border-color: rgba(194, 131, 243, 0.4);
}

.art-nav__dropdown-link:active::after {
  opacity: 1;
}

.simplebar-track.simplebar-vertical {
  margin: 40px 19px 40px 0;
  width: 2px;
  background-color: #000;
}

.simplebar-scrollbar:before {
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 0;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 0;
  bottom: 0;
}

.desktop-search {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: min(251px, 20%);
}

.desktop-search__btn {
  display: block;
  margin-right: 9px;
  padding-top: 1px;
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6.8678' height='1.71695' transform='matrix(-0.718931 0.695081 0.718931 0.695081 4.9375 15.6534)' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.0967 18C7.53016 18 3.99668 14.3229 3.99668 10C3.99668 5.67715 7.53016 2 12.0967 2C16.6632 2 20.1967 5.67715 20.1967 10C20.1967 14.3229 16.6632 18 12.0967 18ZM12.0967 20C6.57383 20 2.09668 15.5228 2.09668 10C2.09668 4.47715 6.57383 0 12.0967 0C17.6195 0 22.0967 4.47715 22.0967 10C22.0967 15.5228 17.6195 20 12.0967 20Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center top 2px;
  background-size: contain;
}

.desktop-search__btn:focus-visible {
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6.8678' height='1.71695' transform='matrix(-0.718931 0.695081 0.718931 0.695081 4.9375 15.6534)' fill='%23C283F3'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.0967 18C7.53016 18 3.99668 14.3229 3.99668 10C3.99668 5.67715 7.53016 2 12.0967 2C16.6632 2 20.1967 5.67715 20.1967 10C20.1967 14.3229 16.6632 18 12.0967 18ZM12.0967 20C6.57383 20 2.09668 15.5228 2.09668 10C2.09668 4.47715 6.57383 0 12.0967 0C17.6195 0 22.0967 4.47715 22.0967 10C22.0967 15.5228 17.6195 20 12.0967 20Z' fill='%23C283F3'/%3E%3C/svg%3E");
}

.search-input {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  outline: none;
  color: #fff;
  background: transparent;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

.desktop-search__input {
  padding: 3px 0;
  width: 100%;
}

.search-input:focus-visible {
  border-color: var(--heliotrope-color);
}

.search-input:hover {
  border-color: var(--heliotrope-color);
}

.search-input:active {
  border-color: var(--royal-purple-color);
}

.search-input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.85);
}

.search-input::-moz-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.85);
}

.search-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.85);
}

.search-input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.85);
}

.search-input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.85);
}

/* hero */
.hero {
  position: relative;
}

.hero__container {
  position: relative;
  padding-top: 233px;
  padding-bottom: 124px;
  z-index: 10;
}

.hero__swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.hero__slide {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: #000;
}

.hero__slide--1 {
  background-image: url('../img/hero/hero-bg-slide-1.jpg');
}

.hero__slide--2 {
  background-image: url('../img/hero/hero-bg-slide-2.jpg');
}

.hero__slide--3 {
  background-image: url('../img/hero/hero-bg-slide-3.jpg');
}

.hero__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 600px;
}

.hero__title {
  margin: 0;
  margin-bottom: -3px;
  font-weight: 700;
  font-size: 72px;
  line-height: 136%;
  color: #fff;
}

.hero__descr {
  margin: 0;
  margin-bottom: 92px;
  font-weight: 700;
  font-size: 18px;
  line-height: 166%;
  color: #fff;
}

.hero__btn {
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 19px 33px;
  border: 3px solid transparent;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  background-color: var(--amethyst-color);
  -webkit-transition: border-color .3s, background-color .3s;
  transition: border-color .3s, background-color .3s;
}

.hero__btn:focus-visible {
  outline: 2px solid var(--heliotrope-color);
  outline-offset: 3px;
}

.hero__btn:hover {
  border-color: var(--biloba-flower-color);
}

.hero__btn:active {
  outline: none;
  border-color: var(--biloba-flower-color);
  background-color: var(--royal-purple-color);
}

/* about-us */
.about-us {
  padding: 80px 0 70px;
}

.about-us__descr {
  margin: 0;
  max-width: 1080px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--descr-color);
}

/* gallery */
.gallery {
  padding: 80px 0 77px;
  background-image: url('../img/gallery-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.gallery__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 15px;
}

.gallery__control {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 25%;
  min-width: 280px;
}

.gallery__title {
  color: #fff;
}

.gallery__filter-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 200%;
  color: #FFFFFF;
}

.gallery__filter-form {
  -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;
  height: 100%;
}

/* select */
.choices {
  margin-bottom: 174px;
}

.choices:focus-visible {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.choices[data-type*=select-one] .choices__inner {
  padding: 0;
}

.choices__inner {
  position: relative;
  padding: 0;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  border: 1px solid #fff;
  border-radius: 6px;
  background-color: transparent;
  z-index: 2;
}

.choices__list--single {
  padding-left: 16px;
  padding-right: 14px;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  padding: 4px 20px 4px 20px;
}

.choices__inner:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.is-open .choices__inner {
  border-radius: 6px;
}

.is-focus-visibleed .choices__inner,
.is-open .choices__inner {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.choices__list {
  color: #fff;
}

.choices__list .is-selected {
  display: none;
}

.choices__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
}

.choices[data-type*=select-one]::after {
  content: '';
  width: 12px;
  height: 7px;
  right: 15px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1L6 6L1 1' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px 7px;
  background-position: center;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  z-index: 10;
}

.choices[data-type*=select-one].is-open::after {
  margin-top: -2.5px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1L6 6L1 1' stroke='white'/%3E%3C/svg%3E");
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.choices[data-type*=select-one]>.choices__list>.choices__list>.choices__item--selectable::after {
  display: none;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  border: 1px solid #999;
  border-radius: 6px;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  background-color: transparent;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
}

.is-active.choices__list--dropdown,
.is-active.choices__list[aria-expanded] {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
}

.choices__item:not(:last-child) {
  border-bottom: 1px solid #999;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: 16px;
  color: #999;
}

/* checkbox */
.gallery__checkbox-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: auto;
}

.gallery__checkbox-label {
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin: 0;
  padding: 0;
  padding-left: 24px;
  cursor: pointer;
}

.gallery__checkbox-label:focus-visible {
  outline: none;
}

.gallery__checkbox-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
  -webkit-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

.gallery__original-checkbox~.gallery__custom-checkbox {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  -webkit-transition: border .3s ease-in-out;
  transition: border .3s ease-in-out;
}

.gallery__original-checkbox~.gallery__custom-checkbox::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: var(--heliotrope-color);
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.gallery__original-checkbox:focus-visible~.gallery__checkbox-title {
  color: var(--heliotrope-color);
}

.gallery__original-checkbox:focus-visible~.gallery__custom-checkbox {
  border-color: var(--heliotrope-color);
}

.gallery__original-checkbox:checked~.gallery__custom-checkbox::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.gallery__original-checkbox:checked~.gallery__custom-checkbox {
  border-color: var(--heliotrope-color);
}

.gallery__checkbox-label:hover .gallery__custom-checkbox {
  border-color: var(--heliotrope-color);
}

.gallery__original-checkbox:checked~.gallery__checkbox-title {
  color: var(--heliotrope-color);
}

/* slider */
.gallery__slider {
  -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;
  padding-top: 23px;
  width: calc(1150 / 1600 * 100%);
}

.gallery__swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery__slider-btns {
  margin-bottom: 26px;
  padding-top: 3px;
  padding-left: 3px;
}

.gallery__slider-prev-btn,
.gallery__slider-next-btn {
  position: relative;
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11L0.999995 6L6 0.999998' stroke='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 7px 12px;
  background-position: 8px center;
  background-color: #666;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
}

.gallery__slider-prev-btn:focus-visible,
.gallery__slider-next-btn:focus-visible {
  border-color: #000;
}

.gallery__slider-prev-btn:hover,
.gallery__slider-next-btn:hover {
  border-color: transparent;
  background-color: var(--amethyst-color);
}

.gallery__slider-prev-btn:active,
.gallery__slider-next-btn:active {
  border-color: #000;
  background-color: var(--royal-purple-color);
}

.swiper-button-disabled {
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11L0.999995 6L6 0.999998' stroke='%23000'/%3E%3C/svg%3E");
  opacity: .4;
  cursor: auto;
}

.swiper-button-disabled:hover {
  border-color: transparent;
  background-color: #666;
}

.swiper-button-disabled:active {
  border-color: transparent;
  background-color: #666;
}

.gallery__slider-next-btn {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gallery__page-info {
  padding: 0 19px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
}

.gallery__popup-btn {
  position: relative;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.gallery__popup-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  background-color: transparent;
  -webkit-transition: border-color .3s, background-color .3s;
  transition: border-color .3s, background-color .3s;
}

.gallery__popup-btn:focus-visible::before {
  border-color: var(--royal-purple-color);
}

.gallery__popup-btn::after {
  content: '';
  position: absolute;
  top: 6%;
  right: 6%;
  bottom: 6%;
  left: 6%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg width='81' height='79' viewBox='0 0 81 79' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='25.1624' height='6.2906' transform='matrix(-0.72074 0.693205 0.72074 0.693205 18.1355 57.1966)' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M44.2696 65.7708C28.041 65.7708 14.8852 52.6834 14.8852 36.5393C14.8852 20.3952 28.041 7.30786 44.2696 7.30786C60.4981 7.30786 73.6539 20.3952 73.6539 36.5393C73.6539 52.6834 60.4981 65.7708 44.2696 65.7708ZM44.2696 73.0786C23.9839 73.0786 7.53917 56.7194 7.53917 36.5393C7.53917 16.3592 23.9839 0 44.2696 0C64.5552 0 80.9999 16.3592 80.9999 36.5393C80.9999 56.7194 64.5552 73.0786 44.2696 73.0786Z' fill='white'/%3E%3Cpath d='M42 24L42 48.9999L47.9954 48.9999L47.9955 23.9999L42 24Z' fill='white'/%3E%3Cpath d='M57.2336 33.9999L32.2336 33.9999L32.2336 39.9954L57.2336 39.9954L57.2336 33.9999Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.gallery__popup-btn:hover::after {
  opacity: 1;
}

.gallery__popup-btn:active::before {
  border-color: transparent;
  background-color: rgba(194, 131, 243, 0.4);
}

.gallery__slide-img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

/* catalog */
.catalog {
  padding: 80px 0 40px;
}

.catalog__descr {
  margin: 0;
  margin-bottom: 39px;
  max-width: 1080px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--descr-color);
}

.catalog__content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog__info {
  width: 46.9%;
}

.catalog__artist {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog__artist-img {
  margin-bottom: 30px;
}

.catalog__artist-title {
  margin: 0;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: var(--title-color);
}

.catalog__artist-date {
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #999;
}

.catalog__artist-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--descr-color);
}

.catalog__artist-info-link {
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--amethyst-color);
}

.catalog__artist--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.catalog__control {
  width: 50%;
}

.catalog__accordion-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.catalog__accordion-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ui-accordion .ui-accordion-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 41px 0;
  border-radius: 0;
}

.ui-accordion .catalog__accordion-btn {
  margin-top: -1px;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  outline: none;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

.catalog__accordion-item:first-child .catalog__accordion-btn:active,
.catalog__accordion-item:first-child .ui-accordion-header-active {
  border-color: var(--royal-purple-color);
}

.catalog__accordion-item:not(:first-child) .catalog__accordion-btn {
  border-top: 1px solid transparent;
}

.catalog__accordion-item:not(:first-child) .ui-accordion-header-active {
  border-color: var(--royal-purple-color);
}

.ui-accordion .catalog__accordion-btn:hover {
  border-color: var(--amethyst-color);
}

.catalog__accordion-item:not(:last-child) .catalog__accordion-content {
  border-bottom: 1px solid #cacaca;
}

.catalog__accordion-heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--title-color);
  -webkit-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}

.catalog__control .ui-accordion-header-icon {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 50%;
  background-color: #ececec;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
}

.catalog__control .ui-accordion-header-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 11px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.3333 1.33334L9 9.66667L0.666664 1.33334' stroke='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 11px;
  background-position: center;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.ui-accordion-header-active .ui-accordion-header-icon::before {
  -webkit-transform: translate(-50%, -50%) scaleY(-1);
  transform: translate(-50%, -50%) scaleY(-1);
}

.catalog__accordion-btn:focus-visible .catalog__accordion-heading {
  color: #fff;
  background-color: var(--amethyst-color);
}

.catalog__accordion-btn:hover .catalog__accordion-heading {
  color: var(--amethyst-color);
  background-color: transparent;
}

.catalog__accordion-btn:active .catalog__accordion-heading {
  color: var(--royal-purple-color);
  background-color: transparent;
}

.catalog__accordion-btn:focus-visible .ui-accordion-header-icon {
  background-color: var(--biloba-flower-color);
}

.catalog__accordion-btn:hover .ui-accordion-header-icon {
  background-color: var(--biloba-flower-color);
}

.catalog__accordion-btn:active .ui-accordion-header-icon {
  border-color: var(--amethyst-color);
  background-color: var(--biloba-flower-color);
}

.ui-accordion-header-active .catalog__accordion-heading {
  color: var(--royal-purple-color);
  background-color: transparent;
}

.ui-accordion-header-active .ui-accordion-header-icon {
  border-color: var(--amethyst-color);
  background-color: var(--biloba-flower-color);
}

.ui-accordion .ui-accordion-content {
  padding: 25px 0;
  row-gap: 15px;
}

.catalog__artists-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.797fr 10px 0.74fr 10px 1fr;
  grid-template-columns: 0.797fr 0.74fr 1fr;
  grid-template-rows: repeat(9, 32px);
  grid-auto-rows: 32px;
  grid-auto-flow: column;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  width: 100%;
}

.catalog__artist-item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.catalog__artist-link {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #333;
  background-color: transparent;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
}

.catalog__artist-link--active,
.catalog__artist-link:focus-visible {
  background-color: var(--amethyst-color);
}

.catalog__artist-link:hover {
  border-color: var(--amethyst-color);
}

.catalog__artist-link:active {
  border-color: transparent;
  background-color: transparent;
}

.catalog__accordion-img {
  margin-right: 24px;
  width: 43%;
}

.catalog__accordion-info {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 275px;
}

.catalog__accordion-title {
  margin: 0;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--title-color);
}

.catalog__accordion-text {
  margin: 0;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--descr-color);
}

.catalog__accordion-link {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--amethyst-color);
}

/* events */
.events {
  padding: 42px 0 40px;
}

.events__slider {
  position: relative;
}

.events__slider .swiper-button-disabled {
  display: none;
}

.events__swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.events__slider-prev-btn,
.events__slider-next-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 50%;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11L0.999995 6L6 0.999998' stroke='%23000'/%3E%3C/svg%3E%0A");
  background-size: 11px 18px;
  background-repeat: no-repeat;
  background-position: 16px center;
  background-color: #ececec;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
  z-index: 10;
}

.events__slider-prev-btn:focus-visible,
.events__slider-next-btn:focus-visible {
  border-color: var(--amethyst-color);
}

.events__slider-prev-btn:hover,
.events__slider-next-btn:hover {
  border-color: transparent;
  background-color: var(--biloba-flower-color);
}

.events__slider-prev-btn:active,
.events__slider-next-btn:active {
  border-color: var(--amethyst-color);
  background-color: var(--biloba-flower-color);
}

.events__slider-prev-btn {
  left: -25px;
}

.events__slider-next-btn {
  right: -25px;
  -webkit-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

.events__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.events__item-img {
  display: block;
  width: 100%;
}

.events__item-info {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 14px 50px 35px;
  border: 1px solid #cacaca;
  border-top: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.events__item-chronotope {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 12px;
}

.events__item-place,
.events__item-date {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #999;
}

.events__item-title {
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: var(--title-color);
}

.events__item-descr {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--descr-color);
}

.events__item-descr:last-of-type {
  margin-bottom: 64px;
}

.events__item-link {
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-top: auto;
  padding: 0 8px 5px;
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--amethyst-color);
  background-color: transparent;
  -webkit-transition: color .3s, background-color .3s, border-color .3s;
  transition: color .3s, background-color .3s, border-color .3s;
}

.events__item-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: calc(100% - 16px);
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: var(--amethyst-color);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.events__item-link:focus-visible {
  color: #fff;
  background-color: var(--amethyst-color);
}

.events__item-link:focus-visible::after {
  background-color: #fff;
}

.events__item-link:hover {
  color: var(--royal-purple-color);
  background-color: transparent;
}

.events__item-link:hover::after {
  background-color: var(--royal-purple-color);
}

.events__item-link:active {
  color: #333;
  background-color: transparent;
}

.events__item-link:active::after {
  background-color: #333;
}

.events__swiper-pagination {
  display: none;
}

/* projects */
.projects {
  padding: 40px 0 80px;
}

.projects__descr {
  margin: 0;
  margin-bottom: 20px;
  max-width: 1080px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--descr-color);
}

.tooltip {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85786 15.5 0.5 12.1421 0.5 8C0.5 3.85786 3.85786 0.5 8 0.5C12.1421 0.5 15.5 3.85786 15.5 8Z' stroke='%239D5CD0'/%3E%3Cpath d='M7.26154 6.4551H8.73846V13H7.26154V6.4551ZM8 4.90259C7.71282 4.90259 7.4718 4.81126 7.27692 4.62861C7.09231 4.44597 7 4.22273 7 3.9589C7 3.69508 7.09231 3.47184 7.27692 3.28919C7.4718 3.0964 7.71282 3 8 3C8.28718 3 8.52308 3.09132 8.70769 3.27397C8.90256 3.44647 9 3.66464 9 3.92846C9 4.20243 8.90256 4.43582 8.70769 4.62861C8.52308 4.81126 8.28718 4.90259 8 4.90259Z' fill='black'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  background-color: transparent;
  -webkit-transition: background-color .3s, background-image .3s;
  transition: background-color .3s, background-image .3s;
}

.tooltip:focus-visible {
  outline: none;
  background-color: var(--biloba-flower-color);
}

.tooltip:hover {
  background-color: var(--biloba-flower-color);
}

.tooltip:active {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5 8C15.5 12.1421 12.1421 15.5 8 15.5C3.85786 15.5 0.5 12.1421 0.5 8C0.5 3.85786 3.85786 0.5 8 0.5C12.1421 0.5 15.5 3.85786 15.5 8Z' stroke='%239D5CD0'/%3E%3Cpath d='M7.26154 6.4551H8.73846V13H7.26154V6.4551ZM8 4.90259C7.71282 4.90259 7.4718 4.81126 7.27692 4.62861C7.09231 4.44597 7 4.22273 7 3.9589C7 3.69508 7.09231 3.47184 7.27692 3.28919C7.4718 3.0964 7.71282 3 8 3C8.28718 3 8.52308 3.09132 8.70769 3.27397C8.90256 3.44647 9 3.66464 9 3.92846C9 4.20243 8.90256 4.43582 8.70769 4.62861C8.52308 4.81126 8.28718 4.90259 8 4.90259Z' fill='white'/%3E%3C/svg%3E%0A");
  background-color: var(--amethyst-color);
}

.tippy-box {
  padding: 8px 11px 11px;
  max-width: 264px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 0;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  background-color: var(--amethyst-color);
}

.tippy-box[data-placement^='top']>.tippy-arrow::before {
  border-top-color: var(--amethyst-color);
}

.tippy-box[data-placement^='bottom']>.tippy-arrow::before {
  border-bottom-color: var(--amethyst-color);
}

.tippy-box[data-placement^='left']>.tippy-arrow::before {
  border-left-color: var(--amethyst-color);
}

.tippy-box[data-placement^='right']>.tippy-arrow::before {
  border-right-color: var(--amethyst-color);
}

.projects__partners-title {
  margin: 0;
  margin-bottom: 23px;
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--title-color);
}

/* partners */
.projects__partners-slider {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.projects__slider-prev-btn,
.projects__slider-next-btn {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11L0.999995 6L6 0.999998' stroke='%23000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 7px 12px;
  background-position: 8px center;
  background-color: #ececec;
  -webkit-transition: background-color .3s, border-color .3s;
  transition: background-color .3s, border-color .3s;
}

.projects__slider-prev-btn:focus-visible,
.projects__slider-next-btn:focus-visible {
  border-color: var(--amethyst-color);
}

.projects__slider-prev-btn:hover,
.projects__slider-next-btn:hover {
  border-color: transparent;
  background-color: var(--biloba-flower-color);
}

.projects__slider-prev-btn:active,
.projects__slider-next-btn:active {
  border-color: var(--amethyst-color);
  background-color: var(--biloba-flower-color);
}

.projects__partners-slider .swiper-button-disabled {
  border-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 11L0.999995 6L6 0.999998' stroke='%23cacaca'/%3E%3C/svg%3E");
  background-color: #ececec;
  opacity: 1;
}

.projects__slider-next-btn {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.projects__partners-swiper {
  margin: 0 auto;
  padding: 0 2px;
  width: calc(1450 / 1600 * 100%);
  overflow: hidden;
}

.projects__partners-item {
  position: relative;
  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: 20px;
  height: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.projects__partners-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  outline: none;
}

.projects__partners-link::after {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  left: -1px;
  border: 1px solid #cacaca;
  background: transparent;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

.projects__partners-link:focus-visible::after {
  border-color: var(--amethyst-color);
}

.projects__partners-link:hover .projects__partners-logo {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.projects__partners-link:active::after {
  border-color: var(--amethyst-color);
}

.projects__partners-logo {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
  -webkit-transition: opacity .3s, -webkit-filter .3s;
  transition: opacity .3s, -webkit-filter .3s;
  transition: filter .3s, opacity .3s;
  transition: filter .3s, opacity .3s, -webkit-filter .3s;
}

/* contacts */
.contacts__wrap {
  border: 1px solid #cacaca;
}

.contacts__info {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 30px;
  -webkit-column-gap: 79px;
  -moz-column-gap: 79px;
  column-gap: 79px;
  padding: 36px 0 35px;
}

.contacts__address {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts__address-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--title-color);
}

.contacts__address-descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: var(--descr-color);
}

.input-label {
  position: relative;
  margin-right: 19px;
}

.just-validate-error-label {
  position: absolute;
  top: -16px;
  left: 24px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #d11616;
}

.contacts__form .just-validate-error-field {
  border: 1px solid #d11616;
}

.contacts__name-input,
.contacts__phone-input {
  padding: 9px 43px 8px 23px;
  font-size: 16px;
  line-height: 200%;
  border: 1px solid #333;
  border-radius: 100px;
  outline: none;
  background-color: transparent;
}

.contacts__name-input {
  width: 271px;
}

.contacts__phone-input {
  width: 273px;
}

.contacts__name-input:focus-visible,
.contacts__phone-input:focus-visible {
  background-color: #ececec;
}

.contacts__name-input:hover,
.contacts__phone-input:hover {
  background-color: #ececec;
}

.contacts__name-input::-webkit-input-placeholder:active {
  background-color: transparent;
}

.contacts__name-input::-moz-placeholder:active {
  background-color: transparent;
}

.contacts__name-input:-ms-input-placeholder:active {
  background-color: transparent;
}

.contacts__name-input::-ms-input-placeholder:active {
  background-color: transparent;
}

.contacts__name-input::placeholder:active,
.contacts__phone-input:active {
  background-color: transparent;
}

.contacts__name-input::-webkit-input-placeholder,
.contacts__phone-input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input::-moz-placeholder,
.contacts__phone-input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input:-ms-input-placeholder,
.contacts__phone-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input::-ms-input-placeholder,
.contacts__phone-input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input::-webkit-input-placeholder, .contacts__phone-input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input::-moz-placeholder, .contacts__phone-input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input:-ms-input-placeholder, .contacts__phone-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input::-ms-input-placeholder, .contacts__phone-input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__name-input::placeholder,
.contacts__phone-input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #999;
}

.contacts__form {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contacts__form-btn {
  padding: 12px 34px;
  border: 2px solid var(--amethyst-color);
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: var(--amethyst-color);
  -webkit-transition: color .3s, border-color .3s, background-color .3s;
  transition: color .3s, border-color .3s, background-color .3s;
}

.contacts__form-btn:focus-visible {
  outline: 2px solid var(--heliotrope-color);
  outline-offset: 3px;
}

.contacts__form-btn:hover {
  color: #fff;
  background-color: var(--amethyst-color);
}

.contacts__form-btn:active {
  border-color: var(--biloba-flower-color);
  outline: none;
  color: #fff;
  background-color: var(--amethyst-color);
}

.contacts__messengers-title {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: var(--title-color);
}

.contacts__messengers-item:not(:last-child) {
  margin-right: 20px;
}

.contacts__messengers-link {
  outline: none;
}

.contacts__messengers-link svg {
  border-radius: 50%;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.contacts__messengers-link:focus-visible svg {
  opacity: .5;
}

.contacts__messengers-link:hover svg {
  opacity: .5;
}

.contacts__messengers-link:active svg {
  outline: 1px solid var(--amethyst-color);
  outline-offset: -1px;
  opacity: 1;
}

/* map */
.contacts__map {
  width: 100%;
  height: 700px;
}

[class*="ground-pane"] {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

[class*="copyrights-pane"] {
  display: none !important;
}

/* footer */
.footer {
  padding: 47px 0 36px;
  background-color: var(--black-color);
}

.footer__container {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo {
  outline: none;
}

.footer__logo:focus-visible .logo-img {
  outline: 1px solid #fff;
  outline-offset: 8px;
}

.social__item:not(:last-child) {
  margin-right: 20px;
}

.social__item-links {
  outline: none;
}

.social__item-links svg {
  fill: #cacaca;
  -webkit-transition: fill .3s;
  transition: fill .3s;
}

.social__item-links:focus-visible svg {
  fill: #fff;
}

.social__item-links:hover svg {
  fill: #fff;
}

.social__item-links:active svg {
  fill: var(--amethyst-color);
}
