@import url('../css/opensans.css');

:root {
  --purpure-main: #9D5CD0;
  --purpure-dark: #7943A4;
  --purpur: #C283F3;
  --pink: #D1A9F0;
  --black: #000;
  --white: #fff;
  --text-grey: #333;
  --text-light-grey: #999;
  --border-grey: #CACACA;
  --backgroun-grey: #666666;
  --border-light-grey: #ECECEC;
  --invalid-color: #D11616;
}

html {
  font-family: 'Open Sans', sans-serif;

  box-sizing: border-box;
}

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

/* общие классы */
.container {
  max-width: 1600px;

  margin: 0 8.33%;
}

.d-flex {
  display: flex;
}

.overflow-hidden {
  overflow: hidden;
}

.link {
  position: relative;

  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;

  outline: none;

  transition: color .2s ease-in;
}

.link:focus-visible:not(:active) {
  z-index: 2;

  color: var(--white);

  outline: none;
}

.link-effects:not(.header__link)::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;

  border: .5px solid var(--purpure-main);

  transition: border-color .2s ease-in;
}

.link-effects::after {
  content: "";

  opacity: 0;

  position: absolute;
  z-index: -1;
  top: -3px;
  bottom: -3px;
  left: -6px;
  right: -6px;


  background-color: var(--purpure-main);

  transition: opacity .2s ease-in;
}

.link-effects:focus-visible:not(:active)::after {
  opacity: 1;
}

.list {
  padding: 0;
  margin: 0;
}

details > summary,
.list__item {
  list-style: none;
}

.btn {
  position: relative;

  color: var(--text-grey);

  cursor: pointer;

  border: 0;

  background: none;

  outline: none;
}

.btn-effects {
  transition: background-color .2s ease-in;
}

.btn-effects::after {
  content: "";

  opacity: 0;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  border: 3px solid var(--pink);
  border-radius: inherit;

  transition: opacity .2s ease-in;
}

.btn-effects_light {
  border: 2px solid var(--purpure-main);
  border-radius: 100px;

  background-color: transparent;
}

.btn-effects_light:hover:not(:focus-visible):not(:active) {
  background-color: var(--purpure-main);
}

.btn-effects:active::after,
.btn-effects:hover:not(:focus-visible):not(:active)::after {
  opacity: 1;
}

.btn-effects:focus-visible:not(:active)::after {
  --offset: -6px;

  opacity: 1;

  top: var(--offset);
  bottom: var(--offset);
  left: var(--offset);
  right: var(--offset);

  border: 2px solid var(--purpur);
}

.btn-effects:active {
  background-color: var(--purpure-dark);
}

/* slider button style start  */

/* slider main class  */

.slider__btn {
  position: absolute;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  transition: background-color .2s ease-in, opacity .2s ease-in;
}

.slider__btn::after {
  content: "";

  opacity: 0;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  border-radius: 50%;
  border: 2px solid var(--purpure-main);

  transition: opacity .2s ease-in, border-color .2s ease-in;
}

.slider__btn_light {
  background-color: var(--border-light-grey);
}

.slider__btn_dark {
  background-color: var(--backgroun-grey);
}

.slider__btn_dark::after {
  border-color: var(--black);
}

.slider__btn_dark path {
  stroke: white;
}

/* slider main class style states  */

.slider__btn:active::after,
.slider__btn:focus-visible::after {
  opacity: 1;
}

.slider__btn.swiper-button-disabled::after {
  content: none;
}

.swiper-button-disabled {
  cursor: auto;
}

/* slider light button style states  */

.slider__btn_light:hover {
  background-color: var(--pink);
}

.slider__btn_light.swiper-button-disabled path {
  stroke: #BBBBBB;
}

.slider__btn_light.swiper-button-disabled:hover {
  background-color: var(--border-light-grey);
}

/* slider dark style states  */


.slider__btn_dark:hover:not(:active) {
  background-color: var(--purpure-main);
}

.slider__btn_dark:active {
  background-color: var(--purpure-dark);
}

.slider__btn_dark.swiper-button-disabled {
  opacity: .5;
}

.slider__btn_dark.swiper-button-disabled:hover {
  background-color: var(--backgroun-grey);
}

/* slider button style end  */

/* slider section main style start */

.slider {
  overflow: hidden;

  position: relative;

  max-width: 1600px;
}

.slider__content {
  z-index: 1;

  transition-property: transform;
}

/* slider section main style end */

