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

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

html,
body {
    font-family: Roboto, sans-serif, Arial;
    font-weight: 300;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #0e0e0e;
    color: #fff;
    position: relative;
    background-position: top center;
    background-repeat: no-repeat;
}

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

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

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

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

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

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

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

a:hover {
    color: #FFD900;
}

.button {
    background: #003697;
    color: #fff!important;
    display: flex;
    align-items: center;
    width: fit-content;
    transition: .3s all;
    border-radius: 5px;
}

.button:hover {
    background: #0040b8;
}

.center {
    text-align: center;
}

.pageWrap {
    width: 1210px;
    max-width: 100%;
    padding: 0 25px;
    background: #0F101D;
    margin: 0 auto 0;
}

.searchWrap {
    height: 28px;
    width: 305px;
    /* border: 1px solid #003697; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #262842;
    border: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 35px 0 40px;
    margin-bottom: 25px;
}

header:after {
    content: '';
    position: absolute;
    left: -25px;
    bottom: 0;
    width: calc(100% + 50px);
    height: 4px;
    background: #003697;
}

.menuToggle {
    display: none;
    width: 28px;
    height: 23px;
    background: url(images/menu.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.searchWrap {
    height: 28px;
    width: 305px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header ul {
    display: flex;
    align-items: center;
    margin: 0 25px;
    padding: 0;
    gap: 0 40px;
}

header li {
    display: block;
}

header a {
    color: #fff;
    font-family: Arial;
    /* text-transform: uppercase; */
    font-size: 15px;
    font-weight: 500;
}

.bannerMain {
    height: 500px;
}

.bannerMain .slick-list,
.bannerMain .slick-track,
.bannerItem {
    height: 100%;
}

.bannerItem {
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.bannerItem:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
}

.bannerItem .button {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    margin-left: 80px;
    padding: 10px 20px;
    font-size: 18px;
}

.bannerTitle {
    margin: 0 0 35px 80px;
    color: #fff;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-family: Oswald;
    font-size: 62px;
}

.slick-dots {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    gap: 0 30px;
}

.slick-dots li {
    display: block;
}

.slick-dots button {
    background: #A3A3A3;
    width: 13px;
    height: 13px;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: .3s all;
    border-radius: 50%;
}

.slick-dots .slick-active button,
.slick-dots button:hover {
    background: #003697;
}

.blockTitle {
    font-family: Arial;
    font-size: 24px;
    /* text-transform: uppercase; */
    /* color: #8E929D; */
    margin: 15px 0 20px;
}

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

.showsList > a {
    width: 200px;
    height: 295px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    margin-bottom: 20px;
}

.showsList > a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 55.13%, #000000 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 55.13%, #000000 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.13%, #000000 100%);
    width: 100%;
    height: 100%;
    transition: .3s all;
}

.showsList > a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.59);
    width: 100%;
    height: 100%;
    transition: .3s all;
    opacity: 0;
}

.showsList > a:hover:after {
    opacity: 1;
}

.siEpisodes {
    color: #fff;
    background: #003697;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    font-size: 13px;
    padding: 5px 7px;
    border-radius: 3px;
    max-width: calc(100% - 34px);
}

.siData {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #fff;
}

.siData > text:first-child b {
    color: #FF4D00;
    font-weight: 500;
}

.siData > text:last-child b {
    color: #FFD900;
    font-weight: 500;
}

