body {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 300px;
    color: #ffffff;
    background-color: #000000;
    line-height: 1.4em;
    margin: 0px;
    padding: 0px;
}

/* ----- universal ----- */

h1 {
    font-size: 45px;
    font-weight: 900;
    padding-bottom: 20px;
}

h2 {
    font-size: 35px;
    font-weight: 900;
    padding-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 5px;
    line-height: 1em;
}

h4 {
    font-size: 15px;
    padding-bottom: 5px;
}

/* ----- end universal ----- */


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

.navbar-content {
    background-color: #272727;
    padding: 0px 300px 0px 300px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text {
    padding: 10px;
}

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

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

.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: 1680px) {
    .navbar-content {
        padding: 0px 250px 0px 250px;
    }

}

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

}

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

}

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


    .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;
        background-color: transparent;
    }

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

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

    .navbar-content {
        padding: 0px 50px 0px 50px;
    }

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

    .navbar-container {
        background-color: #000000ba;
    }
    
    .navbar {
        background-color: none;
    }

    .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-content {
        padding: 0px 30px 0px 30px;
    }

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


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



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

.banner-content {
    background-color: #dadada;
    color: #272727;
    padding: 50px 300px 50px 300px;
}

.banner-holder {
    display: grid;
    grid-template-areas:
    "left-banner"
    "right-banner";
}


.left-banner {
    background-image: url("../images/cover1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    height: 45vh;
    margin: 10px;
}

.right-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    height: 45vh;
    margin: 12px;
}

.text-title {
    padding-bottom: 20px;
}

.text-details {
    font-size: 18px;
}


@media (min-width: 460px) {
    .banner-holder {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
        "left-banner right-banner";
    }
}

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

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

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

    
}

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

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

    h2 {
        font-size: 25px;
        padding-bottom: 10px;
    }

    .text-details {
        font-size: 14px;
    }
}

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


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

/* ----- carosel-container ----- */

#slider {
    background-color: #ffffff;
    color: #272727;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.details {
    padding-top: 15px;
}

.container {
    width: 1600px;
    margin: auto;
}

.subcontainer {
    width: 81%;
    margin: auto;
}

.controller {
    display: flex;
    justify-content: space-between;
}

#controls i {
    color: #272727;
    font-size: 1rem;
}

.previous1, .next1 {
    padding: 5px;
    margin: 3px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 10%;
    outline: none;
    transition: 0.7s ease-in-out;
    border: 2px solid #272727;
    box-shadow: 0 0 5px #bbb;
}

.previous1:hover, .next1:hover {
    border: 3px solid gray;
}

.slide-img {
    width: 100%;
    height: 235px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.slide-img:hover {
    box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.9) inset;
}

.slide-img a {
    text-decoration: none;
    transform: scale(0);
    transition: 0.8s;
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0;
}

.slide-img:hover a {
    opacity: 1;
    transform: scale(1);
}

.img-1 {
    background-image: url("../images/top1.jpg");
}

.img-2 {
    background-image: url("../images/top2.jpg");
}

.img-3 {
    background-image: url("../images/top3.jpg");
}

.img-4 {
    background-image: url("../images/top4.jpg");
}

.img-5 {
    background-image: url("../images/top5.jpg");
}

.img-6 {
    background-image: url("../images/top6.jpg");
}

@media (max-width: 1600px) {
    .container {
        width: 100%;
    }
}



@media (max-width: 1680px) {
    .subcontainer {
        width: 75%;
        margin: auto;
    }
}

@media (max-width: 1440px) {
    .subcontainer {
        width: 72%;
        margin: auto;
    }
}

@media (max-width: 1024px) {
    .subcontainer {
        width: 88%;
        margin: auto;
    }
}

@media (max-width: 860px) {
    .subcontainer {
        width: 84%;
        margin: auto;
    }
}

@media (min-width: 100em) {
    .tns-item {
        padding-right: 20px;
        width: 150px;
    }
}

/* ----- end carosel-container ----- */



/* ----- end video-container ----- */

.video-container {
    background-color: #ffffff;
    color: #272727;
}

.video-content {
    padding: 50px 300px 50px 300px;
}

.container1 {
    position: relative;
  }
  
  .image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
  }

.container1:hover .image {
    opacity: 0.5;
}
  

.video-list1 {
    display: grid;
    grid-template-areas:
    "video1"
    "video2"
    "video3"
    "video4"
    "video5"
    "video6"
    "video7"
    "video8"
    "video9"
    "video10"
    "video11"
    "video12"
    "video13"
    "video14"
    "video15"
    "video16"
    "video17"
    "video18"
    "video19"
    "video20"
    "video21";
}

