body {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}


/* all */
a {
    text-decoration: none !important;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* navbar */
.navbar-brand img {
    max-height: 50px;
    width: 200px;
    
}

.nav-item {
    color: #444444;
    font-weight: 500;
}

.navbar {
    transition: all 0.3s ease;
    z-index: 1;
    top: 0;
    position: fixed;
    background-color: white !important;
}

.navbar-collapse {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
}

.active-link {
    color: #444444 !important;
    transition: .3;
}

.active-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom:-15px;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    
}


/* video content */
.vidcontainer {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.video {
    width: 100%;
    height: 525px;
}

h5 {
    font-size: 18px;
    color: #3d3d3d;
    font-weight: 500;
}

h1,
h2 {
    color: #404040;
    font-family: "Cinzel Decorative", serif;;
}

.text-uppercase {
    font-size: 14px;
    color:#404040;
}

.watchHBO {
    width: 150px;
}

.gotP {
    font-size: 14px;
    text-align: justify;
}



.soundtrack {
    width: 100%;
    height: 525px;
}

.stContent {
    color: #3d3d3d;
    font-size: 25px;
    ;
}

.soundtrackDiv span {
    color: #2bb0d8;
}

.cardContainer {
    overflow: hidden;
    position: relative;
   
}

.cardContainer .col-lg-3 {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.card {
    transition: transform 0.5s ease;
}

.imgContainer img {
    height: 250px;
    overflow: hidden;
}


.embed-responsive {
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; 
}

.mt-2 .fw-medium {
    color: #2bb0d8;
}


.hotdimgCon {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16/9;
}

.hotdimgCon img {
    width: 100%; 
    height: auto; 
    object-fit: cover; 
    margin-top: 47px;

}


footer {
    height: 150px;
    width: 100%;
    background-color: #3d3d3d;
}

.footerCon {
    font-size: 14px;
}

.copyR {
    font-size: 12px;
}


@media (max-width: 768px) {
    
    .navbar-collapse {
        /* display: flex; */
        flex-direction: column;
        font-size: 20px;
        height: 100vh;
        gap: 20px;
        visibility: hidden;
        opacity: 0;
        /* transform: translateY(-20px); */
        transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
        background-color: #3d3d3d;
    }

    .navbar-collapse.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .nav-link {
        margin-bottom: 10px;
        margin-top: 50px;
        color: white;
        
    }
}