.header {
  padding: 16px 64px;
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  z-index: 3;
}
@media (max-width: 640px) {
  .header {
    padding: 16px 20px;
  }
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo-wrapper {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media (max-width: 640px) {
  .header__logo-wrapper {
    column-gap: 12px;
  }
}
.header__logo {
  height: 32px;
  width: 23px;
}
@media (max-width: 640px) {
  .header__logo {
    width: 24px;
    height: 32px;
  }
}
.header__logo-link {
  color: #414042;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .header__logo-link {
    font-size: 16px;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1024px) {
  .header__burger {
    width: 24px;
    height: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .header__burger {
    width: 16px;
    height: 12px;
  }
}
@media (max-width: 1024px) {
  .header__burger span {
    background-color: #969696;
    width: 100%;
    height: 2px;
    border-radius: 8px;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .header__burger span {
    height: 2px;
  }
}
.header__burger-close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50px;
  right: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .header__burger-close {
    width: 24px;
    height: 24px;
    top: 20px;
    right: 20px;
  }
}
@media (max-width: 440px) {
  .header__burger-close {
    top: 0;
    right: 0;
    width: 16px;
    height: 12px;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list-social {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
}
@media (max-width: 640px) {
  .header__nav-list-social {
    column-gap: 32px;
  }
}
.header__nav-list-social > li a svg {
  width: 32px;
  height: 32px;
}
.header__nav-list--mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
  margin-bottom: 200px;
}
@media (max-width: 640px) {
  .header__nav-list--mobile {
    row-gap: 24px;
    margin-bottom: 64px;
  }
}
.header__nav-list--mobile > li a {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 1px;
}
@media (max-width: 640px) {
  .header__nav-list--mobile > li a {
    font-size: 24px;
    line-height: 34px;
  }
}
.header__nav--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .header__nav--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    background: #414042;
    transition: opacity 0.2s, transform 0.2s;
    transform: scale(0.95);
    opacity: 0;
    max-height: 100vh;
    overflow-y: auto;
    z-index: 1000;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .header__nav--mobile {
    padding: 32px 20px;
  }
}
@media (max-width: 1024px) {
  .header__nav--mobile.active {
    transform: scale(1);
    opacity: 1;
    width: 100%;
    height: 100%;
  }
}
.header__nav-wrapper--mobile {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 26px;
  list-style: none;
}
.header__nav-list-link {
  color: #969696;
  text-align: center;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.current-menu-item .header__nav-list-link {
  color: #414042;
  font-weight: 700;
}

body.lock,
html.lock {
  overflow: hidden;
}

.hero__wrapper {
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  position: relative;
}
.hero__wrapper > div {
  pointer-events: none;
}
@media (max-width: 992px) {
  .hero__wrapper {
    height: 100%;
  }
}
.hero__img-wrapper {
  height: calc(100vh - 64px);
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .hero__img-wrapper {
    height: calc(100vh - 204px);
  }
}
@media (max-width: 992px) {
  .hero__img-wrapper {
    height: 100%;
  }
}
.hero__img-bg {
  mix-blend-mode: multiply;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 1;
}
.hero__title {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .hero__title {
    font-size: 32px;
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 440px) {
  .hero__title {
    font-size: 20px;
    line-height: 24px;
    max-width: 165px;
  }
}
.hero__description {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 48px;
}
@media (max-width: 640px) {
  .hero__description {
    font-size: 20px;
  }
}
@media (max-width: 440px) {
  .hero__description {
    font-size: 12px;
    line-height: 24px;
  }
}
.hero__text {
  padding: 80px 0;
  max-width: 865px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero__text {
    max-width: 572px;
    margin: 0 auto;
    padding: 64px 0;
  }
}
@media (max-width: 640px) {
  .hero__text {
    padding: 32px 20px;
  }
}
@media (max-width: 440px) {
  .hero__text {
    padding: 24px 20px;
  }
}
.hero__text p {
  color: #666;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
}
@media (max-width: 1024px) {
  .hero__text p {
    color: #666;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
  }
}
@media (max-width: 440px) {
  .hero__text p {
    font-size: 14px;
    line-height: 20px;
    max-width: 250px;
    margin: 0 auto;
  }
}

.works {
  padding-bottom: 80px;
}
@media (max-width: 1366px) {
  .works {
    padding: 0 20px 80px 20px;
  }
}
@media (max-width: 1024px) {
  .works {
    padding: 0 20px 60px 20px;
  }
}
@media (max-width: 440px) {
  .works {
    padding-bottom: 40px;
  }
}
.works__wrapper {
  max-width: 1312px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .works__wrapper {
    max-width: 896px;
    gap: 8px 16px;
  }
}
@media (max-width: 768px) {
  .works__wrapper {
    gap: 16px 24px;
  }
}
@media (max-width: 440px) {
  .works__wrapper {
    gap: 8px;
    margin-bottom: 20px;
  }
}
.works__item {
  width: calc(33.3333333333% - 22px);
  color: #666;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
}
.works__item:hover .works__item-img {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .works__item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 440px) {
  .works__item {
    width: calc(50% - 4px);
  }
}
.works__item-img-wrapper {
  max-width: 416px;
  max-height: 416px;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
}
.works__item-img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.2s linear;
}
.works__item-title {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .works__item-title {
    height: 64px;
    font-size: 16px;
    line-height: 24px;
    max-width: 200px;
  }
}
@media (max-width: 440px) {
  .works__item-title {
    height: 44px;
    font-size: 12px;
    line-height: 16px;
    max-width: 133px;
  }
}
.works__btn {
  color: #969696;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  max-width: 297px;
  border-radius: 8px;
  border: 2px solid #969696;
  padding: 24px 48px;
}
@media (max-width: 1024px) {
  .works__btn {
    font-size: 16px;
    line-height: normal;
    max-width: 257px;
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .works__btn {
    font-size: 14px;
    padding: 12px 16px;
    max-width: 174px;
  }
}

.services {
  padding-bottom: 80px;
}
@media (max-width: 1366px) {
  .services {
    padding: 0 20px 80px 20px;
  }
}
@media (max-width: 440px) {
  .services {
    padding-bottom: 42px;
  }
}
.services__title {
  color: #666;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .services__title {
    margin-bottom: 64px;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .services__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 440px) {
  .services__title {
    font-size: 16px;
    line-height: 20px;
    max-width: 260px;
    margin: 0 auto 42px auto;
  }
}
.services__wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1312px;
  margin: 0 auto;
  column-gap: 32px;
}
@media (max-width: 1024px) {
  .services__wrapper {
    column-gap: 16px;
    max-width: 896px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .services__wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 440px) {
  .services__wrapper {
    gap: 8px;
  }
}
.services__item {
  text-decoration: none;
  width: calc(25% - 24px);
}
@media (max-width: 1024px) {
  .services__item {
    width: calc(25% - 12px);
  }
}
@media (max-width: 768px) {
  .services__item {
    width: calc(33.3333333333% - 12px);
  }
}
@media (max-width: 440px) {
  .services__item {
    width: calc(33.3333333333% - 6px);
  }
}
.services__item:hover .services__item-img {
  transform: scale(1.2);
}
.services__item-img-wrapper {
  overflow: hidden;
  max-width: 304px;
  max-height: 304px;
  aspect-ratio: 1/1;
  height: auto;
}
.services__item-img {
  width: 100%;
  height: 100%;
  transition: all 0.2s linear;
}
.services__item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: #666;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .services__item-link {
    height: 64px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 440px) {
  .services__item-link {
    height: 44px;
    font-size: 12px;
    line-height: 16px;
  }
}

.styles {
  padding-bottom: 160px;
}
@media (max-width: 1366px) {
  .styles {
    padding: 0 20px 160px 20px;
  }
}
@media (max-width: 1024px) {
  .styles {
    padding-bottom: 100px;
  }
}
@media (max-width: 576px) {
  .styles {
    padding-bottom: 64px;
  }
}
.styles__title {
  color: #666;
  text-align: center;
  font-size: 32px;
  margin-bottom: 80px;
  font-weight: 600;
  line-height: 48px;
}
@media (max-width: 1024px) {
  .styles__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 64px;
  }
}
@media (max-width: 576px) {
  .styles__title {
    font-size: 16px;
    line-height: 20px;
    max-width: 260px;
    margin: 0 auto 42px auto;
  }
}
.styles__wrapper {
  max-width: 1312px;
  margin: 0 auto;
  max-height: 750px;
  overflow: hidden;
}
.styles__wrapper:after {
  content: "";
  bottom: -1px;
  left: 0;
  position: absolute;
  height: 250px;
  display: block;
  z-index: 1;
  background: linear-gradient(0deg, #FFF 40%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
}
@media (max-width: 1024px) {
  .styles__wrapper:after {
    bottom: -4px;
  }
}
@media (max-width: 576px) {
  .styles__wrapper:after {
    height: 100px;
    bottom: -6px;
  }
}
@media (max-width: 576px) {
  .styles__wrapper {
    max-height: 450px;
  }
}
.styles__item {
  max-width: 205px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .styles__item {
    width: calc(25% - 12px);
    margin-bottom: 8px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .styles__item {
    width: calc(25% - 6px);
  }
}
@media (max-width: 576px) {
  .styles__item {
    width: calc(33.3333333333% - 6px);
  }
}
.styles__item img {
  border-radius: 8px;
  display: block;
  width: 100%;
  height: 100%;
}
.styles__btn {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 2px solid #969696;
  padding: 24px 48px;
  max-width: 267px;
  text-align: center;
  color: #969696;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  top: -60px;
  z-index: 1;
}
@media (max-width: 576px) {
  .styles__btn {
    font-size: 14px;
    padding: 12px 16px;
    max-width: 140px;
    top: -10px;
  }
}

.quote {
  max-width: 843px;
  margin: 0 auto;
  padding-bottom: 32px;
}
@media (max-width: 1024px) {
  .quote {
    max-width: 592px;
  }
}
@media (max-width: 576px) {
  .quote {
    max-width: 100%;
    margin: 0 50px;
  }
}
.quote__wrapper .swiper-wrapper {
  display: flex;
}
.quote__wrapper .swiper-pagination {
  position: static;
  margin: 110px auto 0 auto;
  display: flex;
  align-items: center;
  column-gap: 16px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .quote__wrapper .swiper-pagination {
    margin-top: 80px;
    column-gap: 24px;
  }
}
@media (max-width: 576px) {
  .quote__wrapper .swiper-pagination {
    margin-top: 42px;
    column-gap: 12px;
  }
}
.quote__wrapper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 10px;
  height: 10px;
}
.quote__wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #969696 !important;
}
.quote__slide-content {
  color: #666;
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 45px;
}
@media (max-width: 1024px) {
  .quote__slide-content {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .quote__slide-content {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
.quote__slide-sign {
  font-size: 28px;
  line-height: 32px;
  color: #666;
  max-width: 405px;
}
@media (max-width: 1024px) {
  .quote__slide-sign {
    font-size: 16px;
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .quote__slide-sign {
    font-size: 12px;
    line-height: 16px;
    max-width: 247px;
  }
}
.quote__slide-sign-name {
  font-weight: bolder;
}

.work {
  background-color: #F5F5F5;
  padding: 64px 0 80px 0;
}
@media (max-width: 1024px) {
  .work {
    padding: 32px 0;
  }
}
.work__filters {
  max-width: 1088px;
  margin: 0 auto 64px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
}
@media (max-width: 1366px) {
  .work__filters {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .work__filters {
    margin-bottom: 32px;
    gap: 8px 16px;
  }
}
@media (max-width: 640px) {
  .work__filters {
    display: none;
  }
}
.work__filters--mobile {
  display: none;
}
@media (max-width: 640px) {
  .work__filters--mobile {
    display: block;
  }
}
.work__filters--mobile select {
  font-size: 20px;
  padding: 20px 32px;
  color: #969696;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  outline: none;
  border-radius: 8px;
  border: 2px solid #969696;
  appearance: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #F5F5F5 url("../images/icn-arrow.svg") no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
  width: 100%;
}
@media (max-width: 440px) {
  .work__filters--mobile select {
    padding: 10px 20px;
    font-size: 16px;
  }
}
.work__filter {
  width: calc(20% - 26px);
  text-align: center;
  color: #969696;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .work__filter {
    font-size: 16px;
    line-height: 20px;
    height: 32px;
  }
}
.work__filter--active span {
  color: #414042;
  position: relative;
}
.work__filter--active span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #414042;
  bottom: -10px;
  left: 0;
}
.work__video {
  max-width: 1376px;
  height: 774px;
  margin: 0 auto;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .work__video {
    margin-bottom: 40px;
  }
}
.work__video > div {
  background-blend-mode: overlay;
  position: relative;
  pointer-events: none;
}
.work__video > div:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.3);
}
.work__content {
  position: absolute !important;
  top: 50%;
  left: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  color: #FFF;
}
.work__content:after {
  display: none;
}
.work__title {
  color: #FFF;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .work__title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .work__title {
    font-size: 20px;
  }
}
@media (max-width: 440px) {
  .work__title {
    margin-bottom: 0;
  }
}
.work__description {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
}
@media (max-width: 992px) {
  .work__description {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 640px) {
  .work__description {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 440px) {
  .work__description {
    font-size: 14px;
    line-height: 16px;
  }
}
.work__items {
  max-width: 1312px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}
@media (max-width: 1366px) {
  .work__items {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .work__items {
    gap: 16px;
    max-width: 896px;
  }
}
.work__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  max-width: 304px;
  width: 100%;
}
@media (max-width: 1366px) {
  .work__item {
    width: calc(25% - 24px);
  }
}
@media (max-width: 1024px) {
  .work__item {
    width: calc(25% - 12px);
  }
}
@media (max-width: 768px) {
  .work__item {
    width: calc(33.3333333333% - 12px);
  }
}
@media (max-width: 576px) {
  .work__item {
    width: calc(50% - 8px);
  }
}
.work__item:hover img {
  transform: scale(110%);
}
.work__item-title {
  color: #666;
  text-align: center;
  font-size: 20px;
  max-width: 260px;
  font-weight: 600;
  line-height: 28px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .work__item-title {
    height: 64px;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 576px) {
  .work__item-title {
    height: 32px;
    font-size: 14px;
    line-height: 16px;
    margin-top: 12px;
  }
}
@media (max-width: 440px) {
  .work__item-title {
    font-size: 13px;
    line-height: 14px;
  }
}
.work__item-img-wrapper {
  max-width: 304px;
  max-height: 304px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.work__item-img-wrapper > img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.4s linear;
}

.artists {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media (max-width: 1366px) {
  .artists {
    padding: 64px 20px;
  }
}
@media (max-width: 640px) {
  .artists {
    padding: 32px 20px;
  }
}
.artists__title {
  color: #666;
  font-size: 40px;
  font-weight: 700;
  max-width: 1089px;
  margin: 0 auto 20px auto;
}
@media (max-width: 1024px) {
  .artists__title {
    max-width: 746px;
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .artists__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (max-width: 440px) {
  .artists__title {
    margin-bottom: 0;
  }
}
.artists__description {
  font-size: 20px;
  line-height: 28px;
  max-width: 1089px;
  margin: 0 auto 64px auto;
  color: #666;
}
.artists__description p:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .artists__description {
    font-size: 16px;
    line-height: 20px;
    max-width: 746px;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .artists__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.artists__filters {
  max-width: 1312px;
  margin: 0 auto 64px auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.artists__filters--mobile {
  display: none;
}
@media (max-width: 640px) {
  .artists__filters--mobile {
    display: block;
    width: 100%;
    margin-bottom: 32px;
  }
  .artists__filters--mobile select {
    width: 100%;
    font-size: 20px;
    padding: 20px 32px;
    color: #969696;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    outline: none;
    border-radius: 8px;
    border: 1px solid #969696;
    appearance: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #F5F5F5 url("../images/icn-arrow.svg") no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
  }
}
@media (max-width: 640px) and (max-width: 440px) {
  .artists__filters--mobile select {
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .artists__filters {
    max-width: 896px;
    margin-bottom: 48px;
  }
}
@media (max-width: 640px) {
  .artists__filters {
    display: none;
  }
}
.artists__filter {
  width: calc(16.6666666667% - 16px);
  text-align: center;
  color: #969696;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .artists__filter {
    font-size: 16px;
  }
}
.artists__filter--active span {
  color: #414042;
  position: relative;
}
.artists__filter--active span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #414042;
  bottom: -10px;
  left: 0;
}
.artists__items {
  display: flex;
  flex-wrap: wrap;
  max-width: 1312px;
  margin: 0 auto;
  gap: 32px 16px;
}
@media (max-width: 640px) {
  .artists__items {
    row-gap: 20px;
  }
}
.artists__item {
  position: relative;
  width: calc(50% - 8px);
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 32px;
}
.artists__item-content {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 36px;
}
@media (max-width: 1024px) {
  .artists__item-content {
    margin-bottom: 24px;
  }
}
@media (max-width: 640px) {
  .artists__item-content {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .artists__item-content {
    column-gap: 12px;
  }
}
.artists__item-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .artists__item-avatar {
    flex-shrink: 0;
  }
}
@media (max-width: 640px) {
  .artists__item-avatar {
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 440px) {
  .artists__item-avatar {
    width: 50px;
    height: 50px;
  }
}
.artists__item-avatar > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.artists__item-name {
  font-size: 24px;
  color: #414042;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .artists__item-name {
    font-size: 20px;
  }
}
@media (max-width: 440px) {
  .artists__item-name {
    font-size: 14px;
    line-height: 100%;
  }
}
.artists__item-occupation {
  font-size: 16px;
  line-height: 24px;
  color: #414042;
  font-weight: 600;
  display: block;
}
@media (max-width: 440px) {
  .artists__item-occupation {
    font-size: 12px;
    line-height: 100%;
  }
}
.artists__item-occupation-full {
  font-size: 16px;
  line-height: 24px;
  color: #414042;
}
@media (max-width: 640px) {
  .artists__item-occupation-full {
    display: none;
  }
}
.artists__item-mail {
  font-size: 16px;
  line-height: 24px;
  color: #414042;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  z-index: 3;
}
@media (max-width: 640px) {
  .artists__item-mail {
    display: none;
  }
}
.artists__item-images {
  display: flex;
  column-gap: 9px;
}
.artists__item-images .artists__description {
  margin: 64px auto;
}
@media (max-width: 992px) {
  .artists__item-images .artists__description {
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .artists__item-images {
    column-gap: 8px;
  }
}
@media (max-width: 640px) {
  .artists__item-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "first  second" "first  third";
    gap: 8px;
  }
}
.artists__item-image-wrapper {
  border-radius: 8px;
  max-width: 189px;
  height: auto;
  max-height: 189px;
  position: relative;
  z-index: 0;
}
.artists__item-image-wrapper:last-child {
  position: relative;
}
.artists__item-image-wrapper:last-child:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 640px) {
  .artists__item-image-wrapper:last-child:after {
    display: none;
  }
}
.artists__item-image-wrapper > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .artists__item-image-wrapper {
    max-width: 100%;
    max-height: 100%;
    width: calc(33.3333333333% - 4px);
  }
}
@media (max-width: 640px) {
  .artists__item-image-wrapper:first-child {
    grid-area: first;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .artists__item-image-wrapper:nth-child(2) {
    grid-area: second;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .artists__item-image-wrapper:nth-child(3) {
    grid-area: third;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.artists__item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 1024px) {
  .artists__item {
    padding: 24px 32px;
  }
}
@media (max-width: 992px) {
  .artists__item {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .artists__item {
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
}

.artist-hero {
  background-color: #F5F5F5;
}
.artist-hero__img-wrapper {
  width: 100%;
  height: auto;
}
.artist-hero__img-wrapper + .artist-hero__info {
  margin-top: -95px;
}
@media (max-width: 1024px) {
  .artist-hero__img-wrapper + .artist-hero__info {
    margin-top: -75px;
  }
}
.artist-hero__img-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 320px;
}
@media (max-width: 576px) {
  .artist-hero__img-wrapper > img {
    min-height: 200px;
  }
}
@media (max-width: 440px) {
  .artist-hero__img-wrapper > img {
    min-height: 130px;
  }
}
.artist-hero__info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.artist-hero__info-avatar-wrapper {
  border-radius: 50%;
  max-width: 192px;
  max-height: 192px;
  border: 6px solid #F5F5F5;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .artist-hero__info-avatar-wrapper {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 20px;
  }
}
.artist-hero__info-avatar-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
  border-radius: 50%;
}
.artist-hero__info-title {
  color: #414042;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .artist-hero__info-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .artist-hero__info-title {
    font-size: 28px;
    line-height: 32px;
  }
}
.artist-hero__info-occupation {
  color: #414042;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .artist-hero__info-occupation {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .artist-hero__info-occupation {
    font-size: 24px;
    line-height: 28px;
  }
}
.artist-hero__info-occupation--full {
  color: #414042;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .artist-hero__info-occupation--full {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  .artist-hero__info-occupation--full {
    max-width: 220px;
    font-size: 14px;
    line-height: 18px;
  }
}
.artist-hero__info-contacts {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .artist-hero__info-contacts {
    flex-direction: column;
    row-gap: 12px;
  }
}
.artist-hero__info-contact {
  color: #414042;
  position: relative;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
  line-height: 28px;
  padding-left: 59px;
}
@media (max-width: 1024px) {
  .artist-hero__info-contact {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  .artist-hero__info-contact {
    padding-left: 40px;
  }
}
.artist-hero__info-contact--mail:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url("../images/icn-email.svg") center no-repeat;
}
@media (max-width: 576px) {
  .artist-hero__info-contact--mail:after {
    width: 32px;
    height: 32px;
    background-size: contain;
  }
}
.artist-hero__info-contact--tel {
  padding-left: 49px;
}
@media (max-width: 576px) {
  .artist-hero__info-contact--tel {
    padding-left: 40px;
  }
}
.artist-hero__info-contact--tel:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: url("../images/icn-phone.svg") center no-repeat;
}
@media (max-width: 576px) {
  .artist-hero__info-contact--tel:after {
    width: 32px;
    height: 32px;
    background-size: contain;
  }
}

.artist-tabs {
  background-color: #F5F5F5;
}
.artist-tabs__wrapper {
  max-width: 1312px;
  margin: 0 auto;
  padding-bottom: 80px;
  border-bottom: 1px solid #969696;
}
@media (max-width: 1024px) {
  .artist-tabs__wrapper {
    padding-bottom: 64px;
  }
}
@media (max-width: 576px) {
  .artist-tabs__wrapper {
    padding-bottom: 32px;
  }
}
.artist-tabs__tab-header {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  max-width: 650px;
  width: 100%;
  margin: 0 auto 64px auto;
  height: 48px;
}
@media (max-width: 1024px) {
  .artist-tabs__tab-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .artist-tabs__tab-header {
    margin-bottom: 24px;
  }
}
.artist-tabs__tab-button {
  width: calc(33.3333333333% - 16px);
  text-align: center;
  background: transparent;
  outline: none;
  border: none;
  color: #969696;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 576px) {
  .artist-tabs__tab-button {
    font-size: 16px;
    line-height: 20px;
  }
}
.artist-tabs__tab-button.active span {
  color: #414042;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  padding-bottom: 9px;
  border-bottom: 4px solid #414042;
}
@media (max-width: 576px) {
  .artist-tabs__tab-button.active span {
    font-size: 16px;
    line-height: 20px;
    border-bottom: 2px solid #414042;
    padding-bottom: 6px;
  }
}
.artist-tabs__tab-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  height: 0;
  overflow: hidden;
}
.artist-tabs__tab-item.active {
  opacity: 1;
  height: auto;
}

@media (max-width: 1366px) {
  .artist__bio {
    padding: 0 20px;
  }
}
.artist__bio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .artist__bio-header {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.artist__bio-header-icons {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (max-width: 992px) {
  .artist__bio-header-icons {
    display: none;
  }
}
.artist__bio-header-icons--mobile {
  display: none;
}
@media (max-width: 992px) {
  .artist__bio-header-icons--mobile {
    display: flex;
    margin-bottom: 32px;
  }
}
@media (max-width: 576px) {
  .artist__bio-header-icons--mobile {
    margin-bottom: 0;
  }
}
.artist__bio-header-icon-link {
  text-decoration: none;
  color: #414042;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 140% */
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media (max-width: 992px) {
  .artist__bio-header-icon-link {
    font-size: 18px;
    line-height: 20px;
  }
}
.artist__bio-header-icon-link svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.artist__bio-header-title {
  margin: 0 auto 32px 0;
  color: #666;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  max-width: 864px;
}
@media (max-width: 992px) {
  .artist__bio-header-title {
    font-size: 20px;
    line-height: 22px;
    max-width: 100%;
    margin-bottom: 0;
  }
}
.artist__bio-body p {
  font-size: 20px;
  color: #666;
  font-feature-settings: "clig" off, "liga" off;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  max-width: 864px;
}
.artist__bio-body p:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .artist__bio-body p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
    max-width: 100%;
  }
}

.artist-collections {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media (max-width: 1366px) {
  .artist-collections {
    padding: 64px 20px;
  }
}
@media (max-width: 576px) {
  .artist-collections {
    padding: 32px 20px;
  }
}
.artist-collections__wrapper {
  max-width: 1376px;
  margin: 0 auto;
}
.artist-collections__title {
  max-width: 1312px;
  margin: 0 auto 32px auto;
  color: #414042;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1024px) {
  .artist-collections__title {
    max-width: 896px;
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .artist-collections__title {
    margin-bottom: 16px;
  }
}
.artist-collections__items {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 1024px) {
  .artist-collections__items {
    max-width: 968px;
    margin: 0 auto;
    row-gap: 24px;
  }
}
.artist-collections__item {
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  padding: 48px 32px;
  position: relative;
}
.artist-collections__item .artist-collections__item-img-wrapper:last-child:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 576px) {
  .artist-collections__item .artist-collections__item-img-wrapper:last-child:after {
    display: none;
  }
}
@media (max-width: 1024px) {
  .artist-collections__item {
    padding: 40px 32px;
  }
}
@media (max-width: 576px) {
  .artist-collections__item {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
@media (max-width: 440px) {
  .artist-collections__item {
    padding: 12px;
  }
}
.artist-collections__item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.artist-collections__item-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .artist-collections__item-info {
    margin-bottom: 0;
  }
}
.artist-collections__item-title {
  font-size: 28px;
  line-height: 100%;
  color: #414042;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .artist-collections__item-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 440px) {
  .artist-collections__item-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.artist-collections__item-count {
  color: #414042;
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
}
@media (max-width: 440px) {
  .artist-collections__item-count {
    font-size: 12px;
  }
}
.artist-collections__item-mobile-count {
  display: none;
}
@media (max-width: 576px) {
  .artist-collections__item-mobile-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
  }
}
.artist-collections__item-btn {
  border-radius: 8px;
  border: 2px solid #969696;
  text-decoration: none;
  color: #969696;
  text-align: center;
  font-size: 16px;
  padding: 17px 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1024px) {
  .artist-collections__item-btn {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .artist-collections__item-btn {
    display: none;
  }
}
.artist-collections__item-images {
  display: flex;
  align-items: stretch;
  column-gap: 8px;
}
@media (max-width: 576px) {
  .artist-collections__item-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "first  second" "first  third";
    gap: 8px;
  }
  .artist-collections__item-images > :nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 440px) {
  .artist-collections__item-images {
    gap: 4px;
  }
}
.artist-collections__item-img-wrapper {
  width: 20%;
}
.artist-collections__item-img-wrapper:last-child {
  position: relative;
}
@media (max-width: 576px) {
  .artist-collections__item-img-wrapper:first-child {
    grid-area: first;
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
    max-width: 100% !important;
  }
  .artist-collections__item-img-wrapper:nth-child(2) {
    grid-area: second;
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
    max-width: 100% !important;
  }
  .artist-collections__item-img-wrapper:nth-child(3) {
    grid-area: third;
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
    position: relative;
    max-width: 100% !important;
  }
}
.artist-collections__item-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #D9D9D9;
  max-height: 252px;
}
@media (max-width: 576px) {
  .artist-collections__item-img {
    max-height: 100%;
  }
}

.artist-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -10;
  visibility: hidden;
  opacity: 0;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.8);
  padding: 32px 0;
}
@media (max-width: 992px) {
  .artist-popup {
    padding: 32px 20px;
  }
}
.artist-popup.active {
  z-index: 10;
  opacity: 1;
  visibility: visible;
}
.artist-popup__wrapper {
  border-radius: 16px;
  background: #F5F5F5;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 84px;
}
@media (max-width: 1200px) {
  .artist-popup__wrapper {
    max-width: 808px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .artist-popup__wrapper {
    padding-bottom: 32px;
  }
}
.artist-popup__wrapper .artists__items {
  padding-bottom: 80px;
  border-bottom: 1px solid #969696;
  max-width: 1090px;
}
@media (max-width: 1200px) {
  .artist-popup__wrapper .artists__items {
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .artist-popup__wrapper .artists__items {
    max-width: calc(100% - 40px);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 32px;
  }
}
.artist-popup__wrapper .artists__items-title {
  border-top: 1px solid #969696;
  padding-top: 80px;
  max-width: 1090px;
  color: #414042;
  font-size: 28px;
  margin: 0 auto;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1200px) {
  .artist-popup__wrapper .artists__items-title {
    padding-top: 64px;
    padding-left: 32px;
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .artist-popup__wrapper .artists__items-title {
    padding: 32px 20px 0 20px;
    max-width: calc(100% - 40px);
  }
}
.artist-popup__wrapper .artists__items .artists__item {
  padding: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__wrapper .artists__items .artists__item {
    display: flex;
    flex-direction: column-reverse;
    padding: 16px;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-content {
    margin-bottom: 0;
    column-gap: 16px;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-content .artists__item-avatar {
    width: 56px;
    height: 56px;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-content .artists__item-name {
    font-size: 16px;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-content .artists__item-occupation {
    font-size: 14px;
    line-height: 20px;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-content .artists__item-mail {
    display: none;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-images {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "first  second" "first  third";
    gap: 8px;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-images .artists__item-image-wrapper {
    max-width: 100%;
    max-height: 100%;
    width: auto;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-images .artists__item-image-wrapper:first-child {
    grid-area: first;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-images .artists__item-image-wrapper:nth-child(2) {
    grid-area: second;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-images .artists__item-image-wrapper:nth-child(3) {
    grid-area: third;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .artist-popup__wrapper .artists__items .artists__item .artists__item-images .artists__item-image-wrapper:nth-child(3):after {
    display: none;
  }
}
.artist-popup__wrapper .artists__items .artists__item .artists__item-avatar {
  flex-shrink: 0;
}
.artist-popup__wrapper .artists__items .artists__item .artists__item-occupation {
  display: block;
}
.artist-popup__wrapper .artists__items .artists__item .artists__item-image-wrapper {
  max-width: 152px;
  max-height: 152px;
}
.artist-popup__btn-close {
  position: absolute;
  top: -10px;
  right: -100px;
  cursor: pointer;
}
.artist-popup__btn-close svg {
  pointer-events: none;
}
@media (max-width: 1366px) {
  .artist-popup__btn-close {
    right: -40px;
  }
}
@media (max-width: 992px) {
  .artist-popup__btn-close {
    right: 20px;
    top: 20px;
    padding: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .artist-popup__btn-close svg g path {
    stroke: #969696;
  }
}
.artist-popup__img-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__img-wrapper {
    margin-bottom: 24px;
  }
}
@media (max-width: 640px) {
  .artist-popup__img-wrapper {
    margin-bottom: 24px;
  }
}
.artist-popup__img-wrapper > img {
  width: 100%;
  height: 100%;
  display: block;
  max-height: 650px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  object-fit: cover;
}
.artist-popup__content {
  max-width: 863px;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .artist-popup__content {
    max-width: 592px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 32px;
  }
}
.artist-popup__content-img-wrapper {
  margin-bottom: 80px;
  max-width: 863px;
  height: auto;
}
@media (max-width: 1200px) {
  .artist-popup__content-img-wrapper {
    margin-bottom: 48px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content-img-wrapper {
    margin-bottom: 24px;
  }
}
.artist-popup__content-img-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artist-popup__content-img-wrapper figcaption {
  color: #969696;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__content-img-wrapper figcaption {
    font-size: 14px;
    line-height: 24px;
  }
}
.artist-popup__content h3 {
  color: #414042;
  font-size: 22px;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__content h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content h3 {
    margin-bottom: 12px;
  }
}
.artist-popup__title {
  color: #414042;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__title {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .artist-popup__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.artist-popup__subtitle {
  color: #666;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 32px;
  display: block;
  max-width: 790px;
}
@media (max-width: 1200px) {
  .artist-popup__subtitle {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 640px) {
  .artist-popup__subtitle {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
.artist-popup__text {
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .artist-popup__text {
    margin-bottom: 48px;
  }
}
@media (max-width: 640px) {
  .artist-popup__text {
    margin-bottom: 24px;
  }
}
.artist-popup__text p {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__text p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 640px) {
  .artist-popup__text p {
    font-size: 14px;
    line-height: 18px;
  }
}
.artist-popup__text p:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .artist-popup__text p:not(:last-child) {
    margin-bottom: 12px;
  }
}
.artist-popup__video {
  position: relative;
}
.artist-popup__video .video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.artist-popup__video-caption {
  color: #969696;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__video-caption {
    font-size: 14px;
    line-height: 24px;
  }
}
.artist-popup__credits {
  max-width: 1090px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: 1px solid #969696;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .artist-popup__credits {
    max-width: 744px;
    padding: 50px 20px;
  }
}
@media (max-width: 640px) {
  .artist-popup__credits {
    padding: 32px 0;
    max-width: calc(100% - 40px);
  }
}
.artist-popup__credits-title {
  color: #414042;
  font-size: 28px;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}
@media (max-width: 1200px) {
  .artist-popup__credits-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 440px) {
  .artist-popup__credits-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.artist-popup__credits-item:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__credits-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.artist-popup__credits-item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
}
.artist-popup__credits-item-caption {
  font-size: 16px;
  color: #969696;
}
@media (max-width: 440px) {
  .artist-popup__credits-item-caption {
    font-size: 12px;
  }
}
.artist-popup__credits-item-value {
  color: #969696;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1200px) {
  .artist-popup__credits-item-value {
    font-size: 24px;
  }
}
@media (max-width: 440px) {
  .artist-popup__credits-item-value {
    font-size: 14px;
  }
}
.artist-popup__like {
  max-width: 1090px;
  margin: 0 auto;
  padding-top: 80px;
}
@media (max-width: 1200px) {
  .artist-popup__like {
    max-width: 744px;
    padding-top: 64px;
  }
}
@media (max-width: 640px) {
  .artist-popup__like {
    max-width: calc(100% - 40px);
    padding-top: 64px;
  }
}
@media (max-width: 440px) {
  .artist-popup__like {
    padding-top: 32px;
  }
}
.artist-popup__like-title {
  color: #414042;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__like-title {
    font-size: 28px;
  }
}
.artist-popup__like-items {
  display: flex;
  column-gap: 16px;
}
@media (max-width: 640px) {
  .artist-popup__like-items {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.artist-popup__like-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .artist-popup__like-item {
    width: 33.3333333333%;
  }
  .artist-popup__like-item:last-child {
    display: none;
  }
}
@media (max-width: 640px) {
  .artist-popup__like-item {
    width: calc(50% - 4px);
  }
  .artist-popup__like-item:last-child {
    display: block;
  }
}
.artist-popup__like-item-img-wrapper {
  max-width: 260px;
  max-height: 260px;
  height: auto;
}
@media (max-width: 640px) {
  .artist-popup__like-item-img-wrapper {
    max-width: 100%;
    max-height: 100%;
  }
}
.artist-popup__like-item-img-wrapper > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.artist-popup__like-item-text {
  color: #666;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .artist-popup__like-item-text {
    height: 64px;
    font-size: 16px;
    line-height: 24px;
  }
}

.artist-popup__content h1 {
  color: #414042;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__content h1 {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.artist-popup__content h2 {
  color: #666;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 32px;
  display: block;
  max-width: 790px;
}
@media (max-width: 1200px) {
  .artist-popup__content h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
.artist-popup__content p {
  color: #666;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 1200px) {
  .artist-popup__content p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content p {
    font-size: 14px;
    line-height: 18px;
  }
}
.artist-popup__content p:not(:last-child) {
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .artist-popup__content p:not(:last-child) {
    margin-bottom: 12px;
  }
}
.artist-popup__content .wp-caption {
  margin: 80px auto;
  max-width: 863px;
  height: auto;
  width: 100% !important;
}
@media (max-width: 1200px) {
  .artist-popup__content .wp-caption {
    margin: 48px 0;
  }
}
@media (max-width: 640px) {
  .artist-popup__content .wp-caption {
    margin: 24px 0;
  }
}
.artist-popup__content .wp-caption .wp-caption-text {
  color: #969696;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
@media (max-width: 1200px) {
  .artist-popup__content .wp-caption .wp-caption-text {
    font-size: 14px;
    line-height: 24px;
  }
}
.artist-popup__content .wp-caption img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 8px;
}
.artist-popup__content h3 {
  color: #414042;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .artist-popup__content h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .artist-popup__content h3 {
    margin-bottom: 12px;
  }
}
.artist-popup__content iframe {
  width: 100%;
  height: 485px;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .artist-popup__content iframe {
    margin-top: 48px;
    height: 320px;
  }
}
@media (max-width: 576px) {
  .artist-popup__content iframe {
    height: 250px;
    margin-top: 24px;
  }
}
@media (max-width: 440px) {
  .artist-popup__content iframe {
    height: 180px;
  }
}

.artist-popup .artists__item-image-wrapper {
  z-index: 0;
}

.style-finder-search {
  padding: 65px 0 80px 0;
  background-color: #F5F5F5;
}
@media (max-width: 1366px) {
  .style-finder-search {
    padding: 64px 20px;
  }
}
@media (max-width: 576px) {
  .style-finder-search {
    padding: 32px 20px;
  }
}
.style-finder-search__wrapper {
  max-width: 865px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .style-finder-search__wrapper {
    max-width: 592px;
  }
}
.style-finder-search__form {
  border-radius: 8px;
  background: #FFF;
  padding: 8px 8px 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 1024px) {
  .style-finder-search__form {
    padding: 10px 8px 10px 32px;
  }
}
.style-finder-search__form-input {
  color: #414042;
  font-size: 32px;
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
}
@media (max-width: 1024px) {
  .style-finder-search__form-input {
    font-size: 24px;
  }
}
@media (max-width: 440px) {
  .style-finder-search__form-input {
    font-size: 16px;
  }
}
.style-finder-search__form-input::placeholder {
  color: #969696;
  font-size: 32px;
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1024px) {
  .style-finder-search__form-input::placeholder {
    font-size: 24px;
  }
}
@media (max-width: 440px) {
  .style-finder-search__form-input::placeholder {
    font-size: 16px;
  }
}
.style-finder-search__form-btn {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  cursor: pointer;
  padding: 24px 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  outline: none;
  border: none;
  border-radius: 8px;
  background: #414042;
}
@media (max-width: 1024px) {
  .style-finder-search__form-btn {
    padding: 16px 48px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .style-finder-search__form-btn {
    padding: 16px 32px;
    font-size: 14px;
  }
}
.style-finder-search__tags {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .style-finder-search__tags {
    display: none;
  }
}
.style-finder-search__swiper {
  max-width: 820px;
  margin-left: 0;
  position: relative;
  display: flex;
}
.style-finder-search__swiper:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(270deg, #F5F5F5 0%, rgba(255, 255, 255, 0) 100%);
}
.style-finder-search__swiper:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #F5F5F5 0%, rgba(255, 255, 255, 0) 100%);
}
.style-finder-search__swiper-button-prev {
  position: static;
  width: 33px;
  height: 33px;
  margin: 0;
  padding: 0;
  z-index: 1;
  background: url("../images/btn-next.svg") center no-repeat;
  flex-shrink: 0;
  transform: rotate(180deg);
}
.style-finder-search__swiper-button-prev:after {
  display: none;
}
.style-finder-search__swiper-button-next {
  position: static;
  width: 33px;
  height: 33px;
  margin: 0;
  padding: 0;
  z-index: 1;
  background: url("../images/btn-next.svg") center no-repeat;
  flex-shrink: 0;
}
.style-finder-search__swiper-button-next:after {
  display: none;
}
.style-finder-search__swiper-slide {
  width: fit-content;
}
.style-finder-search__swiper-slide > a {
  text-decoration: none;
  color: #414042;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 8px 20px;
  display: inline-block;
  background-color: #DCDCDC;
  border-radius: 30px;
}

.search-results {
  width: 100%;
  background-color: #FFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: 200px;
  overflow-y: auto;
}

.search-results a,
.search-results p {
  display: block;
  width: fit-content;
  color: #969696;
  font-size: 20px;
  text-decoration: none;
  margin: 6px 20px;
}

.style-finder-masonry {
  background-color: #F5F5F5;
  padding-bottom: 80px;
}
@media (max-width: 1366px) {
  .style-finder-masonry {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 640px) {
  .style-finder-masonry {
    padding-bottom: 64px;
  }
}
@media (max-width: 576px) {
  .style-finder-masonry {
    padding-bottom: 32px;
  }
}
.style-finder-masonry__wrapper {
  max-width: 1312px;
  margin: 0 auto;
}
.style-finder-masonry__wrapper p {
  color: #666;
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  /* 150% */
}
@media (max-width: 576px) {
  .style-finder-masonry__wrapper p {
    font-size: 24px;
  }
}
.style-finder-masonry__item {
  max-width: 205px;
  margin-bottom: 16px;
  height: auto;
}
@media (max-width: 1366px) {
  .style-finder-masonry__item {
    width: calc(20% - 8px);
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .style-finder-masonry__item {
    width: calc(25% - 6px);
  }
}
@media (max-width: 576px) {
  .style-finder-masonry__item {
    width: calc(33.3333333333% - 6px);
    margin-bottom: 8px;
  }
}
@media (max-width: 440px) {
  .style-finder-masonry__item {
    width: calc(50% - 4px);
  }
}
.style-finder-masonry__img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.masonry__wrapper {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.style-finder-popup {
  position: fixed;
  padding: 32px 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  height: 100vh;
  transition: opacity 0.3s linear;
}
@media (max-width: 992px) {
  .style-finder-popup {
    padding: 32px 20px;
  }
}
.style-finder-popup.active {
  z-index: 10;
  opacity: 1;
  visibility: visible;
}
.style-finder-popup__wrapper {
  position: relative;
  max-width: 1155px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .style-finder-popup__wrapper {
    max-width: 808px;
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .style-finder-popup__wrapper {
    padding: 20px;
  }
}
.style-finder-popup__btn-close {
  position: absolute;
  top: -10px;
  right: -100px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.style-finder-popup__btn-close svg {
  pointer-events: none;
}
@media (max-width: 1366px) {
  .style-finder-popup__btn-close {
    right: -50px;
    top: -10px;
  }
}
@media (max-width: 992px) {
  .style-finder-popup__btn-close {
    position: static;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 24px;
    width: 32px;
    height: 32px;
  }
  .style-finder-popup__btn-close svg {
    width: 32px;
    height: 32px;
  }
  .style-finder-popup__btn-close > svg > g path {
    stroke: #969696;
    object-fit: cover;
  }
}
.style-finder-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .style-finder-popup__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 440px) {
  .style-finder-popup__header {
    margin-bottom: 12px;
  }
}
.style-finder-popup__title {
  color: #414042;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1200px) {
  .style-finder-popup__title {
    font-size: 24px;
  }
}
.style-finder-popup__name {
  font-size: 20px;
  color: #414042;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .style-finder-popup__name {
    font-size: 16px;
    line-height: 28px;
  }
}
.style-finder-popup__btn {
  color: #969696;
  text-align: center;
  font-size: 20px;
  padding: 20px 48px;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 8px;
  border: 2px solid #969696;
}
@media (max-width: 1200px) {
  .style-finder-popup__btn {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .style-finder-popup__btn {
    display: none;
  }
}
.style-finder-popup__btn--mobile {
  display: none;
}
@media (max-width: 768px) {
  .style-finder-popup__btn--mobile {
    display: block;
    max-width: 250px;
    margin: 0 auto 32px auto;
  }
}
.style-finder-popup__img-wrapper {
  max-width: 865px;
  margin: 0 auto 64px auto;
  height: auto;
}
@media (max-width: 1200px) {
  .style-finder-popup__img-wrapper {
    max-width: 592px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .style-finder-popup__img-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 440px) {
  .style-finder-popup__img-wrapper {
    margin-bottom: 24px;
  }
}
.style-finder-popup__img-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  max-height: 575px;
}
.style-finder-popup__filters {
  max-width: 865px;
  margin: 0 auto 80px auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .style-finder-popup__filters {
    max-width: 592px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .style-finder-popup__filters {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
.style-finder-popup__filter {
  color: #414042;
  text-align: center;
  font-size: 14px;
  padding: 8px 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 30px;
  background: #DCDCDC;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .style-finder-popup__filter {
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .style-finder-popup__filter {
    font-size: 12px;
    padding: 5px 10px;
    font-weight: 400;
    border-radius: 16px;
  }
}
.style-finder-popup__collection {
  padding-top: 64px;
  border-top: 1px solid #969696;
}
@media (max-width: 1200px) {
  .style-finder-popup__collection {
    max-width: 744px;
    padding-top: 50px;
  }
}
@media (max-width: 440px) {
  .style-finder-popup__collection {
    padding-top: 24px;
  }
}
.style-finder-popup__collection-title {
  color: #414042;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .style-finder-popup__collection-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.style-finder-popup__collection-count {
  font-size: 16px;
  line-height: 100%;
  color: #414042;
  margin-bottom: 32px;
  display: block;
}
@media (max-width: 1200px) {
  .style-finder-popup__collection-count {
    font-size: 16px;
  }
}
.style-finder-popup__collection-items {
  padding-bottom: 84px;
}
@media (max-width: 1200px) {
  .style-finder-popup__collection-items {
    max-width: 744px;
    padding-bottom: 64px;
  }
}
@media (max-width: 640px) {
  .style-finder-popup__collection-items {
    padding-bottom: 32px;
  }
}
.style-finder-popup__collection-item {
  width: calc(20% - 14px);
  height: auto;
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .style-finder-popup__collection-item {
    width: calc(25% - 8px);
  }
}
@media (max-width: 640px) {
  .style-finder-popup__collection-item {
    width: calc(33.3333333333% - 6px);
  }
}
@media (max-width: 440px) {
  .style-finder-popup__collection-item {
    width: calc(50% - 4px);
  }
}
.style-finder-popup__collection-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.style-finder-popup__more-title {
  color: #414042;
  font-size: 28px;
  height: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 64px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .style-finder-popup__more-title {
    margin-top: 48px;
    height: auto;
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 440px) {
  .style-finder-popup__more-title {
    margin-top: 24px;
  }
}
.style-finder-popup__more-item {
  width: calc(20% - 14px);
  height: auto;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .style-finder-popup__more-item {
    width: calc(25% - 8px);
    margin-bottom: 8px;
  }
}
@media (max-width: 640px) {
  .style-finder-popup__more-item {
    width: calc(33.3333333333% - 6px);
  }
}
@media (max-width: 440px) {
  .style-finder-popup__more-item {
    width: calc(50% - 4px);
  }
}
.style-finder-popup__more-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.style-finder-popup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.style-finder-popup__swiper {
  max-width: 865px;
  margin: 0 auto 64px auto;
}

.style-finder-popup__swiper-button-next,
.style-finder-popup__swiper-button-prev {
  color: white;
}

.style-finder-popup__swiper-button-next:after,
.style-finder-popup__swiper-button-prev:after {
  filter: drop-shadow(2px 4px 2px black);
}

.collection {
  background: #F5F5F5;
  padding-top: 60px;
}
@media (max-width: 1366px) {
  .collection {
    padding: 64px 20px;
  }
}
@media (max-width: 768px) {
  .collection {
    padding: 32px 20px;
  }
}
.collection__wrapper {
  max-width: 1312px;
  margin: 0 auto;
}
.collection__title {
  max-width: 1090px;
  margin: 0 auto 20px auto;
  color: #414042;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1200px) {
  .collection__title {
    max-width: 746px;
    font-size: 32px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .collection__title {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.collection__author {
  line-height: 28px;
  font-size: 20px;
  color: #414042;
  display: block;
  max-width: 1090px;
  margin: 0 auto 80px auto;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .collection__author {
    max-width: 746px;
    margin-bottom: 64px;
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .collection__author {
    margin-bottom: 20px;
  }
}
.collection__items {
  border-bottom: 1px solid #969696;
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .collection__items {
    max-width: 896px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .collection__items {
    padding-bottom: 32px;
  }
}
.collection__item {
  width: calc(16.6666666667% - 14px);
  margin-bottom: 16px;
}
.collection__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .collection__item {
    width: calc(20% - 8px);
    margin-bottom: 8px;
  }
}
@media (max-width: 1200px) {
  .collection__item {
    width: calc(25% - 8px);
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .collection__item {
    width: calc(33.3333333333% - 8px);
  }
}
@media (max-width: 576px) {
  .collection__item {
    width: calc(50% - 4px);
  }
}

.related-collections {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media (max-width: 1366px) {
  .related-collections {
    padding: 64px 20px;
  }
}
@media (max-width: 1200px) {
  .related-collections {
    padding-top: 0;
  }
}
.related-collections__wrapper {
  max-width: 1376px;
  margin: 0 auto;
}
.related-collections__title {
  color: #414042;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 auto 32px auto;
  max-width: 1312px;
}
@media (max-width: 1200px) {
  .related-collections__title {
    max-width: 896px;
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.related-collections__items {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 1024px) {
  .related-collections__items {
    max-width: 968px;
    margin: 0 auto;
  }
}
.related-collections__item {
  border-radius: 16px;
  position: relative;
  background: #FFF;
  padding: 48px 32px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .related-collections__item {
    padding: 40px 32px;
  }
}
@media (max-width: 640px) {
  .related-collections__item {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 24px;
    padding: 16px;
  }
}
.related-collections__item-link {
  display: none;
}
.related-collections__item-title {
  color: #414042;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .related-collections__item-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media (max-width: 440px) {
  .related-collections__item-title {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.related-collections__item-name {
  color: #414042;
  font-size: 16px;
}
@media (max-width: 440px) {
  .related-collections__item-name {
    font-size: 14px;
  }
}
.related-collections__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .related-collections__item-header {
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
  .related-collections__item-header {
    margin-bottom: 0;
  }
}
.related-collections__item-images {
  display: flex;
  height: auto;
  column-gap: 8px;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .related-collections__item-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "first  second" "first  third";
    gap: 8px;
  }
}
.related-collections__item-btn {
  color: #969696;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 8px;
  border: 2px solid #969696;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1024px) {
  .related-collections__item-btn {
    font-size: 12px;
    padding: 16px 32px;
  }
}
@media (max-width: 640px) {
  .related-collections__item-btn {
    display: none;
  }
}
.related-collections__item-img-wrapper {
  height: auto;
  max-width: 384px;
  width: 100%;
}
@media (max-width: 640px) {
  .related-collections__item-img-wrapper {
    max-width: 100% !important;
  }
  .related-collections__item-img-wrapper:first-child {
    grid-area: first;
    width: 100%;
  }
  .related-collections__item-img-wrapper:nth-child(2) {
    grid-area: second;
    width: 100%;
    aspect-ratio: 1/1;
  }
  .related-collections__item-img-wrapper:nth-child(3) {
    grid-area: third;
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.related-collections__item-img-wrapper:last-child {
  position: relative;
}
@media (max-width: 640px) {
  .related-collections__item-img-wrapper:last-child .related-collections__item-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }
}
.related-collections__item-img-wrapper:last-child:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 640px) {
  .related-collections__item-img-wrapper:last-child:after {
    display: none;
  }
}
.related-collections__item-img-wrapper a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.related-collections__item-link--absolute {
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
}

.contact-form {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 64px 20px;
  }
}
@media (max-width: 576px) {
  .contact-form {
    padding: 32px 20px;
  }
}
.contact-form__wrapper {
  max-width: 1090px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .contact-form__wrapper {
    max-width: 744px;
  }
}
.contact-form__title {
  color: #666;
  font-size: 40px;
  margin-bottom: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1200px) {
  .contact-form__title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .contact-form__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.contact-form__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 1200px) {
  .contact-form__form {
    row-gap: 24px;
  }
}
.contact-form__inputs-wrapper {
  display: flex;
  column-gap: 32px;
}
@media (max-width: 1200px) {
  .contact-form__inputs-wrapper {
    column-gap: 16px;
  }
}
@media (max-width: 576px) {
  .contact-form__inputs-wrapper {
    flex-direction: column;
    row-gap: 16px;
  }
}
.contact-form__input {
  width: 100%;
  padding: 24px 32px;
  border-radius: 8px;
  background: #FFF;
  border: none;
  outline: none;
  color: #414042;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1200px) {
  .contact-form__input {
    padding: 20px 24px;
    font-size: 20px;
  }
}
.contact-form__input::placeholder {
  color: #969696;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1200px) {
  .contact-form__input::placeholder {
    font-size: 20px;
  }
}
.contact-form__select {
  width: 100%;
  padding: 24px 32px;
  border-radius: 8px;
  border: none;
  outline: none;
  color: #969696;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF url("../images/icn-arrow.svg") no-repeat;
  background-position-x: 98%;
  background-position-y: 50%;
}
@media (max-width: 1200px) {
  .contact-form__select {
    padding: 20px 24px;
    font-size: 20px;
  }
}
.contact-form__select > option {
  color: #414042;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-form__select > option:checked {
  color: #414042;
}
@media (max-width: 1200px) {
  .contact-form__select > option {
    font-size: 20px;
  }
}
.contact-form__textarea {
  width: 100%;
  padding: 24px 32px;
  border-radius: 8px;
  background: #FFF;
  border: none;
  outline: none;
  color: #414042;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  min-height: 176px;
  resize: none;
}
@media (max-width: 1200px) {
  .contact-form__textarea {
    padding: 20px 24px;
    font-size: 20px;
  }
}
.contact-form__textarea::placeholder {
  color: #969696;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1200px) {
  .contact-form__textarea::placeholder {
    font-size: 20px;
  }
}
.contact-form__btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 32px;
}
@media (max-width: 1200px) {
  .contact-form__btns {
    column-gap: 24px;
  }
}
.contact-form__file + label {
  color: #969696;
  text-align: center;
  font-size: 20px;
  padding: 24px 48px;
  border-radius: 8px;
  border: 2px solid #969696;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .contact-form__file + label {
    padding: 16px 48px;
    font-size: 16px;
  }
}
@media (max-width: 440px) {
  .contact-form__file + label {
    font-size: 14px;
    padding: 8px 20px;
  }
}
.contact-form__btn {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 8px;
  background: #414042;
  padding: 24px 48px;
  outline: none;
  cursor: pointer;
  border: 2px solid #414042;
}
@media (max-width: 1200px) {
  .contact-form__btn {
    padding: 16px 48px;
    font-size: 16px;
  }
}
@media (max-width: 440px) {
  .contact-form__btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

.file-label > span {
  font-size: 20px;
  line-height: 32px;
  color: #414042;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.file-label > button {
  margin-left: 10px;
  cursor: pointer;
  background: url("../images/icn-close.svg") center no-repeat;
  width: 12px;
  height: 12px;
  outline: none;
  border: none;
}

#file {
  display: none;
}

.contact-form .button.button-primary.qbutton {
  display: none;
}

.mfcf7_zl_delete_file {
  display: none;
}

.contact-form__file-label {
  color: #969696;
  text-align: center;
  font-size: 20px;
  padding: 24px 48px;
  border-radius: 8px;
  border: 2px solid #969696;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .contact-form__file-label {
    padding: 16px 48px;
    font-size: 16px;
  }
}
@media (max-width: 440px) {
  .contact-form__file-label {
    font-size: 14px;
    padding: 8px 20px;
  }
}

.file-label {
  display: flex;
  align-items: center;
}

@media (max-width: 640px) {
  .contact-form__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form__file-label {
    margin-bottom: 24px;
  }
}
.contact-studios {
  background-color: #F5F5F5;
}
.contact-studios__wrapper {
  max-width: 1312px;
  margin: 0 auto;
  border-bottom: 1px solid #969696;
  padding-bottom: 80px;
}
@media (max-width: 1366px) {
  .contact-studios__wrapper {
    padding: 0 20px 64px 20px;
  }
}
@media (max-width: 1200px) {
  .contact-studios__wrapper {
    max-width: 896px;
  }
}
@media (max-width: 992px) {
  .contact-studios__wrapper {
    max-width: calc(100% - 40px);
  }
}
.contact-studios__title {
  color: #666;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .contact-studios__title {
    font-size: 32px;
  }
}
.contact-studios__items {
  display: flex;
  column-gap: 32px;
}
@media (max-width: 1200px) {
  .contact-studios__items {
    column-gap: 16px;
  }
}
@media (max-width: 640px) {
  .contact-studios__items {
    flex-direction: column;
    row-gap: 32px;
  }
}
.contact-studios__item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .contact-studios__item {
    width: 100%;
  }
}
.contact-studios__item-img-wrapper {
  max-width: 416px;
  max-height: 416px;
  margin-bottom: 32px;
}
.contact-studios__item-img-wrapper > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.contact-studios__item-title {
  color: #414042;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .contact-studios__item-title {
    margin-bottom: 12px;
    font-size: 29px;
  }
}
.contact-studios__item-name {
  font-size: 20px;
  line-height: 32px;
  color: #414042;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .contact-studios__item-name {
    font-size: 16px;
    line-height: 28px;
  }
}
.contact-studios__item-address {
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  font-style: normal;
  height: 128px;
}
@media (max-width: 1200px) {
  .contact-studios__item-address {
    font-size: 16px;
    line-height: 22px;
    height: 88px;
  }
}
@media (max-width: 768px) {
  .contact-studios__item-address {
    height: auto;
  }
}
.contact-studios__item-phone {
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .contact-studios__item-phone {
    font-size: 16px;
    line-height: 28px;
  }
}
.contact-studios__item-btn {
  display: flex;
  margin-top: 20px;
  padding: 24px 48px;
  color: #969696;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 8px;
  border: 2px solid #969696;
  width: fit-content;
}
@media (max-width: 1200px) {
  .contact-studios__item-btn {
    margin-top: 32px;
    font-size: 16px;
    padding: 16px 48px;
  }
}
@media (max-width: 640px) {
  .contact-studios__item-btn {
    margin-top: 12px;
  }
}

.contact-category {
  background-color: #F5F5F5;
  padding: 64px 0 128px;
}
@media (max-width: 768px) {
  .contact-category {
    padding: 32px 20px 64px 20px;
  }
}
@media (max-width: 440px) {
  .contact-category {
    padding: 32px 20px;
  }
}
.contact-category__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1312px;
  margin: 0 auto;
  gap: 80px 32px;
}
@media (max-width: 1200px) {
  .contact-category__wrapper {
    max-width: 744px;
    gap: 64px 16px;
  }
}
@media (max-width: 640px) {
  .contact-category__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
  }
}
@media (max-width: 440px) {
  .contact-category__wrapper {
    row-gap: 24px;
  }
}
.contact-category__item {
  width: 50%;
  max-width: 528px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .contact-category__item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 640px) {
  .contact-category__item {
    width: 100%;
    margin: 0 auto;
    max-width: 350px;
  }
}
.contact-category__item-title {
  color: #414042;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .contact-category__item-title {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 440px) {
  .contact-category__item-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-category__item-name {
  color: #414042;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
@media (max-width: 1200px) {
  .contact-category__item-name {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 440px) {
  .contact-category__item-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.contact-category__item-link {
  color: #414042;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .contact-category__item-link {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 440px) {
  .contact-category__item-link {
    font-size: 14px;
    line-height: 20px;
  }
}

.policy__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 80px;
}

.policy__wrapper p {
  margin-bottom: 33px;
  color: #666;
}

.policy__wrapper strong {
  color: #666;
}

.policy__wrapper a {
  color: #fe6261;
}

@media (max-width: 1200px) {
  .policy__wrapper {
    max-width: 950px;
  }
}
@media (max-width: 1024px) {
  .policy__wrapper {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .policy__wrapper {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .policy__wrapper {
    max-width: 420px;
  }
}
@media (max-width: 450px) {
  .policy__wrapper {
    max-width: 300px;
  }
}
.contact {
  background-color: #666666;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 26px;
}
@media (max-width: 992px) {
  .contact {
    flex-direction: column;
    align-items: center;
    row-gap: 48px;
    padding: 80px 20px;
  }
}
@media (max-width: 640px) {
  .contact {
    padding: 24px 20px;
    row-gap: 16px;
  }
}
.contact__text {
  color: #FFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 48px;
}
@media (max-width: 992px) {
  .contact__text {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    max-width: 630px;
  }
}
@media (max-width: 640px) {
  .contact__text {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    max-width: 210px;
  }
}
.contact__btn {
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 24px 48px;
  background-color: #969696;
  border-radius: 8px;
}
@media (max-width: 640px) {
  .contact__btn {
    font-size: 14px;
    padding: 12px 16px;
  }
}

.footer {
  background-color: #000;
  padding: 32px 0 50px 0;
}
@media (max-width: 640px) {
  .footer {
    padding: 16px 0 24px 0;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 50px;
}
@media (max-width: 992px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 64px;
  }
}
@media (max-width: 640px) {
  .footer__top {
    row-gap: 0;
    padding-bottom: 32px;
  }
}
.footer__top:after {
  position: absolute;
  content: "";
  width: calc(100% - 128px);
  height: 2px;
  background-color: #FFF;
  bottom: 0;
  left: 50%;
  opacity: 0.4;
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  .footer__top:after {
    width: calc(100% - 40px);
  }
}
.footer__bottom {
  padding-top: 42px;
}
.footer__logo-wrapper {
  max-width: 160px;
}
@media (max-width: 992px) {
  .footer__logo-wrapper {
    max-width: 450px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .footer__logo-wrapper {
    max-width: 130px;
    margin-bottom: 36px;
  }
}
.footer__logo-wrapper > img {
  width: 100%;
  height: 100%;
}
.footer__rights {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
@media (max-width: 640px) {
  .footer__rights {
    font-size: 8px;
    line-height: 12px;
    padding: 0 20px;
  }
}
.footer__rights a {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: block;
}
@media (max-width: 640px) {
  .footer__rights a {
    font-size: 8px;
    line-height: 12px;
  }
}
.footer__sign-up {
  padding: 8px 8px 8px 24px;
  border-radius: 8px;
  background-color: #FFF;
  max-width: 640px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1200px) {
  .footer__sign-up {
    max-width: 480px;
  }
}
@media (max-width: 992px) {
  .footer__sign-up {
    width: 100%;
    margin: 0 20px;
    max-width: -webkit-fill-available;
  }
}
@media (max-width: 640px) {
  .footer__sign-up {
    margin-bottom: 32px;
    padding: 5px 5px 5px 24px;
  }
}
.footer__sign-up-label {
  position: absolute;
  top: -25px;
  color: #969696;
  font-size: 14px;
  font-weight: 600;
  left: 0;
}
@media (max-width: 640px) {
  .footer__sign-up-label {
    font-size: 12px;
  }
}
.footer__sign-up-btn {
  padding: 16px 48px;
  border-radius: 8px;
  background: #969696;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .footer__sign-up-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
}
@media (max-width: 640px) {
  .footer__sign-up-btn {
    padding: 10px;
  }
}
.footer__sign-up-input {
  color: #969696;
  font-size: 20px;
  border: none;
  outline: none;
  width: 100%;
  padding-right: 20px;
}
@media (max-width: 1200px) {
  .footer__sign-up-input {
    font-size: 20px;
  }
}
.footer__sign-up-input::placeholder {
  color: #969696;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .footer__sign-up-input::placeholder {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .footer__social {
    width: 100%;
  }
}
.footer__social-list {
  display: flex;
  align-items: center;
  column-gap: 24px;
  margin-right: 64px;
}
@media (max-width: 1200px) {
  .footer__social-list {
    column-gap: 20px;
  }
  .footer__social-list li > a svg {
    width: 28px;
    height: 22px;
  }
}
@media (max-width: 992px) {
  .footer__social-list {
    justify-content: center;
    margin-right: 0;
  }
  .footer__social-list li > a svg {
    width: 80px;
    height: 50px;
  }
}
@media (max-width: 640px) {
  .footer__social-list li > a svg {
    width: 28px;
    height: 28px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.lightbox {
  top: 50% !important;
  transform: translateY(-50%);
  position: fixed !important;
}

.lb-details {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  column-gap: 10px;
  align-items: center;
}

.lb-number {
  padding-bottom: 0 !important;
}

.lb-data .lb-caption {
  font-size: 12px !important;
  color: #999 !important;
  font-weight: 400 !important;
}

.lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.svg) top right no-repeat;
  text-align: right;
  outline: 0;
  filter: alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-closeContainer {
  position: absolute;
  top: -40px;
  z-index: 11;
  right: 0;
  cursor: pointer;
}

.lb-nav a {
  filter: drop-shadow(2px 4px 6px black);
}

.ui-front {
  z-index: 111111111;
}

.wp-video.square {
  aspect-ratio: 1/1;
}

.wp-video.square a, .wp-video.square video {
  height: 100%;
}

.wp-video {
  width: 100% !important;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .wp-video {
    margin-bottom: 12px;
  }
}

.wp-video video {
  width: 100% !important;
  object-fit: cover;
  height: 100%;
}

.wp-video {
  aspect-ratio: 16/9;
}

@media (max-width: 576px) {
  .artist-popup__content .wp-video video {
    height: 100%;
  }

  .wp-video.square a, .wp-video.square video {
    height: 100%;
  }
}
@media (max-width: 440px) {
  .artist-popup__content .wp-video > video {
    height: 100%;
  }

  .wp-video.square a, .wp-video.square video {
    height: 100%;
  }
}
.glightbox-clean .gslide-title {
  font-size: 16px !important;
  line-height: 100% !important;
  margin-bottom: 0 !important;
}

.glightbox-mobile .glightbox-container .gslide-description {
  padding: 0;
  text-align: center;
}

.wp-video a:last-child {
  display: none;
}

p:empty {
  display: none !important;
}

.glightbox {
  display: block;
}

.goverlay {
  background: black;
}

body .loader-images {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 50px;
  height: 50px;
  background-color: transparent !important;
}

.wpcf7-spinner {
  position: absolute !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  position: absolute !important;
  bottom: -50px !important;
  color: #fff !important;
}