@media (min-width: 480px) {
    .video-list1 {
        grid-template-columns: repeat(4, 1fr);
        grid-template-areas:
        "video1 video2 video3 video4"
        "video5 video6 video7 video8"
        "video9 video10 video11 video12"
        "video13 video14 video15 video16"
        "video17 video18 video19 video20";
    }
}

.video-cover1 {
    background-image: url("../images/movie1.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover2 {
    background-image: url("../images/movie2.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover3 {
    background-image: url("../images/movie3.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover4 {
    background-image: url("../images/movie4.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover5 {
    background-image: url("../images/movie5.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover6 {
    background-image: url("../images/movie6.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover7 {
    background-image: url("../images/movie7.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover8 {
    background-image: url("../images/movie8.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover9 {
    background-image: url("../images/movie9.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover10 {
    background-image: url("../images/movie10.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover11 {
    background-image: url("../images/movie11.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover12 {
    background-image: url("../images/movie12.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover13 {
    background-image: url("../images/movie13.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover14 {
    background-image: url("../images/movie14.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover15 {
    background-image: url("../images/movie15.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover16 {
    background-image: url("../images/movie16.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover17 {
    background-image: url("../images/movie17.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover18 {
    background-image: url("../images/movie18.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover19 {
    background-image: url("../images/movie19.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover20 {
    background-image: url("../images/movie20.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cover21 {
    background-image: url("../images/movie21.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: 0;
    margin: 10px;
    padding: 20px;
    height: 18vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-detail {
    padding: 0px 10px 0px 10px;
}

@media (max-width: 1920px) {
}

@media (max-width: 1680px) {
    .video-content {
        padding: 50px 250px 50px 250px;
    }

    .video-cover1 {
        height: 15vh;
    }

    .video-cover2 {
        height: 15vh;
    }

    .video-cover3 {
        height: 15vh;
    }

    .video-cover4 {
        height: 15vh;
    }

    .video-cover5 {
        height: 15vh;
    }

    .video-cover6 {
        height: 15vh;
    }

    .video-cover7 {
        height: 15vh;
    }

    .video-cover8 {
        height: 15vh;
    }

    .video-cover9 {
        height: 15vh;
    }

    .video-cover10 {
        height: 15vh;
    }

    .video-cover11 {
        height: 15vh;
    }

    .video-cover12 {
        height: 15vh;
    }

    .video-cover13 {
        height: 15vh;
    }

    .video-cover14 {
        height: 15vh;
    }

    .video-cover15 {
        height: 15vh;
    }

    .video-cover16 {
        height: 15vh;
    }

    .video-cover17 {
        height: 15vh;
    }

    .video-cover18 {
        height: 15vh;
    }

    .video-cover19 {
        height: 15vh;
    }

    .video-cover20 {
        height: 15vh;
    }

    .video-cover21 {
        height: 25vh;
    }
}

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

    .video-cover1 {
        height: 14vh;
    }

    .video-cover2 {
        height: 14vh;
    }

    .video-cover3 {
        height: 14vh;
    }

    .video-cover4 {
        height: 14vh;
    }

    .video-cover5 {
        height: 14vh;
    }

    .video-cover6 {
        height: 14vh;
    }

    .video-cover7 {
        height: 14vh;
    }

    .video-cover8 {
        height: 14vh;
    }

    .video-cover9 {
        height: 14vh;
    }

    .video-cover10 {
        height: 14vh;
    }

    .video-cover11 {
        height: 14vh;
    }

    .video-cover12 {
        height: 14vh;
    }

    .video-cover13 {
        height: 14vh;
    }

    .video-cover14 {
        height: 14vh;
    }

    .video-cover15 {
        height: 14vh;
    }

    .video-cover16 {
        height: 14vh;
    }

    .video-cover17 {
        height: 14vh;
    }

    .video-cover18 {
        height: 14vh;
    }

    .video-cover19 {
        height: 14vh;
    }

    .video-cover20 {
        height: 14vh;
    }

    .video-cover21 {
        height: 14vh;
    }
}

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

    .video-cover1 {
        height: 11vh;
    }

    .video-cover2 {
        height: 11vh;
    }

    .video-cover3 {
        height: 11vh;
    }

    .video-cover4 {
        height: 11vh;
    }

    .video-cover5 {
        height: 11vh;
    }

    .video-cover6 {
        height: 11vh;
    }

    .video-cover7 {
        height: 11vh;
    }

    .video-cover8 {
        height: 11vh;
    }

    .video-cover9 {
        height: 11vh;
    }

    .video-cover10 {
        height: 11vh;
    }

    .video-cover11 {
        height: 11vh;
    }

    .video-cover12 {
        height: 11vh;
    }

    .video-cover13 {
        height: 11vh;
    }

    .video-cover14 {
        height: 11vh;
    }

    .video-cover15 {
        height: 11vh;
    }

    .video-cover16 {
        height: 11vh;
    }

    .video-cover17 {
        height: 11vh;
    }

    .video-cover18 {
        height: 11vh;
    }

    .video-cover19 {
        height: 11vh;
    }

    .video-cover20 {
        height: 11vh;
    }

    .video-cover21 {
        height: 11vh;
    }
}

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

    .video-cover1 {
        height: 7vh;
    }

    .video-cover2 {
        height: 7vh;
    }

    .video-cover3 {
        height: 7vh;
    }

    .video-cover4 {
        height: 7vh;
    }

    .video-cover5 {
        height: 7vh;
    }

    .video-cover6 {
        height: 7vh;
    }

    .video-cover7 {
        height: 7vh;
    }

    .video-cover8 {
        height: 7vh;
    }

    .video-cover9 {
        height: 7vh;
    }

    .video-cover10 {
        height: 7vh;
    }

    .video-cover11 {
        height: 7vh;
    }

    .video-cover12 {
        height: 7vh;
    }

    .video-cover13 {
        height: 7vh;
    }

    .video-cover14 {
        height: 7vh;
    }

    .video-cover15 {
        height: 7vh;
    }

    .video-cover16 {
        height: 7vh;
    }

    .video-cover17 {
        height: 7vh;
    }

    .video-cover18 {
        height: 7vh;
    }

    .video-cover19 {
        height: 7vh;
    }

    .video-cover20 {
        height: 7vh;
    }

    .video-cover21 {
        height: 7vh;
    }
    
}

@media (max-width: 460px) {
    .video-content {
        padding: 50px 30px 50px 30px; 
    }

    .video-cover1 {
        height: 18vh;
    }

    .video-cover2 {
        height: 18vh;
    }

    .video-cover3 {
        height: 18vh;
    }

    .video-cover4 {
        height: 18vh;
    }

    .video-cover5 {
        height: 18vh;
    }

    .video-cover6 {
        height: 18vh;
    }

    .video-cover7 {
        height: 18vh;
    }

    .video-cover8 {
        height: 18vh;
    }

    .video-cover9 {
        height: 18vh;
    }

    .video-cover10 {
        height: 18vh;
    }

    .video-cover11 {
        height: 18vh;
    }

    .video-cover12 {
        height: 18vh;
    }

    .video-cover13 {
        height: 18vh;
    }

    .video-cover14 {
        height: 18vh;
    }

    .video-cover15 {
        height: 18vh;
    }

    .video-cover16 {
        height: 18vh;
    }

    .video-cover17 {
        height: 18vh;
    }

    .video-cover18 {
        height: 18vh;
    }

    .video-cover19 {
        height: 18vh;
    }

    .video-cover20 {
        height: 18vh;
    }

    .video-cover21 {
        height: 18vh;
    }

}

/* ----- end video-container ----- */


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

.banner1-content {
    background-color: #dadada;
    color: #272727;
    padding: 50px 300px 50px 300px;
}

.banner1-holder {
    display: grid;
    grid-template-areas:
    "left-banner"
    "right-banner";
}


.left1-banner { 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    height: 45vh;
    margin: 12px;
}

.right1-banner {
    background-image: url("../images/cover2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    height: 45vh;
    margin: 10px;
}


@media (min-width: 460px) {
    .banner1-holder {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
        "left-banner right-banner";
    }
}

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

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

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

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

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

    h2 {
        font-size: 25px;
        padding-bottom: 10px;
    }

    .text-details {
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .banner1-content {
        padding: 50px 30px 50px 30px;
    }

    .left1-banner { 
        height: 15vh;
    }
}


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


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

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

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

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

@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 250px 50px 250px;
    }
}

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

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

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

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

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

    .banner-top {
        background-position: 10%;
    }
}

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


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

.footer-container {
    padding: 50px 100px 50px 100px;
    background-color: #161616;
}

.footer-details {
    display: flex;
    justify-content: center;
    text-align: center;
}

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

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

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

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

    .footer-thumbnails {
        display: none;
    }
}

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



