/*!
Theme Name: Brand
Author: RedCorner
Description: No Description
Version: 1.0
Text Domain: brand
*/

@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 300;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Bold.ttf') format('truetype');
    font-display: swap;
    font-weight: 500;
}

/* @font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Light.ttf') format('truetype');
    font-display: swap;
    font-weight: 100;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Regular.ttf') format('truetype');
    font-display: swap;
    font-weight: 200;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Medium.ttf') format('truetype');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-SemiBold.ttf') format('truetype');
    font-display: swap;
    font-weight: 700;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Bold.ttf') format('truetype');
    font-display: swap;
    font-weight: 900;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-Medium.ttf') format('truetype');
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: Cuprum;
    src: url('fonts/Cuprum-SemiBold.ttf') format('truetype');
    font-display: swap;
    font-weight: 700;
} */

body {
    overflow: hidden;
}

html,
body {
    font-family: Cuprum, sans-serif, Arial;
    font-weight: 300;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /*background-image: url(images/pageBack.png); */
    background-color: #FEAA01;
    /* background-size: auto;
    background-repeat: repeat; */
    color: #000;
    position: relative;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-track {
	background-color: #FFEFC4;
    border-radius: 5px;
}

::-webkit-scrollbar {
	width: 6px;
    height: 6px;
	background-color: #FFEFC4;
    pointer-events: none;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #FF9D00;
    border-radius: 5px;
}

* {
    outline: none;
    box-shadow: none;
    font-family: Cuprum, sans-serif, Arial;
    font-weight: 300;
}

img {
    max-width: 100%;
    max-height: 100%;
}

a {
    color: #fff;
    text-decoration: none;
    transition: .3s all;
}

a:hover {
    color: #fff;
}

.center {
    text-align: center;
}

.button {
    font-size: 20px;
    cursor: pointer;
    transition: .3s all;
    overflow: hidden;
    position: relative;
    align-items: center;
    padding: 12px 18px 15px;
    background: -moz-linear-gradient(319.78deg, #FF7700 -4.68%, #FABA0B 46.37%, #F37900 120.24%);
    background: -webkit-linear-gradient(319.78deg, #FF7700 -4.68%, #FABA0B 46.37%, #F37900 120.24%);
    background: linear-gradient(319.78deg, #FF7700 -4.68%, #FABA0B 46.37%, #F37900 120.24%);
    -moz-box-shadow: 0px 9px 12.3px rgba(0, 0, 0, 0.4), inset 0px -5px 0px rgba(218, 0, 0, 0.25);
    -webkit-box-shadow: 0px 9px 12.3px rgba(0, 0, 0, 0.4), inset 0px -5px 0px rgba(218, 0, 0, 0.25);
    box-shadow: 0px 9px 12.3px rgba(0, 0, 0, 0.4), inset 0px -5px 0px rgba(218, 0, 0, 0.25);
    border-radius: 15px;
    color: #640000;
    font-weight: 500;
    display: flex;
}

.button:hover {
    color: #000;
}

.button:before {
    content: '';
    /* position: absolute;
    background: -moz-linear-gradient(180deg, #FF0000 0%, #EB0000 31.73%, #C50000 47.6%, #CE0000 100%);
    background: -webkit-linear-gradient(180deg, #FF0000 0%, #EB0000 31.73%, #C50000 47.6%, #CE0000 100%);
    background: linear-gradient(180deg, #FF0000 0%, #EB0000 31.73%, #C50000 47.6%, #CE0000 100%);
    border-radius: 6px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .3s all; */
}

.button:hover:before {
    opacity: 0;
}

.button text {
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.buttonPlay:after {
    content: '';
    /* background: url(images/play.svg);
    background-size: contain!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    width: 15px;
    height: 15px;
    margin-left: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 2; */
}

.shareWrap {
    width: 47px;
    height: 47px;
    /* border: 1px solid #fff; */
    position: relative;
    /* border-radius: 6px; */
    cursor: pointer;
    transition: .3s all;
    background: url(images/share.svg);
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: contain!important;
    opacity: 1;
}

.shareWrap:hover {
    opacity: .75;
}

.shareWrap:before {
    content: '';
    /* width: 20px;
    height: 20px;
    background: url(images/share.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    filter: brightness(1);
    transition: .3s all; */
}

.shareWrap:hover:before {
    /* filter: brightness(5); */
}

.container {
    width: 1215px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}

.menuToggle {
    display: none;
    width: 38px;
    height: 38px;
    /* border: 1px solid #fff; */
    /* border-radius: 5px; */
    background: url(images/menu.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

header {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    background: #640000;
    -moz-box-shadow: 0px 4px 48.4px #D51300;
    -webkit-box-shadow: 0px 4px 48.4px #D51300;
    box-shadow: 0px 4px 48.4px #D51300;
}

.bannerMain {
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding-bottom: 255px;
    position: relative;
}

.bannerMain:before {
    content: '';
    position: absolute;
    width: 1701px;
    height: 1701px;
    left: -988px;
    top: 33px;
    background: -moz-radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 0, 0.34) 0%, rgba(255, 0, 0, 0) 100%);
    background: -webkit-radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 0, 0.34) 0%, rgba(255, 0, 0, 0) 100%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 0, 0.34) 0%, rgba(255, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.bannerMain .container {
    position: relative;
    z-index: 3;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    width: 175px;
}

header ul,
footer ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 85px;
}

header ul li,
footer ul li {
    display: block;
}

header li a,
footer li a {
    font-family: Cuprum;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    transition: .3s all;
}

header li a:hover,
footer li a:hover {
    color: #FFBF58;
}

.headerContacts {
    display: flex;
    align-items: center;
    gap: 0 25px;
}

.bannerMain img {
    margin-top: 30px;
}

.bannerMain h1 {
    font-family: Cuprum;
    font-size: 44px;
    text-transform: uppercase;
    padding: 10px 0 30px;
    margin: 0;
    font-weight: 500;
    color: #640000;
    max-width: 580px;
}

.bannerMain p {
    font-size: 24px;
    font-family: Cuprum;
    max-width: 530px;
    font-weight: 500;
    margin: 0 0 80px;
    line-height: 135%;
    /* min-height: 230px; */
}

.buttonsWrap {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.bannerMain .button {
    font-weight: 500;
    font-size: 26px;
    padding: 22px 55px 25px;
}

.buttonBordered {
    background: none;
    box-shadow: inset 0 0 0 1px #FF9D00;
    text-transform: none;
    color: #FF9D00!important;
}

.buttonBordered:hover {
    box-shadow: inset 0 0 0 1px #890000;
}

.buttonBordered:before {
    display: none;
}

.blockTitle {
    font-family: Cuprum;
    font-size: 48px;
    text-transform: uppercase;
    margin: 0 0 40px;
    font-weight: 700;
    color: #D51300;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blockTitle:before,
.blockTitle:after {
    content: '';
    width: 445px;
    height: 48px;
    background: url(images/title0.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 50px;
}

.blockTitle:after {
    margin-right: 0;
    margin-left: 50px;
    background-position: right center!important;
}

.storyContent p {
    /* font-weight: 500; */
    font-size: 22px;
    line-height: 155%;
}

.storyWrap {
    padding: 140px 0 280px;
    position: relative;
}

/* .storyWrap:before {
    content: '';
    width: 940px;
    height: 1070px;
    background: url(images/story.png);
    position: absolute;
    right: -295px;
    background-size: contain!important;
    background-position: center!important;
    background-repeat: no-repeat!important;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 135px;
    z-index: 2;
    pointer-events: none;
}

.storyWrap.storySecond:before {
    background: url(images/storyS.png);
} */

.storyWrap:after {
    /* content: '';
    position: absolute;
    z-index: 1;
    width: 1100px;
    height: 1780px;
    background: url(images/al0.png);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    margin-top: 135px;
    pointer-events: none; */
}

.storyContent {
    position: relative;
    z-index: 3;
}

.showData {
    margin: 70px 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sdItem {
    display: flex;
    align-items: center;
    padding: 9px 15px;
    background: rgba(255, 174, 0, 0.7);
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.sdItem text {
    color: #000;
    padding-right: 5px;
}

.sdItem:before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 15px;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
}

.sdItem.sdGenre:before {
    background: url(images/sd0.svg);
}
.sdItem.sdDate:before {
    background: url(images/sd1.svg);
}
.sdItem.sdCountry:before {
    background: url(images/sd2.svg);
}
.sdItem.sdSeasons:before {
    background: url(images/sd3.svg);
}
.sdItem.sdDuration:before {
    background: url(images/sd4.svg);
}

.sdItem.sdAge:before {
    display: none;
}

.sdItem.sdAge {
    background: #D51300;
    font-size: 18px;
    padding: 8px 12px;
}

.sdItem.sdAge text {
    color: #fff;
    font-weight: 500;
    padding: 0;
}

.seasonsWrap {
    padding: 110px 0 0;
    position: relative;
}

.seasonItem {
    background: #FF7102;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(49% - 30px);
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
    padding: 15px;
    -moz-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    -webkit-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    border-radius: 8px;
    overflow: hidden;
}

.seasonItem h3 {
    font-size: 21px;
    margin: 0;
    padding: 4px 18px;
    position: absolute;
    background: #FFC400;
    border-radius: 20px 7px;
    z-index: 2;
    right: 25px;
    top: 25px;
}

.seasonsList {
    display: flex;
    justify-content: space-between;
    padding: 0 70px;
}

.seasonPreview {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.seasonPreview img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 13.5;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.seasonPreview span {
    position: absolute;
    top: 8px;
    right: 14px;
    background: rgb(255 0 0 / 60%);
    border-radius: 4px;
    padding: 8px 15px;
}

.seasonPreview span.last {
    background: rgb(0 0 0 / 27%);
}

.buttonArrow {
    display: flex;
    margin: 25px 0 35px;
    padding: 16px 30px 15px;
    align-items: center;
}

.buttonArrow:after {
    content: '';
    width: 42px;
    height: 16px;
    background: url(images/arrow.svg);
    background-position: right center!important;
    background-repeat: no-repeat!important;
    background-size: contain!important;
    margin-left: 20px;
}

.actorsWrap {
    margin-top: 60px;
    background: url(images/actors.webp);
    position: relative;
    z-index: 3;
    background-position: top center;
}

.actorsWrap .container {
    padding-top: 250px;
}

.actorsList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    /* gap: 0 12px; */
}

.actorItem {
    width: 16.5%;
    margin-right: 11.3%;
    /* margin-bottom: 25px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.actorItem:nth-child(4n),
.actorItem:last-child {
    margin-right: 0;
}

.actorItem img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    -moz-box-shadow: 0px 4px 110.2px #FF9D00;
    -webkit-box-shadow: 0px 4px 110.2px #FF9D00;
    box-shadow: 0px 4px 110.2px #FF9D00;
}

.actorItem:before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: url(images/ph0.svg);
    background-position: center!important;
    background-size: contain!important;
    background-repeat: no-repeat!important;
}

.actorItem:nth-child(2n):before {
    background: url(images/ph1.svg);
}
.actorItem:nth-child(3n):before,
.actorItem:nth-child(6n):before {
    background: url(images/ph2.svg);
}
.actorItem:nth-child(5n):before {
    background: url(images/ph3.svg);
}

.actorItem h4 {
    text-align: center;
    font-size: 20px;
    margin: 15px 0 5px;
    color: #fff;
}

.actorItem span {
    display: block;
    text-align: center;
    line-height: 135%;
    color: #FF9D00;
}

.viewAll {
    display: flex;
    justify-content: center;
    padding: 65px 0 115px;
}

.viewAll .button {
    padding: 20px 42px 24px;
    font-size: 26px;
}

.episodesWrap {
    padding-top: 60px;
    position: relative;
}

.episodesWrap > * {
    position: relative;
    z-index: 3;
}

.episodesList {
    display: flex;
    flex-wrap: wrap;
}

.episodesWrap .blockTitle {
    color: #FF9D00;
    text-align: center;
    justify-content: center;
}

.episodesWrap .blockTitle:before,
.episodesWrap .blockTitle:after {
    display: none;
}

.episodeItem {
    background: #640000;
    width: calc(32% - 30px);
    padding: 15px;
    border-radius: 5px;
    margin-right: 2%;
    margin-bottom: 25px;
}

.episodeItem:nth-child(3n) {
    margin-right: 0;
}

.episodeItem a {
    position: relative;
}

.episodeItem a:not(.button) {
    position: relative;
    display: block;
}

.episodeTitle {
    position: absolute;
    top: 8px;
    right: 7px;
    padding: 3px 10px;
    background: rgba(255, 157, 0, 0.7);
    border-radius: 10px 3px;
    color: #000;
}

.episodeDuration {
    background: rgb(0 0 0 / 60%);
    position: absolute;
    right: 8px;
    bottom: 7px;
    border-radius: 4px;
    padding: 6px 5px;
    font-size: 12px;
}

.episodeItem img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.episodeItem .button {
    justify-content: center;
    margin: 10px 0 0;
    font-size: 16px;
}

.episodeItem .button:after {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    background: url(images/play.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 25px;
}

.episodesWrap + .episodesWrap {
    padding-top: 90px;
    padding-bottom: 150px;
}

.newsWrap {
    margin: 0;
    padding: 80px 0 150px;
    position: relative;
    z-index: 3;
}

.newsWrap .container {
    position: relative;
    z-index: 4;
}

.newsList {
    /* display: flex;
    flex-wrap: wrap;
    margin-top: -10px; */
}

.postItem {
    background: #FFD86D;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    margin-bottom: 25px;
}

.postItem > a {
    width: 40%;
    margin-right: 20px;
}

.pipc {
    width: calc(60% - 20px);
}

.postItem img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.postItem span {
    display: block;
    color: #640000;
    margin: 0;
    font-size: 18px;
}

.postItem h3 {
    margin: 0 0 35px;
    font-size: 26px;
    color: #640000;
}

.postItem p {
    margin: 0;
    font-weight: 100;
    line-height: 135%;
    font-size: 20px;
}

.pipcBottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.postItem .button {
    margin: 25px 0 0;
    width: fit-content;
    font-size: 24px;
    padding: 16px 45px 20px;
}

footer {
    position: relative;
    padding: 45px 0 50px;
    z-index: 3;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer .logo {
    width: 210px;
}

footer .container + .container {
    margin-top: 35px;
}

footer .container + .container p {
    text-transform: uppercase;
}

footer .container + .container a {
    color: #BFBFBF;
}

footer:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 610px;
    background: url(images/footer.svg);
    background-size: 100%!important;
    background-position: top center!important;
}

/* footer:after {
    content: '';
    position: absolute;
    width: 1701px;
    height: 1701px;
    left: -1300px;
    bottom: -800px;
    background: -moz-radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 0, 0.5) 0%, rgba(255, 0, 0, 0) 100%);
    background: -webkit-radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 0, 0.5) 0%, rgba(255, 0, 0, 0) 100%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 0, 0, 0.5) 0%, rgba(255, 0, 0, 0) 100%);
} */

.bannerMain .tooLong {
    font-size: 30px;
    max-width: 560px;
}

.buttonRed {
    background: -moz-linear-gradient(311.54deg, #D51300 26.51%, #FA3F0B 52.32%, #F32500 89.66%);
    background: -webkit-linear-gradient(311.54deg, #D51300 26.51%, #FA3F0B 52.32%, #F32500 89.66%);
    background: linear-gradient(311.54deg, #D51300 26.51%, #FA3F0B 52.32%, #F32500 89.66%);
    -moz-box-shadow: 0px 11px 9px rgba(100, 0, 0, 0.3), inset 0px -5px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 11px 9px rgba(100, 0, 0, 0.3), inset 0px -5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 11px 9px rgba(100, 0, 0, 0.3), inset 0px -5px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.trailerWrap {
    margin: 120px 0 0;
}

.trailerWrap .blockTitle {
    justify-content: center;
    text-align: center;
    color: #D51300;
    padding-top: 40px;
}

.trailerWrap .blockTitle:before,
.trailerWrap .blockTitle:after {
    display: none;
}

.trailerWrap a {
    display: block;
    width: 100%;
    height: 565px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 5px;
    position: relative;
    -moz-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    -webkit-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
}

.trailerWrap .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: url(images/playX.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.trailerWrap .trailerData {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.actorsWrap.actorsSecondary {
    margin-top: 15px;
    padding-bottom: 175px;
    margin-top: -135px;
}

.trailerWrap.trailerSlider .trailerData {
    bottom: auto;
    top: 30px;
}

.slick-arrow {
    background: url(images/arrowYellow.svg);
    font-size: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: -70px;
    transform: translateY(-50%) rotate(180deg);
    z-index: 3;
    border: none;
    width: 54px;
    height: 54px;
    cursor: pointer;
    border-radius: 50%;
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: contain!important;
    margin-top: -20px;
}

.slick-next {
    left: auto;
    right: -70px;
    transform: translateY(-50%);
}

.menuToggle {
    /* background-color: rgb(255 0 0 / 50%); */
    /* border: none; */
    width: 50px;
    height: 50px;
}

.menuMobileWrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    background: #640000;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: .3s all;
}

.menuMobileWrap.open {
    opacity: 1;
    pointer-events: auto;
}

.mmHeader {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    justify-content: space-between;
}

.mmClose {
    font-weight: 100;
    width: 48px;
    height: 48px;
    border: 1px solid #FFC300;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-size: 0;
    position: relative;
}

.mmClose:before,
.mmClose:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 1px;
    background: #FFC300;
}

.mmClose:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menuMobileWrap ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0 0;
    padding: 0;
    gap: 20px 0;
}

.menuMobileWrap li {
    display: block;
}

.menuMobileWrap ul a {
    font-family: Cuprum;
    font-weight: 500;
    font-size: 22px;
}

.episodesWrap.episodesSingle {
    margin-bottom: -225px;
    padding-bottom: 195px;
}

.shareCloud {
    position: absolute;
    top: 130px;
    right: calc(calc(calc(100% - 1215px) / 2) - 330px);
    background: hsl(0deg 100% 20% / 75%);
    /* background: red; */
    padding: 12px;
    border-radius: 5px;
    align-items: center;
    gap: 0 23px;
    z-index: 25;
    display: none;
}

.shareCloud.open {
    display: flex;
}

.shareCloud a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    opacity: 1;
    transition: .3s all;
}

.shareCloud a:hover {
    color: #fff;
    opacity: .85;
    font-weight: 500;
}

.shareCloud a:before {
    content: '';
    width: 35px;
    height: 35px;
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-size: contain!important;
}

.shareCloud .shareVK:before {
    background: url(images/shareVK.svg);
}
.shareCloud .shareOK:before {
    background: url(images/shareOK.svg);
}
.shareCloud .shareTG:before {
    background: url(images/shareTG.svg);
}
.shareCloud .shareX:before {
    background: url(images/shareX.svg);
}
.shareCloud .shareC:before {
    background: url(images/shareC.svg);
}

#shareCopy {
    display: none;
}

.policyNotif {
    position: fixed;
    right: calc(calc(calc(100% - 1215px) / 2) - 305px);
    bottom: 70px;
    background: #640000;
    padding: 30px 25px;
    border-radius: 15px;
    align-items: center;
    z-index: 25;
    display: none;
}

.policyNotif.open {
    display: flex;
}

.policyNotif p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    width: 410px;
    margin-right: 20px;
}

.policyNotif a {
    text-decoration: underline;
    color: #FF9D00;
}

.policyNotif .button {
    flex-shrink: 0;
    width: 50px;
    text-align: center;
    justify-content: center;
}

.pageWrap {
    margin: 100px 0 100px;
}

.storyImages {
    display: none;
}

.new-inner__info {
    margin: 10px 0 35px;
}

.new-inner__image img {
    width: 100%;
    border-radius: 15px;
}

.new-inner {
    padding-bottom: 30px;
}

.new-inner p,
.new-inner li {
    font-size: 20px;
    line-height: 160%;
}

.new-inner a {
    color: #D51300;
}

*[class^="fancybox"] {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.storyWB {
    background: #FF9215;
    position: relative;
}

.storyWB:before {
    content: '';
    width: 100%;
    height: 115px;
    background: url(images/pto.svg);
    position: absolute;
    top: -110px;
    left: 0;
    background-position: top center;
    /* background-repeat: repeat; */
    background-size: cover;
}

.storySlider {
    margin-left: -12px;
    margin-right: -12px;
}

.storySlider a {
    margin: 0 12px;
    opacity: 0;
    transition: .3s all;
}

.storySlider a.slick-active {
    opacity: 1;
}

.storySlider img {
    -moz-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    -webkit-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    border-radius: 8px;
    overflow: hidden;
}

.storySlider .slick-list {
    padding: 25px 25px 45px;
    margin: -25px;
}

.seasonItem .button {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    font-size: 26px;
    padding: 20px 40px 22px;
    width: max-content;
}

#swbl {
    position: absolute;
    top: 200px;
    left: 0;
    /* transform: translateY(-50%); */
    width: 325px;
    height: 825px;
    background: url(images/aboutP0.png);
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: right center!important;
}

#swbr {
    position: absolute;
    top: 200px;
    right: 0;
    /* transform: translateY(-50%); */
    width: 450px;
    height: 825px;
    background: url(images/aboutP1.png);
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position: right center!important;
}

#seasons .blockTitle {
    justify-content: center;
}

#seasons .blockTitle:before,
#seasons .blockTitle:after,
.newsWrap .blockTitle:before,
.newsWrap .blockTitle:after {
    opacity: .35;
}

.actorsWrap .blockTitle {
    color: #FF9D00;
    justify-content: center;
}

.actorsWrap .blockTitle:before,
.actorsWrap .blockTitle:after {
    width: 280px;
    height: 55px;
    background: url(images/title1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.actorsWrap .blockTitle:before {
    transform: scaleX(-1);
}

.episodesBlock {
    background: #890000;
    position: relative;
    z-index: 3;
}

.episodesBlock:before {
    content: '';
    width: 100%;
    height: 115px;
    background: url(images/pto2.svg);
    position: absolute;
    top: -110px;
    left: 0;
    background-position: top center;
    /* background-repeat: repeat; */
    background-size: cover;
}

.seasonsBlock {
    position: relative;
}

.newsWrap:before,
.seasonsBlock:before {
    content: '';
    width: 100%;
    height: 115px;
    background: url(images/pto1.svg);
    position: absolute;
    top: -110px;
    left: 0;
    background-position: top center;
    /* background-repeat: repeat; */
    background-size: cover;
}

.reviewsWrap {
    position: relative;
    background: #FF8002;
    padding-top: 150px;
    margin-top: -200px;
    padding-bottom: 150px;
}

.reviewsWrap:before {
    content: '';
    width: 100%;
    height: 115px;
    background: url(images/pto3.svg);
    position: absolute;
    top: -110px;
    left: 0;
    background-position: top center;
    /* background-repeat: repeat; */
    background-size: cover;
}

.reviewsWrap .blockTitle {
    color: #640000;
    text-align: center;
    justify-content: center;
}

.reviewsWrap .blockTitle:before,
.reviewsWrap .blockTitle:after {
    display: none;
}

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

.reviewItem {
    background: #fff;
    -moz-box-shadow: 0px 24px 24.6px -16px rgba(0, 0, 0, 0.33);
    -webkit-box-shadow: 0px 24px 24.6px -16px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 24px 24.6px -16px rgba(0, 0, 0, 0.33);
    border-radius: 30px;
    padding: 25px;
    width: calc(49% - 50px);
    margin-bottom: 35px;
}

.starsWrap {
    background: #F5F5F5;
    margin-left: auto;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 50px;
}

.starsList {
    display: flex;
    align-items: center;
}

.starsList span {
    width: 18px;
    height: 17px;
    background: url(images/star.svg);
    margin: 0 2px;
}

.starsWrap text {
    padding-right: 5px;
}

.starsList span:not(.colored) {
    filter: grayscale(1);
    opacity: .5;
}

.reviewItem h4 {
    color: #640000;
    font-size: 30px;
    margin: 20px 0 0;
}

.reviewText p {
    margin: 0;
    color: #878787;
    font-size: 18px;
    line-height: 135%;
}

.reviewText {
    margin: 20px 0 40px;
    max-height: 125px;
    overflow-y: auto;
}

.reviewBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    color: #640000;
}

.reviewsWrap:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 720px;
    background: url(images/reviews.svg);
    background-position: center!important;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    transform: translateY(-50%);
}

.reviewsWrap .container {
    position: relative;
    z-index: 2;
}

.similarWrap {
    background: #640000;
    position: relative;
    padding: 50px 0 200px;
}

.similarWrap:before {
    content: '';
    width: 100%;
    height: 115px;
    background: url(images/pto4.svg);
    position: absolute;
    top: -110px;
    left: 0;
    background-position: top center;
    /* background-repeat: repeat; */
    background-size: cover;
}

.similarSlider {
    margin: 0 -12px;
}

.similarSlider .slick-slide {
    margin: 0 12px;
}

.similarWrap .blockTitle {
    justify-content: center;
    color: #FFC300;
}

.similarWrap .blockTitle:before,
.similarWrap .blockTitle:after {
    display: none;
}

.similarSlider img {
    border-radius: 10px;
    -moz-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    -webkit-box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
    box-shadow: 0px 24px 31.6px -16px rgba(0, 0, 0, 0.78);
}

.similarSlider .slick-slide h4 {
    font-size: 26px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    margin: 20px 0 20px;
}

.similarSlider .slick-slide span {
    text-align: center;
    display: block;
    font-size: 20px;
}

footer .logo {
    width: 624px;
}

.footerInfo p {
    color: #640000;
    font-size: 48px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 30px 0 10px;
}

.footerInfo {
    width: 624px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer > img {
    width: 900px;
    height: 680px;
    object-fit: contain;
    position: absolute;
    top: -250px;
    right: 22%;
    display: block;
    max-height: none;
    pointer-events: none;
}

.term-2 .bannerMain h1,
.term-2 .bannerMain p {
    color: #fff;
}

.storySecond .blockTitle:before,
.storySecond .blockTitle:after {
    content: '';
    width: 365px;
}

.actorsWrap .container + .container {
    padding-top: 100px;
}

.episodesBlock + .actorsWrap {
    padding-bottom: 120px;
}

.pageWrap {
    margin: 0;
    background: #FFD86D;
    padding: 100px 0 200px;
}

.pageTitle:before,
.pageTitle:after {
    display: none;
}

.episodesBlock.twb {
    margin-top: -150px;
}

.episodesBlock.twb .trailerWrap .blockTitle {
    color: #FEAA01;
}

figure {
    margin-left: 0;
    margin-right: 0;
}

.noPhoto {
    height: 200px;
    display: flex;
    flex-direction: column;
    background: -moz-linear-gradient(246.84deg, #FF9D00 -33.13%, #F32500 44.42%, #640000 121.97%);
    background: -webkit-linear-gradient(246.84deg, #FF9D00 -33.13%, #F32500 44.42%, #640000 121.97%);
    background: linear-gradient(246.84deg, #FF9D00 -33.13%, #F32500 44.42%, #640000 121.97%);
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.bannerMain .container.wc h1,
.bannerMain .container.wc p {
    color: #fff;
}

footer .button {
    padding: 15px 35px 20px;
}

*:before,
*:after {
    background-repeat: no-repeat!important;
}

div:before,
div:after {
    margin-bottom: -1px;
}

body > div:before,
body > .container > div:before {
    background-size: cover!important;
    background-position: bottom center!important;
}

iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
}

footer:before {
    pointer-events: none!important;
}

.storyContent p,
.storyContent p li,
.storyContent p *,
.storyContent li * {
    font-weight: 300!important;
}
