*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', sans-serif;
}

body {
  background-image: url('../img/main-bg.png');
  background-color: #0A090A;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  color: #ffffff;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 45px;
  margin-bottom: 30%;
}

.logo {
  margin-right: 48px;
}

.logo > a {
  font-weight: 900;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}

.search {
  display: flex;
  width: 100%;
  margin-right: 56px;
}

.search-input {
  height: 100%;
  width: 100%;
  background: rgba(196, 196, 196, 0.5);
  border: none;
  border-radius: 5px;
  color: #AEAEAE;
  font-size: 14px;
  line-height: 16px;
  padding: 12px 18px;
  margin-right: 19px;
}

.search-input::placeholder {
  color: #AEAEAE;
}

.search-submit {
  background: none;
  border: none;
}

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

.user-bookmark {
  margin-right: 20px;
}

.user-avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.user-avatar > img {
  width: 100%;
  height: 100%;
}

/* Main */
.title {
  font-family: 'Playfair Display', 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: 38px;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 108px;
}

.movie-info {
  display: flex;
  align-items: center;
}

.tag {
  display: inline-block;
  font-size: 16px;
  line-height: 19px;
  color: #333333;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 3px;
  margin-right: 20px;
}

.country {
  font-size: 16px;
  line-height: 19px;
  margin-right: 33px;
}

.play {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.play::before {
  content: url('../img/play.svg');
  margin-right: 15px;
}

.more {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

.more::after {
  content: url('../img/play.svg');
  transform: rotate(90deg);
  margin-left: 15px;
}

/* Content */
.content {
  display: flex;
  background-color: #ffffff;
  color: #000000;
  border-radius: 3px;
  padding: 43px 50px;
}

.poster {
  display: block;
  margin-top: -77px;
}

.button {
  border: none;
  background-color: #FF8F27;
  padding: 10px 44px;
  color: #ffffff;
  font-size: 14px;
  line-height: 16px;
  margin-top: 20px;
  margin-bottom: 31px;
}

.actors-list {
  padding: 0 15px;
  list-style: none;
}

.actors-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 10px;
}

.actors-list-item {
  font-size: 16px;
  line-height: 150%;
  text-decoration-line: underline;
}

.actors-list-item > a {
  color: #000000;
}

/* Full info */
.full-info {
  width: 100%;
  margin-left: 45px;
}

/* Tab navigation */
.tab {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 41px;
}

.tab-list {
  display: flex;
  list-style: none;
}

.tab-item > a {
  font-size: 18px;
  line-height: 21px;
  color: #000000;
  transition: color 0.1s ease-in-out;
}

.tab-item:not(:last-child) {
  margin-right: 40px;
}

.tab-item-current > a,
.tab-item > a:hover {
  color: #FF8F27;
}

.tab-bookmark {
  background: none;
  border: none;
}

/* Full content */
.full-content {
  display: flex;
  justify-content: space-between;
}

.tab-content {
  margin-right: 79px;
}

.content-text {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 23px;
}

.content-heading {
  margin-top: 33px;
  margin-bottom: 23px;
}

/* Subscribe */
.subscribe-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 14px;
}

.subscribe-form {
  position: relative;
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 48px;
}

.subscribe-input {
  background-color: #F1F1F1;
  border: none;
  padding: 12px 16px;
  color: #9B9B9B;
  width: 100%;
}

.subscribe-input::placeholder {
  color: #9B9B9B;
}

.subscribe-submit {
  padding: 0 12px;
  height: 40px;
  background-color: #FF8F27;
  border: none;
}