html,
body {
    background-color: #000;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

*::-webkit-scrollbar {
    display: none;
}

header {
    background-color: transparent;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: background-color ease 500ms;
}

header.black {
    background-color: rgb(20, 20, 20);
}

.container {
    width: 100%;
    max-width: 1242px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.left-container,
.right-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-brand {
    max-width: 100%;
    height: 80px;
    fill: red;
}

.main-nav {
    list-style: none;
    display: inline-flex;
    flex-direction: row;
    /* display: none; */
}

.nav-item {
    color: #e5e5e5;
    opacity: 0.8;
    margin-right: 20px;
}

.nav-item.active {
    color: #fff;
    opacity: 1;
}

.right-container svg,
.right-container img {
    margin-right: 22px;
}

.right-container svg {
    color: #fff;
}

.right-container img {
    max-width: 36px;
}

.movies-container {
    width: 100%;
    margin: 0 auto;
}

.movies-section {
    padding: 1.5rem;
}

.movie-section-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    cursor: pointer;
    transition: all 0.8s ease-in;
    margin-bottom: 10px;
}

.explore-nudge {
    color: aqua;
    font-size: 12px;
    display: none;
}

.movie-section-heading:hover .explore-nudge {
    display: inline-block;
}

.movies-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
}

.movie-item {
    width: 245px;
    object-fit: contain;
    margin-right: 6px;
    border-radius: 4px;
    transition: transform 500ms;
}

.movie-item:hover {
    transform: scale(1.5);
    z-index: 1;
}

.movie-item:hover~.movie-item {
    transform: translateX(25%);
}

/* Banner Section */
.banner-section {
    /* background-image: url(https://image.tmdb.org/t/p/original/iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
    max-width: 100%;
    position: relative;
    /* opacity: 1; */
}

.banner-content {
    display: flex;
    margin-inline: 5rem;
    flex-direction: column;
    /* justify-content: center; */
    max-width: 65%;
    /* max-width: 100%; */
    padding-top: 100px;
    /* z-index: 1000; */

    /* background-size: cover; */
}

@media screen and (max-width: 780px) {
    .banner-content .banner-title {
        font-size: 60px;
        line-height: 1;
    }

    .banner-content .banner-info {
        font-size: 16px;
    }

    .banner-content .banner-overview {
        font-size: 14px;
    }
}

@media screen and (max-width: 550px) {
    .banner-content .banner-title {
        font-size: 45px;
        line-height: 1;
    }
}

.banner-title {
    color: #fff;
    font-size: 78px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.banner-info {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
}

.banner-overview {
    font-size: 16.4px;
    color: #fff;
    line-height: 1.3;
}

.action-btns-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.action-button {
    border: none;
    background-color: #fff;
    padding: 8.196px 23px;
    margin-right: 11px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
}

.action-button:last-child {
    background-color: rgba(109, 109, 110, 0.7);
    color: white;
}

@media screen and (max-width: 550px) {
    .action-btns-container .action-button:last-child {
        font-size: 14px;
    }
}

.action-button svg {
    margin-right: 0.5rem;
}

.banner-fade {
    height: 120px;
    background: linear-gradient(180deg,
            transparent,
            rgba(37, 37, 37, 0.61),
            #141414);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

/* Scroll animation  */
/* .movies-section.hidden {
  opacity: 0.1;
  transition: all 1s;
}

.movies-section.show {
  opacity: 0.8;
} */

@media screen and (max-width: 780px) {
    .main-nav {
        display: none;
    }
}