body {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #fff;
}
a, button, i {
    transition: all .2s linear;
}
a:focus {
    text-decoration: none;
}
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
}
.navbar-default {
    border: none;
    background-color: transparent;
}
.header-page-block {
    background-image: url("../images/header-bg.png");
}
.header-flex-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-contact-link a {
    color: #fff;
    font-size: 50px;
}
.header-contact-link a:hover {
    color: #808080;
}
.header-contact-link {
    text-align: center;
}
.navbar-default .navbar-nav > li > a {
    color: #fff;
    font-size: 20px;
    background-color: #000;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #fff;
    background-color: #000;
}
.navbar-nav > li:hover a::after, .navbar-nav > li > a:focus::after {
    content: '';
    width: 100%;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}
.header-logo img {
    width: 100%;
}
.carousel-item img {
    width: 100%;
}
.owl-next {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.owl-prev {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.chevron-background {
    font-size: 55px;
    color: #fff;
    transition: all .3s linear;
}
.chevron-background:hover {
    text-shadow: 0px 0px 20px #fff;
}
.title-page {
    text-align: center;
    margin-bottom: 40px;
}
.main-description-image img {
    width: 100%;
    transition: all .2s linear;
}
.main-description-image {
    width: 15%;
    overflow: hidden;
}
.main-description-text {
    width: 80%;
}
.main-description-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-description-image:hover img {
    transform: scale(1.1);
}
.main-content {
    background-image: url("../images/header-bg.png");
    margin-top: -10px;
    background-attachment: fixed;
}
.owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 15px;
}
.owl-dot {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border-radius: 10em;
    display: inline-block;
    border: 2px solid #fff;
    margin: 6px;
    transition: background-color .5s ease, transform .5s ease;
}
.owl-dot.active {
    background-color: #fff;
    border: 2px solid #fff;
}
.music-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.music-block-item {
    width: 24%;
    margin-bottom: 20px;
}
.album-block-item {
    margin-bottom: 20px;
    width: 32%;
}
.album-block-item.full-album {
    width: 48%;
}
.image-logo-block, .image-block-full {
    text-align: center;
    margin: 40px 0;
    overflow: hidden;
}
.image-logo-block img {
    transition: all .2s linear;
}
.image-block-full img {
    width: 69%;
    transition: all .2s linear;
}
.image-logo-block img:hover, .image-block-full img:hover {
    transform: scale(1.1);
}
.video-flex-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.video-flex-item {
    width: 49%;
    margin-bottom: 20px;
}
.main-button-center {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-bottom: 50px;
}

@-webkit-keyframes top {
    from {
        -webkit-transform: translate(0rem, 0);
        transform: translate(0rem, 0);
    }
    to {
        -webkit-transform: translate(0rem, 3.5rem);
        transform: translate(0rem, 3.5rem);
    }
}

@keyframes top {
    from {
        -webkit-transform: translate(0rem, 0);
        transform: translate(0rem, 0);
    }
    to {
        -webkit-transform: translate(0rem, 3.5rem);
        transform: translate(0rem, 3.5rem);
    }
}
@-webkit-keyframes bottom {
    from {
        -webkit-transform: translate(-11.5rem, 0);
        transform: translate(-11.5rem, 0);
    }
    to {
        -webkit-transform: translate(0rem, 0);
        transform: translate(0rem, 0);
    }
}
@keyframes bottom {
    from {
        -webkit-transform: translate(-11.5rem, 0);
        transform: translate(-11.5rem, 0);
    }
    to {
        -webkit-transform: translate(0rem, 0);
        transform: translate(0rem, 0);
    }
}
.main-button-center a {
    position: relative;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    background: transparent;
    outline: none;
    font-size: 28px;
    color: #fff;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.15s;
}
.main-button-center a::after, .main-button-center a::before {
    content: "";
    position: absolute;
    height: 40%;
    width: 10%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
}
.main-button-center a::before {
    background-color: #fff;
    top: -1.75rem;
    left: -1.5rem;
    -webkit-animation: top 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
    animation: top 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.25s infinite alternate;
}
.main-button-center a::after {
    background-color: #fff;
    top: 5rem;
    left: 11rem;
    -webkit-animation: bottom 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
    animation: bottom 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s infinite alternate;
}
.main-button-center a:hover {
    color: #000;
    position: relative;
    text-decoration: none;
}
.main-button-center span:hover {
    position: relative;
    color: #000;
    z-index: 1;
}
.main-button-center a span {
    position: relative;
    z-index: 11;
}
.main-button-center a:hover::before, .main-button-center a:hover::after {
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
    -webkit-animation: none;
    animation: none;
}
.main-button-center a:hover::after {
    left: 0rem;
}
.main-button-center a:hover::before {
    top: 0.5rem;
    left: 0.35rem;
}
#button-up {
    display: none;
    right: 0;
    margin: 0;
    position: fixed;
    bottom: 67px;
    outline: none;
    width: 65px;
    color: #333333;
    line-height: 30px;
    text-decoration: none;
    padding: 0px 0 0 28px;
    background: url("../images/scrolltop.png") no-repeat 7px 11px transparent;
    background-size: 58px;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    -o-border-radius: 0 4px 4px 0;
    cursor: pointer;
    z-index: 9;
}
#button-up span {
    display: block;
    width: 56px;
    height: 66px;
}
.text-contact {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    text-align: center;
}
.contact-social-text {
    font-weight: bold;
    margin-bottom: 15px;
}
.contact-social-item i {
    color: #fff;
    font-size: 30px;
}
.contact-social-item a:hover i, .contact-social-item a:hover img {
    transform: scale(1.2);
}
.contact-social-item a img {
    transition: all .2s linear;
    filter: grayscale(1);
}
.contact-social-item {
    text-align: center;
    border: 2px solid #fff;
    padding: 15px;
    margin-right: 20px;
}
.contact-social-item:last-child {
    margin-right: 0;
}
.contact-flex-social {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}
.contact-links {
    font-weight: bold;
    color: #fff;
}
.contact-links:hover {
    text-decoration: underline;
    color: #808080;
}
.contact-social-item:hover a i {
    transform: scale(1.2);
}
.text-contact a {
    color: #fff;
}
.text-contact a:hover {
    color: #fff;
    text-decoration: underline;
}
.gallery {
    margin: 40px 0;
}
.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 5vw);
    grid-gap: 15px;
}
.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery__item--2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
}
.gallery__item--3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
}
.gallery__item--4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
}
.gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
}
.gallery__item--6 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
}
.photo-block {
    margin-bottom: 40px;
}
.contact-social-text a {
    color: #fff;
}
.footer-page {
    background-color: #000;
    padding: 40px 0;
}
.footer-flex-block {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}
.footer-logo img {
    width: 100%;
}
.footer-logo {
    width: 20%;
}
.footer-flex-block a {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #fff;
}
.footer-copyright a {
    color: #fff;
}
.footer-address-item i {
    margin-right: 10px;
}
.footer-address .social-block {
    display: flex;
}
.footer-address .social-block a {
    margin-right: 8px;
    font-size: 22px;
}
.footer-address .social-block a img {
    width: 38px;
}
.contact-block {
    margin-bottom: 50px;
}
.news-block {
    margin: 40px 0;
}
.news-block p {
    margin-bottom: 20px;
}
.news-block a {
    color: #fff;
    text-decoration: underline;
}
/*Новая страница*/
.link-wrapper {
    width: 375px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
    padding: 40px 0;
}
.release-box {
    line-height: 0;
    position: relative;
    display: inline-block;
    width: 375px;
    max-width: 100%;
    background-color: #000;
}
.image-release img {
    width: 100%;
}
.event-release-info {
    padding: 18px 15px;
    background: #d71a46;
    background-size: 24px auto;
    text-align: left;
    position: relative;
}
.order-block {
    width: 100%;
    border-bottom: 1px solid #dedede;
}
.release-link {
    display: block;
    color: #f8f8f8;
    text-decoration: none;
    text-align: left;
    background-size: 40px auto;
    background-repeat: no-repeat;
    background-position: 18px;
    position: relative;
    line-height: 66px;
    padding-left: 70px;
    font-size: 16px; 
}
.release-link:hover {
    background-color: #32343c;
    color: #f8f8f8;
    text-decoration: none;
}
.release-link:focus {
    color: #f8f8f8;
    text-decoration: none;
}
.release-link.itunes {
    background-image: url(../images/strim1_itunes.svg);
}
.release-link.apple {
    background-image: url(../images/strim2_apple.svg);
}
.release-link.vk {
    background-image: url(../images/vk_music.svg);
}
.release-link.boom {
    background-image: url(../images/strim2_boom.svg);
}
.release-link.google {
    background-image: url(../images/strim7_google.svg);
}
.release-link.yandex {
    background-image: url(../images/strim6_yandex.svg);
}
.release-link.deezer {
    background-image: url(../images/strim8_deezer.svg);
}
.release-link.youtube {
    background-image: url(../images/strim3_youtube.svg);
}
.release-link.youtube-music {
    background-image: url(../images/strim4_youtubemusic.png);
}
.release-link.ok {
    background-image: url(../images/strim9_ok.svg);
}
.release-link.spotify {
    background-image: url(../images/strim10_spotify.svg);
}
.release-link.zvuk {
    background-image: url(../images/zvuk.svg);
}
.release-link.mts {
    background-image: url(../images/mts.svg);
}
.release-link.bandcamp {
    background-image: url(../images/bandcamp.svg);
}
.release-link.audiomack {
    background-image: url(../images/audiomack.svg);
}
.release-link .action-release {
    width: 80px;
    height: 36px;
    line-height: 36px;
    position: absolute;
    right: 20px;
    top: 15px;
    border-radius: 4px;
    background: #d81946;
    color: #fff;
    text-align: center;
    font-size: 14px;
}
.news-block {
    text-align: center;
}
.news-block img {
    width: 400px;
}
.album-block-item iframe  {
    width: 100%;
    height: 350px;
    border: none;
}
.music-block-item iframe {
    width: 100%;
    height: 300px;
    border: none;
}
.main-description-text h4 {
    display: inline;
    font-weight: bold;
}
.main-description-text p {
    margin-top: 10px;
}
.video-flex-item iframe {
    height: 315px;
    width: 100%;
    border: none;
}
.new-album-block {
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .navbar-nav {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 991px) {
    .music-block-item {
        width: 48%;
    }
    .main-description-image {
        width: 28%;
    }
    .main-description-text {
        width: 70%;
    }
}
@media (max-width: 767px) {
    .header-flex-block {
        flex-direction: column;
    }
    .header-contact {
        display: flex;
    }
    .header-contact-link {
        margin: 0 10px;
    }
    .navbar-toggle {
        margin: 0;
        border: none;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
        position: relative;
        width: 50px;
        height: 6px;
    }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background-color: transparent;
        margin-bottom: 15px;
    }
    .navbar-toggle.active .icon-bar:nth-of-type(1) {
        top: 14px;
        transform: rotate(45deg);
    }
    .navbar-toggle.active .icon-bar:nth-of-type(2) {
        background: transparent;
    }
    .navbar-toggle.active .icon-bar:nth-of-type(3) {
        top: -6px;
        transform: rotate(-45deg);
    }
    .main-description-block {
        align-items: flex-start;
    }
    .contact-flex-social {
        flex-wrap: wrap;
        justify-content: center;
    }
    .contact-social-item {
        margin-right: 15px;
        margin-left: 15px;
        margin-bottom: 30px;
    }
    .footer-flex-block {
        flex-wrap: wrap;
    }
    .footer-logo {
        width: 50%;
        margin-bottom: 20px;
    }
}
@media (max-width: 500px) {
    .music-block-item {
        width: 100%;
    }
    .main-description-block {
        flex-direction: column;
    }
    .main-description-image, .main-description-text {
        width: 100%;
    }
    .contact-social-item {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .video-flex-item {
        width: 100%;
    }
    .image-logo-block img, .image-block-full img {
        width: 100%;
    }
    .footer-logo {
        width: 100%;
    }
    .footer-links {
        margin-right: 20px;
    }
    .news-block img {
        width: 100%;
    }
    .header-contact-link a {
        font-size: 40px;
    }
}