.text {
  margin: 0;

  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

.text-container {
  max-width: 1080px;
}

.headline {
  margin: 0;

  font-weight: 400;
  font-size: 48px;
  line-height: 65px;

  color: var(--text-grey);
}

.secondary-headline {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;

  display: inline-block;
}

.tooltype {
  padding: 0;

  width: 19px;
  height: 19px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.tooltype svg {
  width: 100%;
}

.tooltype path {
  transition: fill .2s ease-in;
}

.tippy-content {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}

.tooltype:hover:not(:active) path:first-child,
.tooltype:focus-visible:not(:active) path:first-child {
  fill: var(--pink);
}

.tooltype:active path:first-child {
  fill: var(--purpure-main);
}

.tooltype:active path:last-child {
  fill: white;
}

/* modal main styles start */

.modal {
  min-height: 500px;
  max-width: 100%;

  padding-left: 44.6%;

  background: left no-repeat url('../img/modal-content-img-1.jpeg');
}

.hystmodal__window {
  width: 900px;
}

.modal__image-wrapper {
  display: none;
}

.modal__content {
  justify-content: center;

  padding: 122px 0 0 48px;
}

.modal__header {
  margin-bottom: 39px;
}

.modal__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;

  margin-bottom: -1px;
}
.modal__art-name {
  font-weight: 600;
  line-height: 22px;
}

.modal__yars {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;

  color: var(--text-light-grey);
}

.modal__discr {
  line-height: 22px;
}

.modal__close {
  align-self: flex-start;

  margin: 20px 12px;
}

/* modal main styles end */

.tippy-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

/* header */

.header {
  position: relative;
}

.header__wrapper {
  background-color: var(--black);
}

.header__container {
  align-items: center;

  padding: 27px 0;
}

.nav-adaptive {
  width: 100%;
  align-items: center;
}

.search-open-btn,
.header__burger,
.search_mobile {
  display: none;
}

.header__logo {
  margin-right: 179px;
}

.header__nav {
  width: 60.4%;
  margin-right: auto;
}

.header__list {
  width: 100%;

  flex-wrap: wrap;
  justify-content: space-between;
}

.nav__item:not(:last-child) {
  margin-right: 5px;
}

.header__link:not(:focus):hover {
  color: var(--purpur);
}

.header__link:focus-visible:not(:active)::after {
  background-color: var(--purpure-dark);
}

.nav__link:active,
.row__btn:active {
  color: var(--purpure-dark);
}

.header__link {
  font-size: 18px;
  line-height: 25px;
}

.nav__link {
  font-weight: 600;
}

.row__btn {
  font-weight: 400;
  color: var(--white);

  z-index: 1;

  transition: color .2s ease-in;
}

.row__btn:not(:focus-visible):hover {
  color: var(--purpure-main);
}

.header__sign-in {
  padding-left: 20px;
}

.header__sign-in::before {
  content: "";

  width: 20px;
  height: 13px;

  position: absolute;
  top: 25%;
  left: 0;

  background-image: url('../img/sign-in.svg');
  background-repeat: no-repeat;
  background-size: contain;

  transition:  background-image .2s ease-in, left .2s ease-in;
}

.header__sign-in:hover:not(:focus)::before {
  left: -5px;

  background-image: url('../img/sign-in_hover.svg');
}

.header__sign-in:active {
  color: var(--purpure-main);
}

.header__sign-in:active::before {
  left: -5px;

  background-image: url('../img/sign-in_active.svg');
}


.header__row {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  right: 0;

  background: rgba(0, 0, 0, 0.4);
}

.header__container-row {
  padding: 16px 0;
}

.row__list {
  width: 64%;

  margin-right: auto;
}

.row__item {
  position: relative;
}

.row__btn::before {
  content: "";

  width: 8px;

  position: absolute;
  height: 8px;
  right: -13px;
  top: 35%;

  border-right: 1px solid  var(--white);
  border-bottom: 1px solid  var(--white);

  transform: rotate(45deg);

  transition: border-color .2s ease-in, transform .2s ease-in, top .2s ease-in;
}

.row__btn.active::before {
  top: 50%;

  transform: rotate(225deg);
}

.row__btn:focus-visible:not(:active)::after {
  right: -20px;
  left: -6px;
}

.row__btn:hover:not(:focus-visible)::before {
  border-color: var(--purpure-main);
}

.row__btn:active::before {
  border-color: var(--purpure-dark);
}

.row__item:not(:last-child) {
  margin-right: 10px;
}

.search {
  align-items: center;

  padding: 4px 0;
}

.search__btn {
  padding-top: 5px;
}

.search__btn:hover rect,
.search__btn:hover path {
  transition: fill .2s ease-in;
}

.search__btn:focus-visible {
  outline: none;
}

.search__btn:hover:not(:focus-visible) rect,
.search__btn:hover:not(:focus-visible) path,
.search__btn:focus-visible:not(:active) rect,
.search__btn:focus-visible:not(:active) path {
  fill: var(--purpur);
}

.search__btn:active rect,
.search__btn:active path {
  fill: var(--purpure-dark);
}

.search__input {
  --main-color: rgba(255, 255, 255, 0.85);

  min-width: 222px;

  font-weight: 400;
  font-size: 18px;
  line-height: 25px;

  background: none;

  border: 0;
  border-bottom: 1px solid var(--main-color);

  color: var(--main-color);

  transition: border-color .2s ease-in;
}

.search__input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.search__input:focus-visible {
  outline: none;

  border-color: var(--purpure-dark);
}

.search__input:hover:not(:focus-visible) {
  border-color: var(--purpur);
}

.dropdown {
  position: absolute;

  top: 47px;

  visibility: hidden;
  opacity: 0;

  max-height: 300px;
  width: 300px;

  padding: 37px 15px;

  background: rgba(0, 0, 0, 0.6);
  transition: opacity .2s ease-in;
}

.row__btn.active ~ .dropdown {
  visibility: visible;
  opacity: 1;
}

.simplebar-scrollbar.simplebar-visible::before {
  background-color: var(--white);

  opacity: 1;

  border: 0;

  left: 4px;
  right: 5px;
}

.dropdown__list {
  max-height: 240px;

  padding: 0 25px;
}

.dropdown__item {
  min-width: 220px;

  background: center / cover no-repeat #D88F99;
}

.dropdown-realism-bg-1 {background-image: url('../img/dropdown-bg.jpg');}
.dropdown-realism-bg-2 {background-image: url('../img/dropdown-bg-2.jpg');}
.dropdown-realism-bg-3 {background-image: url('../img/dropdown-bg-3.jpg');}
.dropdown-realism-bg-4 {background-image: url('../img/dropdown-bg-4.jpg');}

.dropdown-impressionism-bg-1 {background-image: url('../img/dropdown-bg-2-1.jpg');}
.dropdown-impressionism-bg-2 {background-image: url('../img/dropdown-bg-2-2.jpg');}
.dropdown-impressionism-bg-3 {background-image: url('../img/dropdown-bg-2-3.jpg');}
.dropdown-impressionism-bg-4 {background-image: url('../img/dropdown-bg-2-4.jpg');}

.dropdown-post-impressionism-bg-1 {background-image: url('../img/dropdown-bg-3-1.jpg');}
.dropdown-post-impressionism-bg-2 {background-image: url('../img/dropdown-bg-3-2.jpg');}
.dropdown-post-impressionism-bg-3 {background-image: url('../img/dropdown-bg-3-3.jpg');}
.dropdown-post-impressionism-bg-4 {background-image: url('../img/dropdown-bg-3-4.jpg');}

.dropdown-vanguard-bg-1 {background-image: url('../img/dropdown-bg-4-1.jpg');}
.dropdown-vanguard-bg-2 {background-image: url('../img/dropdown-bg-4-2.jpg');}
.dropdown-vanguard-bg-3 {background-image: url('../img/dropdown-bg-4-3.jpg');}
.dropdown-vanguard-bg-4 {background-image: url('../img/dropdown-bg-4-4.jpg');}

.dropdown-futurism-bg-1 {background-image: url('../img/dropdown-bg-5-1.jpg');}
.dropdown-futurism-bg-2 {background-image: url('../img/dropdown-bg-5-2.jpg');}
.dropdown-futurism-bg-3 {background-image: url('../img/dropdown-bg-5-3.jpg');}
.dropdown-futurism-bg-4 {background-image: url('../img/dropdown-bg-5-4.jpg');}

.dropdown__btn {
  width: 100%;

  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-align: left;

  padding: 11px 13px;
}

.outline-btn-effects::after {
  content: "";

  opacity: 0;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  border: 3px solid var(--purpure-dark);

  background: transparent;

  transition: border-color .2s ease-in, opacity .2s ease-in;
}

.outline-btn-effects:focus-visible::after,
.outline-btn-effects:hover:not(:active):not(.gallery__btn)::after {
  opacity: 1;
}

.outline-btn-effects:active::after {
  opacity: 1;
  border-color: var(--purpure-main);
  background: linear-gradient(0deg, rgba(194, 131, 243, 0.4), rgba(194, 131, 243, 0.4));
}

.dropdown__item:not(:last-child) {
  margin-bottom: 19px;
}

/* hero */

.hero {
  position: relative;

  background-color: var(--black);
}

.hero__container {
  padding: 140px 0 145px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: initial;

  width: 100%;
  height: 100%;
}

.hero-slider__wrapper {
  animation-name: resize;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-direction: alternate;

  z-index: initial;
}


.hero-slider__slide {
  background: center / cover no-repeat;
}

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

.hero__content {
  max-width: 597px;

  position: relative;
  z-index: 1;
}

.hero__headline {
  color: var(--white);
  font-weight: 700;
  font-size: 72px;
  line-height: 85px;

  margin-bottom: 17px;
}

.hero__text {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;

  margin-bottom: 113px;
}

.hero__btn {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--white);

  padding: 23px 35px;

  background: var(--purpure-main);

  border-radius: 100px;
}


