.nav-item {
  margin-left: 2rem;
}

.main {
  height: 20rem;
}
.main .hero_container {
  background: linear-gradient(90deg, rgba(96, 109, 181, 0.7712127087) 0%, rgba(35, 125, 255, 0.5387197115) 100%), url("/src/assets/hero.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;
  padding: 2rem;
  min-height: 25rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.main .hero_container .hero_title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #e5e5f7;
}
@media (max-width: 488px) {
  .main .hero_container .hero_title {
    font-size: 2rem;
  }
}
.main .hero_container .line {
  height: 1rem;
  width: 30rem;
  margin-bottom: 4rem;
  background-color: #0d6efd;
}
@media (max-width: 488px) {
  .main .hero_container .line {
    width: 15rem;
    height: 0.5rem;
  }
}
.main .hero_container .hero_container_title {
  font-size: 3rem;
}
.main .hero_container .hero_container_p {
  font-size: 1.5rem;
}
.main .hero_container .movie_details-img {
  height: 20rem;
}
.main .hero_container .movie_details_body-title {
  font-size: 3rem;
}
@media (max-width: 488px) {
  .main .hero_container .movie_details_body-title {
    font-size: 2.5rem;
    text-align: center;
  }
}
.main .hero_container .movie_details_body-date {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 488px) {
  .main .hero_container .movie_details_body-date {
    text-align: center;
  }
}
.main .hero_container .movie_details_body-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: whitesmoke;
}
@media (max-width: 488px) {
  .main .hero_container .movie_details_body-description {
    text-align: center;
  }
}
.main .hero_container .movie_details_body-rating {
  background-color: #444cf7;
  font-size: 1.2rem;
  color: white;
  margin-left: 2rem;
  min-width: 1rem;
  min-height: 1rem;
  padding: 0.5rem;
  border-radius: 50%;
}
.main .movies_container_wrapper {
  background-color: #e5e5f7;
  opacity: 1;
  background-image: radial-gradient(#444cf7 0.5px, transparent 0.5px), radial-gradient(#444cf7 0.5px, #e5e5f7 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  position: relative;
  padding: 1rem;
}
.main .movies_container_wrapper h1 {
  font-size: 2rem;
}
.main .movies_container_wrapper .sliderButton {
  position: absolute;
  color: #000;
  top: 12rem;
  background-color: #fff;
  font-size: 4rem;
  border-radius: 50%;
}
@media (max-width: 488px) {
  .main .movies_container_wrapper .sliderButton {
    top: 50%;
    font-size: 3rem;
  }
}
.main .movies_container_wrapper .switchLeft {
  left: 2rem;
}
.main .movies_container_wrapper .switchRigth {
  right: 2rem;
}
.main .movies_container_wrapper .movies_container {
  height: 20rem;
  display: flex;
  overflow: hidden;
}
@media (max-width: 488px) {
  .main .movies_container_wrapper .movies_container {
    height: 15rem;
  }
}
.main .movies_container_wrapper .movies_container .movie_container {
  background-color: #0d6efd;
  width: 14rem;
  max-height: 19.5rem;
  padding: 0.5rem;
  margin-right: 1rem;
}
@media (max-width: 488px) {
  .main .movies_container_wrapper .movies_container .movie_container {
    width: 12rem;
    max-height: 16rem;
  }
}
.main .movies_container_wrapper .movies_container .movie_container .movie_img {
  width: 10rem;
  height: 15rem;
}
@media (max-width: 488px) {
  .main .movies_container_wrapper .movies_container .movie_container .movie_img {
    width: 8rem;
    height: 12rem;
  }
}
.main .movies_container_wrapper .movies_container .movie_container .movie_title {
  font-size: 1.1rem;
}
.main .movies_container_wrapper .movies_container .movie_container a {
  text-decoration: none;
  color: #000;
}