@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&subset=cyrillic);html,
body {
  min-height: 100vh;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  background-color: #000000;
}

/* ------ GLOBAL STYLES ------ */

.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 576px) {
  .centered {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.centered.toleft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.centered.toright {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pointer {
  cursor: pointer;
}

@media (max-width: 576px) {
  .mobhide {
    display: none;
  }
}

.btn {
  border-radius: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 18px 20px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn__ico:last-child,
.btn__title:last-child {
  margin-left: 16px;
}

@media (max-width: 992px) {
  .btn__ico:last-child,
  .btn__title:last-child {
    margin-left: 10px;
  }
}

.btn__ico {
  max-width: 37px;
  min-width: 37px;
  max-height: 36px;
  fill: #fff;
}

.btn__title {
  font-weight: bold;
  font-size: 18px;
}

.btn.ghost {
  border: 1px solid #373737;
  color: #202020;
}

.btn.ghost:hover {
  background: #373737;
  color: #fafafa;
}

.btn.ghost.white {
  background: none;
  border-color: #fafafa;
  color: #fafafa;
}

.btn.ghost.white:hover {
  background: #fafafa;
  color: #202020;
}

.btn.solid {
  background: #202020;
  color: #fafafa;
}

.btn.solid:hover {
  background: #373737;
}

.btn.solid.white {
  background: #fafafa;
  color: #202020;
}

.btn.solid.white:hover {
  background: #eee;
  color: #202020;
}

.btn .icon-left {
  margin-right: 16px;
}

.btn .icon-right {
  margin-left: 16px;
}

.header-cover {
  width: 100%;
  min-height: 40vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}

@media (max-width: 1200px) {
  .header-cover {
    margin-bottom: 90px;
    min-height: 35vh;
  }
}

@media (max-width: 992px) {
  .header-cover {
    margin-bottom: 80px;
    min-height: 30vh;
  }
}

@media (max-width: 768px) {
  .header-cover {
    margin-bottom: 50px;
  }
}

.header-cover h1 {
  color: #fafafa;
  font-weight: 800;
  padding-top: 24vh;
}

@media (max-width: 576px) {
  .header-cover h1 {
    padding-top: 14vh;
  }
}

.content {
  overflow: hidden;
}

.hamburger {
  position: relative;
  cursor: pointer;
}

.hamburger.active .hamburger__line._t {
  top: -100%;
  opacity: 0;
  -webkit-transition: opacity .2s, top .3s;
  transition: opacity .2s, top .3s;
}

.hamburger.active .hamburger__line._b {
  bottom: -100%;
  opacity: 0;
  -webkit-transition: opacity .2s, bottom .3s;
  transition: opacity .2s, bottom .3s;
}

.hamburger.active .hamburger__line._c {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.hamburger.active .hamburger__line._c._c1 {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger__line._c._c2 {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.hamburger__in {
  position: relative;
  width: 17px;
  height: 14px;
}

.hamburger__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #FFF;
}

.hamburger__line._t {
  top: 0;
  -webkit-transition: opacity .3s, top .3s;
  transition: opacity .3s, top .3s;
}

.hamburger__line._c {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.hamburger__line._b {
  bottom: 0;
  -webkit-transition: opacity .3s, bottom .3s;
  transition: opacity .3s, bottom .3s;
}

.hamburger-area {
  position: absolute;
  right: 0;
  z-index: 34;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  max-height: 100px;
  padding: 30px 50px 30px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .hamburger-area {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .hamburger-area {
    padding: 15px;
    height: 50px;
  }
}

@media (max-width: 460px) {
  .hamburger-area {
    top: 1px;
  }
}

.hamburger-area.active {
  position: fixed;
}

.hamburger {
  height: 24px;
  width: 36px;
}

@media (max-width: 576px) {
  .hamburger {
    height: 20px;
    width: 28px;
  }
}

@media (max-width: 460px) {
  .hamburger {
    height: 16px;
    width: 22px;
  }
}

/* ------ HEADER ------ */

.header {
  height: 0;
  padding-top: 30px;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 25px;
  }
}

@media (max-width: 768px) {
  .header {
    padding-top: 15px;
  }
}

@media (max-width: 576px) {
  .header {
    padding-top: 10px;
  }
}

@media (max-width: 460px) {
  .header {
    padding-top: 5px;
  }
}

.header.active .logo {
  position: fixed;
  top: 30px;
}

@media (max-width: 1200px) {
  .header.active .logo {
    top: 25px;
  }
}

@media (max-width: 768px) {
  .header.active .logo {
    top: 15px;
  }
}

@media (max-width: 576px) {
  .header.active .logo {
    top: 10px;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 85px;
  padding: 0 50px;
}

@media (max-width: 1200px) {
  .header__container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding-top: 15px;
  }
}

@media (max-width: 576px) {
  .header__container {
    height: 43px;
    padding: 0 15px;
  }
}

@media (max-width: 460px) {
  .header__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 34;
  width: 150px;
}

@media (max-width: 576px) {
  .header .logo {
    width: 70px;
    height: 43px;
  }
}

.header .logo img {
  max-width: 100%;
}

.header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 70px;
  z-index: 2;
}

@media (max-width: 576px) {
  .header .social {
    margin-right: 50px;
  }
}

@media (max-width: 460px) {
  .header .social {
    margin-right: 35px;
  }
}

.header .social a {
  margin: 0 5px;
  opacity: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 576px) {
  .header .social a {
    margin: 0 1px;
  }
}

@media (max-width: 460px) {
  .header .social a {
    width: 24px;
    height: 24px;
  }
}

.header .social a:hover {
  opacity: 1;
}

.header .social a:last-child {
  margin-right: 0;
}

@media (max-width: 576px) {
  .header .social a:last-child {
    margin-right: 0;
  }
}

.header .social a img {
  max-width: 100%;
  max-height: 100%;
}

.menu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 33;
  background: url("/images/menu-bg.jpg") center/cover no-repeat;
  color: #fafafa;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.menu:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.menu.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.menu a {
  position: relative;
  z-index: 5;
  color: #fafafa;
  font-size: 36px;
  margin: 10px 0;
  font-weight: 300;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

@media (max-width: 768px) {
  .menu a {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .menu a {
    font-size: 26px;
  }
}

.menu a:hover {
  opacity: 0.7;
}

.sound {
  position: absolute;
  top: 64vh;
  left: 2vw;
  z-index: 2;
  width: 2vw;
  cursor: pointer;
}

@media (max-width: 576px) {
  .sound {
    top: 65vh;
    width: 8vw;
  }
}

.sound img {
  width: 100%;
}

.sound .soundoff {
  display: none;
}

.main-slider {
  margin-top: -30px;
}

.main-slider .swiper-slide {
  overflow: hidden;
  cursor: default;
}

.main-slider .swiper-slide .swiper-title {
  z-index: 1;
  position: absolute;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 70vh;
}

.main-slider .swiper-slide h1 {
  font-weight: 600;
  font-size: 120px;
  margin-top: -10px;
}

@media (max-width: 576px) {
  .main-slider .swiper-slide h1 {
    line-height: 60px;
    font-size: 80px;
    margin-top: 50px;
  }
}

.main-slider .swiper-slide span {
  font-weight: 300;
}

@media (max-width: 576px) {
  .main-slider .swiper-slide span {
    font-size: 24px;
  }
}

.main-slider .swiper-slide .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0.1)), to(#000));
  background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.1) 40%, #000 100%);
}

@media (max-width: 1200px) {
  .main-slider {
    margin-top: -25px;
  }
}

@media (max-width: 768px) {
  .main-slider {
    margin-top: -15px;
  }
}

@media (max-width: 576px) {
  .main-slider {
    margin-top: -10px;
  }
}

@media (max-width: 460px) {
  .main-slider {
    margin-top: -5px;
  }
}

.sponsors-header {
  color: #fff;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 70px;
}

@media (max-width: 460px) {
  .sponsors-header  {
    margin-top: 50px;
    font-size: 20px;
  }
}

.sponsors {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.sponsors div {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 460px) {
  .sponsors div  {
    width: 50%;
  }
}

.sponsors div p{
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

.sponsor1 {
  width: 40%;
}

.sponsor2 {
  width: 60%;
}

.sponsor3 {
  width: 20%;
}



.shop-header {
  color: #fff;
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  margin-top: 70px;
}

@media (max-width: 460px) {
  .shop-header  {
    margin-top: 50px;
    font-size: 30px;
  }
}

.shop {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 30px;
}

@media (max-width: 460px) {
  .shop {
    flex-wrap: wrap;
  }
}

.shop a {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.shop a img{
  width: 80%;
}


@media (max-width: 460px) {
  .shop a  {
    width: 50%;
  }
}

.shop a p{
  color: #fff;
  margin-top: 10px;
  text-align: center;
}



/* ------ SLIDER ------ */

.swiper-container {
  width: 100%;
  height: 70vh;
  background-color: #000;
}

@media (max-width: 576px) {
  .swiper-container {
    height: 50vh;
  }
}

.swiper-slide h1 {
  color: #fff;
  font-size: 10rem;
  line-height: 8rem;
  font-weight: 400;
  text-align: left;
}

.swiper-slide span {
  color: #fff;
  font-size: 2rem;
  text-align: left;
  font-weight: 100;
}

@media (max-width: 576px) {
  .swiper-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (min-aspect-ratio: 16 / 9) {
  .swiper-video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16 / 9) {
  .swiper-video {
    width: 300%;
    left: -100%;
  }
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .swiper-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

@media (max-width: 576px) {
    .swiper-video.hideme {
      display: none;
    }
}
}

.swiper-button-prev {
  position: absolute;
  top: 3vh;
  left: 0;
  width: 30vw;
  height: 90vh;
  background: none;
}

.swiper-button-next {
  position: absolute;
  top: 3vh;
  right: 0;
  width: 30vw;
  height: 90vh;
  background: none;
}

/* ------ CITY CHOICE ------ */

.dropdown {
  width: 240px;
}

@media (max-width: 576px) {
  .dropdown {
    width: 100%;
  }
}

.dropdown .btn {
  width: 100%;
}

.dropdown .dropdown-menu {
  border: 0;
  margin-top: 1px;
  border-radius: 0;
  background: #202020;
  padding: 0px 0px;
  width: 100%;
}

.dropdown .dropdown-menu .dropdown-item {
  color: #fafafa;
  font-weight: 300;
  padding: 16px 20px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background: #373737;
}

/* ------ CONCERTS TABLE ------ */

.city {
  margin: 30px 0;
}

.filter.afisha .filterDiv {
  display: none;
}

.filter.afisha .filterDiv.show {
  display: block;
}

.tickets-block {
  border-top: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 30px 0;
  color: #fff;
}

.tickets-block__ico {
  max-width: 24px;
  max-height: 24px;
  fill: #fff;
}

.tickets-block .tickets-day {
  font-weight: 900;
  font-size: 24px;
}

@media (max-width: 576px) {
  .tickets-block .tickets-day {
    font-size: 16px;
  }
}

.tickets-block .tickets-time span {
  text-transform: capitalize;
}

.tickets-block .tickets-city {
  font-weight: 900;
  font-size: 24px;
}

@media (max-width: 576px) {
  .tickets-block .tickets-city {
    font-size: 16px;
  }
}

.tickets-block .tickets-city span {
  cursor: pointer;
}

.tickets-block .btn {
  background: #373737;
  padding: 16px 20px;
  font-weight: 300;
  font-size: 14px;
}

@media (max-width: 992px) {
  .tickets-block .btn {
    padding: 14px 15px;
  }
}

@media (max-width: 768px) {
  .tickets-block .btn {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .tickets-block .btn {
    margin-top: 10px;
  }
}

.tickets-block .btn__ico {
  margin-top: -2px;
}

@media (max-width: 992px) {
  .tickets-block .btn__ico {
    max-width: 30px;
    min-width: 30px;
    max-height: 30px;
  }
}

.tickets-block .btn__title {
  text-transform: uppercase;
  margin-bottom: -2px;
}

@media (max-width: 992px) {
  .tickets-block .btn__title {
    font-size: 14px;
  }
}

.tickets-block .btn:hover {
  background: #202020;
}

.tickets-block .btn img {
  width: 15%;
}

@media (max-width: 576px) {
  .tickets-block .btn img {
    width: 10%;
  }
}

.modal-content {
  border-radius: 0;
  background: none;
  border: none;
}

.modal-content .modal-header {
  border: none;
}

.modal-content .modal-header .close {
  color: #fafafa;
  text-shadow: none;
  opacity: 1;
  font-size: 36px;
  outline: none;
}

.modal-content .modal-header .close:hover {
  color: #fafafa !important;
}

.modal-content .modal-body {
  padding: 0;
}

.modal-content .modal-body .YMaps {
  width: 100%;
  height: 500px;
}

.cal .modal-body {
  background: #fff;
  padding-top: 40px;
}

@media (max-width: 576px) {
  .cal .modal-body {
    padding-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .cal .modal-body .hm {
    display: none;
  }
}

.cal .modal-body .centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 576px) {
  .cal .modal-body .centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cal .modal-body .centered.toleft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 576px) {
  .cal .modal-body .centered.toleft {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cal .modal-body .centered.toright {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 576px) {
  .cal .modal-body .centered.toright {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cal .modal-body .tickets-day {
  font-weight: 900;
  font-size: 24px;
}

.cal .modal-body .tickets-time span {
  text-transform: capitalize;
}

.cal .modal-body .tickets-city {
  font-weight: 900;
  font-size: 24px;
}

.cal .modal-body .tickets-city span {
  cursor: pointer;
}

@media (max-width: 576px) {
  .cal .modal-body .btns {
    margin-top: 20px;
  }
}

.cal .btn {
  text-transform: none;
  padding: 14px 20px;
  margin: 40px 0 60px 0;
  font-size: 15px;
}

@media (max-width: 576px) {
  .cal .btn {
    margin: 10px 0 10px 0;
  }
}

/* ------ VIDEO PAGE------ */

.bold-content h1 {
  line-height: 1;
  font-size: 96px;
}

@media (max-width: 1200px) {
  .bold-content h1 {
    font-size: 76px;
  }
}

@media (max-width: 992px) {
  .bold-content h1 {
    font-size: 58px;
  }
}

@media (max-width: 576px) {
  .bold-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 370px) {
  .bold-content h1 {
    font-size: 32px;
  }
}

.bold-content h6 {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1200px) {
  .bold-content h6 {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .bold-content h6 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .bold-content h6 {
    font-size: 16px;
  }
}

.thin-content .header-cover {
  width: 100%;
  min-height: 40vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .thin-content .header-cover {
    min-height: 30vh;
  }
}

.thin-content .header-cover h1 {
  font-weight: 100;
  font-size: 96px;
}

@media (max-width: 1200px) {
  .thin-content .header-cover h1 {
    font-size: 76px;
  }
}

@media (max-width: 992px) {
  .thin-content .header-cover h1 {
    font-size: 58px;
  }
}

@media (max-width: 576px) {
  .thin-content .header-cover h1 {
    font-size: 36px;
  }
}

@media (max-width: 370px) {
  .thin-content .header-cover h1 {
    font-size: 32px;
  }
}

.thin-content .header-cover h6 {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
}

.tabs-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 60px -30px;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .tabs-container {
    margin: 30px -20px 0;
  }
}

@media (max-width: 992px) {
  .tabs-container {
    margin: 25px -15px 0;
  }
}

@media (max-width: 768px) {
  .tabs-container {
    margin: 20px -10px 0;
  }
}

@media (max-width: 576px) {
  .tabs-container {
    margin: 0 0 30px -10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tabs-container__item {
  cursor: pointer;
  padding: 30px;
  font-weight: 300;
  font-size: 36px;
  color: #ffffff;
  text-decoration: none;
  list-style: none;
}

@media (max-width: 1200px) {
  .tabs-container__item {
    font-size: 30px;
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .tabs-container__item {
    padding: 15px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .tabs-container__item {
    padding: 7px 10px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .tabs-container__item {
    padding: 3px 10px;
    font-size: 14px;
  }
}

.tabs-container__item:hover {
  color: #fff;
}

.tabs-container__item.active {
  font-weight: bold;
}

.tabs-container__item.active:hover {
  text-decoration: none;
}

.video-item {
  display: none;
  margin-bottom: 10vh;
}

@media (max-width: 576px) {
  .video-item {
    margin-bottom: 5vh;
  }
}

.video-item.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fafafa;
}

@media (max-width: 576px) {
  .video-item.show {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.video-item.show .video-wrapper {
  width: 55%;
}

@media (max-width: 576px) {
  .video-item.show .video-wrapper {
    width: 100%;
  }
}

.video-item.show .video-wrapper .video-player {
  position: relative;
  padding-bottom: 56.2%;
  background: #ccc;
}

@media (max-width: 576px) {
  .video-item.show .video-wrapper .video-player {
    margin-bottom: 20px;
  }
}

.video-item.show .video-wrapper .video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.video-item.show .video-info {
  width: 40%;
  padding-left: 5%;
}

@media (max-width: 576px) {
  .video-item.show .video-info {
    width: 100%;
    padding-left: 0;
  }
}

.video-item.show .video-info .video-title {
  font-weight: 300;
  font-size: 24px;
}

@media (max-width: 576px) {
  .video-item.show .video-info .video-title {
    font-size: 18px;
  }
}

.video-item.show .video-info .video-sub-title {
  margin-top: 10px;
  font-weight: 300;
  font-size: 18px;
}

@media (max-width: 576px) {
  .video-item.show .video-info .video-sub-title {
    font-size: 16px;
  }
}

.video-item.show .video-info .video-text {
  margin-top: 60px;
  font-weight: 300;
  font-size: 18px;
  color: #fafafa;
}

@media (max-width: 576px) {
  .video-item.show .video-info .video-text {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .video-item.show .video-info .video-text {
    margin-top: 20px;
  }
}

.video-item.show .video-info .video-text p {
  color: #fafafa;
}

.video-item.show .video-info .video-text p span {
  color: #fafafa !important;
}

.video-item.show .video-info .video-text ul {
  margin: 10px 0;
  padding: 0;
  list-style: none;
  color: #fafafa;
}

.video-item.show .video-info .video-text li {
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  color: #fafafa;
}

/* ------ FILMS PAGE------ */

.films-container {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 140px;
}

@media (max-width: 1200px) {
  .films-container {
    margin: 0 -25px;
  }
}

@media (max-width: 992px) {
  .films-container {
    padding-top: 50px;
    padding-bottom: 60px;
    margin: 0 -15px;
  }
}

@media (max-width: 768px) {
  .films-container {
    margin: 0 -10px;
  }
}

@media (max-width: 576px) {
  .films-container {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

@media (max-width: 460px) {
  .films-container {
    margin: 0 -5px;
  }
}

.films-container__item {
  display: none;
}

.films-container__item.show {
  overflow: hidden;
  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;
  width: calc(100% / 3 - 60px);
  margin: 0 30px 60px;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .films-container__item.show {
    width: calc(100% / 3 - 50px);
    margin: 0 25px 40px;
  }
}

@media (max-width: 992px) {
  .films-container__item.show {
    width: calc(100% / 3 - 30px);
    margin: 0 15px 35px;
  }
}

@media (max-width: 768px) {
  .films-container__item.show {
    width: calc(100% / 2 - 20px);
    margin: 0 10px 30px;
  }
}

@media (max-width: 460px) {
  .films-container__item.show {
    width: calc(100% / 2 - 10px);
    margin: 0 5px 20px;
  }
}

.films-container__item.show:hover {
  text-decoration: none;
}

.films-container__item.show:hover .films-container__image-inner {
  -webkit-transform: scale(1.05) translateZ(0);
          transform: scale(1.05) translateZ(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform .7s ease-out;
  transition: -webkit-transform .7s ease-out;
  transition: transform .7s ease-out;
  transition: transform .7s ease-out, -webkit-transform .7s ease-out;
}

.films-container__item.show:hover .films-container__image:before {
  height: 40%;
  -webkit-transition: height .7s ease-out;
  transition: height .7s ease-out;
}

.films-container__image-inner {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform .5s ease-out;
  transition: -webkit-transform .5s ease-out;
  transition: transform .5s ease-out;
  transition: transform .5s ease-out, -webkit-transform .5s ease-out;
  pointer-events: none;
}

.films-container__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.films-container__image:before {
  content: '';
  position: absolute;
  z-index: 10;
  left: -2px;
  bottom: -3px;
  width: calc(100% + 4px);
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: height .5s ease-out;
  transition: height .5s ease-out;
}

.films-container__image:after {
  content: '';
  display: block;
  height: 1px;
  padding-bottom: 153%;
  pointer-events: none;
}

.films-container__image img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (-ms-high-contrast: active) and (-ms-high-contrast: none) {
  .films-container__image img {
    width: 0;
    height: 0;
  }
}

.films-container__title {
  margin-top: 10px;
  line-height: 1.2;
  font-size: 24px;
  color: #fff;
  text-align: center;
}

@media (max-width: 992px) {
  .films-container__title {
    font-size: 18px;
  }
}

@media (max-width: 460px) {
  .films-container__title {
    font-size: 16px;
  }
}

/* ------ OPEN VIDEO PAGE------ */

.once-video-container {
  padding-top: 100px;
  padding-bottom: 140px;
}

@media (max-width: 992px) {
  .once-video-container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.once-video-container__text {
  margin-top: 50px;
  font-weight: 300;
  font-size: 30px;
  left: 42px;
  color: #fff;
}

@media (max-width: 1200px) {
  .once-video-container__text {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .once-video-container__text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .once-video-container__text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .once-video-container__text {
    font-size: 16px;
  }
}

.once-video-container__text p {
  margin: 20px 0;
}

.once-video-container__text ul {
  margin: 20px 0;
  list-style: none;
  padding: 0;
}

.video-player {
  position: relative;
}

.video-player__wrap {
  padding-bottom: 62%;
}

.video-player__wrap iframe,
.video-player__wrap video,
.video-player__wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------ NEWS ------ */

.news-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

@media (max-width: 576px) {
  .news-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-menu__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  margin: 1px;
  width: calc(100% / 5 - 2px);
  background-color: #202020;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
}

@media (max-width: 992px) {
  .news-menu__item {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .news-menu__item {
    padding: 10px 5px;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media (max-width: 576px) {
  .news-menu__item {
    width: calc(100% - 2px);
  }
}

.news-menu__item.active {
  background-color: #fff;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
}

.news-menu__item.active .news-menu__img {
  fill: #000;
}

.news-menu__item.active .news-menu__text {
  color: #000;
}

.news-menu__item:hover {
  text-decoration: none;
}

.news-menu__item:hover:not(.active) {
  background-color: #424242;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
}

.news-menu__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  min-width: 24px;
  height: 25px;
  margin-right: 14px;
  fill: #fff;
}

@media (max-width: 992px) {
  .news-menu__img {
    width: 20px;
    min-width: 20px;
    height: 22px;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .news-menu__img {
    width: 16px;
    min-width: 16px;
    height: 17px;
    margin-right: 7px;
  }
}

.news-menu__text {
  color: #fff;
}

@media (max-width: 992px) {
  .news-menu__text {
    font-size: 14px;
  }
}

.news-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: -5px;
  padding-top: 80px;
  padding-bottom: 100px;
}

@media (max-width: 992px) {
  .news-container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.news-container .news-block {
  display: none;
}

.news-container .news-block.show {
  position: relative;
  margin: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #0c0c0c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

.news-container .news-block:hover .news-block__image-bg {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform .7s ease-out;
  transition: -webkit-transform .7s ease-out;
  transition: transform .7s ease-out;
  transition: transform .7s ease-out, -webkit-transform .7s ease-out;
}

.news-container .news-block:hover:before {
  height: 40%;
  -webkit-transition: height .7s ease-out;
  transition: height .7s ease-out;
}

.news-container .news-block:hover .news-block__img img {
  will-change: transform;
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
  -webkit-transition: -webkit-transform .7s ease-out;
  transition: -webkit-transform .7s ease-out;
  transition: transform .7s ease-out;
  transition: transform .7s ease-out, -webkit-transform .7s ease-out;
}

.news-container .news-block:before {
  content: '';
  position: absolute;
  z-index: 7;
  left: -4px;
  bottom: -5px;
  width: calc(100% + 8px);
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(20%, rgba(0, 0, 0, 0.1)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 20%, black 100%);
  -webkit-transition: height .5s ease-out;
  transition: height .5s ease-out;
}

.news-container .news-block.mycol-3 {
  width: calc(100% / 10 * 3 - 5px * 2);
}

@media (max-width: 992px) {
  .news-container .news-block.mycol-3 {
    width: calc(100% / 10 * 4 - 5px * 2);
  }
}

@media (max-width: 768px) {
  .news-container .news-block.mycol-3 {
    width: calc(100% / 10 * 5 - 5px * 2);
  }
}

@media (max-width: 460px) {
  .news-container .news-block.mycol-3 {
    width: calc(100% - 5px * 2);
  }
}

.news-container .news-block.mycol-4 {
  width: calc(100% / 10 * 3.333 - 5px * 2);
}

@media (max-width: 992px) {
  .news-container .news-block.mycol-4 {
    width: calc(100% / 10 * 5 - 5px * 2);
  }
}

@media (max-width: 768px) {
  .news-container .news-block.mycol-4 {
    width: calc(100% / 10 * 5 - 5px * 2);
  }
}

@media (max-width: 460px) {
  .news-container .news-block.mycol-4 {
    width: calc(100% - 5px * 2);
  }
}

.news-container .news-block.mycol-4 .news-block__wrap {
  padding-bottom: 73%;
}

@media (max-width: 768px) {
  .news-container .news-block.mycol-4 .news-block__wrap {
    padding-bottom: 85%;
  }
}

@media (max-width: 460px) {
  .news-container .news-block.mycol-4 .news-block__wrap {
    padding-bottom: 73%;
  }
}

.news-container .news-block.mycol-6 {
  width: calc(100% / 10 * 6 - 5px * 2);
}

@media (max-width: 992px) {
  .news-container .news-block.mycol-6 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: calc(100% - 5px * 2);
  }
}

.news-container .news-block__img {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.news-container .news-block__image-bg {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform .5s ease-out;
  transition: -webkit-transform .5s ease-out;
  transition: transform .5s ease-out;
  transition: transform .5s ease-out, -webkit-transform .5s ease-out;
}

.news-container .news-block__wrap {
  padding-bottom: 56%;
}

@media (max-width: 460px) {
  .news-container .news-block__wrap {
    padding-bottom: 73%;
  }
}

.news-container .news-block__row {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 992px) {
  .news-container .news-block__row {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .news-container .news-block__row {
    padding: 10px;
  }
}

.news-container .news-block__title {
  padding-right: 30px;
  line-height: 1.2;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 992px) {
  .news-container .news-block__title {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .news-container .news-block__title {
    padding-right: 20px;
  }
}

.news-container .news-block__ico-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 24px;
  max-width: 24px;
  max-height: 20px;
  fill: #fff;
}

@media (max-width: 992px) {
  .news-container .news-block__ico-link {
    max-width: 20px;
    min-width: 20px;
    max-height: 16px;
  }
}

/* ------ FOOTER ------ */

.footer {
  background: #000;
  margin-top: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
  color: #fafafa;
  font-size: 14px;
}

@media (max-width: 576px) {
  .footer {
    padding: 20px;
  }
}

.footer span {
  opacity: 0.7;
}

@media (max-width: 576px) {
  .footer .social {
    margin-bottom: 20px;
    text-align: center;
  }
}

.footer .social a {
  margin: 0 4px;
  opacity: 0.7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.footer .social a:hover {
  opacity: 1;
}

.footer .cc {
  font-size: 12px;
  text-align: right;
}

.footer .cc span {
  display: block;
  opacity: 0.7;
}

.footer .cc a {
  display: block;
  color: #fafafa;
  text-decoration: none;
  opacity: 0.7;
}

.footer .cc a:hover {
  opacity: 1;
}

/* ------ CONTACTS ------ */

.contacts {
  position: relative;
  margin-top: -30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fafafa;
  background: url("/images/contacts-bg.jpg") center/cover no-repeat;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.contacts:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.contacts .container {
  z-index: 12;
  margin: 150px 0;
}

@media (max-width: 576px) {
  .contacts .container {
    margin: 100px 0;
  }
}

.contacts .row {
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .contacts .row {
    margin-bottom: 10px;
  }
}

.contacts h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fafafa;
  text-align: center;
}

@media (max-width: 1200px) {
  .contacts h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .contacts h3 {
    font-size: 24px;
  }
}

.contacts p {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 1200px) {
  .contacts p {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .contacts p {
    font-size: 18px;
  }
}

.contacts a {
  font-weight: 500;
  color: #fafafa;
}

/* ------ ALBUMS ------ */

.videobg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 90vh;
  max-height: 650px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (max-width: 992px) {
  .videobg {
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .videobg {
    max-height: 380px;
  }
}

@media (max-width: 576px) {
  .videobg {
    max-height: 300px;
  }
}

@media (max-width: 370px) {
  .videobg {
    max-height: 260px;
  }
}

@media (max-width: 576px) {
  .videobg .hideme {
    display: none;
  }
}

.videobg .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(0, 0, 0, 0.1)), to(#000));
  background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.1) 40%, #000 100%);
}

.videobg video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.videobg .img-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.albums {
  z-index: 2;
}

.albums .header-cover h1 {
  font-weight: 100;
  font-size: 96px;
}

@media (max-width: 1200px) {
  .albums .header-cover h1 {
    font-size: 76px;
  }
}

@media (max-width: 992px) {
  .albums .header-cover h1 {
    font-size: 58px;
  }
}

@media (max-width: 576px) {
  .albums .header-cover h1 {
    font-size: 36px;
  }
}

@media (max-width: 370px) {
  .albums .header-cover h1 {
    font-size: 32px;
  }
}

.albums .album {
  margin-bottom: 80px;
  color: #fafafa;
}

@media (max-width: 576px) {
  .albums .album {
    margin-bottom: 80px;
  }
}

.albums .album .album-cover {
  width: 100%;
}

.albums .album .info {
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.albums .album .info h2 {
  margin-top: 0px;
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .albums .album .info h2 {
    margin-top: 20px;
  }
}

.albums .album .info h6 {
  font-weight: 300;
  font-size: 16px;
}

.albums .album .info hr {
  border: none;
  color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  height: 1px;
  width: 100%;
}

.albums .album .info .music {
  width: 100%;
}

.albums .album .info .music .listen {
  font-weight: 300;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .albums .album .info .music .listen {
    margin-bottom: 15px;
  }
}

.albums .album .info .music .listen span {
  margin-right: 10px;
}

.albums .album .info .music .music-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 576px) {
  .albums .album .info .music .music-links {
    margin-bottom: 20px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.albums .album .info .music .music-links a {
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .albums .album .info .music .music-links a {
    margin-right: 10px;
  }
}

.albums .album .info .music .music-links a img {
  height: 40px;
  border-radius: 5px;
}

@media (max-width: 576px) {
  .albums .album .info .music .music-links a img {
    height: 44px;
  }
}

.albums .album .songlist {
  width: 100%;
}

.albums .album .songlist .card {
  background: none;
}

.albums .album .songlist .card ol {
  -webkit-columns: 2 !important;
          columns: 2 !important;
  width: 100% !important;
  list-style-type: decimal !important;
  list-style-position: inside !important;
}

@media (max-width: 576px) {
  .albums .album .songlist .card ol {
    -webkit-columns: 1 !important;
            columns: 1 !important;
    -webkit-padding-start: 0px !important;
            padding-inline-start: 0px !important;
  }
}

.albums .album .songlist .card ul {
  -webkit-columns: 2 !important;
          columns: 2 !important;
  width: 100% !important;
  list-style-type: decimal !important;
  list-style-position: inside !important;
}

@media (max-width: 576px) {
  .albums .album .songlist .card ul {
    -webkit-columns: 1 !important;
            columns: 1 !important;
    -webkit-padding-start: 0px !important;
            padding-inline-start: 0px !important;
  }
}

.albums .album .songlist .card ul li {
  margin-bottom: 10px !important;
}