/* about */


.about__container {
  padding: 80px 0 70px;
}

.about__headline {
  margin-bottom: 16px;
}


/* gallery */

.gallery {
  background: center / cover no-repeat url('../img/bg-gallery.jpg');
  background-color: var(--black);
}

.gallery__container {
  padding: 80px 0;
}

.gallery__headline {
  color: var(--white);

  margin-bottom: 14px;
}

.filter {
  flex: 1 0 400px;
  flex-direction: column;

  margin-right: 50px;
}

.filter__text {
  color: var(--white);
}

.filter__select {
  max-width: 400px;
  width: 100%;

  padding: 5px 11px;
  margin-top: 12px;

  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
}

.choices[data-type*=select-one] {
  margin-top: 8px;
}

.choices__inner {
  position: relative;
  z-index: 3;

  min-height: 40px;

  background: transparent;

  font-size: 16px;
  color: var(--white);

  padding: 6.5px 11.5px 6.75px;

  border-radius: 6px;

  transition: background-color .2s ease-in;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  font-size: inherit;

  padding: 8px 14px 10px;
}

.is-open .choices__inner,
.choices__list--dropdown, .choices__list[aria-expanded] {
  border-radius: 6px;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: var(--white);
}

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

.choices__placeholder {
  opacity: 1;

  transition: background-color .2s ease-in;
}

.choices[data-type*=select-one]::after {
  content: "";

  position: absolute;
  top: 43%;
  right: 17px;

  width: 6.8px;
  height: 6.8px;

  border-bottom: 1px solid white;
  border-right: 1px solid white;

  transform: rotate(45deg);
}

.choices[data-type*=select-one].is-open::after {
  transform: rotate(-135deg);

  top: 50%;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  background: var(--black);
  color: var(--white);
}
.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  border-color: #999999;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  opacity: .5;

  transition: opacity .2s ease-in;
}

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

  opacity: 1;
}

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

.checkbox {
  margin-top: auto;

  width: fit-content;
}

.checkbox__wrapper {
  display: grid;
  grid-template-columns: 15px 1fr;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
}

.checkbox__text {
  position: relative;

  width: max-content;
  padding-left: 24px;

  cursor: pointer;

  transition: color .3s ease-in-out;
}

.checkbox__text::after {
  content: "";

  position: absolute;
  top: 34%;
  left: 0;

  width: 12px;
  height: 12px;

  background: center no-repeat url('../img/checkbox_unchecked.svg');

  transition: background .3s ease-in-out;
}

.checkbox__text::before {
  content: "";

  opacity: 0;

  position: absolute;
  top: 34%;
  left: 0;

  width: 12px;
  height: 12px;

  background: center no-repeat url('../img/checkbox_checked.svg');

  transition: opacity .3s ease-in-out;
}

.checkbox__input:focus-visible~.checkbox__text::after,
.checkbox__input:checked~.checkbox__text::after {
  background-image: url('../img/checkbox_checked-box.svg');
}

.checkbox__input:checked~.checkbox__text::before {
  opacity: 1;
}

.checkbox__input:focus-visible~.checkbox__text,
.checkbox__input:checked~.checkbox__text {
  color: var(--purpur);
}

.gallery__btn {
  width: 100%;
  display: flex;
  justify-content: center;

  overflow: hidden;

  padding: 0;
}

.gallery-slider {
  display: inherit;

  padding-top: 82px;
}

.gallery__btn::before {
  --inset: 25px;

  content: "";

  opacity: 0;

  position: absolute;
  top: var(--inset);
  bottom: var(--inset);
  left: var(--inset);
  right: var(--inset);

  background: center no-repeat rgba(0, 0, 0, 0.5);
  background-image: url('../img/gallary-search.svg');

  transition: opacity .2s ease-in;
}

