@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica/helvetica_light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica/helvetica.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica/helvetica_rounded_bold.otf') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'helvetica';
    src: url('../fonts/helvetica/helvetica_bold.ttf') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'helvetica', sans-serif;
    background-color: var(--black);
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li {
    padding: 0;
    margin: 0;
}

:root {
    --sky: #F2F9FF;
    --purple: #91728f;
    --black: #000;
    --white: #fff;
    --blue: #001899;
    --gray: #e6e8f5;
    --yellow: #FF9900;
    --red: #FF0000;
    --dark-gray: #747474;
    --gray-c8: #c8c8c8;
    --font-light: 300;
    --font-reqular: 400;
    --font-rounded: 600;
    --font-bold: 700;

}

.pb_50 {
    padding-bottom: 50px;
}

.pb_100 {
    padding-bottom: 100px;
}

.main_text h2 {
    color: var(--white);
    font-size: 70px;
    font-weight: var(--font-bold);
}

/* hero start */
.hero_sec {
    background: url("../images/header_hero.mp4") no-repeat;
    background-size: cover;
    background-position: top center;
    margin-bottom: 40px;
}

header {
    padding: 40px 80px;
}

header .navbar {
    border-radius: 15px;
    position: relative;
    width: 100%;
    z-index: 999;
    transform: translateY(40px);
    transition: transform 0.3s ease-in-out;

}

header .navbar .navbar-brand {
    width: 6%;
}

.hero_sec .hero_content h1 {
    font-size: 100px;
    font-weight: var(--font-bold);
    margin-bottom: 40px;
}

.hero_sec .hero_content .text {
    font-size: 26px;
}

.hero_sec .hero_content {
    padding: 190px 0;
    color: var(--white);
}

header .navbar-light .navbar-nav .nav-link.active,
header .navbar-light .navbar-nav .nav-link:hover {
    color: var(--yellow);
}

header .navbar-light .navbar-nav .nav-item:last-child .nav-link {
    background-color: var(--red);
    color: var(--white);
    border-radius: 8px;
    margin-left: 20px;
    border: 1px solid var(--red);
    transition: .5s all ease;
    text-transform: capitalize;
}

header .navbar-light .navbar-nav .nav-item:last-child .nav-link:focus-visible {
    border: none;
    box-shadow: none;
}

header .navbar-light .navbar-nav .nav-item:last-child:hover .nav-link {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--red);
}

header .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 8PX;
    padding-right: 8px;
}

#main_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
    transform: translateY(0);
}

