* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

body {
  background-color: #000;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  z-index: 100;
}
header .logo img {
  max-width: 150px;
}

.navigation {
  display: flex;
}
.navigation li {
  list-style: none;
  margin: 0 10px;
}
.navigation li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
}
.navigation li:hover a {
  color: #de0611;
  font-weight: 600;
}

.search {
  position: relative;
  width: 300px;
  height: 40px;
}
.search input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  outline: none;
  border-radius: 4px;
  padding: 0 10px 0 35px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.search input::-moz-placeholder {
  color: #fff;
}
.search input:-ms-input-placeholder {
  color: #fff;
}
.search input::placeholder {
  color: #fff;
}
.search .search__icon {
  color: #fff;
  border: none;
  position: relative;
  background: transparent;
  top: 18%;
  left: 2%;
}

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.banner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner__shadow {
  position: absolute;
  background: linear-gradient(45deg, black 15%, transparent);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}
.content .movietitle {
  max-width: 250px;
}

.banner .content h4 {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.banner .content h4 span {
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.banner .content h4 span:first-child {
  padding-left: 0;
}
.banner .content h4 span:last-child {
  border-right: none;
}
.banner .content h4 span i {
  background-color: #de0611;
  color: #fff;
  padding: 0 8px;
  display: inline-block;
  border-radius: 2px;
  font-style: normal;
}
.banner .content p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
  margin: 10px 0 20px;
}
.banner .content .buttons {
  position: relative;
}
.banner .content .buttons a {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  background-color: #de0611;
  color: #fff;
  padding: 6px 20px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.banner .content .buttons a:nth-child(2) {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.banner .content .buttons a:hover:nth-child(2) {
  background-color: #de0611;
}

.play {
  position: absolute;
  bottom: 50px;
  left: 100px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1.2em;
  cursor: pointer;
}
.play img {
  margin-right: 15px;
  max-width: 50px;
}

.trailer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  visibility: hidden;
  opacity: 0;
}
.trailer.active {
  visibility: visible;
  opacity: 1;
}
.trailer video {
  max-width: 900px;
  outline: none;
}

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  filter: invert(1);
  max-width: 32px;
}

@media (max-width: 998px) {
  header {
    padding: 20px 50px;
    flex-direction: column;
  }
  .navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  .banner {
    padding: 100px 50px;
  }
  .banner .play {
    left: 50px;
    font-size: 1em;
  }
  .search {
    position: relative;
    max-width: 70%;
    width: calc(100% - 20px);
    height: 40px;
  }
  .play img {
    margin-right: 10px;
    max-width: 40px;
  }
  .trailer video {
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  header {
    padding: 20px;
  }
  .search {
    position: relative;
    width: calc(100% - 70px);
    height: 40px;
  }
  .banner {
    padding: 220px 20px 120px;
  }
  .banner .play {
    left: 20px;
    bottom: 30px;
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */