@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;700&display=swap');
* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}

body {
    background-color: #090a0a;
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */
}


/* css for loading background  */

#loader_section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #090a0a;
    z-index: 100;
    position: absolute;
    width: 100%;
}

#loader_section img {
    width: 10%;
    z-index: 20;
    animation: animate linear infinite 1.5s;
}

@keyframes animate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.name_branding {
    z-index: 10;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: #fff;
    text-align: center;
}


/* end loading abckground */


/* navbar css strat */

.navbar {
    position: absolute;
    z-index: 50;
    width: 100%;
}

.navbar-brand {
    font-family: 'Josefin Sans', sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin: 0% 4%;
    width: 6%;
}

.navbar-brand:hover {
    color: #fff;
}

.nav-link {
    color: #ffa800;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.nav-item {
    margin: 0% 1.5rem;
}


/* SHIFT */


/* stroke */

nav.fill ul li a {
    position: relative;
}

nav.fill ul li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #ffa800;
    height: 1px;
}

nav.fill ul li a {
    transition: all 2s;
}

nav.fill ul li a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
}

nav.fill ul li a:hover {
    color: #000;
    z-index: 1;
}

nav.fill ul li a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
}

@-webkit-keyframes fill {
    0% {
        width: 0%;
        height: 1px;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    100% {
        width: 100%;
        height: 100%;
        background: #ffa800;
    }
}


/* navbar css end */


/* vedio background */

.about-me {
    position: relative;
}

.parallax {
    background-image: url('/static/images/parallax2.jpg');
    height: 500px;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

video {
    height: 100vh;
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.text-content {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vedioheading {
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 900;
    font-size: 42px;
    text-align: center;
}

.production_branding {
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7rem;
    font-family: 'Josefin Sans', sans-serif;
}


/* movie .gallery */

.gallery_text {
    padding: 50% 0%;
    text-align: center;
}

.gallery {
    height: 100vh;
}

.gallery_text:hover {
    backdrop-filter: brightness(0.3);
}

.movie_name {
    color: #fff;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
}

.movie_name {
    color: #fff;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 32px;
}

.movie_content {
    color: #fff;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
}

.movie_detail_link {
    color: #fff;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
}


/* pagination movie page  */

.page-link {
    background-color: transparent;
    color: #fff;
    border: none;
}

.page-link:hover {
    background: #ffa800;
}

.page-item.disabled .page-link {
    background-color: transparent;
    border: none;
}

.header {
    position: fixed;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: #fff;
}

.progress-container {
    width: 100%;
    height: 3px;
    background: #fff;
}

.progress-bar {
    height: 3px;
    background: #ffa800;
    width: 0%;
}


/* footer */

.social_link {
    color: #fff;
    font-size: 18px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 26px;
    border: none;
    outline: none;
    background: #ffa800;
    color: #090a0a;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 50px;
    transition: ease-in .5s;
}

#myBtn:hover {
    color: #ffa800;
    background: #090a0a;
}


/* Footer Social Icons  */

.fa-youtube {
    color: white;
    margin-left: 10px;
    font-size: 22px;
}

.fa-youtube:hover {
    color: red;
}

.fa-instagram {
    margin: 0px 10px 0px 10px;
    color: white;
    font-size: 19px;
}

.fa-instagram:hover {
    color: #D701FD;
}

.fa-linkedin {
    font-size: 20px;
    color: white;
    margin: 0px 3px 0px 3px;
}

.fa-linkedin:hover {
    color: #0039A1;
}