@charset "UTF-8";
@font-face {
  font-family: 'SavoyeLetPlain';
  src: url("../fonts/SavoyeLetPlain.eot");
  src: url("../fonts/SavoyeLetPlain.eot?#iefix") format("embedded-opentype"), url("../fonts/SavoyeLetPlain.woff") format("woff"), url("../fonts/SavoyeLetPlain.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

.audioplayer {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.audioplayer.audioplayer--main {
  background-color: white;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  height: 106px;
}

.audioplayer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.audioplayer__btn {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
          background-size: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.audioplayer__time {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.audioplayer__replay, .audioplayer__forward {
  width: 22px;
  height: 22px;
  background-image: url(../img/player/btn-forward.png);
}

.audioplayer__replay:hover, .audioplayer__forward:hover {
  background-image: url(../img/player/btn-forward-active.png);
}

.audioplayer__replay {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

.audioplayer__timeline {
  margin: 0 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3px;
  background: #dcdcdc;
  position: relative;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.audioplayer__timeline::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 12px;
}

.audioplayer__timeline-inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #ff0000;
  cursor: pointer;
}

.audioplayer__timeline-inner::after {
  content: "";
  position: absolute;
  right: -7px;
  top: -8px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/player/btn-timeline.png);
  -webkit-background-size: contain;
          background-size: contain;
}

.audioplayer__time-count {
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  bottom: -webkit-calc(100% + 5px);
  bottom: calc(100% + 5px);
  color: #000000;
}

.audioplayer__time-current {
  left: 0;
  color: #c6c6c6;
}

.audioplayer__time-full {
  right: 0;
}

.audioplayer__control {
  width: 225px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 46px;
  position: relative;
}

.audioplayer__switch {
  width: 16px;
  height: 16px;
  background-image: url(../img/player/btn-next.png);
}

.audioplayer__switch:hover {
  background-image: url(../img/player/btn-next-active.png);
}

.audioplayer__prev {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

.audioplayer__play {
  margin: 0 18px;
  width: 71px;
  height: 71px;
  background-image: url(../img/player/btn-play.png);
  -webkit-background-size: contain;
          background-size: contain;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.audioplayer__volume {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 30px;
  width: 16px;
  position: relative;
}

.audioplayer__volume-btn {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/player/btn-volume.png);
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.audioplayer__volume-line {
  width: 2px;
  height: 54px;
  background: #dcdcdc;
  position: relative;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.audioplayer__volume-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  height: 100%;
  width: 16px;
}

.audioplayer__volume-line-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ff0000;
  cursor: pointer;
  width: 100%;
  height: 0%;
}

.audioplayer__volume-line-inner::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -7px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/player/btn-timeline.png);
  -webkit-background-size: contain;
          background-size: contain;
}

.audioplayer__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.audioplayer__info {
  max-width: -webkit-calc(100% - 220px);
  max-width: calc(100% - 220px);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  margin-left: 25px;
}

.audioplayer__info--mobile {
  display: none;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.audioplayer__title {
  font-size: 16px;
  color: #0e2152;
  font-weight: normal;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  max-height: 38px;
}

.audioplayer__performer {
  font-size: 12px;
  color: #989999;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.audioplayer__share {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/player/btn-share.png);
  width: 25px;
  height: 25px;
  margin: 0 25px 0 auto;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.audioplayer__share.hovered .audioplayer__share-list {
  display: block;
}

.audioplayer__share-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 10px;
  z-index: 5;
  font-size: 14px;
}

.audioplayer__share-list ul {
  background: #ffffff;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.audioplayer__share-list a {
  padding: 7px 15px;
  display: block;
}

.audioplayer__share-list a:hover {
  background: #dcdcdc;
}

.audioplayer__download {
  font-size: 16px;
  font-weight: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 47px;
  border: 1px solid #adaeac;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  color: #424242;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.audioplayer__download-icon {
  width: 23px;
  height: 23px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/player/btn-download.png);
  margin-left: 10px;
  -webkit-tap-highlight-color: transparent;
}

.audioplayer.audioplayer--sub {
  height: 95px;
  padding: 10px 17px;
  display: block;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 5px;
}

.audioplayer.audioplayer--sub .audioplayer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.audioplayer.audioplayer--sub .audioplayer__timeline {
  height: 2px;
  position: absolute;
  left: 17px;
  bottom: 10px;
  margin: 0;
  width: -webkit-calc(100% - 34px);
  width: calc(100% - 34px);
  opacity: 0;
  visibility: hidden;
}

.audioplayer.audioplayer--sub .audioplayer__timeline-inner::after {
  display: none;
}

.audioplayer.audioplayer--sub .audioplayer__number {
  font-size: 24px;
}

.audioplayer.audioplayer--sub .audioplayer__play {
  width: 40px;
  height: 40px;
  margin: 0 5px 0 0;
}

.audioplayer.audioplayer--sub .audioplayer__info {
  max-width: -webkit-calc(100% - 300px);
  max-width: calc(100% - 300px);
  white-space: nowrap;
  margin: 0;
}

.audioplayer.audioplayer--sub .audioplayer__time-full {
  position: static;
  width: 50px;
  font-size: 16px;
  text-align: right;
}

.audioplayer.audioplayer--sub .audioplayer__toolip {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/player/btn-info.png);
  -webkit-background-size: contain;
          background-size: contain;
  width: 24px;
  height: 24px;
  position: relative;
  margin: 0 5px;
}

.audioplayer.audioplayer--sub .audioplayer__toolip.hovered {
  background-image: url(../img/player/btn-info-active.png);
}

.audioplayer.audioplayer--sub .audioplayer__toolip.hovered::after {
  opacity: 1;
  visibility: visible;
}

.audioplayer.audioplayer--sub .audioplayer__toolip::after {
  position: absolute;
  content: attr(data-text);
  padding: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  bottom: -webkit-calc(100% + 10px);
  bottom: calc(100% + 10px);
  right: -30px;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}

.audioplayer.audioplayer--sub .audioplayer__download-small {
  margin: 0;
  -webkit-background-size: contain;
          background-size: contain;
  position: relative;
}

.audioplayer.audioplayer--sub .audioplayer__download-small.hovered {
  background-image: url(../img/player/btn-download-active.png);
}

.audioplayer.audioplayer--sub .audioplayer__download-small.hovered::after {
  opacity: 1;
  visibility: visible;
}

.audioplayer.audioplayer--sub .audioplayer__download-small::after {
  position: absolute;
  content: "Скачать";
  padding: 10px;
  bottom: -webkit-calc(100% + 10px);
  bottom: calc(100% + 10px);
  right: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-border-radius: 5px;
          border-radius: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}

.audioplayer.audioplayer--sub.play .audioplayer__timeline {
  opacity: 1;
  visibility: visible;
}

.audioplayer.audioplayer--sub.play .audioplayer__title {
  color: #ff0000;
}

.audioplayer.play .audioplayer__play {
  background-image: url(../img/player/btn-stop.png);
}

@media only screen and (max-width: 1199px) {
  .audioplayer__info {
    max-width: -webkit-calc(100% - 205px);
    max-width: calc(100% - 205px);
  }
  .audioplayer.audioplayer--sub .audioplayer__info {
    max-width: -webkit-calc(100% - 240px);
    max-width: calc(100% - 240px);
  }
}

@media only screen and (max-width: 991px) {
  .audioplayer__replay, .audioplayer__forward {
    width: 16px;
    height: 16px;
  }
  .audioplayer__timeline-inner::after {
    width: 14px;
    height: 14px;
    right: -5px;
    top: -6px;
  }
  .audioplayer__share {
    margin-right: 16px;
  }
  .audioplayer__volume-line-inner::after {
    width: 14px;
    height: 14px;
    right: -6px;
    top: -5px;
  }
  .audioplayer__download {
    border: none;
    width: auto;
    height: auto;
  }
  .audioplayer__download span {
    display: none;
  }
  .audioplayer__download-icon {
    margin: 0;
  }
  .audioplayer__info {
    max-width: -webkit-calc(100% - 90px);
    max-width: calc(100% - 90px);
  }
  .audioplayer.audioplayer--sub {
    height: 56px;
    padding: 10px;
  }
  .audioplayer.audioplayer--sub .audioplayer__timeline {
    bottom: 3px;
    height: 1px;
    left: 10px;
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px);
  }
  .audioplayer.audioplayer--sub .audioplayer__number {
    font-size: 12px;
  }
  .audioplayer.audioplayer--sub .audioplayer__play {
    width: 35px;
    height: 35px;
  }
  .audioplayer.audioplayer--sub .audioplayer__info {
    max-width: -webkit-calc(100% - 150px);
    max-width: calc(100% - 150px);
  }
  .audioplayer.audioplayer--sub .audioplayer__title {
    font-size: 14px;
  }
  .audioplayer.audioplayer--sub .audioplayer__performer {
    font-size: 11px;
  }
  .audioplayer.audioplayer--sub .audioplayer__time-full {
    font-size: 11px;
    width: 28px;
  }
  .audioplayer.audioplayer--sub .audioplayer__toolip {
    width: 14px;
    height: 14px;
  }
  .audioplayer.audioplayer--sub .audioplayer__toolip:hover::after {
    font-size: 12px;
  }
  .audioplayer.audioplayer--sub .audioplayer__download-small {
    width: 14px;
    height: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .audioplayer.audioplayer--main {
    height: auto;
    padding: 10px 0;
  }
  .audioplayer__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .audioplayer__control {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .audioplayer__time {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin: 10px 0;
  }
  .audioplayer__info--desc {
    display: none;
  }
  .audioplayer__info--mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    white-space: nowrap;
    margin-bottom: 10px;
  }
  .audioplayer__control {
    padding: 0;
    width: -webkit-calc(100% - 82px);
    width: calc(100% - 82px);
    padding-right: 82px;
  }
  .audioplayer__volume-btn {
    margin: 0;
  }
  .audioplayer__volume {
    padding-right: 58px;
    width: 80px;
    position: absolute;
    right: 0;
  }
  .audioplayer__volume-line {
    position: absolute;
    -webkit-transform: rotate(90deg) translateY(-50%);
        -ms-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
    left: 24px;
  }
  .audioplayer__share {
    margin-left: 0;
  }
  .audioplayer__share-list {
    right: auto;
    left: 0;
  }
  .audioplayer.audioplayer--sub .audioplayer__title {
    font-size: 12px;
  }
  .audioplayer.audioplayer--sub .audioplayer__performer {
    font-size: 9px;
  }
  .audioplayer.audioplayer--sub .audioplayer__time-full {
    font-size: 9px;
    width: 25px;
  }
  .audioplayer.audioplayer--sub .audioplayer__download-small::after {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    right: -10px;
  }
}

@media only screen and (max-width: 479px) {
  .audioplayer__title {
    font-size: 14px;
  }
  .audioplayer__performer {
    font-size: 10px;
  }
  .audioplayer__time-count {
    font-size: 10px;
  }
}

@media only screen and (max-width: 359px) {
  .audioplayer__play {
    width: 50px;
    height: 50px;
    margin: 0 10px;
  }
}

.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: #ff0000;
  border: 1px solid #ff0000;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  padding: 5px 15px;
  height: 47px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  outline: none;
}

.btn--w-360 {
  max-width: 360px;
  width: 100%;
}

.btn--center {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.btn--mt-25 {
  margin-top: 25px;
}

.btn .icon {
  margin-right: 10px;
}

.icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/icon-download.png);
  -webkit-background-size: contain;
          background-size: contain;
  width: 16px;
  height: 16px;
}