.gallery__btn:active::before,
.gallery__btn:hover:not(:active)::before {
  opacity: 1;
  z-index: 1;
}

.slider__control {
  position: absolute;
  top: 5%;
  left: 0;

  gap: 20px;

  color: var(--white);
}

.gallery-slider__btn {
  position: relative;
}


/* catalog */

.catalog__container {
  padding-top: 80px;
}

.catalog__discr {
  margin-bottom: 39px;
}

.catalog__headline {
  margin-bottom: 16px;
}

.artist {
  display: none;

  margin-right: 50px;

  flex: 1 0 47%;
}

.artist__image {
  width: 100%;
  margin-bottom: 27px;
}

.artist__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;

  margin-bottom: 9px;
}

.artist__yars {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;

  margin-bottom: 6px;

  color: var(--text-light-grey);
}

.is-selected {
  display: initial;
}

.artist-plug {
  padding-top: 32%;

  background: top / contain no-repeat url('../img/artist-plug.jpg');
}

.artists {
  flex: 1 0 50%;
}

.artists__details {
  border-top: 1px solid var(--border-grey);

  transition: border-color .2s ease-in;
}

.artists__details:last-child:not(:hover):not(:active) {
  border-bottom: 1px solid var(--border-grey);
}

.artists__details[open],
.artists__details:hover {
  border-color: var(--purpure-main);
}

.artists__details:active {
  border-color: var(--purpure-dark);
}

.artists__details:not(.artists__details[open])>.artists__summary:active + .artists__details,
.artists__details:hover:not(.artists__details[open]) + .artists__details {
  border-top: 0;
}

.artists__details[open] .artists__summary:active .artists__summary,
.artists__details .artists__summary:active .artists__summary {
  border-bottom: 1px solid var(--purpure-dark);
}

.artists__details[open] .artists__summary,
.artists__details:hover .artists__summary {
  border-bottom: 1px solid var(--purpure-main);
}

.artists__summary {
  position: relative;

  padding: 41px 0;

  outline: none;

  cursor: pointer;

  transition: border-color .2s ease-in;
}

.artists-plug {
  max-width: 574px;

  padding: 25px 0;
}

.artists-plug__left {
  --main-color: #B7B7B7;
  position: relative;

  flex: 1 1 59%;

  margin-right: 23px;

  border: 2px solid var(--main-color);
}

.artists-plug__left::after {
  --inset: 12px;

  content: "";

  position: absolute;
  top: var(--inset);
  bottom: var(--inset);
  right: var(--inset);
  left: var(--inset);

  background: var(--main-color);
}

.artists-plug__right {
  flex: 1 1 60%;

  padding: 40px 0;
}

.plug__link {
  color: var(--purpure-dark);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px
}

.plug__link::before {
  opacity: 0;

  transition: opacity .2s ease-in;
}

.plug__link:hover:not(:focus-visible)::before {
  opacity: 1;
}

.plug__link:active::before {
  border-color: var(--black);
}

.plug__link:active {
  color: var(--black);
}

.artists__headline {
  position: relative;

  transition: color .2s ease-in;
}

.artists__headline::after {
  --outset: -5px;

  content: "";

  opacity: 0;

  position: absolute;
  top: var(--outset);
  bottom: var(--outset);
  left: var(--outset);
  right: var(--outset);
  z-index: -1;

  background: var(--purpure-main);

  transition: opacity .2s;
}

details summary::-webkit-details-marker {
  display: none;
}

.artists__summary::after {
  content: "";

  position: absolute;
  right: 0;
  top: 26.9%;

  width: 47px;
  height: 47px;

  border-radius: 50%;

  border: 2px solid var(--border-light-grey);

  background-color: var(--border-light-grey);

  transition: border-color .3s ease-in-out;
}

.artists__summary::before {
  content: "";

  position: absolute;
  z-index: 1;
  right: 19px;
  top: 41.5%;

  width: 12px;
  height: 12px;

  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);

  transform: rotate(45deg);

  transition: transform .3s ease-in-out;
}

.artists__details:hover .artists__summary::after,
.artists__summary:focus-visible::after {
  background-color: var(--pink);
  border-color: var(--pink);
}

.artists__details[open] .artists__summary::after {
  border-color: var(--purpure-dark);

  background-color: var(--pink);
}
.artists__details .artists__summary:active::after,
.artists__details .artists__summary:active::after {
  border-color: var(--purpure-dark);
}

.artists__details[open] .artists__summary::before {
  transform: rotate(225deg);

  top: 45%;
  right: 19px;
}

.artists__details[open] .artists__summary:not(:focus-visible) .artists__headline,
.artists__details:hover .artists__summary:not(:focus-visible) .artists__headline {
  color: var(--purpure-main);
}

.artists__details .artists__summary:active:not(:focus-visible) .artists__headline {
  color: var(--purpure-dark);
}

.artists__details[open] .artists__summary:focus-visible .artists__headline,
.artists__summary:focus-visible .artists__headline {
  color: var(--white);
}

.artists__summary:focus-visible .artists__headline::after {
  opacity: 1;
}

.artists__list {
  column-count: 3;

  padding: 25px 0;
}

.artists__btn {
  padding: 0;

  transition: color .2s ease-in;
}

.artists__btn::after {
  left: 0;
  right: 0;
}

.artists__btn:focus-visible:not(:active) {
  color: var(--white);
}

.artists__btn:hover:not(:focus-visible):not(:active) {
  color: var(--purpure-main);
}

.artists__btn:active {
  color: var(--purpure-dark);
}

/* events */

.events__container {
  position: relative;

  padding-top: 80px;
}

.events__list {
  display: inline-flex;
}

.events__headline {
  margin-bottom: 16px;
}

.event {
  display: flex;
  flex-direction: column;

  min-height: 700px;

  padding-top: 11.36%;

  background: top / contain no-repeat var(--white);

  border: 1px solid var(--border-grey);
}

