*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #0A090A;
    background-image: url(../img/main-bg.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top center;
}
.container {
    max-width: 1140px;
    margin: auto;    
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 45px;
    margin-bottom: 30%;
}
.logo {
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
}
.search {
    display: flex;    
    align-items: center;
    flex: 0.8;
}
.search-input {
    flex: 1;
    background: rgba(196, 196, 196, 0.5);
    border-radius: 5px;
    border: none;
    padding: 12px 18px;
    color: #AEAEAE;
}
::-webkit-input-placeholder {     /* Chrome */
    color: #AEAEAE;
}
:-ms-input-placeholder {     /* IE 10+ */
    color: #AEAEAE;
}
::-moz-placeholder {     /* Firefox 19+ */
    color: #AEAEAE;
    opacity: 1;
}
:-moz-placeholder {     /* Firefox 4 - 18 */
    color: #AEAEAE;
    opacity: 1;
}
.search-button {
    background-color: transparent;
    padding: 10px 18px;
    border: none;
}
.user {
    display: flex;
    align-items: center;
}
.bookmark {
    background-color: transparent;
    border:none;
    cursor: pointer;
}
.avatar {
    widows: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 20px;
    object-fit: cover;
}
.title {
    margin: 0;
    font-family: 'Playfair Display',sans-serif;
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 7px;
}
.title-en {
    display: inline-block;
    font-size: 20px;
    line-height: 23px;
    color: #787878;
    margin-bottom: 40px;
}
.info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}
.movie-info {
    display: flex;
    align-items: center;
}
.tag {
    padding: 5px 10px;
    background: #FFFFFF;
    font-size: 16px;
    line-height: 19px;
    color: #333333;
    border-radius: 3px;
    margin-right: 20px;
}
.country {
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-right: 33px;
}
.play {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
}
.play:before {
    content: '';    
    width: 30px;
    height: 30px;
    background-image: url(../img/play.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 15px;
}
.more {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #FFFFFF;
    text-decoration: none;
}
.more:after {   
    content: '';
    width: 30px;
    height: 30px;
    background-image: url(../img/play.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    transform: rotate(90deg);
    margin-left: 15px;
}
.content {
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    border-radius: 3px;
    padding: 3% 4%;
}
.short-info {
    margin-right: 3%;
}
.cover {
    margin-top: -40%;
}
.button {
    display: block;
    background: #FF8F27;
    font-size: 14px;
    line-height: 16px;
    padding: 10px 44px;
    margin-top: 20px;
    color: #fff;
    border: none;
}
.actors-title {
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    padding-left: 15px;
    margin-bottom: 10px;
}
.actors-list {
    margin: 0;
    list-style: none;
    padding-left: 15px;
}
.actors-list-item {
    text-decoration: underline;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
}
.full-info {
    flex: 0.97;
}
.full-content {
    display: flex;
    justify-content: space-between;    
}
.tabs-item {
    display: none;
    margin-right: 70px;
}
.visible {
    display: block;
}
.menu-tabs {    
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    text-decoration: none;    
}
.menu-tabs:not(:last-child) {
    margin-right: 5%;
}
.menu-tabs-active {
    color: #FF8F27;
}

.text {
    margin-top: 0;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    text-align: justify;
}
.menu {
    display: flex;
    align-items:center;
    margin-bottom: 4%;
}
.subscribe-title {
    margin-top: 0;
    margin-bottom: 14px;
    font-weight: 900;
    font-size: 16px;
    line-height: 150%;
}
.subscribe-form {
    display: flex;
    margin-bottom: 48px;
}
.subscribe-input {
    padding: 12px 15px;
    background: rgba(241, 241, 241, 0.5);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
}
.subscribe-button {
    background: #FF8F27;
    width: 43px;
    height: 40px;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;       
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .tabs-item {
        font-size: 16px;
    }
    .text {
        text-align: justify;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 740px;
    }
    .menu {
        display: flex;
        flex-wrap: wrap;
    }
    .menu-tabs {
        flex-basis: 20%;
        line-height: 2;
    }
    .full-content {
        flex-wrap: wrap;
    }
    .text {
        text-align: justify;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    .more {
        display: none;
    }
    .menu-tabs {
        flex-basis: 33%;
    }
    .tabs-item {
        margin-right: 0;
    }
    .text {
        text-align: justify;
    }
}
@media (max-width: 578px) {
    .container {
        width: 90%;
    }
    .header {
        flex-wrap: wrap;        
    }
    .search {
        flex-basis: 100%;
        order: 3;
        margin-top: 5%;
    }
    .content {
        flex-wrap: wrap;
    }
    .short-info {
        margin-bottom: 5%;
    }
    .actors-list,
    .actors-title {
        display: none;
    }
    .movie-info {
        flex-wrap: wrap;
    }
    .play {
        flex-basis: 100%;
        margin-top: 10%;
    }
    .short-info {
        margin-right: 0;
        align-items: center;
    }
    .cover {
        display: inline-block;
        margin-top: -20%;
        width: 100%;
        text-align: center;
    }
    .button {
        display: inline-block;
        width: 100%;
    }
    .text {
        text-align: justify;
    }
}