.icon--download {
  background-image: url(../img/icon-download.png);
}

.icon--music {
  background-image: url(../img/icon-music3.png);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

input[type=number]:invalid {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

img {
  vertical-align: top;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000000;
  font-weight: 300;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  margin: 0;
  background: #f3f3f3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

body::after {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: -1;
  content: url(../img/player/btn-play.png) url(../img/player/btn-stop.png) url(../img/player/btn-info.png) url(../img/player/btn-info-active.png) url(../img/player/btn-download.png) url(../img/player/btn-download-active.png) url(../img/player/btn-forward.png) url(../img/player/btn-forward-active.png) url(../img/player/btn-next.png) url(../img/player/btn-next-active.png) url(../img/player/btn-timeline.png) url(../img/player/btn-share.png) url(../img/player/btn-volume.png);
}

.main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.scroll-lock {
  overflow: hidden;
}

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

.header {
  background: #ffffff;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 5px;
}

.header__logo {
  max-width: 203px;
  width: 100%;
  max-height: 85px;
  display: block;
  margin-right: 40px;
  margin-bottom: 10px;
}

.header__logo img {
  display: block;
  max-height: 100%;
  max-width: 100%;
}

.header__text {
  max-width: 160px;
  font-size: 16px;
}

.footer-nav,
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
}

.footer-nav__list,
.header-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer-nav li + li,
.header-nav li + li {
  margin-left: 30px;
}

.footer-nav__link,
.header-nav__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-nav__link:hover,
.header-nav__link:hover {
  opacity: .8;
}

.footer-nav__icon,
.header-nav__icon {
  margin-right: 10px;
}

.header-nav {
  margin-left: auto;
}

.btn-menu {
  display: none;
  margin-left: auto;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  border: 1px solid #e8e8e8;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 15;
}

.btn-menu span {
  background-color: #ff0000;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  height: 3px;
  position: absolute;
  width: 22px;
  left: 8px;
  top: -webkit-calc(50% - 1px);
  top: calc(50% - 1px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-menu span:first-child {
  top: -webkit-calc(50% - 8px);
  top: calc(50% - 8px);
}

.btn-menu span:last-child {
  top: -webkit-calc(50% + 6px);
  top: calc(50% + 6px);
}

.btn-menu.active span:nth-child(2) {
  left: -20px;
  opacity: 0;
}

.btn-menu.active span:first-child, .btn-menu.active span:last-child {
  top: -webkit-calc(50% - 1px);
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn-menu.active span:last-child {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.social-icon {
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
}

.social-icon:hover {
  opacity: .8;
}

.social-icon--vk {
  background-image: url(../img/social-vk.png);
}

.social-icon--yt {
  background-image: url(../img/social-yt.png);
}

.social-icon--tg {
  background-image: url(../img/social-tg.png);
}

.social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.social li + li {
  margin-left: 5px;
}

.footer {
  position: relative;
  padding-top: 40px;
  z-index: 1;
}

.footer__bg {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  bottom: 0;
}

.footer__bg-left {
  left: 0;
}

.footer__bg-right {
  right: 0;
}

.footer__inner {
  padding-top: 45px;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
}

.footer__logo {
  max-width: 203px;
  margin-right: 45px;
  margin-bottom: 10px;
}

.footer__logo img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

.footer__text {
  max-width: 240px;
  font-size: 24px;
  margin-right: 45px;
}

.footer__middle {
  border-top: 1px solid #e5e5e5;
  padding: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__bottom {
  border-top: 1px solid #e5e5e5;
  padding: 10px 0;
}

.footer__copy {
  font-size: 14px;
  text-align: center;
}

.top-photo {
  margin: 0 0 25px;
  text-align: center;
}

.top-photo .container {
  padding: 0;
  max-width: 1140px;
}

.top-photo__img {
  max-width: 100%;
}

.title-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 25px;
}

.title-row__icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transform: translateY(11px);
      -ms-transform: translateY(11px);
          transform: translateY(11px);
  margin-right: 13px;
}

.title1 {
  font-family: "SavoyeLetPlain";
  font-size: 60px;
  line-height: .75;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.title1::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: -15px;
  width: -webkit-calc(100% + 30px);
  width: calc(100% + 30px);
  font-size: 72px;
  line-height: inherit;
  color: inherit;
  opacity: .1;
  z-index: -1;
  pointer-events: none;
}

.section--dark {
  background: #f8f8f8;
}

.section--light {
  background: #ffffff;
}

.faq {
  padding: 30px 0 30px;
}

.faq .title-row {
  margin-bottom: 40px;
}

.faq-list {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  position: relative;
  z-index: 2;
}

.faq-item {
  max-width: 555px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -webkit-column-break-inside: avoid;
     page-break-inside: avoid;
          break-inside: avoid;
}

.faq-item__icon {
  max-width: 90px;
  width: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 10px;
}

.faq-item__icon img {
  max-width: 100%;
  max-height: 100%;
}

.faq-item__title {
  font-size: 24px;
  margin-bottom: 1em;
}

.faq-item__text {
  font-size: 18px;
}

.contacts {
  margin-top: 30px;
}

.contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}

.contact + .contact {
  margin-top: 5px;
}

.contact__icon {
  margin-right: 20px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.contact__label {
  font-weight: bold;
}

.gallery {
  padding: 30px 0 35px;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-btn-nav {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper-btn {
  width: 130px;
  height: 47px;
  border: 1px solid #dcdcdc;
  position: relative;
  color: #ff0000;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.swiper-btn::after, .swiper-btn::before {
  content: "";
  position: absolute;
}

.swiper-btn::before {
  top: 50%;
  width: 40px;
  height: 1px;
  background: currentColor;
  left: 42px;
}

.swiper-btn::after {
  left: 75px;
  top: -webkit-calc(50% - 3px);
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swiper-btn--prev {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 18px;
}

.swiper-btn.swiper-button-disabled {
  color: #cececd;
  cursor: auto;
}

.slide-item {
  width: 100%;
  padding-top: 73.53%;
  position: relative;
  cursor: pointer;
}

.slide-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.music {
  margin: 25px 0 25px;
}

.songs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.songs__left {
  margin-right: 14px;
  max-width: 100%;
  width: -webkit-calc(50% - 7px);
  width: calc(50% - 7px);
}

.songs__right {
  max-width: 100%;
  width: -webkit-calc(50% - 7px);
  width: calc(50% - 7px);
}

.songs__list {
  width: 100%;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.modal-gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.modal-gallery__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
  cursor: pointer;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-gallery__close::after, .modal-gallery__close::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 3px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: rgba(255, 255, 255, 0.8);
  top: -webkit-calc(50% - 2px);
  top: calc(50% - 2px);
  left: 7px;
}

.modal-gallery__close::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal-gallery__close::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-gallery.active {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.modal-gallery .swiper-gallery-top {
  height: 90%;
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
}

.modal-gallery .swiper-slide {
  background: transparent;
}

.modal-gallery .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

.swiper-lazy {
  visibility: hidden;
}

.swiper-lazy.swiper-lazy-loaded {
  visibility: visible;
}

.video {
  padding: 25px 0 25px;
}

.video .title1::after {
	left: 0;
	width: 100%;
}

.video-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.video-block__item {
	width: calc(50% - 10px);
    margin-bottom: 20px;
    object-fit: inherit;
    object-position: 50% 50%;
}

.w-100 {
	width: 100%;
}

.container-content {
	font-size: 18px;
	margin-bottom: 25px;
}

.container-content img {
	margin-bottom: 15px;
    margin-right: 15px;
    float: left;
}

@media only screen and (max-width: 1199px) {
  .container {
    max-width: 970px;
  }
  .header__logo {
    margin-right: 30px;
  }
  .header-nav li + li {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .container {
    max-width: 750px;
  }
  .header {
    overflow: hidden;
  }
  .header__inner {
    padding-bottom: 10px;
    padding-top: 16px;
    min-height: 85px;
    height: auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .header__logo {
    max-height: 60px;
    max-width: 132px;
    margin-right: 15px;
  }
  .header__text {
    font-size: 12px;
    max-width: 120px;
  }
  .btn-menu {
    display: block;
  }
  .header-nav {
    width: 100%;
    -webkit-transition: .5s transform;
    -o-transition: .5s transform;
    transition: .5s transform;
    background-color: #ffffff;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    height: 0;
    overflow: hidden;
    position: relative;
  }
  .header-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-nav li {
    position: relative;
  }
  .header-nav li + li {
    padding-top: 5px;
    margin: 5px 0 0;
  }
  .header-nav li + li::before {
    content: "";
    border-top: 1px solid #f4f4f4;
    width: -webkit-calc(100vw - 30px);
    width: calc(100vw - 30px);
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-nav.active {
    height: auto;
    padding: 10px 0 0;
    margin-top: 10px;
    overflow: visible;
  }
  .header-nav.active::after, .header-nav.active::before {
    content: "";
    border-top: 1px solid #e8e8e8;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header-nav.active::after {
    bottom: -10px;
    top: auto;
  }
  .footer__bg-left {
    display: none;
  }
	.video-block {
		flex-direction: column;
	}
	.video-block__item {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	
	.container-content img {
		width: 100%;
	}
  .container {
    max-width: 100%;
  }
  .footer {
    padding-top: 15px;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .footer__logo {
    max-width: 170px;
    margin: 0 0 10px;
  }
  .footer__text {
    font-size: 16px;
    max-width: 156px;
    margin: 0 0 10px;
  }
  .footer__middle {
    padding: 10px 0;
  }
  .footer-nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-nav li + li {
    margin: 10px 0 0;
  }
  .title1 {
    font-size: 48px;
  }
  .title1::after {
    font-size: 60px;
  }
  .faq .title-row {
    margin-bottom: 20px;
  }
  .faq-list {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
  }
  .faq-item {
    max-width: 100%;
    display: block;
    margin-bottom: 15px;
  }
  .faq-item__icon {
    float: left;
    max-width: 33px;
    height: 44px;
    margin-right: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .faq-item__title {
    font-size: 18px;
    color: #ff0000;
    min-height: 44px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5px;
  }
  .faq-item__text {
    font-size: 14px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact {
    font-size: 14px;
  }
  .contact__icon {
    max-height: 20px;
    max-width: 20px;
    margin-right: 10px;
  }
  .btn--mt-25 {
    margin-top: 15px;
  }
  .top-photo {
    margin: 0 0 15px;
  }
  .music {
    margin: 15px 0;
  }
  .gallery {
    padding: 20px 0 15px;
  }
  .songs {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 640px) {
  .songs {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .songs__left {
    margin-right: 0;
    width: 100%;
  }
  .songs__right {
    width: 100%;
  }
  .songs__list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

@media only screen and (max-width: 575px) {
  .footer__bg-right {
    display: none;
  }
  .swiper-btn {
    width: 100px;
    height: 35px;
  }
  .swiper-btn::before {
    width: 30px;
    left: 32px;
  }
  .swiper-btn::after {
    left: 55px;
  }
}

@media only screen and (max-width: 359px) {
  .header__logo {
    max-width: 115px;
  }
  .header__text {
    font-size: 11px;
    max-width: 110px;
  }
  .title1 {
    font-size: 40px;
  }
  .title1::after {
    font-size: 50px;
  }
}
