@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'roboto', sans-serif;
}

body {
  background-color: #000;
}

.container .head {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 50px;
  z-index: 1000000;
}

.container .head img {
  width: 13%;
}

.container .head a {
  color: #fff;
  text-decoration: none;
  background-color: #e50914;
  padding: 8px 18px;
  border-radius: 5px;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
}
.banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
  background: linear-gradient(to bottom, #000, transparent);
}

.banner:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
  background: linear-gradient(to top, #000, transparent);
}
.banner .fit {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.banner .box {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.banner .box .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner .box .heading h2 {
  font-size: 3.125rem;
  color: white;
  letter-spacing: 2px;
  width: 80%;
}

.banner .box .heading h5 {
  font-size: 1.625rem;
  color: white;
  font-weight: 400;
  padding: 1rem 0;
}
.banner .box .heading p {
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  padding: 15px 0;
  padding-bottom: 20px;
}
.banner .box .search {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.banner .box .search input {
  font-size: 16px;
  border: 1px solid #8c8c8c;
  outline: none;
  color: #000;
  border-radius: 2px;
  padding: 10px 10px 0 0;
  min-width: 400px;
  height: 60px;
  align-items: center;
}
.banner .box .search a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1px;
  border-radius: 2px;
  background: #e50914;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  font-size: 1.625rem;
  line-height: 60px;
  min-width: 400px;
  padding: 0 30px;
  align-items: center;
}

.part1 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 0.6rem solid #111;
}
.part1 .talk {
  width: 40%;
}

.part1 .talk h1 {
  font-size: 3.3rem;
  letter-spacing: 2px;
  padding-bottom: 10px;
  color: #fff;
}

.part1 .img {
  width: 45%;
}
.part1 .img img {
  width: 100%;
}
.part1 .talk p {
  font-size: 1.6rem;
  color: #fff;
}

.part2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 0.6rem solid #111;
}
.part2 .talk {
  width: 48%;
}

.part2 .talk h1 {
  font-size: 3.3rem;
  letter-spacing: 2px;
  padding-bottom: 10px;
  color: #fff;
}

.part2.img {
  width: 45%;
}
.part2 .img img {
  width: 100%;
}
.part2 .talk p {
  font-size: 1.6rem;
  color: #fff;
}

.list {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.list h1 {
  color: #fff;
  font-size: 3rem;
  margin: 4rem 0 3rem 0;
}

.title {
  background-color: #303030;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
}

.icon {
  width: 20px;
  position: relative;
}

.icon::before,
.icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #fff;
  top: -1.5px;
}

.icon::after {
  transform: rotate(90deg);
  transition: 0.5s linear;
}
.text {
  background-color: #303030;
  line-height: 35px;
  margin: 3px 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 400;
  height: 0;
  opacity: 0;
}

.item:target .text {
  height: auto;
  opacity: 1;
  padding: 20px 30px;
  margin: 0;
  border: 2px solid #000;
  margin-bottom: 6px;
}

.item:target .icon::after {
  transform: rotateY(90deg);
}

.banner2 {
  border-bottom: 0.6rem solid #111;
}

.banner2 .box {
  margin: 4rem 0;
}

.banner2 .box .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner2 .box .heading h2 {
  font-size: 3.125rem;
  color: white;
  letter-spacing: 2px;
  width: 80%;
}

