body {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600px;
    color: #ffffff;
    background-color: #101012;
    line-height: 1.4em;
    margin: 0px;
    padding: 0px;
}



/* ----- navbar container ----- */

.navbar-container {
    background-color: #101012;
}

.navbar {
    display: flex;
    padding: 0px 300px 0px 300px;
    justify-content: space-between;
    align-items: center;

}

.text {
    padding: 10px;
}

.brand-title {
    padding-top: 5px;
}

.navbar-links ul {
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-bar {
    width: 100%;
}

.nav-bar2 {
    width: 100%;
}

.navbar-links li {
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-links li a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem;
    display: block;
}

.navbar-links li a:hover {
    color: #585858;
}

.toggle-button {
    position: absolute;
    top: .45rem;
    right: .5rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 85%;
    background-color: #ffffff;
    border-radius: 10px;
}

@media  (max-width: 860px) {
    .toggle-button {
        display: flex;
        top: 1.1rem;
        padding-right: 40px;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        text-align: left;
    }

    .navbar-links li a {
        padding: .5rem .1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    div.navbar-links {
        padding-right: 10px;
    }

    .brand-title {
        margin: 10px 10px 10px 0px;
        padding-top: 5px;
    }
}

@media (max-width: 1680px) {
    .navbar {
        padding: 0px 300px 0px 300px;
    }
}

@media (max-width: 1440px) {
    .navbar {
        padding: 0px 200px 0px 200px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 0px 100px 0px 100px;
    }
}

@media (max-width: 860px) {
    .navbar {
        padding: 0px 50px 0px 50px;
    }

    .toggle-button .bar {
        background-color: #85ef4b;
    }

    .navbar-container {
        background-color: #101012;
    }
    
    .navbar {
        background-color: #101012;
    }

    .navbar-links li a {
        color: #ffffff;
        padding-left: 30px;
    }

    .navbar-links li {
        border-bottom: .5px solid #d9d9d9a8;
    }

    .banner-images {
        height: 100%;
    }

    .btn-header {
        display: none;
    }
}

@media (max-width: 460px) {
    .navbar {
        padding: 0px 20px 0px 20px;
    }

    .toggle-button {
        padding-right: 20px;
    }
}

/* ----- end navbar container ----- */


/* ----- banner container ----- */

.banner-container {
    background-image: url("../images/banner-1.jpg");
    height: 77vh;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 16px;
    font-weight: 200;
}

.banner-content {
    padding: 100px 300px 100px 300px;
    display: grid;
    grid-template-areas: 
    "banner-left"
    "banner-right"; 
}

h1 {
    font-size: 35px;
    font-weight: 550;
    padding-bottom: 10px;
}

h2 {
    font-size: 27px;
    font-weight: 550;
    padding-bottom: 30px;
}

h3 {
    font-size: 20px;
    padding-bottom: 15px;
}

h4 {
    font-size: 25px;
    padding-bottom: 30px;
    line-height: 1.1em;
}

.banner-right {
    display: flex;
    align-items: flex-end;
}

.banner-text {
    text-align: right;
    align-items: flex-end;
}

.text-primary {
    color: #85ef4b;
}

.btn-primary, button {
    border-color: #85ef4b;
}

.btn-primary {
    border: 1px solid #85ef4b;
    background-color: #85ef4b;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 150px;
}

.btn1 {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100px;
}

a:link, a:visited, a strong {
    text-decoration: none;
}

.rating {
    padding-bottom: 20px;
}

.cast {

    padding: 30px 0px 20px 0px;
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free";
}

.fa, .fas {
    font-weight: 900;
}

@media (min-width: 860px) {
    .banner-content {
        height: 53vh;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "banner-left banner-right"; 
    }
}

@media (max-width: 1680px) {
    .banner-content {
        padding: 100px 300px 100px 300px;
    }
}

@media (max-width: 1440px) {
    .banner-content {
        padding: 100px 200px 100px 200px;
    }
}

@media (max-width: 1024px) {
    .banner-content {
        padding: 100px 100px 100px 100px;
    }
}

@media (max-width: 860px) {
    .banner-content {
        padding: 45px 50px 45px 50px;
    }

    .banner-container {
        height: 45vh;
    }
}

@media (max-width: 460px) {
    .banner-container {  
        height: 58vh;
        background-position: 45%;
    }
    
    .banner-content {
        padding: 80px 20px 0px 20px;
        height: 30vh;
    }
}

/* ----- end banner container ----- */

/* ----- category container ----- */

.category-container {
    padding: 50px 300px 50px 300px;
    background-color: #ffffff;
    color: #ffffff;
}

.category-content {
    display: grid;
    grid-template-areas: 
    "category-left"
    "category-right"; 
}

.category-left {
    background-image: url("../images/cat1.jpg");
    margin: 10px;
    padding: 20px;
    height: 35vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.cat-content {
    display: grid;
    grid-template-areas: 
    "cat-left"
    "cat-right";
}

.cat-left {
    padding-top: 50px;
}

.cat-right {
    justify-content: flex-end;
    display: flex;
    align-items: end;
    height: 35vh;
}

.category-right {
    background-image: url("../images/cat2.jpg");
    margin: 10px;
    padding: 20px;
    height: 35vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

@media (min-width: 860px) {
    .category-content {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "category-left category-right"; 
    }

    .cat-content {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "cat-left cat-right";
    }
}

@media (max-width: 1680px) {
    .category-container {
        padding: 50px 300px 50px 300px;
    }
}

@media (max-width: 1440px) {
    .category-container {
        padding: 50px 200px 50px 200px;
    }
}

@media (max-width: 1024px) {
    .category-container {
        padding: 50px 100px 50px 100px;
    }
}

@media (max-width: 860px) {
    .category-container {
        padding: 50px 50px 50px 50px;
    }

    .category-left {
        height: 40vh;
    }
    
    .category-right {
        height: 40vh;
    }

    .cat-right {
        height: 27vh;
    }
}

@media (max-width: 460px) {
    .category-container {
        padding: 50px 20px 50px 20px;
    }

    .category-left {
        height: 28vh;
    }
    
    .category-right {
        height: 28vh;
    }

    .cat-left {
        padding-top: 20px;
    }

    .cat-right {
        height: 16vh;
    }
}

/* ----- end category container ----- */

/* ----- top container ----- */

.top-container {
    padding: 50px 300px 50px 300px;
    background-color: #101012;
}


hr {
    border: 1px solid #f5c02a;
    width: 50px;
    margin: 0px;
}

.title-header {
    text-align: center;
}

.lines {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.movie-list {
    display: grid;
    grid-template-areas:
    "movie1"
    "movie2"
    "movie3";
}

.movie-cover1 {
    background-image: url("../images/movie1.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover2 {
    background-image: url("../images/movie2.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover3 {
    background-image: url("../images/movie3.jpg");
    background-size: cover;
    height: 20vh;
}


.movie1 {
    height: 40vh;
    margin: 10px;
}

.movie2 {
    height: 40vh;
    margin: 10px;
}

.movie3 {
    height: 40vh;
    margin: 10px;
}

.movie-details {
    padding: 20px;
}

.movie-title {
    padding-bottom: 15px;
}

.movie-description {
    padding-bottom: 15px;
}


.movie-btn a {
    color: #ffffff;
    font-size: 16px;
}

.movie-btn2 a {
    color: #000000;
    font-size: 16px;
}

@media (min-width: 460px) {
    .movie-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
        "movie1 movie2 movie3";
    }
}

@media (max-width: 1920px) {
    .movie-cover1 {
        height: 25vh;
    }

    .movie-cover2 {
        height: 25vh;
    }

    .movie-cover3 {
        height: 25vh;
    }

    .movie1 {
        height: 42vh;
    }

    .movie2 {
        height: 42vh;
    }

    .movie3 {
        height: 42vh;
    }
}

@media (max-width: 1680px) {
    .top-container {
        padding: 50px 300px 50px 300px;
    }

    .movie-cover1 {
        height: 23vh;
    }

    .movie-cover2 {
        height: 23vh;
    }

    .movie-cover3 {
        height: 23vh;
    }

    .movie1 {
        height: 44vh;
    }

    .movie2 {
        height: 44vh;
    }

    .movie3 {
        height: 44vh;
    }
}

@media (max-width: 1440px) {
    .top-container {
        padding: 50px 200px 50px 200px;
    }

    .movie-cover1 {
        height: 23vh;
    }

    .movie-cover2 {
        height: 23vh;
    }

    .movie-cover3 {
        height: 23vh;
    }

    .movie1 {
        height: 44vh;
    }

    .movie2 {
        height: 44vh;
    }

    .movie3 {
        height: 44vh;
    }
}

@media (max-width: 1024px) {
    .top-container {
        padding: 50px 100px 50px 100px;
    }

    .movie-cover1 {
        height: 19vh;
    }

    .movie-cover2 {
        height: 19vh;
    }

    .movie-cover3 {
        height: 19vh;
    }

    .movie1 {
        height: 38vh;
    }

    .movie2 {
        height: 38vh;
    }

    .movie3 {
        height: 38vh;
    }
}

@media (max-width: 860px) {
    .top-container {
        padding: 50px 50px 50px 50px;
    }

    .movie-cover1 {
        height: 15vh;
    }

    .movie-cover2 {
        height: 15vh;
    }

    .movie-cover3 {
        height: 15vh;
    }

    .movie1 {
        height: 38vh;
    }

    .movie2 {
        height: 38vh;
    }

    .movie3 {
        height: 38vh;
    }
}

@media (max-width: 460px) {
    .top-container {
        padding: 50px 20px 50px 20px;
    }

    .movie-cover1 {
        height: 28vh;
    }

    .movie-cover2 {
        height: 28vh;
    }

    .movie-cover3 {
        height: 28vh;
    }

    .movie1 {
        height: 50vh;
    }

    .movie2 {
        height: 50vh;
    }

    .movie3 {
        height: 50vh;
    }
}

/* ----- end top container ----- */

/* ----- form container ----- */

.form-container {
    padding: 50px 300px 50px 300px;
    background-color: #ffffff;
}

.form-text {
    padding-left: 20px;
}


@media (min-width: 1440px) {
    .join-form {
        height: 65vh;
    }
}

@media (min-width: 1024px) {
    .join-form {
        height: 65vh;
    }
}

@media (min-width: 860px) {
    .join-form {
        height: 67vh;
    }
}

@media (max-width: 1680px) {
    .form-container {
        padding: 50px 300px 50px 300px;
    }
}

@media (max-width: 1440px) {
    .form-container {
        padding: 50px 200px 50px 200px;
    }
}

@media (max-width: 1024px) {
    .form-container {
        padding: 50px 100px 50px 100px;
    }
}

@media (max-width: 860px) {
    .form-container {
        padding: 50px 50px 50px 50px;
    }
}

@media (max-width: 460px) {
    .form-container {
        padding: 50px 20px 50px 20px;
    }

    .form-text {
        padding-left: 0px;
    }
}

/* ----- end form container ----- */

/* ----- banner1 container ----- */

.banner1-container {
    background-image: url("../images/banner-2.jpg");
    height: 45vh;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 16px;
    font-weight: 200;
}

.banner1-content {
    padding: 50px 300px 50px 300px;
    display: grid;
    grid-template-areas: 
    "banner-left"
    "banner-right"; 
}



.banner-right {
    display: flex;
    align-items: flex-end;
}

.banner-text {
    text-align: right;
    align-items: flex-end;
}



@media (min-width: 860px) {
    .banner1-content {
        height: 35vh;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "banner-left banner-right"; 
    }
}

@media (max-width: 1680px) {
    .banner1-content {
        padding: 50px 300px 50px 300px;

    }
}

@media (max-width: 1440px) {
    .banner1-content {
        padding: 50px 200px 50px 200px;

    }
}

@media (max-width: 1024px) {
    .banner1-content {
        padding: 50px 100px 50px 100px;

    }
}

@media (max-width: 860px) {
    .banner1-content {
        padding: 50px 50px 50px 50px;
        height: 32vh;
    }

    .banner1-container {
        height: 45vh;
    }
}

@media (max-width: 460px) {
    .banner1-container {  
        height: 52vh;
        background-position: 45%;
    }

    .banner1-content {
        padding: 50px 20px 50px 20px;
        height: 30vh;
    }
}

/* ----- end banner1 container ----- */

/* ----- playing container ----- */

.playing-container {
    padding: 50px 300px 50px 300px;
    background-color: #ffffff;
    color: #000000;
}

.movie-list {
    display: grid;
    grid-template-areas:
    "movie4"
    "movie5"
    "movie6"
    "movie7"
    "movie8"
    "movie9";
}

.movie-cover4 {
    background-image: url("../images/movie4.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover5 {
    background-image: url("../images/movie5.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover6 {
    background-image: url("../images/movie6.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover7 {
    background-image: url("../images/movie7.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover8 {
    background-image: url("../images/movie8.jpg");
    background-size: cover;
    height: 20vh;
}

.movie-cover9 {
    background-image: url("../images/movie9.jpg");
    background-size: cover;
    height: 20vh;
}


.movie4 {
    height: 40vh;
    margin: 10px;
}

.movie5 {
    height: 40vh;
    margin: 10px;
}

.movie6 {
    height: 40vh;
    margin: 10px;
}

.movie7 {
    height: 40vh;
    margin: 10px;
}

.movie8 {
    height: 40vh;
    margin: 10px;
}

.movie9 {
    height: 40vh;
    margin: 10px;
}

.movie-btn a {
    color: #ffffff;
    font-size: 16px;
}

@media (min-width: 460px) {
    .movie-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
        "movie1 movie2 movie3";
    }
}

@media (max-width: 1920px) {
    .movie-cover4 {
        height: 25vh;
    }

    .movie-cover5 {
        height: 25vh;
    }

    .movie-cover6 {
        height: 25vh;
    }

    .movie-cover7 {
        height: 25vh;
    }

    .movie-cover8 {
        height: 25vh;
    }

    .movie-cover9 {
        height: 25vh;
    }

    .movie4 {
        height: 42vh;
    }

    .movie5 {
        height: 42vh;
    }

    .movie6 {
        height: 42vh;
    }

    .movie7 {
        height: 42vh;
    }

    .movie8 {
        height: 42vh;
    }

    .movie9 {
        height: 42vh;
    }
}

@media (max-width: 1680px) {
    .playing-container {
        padding: 50px 300px 50px 300px;
    }

    .movie-cover4 {
        height: 23vh;
    }

    .movie-cover5 {
        height: 23vh;
    }

    .movie-cover6 {
        height: 23vh;
    }

    .movie-cover7 {
        height: 23vh;
    }

    .movie-cover8 {
        height: 23vh;
    }

    .movie-cover9 {
        height: 23vh;
    }

    .movie4 {
        height: 44vh;
    }

    .movie5 {
        height: 44vh;
    }

    .movie6 {
        height: 44vh;
    }

    .movie7 {
        height: 44vh;
    }

    .movie8 {
        height: 44vh;
    }

    .movie9 {
        height: 44vh;
    }
}

@media (max-width: 1440px) {
    .playing-container {
        padding: 50px 200px 50px 200px;
    }

    .movie-cover4 {
        height: 23vh;
    }

    .movie-cover5 {
        height: 23vh;
    }

    .movie-cover6 {
        height: 23vh;
    }

    .movie-cover7 {
        height: 23vh;
    }

    .movie-cover8 {
        height: 23vh;
    }

    .movie-cover9 {
        height: 23vh;
    }

    .movie4 {
        height: 44vh;
    }

    .movie5 {
        height: 44vh;
    }

    .movie6 {
        height: 44vh;
    }

    .movie7 {
        height: 44vh;
    }

    .movie8 {
        height: 44vh;
    }

    .movie9 {
        height: 44vh;
    }
}

@media (max-width: 1024px) {
    .playing-container {
        padding: 50px 100px 50px 100px;
    }

    .movie-cover4 {
        height: 19vh;
    }

    .movie-cover5 {
        height: 19vh;
    }

    .movie-cover6 {
        height: 19vh;
    }

    .movie-cover7 {
        height: 19vh;
    }

    .movie-cover8 {
        height: 19vh;
    }

    .movie-cover9 {
        height: 19vh;
    }

    .movie4 {
        height: 38vh;
    }

    .movie5 {
        height: 38vh;
    }

    .movie6 {
        height: 38vh;
    }

    .movie7 {
        height: 38vh;
    }

    .movie8 {
        height: 38vh;
    }

    .movie9 {
        height: 38vh;
    }
}

@media (max-width: 860px) {
    .playing-container {
        padding: 50px 50px 50px 50px;
    }

    .movie-cover4 {
        height: 15vh;
    }

    .movie-cover5 {
        height: 15vh;
    }

    .movie-cover6 {
        height: 15vh;
    }

    .movie-cover7 {
        height: 15vh;
    }

    .movie-cover8 {
        height: 15vh;
    }

    .movie-cover9 {
        height: 15vh;
    }

    .movie4 {
        height: 38vh;
    }

    .movie5 {
        height: 38vh;
    }

    .movie6 {
        height: 38vh;
    }

    .movie7 {
        height: 38vh;
    }

    .movie8 {
        height: 38vh;
    }

    .movie9 {
        height: 38vh;
    }
}

@media (max-width: 460px) {
    .playing-container {
        padding: 50px 20px 50px 20px;
    }

    .movie-cover4 {
        height: 28vh;
    }

    .movie-cover5 {
        height: 28vh;
    }

    .movie-cover6 {
        height: 28vh;
    }

    .movie-cover7 {
        height: 28vh;
    }

    .movie-cover8 {
        height: 28vh;
    }

    .movie-cover9 {
        height: 28vh;
    }

    .movie4 {
        height: 50vh;
    }

    .movie5 {
        height: 50vh;
    }

    .movie6 {
        height: 50vh;
    }

    .movie7 {
        height: 50vh;
    }

    .movie8 {
        height: 50vh;
    }

    .movie9 {
        height: 50vh;
    }
}

/* ----- end playing container ----- */

/* ----- footer-container ----- */

.footer-container {
    padding: 50px 300px 50px 300px;
    background-color: #101012;
}

.footer-details {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 1680px) {
    .footer-container {
        padding: 50px 300px 50px 300px;
    }
}

@media (max-width: 1440px) {
    .footer-container {
        padding: 50px 200px 50px 200px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        padding: 50px 100px 50px 100px;
    }
}

@media (max-width: 860px) {
    .footer-container {
        padding: 50px 50px 50px 50px;
    }
}

@media (max-width: 460px) {
    .footer-container {
        padding: 50px 20px 50px 20px;
    }

    .footer-thumbnails {
        display: none;
    }
}

/* ----- end footer-container ----- */