*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}

/* Reset */

/* Root */
:root{
--size1 : 25px;
--color1 : black;
--ghost : #F8F8FF;
--white : #FFF;
--title-black: #363648;
--border-gray: #E0E0Ef;;
--small-gray: #606070;
--purple : #5000D0;
}
/* Root */

/* Font-Family */
@font-face {
    font-family: NotoSans;
    src: url('../font2/NotoSans-SemiBold.ttf');
    font-weight: 600;
}

@font-face {
    font-family: NotoSans;
    src: url('../font2/NotoSans-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: NotoSans;
    src: url('../font2/NotoSans-Black.ttf');
    font-weight: 900;
}


*{
    font-family: NotoSans;
    box-sizing: border-box;
}
/* Font-Family */

/* Menu */
.container__menu{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
}
.menu{
    width: 100%;
    height: 100px;
    border-bottom: 1px solid var(--border-gray);
}
.logo{
    width: 100px;
}
.img__logo{
}
.wrap__menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav__menu{
}
.search{
    border: 1px solid var(--border-gray);
    border-radius: 3px;
    margin-left: 40px;
    padding: 6px 6px;
    background: var(--ghost);
}
.link__menu{
    margin-left: var(--size1);
    text-transform: uppercase;
    color: var(--title-black);
    font-weight: 900;
}
::placeholder{
    color: var(--color1);
}
/* Menu */

/* Login */
.login{
    margin-left: var(--size1);
    display: inline-block;
}
.link__login{
    color: var(--title-black);
    font-weight: 900;
    background: none;
    cursor: pointer;
}
/* Login */

/* Modal Window */
.modal__window{
    width: 600px;
    display: none;
    z-index: 99;
    background: var(--ghost);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    opacity: 0.9;
    position: absolute;
    left: calc(50% - 300px);
    top: calc(50% - 150px);
    padding: 50px;
}
.modal__window-active{
    display: block;
    transition: 2s;
}
.title__login{
    text-align: center;
    font-size: 24px;
}
.loginpass{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: var(--size1);
    padding-top: 50px;
}
.pass{
    margin-top: 30px;
}
.text__login{
    font-size: 18px;
}
.input__login{
    margin-top: 10px;
    padding: 3px 3px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid var(--border-gray);
}
.exit{
    font-size: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.inp__btn{
    background: var(--purple);
    padding: 6px 18px;
    border-radius: 5px;
    border: 1px solid var(--border-gray);
    color: var(--white);
}
/* Modal Window */

/* Main */
.section__main{
    background: var(--ghost);
}
/* Main */

/* Supernatural */
.img__supernatural{
    display: flex;
    flex-direction: row-reverse;
}
.img__sn{
    width: 500px;
    height: 500px;
    border-radius: 5px;
    object-fit: cover;
}
.container__supernatural{
    padding: 100px 0;
    width: 1200px;
    margin: 0 auto;
}
.title{
    font-size: 28px;
    font-weight: 900;
    color: var(--title-black);
}
.wrap__supernatural{
    display: flex;
    flex-direction: row-reverse;
}
.supernatural{
    display: flex;
    flex-direction: column;
    padding-right: 200px;
}
.text__supernatural{
    margin-top: var(--size1);
}
/* Supernatural */

/* Season */
.title__ss{
    padding-bottom: var(--size1);
}
.container__season{
    width: 1200px;
    margin: 0 auto;
}
.img__card{
    width: 200px;
    margin-left: 40px;
}
.img__card1{
    margin-left: 0;
}
.flex__card1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.flex__card2{
    display: flex;
    flex-direction: row;
    margin-top: 25px;
    justify-content: space-between;
}
.flex__card3{
    display: flex;
    flex-direction: row;
    margin-top: 25px;
    justify-content: space-between;
}
.card__more{
    margin-left: 40px;
    background: var(--purple);
    color: var(--white);
    width: 100px;
    padding: 8px 8px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px ;
}
.card__more1{
    margin-left: 0;
}
.card__more2{
    margin-left: 0;
}
.card__more3{
    margin-left: 0;
}
/* Season */

/* Actors */
.container__actors{
    padding: 100px 0;
    width: 1200px;
    margin: 0 auto;
}
.btn__actors{
    display: flex;
    flex-direction: row;
    padding-top: var(--size1);
}
.ba{
    margin-left: var(--size1);
    background: var(--purple);
    color: white;
    padding: 6px 6px;
    border-radius: 5px;
    cursor: pointer;
}
.ba1{
    margin-left: 0;
    background: var(--purple);
    color: white;
    padding: 6px 6px;
    border-radius: 5px;
    cursor: pointer;
}
.actors{
    padding-top: var(--size1);
    display: block;
}
.card__actors1{
    display: flex;
    flex-direction: row;
}
.img__actors{
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-left: 50px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.card__actors2{
    display: flex;
    flex-direction: row;
    padding-top: var(--size1);
}
.img__actors1{
    margin-left: 0;
}
.name__actors{
    font-weight: 900;
    margin-bottom: var(--size1);
    margin-left: 50px;
}
.name__actors1{
    margin-left: 0;
}
.about__actor{
    margin-left: 50px;
    width: 200px;
}
.about__actor1{
    margin-left: 0;
}
.creators{
    padding-top: var(--size1);
}
.zxc{
    display: none;
}
/* Actors */

/* Contacts */
.footer__contacts{
        width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.text__contacts{
    margin-top: 15px;
}
/* Contacts */

/* Media */
@media(min-width : 1281px){
    .card{
        display: flex;
        flex-direction: column;
    }
}
/* Media */