@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=PT+Serif:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');
@font-face {
	font-family: 'Futura Demi';
	src: url('../fonts/FuturaDemiC.eot');
	src: url('../fonts/FuturaDemiC.eot?#iefix') format('embedded-opentype'),
	url('../fonts/FuturaDemiC.woff') format('woff'),
	url('../fonts/FuturaDemiC.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
body{
	overflow: hidden;
	background-color: #1E2226;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	height: 100vh;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	visibility: hidden;
}
.main_center{
	max-width: 1400px;
	min-width: 320px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.bg_home{
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/bg_home.png');
	background-size: 120%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	overflow-x: hidden;
	overflow-y: hidden;
	-webkit-animation: bgHome 10s ease infinite;
	        animation: bgHome 10s ease infinite;
}
.bg_page{
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	overflow-x: hidden;
	overflow-y: hidden;
	top: 0;
	left: 0;
}
.bg_page_h1{
	height: 50px;
    width: 900px;
    position: absolute;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    bottom: 410px;
    left: -15%;
    white-space: nowrap
}
.bg_page_h1 h1{
	color: rgba(255,255,255,.1);
	font-size: 200px;
}
@-webkit-keyframes bgHome{
	0%{
		background-position: 50% top;
	}
	33%{
		background-position: 30% top;
	}
	66%{
		background-position: 60% top;
	}
	100%{
		background-position: 50% top;
	}
}
@keyframes bgHome{
	0%{
		background-position: 50% top;
	}
	33%{
		background-position: 30% top;
	}
	66%{
		background-position: 60% top;
	}
	100%{
		background-position: 50% top;
	}
}
/* @keyframes bgHome{
	0%{
		transform: translateX(0);
	}
	33%{
		transform: translateX(50px);
	}
	66%{
		transform: translateX(30px);
	}
	100%{
		transform: translateX(0px);
	}
} */
.bg_home_color{
	width: 50%;
	height: 100%;
	background-color: rgba(32,37,42);
	opacity: .5;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
/* START HEADER */
header{
	height: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
header>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	list-style: none;
	width: 400px;
}
header>ul li{
	margin-left: 20px;
}
header>ul li:first-child{
	margin-left: 0;
}
header>ul li:after{
	display: block;
    content: "";
    height: 2px;
    width: 0%;
    background-color: #FF6B00;
    -webkit-transition: width .5s ease-in-out;
    -o-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
}
header>ul li:hover{
	cursor: pointer;
}
header>ul li:hover:after{
	width: 100%;
}
header .current-menu-item:after{
	width: 100%;
}
header>ul li a{
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 0.44px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}
.header_logo{
	max-width: 167px;
}
.header_logo img{
	max-width: 167px;
	height: 100%;
}

/* MOBILE MENU */
.overlay {
  display: none;
  position: fixed;
  background: #2a3140;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow-x: hidden;
  z-index:10;
}
.overlay.open {
  opacity: 0.99;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.overlay.open li {
  display: block;
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
          animation: fadeInRight 0.4s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-transform: rotate(-7deg);
      -ms-transform: rotate(-7deg);
          transform: rotate(-7deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.overlayMenu {
  position: absolute;
  text-align: right;
  right: 10vw;
  top: 100px;
}
.overlayMenu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: block;
  position: relative;
  height: 100%;
}
.overlayMenu ul li {
  display: block;
  position: relative;
  opacity: 0;
  width: 100%;
}
.overlayMenu ul li a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  padding: 10px 40px 10px 40px;
  margin: 5px 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.overlayMenu ul li a:hover, .overlayMenu ul li a:active, .overlayMenu ul li a:focus {
  -webkit-transform: translateX(-2px);
      -ms-transform: translateX(-2px);
          transform: translateX(-2px);
  padding-left: 80px;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
}
.locked {
  overflow: hidden !important;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 50px;
  }
  100% {
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 50px;
  }
  100% {
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.navBurger {
  display: none;
  cursor: pointer;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-clip: content-box;
  width: 30px;
  height: 25px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 11;
}
.navBurger:before, .navBurger:after {
  content: "";
  position: absolute;
  background: #fff;
  height: 3px;
  width: 100%;
  right: 0;
  will-change: rotate;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 10px;
}
.navBurger:before {
  top: -10px;
}
.navBurger:after {
  bottom: -9px;
}
.navBurger.active {
  background: transparent;
  background-clip: content-box;
}
.navBurger.active:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
  top: 0;
  background: #eee;
  width: 110%;
}
.navBurger.active:after {
  bottom: 0;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
  background: #eee;
  width: 110%;
}

/* END MOBILE  MENU*/
/* END HEADER */



/* START CONTENT */
.content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	margin-bottom: 20px;
	min-height: 380px;
}
.content_block_left{
	margin-bottom: -20px;
	max-width: 360px;
}
.content_block_left.bg_single_home{
	position: relative;
	padding: 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.content_block_left.bg_single_home:before{
	content: '';
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	z-index: 1;
}
.content_block_left h1{
	position: relative;
	font-family: 'PT Serif', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: normal;
	margin-bottom: 10px;
	color: #FFFFFF;
	text-align: center;
	z-index: 10;
}
.content_block_left>p{
	position: relative;
	font-family: 'Roboto', serif;
	font-style: italic;
	font-weight: 300;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 50px;
	z-index: 10;
}
.content_block_left .audio .plyr{
	position: relative;
	width: 100%;
	z-index: 10;
}


.audio{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 50px;

}
.icon--pressed{
	margin-left: -1px;
}
.plyr--audio .plyr__controls{
	background: none;
	padding: 0;

}
.plyr--full-ui input[type=range]{
	color: #FF6B00;
}
.plyr__control{
	border-radius: 50%;
}
.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control, .plyr--audio .plyr__control[aria-expanded=true] {
	border: 1px solid #FF6B00;
}
.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
    background: #FF6B00;
    color: rgba(255,255,255,.8);
}
.plyr__controls .plyr__controls__item:first-child{
	margin-right: 15px;
	padding: 8px 9px;
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.plyr--audio .plyr__controls{
	color: #FF6B00;
}
.button_stores{
	position: relative;
	z-index: 10;
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.button_stores img{
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	cursor: pointer;
	height: 30px;
}

.button_stores img:hover{
	-webkit-transform: translateY(-5px);
	    -ms-transform: translateY(-5px);
	        transform: translateY(-5px);
}
.content_blocks_right{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.corner_arrow{
	width: 240px;
	height: 200px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.corner_arrow:before{
	content: '';
	width: 12px;
	height: 12px;
	background: url('../images/top-right-arr.png') center/cover;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.corner_arrow:after{
	content: '';
	width: 12px;
	height: 12px;
	background: url('../images/bot-left-arr.png') center/cover;
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.fly_arrows:before{
	opacity: 1;
	-webkit-transform: translateX(20px) translateY(-20px);
	    -ms-transform: translateX(20px) translateY(-20px);
	        transform: translateX(20px) translateY(-20px);
}
.fly_arrows:after{
	opacity: 1;
	-webkit-transform: translateX(-20px) translateY(20px);
	    -ms-transform: translateX(-20px) translateY(20px);
	        transform: translateX(-20px) translateY(20px);
}
.content_blocks_right>div{
	width: 275px;
	height: 365px;
	position: relative;
	margin-left: 15px;
}
.content_blocks_right>div>a{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	overflow: hidden;
	overflow-x: hidden;
	overflow-y: hidden;
}
.content_blocks_right h2{
	position: absolute;
	bottom: 15px;
	left: -30px;
	font-family: 'PT Serif', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 30px;
	line-height: normal;
	color: #FFFFFF;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.block_music_1,.block_music_2,.block_music_3{
	width: 240px;
	height: 200px;
	position: absolute;
	background: rgba(255,255,255,.3);
	bottom: 0;
	right: 0;
}
.content_blocks_right  .block_music_1 img, .content_blocks_right .block_music_2 img, .content_blocks_right .block_music_3 img{
	position: absolute;
}
.block_music_guitar{
	/*width: 133px;*/
	height: 440px;
	right: -80px;
    bottom: -110px;
    z-index: 3;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.block_music_1:hover .block_music_guitar{
	-webkit-transform: translateY(-35px);
	    -ms-transform: translateY(-35px);
	        transform: translateY(-35px);
}
.block_music_piano{
	/*width: 116px;*/
	height: 350px;
    right: 5px;
    bottom: -160px;
    -webkit-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}
.block_music_1:hover .block_music_piano{
	-webkit-transform: translateY(-20px);
	    -ms-transform: translateY(-20px);
	        transform: translateY(-20px);
}
.block_music_disk{
	/*width: 180px;*/
	height: 230px;
	right: 0;
    top: -75px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.block_music_2:hover .block_music_disk{
	-webkit-transform: translateY(-45px) translateX(-35px);
	    -ms-transform: translateY(-45px) translateX(-35px);
	        transform: translateY(-45px) translateX(-35px);
}
.block_music_folder{
	/*width: 214px;*/
	height: 285px;
    right: -110px;
    top: -27px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.block_music_2:hover .block_music_folder{
	-webkit-transform: rotate(10deg) translateY(-10px) translateX(-20px);
	    -ms-transform: rotate(10deg) translateY(-10px) translateX(-20px);
	        transform: rotate(10deg) translateY(-10px) translateX(-20px);
}
.block_music_pen{
	/*width: 234px;*/
	height: 330px;
    top: -100px;
    right: -20px;
    z-index: 1;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.block_music_3:hover .block_music_pen{
	-webkit-transform: rotate(15deg) translateY(-20px);
	    -ms-transform: rotate(15deg) translateY(-20px);
	        transform: rotate(15deg) translateY(-20px);
}
.block_music_book{
	/*width: 262px;*/
	height: 340px;
    top: -75px;
    right: -55px;
    -webkit-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
}
.block_music_3:hover .block_music_book{
	-webkit-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotate(10deg);
}
.block_music_1:hover h2,
.block_music_2:hover h2,
.block_music_3:hover h2{
	-webkit-transform: translateY(-15px);
	    -ms-transform: translateY(-15px);
	        transform: translateY(-15px);
}
/* END CONTENT */

/* FOOTER */

footer{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 15px 0;
}
.main_center .copyright{
	font-family: 'Roboto', serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
}
.main_center .copyright p{
	margin-top: 10px;
	opacity: 0.5;
}
.social_contacts{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.social_icons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 145px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.social_icon_twitter, .social_icon_instagram, .social_icon_facebook{
	display: block;
	width: 35px;
	height: 35px;
	-webkit-transition: background .3s ease;
	-o-transition: background .3s ease;
	transition: background .3s ease;
}
.social_icon_twitter{
	background: url('../images/twitter.png') center/contain no-repeat;
}
.social_icon_twitter:hover{
	background: url('../images/twitter_hover.png') center/contain no-repeat;
}
.social_icon_instagram{
	background: url('../images/instagram.png') center/contain no-repeat;
}
.social_icon_instagram:hover{
	background: url('../images/instagram_hover.png') center/contain no-repeat;
}
.social_icon_facebook{
	background: url('../images/facebook.png') center/contain no-repeat;
}
.social_icon_facebook:hover{
	background: url('../images/facebook_hover.png') center/contain no-repeat;
}
.subscription_mail{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.subscription_mail img{
	width: 38px;
	height: 30px;
	margin-right: 30px;
}
.subscription_mail a{
	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 24px;
	letter-spacing: 0.44px;
	text-decoration: underline;
	color: #FFFFFF;
}
.subscription_mail a:hover{
	text-decoration: none;
}



/* COPYRIGHT */

.footer-copyrights{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
}

.footer-copyrights .copyrights_author {
    font-size: 14px;
    font-family: Roboto;
    color: rgb( 255,255,255);
    line-height: 1.3;
    text-align: left;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    opacity: .45;
    text-decoration: none;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
}
.footer-copyrights .copyrights_author img {
    width: 20px;
    margin-right: 5px;
}
.footer-copyrights .copyrights_author:hover {
    opacity: 1;
    color: rgb( 255,255,255);
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
}

/* END FOOTER */

/* CHANGE STYLE SLICK */

#oneperframe{
	position: relative;
}
#oneperframe .slick-prev, #oneperframe .slick-next{
	z-index: 999;
}
#oneperframe .slick-prev{
	left: 30px;
}
#oneperframe .slick-next{
	right: 30px;
}
#oneperframe .slick-prev:before,#oneperframe .slick-next:before{
	font-size: 90px;
	-webkit-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: .75;
    color: #FF6B00;
}
#oneperframe .slick-prev:before{
	content: '‹';
}
#oneperframe .slick-next:before{
	content: '›';
}
#oneperframe .slick-disabled{
	opacity: 0;
}
/* PAGE MUSIC */
.top_clips_musics{
	padding-top: 70px;
}
.top_clips_musics>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.top_clips_musics>ul>li{
}
.slick-dotted.slick-slider{
	margin-bottom: 0!important;
}
.slick-dots{
	top: -70px;
	bottom: auto!important;
}
.slick-dots li{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid rgba(255,107,0, 0);
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.slick-dots li button:before{
	display: none;
}
.slick-dots li button:after{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: rgba(255,255,255,.2);
	border-radius: 50%;

}
.slick-dots li:hover{
	border: 1px solid rgba(255,107,0, 1);
}
.slick-dots .slick-active{
	border: 1px solid rgba(255,107,0, 1);
}
.slide_horizontal_content .content{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 0;
}
.music_clips{
	max-width: 590px;
	width: 100%;
}
.music_header{
	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-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 40px;
}
.music_header h2{
	font-family: 'PT Serif', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: 36px;
	color: #FFFFFF;
	-webkit-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
}
.music_header a{
	width: 100px;
	font-family: 'Futura Demi';
	font-weight: 600;
	font-size: 17px;
	line-height: 17px;
	padding: 15px 20px;
	border: 3px solid #FF6B00;
	color: #fff;
	/* background-color: #fff; */
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-item-align: center;
	    align-self: center;
	/* -webkit-transition: color 1s ease, border-color .3s ease;
	-o-transition: color 1s ease, border-color .3s ease;
	transition: color 1s ease, border-color .3s ease; */
	transition: 0.3s ease;
}
.music_header a:hover{
	border-color: #FF6B00;
	background-color: #FF6B00;
	color: #fff;
	transition: 0.3s ease;
}
.music_clips_content_main{
	position: relative;
	display: block;
	width: 100%;
	max-height: 341px;
	margin-bottom: 20px;
    overflow: hidden;
}
.music_clips_content_main img{
	width: 100%;
	height: 100%;
}
.music_clips_content_main .clip_h3,
.all_clips_catalog .all_clips_catalog_one .clip_h3,
.all_songs_catalog .all_songs_catalog_one .clip_h3{
	height: 67px;
	position: absolute;
	bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.music_clips_content_main h3,
.all_clips_catalog .all_clips_catalog_one h3,
.all_songs_catalog .all_songs_catalog_one h3{
	color: #fff;
	font-family: 'Merriweather', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.2;
	width: 100%;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 67px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
}
.all_songs_catalog .all_songs_catalog_one h3 a{
	color: #fff;
	font-family: 'Merriweather', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 28px;
	line-height: 1.1;
	text-decoration: none;
	-webkit-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
}
.all_songs_catalog .all_songs_catalog_one h3 a:hover{
	color: #FF6B00;
}
.all_songs_catalog_one .button_play_img:hover,
.song_single_player:hover .button_play_img{
	cursor:pointer;
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.song_single_player:hover{
	cursor: pointer;
}
.clip_single_player .button_play_img,
.song_single_player .button_play_img,
.single_new_img .button_play_img,
.all_songs_catalog_one .button_play_img{
	position: absolute;
	left: calc(50% - 35px);
	top: calc(50% - 35px);
	display: block;
	width: 70px;
    height: 70px;
    border-radius: 50%;
    background: url(../images/clip_play.png);
    background-size: cover;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.all_clips_catalog .all_clips_catalog_one:hover .clip_h3 h3,
.music_clips_content_main:hover .clip_h3 h3{
	color: #FF6B00;
}
.clip_single_player:hover .button_play_img,
.single_new_img:hover .button_play_img{
	cursor: pointer;
	-webkit-transform: scale(1.4);
	    -ms-transform: scale(1.4);
	        transform: scale(1.4);
}
.music_clips_content_main_another{
	width: 100%;
}
.music_clips_content_main_another ul{
	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-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.music_clips_content_main_another ul li{
	width: calc(100%/3 - 5px);
	height: 105px;
	overflow: hidden;
}
.music_clips_content_main_another ul li img{
	width: 100%;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.music_clips_content_main_another ul li a:hover img{
	-webkit-transform: scale(1.05);
	    -ms-transform: scale(1.05);
	        transform: scale(1.05);
}
.music_musics{
	max-width: 590px;
	width: 100%;
}
.music_musics_ul>ul>li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 50px;
}
.music_musics_ul>ul>li:last-child{
	margin-bottom: 0;
}
.music_musics_ul .audio{
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	width: 70%;
	height: 36px;
	margin-bottom: 0;
	padding-right: 20px;
}
.audio .audio_player{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.music_musics_ul_social{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	max-width: 30%;
}
.music_musics_ul_social li{
	margin-left: 20px;
}
.music_apple{
	width: calc(72px / 3);
	height: calc(88px / 3);
	background: url('../images/music_apple.png') center/contain no-repeat;
	margin-left: 0!important;
}
.music_apple:hover{
	background: url('../images/music_apple_hover.png') center/contain no-repeat;
}
.music_google{
	width: calc(73px / 3);
	height: calc(73px / 3);
	background: url('../images/music_google.png') center/contain no-repeat;
}
.music_google:hover{
	background: url('../images/music_google_hover.png') center/contain no-repeat;
}
.music_yandex{
	width: calc(72px / 3);
	height: calc(87px / 3);
	background: url('../images/music_yandex.png') center/contain no-repeat;
}
.music_yandex:hover{
	background: url('../images/music_yandex_hover.png') center/contain no-repeat;
}
.music_download{
	width: calc(74px / 3);
	height: calc(77px / 3);
	background: url('../images/music_download.png') center/contain no-repeat;

}
.music_musics_ul_social li.music_download{
	margin-left: 40px;
}
.music_download:hover{
	background: url('../images/music_download_hover.png') center/contain no-repeat;
}
.music_musics_ul .play_audio{
	width: 35px;
	height: 35px;
	background: url('../images/play_small.png') center/contain no-repeat;
	-webkit-transition: background .2s ease-in-out;
	-o-transition: background .2s ease-in-out;
	transition: background .2s ease-in-out;
	cursor: pointer;
}
.music_musics_ul .play_audio:hover{
	background: url('../images/play_small_hover.png') center/contain no-repeat;

}
.music_musics_ul .start_audio .play_audio{
	-webkit-animation: change_bg_small .8s linear infinite;
	        animation: change_bg_small .8s linear infinite;
}
@-webkit-keyframes change_bg_small{
	0%{
		background: url('../images/play_small.png') center/contain no-repeat;
	}
	50%{
		background: url('../images/play_small_hover.png') center/contain no-repeat;
	}
	100%{
		background: url('../images/play_small.png') center/contain no-repeat;
	}
}
@keyframes change_bg_small{
	0%{
		background: url('../images/play_small.png') center/contain no-repeat;
	}
	50%{
		background: url('../images/play_small_hover.png') center/contain no-repeat;
	}
	100%{
		background: url('../images/play_small.png') center/contain no-repeat;
	}
}
.music_musics_ul .audio h4{
	font-family: 'Roboto', sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	margin-left: 20px;
	width: 40%;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.1;
    max-height: calc(17px * 1.1 * 2);
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.music_musics_ul .audio_line{
	height: 35px;
	width: 130px;
}
.music_musics_ul .audio_time{
	height: 35px;
}
.music_musics_ul .audio_line_equalizer{
	height: 22px;
}
.music_musics_ul .equalizer{
	background: url(../images/equalizer_small.png) center/cover no-repeat;
	height: 22px;
	width: 252px;
}
.slide_horizontal_content .content.musics{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}
.slide_horizontal_content .content.musics>ul{
	width: 43%;
}
.slide_horizontal_content .content.musics>ul>li{
	margin-bottom: 50px;
}
.slide_horizontal_content .content.musics>ul>li:last-child{
	margin-bottom: 0px;
}
.music_musics_ul_social{
	width: 30%;
}
.top_clips{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-line-pack: justify;
	    align-content: space-between;
	height: 100%;
	width: 100%;
	min-height: 550px;
}
.top_clips .music_clips_content_main{
	width: calc(100%/3 - 50px);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	height: 230px;
	overflow: hidden;
	margin-bottom:0;
}


/* плеер на странице всех песен */
.all_songs_catalog_one .audio{
	margin: 0;
	display: inline-block;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
}
.all_songs_catalog_one .plyr{
	min-width: 0;
}
.all_songs_catalog_one .plyr .plyr__controls .plyr__controls__item:first-child{
	margin-right: 0;
}
.all_songs_catalog_one .plyr .plyr__controls button{
	width: 60px;
	height: 60px;
	border: 3px solid #FF6B00;
}
.all_songs_catalog_one .plyr__control svg{
    height: 29px;
    width: 24px;
}
.all_songs_catalog_one .plyr__control svg.icon--pressed {
    margin-left: -4px;
}
.all_songs_catalog_one .plyr__control svg use{
	-webkit-transform: scale(1.5);
	    -ms-transform: scale(1.5);
	        transform: scale(1.5);
}

/* СТРАНИЦА ВСЕХ КЛИПОВ И СТРАНИЦА ВСЕХ ПЕСЕН  (Заголовок и в клипах и в альбомах)*/
.all_albums{
	min-height: 598px;
}
.all_clips_header, .all_albums_header, .all_songs_header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
}
.all_clips_header h1, .all_songs_header h1, .all_albums_header h1{
	width: 430px;
	margin-right: 20px;
	font-family: 'PT Serif', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	color: #FFFFFF;
}
.all_clips_header ul, .all_songs_header ul, .all_albums_header ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.all_clips_header ul li, .all_songs_header ul li, .all_albums_header ul li{
	margin-right: 30px;
}
.all_clips_header input, .all_songs_header input, .all_albums_header input{
	display: none;
}
.all_clips_header label, .all_songs_header label, .all_albums_header label{
	font-family: 'Roboto', serif;
	font-style: normal;
	font-weight: bold;
	font-size: 17px;
	line-height: 24px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	display: block;
}
.all_clips_header label:hover, .all_songs_header label:hover, .all_albums_header label:hover{
	cursor: pointer;
}
.all_clips_header label:after, .all_songs_header label:after, .all_albums_header label:after{
	display: block;
    content: "";
    height: 2px;
    width: 0%;
    background-color: #FF6B00;
    -webkit-transition: width .5s ease-in-out;
    -o-transition: width .5s ease-in-out;
    transition: width .5s ease-in-out;
}
.all_clips_header label:hover:after, .all_songs_header label:hover:after, .all_albums_header label:hover:after{
	width: 100%;
	cursor:pointer;
}
.all_clips_header label.active_filter:after, .all_songs_header label.active_filter:after, .all_albums_header label.active_filter:after{
	width: 100%;
}
.all_clips_catalog, .all_clips_catalog #mCSB_1_container,
.all_songs_catalog, .all_songs_catalog #mCSB_1_container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	height: 510px;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
    width: 100%;
}
#mCSB_1_scrollbar_horizontal{
	max-width: 1400px;
	width: 100%;
}
.all_clips_catalog:after,
.all_songs_catalog:after{
	content: '';
	display: block;
	width: 50px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0)), to(rgba(0,0,0,1)));
	background: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,1));
	background: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,1));
	background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,1));
}
.all_clips_catalog .all_clips_catalog_one,
.all_songs_catalog .all_songs_catalog_one{
	width: 430px;
	height: 240px;
	margin-right: 30px;
	overflow: hidden;
}
.all_clips_catalog .all_clips_catalog_one img,
.all_songs_catalog .all_songs_catalog_one img{
	width: 100%;
}
.all_clips_catalog .all_clips_catalog_one,
.all_songs_catalog .all_songs_catalog_one{
	position: relative;
}

/* стилизация скролла плагина mcustomScrollbar*/

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background: rgba(189, 189, 189, 0.1);
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background: #FF6B00;
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background: #FF6B00;
}
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background: #FF6B00;
}

/* end стилизация скролла */


/* Детальная страница клипа и песни */

.clip_single, .song_single{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 500px;
	max-height: 568px;
}
.song_single_player{
	margin: 0;
}
.clip_single .clip_single_player,
.song_single .song_single_player{
	border: 10px solid rgba(189,189,189,.1);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	max-width: 1030px;
	width: 100%;
	position: relative;
}
.clip_single .clip_single_player img,
.song_single .song_single_player img{
	width: 100%;
	height: 100%;
}
.clip_single .clip_single_info,
.song_single .song_single_info{
	max-width: 420px;
	width: 100%;
	padding-left: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.clip_single_info h1,
.song_single_info h1{
	font-family: "PT Serif", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 40px;
	color: #FFFFFF;
	margin-bottom: 30px;
	max-width: 400px;
}
.clip_single_info>p,
.song_single_info>p{
	font-size: 17px;
	line-height: 24px;
	line-height:1.2;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.clip_single_info p>a,
.song_single_info p>a{
	color: #FF6B00;
	text-decoration: none;
}
.clip_single_info p>a:hover,
.song_single_info p>a:hover{
	text-decoration: underline;
}
.clip_single_info_icons,
.song_single_info_icons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	width: 100%;
	max-width: 300px;
	margin-bottom: 30px;
}
.clip_single_info_icons a,
.song_single_info_icons a{
	margin-right: 30px;
}
.clip_single_info_icons a.down_link,
.song_single_info_icons a.down_link{
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 0;
}
.clip_single_info_icons .music_apple,
.song_single_info_icons .music_apple{
	width: calc(72px / 2);
	height: calc(88px / 2);
}
.clip_single_info_icons .music_google,
.song_single_info_icons .music_google{
	width: calc(73px / 2);
	height: calc(73px / 2);
}
.clip_single_info_icons .music_yandex,
.song_single_info_icons .music_yandex{
	width: calc(72px / 2);
	height: calc(87px / 2);
}
.clip_single_info_icons .music_download,
.song_single_info_icons .music_download{
	width: calc(74px / 2);
	height: calc(77px / 2);
}
.clip_single_info_text,
.song_single_info_text{
	font-family: "Roboto", serif;
	font-style: italic;
	font-weight: 300;
	font-size: 20px;
	line-height: 24px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	position: relative;
	min-height: 100px;
	max-width: 420px;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}
.song_single_player .audio_line{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 47px;
	margin: 0;
	background: rgba(0,0,0,.5);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.song_single_player .audio_line .audio{
	width: 80%;
	margin: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.song_single_player .audio_line .audio .plyr{
	width: 100%;
}
/* Страница всех альбомов */
.all_albums_content{
	max-height: 520px;
}

.all_albums_album{
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 228px;
	position: relative;
	margin-bottom: 20px;
}
.all_albums_album .all_albums_album_link{
	display: block;
	position: absolute;
	top: 25px;
	right: 15px;
	width: calc(46px/2);
	height:calc(40px/2);
	background: url('../images/albums_arr.png') center/contain no-repeat;
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
}
.all_albums_album .all_albums_album_link:hover{
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
}
.all_albums_album_img{
	position: absolute;
	width: 250px;
	height: 228px;
}
.all_albums_album_img img:first-child{
	width: 175px;
    position: absolute;
    top: 11px;
    right: -10px;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}
.all_albums_album_img_link:hover img:first-child{
	-webkit-transform: translateX(20px) translateY(-6px);
	    -ms-transform: translateX(20px) translateY(-6px);
	        transform: translateX(20px) translateY(-6px);
}
.all_albums_album_img img:last-child{
	width: 185px;
	height: 185px;
	-webkit-transform: rotate(-15deg);
	    -ms-transform: rotate(-15deg);
	        transform: rotate(-15deg);
	position: absolute;
	top: 21px;
    left: 21px;
    z-index: 1;
}
.all_albums_album_img:before{
	content: '';
	display: block;
	position: absolute;
	top: 21px;
    left: 21px;
	width: 185px;
	height: 185px;
	-webkit-transform: rotate(-15deg);
	    -ms-transform: rotate(-15deg);
	        transform: rotate(-15deg);
	background: -webkit-linear-gradient(120deg, rgba(255,255,255,.3),rgba(255,255,255,0));
	background: -o-linear-gradient(120deg, rgba(255,255,255,.3),rgba(255,255,255,0));
	background: linear-gradient(-30deg, rgba(255,255,255,.3),rgba(255,255,255,0));
	z-index: 2;
}
.all_albums_album_content{
	width:100%;
	margin: 14px 0;
	background: rgba(45,50,52,.87);
	padding: 20px 40px 20px 150px;
	margin-left: 142.5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.all_albums_album_content>a{
	font-family: "Merriweather", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	text-decoration: none;
	color: #FFFFFF;
	-ms-flex-item-align: start;
	    align-self: flex-start;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.1;
    max-height: calc(24px * 1.1 * 2);
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.all_albums_album_content>a:hover{
	text-decoration: underline;
}
.all_albums_album_content>p{
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    line-height: 1.1;
    max-height: calc(12px * 1.1 * 7);
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;

}
.all_albums_album_content_music{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.all_albums_album_content_music .audio{
	margin: 0 15px 0 0;
	width: 60%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.all_albums_album_content_music .music_musics_ul_social{
	width: auto;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

/* Детальная страница альбома */
.single_album{
	padding-top: 70px;
}
.single_album_content_img{
	width: 770px;
	height: 570px;
	background: url('../images/single_album_disc.png') right/contain no-repeat;
}
.single_album_content_img img{
	height: 100%;
	width: auto;
}
.single_album_content_text{
	width: 40%;
}
.single_album_content_text>h4{
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 17px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.single_album_content_text>p{
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 1.2;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 13;
    line-height: 1.2;
    max-height: calc(17px * 1.1 * 13);
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
}
.single_album_content_text .album_single_icons{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 60px 0 0;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.single_album_content_text .album_single_icons li{
	margin-right: 40px;
}
.single_album_content_text .album_single_icons .music_apple{
	width: calc(72px/2);
	height: calc(88px/2);
}
.single_album_content_text .album_single_icons .music_google{
	width: calc(73px/2);
	height: calc(72px/2);
}
.single_album_content_text .album_single_icons .music_yandex{
	width: calc(72px/2);
	height: calc(87px/2);
}
.single_album_content_text .album_single_icons .music_download{
	width: calc(74px/2);
	height: calc(77px/2);
}
.single_album_content_text_music{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 60px;
}
.single_album_content_text_music .music_musics_ul_social li{

}
.single_album_content_text_music .music_musics_ul_social .music_apple{
	width: calc(72px/4);
	height: calc(88px/4);
}
.single_album_content_text_music .music_musics_ul_social .music_google{
	width: calc(73px/4);
	height: calc(72px/4);
}
.single_album_content_text_music .music_musics_ul_social .music_yandex{
	width: calc(72px/4);
	height: calc(87px/4);
}
.single_album_content_text_music .music_musics_ul_social .music_download{
	width: calc(74px/4);
	height: calc(77px/4);
	margin-left: 20px;
}


/* ОБЩАЯ СТРАНИЦА СОБЫТИЙ */

.all_news h1, .all_verses h1{
	font-family: "PT Serif", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.all_news_cards, .all_verses_cards{
	overflow: hidden;
    height: 500px;
}
.all_news_cards, .all_news_cards #mCSB_1_container,
.all_verses_cards, .all_verses_cards #mCSB_1_container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.all_news_cards .mCustomScrollBox,
.all_verses_cards .mCustomScrollBox{
	width: 100%;
}
.all_news_cards_one,
.all_verses_cards_one{
	position: relative;
	width: calc(100%/3 - 20px);
	height: 200px;
	margin:0 0 30px 30px;
	overflow: hidden;
	text-decoration: none;
}
.all_news_cards_one:nth-child(3n-2),
.all_verses_cards_one:nth-child(3n-2){
	margin-left: 0;
}
.all_news_cards_one .all_news_cards_one_link,
.all_verses_cards_one .all_verses_cards_one_link{
	position: absolute;
	display: block;
	background: url('../images/albums_arr.png') center/contain no-repeat;
	top: 15px;
	right: 15px;
	width: calc(46px/2);
	height: calc(40px/2);
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
}
.all_news_cards_one:hover .all_news_cards_one_link,
.all_verses_cards_one:hover .all_verses_cards_one_link{
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
.all_news_cards_one_image,
.all_verses_cards_one_image{
	width: 95%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.all_news_cards_one_image:before,
.all_verses_cards_one_image:before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	z-index:0;
	background-color: rgba(0,0,0,.8);
}
.all_news_cards_one .all_news_cards_one_date,
.all_verses_cards_one .all_news_cards_one_date{
	font-family: "Roboto", serif;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	opacity: 0.5;
	margin: 5% 0 20px 10%;
}
.all_news_cards_one h2,
.all_verses_cards_one h2{
	margin-bottom: 15px;
	padding: 0 5% 0 0;
	max-height: calc(23px * 1.2 * 3);
    overflow: hidden;
	text-decoration: none;
    display: -webkit-box;
	font-family: "Merriweather", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 1.2;
	text-decoration: none;
	-webkit-transition: color .3s ease;
	-o-transition: color .3s ease;
	transition: color .3s ease;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
	max-height: calc(23px * 1.2 * 3);
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.all_verses_cards_one h2{
	margin-top: 30px;
	padding: 0 10% 0 0;
}
.all_news_cards_one:hover h2,
.all_verses_cards_one:hover h2{
	color: #FF6B00;
}
.all_news_cards_one p,
.all_verses_cards_one p{
	padding: 0 5% 0 0;
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.7;
	max-height: calc(12px * 1.7 * 3);
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    text-decoration: none;
}
.all_news_cards_one p{
	-webkit-line-clamp: 2;
	max-height: calc(12px * 1.7 * 2);
}

.single_verse{
	max-width: 800px;
	width: 100%;
}
.single_verse_title{
	font-family: "PT Serif", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: 1;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.single_verse_text{
	max-height: 500px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.single_verse_text .mCustomScrollBox{
	width: 100%;
}
.single_verse_text .mCSB_container{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.single_verse_text .text_verse{
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 24px;
	letter-spacing: 0.74px;
	color: #FFFFFF;
    max-width: 49%;
    width:100%;
}

@media screen and (max-width: 1000px), screen and (max-height: 700px){
	.single_verse{
		padding: 40px 0;
	}
	.single_verse_text{
		max-height: none;
		height: auto;
		overflow: auto;
	}
}




/* ДЕТАЛЬНАЯ СТРАНИЦА НОВОСТЕЙ*/

.single_new{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-height: 500px;
}
.single_new_img{
	display: block;
	position: relative;
	width: 50%;
    height: 500px;
	overflow: hidden;
}
.single_new_img img{
	/* width: auto;
	height: 100%; */
}
.single_new_content{
	width: 45%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.single_new_content h1,
.about_one_content h1{
	font-family: "PT Serif", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.single_new_content_text,
.about_one_content_text{
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	min-height: 100px;
	overflow: hidden;
}

/* СТРАНИЦА ОБ АВТОРЕ */
.about{
	max-height: 500px;
	padding-top: 40px;
}
.about>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height: 100%;
}
.about_one_img{
	display: block;
	position: relative;
	width: 45%;
    height: 500px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.about_one_img img{
	height: 100%;
	width: auto;
}
.about_one_content{
	width: 45%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	max-height: 500px;
}


/* Всплывающие окна и форма со страницы контактов */

.popup{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;

}
.subscription_popup{
	max-width: 565px;
}
.subscription_popup>h1{
	font-family: "PT Serif", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: 64px;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.subscription_popup>p{
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 24px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	margin-bottom: 30px;
}
.subscription_popup form, .contacts_form form{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.contacts_form_inputs,
.subscription_form_inputs{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 46px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.subscription_form_inputs input[type = 'text'],
.subscription_form_inputs input[type = 'email'],
.contacts_form_inputs input[type = 'text'],
.contacts_form_inputs input[type = 'email'],
.contacts_form textarea{
	width: 100%;
	padding: 10px;
	background: #252526;
	border: 1px solid #6B6B6B;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 24px;
	letter-spacing: 0.44px;
	color: #FFFFFF;
	height: 46px;
}
.contacts_form_inputs span,
.subscription_form_inputs span{
	width: calc(100% / 2 - 10px);
}
/* .subscription_form_checkbox>span{
	display: none;
} */
.contacts_form_checkbox label,
.subscription_form_checkbox label{
	display: block
}
.contacts_form_checkbox .wpcf7-list-item,
.subscription_form_checkbox .wpcf7-list-item{
	width: 100%;
	margin: 0;
}
.subscription_form_checkbox .subscription_label + br{
	display: none;
}
.subscription_form_checkbox .subscription_label{
	z-index: -1;
}
.subscription_form_checkbox .wpcf7-list-label, .contacts_form_checkbox label{
	width: 100%;
	margin: 35px 0;
	-ms-flex-item-align: start;
	    align-self: flex-start;
	position: relative;
	padding: 0 0 0 50px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: "Roboto", serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 0.74px;
	color: #FFFFFF;
}
.subscription_form_checkbox label:hover, .contacts_form_checkbox label:hover{
	cursor: pointer;
}
.subscription_form_checkbox input[type = 'checkbox'],.contacts_form_checkbox input[type = 'checkbox']{
	display: none;
}
.subscription_form_checkbox .subscription_label:before, .contacts_form_checkbox label span:before{
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #252526;
	border: 1px solid #6B6B6B;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
}
.subscription_form_checkbox input[type = 'checkbox']:checked + .subscription_label:before,
.contacts_form_checkbox input[type = 'checkbox']:checked + span:before {
	content: '\2713';
    font-size: 42px;
    color: #FF6B00;
    text-align: right;
    line-height: 1;
}
.contacts_form span[role="alert"],
.subscription_popup span[role="alert"]{
	display: none;
}
.contacts_form div.wpcf7-response-output,
.subscription_popup div.wpcf7-response-output{
	margin:0;
	color: #fff;
	font-family: "Roboto", serif;
    font-size: 14px;
}
.contacts_form textarea{
	width: 100%;
	min-height: 100px;
	resize: none;
	margin-top: 20px;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.subscription_popup input[type="submit"], .contacts_form input[type="submit"]{
	width: 100%;
	background: none;
	border-radius: 0;
	border: 1px solid #FF6B00;
	color: #FF6B00;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 15px 0;
	height: 48px;
	font-family: "Roboto", serif;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #FF6B00;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;

}
.subscription_popup input[type="submit"]:hover, .contacts_form input[type="submit"]:hover{
	background: #FF6B00;
	color: #000;
}
.mfp-content{
	width: 100%!important;
    max-width: 800px;
}
.mfp-move-horizontal{
  /* start state */
  /* animate in */
  /* animate out */
  position: fixed;
}
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.9;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  -webkit-transform: translateX(50px);
      -ms-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing .mfp-close{
	opacity: 0;
}
.mfp-close-btn-in .mfp-close{
	width: 34px;
    height: 60px;
    line-height: 60px;
    opacity: 1;
    color: #FF6B00;
    font-size: 60px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* Страница обратной связи */

.contacts{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-height: 500px;
}
.contacts_social {
	width: 45%;
}
.contacts_social h2, .contacts_form h2{
	font-size: 27px;
	font-family: 'Roboto', serif;
	color: #fff;
	margin-bottom: 15px;
}
.contacts_social>p, .contacts_form>p{
	font-size: 16px;
	font-family: 'Roboto', serif;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 40px;
	line-height: 1.3;
}
.contacts_social_links{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.contacts_social_links ul li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;margin-bottom: 20px;
}
.contacts_social_links ul li a{
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.contacts_social_links ul li a:hover .contacts_social_links_text p:last-child{
	text-decoration: underline;
}
.contacts_social_links ul li a:hover .contacts_social_links_icon i{
	border-bottom: 2px solid #FF6B00;
}
.contacts_social_links_icon{
	margin-right: 40px;
}
.contacts_social_links_icon i{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 10px;
	border-bottom: 2px solid rgba(0,0,0,0);
}
.contacts_social_links_icon i:before{
	font-size: 30px;
	color: #fff;
}
.contacts_social_links_text p{
	color: #fff;
	font-family: "Roboto", serif;
	font-size: 14px;
	margin-bottom: 7px;
}
.contacts_social_links_text p:last-child{
	font-family: 'Roboto', serif;
	font-size: 14px;
	text-decoration: none;
	color:#FF6B00 ;
}
.contacts_form{
	width: 40%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.contacts_form form{
	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-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

/* BREADCRUMBS */

#breadcrumbs{
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	color: #fff;
	margin-top: 20px;
	margin-bottom: 30px;
}
#breadcrumbs a{
	font-family: 'Roboto', sans-serif;
	color: #fff;
}
#breadcrumbs a:hover{
	text-decoration: none;
}


/* Page note */
.block_alert{
	min-height: 500px;
}
.block_alert>span{
	display: block;
	font-family: 'Roboto', sans-serif;
	color: #fff;
	padding: 20px;

}
.block_alert span a{
	color: #fff;
	font-weight: bold;
}

/* MEDIA */

@media screen and (max-width: 1450px){
	.main_center{
		padding-left: 40px;
		padding-right: 40px;
	}
	.top_clips .music_clips_content_main {
	    width: calc(100%/3 - 20px);
	}
	.top_clips {
	    min-height: 500px;
	}
	.slide_horizontal_content .content.musics>ul {
	    width: 48%;
	}
	.all_albums_album_content_music{
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.single_album_content_img {
	    width: 700px;
	    height: 517px;
	}
	#oneperframe .slick-next {
    	right: 10px;
	}
	#oneperframe .slick-prev {
    	left: 10px;
	}
}
@media screen and (max-width: 1310px){

}
@media screen and (max-width: 1310px), screen and (max-height: 700px){
	body{
		width: 100%;
		height: auto;
		overflow: auto;
		overflow-x: hidden;
	}
	.content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	    -webkit-box-pack: start;
	        -ms-flex-pack: start;
	            justify-content: flex-start;
	    -webkit-box-align: center;
	        -ms-flex-align: center;
	            align-items: center;
	    margin-bottom: 20px;
	    min-height: 380px;
	}
	.slide_horizontal_content .content.musics_clips, .slide_horizontal_content .single_album_content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.content_blocks_right{
		margin-bottom: 40px;
	}
	.top_clips_musics{
		padding-top: 20px;
	}
	.slide_horizontal_content{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.slide_horizontal_content .content {
	    -webkit-box-align: center;
	        -ms-flex-align: center;
	            align-items: center;
	    margin-bottom: 0;
	}
	.slide_horizontal_content>li{
		margin-bottom: 90px;
	}
	.slide_horizontal_content>li:first-child{
		margin-bottom: 0;
	}
	.slide_horizontal_content>li:last-child{
		margin-bottom: 0;
	}
	.slide_horizontal_content .content.musics>ul {
	    width: 80%;
	}
	.music_musics_ul>ul:last-child{
		margin-bottom: 50px;
	}
	.all_albums_album_content .music_musics_ul>ul:last-child{
		margin-bottom: 0;
	}
	.all_albums_album_content_music .audio {
	    margin: 0;
	    width: 70%;
	}
	.music_musics, .music_clips{
	    max-width: none;
	    width: 80%;
	}
	.music_clips{
		margin-bottom: 40px;
	}
	.top_clips .music_clips_content_main {
		width: calc(100%/2 - 30px);
		margin-bottom: 50px;
    	max-height: 400px;
	}
	.music_musics_ul_social {
	    width: auto;
	}
	#mCSB_1_scrollbar_horizontal {
	    width: 96%;
	}
	.single_album{
		padding-top: 10px;
	}
	.single_album_content_img{
		margin-bottom: 40px;
	}
	.single_album_content_text {
		width: 80%;
	}
	.single_album_content_text_music{
		display: none;
	}
	.single_album ul li:last-child{
		margin-bottom: 40px;
	}
	.single_new {
		max-height: none;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.single_new_img{
		width: 80%;
		height: auto;
		margin-bottom: 50px;
	}
	.single_new_img img{
		width: 100%;
		height: auto;
	}
	.single_new_content{
		width: 80%;
	}
	.about{
		height: auto;
		max-height: none;
	}
	.about_one{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.about>ul>li{
		margin-bottom: 50px;
	}
	.about_one_img{
		width: auto;
		height: 400px;
		margin-bottom: 30px;
	}
	.about_one_content{
		width: 80%;
		height: auto;
		max-height: none;
		margin-bottom: 50px;
	}

	.contacts_social h2, .contacts_form h2{
		font-size: 22px;
	}
	.contacts_social>p, .contacts_form>p {
    	font-size: 14px;
    }

}
@media screen and (min-width: 1310px) and (min-height: 700px) and (max-height: 850px){
	body{
		overflow-y: auto;
		height: auto;
	}
	header{
		padding: 10px 0;
		margin-bottom: 20px;
	}
	.top_clips_musics{
		margin-bottom: 30px;
	}


}
@media screen and (max-width: 1200px){

	header>ul{
		display: none;
	}
	.navBurger{
		display: block;
	}
	.overlay{
		display: block;
	}
	.all_clips, .all_songs{
		margin-bottom: 40px;
	}
	.clip_single,
	.song_single{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		max-height: none;
	}
	.clip_single_player,
	.song_single_player{
		width: 100%;
		margin-bottom: 40px;
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
	}
	.clip_single .clip_single_info,
	.song_single .song_single_info{
		width: 100%;
		max-width: none;
		padding-left: 0px;
		-ms-flex-line-pack: justify;
		    align-content: space-between;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	    height: 400px;
	}
	.clip_single_info_text,
	.song_single_info_text{
		margin-right: 23px;
	}
	.all_albums_content {
	    max-height: none;
	}
	.all_news_cards,
	.all_verses_cards{
		height: auto;
	}
	.all_news_cards_one,
	.all_verses_cards_one{
	    width: calc(100%/2 - 30px);
	    margin: 0 0 30px 60px;
	}
	.all_news_cards_one:nth-child(3n-2),
	.all_verses_cards_one:nth-child(3n-2){
		margin-left: 60px;
	}
	.all_news_cards_one:nth-child(odd),
	.all_verses_cards_one:nth-child(odd){
		margin-left: 0;
	}
}
@media screen and (max-width: 1000px){

	.about_one_img{
		width: 100%;
		height: auto;
	}
	.about_one_img img{
		width: 100%;
		height: 100%;
	}
	.about_one_content{
		width: 100%;
	}

	.all_clips, .all_songs {
	    margin-bottom: 0;
	}
	.all_clips_catalog, .all_songs_catalog{
		height: auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.all_clips_catalog:after, .all_songs_catalog:after{
		content: none;
	}
	.all_clips_catalog .all_clips_catalog_one,
	.all_songs_catalog .all_songs_catalog_one{
		margin: 0;
		width: 100%;
		height: auto;
		margin-bottom: 40px;
	}
	.all_albums_album{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		height:  auto;
	}
	.all_albums_album_img{
		position: relative;

	}
	.all_albums_album_img_link{
		-ms-flex-item-align: center;
		    -ms-grid-row-align: center;
		    align-self: center;
		margin-bottom: -40px;
	}
	.all_albums_album_content{
		width: auto;
		padding: 50px 40px 20px;
		margin: 0;
	}
	.all_albums_album_content>a{
		margin-bottom: 20px;
	}
	.all_albums_album_content>p{
		margin-bottom: 50px;
	}
	footer{
		padding-top: 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
    	-webkit-box-align: center;
    	    -ms-flex-align: center;
    	        align-items: center;
	}
	.bg_page, .bg_home, .bg_home_color{
		display: none;
	}

	.contacts{
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		max-height: none;
	}

	.contacts_social{
		width: 100%;
	}
	.contacts_form{
		width: 100%;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 960px){

	.content_blocks_right{
		-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;
	}
	.content_blocks_right>div{
		margin: 0 0 0 -35px;
	}
	.main_center{
		padding-left: 15px;
		padding-right: 15px;
	}
	.all_clips_header h1, .all_songs_header h1, .all_albums_header h1{
	    font-size: 23px;
	    width: auto;
	    margin-right: 50px;
	}
	.single_new_img{
		width: 100%;
	}
	.single_new_content{
		width: 100%;
	}
}
@media screen and (max-width: 800px){
	.clip_single .clip_single_info,
	.song_single .song_single_info{
		-ms-flex-line-pack: justify;
		    align-content: space-between;
	    -ms-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	    height: auto;
	    width: auto;
	    -ms-flex-item-align: center;
	        -ms-grid-row-align: center;
	        align-self: center;
	    margin-bottom: 40px;
	}
	.clip_single_info_text,
	.song_single_info_text{
		margin-right: 0;
	}
	.clip_single_info h1,
	.song_single_info h1{
		max-width: none;
	}

	.all_albums_album_content{
		padding: 50px 10px 20px;
	}
	.all_albums_album_content_music{
	    -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;
	}
	.all_albums_album_content_music .audio{
		width: 100%;
		margin-bottom: 20px;
	}
	.all_news_cards_one,
	.all_verses_cards_one{
	    width: 100%;
	    margin: 0 0 30px 0;
	}
	.all_news_cards_one:nth-child(3n-2),
	.all_verses_cards_one:nth-child(3n-2){
		margin-left: 0;
	}

	.single_verse_title{
		font-size: 25px;
	}
	.single_verse_text p{

	}

}
@media screen and (max-width: 760px){
	.music_musics, .music_clips {
	    width: 100%;
	}
	.slide_horizontal_content .content.musics>ul {
	    width: 100%;
	}
	.music_clips_content_main h3 {
	    font-size: 23px;
	    max-height: calc(23px * 1.1 * 2);
	}
	.music_header h2 {
	    font-size: 35px;
	}
	.single_album_content_text {
		width: 100%;
	}
	.single_album_content_img{
		background: none;
		width: 100%;
		height: auto;
		text-align: center;
	}
	.single_album_content_img img {
	    height: auto;
	    width: 100%;
	}
	.about_one_content h1{
		font-size: 35px;
	}
	.single_verse_text{
		-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;
	}
	.single_verse_text p{
		margin-bottom: 30px;
		max-width: none;
	}
}
@media screen and (max-width: 760px){

}
@media screen and (max-width: 650px){
	.top_clips .music_clips_content_main {
    	width: 100%;
    }
    .music_musics_ul>ul>li {
	    -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;
	}
	.music_musics_ul .audio{
		width: 100%;
		margin-bottom: 20px;
		-ms-flex-wrap: wrap-reverse;
		    flex-wrap: wrap-reverse;
		height: auto;
	}
	.music_musics_ul .audio h4 {
	    font-size: 18px;
	    margin-left: 0;
	    margin-bottom: 10px;
	    width: 100%;
	}
	.music_musics_ul .audio_line {
	    width: 300px;
	}
	.music_musics_ul_social {
		max-width: 100%;
	    -ms-flex-item-align: end;
	        align-self: flex-end;
	}

	.all_clips_header, .all_songs_header, .all_albums_header{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}

	.all_clips_header h1, .all_songs h1, .all_albums_header h1{
		margin-bottom: 20px;
	}
	.all_songs_catalog .all_songs_catalog_one h3 a,
	.all_clips_catalog .all_clips_catalog_one h3{
		font-size: 20px;
	}

	.subscription_popup>h1{
		font-size: 35px;
	}
	.subscription_popup>p{
		font-size: 13px;
	}

	.contacts_social_links{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media screen and (max-width: 530px){
	.social_contacts{
		-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;
	}
	.social_icons{
		margin: 0 0 15px;
	}
	.music_musics_ul .audio_line {
	    width: auto;
	    -webkit-box-flex: 1;
	        -ms-flex-positive: 1;
	            flex-grow: 1;
	}
}
@media screen and (max-width: 440px){
	.all_clips_header ul li, .all_songs_header ul li, .all_albums_header ul li{
	    margin-right: 10px;
	}
	.all_songs_catalog .all_songs_catalog_one h3 a,
	.all_clips_catalog .all_clips_catalog_one h3{
		font-size: 15px;
	}
}
@media screen and (max-width: 400px){
	.content_block_left h1 {
	    font-size: 35px;
	}
	/* .music_musics_ul .audio_line {
	    width: 200px;
	} */
	.song_single_player .audio_line{
		height: 35px;
	}
	.song_single_player .equalizer{
		height: 35px;
	}
	.song_single_player .audio_line_equalizer{
		height: 35px;
	}
	.subscription_popup>h1{
		font-size: 25px;
		line-height: 25px;
	    margin-bottom: 15px;
	}
	.subscription_popup>p{
		font-size: 13px;
	}
	.subscription_popup form input[type = 'text']{
		width: 100%;
		margin-bottom: 30px;
	}
	.subscription_popup form label{
		margin-top: 0;
	}
}
@media screen and (max-width: 360px){
	.content_block_left>p {
	    font-size: 16px;
	    line-height: 20px;
	}
	/* .audio .audio_line {
	    width: 180px;
	} */
	.button_stores img {
	    margin-right: 3px;
	}
}
@media screen and (max-width: 340px){
	.button_stores{
		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;
	}
	.button_stores img {
	    margin-right: 0;
	    margin-bottom: 5px;
	}
	.music_header h2 {
	    font-size: 28px;
	}
	.all_clips_header label, .all_songs_header label, .all_albums_header label{
	    font-size: 14px;
	}
}

@media screen and (max-height: 600px) and (min-width: 1320px){
	body{
		width: 100%;
		height: auto;
		overflow: auto;
		overflow-x: hidden;
	}
}
