@font-face {
  font-family: Bebas Neue Cyrillic;
  font-display: swap;
  src: url("./../fonts/bebasneuecyrillic.woff2") format("woff2"), url("./../fonts/bebasneuecyrillic.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Open Sans Condensed;
  font-display: swap;
  src: url("./../fonts/OpenSansCondensed-Light.woff2") format("woff2"), url("./../fonts/OpenSansCondensed-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

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

:root {
  --font-family: "Bebas Neue Cyrillic", sans-serif;
  --second-family: "Open Sans Condensed", sans-serif;
  --third-family: "Roboto", sans-serif;
  --yellow-main: #fcca33;
  --white: #fff;
  --index: calc(1vw + 1vh);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background-color: var(--white);
  overflow: hidden;
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 32px;
  line-height: 100%;
  color: var(--white);
}

.wrapper {
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1560px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.popup-open {
  padding: 10px 20px;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
  color: #000;
  border: 5px solid #000;
}

.popup-map {
  width: 100%;
  min-height: 100%;
  height: 100%;
  padding-bottom: clamp(20px, 2dvw, 40px);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-y: auto;
  background-color: var(--white);
  background-image: url("./../images/bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: var(--second-family);
  font-weight: 300;
  font-size: clamp(12px, 2vw, 32px);
  line-height: 100%;
  color: var(--white);
}

.popup-map::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(3, 3, 1, 0.75)), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(top, rgba(3, 3, 1, 0.75) 40%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(3, 3, 1, 0.75) 40%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.popup-map::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: none;
}

.popup-map.popup--open {
  display: block;
}

.popup-map.overlay--visible::after {
  display: block;
}

.popup-map.overlay--visible .popup-artist {
  display: block;
}

.popup-map__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(5px, 2dvw, 40px);
  position: relative;
  z-index: 3;
}

.popup-map__header {
  padding: clamp(20px, 2dvw, 40px) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(5px, 2dvw, 20px);
}

.popup-map__header-content {
  max-width: 1430px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(5px, 2dvw, 40px);
}

.popup-map__header-title {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.popup-map__header-info {
  max-width: 1300px;
  width: 100%;
}

.popup-map__body {
  width: 100%;
  height: 100%;
}

.popup-map__map-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}

.popup-map__map-wrapper.active .popup-map__city {
  display: none;
}

.popup-map__map-wrapper.active .popup-map__artistes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup-map__map {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.popup-map__city {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px;
  position: absolute;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 2vw, 34px);
  text-align: center;
  color: var(--yellow-main);
  text-transform: uppercase;
}

.popup-map__city img {
  max-width: 200px;
  width: clamp(40px, 9vw, 200px);
  height: auto;
  margin-top: -10px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: -1;
}

.popup-map__city--1 {
  left: 41%;
  top: 12%;
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
}

.popup-map__city--2 {
  left: 53%;
  top: 37%;
  -webkit-transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  transform: rotate(9deg);
}

.popup-map__city--3 {
  left: 66%;
  top: 60%;
  -webkit-transform: rotate(-16deg);
  -ms-transform: rotate(-16deg);
  transform: rotate(-16deg);
}

.popup-map__city--3 img {
  margin-top: -5px;
}

.popup-map__city--4 {
  left: 8%;
  top: 40%;
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
  font-size: clamp(12px, 2vw, 30px);
}

.popup-map__city--5 {
  left: 12%;
  top: 57%;
  -webkit-transform: rotate(-8deg);
  -ms-transform: rotate(-8deg);
  transform: rotate(-8deg);
  font-size: clamp(12px, 2vw, 34px);
}

.popup-map__city--6 {
  left: 17%;
  top: 41%;
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  font-size: clamp(12px, 2vw, 24px);
}

.popup-map__city--7 {
  left: 23%;
  top: 42%;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
  font-size: clamp(12px, 2vw, 34px);
}

.popup-map__city--8 {
  left: 44%;
  top: 71%;
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
  font-size: clamp(12px, 2vw, 30px);
}

.popup-map__city--9 {
  left: 51%;
  top: 55%;
  -webkit-transform: rotate(-1deg);
  -ms-transform: rotate(-1deg);
  transform: rotate(-1deg);
  font-size: clamp(12px, 2vw, 24px);
}

.popup-map__city--10 {
  left: 55%;
  top: 92%;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  font-size: clamp(12px, 2vw, 24px);
}

.popup-map__city--11 {
  left: 56%;
  top: 85%;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  font-size: clamp(12px, 2vw, 34px);
}

.popup-map__city--12 {
  left: 62%;
  top: 76%;
  -webkit-transform: rotate(-14deg);
  -ms-transform: rotate(-14deg);
  transform: rotate(-14deg);
  font-size: clamp(12px, 2vw, 30px);
}

.popup-map__city--13 {
  left: 66%;
  top: 20%;
  -webkit-transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  transform: rotate(9deg);
  font-size: clamp(12px, 2vw, 30px);
}

.popup-map__city--14 {
  left: 75%;
  top: 35%;
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
  font-size: clamp(12px, 2vw, 30px);
}

.popup-map__city--15 {
  left: 84%;
  top: 33%;
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  font-size: clamp(12px, 2vw, 30px);
}

.popup-map__artistes {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(10px, 1dvw, 20px);
  position: absolute;
  top: 21%;
  left: 35%;
  right: 22%;
  bottom: 29%;
}

.popup-map__artistes-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(5px, 1vw, 12px);
  font-family: var(--font-family);
  color: var(--yellow-main);
}

.popup-map__artistes-back svg {
  width: clamp(5px, 3vw, 36px);
  height: min(auto, 44px);
  fill: var(--yellow-main);
}

.popup-map__artistes-items {
  width: 100%;
  height: 100%;
}

.popup-map__artistes-items .swiper-wrapper {
  width: 100% !important;
}

.popup-map__artistes-items .swiper-slide {
  height: 152px !important;
}

.popup-map__artistes-item {
  height: 152px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 2vw, 34px);
  text-align: center;
  color: var(--white);
    padding-top: 10px;
}

.popup-map__artistes-img {
    position: relative;
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
}

.popup-map__artistes-img::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: url(../images/artistes/3.png);
    background-repeat: no-repeat;
    background-size: 130% 110%;
    background-position: 50% 0;
}