.siTitle {
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    bottom: 30px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    min-height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.getMore {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.buttonArrow {
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 5px;
}

.podborWrap {
    margin-top: 25px;
}

.podborList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.podborList > span {
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 15px;
}

.podborList > a {
    /* border: 2px solid #003697; */
    color: #fff !important;
    padding: 9px 17px;
    margin: 0 20px 10px 0;
    border-radius: 3px;
    background: #090A11;
}

.newsWrap {
    margin-top: 30px;
}

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

.postItem {
    width: 23.5%;
    margin-bottom: 25px;
}

.postItem > span {
    display: block;
    font-weight: 100;
    margin: 10px 0 0;
}

.postItem h3 {
    margin: 10px 0 10px;
    font-size: 17px;
    font-weight: 500;
}

.postItem > p {
    font-size: 14px;
    line-height: 140%;
}

footer {
    background: #0F101D;
    color: #999FBC;
    margin: 45px -25px 0;
    padding: 0 25px 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer ul {
    margin: 0 20% 0 0;
    padding: 0;
    display: flex;
    gap: 0 55px;
    width: 50%;
}

footer li {
    display: block;
}

footer li a {
    color: #999FBC;
}

footer > p {
    width: 35%;
    margin: 10px 0 0;
    text-transform: uppercase;
    font-size: 14px;
}

footer > a:last-of-type {
    color: #999FBC;
    margin-right: 2%;
    font-size: 14px;
}

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

.playThis {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #003697;
    border-radius: 50%;
    z-index: 3;
    opacity: 0;
    transition: .3s all;
}

.showsList > a:hover .playThis {
    opacity: 1;
}

.playThis:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(images/playWC.svg);
    width: 27px;
    height: 27px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 3px;
}

.searchWrap input {
    padding: 6px 12px;
    margin: 0;
    border: none;
    background: #262842;
    color: #fff;
}

.search {
    width: 14px;
    height: 14px;
    background: url(images/search.svg);
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.breadCrumbs {
    background: #262842;
    margin: 0 -25px 35px;
    display: flex;
    align-items: center;
    padding: 10px 25px;
    font-size: 12px;
    flex-wrap: wrap;
}

.breadCrumbs li {
    display: block;
    color: #ebebeb;
}

.breadCrumbs a {
    display: flex;
    align-items: center;
    color: #ebebeb;
}

.breadCrumbs a:after {
    content: '»';
    margin: 0 5px;
}

.singleShowPage {
    display: flex;
    align-items: flex-start;
}

.sspImage {
    flex-shrink: 0;
    width: 24%;
    margin-right: 1.5%;
}

.sspContent > p {
    font-size: 17px;
    line-height: 25px;
    margin: 0 0 12px;
}

.sspContent .button {
    padding: 12px 22px;
    font-size: 19px;
    margin-bottom: 15px;
}

.tagItem {
    display: block;
    margin-bottom: 13px;
    font-weight: 500;
}

.tagItem text {
    color: #ebebeb;
}

.kpRating,
.imdbRating {
    display: block;
    font-size: 12px;
    border: 2px solid #FF0000;
    padding: 6px 10px;
    width: 100px;
    text-align: center;
    margin-bottom: 12px;
}

.kpRating strong,
.imdbRating strong {
    font-weight: 500;
}

.imdbRating {
    border: 2px solid #FFD900;
    margin: 0;
}

.stroryWrap p {
    line-height: 140%;
}

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

.galleryList a {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 20px;
}

.galleryList a:nth-child(4n) {
    margin-right: 0;
}

.playerWrap {
    margin: 35px 0 0;
}

.playerBlock {
    width: 100%;
    /* height: auto;
    aspect-ratio: 16 / 9;
    background: #000; */
}

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

.seasonsList {
    margin: 40px 0 85px;
}

.seasonsList .showsList {
    justify-content: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.seasonsList .showsList > a {
    width: 23.5%;
    height: auto;
    aspect-ratio: 1 / 1.45;
    margin-right: 2%;
}

.seasonsList .showsList > a:nth-child(4n) {
    margin-right: 0;
}

.seasonsList .siTitle {
    left: 50%;
    width: fit-content;
    bottom: 30px;
    min-height: auto;
    background: rgb(0 0 0 / 60%);
    z-index: 3;
    padding: 10px;
    transform: translateX(-50%);
    border-radius: 3px;
}

.seasonsList .showsList > a .button {
    position: absolute;
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%);
    width: max-content;
}

.actorsList {
    display: flex;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.actorItem {
    width: 15%;
    text-align: center;
    margin-bottom: 25px;
    margin-right: 2%;
}

.actorItem:nth-child(6n) {
    margin-right: 0;
}

.actorItem img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
}

.actorItem h4 {
    margin: 5px 0;
}

.actorItem span {
    font-size: 14px;
    color: #8D8D8D;
}

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

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

.mmBack {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
}

.mmWrap {
    position: fixed;
    top: 0;
    left: -300px;
    width: 170px;
    padding: 0 15px;
    background: #000;
    height: 100%;
    transition: .3s all;
}

.menuMobileWrap.open .mmWrap {
    left: 0;
}

.mmClose {
    background: #FF5647;
    color: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: -30px;
    text-align: center;
    line-height: 28px;
    font-size: 25px;
}

.mmWrap ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    margin: 25px 0 0;
    gap: 15px 0;
}

.mmWrap li {
    display: block;
}

.mmWrap a {
    color: #8E929D;
    font-family: Oswald;
    text-transform: uppercase;
}

.mmWrap .searchWrap {
    display: flex !important;
    width: 100%;
    margin-top: 20px;
}

.mmWrap .searchWrap input {
    width: calc(100% - 35px);
}

.sidebar {
    background: #161725;
    padding: 0 25px;
    width: 260px;
    flex-shrink: 0;
    margin-right: 25px;
}

.pageWithBar {
    display: flex;
}

.genresList a {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    color: #fff;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-weight: 100;
}

.genresList a span {
    padding-left: 10px;
    flex-shrink: 0;
    opacity: .5;
}

.popularList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popularList a {
    width: 125px;
    height: auto;
    aspect-ratio: 1 / 1.45;
    display: block;
}

.actorItem.aiMin {
    box-shadow: inset 0 0 0 1px #6b6b6b;
    margin-bottom: 15px;
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.new-inner p,
.new-inner li {
    line-height: 160%;
}

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

.new-inner__image img {
    width: 100%;
}

video {
    width: 100%;
}