.event-bg-image-1 {background-image: url('../img/event-card-image-1.jpg');}
.event-bg-image-2 {background-image: url('../img/event-card-image-2.jpg');}
.event-bg-image-3 {background-image: url('../img/event-card-image-3.jpg');}
.event-bg-image-4 {background-image: url('../img/event-card-image-4.jpg');}
.event-bg-image-5 {background-image: url('../img/event-card-image-5.jpg');}


.event__wrapper {
  display: flex;
  flex-direction: column;
  align-items: baseline;

  padding: 0 50px;
  padding-bottom: 40px;

  height: 100%;
}

.event__info {
  margin-bottom: 13px;

  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-light-grey);
}

.event__headline {
  margin-bottom: 6px;

  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
}

.info__row {
  display: block;
}

.event__text {
  margin-bottom: auto;
}

.event__link {
  line-height: 32px;
}

.event__link:focus-visible:not(:active)::before {
  border-color: var(--white);
}

.event__link:focus-visible:not(:active)::after {
  left: -10px;
  right: -10px;
  bottom: -8px
}

.event__link:hover:not(:focus) {
  color: var(--purpure-dark);
}

.event__link:hover:not(:focus)::before {
  border-color: var(--purpure-dark);
}

.event__link:active {
  color: var(--text-grey);
}

.event__link:active::before {
  border-color: var(--text-grey);
}

.event-slider {
  overflow: visible;
}

.event-slider__btn {
  top: 46.5%;

  width: 50px;
  height: 50px;
}

.event-slider__btn.swiper-button-disabled {
  opacity: 0;
}

.event-slider__btn_next {
  right: -1.8%;

}

.event-slider__btn_prev {
  left: -1.5%;
}

.event-slider__pagination {
  display: none;
}

/* projects */

.projects__container {
  padding: 80px 0;
}

.projects__headline {
  margin-bottom: 16px;
}

.projects__text {
  margin-bottom: 20px;
}

.partners-slider {
  padding: 0 72px;
}

.partners-slider__wrapper {
  position: initial;
  max-width: 1457px;
}

.partners__headline {
  margin-bottom: 23px;
}

.partners__link {
  height: 100%;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.partners__link::after {
  content: "";

  opacity: 0;

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  border: 1px solid var(--purpure-main);

  transition: opacity .2s ease-in;
}

.partners__link:active::after,
.partners__link:focus-visible::after {
  opacity: 1;
}

.partners__link:active .projects__image,
.partners__link:hover:not(:focus-visible) .projects__image {
  filter: grayscale(0%);
}

.event__link,
.projects__link {
  font-size: 16px;

  color: var(--purpure-main);
}

.artists__btn.link-effects::before,
.projects__link.link-effects::before {
  bottom: -5px;

  opacity: 0;

  border-color: var(--purpure-main);

  transition: opacity .2s ease-in;
}

.artists__btn:hover:not(:focus)::before,
.projects__link:hover:not(:focus)::before {
  opacity: 1;
}

.artists__btn:active,
.projects__link:active {
  color: var(--purpure-dark);
}

.artists__btn:active::before,
.projects__link:active::before {
  opacity: 1;

  border-color: var(--purpure-dark);
}

.projects__item {
  height: 150px;

  border: 1px solid var(--border-grey);
}

.projects__image {
  filter: grayscale(100%);

  transition: filter .2s ease-in;
}

.partners__list {
  display: -webkit-box;

  position: relative;
  z-index: 1;

  width: 100%;
  height: 100%;

  transition-property: transform;
}

.partners-slider__btn {
  top: 39.2%;
}

.partners-slider__btn_next {
  right: 0;
}

.partners-slider__btn_prev {
  left: 0;
}


/* contacts */

.contacts__wrapper {
  border: 1px solid var(--border-grey);
}

.contacts__container {
  align-items: center;
  justify-content: space-between;
  padding: 35px 0;
}

.contacts__headline {
  margin-bottom: 3px;
}

.address__text {
  font-style: normal;
}

.contacts__form {
  display: inline-flex;

  width: 57%;
}

.contacts__input {
  border: 1px solid var(--text-grey);
  border-radius: 100px;

  outline: none;

  width: 100%;

  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--text-grey);

  padding: 8px 24px;

  transition: background-color .2s ease-in;
}

.contacts__input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: var(--text-light-grey);
}

.contacts__input:focus-visible:not(:valid),
.contacts__input:hover:not(:valid) {
  background-color: #EAEAEA;
}

.contacts__btn {
  padding: 10.5px 35px;

  flex-shrink: 0;

  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  color: var(--purpure-main);

  transition: color .2s ease-in, background-color .2s ease-in;
}

.contacts__btn:hover:not(:focus-visible):not(:active) {
  color: var(--white);
}

.contacts__btn:active {
  color: var(--white);
}

.address,
.contacts__form {
  margin-right: auto;
}

.contacts__label {
  position: relative;

  width: 100%;
  flex-basis: 270px;

  margin-right: 21px;
}

.just-validate-error-label {
  position: absolute;
  top: -50%;
  left: 8%;

  color: var(--invalid-color);
}

.is-invalid {
  border-color: var(--invalid-color);
}

.contacts__headline_left {
  margin-bottom: 6px;
}

.contacts__list {
  justify-content: flex-start;
}

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


.contacts__link svg {
  transition: opacity .2s ease-in-out;
}

.contacts__link:hover:not(:focus-visible):not(:active) svg,
.contacts__link:focus-visible:not(:active) svg {
  opacity: 0.5;
}

.contacts__link:active path:first-child {
  stroke: #9643A4;
}

.contacts__ya-map {
  max-width: 100%;
  height: 700px;
}

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

/* footer */

.footer {
  background-color: var(--black);
}

.footer__container {
  justify-content: space-between;

  padding: 45px 0;
}

.footer__logo {
  padding-top: 5px;
}

.footer__list {
  flex-wrap: wrap;
}

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

.footer__link svg path {
  transition: fill .2s ease-in-out;
}

.footer__link:hover:not(:focus-visible):not(:active) svg path,
.footer__link:focus-visible:not(:active) svg path {
  fill: var(--white)
}

.footer__link:active svg path {
  fill: var(--purpure-main);
}