.popup-map__artistes-img::after {
    content: "";
    display: block;
    width: 50%;
    height: auto;
    aspect-ratio: 2/1;
    position: absolute;
    top: -15%;
    left: 50%;
    z-index: 3;
    background-image: url(../images/artistes/4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    -webkit-transform: rotate(-5deg) translateX(-50%);
    -ms-transform: rotate(-5deg) translateX(-50%);
    transform: rotate(-5deg) translateX(-50%);
}

.popup-map__artistes-item img {
    width: clamp(36px, 5vw, 86px);
    height: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.popup-map__artistes-item img {
  width: clamp(36px, 5vw, 86px);
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
    filter: grayscale(100%);
}

.language {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12px, 2vw, 36px);
  text-transform: uppercase;
  cursor: pointer;
}

.language.language--kz .language__item--kz {
  display: block;
}

.language.language--kz .language__item--ru {
  display: none;
}

.language__item--kz {
  display: none;
}

.language__item--ru {
  display: block;
}

.popup-close {
  width: clamp(15px, 2vw, 34px);
  height: clamp(15px, 2vw, 34px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.popup-close__line {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close__line:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-artist {
  background-color: var(--white);
  width: auto;
  max-height: 285px;
  height: 100%;
  display: none;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: calc((100% - 1520px) / 2);
  left: 50%;
  z-index: 20;
}

.popup-artist iframe {
  width: 100%;
  height: 100%;
}

.popup-artist__wrapper {
  width: 100%;
  height: 100%;
  padding: 15px 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px;
  overflow-y: auto;
  line-height: 1;
}

.popup-artist__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.popup-artist__left img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.popup-artist__ym-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.popup-artist__ym-wrapper img {
  width: 50px;
  height: 50px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.popup-artist__ym-btn {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: 36px;
  padding: 7px 8px 7px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  background: var(--yellow-main);
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #2e1600;
}

.popup-artist__ym-btn svg {
  width: 14px;
  height: 18px;
  fill: currentColor;
}

.popup-artist__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 25px 40px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #030301;
}

.popup-artist__info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  min-width: 100%;
}

.popup-artist__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.popup-artist__info-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 34px;
  color: var(--yellow-main);
}

.popup-artist__info-subtitle {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 14px;
  color: #848484;
}

.popup-artist .popup-close {
  position: absolute;
  top: 15px;
  right: 10px;
}

.popup-artist .popup-close__line {
  background-color: var(--yellow-main);
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px !important;
  height: auto !important;
  margin: 0 !important;
}

.swiper-button-next img,
.swiper-button-prev img {
  width: 100%;
  height: auto;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none !important;
}

.swiper-button-prev {
  top: 60% !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -65px;
}

.swiper-button-prev img {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.swiper-button-next {
  top: 60% !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -65px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
}

.popup-map__artistes-item h3 {
	overflow-wrap: anywhere;
    font-size: 19pt;
	line-height: normal;
}

@media (max-width: 1440px) {
  .popup-map__artistes-items .swiper-slide {
    height: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .popup-map__artistes-item {
    height: auto;
  }
}

@media (max-width: 1560px) {
  .popup-artist {
    min-width: 500px;
    right: unset;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 968px) {
    .popup-map__artistes-item h3 {
        font-size: 15pt;
    }
}

@media (max-width: 768px) {
  .popup-map__artistes-items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
	.popup-map__artistes-item h3 {
        font-size: 10pt;
    }
	.container {
        padding: 0;
    }
}

@media (max-width: 575px) {
  /*.popup-map__inner {
    position: absolute;
    -webkit-transform: rotate(90deg) translate(-50%, 0);
    -ms-transform: rotate(90deg) translate(-50%, 0);
    transform: rotate(90deg) translate(-50%, 0);
    top: 60%;
    min-width: 500px;
  }

  .popup-artist {
    -webkit-transform: rotate(90deg) translate(-30%, 90%);
    -ms-transform: rotate(90deg) translate(-30%, 90%);
    transform: rotate(90deg) translate(-30%, 90%);
  }*/

  .swiper-button-next,
  .swiper-button-prev {
    width: 25px !important;
  }

  .swiper-button-prev {
    left: -35px;
  }

  .swiper-button-next {
    right: -35px;
  }
	
	.popup-map__artistes-item h3 {
        font-size: 7pt;
    }
	
	.popup-artist__left img {
        width: 140px;
        height: 140px;
    }
	
	.popup-artist__left .popup-artist__ym-wrapper img {
        width: 50px;
        height: 50px;
    }
	
	.popup-artist {
        min-width: 100%;
    }
}

@media (max-width: 420px) {
    .popup-map__artistes-item h3 {
        font-size: 5pt;
    }
}

@media (max-width: 360px) {
    .popup-map__artistes-item h3 {
        font-size: 4pt;
    }
}