.video_background {
    top: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

/* hero end */

/* awards start */
.award_sec {
    padding-top: 100vh;
}

.award_sec .award_img {
    /* border: 0.5px solid #ffffff;
    box-shadow: 2px 2px 4px 0px #fdfdfd40; */
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    border-radius: 10px;
}


.award_sec .award_text {
    color: var(--gray-c8);
    font-size: 20px;
    font-weight: var(--font-light);
    margin-top: 50px;
    text-align: center;
}

/* awards end */

/* commercial start */
.commercial_sec img {
    height: 280px;
    object-fit: fill;
    width: 100%;
}

/* commercial end */

/* music start */
/* music end */
/* films start */
.films_sec .films_content .films_img {
    height: 180px;
    padding-bottom: 15px;
    object-fit: fill;
    width: 100%;
}

.films_sec .films_content .films_text {
    color: var(--white);
    font-size: 18px;
    font-weight: var(--font-light);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* films end */

/* narrative start */
.narrative_sec {
    background-color: var(--black);
    padding: 60px 0 120px;
    text-align: center;
}

.narrative_sec .narrative_content .narrative_svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.narrative_sec .narrative_content .narrative_svg svg {
    width: 120px;
    height: 120px;
}

.narrative_sec .narrative_content .narrative_svg svg path {
    fill: var(--white);
}

.narrative_sec .narrative_content .title {
    color: var(--white);
    padding: 30px 0;
    font-weight: var(--font-bold);
    font-size: 40px;
}

.narrative_sec .narrative_content .text {
    color: var(--dark-gray);
    max-width: 100%;
    width: 350px;
    text-align: center;
    display: block;
    margin: 0 auto;
    font-size: 22px;
    font-weight: var(--font-light);
}

/* narrative end */

/* footer start */
footer {
    background: url("../images/footer.jpg") no-repeat;
    background-size: cover;
    background-position: right;
    padding-top: 80px;
}

footer .contact_menu h3,
footer .enquiries_menu h3 {
    color: var(--white);
    font-weight: var(--font-bold);
    font-size: 50px;
    padding-bottom: 50px;
}

footer .contact_menu .contact_link {
    color: var(--white);
    font-size: 28px;
    padding-top: 7px;
    display: block;
    transition: .5s all ease;
}

footer .contact_menu .contact_link:hover {
    color: var(--red);
}

footer .enquiries_menu form .input-group .input-group-text,
footer .enquiries_menu form .input-group .form-control {
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
    color: var(--white);
    box-shadow: none;
}

footer .enquiries_menu form .input-group .form-control::placeholder {
    color: var(--white);
}

footer .enquiries_menu form .input-group {
    height: 45px;
    border: 1px solid var(--white);
}

footer .enquiries_menu form button {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    border-radius: 0px;
    height: 45px;
    font-size: 20px;
}

footer .enquiries_menu form button:hover,
footer .enquiries_menu form button:active,
footer .enquiries_menu form button:focus {
    background-color: var(--red);
    border-color: var(--red);
    box-shadow: none;
}

footer .social_icon {
    gap: 50px;
    padding-top: 70px;
}

footer .social_icon li svg {
    width: 30px;
}

footer .social_icon li svg path {
    transition: .5s all ease;
}

footer .social_icon li svg:hover path {
    fill: var(--red);
}

footer .copyright {
    color: #b3b3b3;
    font-size: 18px;
    padding: 40px 0 15px;
}

/* footer end */


/*  X-Large devices (large desktops) */
@media (max-width: 1399.98px) {
    .main_text h2 {
        font-size: 55px;
    }

    header {
        padding: 0px 30px;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 4PX;
        padding-right: 4px;
    }

    .hero_sec .hero_content {
        padding: 170px 0;
    }

    .hero_sec .hero_content h1 {
        font-size: 80px;
    }

    #main_header {
        transform: translateY(40px);
    }

    .hero_sec .hero_content .text {
        font-size: 24px;
    }

    .video_background {
        height: 600px;
    }

    .award_sec {
        padding-top: 650px;
    }

    .award_sec .award_img {
        height: 130px;
    }

    .award_sec .award_text {
        font-size: 18px;
    }

    .films_sec .films_content .films_img {
        height: 150px;
    }

    .films_sec .films_content .films_text {
        font-size: 17px;
    }

    .narrative_sec {
        padding: 40px 0 80px;
    }

    .narrative_sec .narrative_content .narrative_svg svg {
        width: 120px;
        height: 120px;
    }

    .narrative_sec .narrative_content .title {
        font-size: 35px;
    }

    .narrative_sec .narrative_content .text {
        font-size: 18px;
        width: 280px;
    }

    footer {
        padding-top: 70px;
    }

    footer .contact_menu h3,
    footer .enquiries_menu h3 {
        font-size: 40px;
    }

    footer .contact_menu .contact_link {
        font-size: 26px;
    }

    footer .social_icon {
        padding-top: 50px;
    }

    footer .copyright {
        padding: 30px 0 15px;
    }
}

/* Large devices (desktops) */
@media (max-width:1199.98px) {
    .pb_50 {
        padding-bottom: 40px;
    }

    .pb_100 {
        padding-bottom: 80px;
    }

    .main_text h2 {
        font-size: 50px;
    }

    header {
        padding: 10px 20px;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 4PX;
        padding-right: 4px;
        font-size: 13px;
    }

    #main_header {
        transform: translateY(30px);
    }

    header .navbar .navbar-brand {
        width: 8%;
    }

    header .navbar {
        border-radius: 10px;
    }

    .hero_sec .hero_content h1 {
        font-size: 60px;
    }

    .hero_sec .hero_content .text {
        font-size: 22px;
    }

    .hero_sec .hero_content {
        padding: 130px 0;
    }

    header .navbar-light .navbar-nav .nav-item:last-child .nav-link {
        margin-left: 5px;
    }

    .video_background {
        height: 400px;
    }

    .award_sec {
        padding-top: 450px;
    }

    .award_sec .award_img {
        height: 100%;
    }

    .award_sec .award_text {
        font-size: 16px;
    }

    .films_sec .films_content .films_img {
        height: 130px;
    }

    .films_sec .films_content .films_text {
        font-size: 16px;
    }

    .narrative_sec .narrative_content .narrative_svg svg {
        width: 100px;
        height: 100px;
    }

    .narrative_sec .narrative_content .title {
        font-size: 26px;
    }

    .narrative_sec .narrative_content .text {
        font-size: 18px;
        width: 210px;
    }

    footer {
        padding-top: 50px;
    }

    footer .contact_menu h3,
    footer .enquiries_menu h3 {
        font-size: 38px;
    }

    footer .contact_menu .contact_link {
        font-size: 24px;
    }

}

