@charset "UTF-8";
/* -------------------- NULL -------------------- */
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* ---------------------------------------------- */
/* -------------------- HEADER -------------------- */
.header {
  /* Checked */
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
}
@media (max-width: 1320px) {
  .header__body {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }
}
@media (max-width: 767px) {
  .header__body {
    justify-content: space-between;
  }
}
.header__nav {
  display: flex;
}
.header__logo {
  display: block;
  width: 76px;
  height: 124px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .header__logo {
    width: 37px;
    height: 61px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__menu {
  display: flex;
  align-items: center;
  margin: 0 1rem;
}
.header__menu li {
  margin: 0 1rem;
}
.header__menu li a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24.38px;
  color: #000;
  display: block;
  position: relative;
}
.header__menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: transparent;
  border-radius: 3px;
}
.header__menu li a:hover::after, .header__menu li a:focus::after {
  background: #77d3d5;
  width: 100%;
  transition: 0.3s ease 0.3s;
}
.header__panel {
  display: flex;
  align-items: center;
}
.header .btn {
  width: 190px;
  height: 50px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21.94px;
}
@media (max-width: 767px) {
  .header .btn {
    margin: 2rem auto;
  }
}
.header .lang {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: rgba(235, 108, 107, 0.1);
  width: 75px;
  height: 38px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .header .lang {
    justify-content: space-evenly;
    margin-right: 1rem;
    width: 50px;
    height: 24px;
  }
}
.header .lang-item input[type=radio] {
  display: none;
}
.header .lang-item label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 14.63px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  width: 33px;
  height: 32px;
  color: #eb6c6b;
}
@media (max-width: 767px) {
  .header .lang-item label {
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 12.19px;
  }
}
.header .lang input[type=radio]:checked + label {
  background: #eb6c6b;
  color: #fff;
  transition: 0.2s ease 0.2s;
}
.header .social {
  display: flex;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .header .social {
    justify-content: center;
    margin: 3rem auto 0;
  }
}
.header .social__icon {
  width: 38px;
  height: 38px;
  background: #eb6c6b;
  margin: 0 5px;
}
@media (max-width: 767px) {
  .header .social__icon {
    margin: 0 10px;
  }
}
.header .social__icon:hover, .header .social__icon:focus {
  opacity: 0.5;
  transition: 0.2s ease 0.2s;
}

/* -------------------- MOBILE -------------------- */
.btn-mobile {
  display: none;
}
@media (max-width: 767px) {
  .btn-mobile {
    display: block;
  }
}
.btn-mobile__burger {
  background-color: transparent;
  display: flex;
  justify-content: center;
  flex-flow: column;
  position: relative;
  width: 28.5px;
  margin: 0 auto;
}
.btn-mobile__burger span {
  background: #eb6c6b;
  border-radius: 3px;
  width: 100%;
  height: 3px;
  margin: 0 auto;
}
.btn-mobile__burger span::before, .btn-mobile__burger span::after {
  background: inherit;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 3px;
}
.btn-mobile__burger span::before {
  top: 8px;
}
.btn-mobile__burger span::after {
  bottom: 8px;
}