.banner2 .box .heading h5 {
  font-size: 1.625rem;
  color: white;
  font-weight: 400;
  padding: 1rem 0;
}
.banner2 .box .heading p {
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
  padding: 15px 0;
  padding-bottom: 20px;
}
.banner2 .box .search {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.banner2 .box .search input {
  font-size: 16px;
  border: 1px solid #8c8c8c;
  outline: none;
  color: #000;
  border-radius: 2px;
  padding: 10px 10px 0 0;
  min-width: 400px;
  height: 60px;
  align-items: center;
}
.banner2 .box .search a {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1px;
  border-radius: 2px;
  background: #e50914;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  font-size: 1.625rem;
  line-height: 60px;
  min-width: 400px;
  padding: 0 30px;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  padding: 4rem 0;
}

.footer .one {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  width: 25%;
}

.footer .one li {
  padding: 7px 0;
}

.footer .one li a {
  color: #ccc;
  text-decoration: none;
}

.footer .one li a:hover {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 787px) {
  .container .head {
    padding: 20px 50px;
  }

  .container .head img {
    width: 20%;
  }

  .banner .box .heading h2 {
    font-size: 3.1rem;
    letter-spacing: 1.5px;
    width: 100%;
  }

  .banner .box .heading h5 {
    font-size: 1.4rem;
    padding: 0.8rem 0;
  }

  .banner .box .heading p {
    font-size: 1.1rem;
    padding: 13px 0;
    padding-bottom: 17px;
  }

  .banner .box .search {
    flex-direction: column;
  }
  .banner .box .search input {
    min-width: 310px;
    margin-bottom: 20px;
  }

  .banner .box .search a {
    min-width: 310px;
    margin-bottom: 20px;
  }

  .part1 {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
  }
  .part1 .talk {
    width: 80%;
    margin: 20px 0 30px 0;
  }

  .part1 .talk h1 {
    font-size: 3.2rem;
    letter-spacing: 1.5px;
    padding-bottom: 5px;
  }

  .part1 .img {
    width: 80%;
  }

  .part1 .talk p {
    font-size: 1.5rem;
  }

  .part2 {
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
  }
  .part2 .talk {
    width: 80%;
    margin: 20px 0 30px 0;
  }

  .part2 .talk h1 {
    font-size: 3.2rem;
    letter-spacing: 1.5px;
    padding-bottom: 5px;
  }

  .part2.img {
    width: 80%;
  }

  .part2 .talk p {
    font-size: 1.5rem;
  }

  .list {
    width: 80%;
  }

  .list h1 {
    font-size: 2.6rem;
    text-align: center;
  }

  .title {
    font-size: 1.6rem;
  }

  .banner2 {
    border-bottom: 0.6rem solid #111;
  }

  .banner2 .box {
    margin: 4rem 0;
  }

  .banner2 .box .heading p {
    font-size: 1.1rem;
    padding: 13px 0;
    padding-bottom: 17px;
  }
  .banner2 .box .search {
    flex-direction: column;
  }
  .banner2 .box .search input {
    min-width: 310px;
    margin-bottom: 20px;
  }
  .banner2 .box .search a {
    min-width: 310px;
    margin-bottom: 20px;
  }

  .footer {
    flex-direction: column;
  }

  .footer .one {
    width: 50%;
  }
}

@media screen and (max-width: 496px) {
  .container .head img {
    width: 23%;
  }

  .banner .box .heading h2 {
    font-size: 2.8rem;
    letter-spacing: 1.3px;
  }

  .banner .box .heading h5 {
    font-size: 1.2rem;
    padding: 0.8rem 0;
  }

  .banner .box .heading p {
    font-size: 1rem;
    padding: 12px 0;
    padding-bottom: 15px;
  }

  .banner .box .search input {
    margin-bottom: 10px;
  }

  .banner .box .search a {
    min-width: 310px;
    margin-bottom: 20px;
  }

  .part1 .talk h1 {
    font-size: 3rem;
    letter-spacing: 1.2px;
  }

  .part1 .talk p {
    font-size: 1.2rem;
  }

  .part2 .talk h1 {
    font-size: 3rem;
    letter-spacing: 1.2px;
  }

  .part2 .talk p {
    font-size: 1.2rem;
  }

  .list {
    width: 90%;
  }

  .list h1 {
    font-size: 2.1rem;
  }

  .text {
    font-size: 1rem;
  }

  .title {
    font-size: 1.2rem;
  }

  .text {
    background-color: #303030;
    line-height: 35px;
    margin: 3px 0;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 400;
    height: 0;
    opacity: 0;
  }

  .banner2 .box .heading p {
    font-size: 1rem;
    padding: 13px 0;
  }

  .banner2 .box .search input {
    margin-bottom: 10px;
  }
  .banner2 .box .search a {
    margin-bottom: 10px;
  }
}

body {
  padding: 0px;
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
}

.logo img {
  height: 110px;
  width: 220px;
}

.header {
  padding: 5px 20px;
  position: relative;
  z-index: 10;
}

.wrapper {
  background-image: url(./back.jpg);
  min-height: 100vh;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  position: absolute;
  object-fit: cover;
  background-size: cover;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
}

.login_body {
  padding: 30px;
  z-index: 90;
  position: relative;
  max-width: 450px;
  max-height: 630px;
  margin-left: 50%;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  box-sizing: border-box;
  transform: translateX(-50%);
}

.wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 130%;
  background: rgba(0, 0, 0, 0.25);
}

.wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 130%;
  background: rgba(0, 0, 0, 0.25);
}

.login_body h2 {
  font-size: 32px;
  color: white;
  margin-top: 0;
}

.login_body input {
  height: 50px;
  width: 100%;
  border-radius: 3px;
  color: white;
  background-color: white;
  border: 1px solid #333;
  padding-left: 15px;
  box-sizing: border-box;
  outline: none;
}

.input_wrap {
  margin-bottom: 25px;
}

.login_body button {
  height: 50px;
  width: 100%;
  color: white;
  background: #e50914;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  border: 1 solid #e50914;
}

.support {
  display: flex;
  color: rgba(255, 255, 255, 0.289);
  justify-content: space-between;
  font-size: 12px;
}

.support input {
  width: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
}
.remember {
  display: flex;
  align-items: center;
}

.remember span {
  margin-right: 10px;
  height: 25px;
}

.login_facebook {
  display: flex;
  align-items: center;
  width: 100%;
  color: #737373;
}

.login_facebook img {
  width: 20px;
  height: 20px;
}
.login_facebook span {
  margin-right: 10px;
  font-size: 13px;
}

.login_facebook span a {
  text-decoration: none;
  color: #737373;
}

.sign_up {
  color: #737373;
  font-size: 16px;
}

.sign_up a {
  color: white;
  font-size: 16px;
}

.terms {
  color: #737373;
  font-size: 13px;
}
.terms a {
  text-decoration: none;
  color: #0071eb;
}