/*  Medium devices (tablets) */
@media (max-width: 991.98px) {
    .pb_50 {
        padding-bottom: 30px;
    }

    .pb_100 {
        padding-bottom: 80px;
    }

    .main_text h2 {
        font-size: 40px;
    }

    header .navbar .navbar-brand {
        width: 10%;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 10PX;
        padding-right: 10px;
        font-size: 14px;
    }

    header .navbar-light .navbar-nav .nav-item {
        text-align: center;
    }

    header .navbar-light .navbar-nav .nav-item:last-child .nav-link {
        display: inline-block;
        margin: 10px auto 0;
    }

    header .navbar-light .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23FF0000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
    }

    header .navbar-light .navbar-toggler:focus {
        box-shadow: none;
    }

    header .navbar-light .navbar-toggler {
        border-color: transparent;
        padding: 0;
    }

    .hero_sec .hero_content h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .hero_sec .hero_content {
        padding: 100px 0;
    }

    .hero_sec .hero_content .text {
        font-size: 20px;
    }

    .navbar-light .navbar-nav .nav-link {
        text-align: center;
    }

    .video_background {
        height: 350px;
    }

    .award_sec {
        padding-top: 400px;
    }

    .award_sec .award_text {
        margin-top: 30px;
        font-size: 12px;
    }

    .award_sec .award_img {
        height: 100%;
    }

    .narrative_sec {
        padding: 30px 0 60px;
    }

    .narrative_sec .narrative_content .text {
        width: 300px;
    }

    footer .contact_menu h3,
    footer .enquiries_menu h3 {
        font-size: 36px;
    }

    footer .contact_menu .contact_link {
        font-size: 22px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 767.98px) {
    .pb_50 {
        padding-bottom: 30px;
    }

    .pb_100 {
        padding-bottom: 60px;
    }

    header {
        padding: 10px 10px;
    }

    #main_header {
        transform: translateY(20px);
    }

    header .navbar .navbar-brand {
        width: 12%;
    }

    .hero_sec .hero_content h1 {
        font-size: 35px;
        margin: 0px 10px 20px;
    }

    .hero_sec .hero_content {
        padding: 70px 0px;
    }

    .hero_sec .hero_content .text {
        font-size: 18px;
        padding: 0px 10px;
    }

    .main_text h2 {
        font-size: 35px;
    }

    .video_background {
        height: 350px;
    }

    .award_sec {
        padding-top: 300px;
    }

    .award_sec .award_text {
        margin-top: 30px;
        font-size: 11px;
    }

    .award_sec .award_gallery {
        gap: 15px;
    }

    .films_sec .films_content .films_img {
        padding-bottom: 10px;
    }

    .films_sec .films_content .films_text {
        font-size: 14px;
    }

    .narrative_sec .narrative_content .narrative_svg svg {
        width: 80px;
        height: 80px;
    }

    .narrative_sec .narrative_content .title {
        padding: 20px 0;
    }
}

/*  X-Small devices (portrait phones)  */
@media (max-width: 575.98px) {
    .main_text h2 {
        font-size: 26px;
    }

    header .navbar .navbar-brand {
        width: 16%;
    }

    .video_background {
        height: 300px;
    }

    .award_sec {
        padding-top: 280px;
    }

    .award_sec .award_img {
        height: 100%;
        width: 85%;
        margin: 0 auto;
    }

    .films_sec .films_content .films_img {
        height: 180px;
    }

    footer {
        padding-top: 45px;
    }

    footer .contact_menu {
        padding-bottom: 30px;
    }

    footer .contact_menu .contact_link {
        padding-top: 0px;
        font-size: 20px;
    }

    footer .contact_menu h3,
    footer .enquiries_menu h3 {
        font-size: 30px;
        padding-bottom: 20px;
    }

    footer .social_icon {
        padding-top: 35px;
    }
}