.mobile__block {
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: #fff;
  position: absolute;
  z-index: 999;
  left: -100%;
  top: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.mobile__close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.mobile__btn-close {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
.mobile__btn-close span {
  position: absolute;
  background: #eb6c6b;
  width: 30px;
  height: 5px;
  border-radius: 3px;
}
.mobile__btn-close span:first-child {
  transform: rotate(45deg);
}
.mobile__btn-close span:last-child {
  transform: rotate(-45deg);
}
.mobile__menu ul {
  flex: 1 1 auto;
  word-break: break-word;
}
.mobile__menu ul li {
  text-align: center;
  margin-top: 1rem;
}
.mobile__menu-item {
  font-size: 20px;
  line-height: 20px;
  color: #000;
}

._active-burger span {
  width: 0 !important;
  transition: width ease-in 0.1s;
}
._active-burger span::before {
  top: 0 !important;
  transition: top 0.1s ease-in;
  animation: rotateRight 0.2s forwards 0.2s;
}
._active-burger span::after {
  bottom: 0 !important;
  transition: bottom 0.1s ease-in;
  animation: rotateLeft 0.2s forwards 0.2s;
}
@keyframes rotateRight {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes rotateLeft {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-45deg);
  }
}

._active-move {
  animation: moveLeft 0.2s forwards 0.2s;
}
@keyframes moveLeft {
  0% {
    left: -100%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

/* -------------------- FOOTER -------------------- */
.footer {
  background: #e6e6e6;
  padding: 0px 0px 30px 0px;
}
@media (max-width: 767px) {
  .footer {
    background: none;
    padding: 0;
  }
}
.footer__body {
  display: flex;
}
.footer__label {
  margin-top: 60px;
}
.footer__logo {
  display: block;
  width: 265px;
  height: 130px;
  overflow: hidden;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__copy {
  color: #848484;
  line-height: 25.2px;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  font-size: calc(8px + 10 * ((100vw - 320px) / 1600));
}
.footer__cols {
  display: flex;
  justify-content: space-between;
  margin-left: 2rem;
  width: 100%;
  max-width: 750px;
}
@media (max-width: 1320px) {
  .footer__cols {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer__cols {
    margin: 1rem auto 0;
    padding-bottom: 1rem;
  }
}
.footer__col {
  margin: 50px 1rem 0px;
}
@media (max-width: 767px) {
  .footer__col {
    display: flex;
    margin: 1rem 1rem 0px 0px;
    width: 100%;
    padding-bottom: 2rem;
  }
}
.footer__line {
  width: 100%;
  height: 1px;
  background: #e6e6e6;
}
.footer__line ~ .footer__col .social__icon {
  background: #eb6c6b;
}
.footer__head {
  font-weight: 500;
  line-height: 33px;
  color: #000;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .footer__head {
    line-height: 16.8px;
    margin-right: 50px;
    width: 50%;
  }
}
.footer__mobile, .footer__title {
  display: none;
}
@media (max-width: 767px) {
  .footer__mobile, .footer__title {
    display: flex;
  }
}
.footer__mobile {
  height: 73px;
  align-items: center;
  background-color: #e6e6e6;
  position: relative;
}
.footer__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #20212d;
  display: flex;
  align-items: center;
}
.footer__title img {
  width: 15px;
  height: 34.54px;
  margin-right: 10px;
}
.footer__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__item {
  font-size: 10px;
  line-height: 20px;
  color: #000;
}
.footer__m-logo {
  width: 25px;
  height: 45px;
}
.footer__m-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__reserved {
  font-size: 8px;
  line-height: 12px;
  color: #848484;
  position: absolute;
  bottom: 1rem;
}
.footer .social__item {
  display: flex;
  align-items: center;
}
.footer .social__item a {
  line-height: 44px;
  color: #000;
  font-size: calc(10px + 12 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .footer .social__item a {
    line-height: 22px;
  }
}
.footer .social__item a:hover, .footer .social__item a:focus {
  color: #848484;
  transition: 0.2s ease 0.2s;
}
.footer .social__icon {
  background: #28337d;
  width: 27.14px;
  height: 27.14px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .footer .social__icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}
.footer .social__icon img {
  width: 1rem;
}
@media (max-width: 767px) {
  .footer .social__icon img {
    width: 0.5rem;
  }
}

/* -------------------- FORMS -------------------- */
.forms__agree {
  display: flex;
  align-items: center;
}
.forms__check {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.forms__check + label {
  display: flex;
  user-select: none;
}
.forms__check + label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 5px;
  background: #000;
  font-size: 12px;
}
.forms__check:checked + label::before {
  background-image: url("/img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center;
}
/* -------------------- BANNER -------------------- */
.banner {
  position: relative;
  height: 711px;
  overflow: hidden;
}
@media (max-width: 1320px) {
  .banner {
    height: 600px;
  }
}
@media (max-width: 350px) {
  .banner {
    height: 550px;
  }
}
.banner ._container, .banner__content {
  height: 100%;
}
.banner__content {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .banner__body {
    text-align: center;
  }
}
.banner__name {
  margin-left: -1rem;
}
@media (max-width: 767px) {
  .banner__name {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}
.banner__text {
  width: 555px;
}
@media (max-width: 767px) {
  .banner__text {
    width: 100%;
  }
}
.banner__phrase {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .banner__phrase {
    margin-top: 1rem;
  }
}
.banner__phrase p {
  font-weight: 500;
  font-size: 22px;
  line-height: 31.68px;
  color: #fff;
}
@media (max-width: 767px) {
  .banner__phrase p {
    font-weight: 400;
    font-size: 12px;
    line-height: 17.28px;
    color: #000;
  }
}
.banner__img {
  position: absolute;
  top: 0;
  left: 0;
}
.banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1320px) {
  .banner__img img {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  .banner__img img {
    height: auto;
    position: relative;
    bottom: calc(0px + 1000 * ((100vw - 320px) / 1600));
  }
}
.banner .btn {
  width: 244px;
  height: 70px;
  font-weight: 500;
  font-size: 22px;
  line-height: 26.82px;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .banner .btn {
    width: 119px;
    height: 32px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14.63px;
    margin: 0 auto;
  }
}

/* -------------------- VIDEO -------------------- */
.video {
  padding: 100px 0px 150px 0px;
}
@media (max-width: 767px) {
  .video {
    padding: 50px 0;
  }
}
.video__title {
  font-weight: 500;
  line-height: 60px;
  color: #20212d;
  font-size: calc(16px + 24 * ((100vw - 320px) / 1600));
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .video__title {
    line-height: 24px;
  }
}
.video__title img {
  width: 31.44px;
  height: 72.39px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .video__title img {
    width: 17.37px;
    height: 40px;
  }
}
.video__blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1320px) {
  .video__blocks {
    justify-content: center;
  }
}
.video__block {
  flex: 0 0 25%;
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .video__block {
    margin: 1rem 0;
    flex: 1 1 auto;
  }
}
.video__poster {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .video__poster {
    border-radius: 20px;
  }
  .video__poster video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.video__play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-image: url("../img/svg/play.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .video__play {
    width: 51.97px;
    height: 51.97px;
  }
}
.video__play:hover, .video__play:focus {
  background-image: url("../img/svg/play-active.svg");
  transition: 0.2s ease 0.2s;
}
.video__logo {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 156.67px;
  height: 35px;
}
@media (max-width: 767px) {
  .video__logo {
    bottom: 15px;
    right: 15px;
    width: 81.41px;
    height: 18.19px;
  }
}
.video__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video__name {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.video__name img {
  width: 31.44px;
  height: 34.98px;
}
@media (max-width: 767px) {
  .video__name img {
    width: 16.34px;
    height: 18.18px;
  }
}
.video__name h4 {
  line-height: 33px;
  color: #20212d;
  margin-left: 10px;
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .video__name h4 {
    line-height: 18px;
    margin-left: 5px;
  }
}
.video__more {
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
}
.video .btn {
  width: 346px;
  height: 70px;
  font-weight: 500;
  font-size: 22px;
  line-height: 33px;
  color: #fff;
  justify-content: space-between;
  padding: 5px;
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .video .btn {
    width: 200px;
    height: 32px;
    line-height: 18px;
  }
}
.video .btn:hover span:first-child, .video .btn:focus span:first-child {
  background-image: url("../img/svg/YouTube-active.svg");
  transition: 0.2s ease 0.2s;
}
.video .btn span:first-child {
  width: 59.94px;
  height: 59.94px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../img/svg/YouTube.svg");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .video .btn span:first-child {
    width: 23.97px;
    height: 23.97px;
    background-size: 75%;
  }
}
.video .btn span:last-child {
  flex: 1 1 auto;
  text-align: center;
}

/* -------------------- MUSIC -------------------- */
.music {
  background-image: url("../img/bg-ornament.png");
  padding: 100px 0 150px;
}
@media (max-width: 767px) {
  .music {
    padding: 75px 0 100px;
  }
}
.music__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.music__title {
  font-weight: 500;
  font-size: calc(16px + 24 * ((100vw - 320px) / 1600));
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .music__title {
    line-height: 24px;
  }
}
.music__title img {
  width: 31.44px;
  height: 72.39px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .music__title img {
    width: 17.37px;
    height: 40px;
  }
}
.music__items {
  display: flex;
  margin: 0 -1rem;
}
.music__items ._active a::after {
  background: #77d3d5;
  width: 100%;
  transition: 0.3s ease 0.3s;
}
.music__item {
  margin: 0 1rem;
}
.music__item a {
  font-weight: 600;
  line-height: 33px;
  color: #fff;
  position: relative;
  cursor: pointer;
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .music__item a {
    line-height: 18px;
  }
}
.music__item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: transparent;
  border-radius: 3px;
}
.music__item a:hover::after, .music__item a:focus::after {
  background: #77d3d5;
  width: 100%;
  transition: 0.3s ease 0.3s;
}
.music__blocks {
  flex-wrap: wrap;
  justify-content: space-between;
  display: none;
  opacity: 0;
}
.music__block {
  margin-top: 2rem;
  position: relative;
  height: fit-content;
}
@media (max-width: 1320px) {
  .music__block {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .music__block {
    margin-top: 0.5rem;
  }
}
@media (max-width: 479px) {
  .music__block {
    margin-top: 5px;
  }
}
.music__cols {
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
}
@media (max-width: 1320px) {
  .music__col {
    width: 49%;
  }
}
.music__img {
  border-radius: 35px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .music__img {
    border-radius: 10px;
  }
}
.music__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.music__icon-yandex {
  position: absolute;
  bottom: 15px;
  left: 20px;
  width: 63px;
  height: 62px;
}
@media (max-width: 767px) {
  .music__icon-yandex {
    bottom: 5px;
    left: 5px;
    width: 17px;
    height: 17px;
  }
}
.music__icon-yandex img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.music__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1320px) {
  .music__flex .music__block:first-child {
    margin-right: 1.5rem;
  }
}
@media (max-width: 991px) {
  .music__flex .music__block:first-child {
    margin-right: 1rem;
  }
}
@media (max-width: 767px) {
  .music__flex .music__block:first-child {
    margin-right: 0.5rem;
  }
}
@media (max-width: 479px) {
  .music__flex .music__block:first-child {
    margin-right: 5px;
  }
}
.music__listen-yandex {
  display: flex;
  justify-content: center;
  margin-top: 75px;
}
@media (max-width: 767px) {
  .music__listen-yandex {
    margin-top: 50px;
  }
}
.music__btn-listen {
  width: 414px;
  height: 70px;
  border-radius: 40px;
  background-color: #fff;
  line-height: 33px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  font-family: Montserrat;
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .music__btn-listen {
    width: 50%;
    height: 31px;
    line-height: 1;
  }
}
@media (max-width: 479px) {
  .music__btn-listen {
    width: 211px;
    padding: 3px;
  }
}
.music__btn-listen span:first-child {
  content: url("../img/svg/icons8-yandex-music-red.svg");
}
@media (max-width: 767px) {
  .music__btn-listen span:first-child {
    width: 24px;
    height: 24px;
  }
}
.music__btn-listen span:last-child {
  flex: 1 1 auto;
}
.music__btn-listen:hover span:first-child, .music__btn-listen:focus span:first-child {
  content: url("../img/svg/icons8-yandex-music-blue.svg");
  transition: 0.2s ease 0.2s;
}

/* -------------------- CONCERTS -------------------- */
.concerts {
  padding: 100px 0 150px;
}
@media (max-width: 767px) {
  .concerts {
    padding: 50px 0;
  }
}
.concerts__title {
  font-weight: 500;
  font-size: calc(16px + 24 * ((100vw - 320px) / 1600));
  line-height: 60px;
  display: flex;
  align-items: center;
}
.concerts__title img {
  width: 31.44px;
  height: 72.39px;
  margin-right: 15px;
}
@media (max-width: 479px) {
  .concerts__title img {
    width: 15px;
  }
}
.concerts__block {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 0 20px 0px #ccc;
  margin-top: 50px;
}
@media (max-width: 1320px) {
  .concerts__block {
    border-radius: 10px;
    margin-top: 20px;
  }
}
.concerts__ornament {
  background-color: #77d3d5;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 4rem;
}
@media (max-width: 767px) {
  .concerts__ornament {
    padding: 0 2rem;
  }
  .concerts__ornament img:last-child {
    display: none;
  }
}
.concerts__ornament img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.concerts__body {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1320px) {
  .concerts__body {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .concerts__body {
    flex-wrap: wrap;
  }
}
.concerts__cols {
  display: flex;
  padding: 20px 0px 20px 35px;
  flex: 1 1 auto;
}
@media (max-width: 991px) {
  .concerts__cols {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .concerts__cols {
    padding: 10px 20px;
    flex-direction: unset;
  }
}
.concerts__col {
  width: 50%;
}
@media (max-width: 991px) {
  .concerts__col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .concerts__col {
    width: 50%;
  }
}
.concerts__col:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.35);
}
.concerts__col .concerts__head {
  height: 66.66%;
}
.concerts__col .concerts__location,
.concerts__col .concerts__clock,
.concerts__col .concerts__date,
.concerts__col .concerts__buy-ticket {
  height: 33.33%;
}
@media (max-width: 767px) {
  .concerts__col .concerts__clock {
    display: flex;
  }
}
.concerts__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding: 5px 0px 35px 0px;
}
@media (max-width: 1320px) {
  .concerts__head {
    padding: 5px 3rem 23px 0px;
  }
}
@media (max-width: 767px) {
  .concerts__head {
    justify-content: center;
    padding: 5px 1rem 23px 0px;
  }
}
.concerts__head h4 {
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
  margin-top: 1rem;
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .concerts__head h4 {
    line-height: 15px;
    text-transform: none;
  }
}
.concerts__name {
  width: 400px;
}
@media (max-width: 1320px) {
  .concerts__name {
    width: 100%;
  }
}
.concerts__name img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.concerts__location {
  display: flex;
  justify-content: space-between;
  padding: 20px 5rem 10px 0px;
}
@media (max-width: 1320px) {
  .concerts__location {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .concerts__location {
    padding: 20px 20px 5px 0;
  }
}
.concerts__strokes {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1320px) {
  .concerts__strokes {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .concerts__strokes {
    width: 100%;
    justify-content: center;
  }
}
.concerts__strokes span {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .concerts__strokes span {
    text-transform: none;
  }
}
.concerts__strokes span:first-child {
  font-weight: 500;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.35);
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .concerts__strokes span:first-child {
    line-height: 1;
  }
}
.concerts__strokes span:last-child {
  font-weight: 600;
  line-height: 22px;
  color: #000;
  margin-top: 1rem;
  font-size: calc(8px + 14 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .concerts__strokes span:last-child {
    margin-top: 5px;
    line-height: 1;
  }
}
.concerts__clock {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding: 5px 0px 30px 30px;
}
@media (max-width: 767px) {
  .concerts__clock {
    padding: 5px 20px 20px 20px;
  }
}
.concerts__date {
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  padding: 20px 3rem 30px 30px;
}
@media (max-width: 1320px) {
  .concerts__date {
    padding: 20px;
  }
}
.concerts__buy-ticket {
  padding: 50px 0px 0px 30px;
}
@media (max-width: 991px) {
  .concerts__buy-ticket {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .concerts__buy-ticket {
    padding: 20px;
    display: flex;
    align-items: center;
  }
}
.concerts__buy-ticket a {
  color: #eb6c6b;
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 700;
  line-height: 16.2px;
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
}
.concerts__buy-ticket a:hover, .concerts__buy-ticket a:focus {
  text-decoration: none;
  transition: 0.2s ease 0.2s;
}
@media (max-width: 767px) {
  .concerts__buy-ticket a {
    text-transform: none;
  }
}
.concerts__img {
  min-width: 301px;
  height: auto;
}
@media (max-width: 767px) {
  .concerts__img {
    min-width: unset;
    width: 100%;
    height: 208px;
  }
}
.concerts__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concerts__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .concerts__more {
    display: none;
  }
}
.concerts__more a {
  font-size: 22px;
  line-height: 33px;
  color: #000;
  display: flex;
  align-items: center;
}
.concerts__more a:hover span, .concerts__more a:focus span {
  transition: 0.2s ease 0.2s;
  background-color: #28337d;
}
.concerts__more a span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #77d3d5;
  margin-left: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -------------------- DONATION -------------------- */
.donation {
  /* Checked */
}
.donation__banner {
  position: relative;
}
.donation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.donation__title {
  font-weight: 500;
  font-size: calc(18px + 32 * ((100vw - 320px) / 1600));
  line-height: 70px;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .donation__title {
    line-height: 2rem;
  }
}
.donation__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px 0;
}
@media (max-width: 1320px) {
  .donation__body {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .donation__body {
    flex-direction: column;
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .donation__body {
    padding: 0px 0px 50px 0px;
  }
}
@media (max-width: 991px) {
  .donation__ornament {
    display: none;
  }
}
.donation__text {
  width: 100%;
  max-width: 500px;
  padding: 0px 2rem 0px 0px;
  position: relative;
}
@media (max-width: 1320px) {
  .donation__text {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .donation__text {
    padding: 0;
    max-width: unset;
  }
  .donation__text::before, .donation__text::after {
    content: url("../img/svg/Ornament-mobile.svg");
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .donation__text {
    text-align: center;
  }
}
.donation__text h5 {
  font-size: 16px;
  line-height: 22.4px;
  margin-top: 1rem;
  justify-content: center;
}
.donation__text p {
  line-height: 33px;
  color: #000;
  font-weight: 500;
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .donation__text p {
    line-height: 16.8px;
  }
}
.donation__text p:first-child, .donation__text p:nth-child(2) {
  font-weight: 400;
}
.donation__text p:not(:first-child) {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .donation__text p:not(:first-child) {
    margin-top: 1rem;
  }
}
.donation__form {
  width: 100%;
  max-width: 624px;
}
@media (max-width: 991px) {
  .donation__form {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .donation__form {
    margin-top: 35px;
  }
}
.donation .forms {
  background-color: #fafafa;
  border-radius: 40px;
  box-shadow: 0 0 20px 0px #ccc;
  padding: 50px;
}
@media (max-width: 1320px) {
  .donation .forms {
    padding: 30px;
  }
}
.donation .forms__input input {
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 20px;
}
@media (max-width: 767px) {
  .donation .forms__input input {
    height: 32px;
    border-radius: 20px;
  }
}
.donation .forms__input input::placeholder {
  line-height: 21.94px;
  font-family: Montserrat;
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
}
.donation .forms__dates {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .donation .forms__dates {
    margin-top: 30px;
  }
}
.donation .forms__dates .forms__input {
  margin-bottom: 1rem;
}
.donation .forms__dates .forms__input input::placeholder {
  color: rgba(6, 0, 159, 0.5);
}
.donation .forms__btn {
  width: 100%;
  height: 60px;
  font-weight: 600;
  line-height: 26.82px;
  font-family: Montserrat;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(90deg, rgb(235, 108, 107) 50%, rgba(235, 108, 107, 0.7) 100%);
  font-size: calc(12px + 10 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .donation .forms__btn {
    height: 32px;
  }
}
.donation .forms__btn:hover, .donation .forms__btn:focus {
  background: linear-gradient(90deg, rgb(40, 51, 125) 50%, rgba(40, 51, 125, 0.7) 100%);
  transition: 0.2s ease 0.2s;
}
.donation .forms__agree {
  line-height: 21.94px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .donation .forms__agree {
    margin-top: 1rem;
    line-height: 1;
  }
}
.donation .forms__agree a {
  text-decoration: underline;
  color: inherit;
}
.donation .forms__agree a:hover, .donation .forms__agree a:focus {
  text-decoration: none;
  transition: 0.2s ease 0.2s;
}
.donation .selects {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .donation .selects {
    margin-top: 30px;
  }
}
.donation .pays,
.donation .how {
  display: flex;
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 5px;
}
@media (max-width: 767px) {
  .donation .pays,
  .donation .how {
    height: 32px;
    border-radius: 32px;
    padding: 2px;
  }
}
.donation .how {
  margin-top: 1rem;
}
.donation .pays-item,
.donation .how-item {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: transparent;
  width: 100%;
  height: 100%;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .donation .pays-item,
  .donation .how-item {
    border-radius: 32px;
  }
}
.donation .pays-item input[type=radio],
.donation .how-item input[type=radio] {
  display: none;
}
.donation .pays-item label,
.donation .how-item label {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 21.94px;
  font-family: Montserrat;
  color: #000;
  cursor: pointer;
  user-select: none;
  border-radius: 40px;
  width: 100%;
  height: 100%;
  font-size: calc(10px + 8 * ((100vw - 320px) / 1600));
}
@media (max-width: 767px) {
  .donation .pays-item label,
  .donation .how-item label {
    border-radius: 32px;
  }
}
.donation .pays-item input[type=radio]:checked + label,
.donation .how-item input[type=radio]:checked + label {
  background: linear-gradient(90deg, rgb(119, 211, 213) 50%, rgb(170, 172, 255) 100%);
  transition: 0.2s ease 0.2s;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-BlackItalic.woff2") format("woff2"), url("../fonts/Montserrat-BlackItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-BoldItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2"), url("../fonts/Montserrat-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-LightItalic.woff2") format("woff2"), url("../fonts/Montserrat-LightItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-MediumItalic.woff2") format("woff2"), url("../fonts/Montserrat-MediumItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ThinItalic.woff2") format("woff2"), url("../fonts/Montserrat-ThinItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/* ***************** Общие стили ****************** */
body {
  color: #000;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat";
  min-width: 320px;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 auto;
  background-color: #fbfbfb;
}

._container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 767px) {
  ._container {
    max-width: none;
    padding: 0 15px;
  }
}

.main {
  flex: 1 1 auto;
}

.ai {
  position: relative;
  overflow: hidden;
  padding: 0 0 50% 0;
}
.ai img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

._mask {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}

._show {
  visibility: visible;
  animation: show 0.2s forwards 0.2s;
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn {
  background: #eb6c6b;
  border-radius: 40px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:hover, .btn:focus {
  background: #28337d;
  transition: 0.2s ease 0.2s;
}

.social__icon {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .m-hidden {
    display: none !important;
  }
}

.d-hidden {
  display: none;
}
@media (max-width: 767px) {
  .d-hidden {
    display: flex;
  }
}

._view {
  display: block !important;
  animation: view 0.2s forwards 0.2s;
}

@keyframes view {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