@keyframes resize {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

@media screen and (min-width: 1920px) {
  .container {
    margin: 0 auto;
  }
}

 @media screen and (max-width: 1440px) {
  .container {
    margin: 0 50px;
  }

  .contacts__label {
    position: relative;
    margin-right: 4px;
  }

  .contacts__input {
    margin-right: 19px;

    padding-left: 20px;
    padding-right: 20px;
  }

  .contacts__btn {
    padding: 10.5px 20px;
  }
}


@media screen and (max-width: 1340px) {
  .container {
    margin: 0 4.88%;
  }

  /* modal window */

  .hystmodal__window {
    max-width: 668px;
  }

  .modal {
    min-height: 594px;

    background-image: url(../img/modal-content-img-1024-1.jpeg);
  }

  /* header */

  .header__logo .logo__image {
    width: 188px;
  }

  .header__link {
    font-size: 23px;
    line-height: 24px;
  }

  .header__container {
    padding: 25px 0;
  }

  .burger {
    width: 36px;
    height: 24px;
    padding: 0;
    z-index: 5;
  }

  .burger__line {
    height: 3.65px;

    background: var(--white);

    position: absolute;
    left: 0;

    transition: top .2s ease-in, transform .2s ease-in, width .2s ease-in;
  }

  .burger__line:not(:last-child) {
    margin-bottom: 8.52px;
  }

  .burger__line:nth-child(1) {
    width: 100%;
    top: 0;
  }
  .burger__line:nth-child(2) {
    width: 78.33%;
    top: 50%;
  }
  .burger__line:nth-child(3) {
    width: 66.67%;
    top: 100%;
  }

  .burger.is-cliced .burger__line:nth-child(1) {
    width: 100%;
    top: 50%;
    transform: rotate(45deg);
  }

  .burger.is-cliced .burger__line:nth-child(2) {
    width: 100%;
    transform: rotate(-45deg);
  }

  .burger.is-cliced .burger__line:nth-child(3) {
    width: 0;
  }

  .header__sign-in {
    padding: 17px 91px 14px 107px;

    transition: background-color .2s ease-in;
  }

  .header__sign-in:hover {
    color: var(--white);
  }

  .header__sign-in::before {
    top: 40%;
    left: 35%;
  }

  .header__sign-in:hover:not(:focus-visible)::before,
  .header__sign-in:focus-visible::before,
  .header__sign-in:active::before {
    left: 33%;
    background-image: url('../img/sign-in_hover&active_mobile.svg');
  }

  .nav-adaptive {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;

    height: 100vh;

    overflow-x: scroll;
    overflow-y: auto;


    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;

    padding: 116px 50px 50px;

    background: var(--black);

    opacity: 0;

    transition: opacity .2s ease-in;
  }

  .nav-adaptive.is-cliced {
    opacity: 1;
    z-index: 4;
  }

  .header__list {
    flex-direction: column;
    width: fit-content;
  }

  .header__nav {
    margin: 0;
    width: fit-content;
  }

  .nav__item:not(:last-child) {
    margin-bottom: 40px;
  }

  .header__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .header__row {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .search_mobile {
    position: absolute;
    display: flex;
    top: 28px;
    right: 5%;
    opacity: 0;
    z-index: -1;

    transition: opacity .2s ease-in;
  }

  .search_mobile.is-cliced {
    opacity: 1;
    z-index: 1;

  }

  .search-open-btn {
    display: block;

    padding: 3px 0 0 2px;

    transition: opacity .2s ease-in;
  }

  .search__input {
    min-width: 218px;
    margin-left: 10px;
    line-height: 21px;
  }

  .search__btn {
    padding: 0;
  }


  .search-open-btn svg,
  .search__btn:first-child svg {
    width: 31px;
    height: 30px;
  }

  .search-close-btn {
    margin-left: 17px;
  }

  .search_mobile.is-cliced ~ .search-open-btn {
   opacity: 0;
  }

  /* hero */

  .hero__container {
    padding: 105px 0 136px;
  }

  .hero__content {
    max-width: 661px;
  }

  .hero__headline {
    line-height: 100px;

    margin-bottom: -13px;
  }

  .hero__text {
    margin-bottom: 155px;
  }

  /* gallery */

  .gallery__container {
    padding: 79px 0;
  }

  .gallery__headline {
    margin-bottom: 17px;
  }

  .filter {
    flex-basis: 280px;
  }

  .checkbox {
    margin-bottom: 37px;
  }

  .slider__control {
    top: 6.4%;
  }

  .gallery-slider {
    padding-top: 85px;
  }

  /* catalog */

  .artist__yars {
    margin-bottom: 16px;
  }

  .artist {
    margin-right: 51px;
    flex-basis: 47.2%;
  }

  .artists {
    flex-basis: 47.3%;
  }

  .artists__list {
    column-count: 2;
  }

  .artist-plug {
    padding-top: 32.96%;

    background-image: url('../img/artist-plug-1024.jpeg');
  }

  .artist-plug .artist__name {
    margin-bottom: 6px;
  }

  .artist-plug .artist__info {
    width: 95%;
    line-height: 23px;
    margin-bottom: 15px;
  }

  /* event */

  .event {
    min-height: 682px;

    padding-top: 14.3%;

    background-size: 114%;
  }

  .event__wrapper {
    padding: 0 33px;
    padding-bottom: 37px;
    margin-top: -12px;
  }

  .event__info {
    margin-bottom: 3px;
    align-self: flex-end;
  }

  .info__row {
    text-align: end;
  }

  .event-slider__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
    display: flex;
    justify-content: center;
    bottom: -30px;
  }

  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7.5px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .swiper-pagination-bullet-active {
    background: var(--backgroun-grey);
  }

  .event-slider__btn {
    display: none;
  }


  /* project */

  .projects__container {
    padding: 110px 0 80px;
  }

  .projects__item {
    height: 126px;

    margin: 0;
  }

  .partners-slider {
    padding: 0 53px;
  }

  /* contacts */

  .contacts__container {
    align-items: flex-start;
    flex-direction: column;

    padding: 43px 0 35px;
  }

  .address {
    margin-bottom: 23px;
  }

  .address__text {
    font-size: 14px;
  }

  .contacts__form {
    margin-right: 0;
    width: 100%;
    margin-bottom: 30px;
  }

  .contacts__input {
    padding: 8px 24px;
  }

  .contacts__btn {
    padding: 10.5px 41px;
  }

  /* footer */

  .footer__container {
    padding: 40px 0;
  }

  .footer__logo {
    padding-top: 11px;
  }

  .footer__item svg {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 924px) {
  .container {
    margin: 0 6.51%;
  }

  /* modal */

  .hystmodal__window {
    max-width: 668px;
  }

  .modal {
    background-image: url(../img/modal-content-img-768-1.jpeg);
  }

  /* header */
  .search_mobile {
    width: 88.5%;
    height: 100%;
    top: 0;
    background-color: black;
  }
  .search_mobile.is-cliced {
    z-index: 5;
  }
  .search__input {
    margin-left: 10px;
    line-height: 27px;
    min-width: 84.7%;
  }

  .search-close-btn {
    margin-left: 24px
  }

  .search-close-btn svg {
    width: 27px;
    height: 27px;
  }

  .search__btn {
    padding-top: 5px;
  }

  /* hero */

  /* about */

  /* gallery */

  .gallery__container {
    flex-direction: column;
  }

  .filter {
    max-width: 280px;
    flex-basis: 300px;

    margin-bottom: 14px;
  }

  .gallery__headline {
    margin-bottom: 18px;
  }

  .checkbox {
    margin-bottom: 0;
  }

  /* catalog */

  .catalog-wrapper {
    flex-direction: column-reverse;
  }

  .artist {
    margin-right: 0;
  }

  .artist__image {
    margin-bottom: 18px;
  }

  .artist__name {
    margin-bottom: 8px;
  }

  .artist__yars {
    margin-bottom: 6px;
  }

  .artists {
    margin-bottom: 50px;
  }

  .artists__list {
    column-count: 3;

    padding: 25px 0 56px;
  }

  .catalog__discr {
    margin-bottom: 20px;
  }


  .artist-plug  .artist__name {
    margin-bottom: 6px;
  }

  .artist-plug  .artist__info {
    width: 60%;

    margin-bottom: 16px;

    line-height: 22px;
  }

  .artist-plug {
    padding-top: 67.23%;

    background-image: url('../img/artist-plug-768.jpeg');
  }

  /* events */

  .event {
    padding-top: 12.2%;

    background-size: 105%;
  }

  .event__wrapper {
    padding: 0 15px 47px 33px;
    margin-top: 0;
  }

  .event__headline {
    max-width: 85%;
  }

  .event__text {
    max-width: 90%;
  }

  .projects__text {
    margin-bottom: 29px;
  }

  .partners__headline {
    margin-bottom: 28px;
  }

  .projects__item {
    height: 106px;
  }

  .partners__link img {
    width: 80%;
  }

  .partners-slider {
    padding: 0px 52px;
  }

  .partners-slider__btn {
    top: 35.8%;
  }



  /* contacts */


  .contacts__btn {
    margin-top: 13px;
    padding: 10.5px 28px;
  }

  .contacts__form {
    flex-wrap: wrap;
  }

  .contacts__input {
    width: 100%;
  }

  .contacts__label:nth-child(2) {
    margin-right: 0;
  }

  .contacts__label {
    flex-basis: 48.6%;
    margin-right: auto;
  }

  .just-validate-error-label {
    top: -42%;
  }

}

@media screen and (max-width: 695px) {
  .hero__headline {
    line-height: 68px;
    margin-bottom: 0;
    font-size: 63px;
  }

  .artists__list {
    column-count: 2;
  }

  .modal {
    padding-left: 52.6%;
  }

  .hystmodal__window {
    max-width: 568px;
  }

  .modal__content {
    padding: 100px 0 0 17px;
  }
}

@media screen and (max-width: 589px) {

  .hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero__headline {
    line-height: 75px;
    font-size: 60px;

    margin-bottom: 0;
  }

  .slider__control {
    bottom: 0;
    top: unset;
    width: 100%;
    justify-content: center;
  }

  .gallery-slider {
    padding-top: 0;
    padding-bottom: 49px;
  }

  .partners__link img {
    width: 50%;
  }

  /* modal window */

  .hystmodal__window {
    max-width: 290px;
  }

  .modal {
    min-height: 600px;

    padding-top: 200px;
    padding-left: 0;

    flex-direction: column;

    background-position: top;
    background-image: url(../img/modal-content-img-320-1.jpeg);
  }

  .modal__close {
    align-self: flex-end;
    position: absolute;
    top: 0;
  }

  .modal__content {
    padding: 32px 18px 0;
  }
}


@media screen and (max-width: 500px) {
  .container {
    margin: 0 4.69%;
  }


  .footer__logo .logo__image,
  .header__logo .logo__image {
    width: 117px;
  }

  .header__logo .image {
    margin-left: -6px;
  }

  .search_mobile {
    width: 82%;
    right: 14%;
  }

  .burger__line {
    height: 2px;
  }

  .burger__line:nth-child(2) {
    width: 68.33%;
  }

  .burger__line:nth-child(3) {
    width: 39.67%;
  }

  .burger {
    width: 25px;
    height: 16px;

    margin-top: -5px;
  }

  .search-open-btn {
    padding: 0;
    margin-left: 11px;
  }

  .search__input {
    margin-left: 6px;

    line-height: 25px;

    min-width: 90.2%;
  }

  .search-open-btn svg,
  .search__btn:first-child svg {
    width: 19px;
    height: 18px;
  }

  .search-close-btn svg {
    width: 19px;
    height: 19px;
  }

  .search-close-btn {
    margin-left: 11px;
  }

  .hero__headline {
    line-height: 50px;
    font-size: 45px;
  }

  .hero__text {
    margin-bottom: 55px;
    font-size: 16px;
    line-height: 27px;
  }

  .hero__btn {
    font-size: 16px;
    line-height: 18px;
  }

  .artists__list {
    column-count: 1;
  }

  .artists-plug__left {
    flex: 1 1 29%;
    margin-right: 24px;
  }

  .artists-plug__left::after {
    --inset: 4px;
  }

  .artists-plug__right {
    flex: 1 1 60%;
    padding: 1px 0;
  }

  .artist-plug {
    padding-top: 68.97%;

    background-image: url('../img/artist-plug-320.jpeg');
  }

  .artist-plug .artist__info {
    width: 80%;
    line-height: 22px;
    margin-bottom: 5px;
  }

  .partners__link img {
    width: 70%;
  }

  .contacts__label {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contacts__ya-map {
    height: 320px;
  }

  .footer__container {
    flex-direction: column-reverse;
    align-items: center;

    padding: 22px 0;
  }
}


@media screen and (max-width: 400px) {

  .headline:not(.artist__name):not(.event__headline):not(.secondary-headline):not(.hero__headline) {
    font-size: 28px;
    line-height: 38px;
  }

  .about__text {
    font-size: 14px;
    line-height: 28px;
  }

  .secondary-headline {
    font-size: 18px;
    line-height: 32px;
  }


  /* header */

  .footer__logo .logo__image,
  .header__logo .logo__image {
    width: 97px;
  }

  .header__container {
    padding: 8px 0 4px;
  }

  .header__link {
    font-size: 16px;
    line-height: 21px;
  }

  .nav__item:not(:last-child) {
    margin-bottom: 11px;
  }

  .nav-adaptive {
    padding: 52px 15px 26px;
  }

  .header__sign-in {
    padding: 10px 30px 12px 42px;
    font-size: 12.5px;
    line-height: 16px;
  }

  .header__sign-in::before {
    top: 37%;
    left: 27%;

    width: 13px;
    height: 9px;
  }

  .header__sign-in:hover:not(:focus-visible)::before,
  .header__sign-in:focus-visible::before,
  .header__sign-in:active::before {
    left: 25%;
  }

  .header__logo {
    padding-top: 4px;
  }

  /* hero */

  .hero__container {
    padding: 31px 0 56px;
  }

  .hero__headline {
    font-size: 32px;
    line-height: 44px;
  }

  .hero__text {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;

    width: 97%;
    margin: 0 auto;
    margin-bottom: 52px;
  }

  .hero__content {
    max-width: 252px;
  }

  .hero__btn {
    padding: 12px 20px;

    font-size: 12px;
    line-height: 16px;
  }

  /* about */

  .about__container {
    padding: 51px 0 42px;
  }

  .about__headline {
    margin-bottom: 11px;
  }

  /* gallery */

  .gallery__container {
    padding: 50px 0 47px;
  }

  .gallery__headline {
    margin-bottom: 12px;
  }

  .filter {
    max-width: initial;
    flex-basis: 253px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .filter__text:not(.checkbox__text) {
    font-size: 17px;
  }

  .choices[data-type*=select-one] {
    margin-top: 4px;
  }

  .gallery-slider {
    padding-left: 8.58%;
    padding-right: 8.58%;
  }

  /* catalog */

  .catalog__container {
    padding-top: 51px;
  }

  .catalog__headline {
    margin: 0;
  }

  .catalog__text {
    display: none;
  }

  .catalog__discr {
    margin-bottom: 12px;
  }

  .artists__list {
    padding: 19px 0 21px;
  }

  .artists__summary {
    padding: 20px 0;
  }

  .artists__summary::after {
    top: 30.9%;

    width: 26px;
    height: 26px;
  }

  .artists__summary::before {
    width: 7px;
    height: 7px;

    right: 11px;
    top: 43%;
  }

  .artists__details[open] .artists__summary::before {
    top: 47%;
    right: 11px;
  }

  .artist__image {
    margin-bottom: 16px;
  }

  .artist__yars {
    margin-bottom: 12px;
  }

  .artists-plug__headline {
    margin-bottom: 5px;
  }

  .artists-plug__text {
    line-height: 22px;
    margin-bottom: 4px;
  }

  /* event */

  .events__container {
    padding-top: 50px;
  }

  .event {
    padding-top: 14.96%;

   background-size: 115%;
  }

  .events__headline {
    margin-bottom: 13px;
  }

  .event__headline {
    margin-bottom: 4px;
  }

  .event__wrapper {
    padding: 0 16px 49px 22px;
  }

  .event__info {
    margin-bottom: 10px;
  }

  .event__text {
    padding-right: 12px;
  }

  .event__link {
    margin-left: 6px;
  }

  .event-slider__pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -20px;
  }

  /* project */

  .projects__text {
    margin-bottom: 52px;
  }

  .projects__container {
    padding: 70px 0 6px;
  }

  .projects__headline {
    margin-bottom: 12px;
  }

  .projects__item {
    height: 65px;
  }

  .partners__headline {
    margin-bottom: 11px;
  }

  .partners-slider {
    padding: 0px 47px;
  }

  .partners__link img {
    width: 55%;
  }

  .partners-slider__btn {
    top: 26.5%;
  }

  .partners-slider__btn_next {
    right: -1px;
  }

  /* contacts */

  .contacts__wrapper {
    border: 0;
    overflow: hidden;
  }

  .contacts__container {
    padding: 44px 0 15px;
  }

  .address__headline {
    line-height: 25px;
    margin-bottom: -2px;
  }

  .address {
    margin-bottom: 14px;
  }

  .contacts__input {
    padding: 3px 24px;
  }

  .contacts__btn {
    font-size: 12px;
    line-height: 16px;

    margin: 0;
    padding: 9.5px 33px;
  }

  .contacts__form {
    margin-bottom: 21px;
  }

  .contacts__headline_left {
    letter-spacing: -0.4px;
  }
  .contacts__link svg {
    width: 50px;
    height: 50px;
  }

  .mobile-show {
    display: none;
  }

  .just-validate-error-label {
    top: -53%;
  }

  /* footer */

  .footer__item svg {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 320px) {
  .gallery-slider {
    padding-right: 0;
    padding-left: 0;
  }
}
