/*=======================================
            Page Banner
========================================*/

.page-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;

    @media (min-width: 1920px) {
        height: 100%;
        overflow: hidden;
    }

    @media (max-width: 1000px) {
        height: 800px;
        overflow: hidden;
    }

    @media (max-width: 450px) {
        height: 500px;
    }

    .bg-loop {
        height: 100%;
        width: auto;
        position: relative;

        /* @media (min-width: 1920px) {
            height: 100%;
            width: auto;
            position: relative;
        }

        @media (max-width: 1000px) {
            height: 100%;
            width: auto;
            position: relative;
        } */

        video {
            /* width: 100%;
            height: auto; */

            height: 110%;
            width: auto;
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -45%);

            /* @media (min-width: 1920px) {
                height: 110%;
                width: auto;
                position: absolute;
                top: 45%;
                left: 50%;
                transform: translate(-50%, -45%);
            }

            @media (max-width: 1000px) {
                height: 110%;
                width: auto;
                position: absolute;
                top: 45%;
                left: 50%;
                transform: translate(-50%, -45%);
            } */

        }

    }

    .inner {
        position: absolute;
        bottom: 0;
        z-index: 2;
        left: 0;
        width: 100%;
        padding-bottom: 30px;

        .contents {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        h1 {
            color: #fff;
            font-size: 120px;
            line-height: 1;
            margin-bottom: -10px;

            @media (max-width: 1200px) {
                font-size: 80px;
            }

            @media (max-width: 450px) {
                font-size: 60px;
            }

        }

        .play-button {
            width: 75px;
            height: 75px;
            cursor: pointer;

            @media (max-width: 450px) {
                width: 50px;
                height: 50px;
            }

        }

    }

}

/* Spacer */

.spacer {
    display: block;
    /* aspect-ratio: 16/9; */
    height: 100vh;
    margin-top: calc(-133px);
    pointer-events: none;
    position: relative;
    z-index: -10;

    @media (min-width: 1920px) {
        height: 100vh;
        aspect-ratio: auto;
    }

    @media (max-width: 1000px) {
        height: 800px;
        aspect-ratio: auto;
    }

    @media (max-width: 450px) {
        height: 500px;
    }

}

.admin-bar .spacer {
    margin-top: calc(-133px - 32px);

    @media (max-width: 1000px) {
        margin-top: calc(-133px);
    }

}






/*=======================================
            Banner Video Popup
========================================*/

.banner-video-popup {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    z-index: 9999999;
    right: -100vw;
    transition: all 0.5s ease-in-out;

    &.visible {
        right: 0;
    }

    .container {
        height: 100%;
    }

    .contents {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;

        .video-wrap {
            width: 100%;
            position: relative;

            .close {
                color: #fff;
                text-align: right;
                margin-bottom: 30px;
                font-size: 14px;
                line-height: 1;
                font-weight: 500;
                cursor: pointer;
            }

            .title {
                color: #fff;
                font-size: 50px;
                line-height: 1;
                margin-bottom: 20px;

                @media (max-width: 600px) {
                    font-size: 40px;
                }

                @media (max-width: 450px) {
                    font-size: 30px;
                    letter-spacing: normal;
                }

            }

            video {
                width: 100%;
                height: auto;
            }

            .video-wrap {

                iframe {
                    width: 100% !important;
                    height: auto !important;
                    aspect-ratio: 16/9;
                }

            }

        }

    }

}







/*=======================================
            Accordion
========================================*/

.accordion {
    background-color: #fff;

    h2 {
        font-size: 90px;
        line-height: 1.1;
        margin-bottom: 90px;

        @media (max-width: 800px) {
            font-size: 80px;
        }

        @media (max-width: 600px) {
            font-size: 60px;
            margin-bottom: 50px;
        }

    }

    .accordion-item {
        border-bottom: 1px solid #000;

        &.open {

            .top .title {
                opacity: 1;
            }

            svg line:last-of-type {
                display: none;
            }

        }

        .top {
            align-items: center;
            padding: 10px 0 0;
            cursor: pointer;

            &:hover {
                .title {
                    opacity: 1;
                }
            }

            .title {
                font-size: 120px;
                line-height: 1;
                width: calc(100% - 70px);
                padding-right: 50px;
                opacity: 0.5;
                transition: all 0.3s ease-in-out;

                @media (max-width: 1000px) {
                    font-size: 80px;
                }

                @media (max-width: 800px) {
                    font-size: 70px;
                    padding-right: 20px;
                }

                @media (max-width: 600px) {
                    font-size: 50px;
                }

                @media (max-width: 450px) {
                    font-size: 40px;
                }

            }

            svg {
                width: 70px;
                height: auto;

                @media (max-width: 1000px) {
                    width: 50px;
                    margin-top: -9px;
                }

                @media (max-width: 650px) {
                    width: 40px;
                }

                @media (max-width: 450px) {
                    width: 25px;
                }

            }

        }

        .main {
            display: none;

            .inner {
                justify-content: space-between;
                align-items: unset;
                padding: 20px 0 60px;

                .left {
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    padding: 40px 0;
                    width: calc(50% - 50px);

                    @media (max-width: 1300px) {
                        padding: 10px 0 40px;
                    }

                    @media (max-width: 1000px) {
                        width: 100%;
                    }

                    .text-container {
                        font-size: 22px;
                        line-height: 1.2;
                        margin-bottom: 30px;

                        @media (max-width: 1300px) {
                            font-size: 20px;
                        }

                        @media (max-width: 600px) {
                            font-size: 18px;
                        }

                    }

                    .button {
                        width: fit-content;
                    }

                }

                .right {
                    width: calc(50% - 50px);

                    @media (max-width: 1000px) {
                        width: 100%;
                    }

                }

            }

        }

    }

}






/*=======================================
            Logo Carousel
========================================*/

.logo-carousel {
    padding: 30px 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    .contents {
        justify-content: space-between;
        align-items: center;

        &.has-desc {
            padding-top: 30px;

            .top {
                width: 100%;
                padding: 0 40px;

                @media (max-width: 600px) {
                    padding: 0 30px;
                }

            }

            .title {
                width: 50%;
                padding-right: 100px;

                @media (max-width: 1000px) {
                    width: 100%;
                }

                h2 {
                    font-size: 60px;
                    letter-spacing: -0.9px;

                    @media (max-width: 600px) {
                        font-size: 40px;
                    }

                }

            }

            .desc {
                width: 50%;
                font-size: 22px;
                line-height: 1.2;
                max-width: 590px;

                @media (max-width: 1000px) {
                    width: 100%;
                }

                @media (max-width: 600px) {
                    font-size: 18px;
                }

            }

            .slider {
                width: 100%;
                margin-top: 30px;

                @media (max-width: 600px) {
                    margin-top: 0;
                }

            }

        }

        .top {
            width: 200px;
            padding-left: 40px;

            @media (max-width: 600px) {
                padding-left: 30px;
            }

        }

        .title {

            h2 {
                font-size: 28px;
                line-height: 1;
                color: #000;
                letter-spacing: normal;

                @media (max-width: 1000px) {
                    margin-bottom: 10px;
                    font-size: 32px;
                }

            }

            @media (max-width: 1000px) {
                width: 100%;
            }

        }

        .slider {
            height: 135px;
            position: relative;
            width: calc(100% - 200px);
            overflow: hidden;

            @media (max-width: 1000px) {
                width: 100%;
            }

            @media (max-width: 768px) {
                height: 150px;
            }

            .slide-track {
                width: max-content;
                display: flex;
                justify-content: flex-start;
                animation: scroll 25s linear infinite;

                @media (max-width: 600px) {
                    animation: scroll 10s linear infinite;
                }

            }

            .slide {
                width: auto;
                height: 135px;
                transition: 0.5s;
                cursor: pointer;

                img {
                    height: 100%;
                    width: auto;
                }

                @media (max-width: 768px) {
                    height: 150px;

                    img {
                        width: auto;
                        height: 100%;
                    }

                }

            }

        }

    }

}

@keyframes scroll {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(-25%);
    }
}







/*=======================================
            Projects Block
========================================*/

.projects-block {
    background-color: #000;
    color: #fff;

    .top {

        h2 {
            font-size: 120px;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #fff;

            @media (max-width: 1000px) {
                font-size: 100px;
            }

            @media (max-width: 600px) {
                font-size: 80px;
            }

            @media (max-width: 450px) {
                font-size: 60px;
            }

        }

        .intro {
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 150px;

            @media (max-width: 1300px) {
                margin-bottom: 100px;
            }

            @media (max-width: 1000px) {
                flex-direction: column;
                margin-bottom: 70px;
            }

            .desc {
                max-width: 650px;
                color: #fff;
                font-size: 22px;
                line-height: 1.2;

                @media (max-width: 1000px) {
                    margin-bottom: 30px;
                }

                @media (max-width: 600px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

            }

        }

    }

    .featured-project {
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;

        @media (max-width: 1300px) {
            flex-direction: column-reverse;
        }

        .meta {
            width: calc(100% - 950px);
            padding-right: 30px;

            @media (min-width: 1500px) {
                width: calc(100% - 1080px);
            }

            @media (max-width: 1300px) {
                width: 100%;
                padding: 20px 0 0 0;
            }

            h3 {
                font-size: 60px;
                line-height: 1.1;
                margin-bottom: 30px;
                letter-spacing: -0.9px;

                @media (max-width: 1300px) {
                    margin-bottom: 15px;
                }

                @media (max-width: 800px) {
                    font-size: 50px;
                }

                @media (max-width: 450px) {
                    font-size: 40px;
                }

            }

            .desc {
                font-size: 22px;
                line-height: 1.2;
                margin-bottom: 55px;

                @media (max-width: 1300px) {
                    max-width: 800px;
                    margin-bottom: 30px;
                }

                @media (max-width: 800px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

            }

        }

        .media {
            width: 950px;
            position: relative;

            @media (min-width: 1500px) {
                width: 1080px;
            }

            @media (max-width: 1300px) {
                width: 100%;
            }

            video {
                width: 100%;
                height: auto;
                aspect-ratio: 16/9;
            }

        }

    }

    .projects-grid {
        margin: 0 -14px;

        @media (max-width: 1000px) {
            margin: 0 -10px;
        }

        @media (max-width: 800px) {
            margin: 0;
        }

        .project-card {
            width: calc(50% - 28px);
            margin: 0 14px 18px;
            position: relative;

            @media (max-width: 1300px) {
                margin: 0 14px 28px;
            }

            @media (max-width: 1000px) {
                margin: 0 10px 20px;
                width: calc(50% - 20px);
            }

            @media (max-width: 800px) {
                margin: 0 0 20px;
                width: 100%;
            }

            &:hover {

                .thumbnail {
                    opacity: 0;
                }

            }

            &.no-loop {

                .thumbnail {
                    position: static;
                    display: block;
                    opacity: 1;
                }

            }

            video {
                width: 100%;
                height: auto;
                margin-bottom: 1px;
                display: block;
            }

            .thumbnail {
                position: absolute;
                inset: 0;
                z-index: 1;
                transition: all 0.3s ease-in-out;
                height: 100%;
            }

            .heading {
                position: absolute;
                bottom: 7px;
                left: 12px;
                width: 100%;
                font-size: 36px;
                line-height: 1.2;
                z-index: 2;
                letter-spacing: normal;

                @media (max-width: 1000px) {
                    font-size: 30px;
                }

            }

        }

    }

}







/*=======================================
            Stats Block
========================================*/

.stats {
    background-color: #000;

    @media (max-width: 1680px) {

        .container {
            padding: 0;
        }

    }

    .contents {
        flex-direction: column;
        align-items: flex-end;
    }

    .stat-row {
        text-align: right;
        width: 100%;
        margin-bottom: 15px;
        padding: 30px 35px 15px;
        background: linear-gradient(90deg, #000 0%, #8A2715 30.77%, #EA682D 71.15%, #F7E14C 100%);

        &:last-of-type {
            margin-bottom: 0;
        }

        &.small {
            max-width: 670px;
        }

        &.medium {
            max-width: 900px;
        }

        &.large {
            max-width: 1240px;
        }

        span {
            font-size: 150px;
            font-family: "Bebas Neue";
            font-weight: 400;
            font-style: normal;
            line-height: 1;
            text-transform: uppercase;

            &.text {
                padding-left: 20px;
            }

        }

        @media (max-width: 1200px) {

            &.small {
                max-width: 60%;
            }

            &.medium {
                max-width: 75%;
            }

            &.large {
                max-width: 90%;
            }

            span {
                font-size: 120px;
            }

        }

        @media (max-width: 1000px) {

            span {
                font-size: 100px;
            }

        }

        @media (max-width: 800px) {

            &.small {
                max-width: 70%;
            }

            &.medium {
                max-width: 85%;
            }

            &.large {
                max-width: 100%;
            }

            span {
                font-size: 80px;

                &.text {
                    padding-left: 10px;
                }

            }

        }

        @media (max-width: 600px) {
            padding: 20px 35px 10px;
            margin-bottom: 10px;

            span {
                font-size: 60px;
            }

        }

        @media (max-width: 500px) {
            padding: 17px 30px 10px;

            &.small {
                max-width: 80%;
            }

            &.medium {
                max-width: 90%;
            }

            span {
                font-size: 50px;

                &.text {
                    padding-left: 5px;
                }

            }

        }

    }

}

.stats-alt {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    .contents {
        justify-content: space-between;
        align-items: unset;

        @media (max-width: 600px) {
            justify-content: center;
        }


        .stat-col {
            width: calc(100% / 3);
            text-align: center;
            padding: 40px 0;

            @media (max-width: 600px) {
                width: 100%;
                max-width: 300px;
            }

            &:nth-child(2) {
                border-left: 1px solid #000;
                border-right: 1px solid #000;

                @media (max-width: 600px) {
                    border-left: none;
                    border-right: none;
                    border-top: 1px solid #000;
                    border-bottom: 1px solid #000;
                }

            }

            .val,
            .val-after {
                font-size: 200px;
                line-height: 1;
                font-family: "Bebas Neue";

                @media (max-width: 1400px) {
                    font-size: 170px;
                }

                @media (max-width: 1200px) {
                    font-size: 140px;
                }

                @media (max-width: 1000px) {
                    font-size: 100px;
                }

            }

            .text {
                font-size: 50px;
                line-height: 1;
                padding-left: 15px;
                position: relative;
                bottom: 2px;

                @media (max-width: 1400px) {
                    font-size: 40px;
                }

                @media (max-width: 1200px) {
                    font-size: 30px;
                    display: block;
                    padding-left: 0;
                }

                @media (max-width: 1000px) {
                    font-size: 24px;
                }

            }

        }

    }

}







/*=======================================
            Team Block
========================================*/

.team-block {
    background-color: #fff;

    .intro {
        align-items: flex-start;
        padding-bottom: 80px;

        @media (max-width: 600px) {
            padding-bottom: 50px;
        }

        .heading {
            width: calc(50%);
            font-size: 90px;
            line-height: 1;
            padding-right: 50px;

            @media (max-width: 1000px) {
                width: 100%;
            }

            @media (max-width: 800px) {
                font-size: 70px;
            }

            @media (max-width: 600px) {
                font-size: 50px;
            }

        }

        .right {
            width: calc(50%);
            padding-top: 15px;

            @media (max-width: 1000px) {
                width: 100%;
            }

            .text {
                font-size: 22px;
                line-height: 1.2;

                @media (max-width: 600px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

            }

            .button {
                margin-top: 30px;
            }

        }

    }

    .grid {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -8px;

        .team-card {
            width: calc(100% / 6 - 16px);
            margin: 0 8px 50px;
            border-bottom: 1px solid #000;
            cursor: pointer;
            position: relative;

            @media (max-width: 1300px) {
                width: calc(100% / 5 - 16px);
            }

            @media (max-width: 1100px) {
                width: calc(100% / 4 - 16px);
            }

            @media (max-width: 900px) {
                width: calc(100% / 3 - 16px);
            }

            @media (max-width: 700px) {
                width: calc(100% / 2 - 16px);
            }

            @media (max-width: 450px) {
                width: calc(100% - 16px);
                margin: 0 8px 30px;
            }

            .image {
                overflow: hidden;

                img {
                    transition: all 0.3s ease-in-out;
                }

            }

            &:hover {

                .image img {
                    transform: scale(1.05);
                }

            }

            .meta {
                padding: 20px 0;

                .heading {
                    font-size: 28px;
                    line-height: 1.2;
                    letter-spacing: normal;

                    @media (max-width: 500px) {
                        font-size: 24px;
                    }

                }

                .role {
                    font-size: 16px;
                    line-height: 1.2;
                    color: var(--grey);
                    margin-bottom: 10px;
                }

                .readmore {
                    font-size: 14px;
                    line-height: 1.1;
                    font-weight: 500;

                    &.link {

                        span {
                            position: relative;
                            top: -1px;
                        }
                    }

                }

            }

        }

    }

}







/*=======================================
            Team Popups
========================================*/

#popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.47);
    backdrop-filter: blur(3.25px);
}

.team-popup {
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background-color: #000;
    z-index: 99999999;
    padding: 40px 75px;
    color: #fff;
    transition: all 0.5s ease-in-out;

    &.visible {
        right: 0;
    }

    @media (max-width: 1000px) {
        width: 75vw;
        right: -75vw;
        padding: 40px;
    }

    @media (max-width: 600px) {
        width: 100vw;
        right: -100vw;
    }

    .inner {
        height: 100%;
        overflow-y: auto;
    }

    .close {
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        cursor: pointer;
        position: absolute;
        top: 40px;
        right: 120px;

        @media (max-width: 1000px) {
            right: 40px;
        }

    }

    .main {
        padding-top: 60px;

        .image {
            max-width: 350px;
            margin-bottom: 30px;
        }

        .meta {

            .heading {
                font-size: 28px;
                line-height: 1.1;
                letter-spacing: normal;
            }

            .role {
                font-size: 16px;
                line-height: 1.2;
                color: var(--grey);
            }

        }

        .bio {
            margin-top: 40px;
            font-size: 22px;
            line-height: 1.2;

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

        }

    }

}







/*=======================================
            Testimonials
========================================*/

.testimonials {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media (max-width: 1000px) {
        padding: 100px 0;
    }

    @media (max-width: 600px) {
        padding: 70px 0;
    }

    @media (max-width: 450px) {
        padding: 50px 0;
    }

    .contents {
        max-width: 900px;
        margin: 0 auto;

        .test {
            text-align: center;
            color: #fff;

            .logo {
                margin: 0 auto 15px;
                width: auto;
            }

            .company {
                letter-spacing: normal;
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 15px;

                @media (max-width: 600px) {
                    font-size: 24px;
                }

            }

            .quote {
                font-size: 60px;
                line-height: 1.1;
                letter-spacing: -0.9px;
                padding: 0 50px;

                @media (max-width: 1000px) {
                    font-size: 50px;
                }

                @media (max-width: 800px) {
                    font-size: 40px;
                    padding: 0;
                }

                @media (max-width: 600px) {
                    font-size: 35px;
                }

                @media (max-width: 450px) {
                    font-size: 30px;
                }

                &.small {
                    font-size: 40px;

                    @media (max-width: 1000px) {
                        font-size: 35px;
                    }

                    @media (max-width: 800px) {
                        font-size: 30px;
                    }

                    @media (max-width: 600px) {
                        font-size: 24px;
                    }

                    @media (max-width: 450px) {
                        font-size: 20px;
                    }

                }

            }

            .name {
                letter-spacing: normal;
                font-size: 28px;
                line-height: 1.2;
                margin-top: 35px;

                @media (max-width: 600px) {
                    font-size: 24px;
                }

            }

        }

        .arrows {
            justify-content: center;
            align-items: center;
            margin-top: 40px;

            .arrow {
                width: 33px;
                height: auto;
                margin: 0 20px;
                cursor: pointer;

                &.next {
                    transform: rotate(180deg);
                }

            }

        }

    }

}







/*=======================================
            Title & Text
========================================*/

.title-text {
    background-color: #fff;

    .title {
        max-width: 835px;

        h2 {
            font-size: 90px;
            line-height: 1;
            margin-bottom: 100px;

            @media (max-width: 1200px) {
                font-size: 70px;
            }

            @media (max-width: 1000px) {
                margin-bottom: 50px;
            }

            @media (max-width: 600px) {
                font-size: 60px;
                margin-bottom: 30px;
            }

            @media (max-width: 450px) {
                font-size: 50px;
            }

        }

    }

    .text-container {
        max-width: 960px;
        margin: 0 0 0 auto;
        font-size: 30px;
        line-height: 1.2;

        @media (max-width: 1200px) {
            font-size: 26px;
        }

        @media (max-width: 600px) {
            font-size: 20px;
        }

        @media (max-width: 450px) {
            font-size: 18px;
        }

        &.small {
            font-size: 22px;

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

        }

    }

}







/*=======================================
            CTA Banner
========================================*/

.cta-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -1px;

    .contents {
        text-align: center;

        .heading {
            font-size: 90px;
            line-height: 1.1;
            margin-bottom: 30px;

            @media (max-width: 1000px) {
                font-size: 70px;
                margin-bottom: 30px;
            }

            @media (max-width: 600px) {
                font-size: 60px;
            }

            @media (max-width: 450px) {
                font-size: 50px;
            }

        }

    }

}







/*=======================================
            Projects Categorized
========================================*/

.projects-block-cat {
    background-color: #000;
    color: #fff;

    .top {

        h2 {
            font-size: 120px;
            line-height: 1.1;
            margin-bottom: 25px;
            color: #fff;

            @media (max-width: 1000px) {
                font-size: 100px;
            }

            @media (max-width: 600px) {
                font-size: 80px;
            }

            @media (max-width: 450px) {
                font-size: 60px;
            }

        }

        .intro {
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 150px;

            @media (max-width: 1300px) {
                margin-bottom: 100px;
            }

            @media (max-width: 1000px) {
                flex-direction: column;
                margin-bottom: 70px;
            }

            .desc {
                max-width: 650px;
                color: #fff;
                font-size: 22px;
                line-height: 1.2;

                @media (max-width: 1000px) {
                    margin-bottom: 30px;
                }

                @media (max-width: 600px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

            }

        }

    }

    .featured-project {
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;

        @media (max-width: 1300px) {
            flex-direction: column;
        }

        .meta {
            width: calc(100% - 950px);
            padding-right: 30px;

            @media (min-width: 1500px) {
                width: calc(100% - 1080px);
            }

            @media (max-width: 1300px) {
                width: 100%;
                padding: 0 0 30px 0;
            }

            h3 {
                font-size: 60px;
                line-height: 1.1;
                margin-bottom: 30px;
                letter-spacing: -0.9px;

                @media (max-width: 1300px) {
                    margin-bottom: 15px;
                }

                @media (max-width: 800px) {
                    font-size: 50px;
                }

                @media (max-width: 450px) {
                    font-size: 40px;
                }

            }

            .desc {
                font-size: 22px;
                line-height: 1.2;
                margin-bottom: 55px;

                @media (max-width: 1300px) {
                    max-width: 800px;
                    margin-bottom: 30px;
                }

                @media (max-width: 800px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

            }

        }

        .project-card {
            width: 950px;
            position: relative;

            @media (min-width: 1500px) {
                width: 1080px;
            }

            @media (max-width: 1300px) {
                width: 100%;
            }

            &:hover {

                .thumbnail {
                    opacity: 0;
                }

            }

            &.no-loop {

                .thumbnail {
                    position: static;
                    display: block;
                    opacity: 1;
                }

            }

            video {
                width: 100%;
                height: auto;
                margin-bottom: 1px;
                display: block;
            }

            .thumbnail {
                position: absolute;
                inset: 0;
                z-index: 1;
                transition: all 0.3s ease-in-out;
                height: 100%;
            }

            .heading {
                position: absolute;
                bottom: 7px;
                left: 12px;
                width: 100%;
                font-size: 36px;
                line-height: 1.2;
                z-index: 2;
                letter-spacing: normal;

                @media (max-width: 1000px) {
                    font-size: 30px;
                }

            }

        }

    }

    .projects-grid {
        margin: 0 -14px;

        @media (max-width: 1000px) {
            margin: 0 -10px;
        }

        @media (max-width: 800px) {
            margin: 0;
        }

        .project-card {
            width: calc(50% - 28px);
            margin: 0 14px 18px;
            position: relative;

            @media (max-width: 1300px) {
                margin: 0 14px 28px;
            }

            @media (max-width: 1000px) {
                margin: 0 10px 20px;
                width: calc(50% - 20px);
            }

            @media (max-width: 800px) {
                margin: 0 0 20px;
                width: 100%;
            }

            &:hover {

                .thumbnail {
                    opacity: 0;
                }

            }

            &.no-loop {

                .thumbnail {
                    position: static;
                    display: block;
                    opacity: 1;
                }

            }

            video {
                width: 100%;
                height: auto;
                margin-bottom: 1px;
                display: block;
            }

            .thumbnail {
                position: absolute;
                inset: 0;
                z-index: 1;
                transition: all 0.3s ease-in-out;
                height: 100%;
            }

            .heading {
                position: absolute;
                bottom: 7px;
                left: 12px;
                width: 100%;
                font-size: 36px;
                line-height: 1.2;
                z-index: 2;
                letter-spacing: normal;

                @media (max-width: 1000px) {
                    font-size: 30px;
                }

            }

        }

    }

}







/*=======================================
            Poster Carousel
========================================*/

.poster-carousel {
    background-color: #fff;

    @media (max-width: 1680px) {

        .container {
            padding: 0;
        }

        .heading,
        .arrows {
            padding: 0 40px;
        }

    }

    @media (max-width: 600px) {

        .heading,
        .arrows {
            padding: 0 30px;
        }

    }

    &.bg-black {
        background-color: #000;

        .heading {
            color: #fff;
        }

        .arrows .arrow svg path {
            stroke: #fff;
        }

    }

    .heading {
        font-size: 40px;
        margin-bottom: 30px;
        letter-spacing: -0.5px;

        @media (max-width: 450px) {
            font-size: 32px;
        }

    }

    .carousel {
        width: 100%;

        .slick-slide {
            margin: 0 8px;
            position: relative;
        }

    }

    .wrapper {
        position: relative;
    }

    .arrows {
        align-items: center;
        padding-top: 35px;

        @media (max-width: 600px) {
            position: absolute;
            width: 100%;
            top: calc(50% - 25px);
            padding: 0 10px;
        }

        .arrow {
            width: 35px;
            height: auto;
            cursor: pointer;

            @media (max-width: 600px) {
                width: 50px;
                height: 50px;
                border-radius: 100%;
                background-color: #fff;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;

                svg {
                    width: 30px;
                }

            }

            &.next {
                transform: rotate(180deg);
            }

            svg path {
                stroke: #000;
            }

        }

    }

}







/*=======================================
            Team Showcase
========================================*/

.team-showcase {
    background-color: #000;
    color: #fff;

    .intro {
        margin-bottom: 70px;

        .heading {
            font-size: 120px;
            line-height: 1;
            margin-bottom: 25px;

            @media (max-width: 1000px) {
                font-size: 100px;
            }

            @media (max-width: 800px) {
                font-size: 90px;
            }

            @media (max-width: 600px) {
                font-size: 80px;
            }

            @media (max-width: 450px) {
                font-size: 60px;
            }

        }

        p {
            font-size: 22px;
            line-height: 1.2;
            max-width: 650px;

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

        }

    }

    .grid {
        align-items: unset;
        margin: 0 -8px;

        .card {
            width: calc(50% - 16px);
            margin: 0 8px 35px;
            position: relative;

            @media (max-width: 800px) {
                width: calc(100% - 16px);
            }

            &:hover {

                .media .thumbnail {
                    opacity: 0;
                }

            }

            .media {
                position: relative;
                overflow: hidden;

                video {
                    display: block;
                    width: 100%;
                    height: auto;
                }

                .thumbnail {
                    position: absolute;
                    inset: 0;
                    z-index: 5;
                    transition: all 0.3s ease-in-out;
                    width: 100%;
                    height: 101%;
                }

            }

            .meta {
                padding-top: 10px;

                .heading {
                    font-size: 28px;
                    letter-spacing: normal;
                    line-height: 1.2;

                    @media (max-width: 450px) {
                        font-size: 24px;
                    }

                }

                .role {
                    font-size: 16px;
                    line-height: 1.2;
                    margin-bottom: 5px;

                    @media (max-width: 450px) {
                        font-size: 14px;
                    }

                }

                a {
                    font-size: 14px;
                    text-transform: uppercase;
                    line-height: 1.2;
                    color: #fff;
                    text-decoration: none;

                    svg {
                        display: inline-block;
                        width: 10px;
                        height: auto;
                        margin-left: 2px;
                    }

                }

            }

        }

    }

}







/*=======================================
            Image Gallery
========================================*/

.image-gallery {
    background-color: #fff;

    &.bg-black {
        background-color: #000;

        .intro {
            color: #fff;
        }

        .arrows .arrow svg path {
            stroke: #fff;
        }

    }

    .intro {
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 120px;

        @media (max-width: 800px) {
            margin-bottom: 50px;
        }

        .heading {
            width: 500px;
            font-size: 90px;
            line-height: 1.1;

            @media (max-width: 800px) {
                font-size: 80px;
                width: 100%;
            }

            @media (max-width: 600px) {
                font-size: 60px;
            }

            @media (max-width: 450px) {
                font-size: 50px;
            }

        }

        .desc {
            width: calc(100% - 500px);
            max-width: 750px;
            padding-left: 100px;
            font-size: 22px;
            line-height: 1.2;
            padding-top: 5px;

            @media (max-width: 1200px) {
                width: 100%;
                padding: 20px 0 0 0;
            }

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

            .link {
                margin-top: 30px;
            }

        }

    }

    .gallery-wrap {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
        overflow: hidden;

        @media (max-width: 1680px) {
            width: 100%;
            max-width: 100%;
            padding: 0 0 0 40px;
        }

        @media (max-width: 6000px) {
            padding: 0 0 0 30px;
        }

        &.slides-2 {

            .slick-list {
                padding: 0 10% 0 0 !important;

                @media (max-width: 500px) {
                    padding: 0 50px 0 0 !important;
                }

            }

        }

        .slick-list {
            padding: 0 25% 0 0 !important;

            @media (max-width: 1000px) {
                padding: 0 20% 0 0 !important;
            }

            @media (max-width: 700px) {
                padding: 0 15% 0 0 !important;
            }

            @media (max-width: 500px) {
                padding: 0 50px 0 0 !important;
            }

        }

        .slick-slide {
            margin-right: 16px;

            @media (max-width: 500px) {
                margin-right: 10px;
            }

        }

    }

    .arrows {
        align-items: center;
        padding-top: 35px;

        .arrow {
            width: 35px;
            height: auto;
            cursor: pointer;

            &.next {
                transform: rotate(180deg);
            }

            &.prev {
                opacity: 0;
                pointer-events: none;
            }

            svg path {
                stroke: #000;
            }

        }

    }

}

.lightbox .lb-nav a.lb-next {
    opacity: 1 !important;
}

.lightbox .lb-nav a.lb-prev {
    opacity: 1 !important;
}

.lightbox .lb-image {
    border: none !important;
}







/*=======================================
            Awards Block
========================================*/

.awards-block {
    background-color: #fff;

    .intro {
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 120px;

        @media (max-width: 800px) {
            margin-bottom: 50px;
        }

        .heading {
            width: 500px;
            font-size: 90px;
            line-height: 1.1;

            @media (max-width: 800px) {
                font-size: 80px;
                width: 100%;
            }

            @media (max-width: 600px) {
                font-size: 60px;
            }

            @media (max-width: 450px) {
                font-size: 50px;
            }

        }

        .desc {
            width: calc(100% - 500px);
            max-width: 750px;
            padding-left: 100px;
            font-size: 22px;
            line-height: 1.2;
            padding-top: 5px;

            @media (max-width: 1200px) {
                width: 100%;
                padding: 20px 0 0 0;
            }

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

        }

    }

    .gallery-wrap {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
        overflow: hidden;

        @media (max-width: 1680px) {
            width: 100%;
            max-width: 100%;
            padding: 0 0 0 40px;
        }

        @media (max-width: 6000px) {
            padding: 0 0 0 30px;
        }

        .slick-track {
            display: flex !important;
            margin: 0;
        }

        .slick-list {
            padding: 0 40px 0 0 !important;
        }

        .award-card {
            height: inherit !important;
            margin-right: 16px;
            border: 1px solid #000;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            @media (max-width: 500px) {
                margin-right: 10px;
            }

            .logo {
                aspect-ratio: 16/9;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;

                img {
                    max-width: 70%;
                    max-height: 70%;
                    width: auto;
                    height: auto;
                }

            }

            .meta {
                flex-grow: 1;
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                /* border-top: 1px solid #000; */

                .project {
                    font-size: 20px;
                    letter-spacing: 0.5px;
                    margin-bottom: 5px;
                }

                .award-name {
                    font-size: 16px;
                    line-height: 1.2;
                    margin-bottom: 20px;
                }

            }

        }

    }

    .arrows {
        align-items: center;
        padding-top: 35px;

        .arrow {
            width: 35px;
            height: auto;
            cursor: pointer;

            &.next {
                transform: rotate(180deg);
            }

            &.prev {
                opacity: 0;
                pointer-events: none;
            }

            svg path {
                stroke: #000;
            }

        }

    }

}







/*=======================================
            Games Block
========================================*/

.games-block {
    background-color: #fff;
    color: #000;

    .intro {
        margin-bottom: 90px;
        align-items: flex-start;

        @media (max-width: 1000px) {
            margin-bottom: 50px;
        }

        .left {
            width: calc(50%);
            padding-right: 100px;

            @media (max-width: 1000px) {
                width: 100%;
                padding: 0;

                .button {
                    display: none;
                }

            }

            h2 {
                font-size: 90px;
                line-height: 1;
                margin-bottom: 45px;

                @media (max-width: 1000px) {
                    margin-bottom: 30px;
                }

                @media (max-width: 800px) {
                    font-size: 80px;
                }

                @media (max-width: 600px) {
                    font-size: 60px;
                }

            }

        }

        .right {
            width: calc(50%);
            padding-top: 10px;

            @media (max-width: 1000px) {
                width: 100%;
                padding: 0;
            }

            h3 {
                font-size: 28px;
                letter-spacing: normal;
                margin-bottom: 20px;

                @media (max-width: 600px) {
                    font-size: 24px;
                }

            }

            p {
                font-size: 22px;
                line-height: 1.2;
                max-width: 650px;

                @media (max-width: 600px) {
                    font-size: 18px;
                }

            }

            .button {
                display: none;

                @media (max-width: 1000px) {
                    display: inline-block;
                    margin-top: 30px;
                }

            }

        }

    }

    .grid {
        align-items: unset;
        margin: 0 -8px;

        .card {
            width: calc(50% - 16px);
            margin: 0 8px 35px;
            position: relative;

            @media (max-width: 800px) {
                width: calc(100% - 16px);
            }

            &:hover {

                .media .thumbnail {
                    opacity: 0;
                }

            }

            .media {
                position: relative;
                overflow: hidden;

                video {
                    display: block;
                    width: 100%;
                    height: auto;
                }

                .thumbnail {
                    position: absolute;
                    inset: 0;
                    z-index: 5;
                    transition: all 0.3s ease-in-out;
                    width: 100%;
                    height: 101%;
                }

            }

            .meta {
                padding-top: 10px;

                .heading {
                    font-size: 28px;
                    letter-spacing: normal;
                    line-height: 1.2;
                    margin-bottom: 7px;

                    @media (max-width: 450px) {
                        font-size: 24px;
                    }

                }

                .role {
                    font-size: 16px;
                    line-height: 1.2;
                    margin-bottom: 10px;
                    color: #868686;

                    @media (max-width: 450px) {
                        font-size: 14px;
                    }

                }

                a {
                    font-size: 14px;
                    text-transform: uppercase;
                    line-height: 1.2;
                    color: #000;
                    text-decoration: none;

                    svg {
                        display: inline-block;
                        width: 10px;
                        height: auto;
                        margin-left: 2px;

                        path {
                            stroke: #000;
                        }

                    }

                }

            }

        }

    }

}







/*=======================================
            Pictures Block
========================================*/

.pictures-block {
    background-color: #000;
    color: #fff;

    .intro {
        margin-bottom: 90px;
        align-items: flex-start;

        @media (max-width: 1000px) {
            margin-bottom: 50px;
        }

        .left {
            width: calc(50%);
            padding-right: 100px;

            @media (max-width: 1000px) {
                width: 100%;
                padding: 0;

                .button {
                    display: none;
                }

            }

            h2 {
                font-size: 90px;
                line-height: 1;
                margin-bottom: 45px;

                @media (max-width: 1000px) {
                    margin-bottom: 30px;
                }

                @media (max-width: 800px) {
                    font-size: 80px;
                }

                @media (max-width: 600px) {
                    font-size: 60px;
                }

            }

        }

        .right {
            width: calc(50%);
            padding-top: 10px;

            @media (max-width: 1000px) {
                width: 100%;
                padding: 0;
            }

            h3 {
                font-size: 28px;
                letter-spacing: normal;
                margin-bottom: 20px;

                @media (max-width: 600px) {
                    font-size: 24px;
                }

            }

            p {
                font-size: 22px;
                line-height: 1.2;
                max-width: 650px;

                @media (max-width: 600px) {
                    font-size: 18px;
                }

            }

            .button {
                display: none;

                @media (max-width: 1000px) {
                    display: inline-block;
                    margin-top: 30px;
                }

            }

        }

    }

    .grid {
        align-items: unset;
        margin: 0 -10px;

        .card {
            width: calc(25% - 20px);
            margin: 0 10px 35px;
            position: relative;

            @media (max-width: 1000px) {
                width: calc(50% - 20px);
            }

            @media (max-width: 500px) {
                width: calc(100% - 20px);
            }

            .meta {
                padding-top: 20px;

                .heading {
                    font-size: 28px;
                    letter-spacing: normal;
                    line-height: 1.2;
                    margin-bottom: 7px;

                    @media (max-width: 450px) {
                        font-size: 24px;
                    }

                }

                .role {
                    font-size: 16px;
                    line-height: 1.2;
                    margin-bottom: 10px;
                    color: #868686;

                    @media (max-width: 450px) {
                        font-size: 14px;
                    }

                }

                a {
                    font-size: 14px;
                    text-transform: uppercase;
                    line-height: 1.2;
                    color: #fff;
                    text-decoration: none;

                    svg {
                        display: inline-block;
                        width: 10px;
                        height: auto;
                        margin-left: 2px;
                    }

                }

            }

        }

    }

}







/*=======================================
            Post Block
========================================*/

.post-block {
    background-color: #fff;
    color: #000;

    .intro {
        margin-bottom: 90px;
        align-items: flex-start;

        @media (max-width: 1000px) {
            margin-bottom: 50px;
        }

        .left {
            width: calc(50%);
            padding-right: 100px;

            @media (max-width: 1000px) {
                width: 100%;
                padding: 0;

                .button {
                    display: none;
                }

            }

            h2 {
                font-size: 90px;
                line-height: 1;
                margin-bottom: 45px;

                @media (max-width: 1000px) {
                    margin-bottom: 30px;
                }

                @media (max-width: 800px) {
                    font-size: 80px;
                }

                @media (max-width: 600px) {
                    font-size: 60px;
                }

            }

        }

        .right {
            width: calc(50%);
            padding-top: 10px;

            @media (max-width: 1000px) {
                width: 100%;
                padding: 0;
            }

            h3 {
                font-size: 28px;
                letter-spacing: normal;
                margin-bottom: 20px;

                @media (max-width: 600px) {
                    font-size: 24px;
                }

            }

            p {
                font-size: 22px;
                line-height: 1.2;
                max-width: 650px;

                @media (max-width: 600px) {
                    font-size: 18px;
                }

            }

            .button {
                display: none;

                @media (max-width: 1000px) {
                    display: inline-block;
                    margin-top: 30px;
                }

            }

        }

    }

    .grid {
        align-items: unset;
        margin: 0 -8px;

        .card {
            width: calc(50% - 16px);
            margin: 0 8px 35px;
            position: relative;

            @media (max-width: 800px) {
                width: calc(100% - 16px);
            }

            &:hover {

                .media .thumbnail {
                    opacity: 0;
                }

            }

            .media {
                position: relative;
                overflow: hidden;

                video {
                    display: block;
                    width: 100%;
                    height: auto;
                }

                .thumbnail {
                    position: absolute;
                    inset: 0;
                    z-index: 5;
                    transition: all 0.3s ease-in-out;
                    width: 100%;
                    height: 101%;
                }

            }

            .meta {
                position: absolute;
                bottom: 0;
                left: 0;
                z-index: 10;
                padding: 15px 0 8px 15px;

                .heading {
                    font-size: 36px;
                    letter-spacing: normal;
                    line-height: 1.2;
                    color: #fff;

                    @media (max-width: 600px) {
                        font-size: 30px;
                    }

                }

            }

        }

    }

}








/*=======================================
                Careers
========================================*/

.careers {
    background-color: #000;
    color: #fff;

    h2 {
        font-size: 60px;
        line-height: 1.1;
        margin-bottom: 60px;

        @media (max-width: 800px) {
            font-size: 50px;
            margin-bottom: 40px;
        }

        @media (max-width: 450px) {
            font-size: 40px;
            margin-bottom: 30px;
        }

    }

    .cards {
        align-items: unset;
        margin: 0 -8px;

        .card {
            width: calc(50% - 16px);
            margin: 0 8px 16px;
            position: relative;
            background: linear-gradient(97deg, #FFDF07 0%, #EA682D 34.17%, #BB3E1F 63.38%);

            @media (max-width: 800px) {
                width: calc(100% - 16px);
            }

            .inner {
                background-color: #000;
                margin: 1px;
                padding: 16px;
                height: calc(100% - 2px);
                display: flex;
                flex-direction: column;
                justify-content: space-between;

                .meta {
                    margin-bottom: 15px;
                }

                h3 {
                    font-size: 28px;
                    line-height: 1.1;
                    letter-spacing: normal;
                    margin-bottom: 15px;

                    @media (max-width: 450px) {
                        font-size: 24px;
                    }

                }

                .desc {
                    font-size: 16px;
                    line-height: 1.2;
                    color: #868686;
                }

                p {
                    font-size: 16px;
                    margin-bottom: 5px;
                }

                a {
                    font-size: 14px;
                    text-transform: uppercase;
                    line-height: 1.2;
                    color: #fff;
                    text-decoration: none;

                    img, svg {
                        display: inline-block;
                        width: 10px;
                        height: auto;
                        margin-left: 2px;
                        position: relative;
                        top: -1px;

                        path {
                            stroke: #fff;
                        }

                    }

                }

            }

        }

        .info {
            font-size: 20px;
            text-align: center;
            width: 100%;
        }

    }

}







/*=======================================
            Text & Image
========================================*/

.text-image {
    background-color: #fff;
    color: #000;

    h2 {
        font-size: 90px;
        line-height: 1;
        margin-bottom: 80px;

        @media (max-width: 1000px) {
            font-size: 80px;
            margin-bottom: 50px;
        }

        @media (max-width: 600px) {
            font-size: 60px;
            margin-bottom: 30px;
        }

    }

    .inner {
        align-items: center;

        @media (max-width: 1100px) {
            flex-direction: column-reverse;
        }

        &.reverse {
            flex-direction: row-reverse;

            @media (max-width: 1100px) {
                flex-direction: column-reverse;
            }

            .text {
                padding-left: 80px;
                padding-right: 0;

                @media (max-width: 1100px) {
                    padding-left: 0;
                }

            }

            .image {

                img {
                    transform: rotate(-0.7deg);

                    @media (max-width: 600px) {
                        transform: rotate(-0.4deg);
                    }
                }

            }

        }

        .text {
            width: calc(100% - 760px);
            padding-right: 80px;

            @media (max-width: 1300px) {
                width: calc(100% - 600px);
            }

            @media (max-width: 1100px) {
                width: 100%;
                max-width: 800px;
                margin: 0 auto;
                padding-right: 0;
            }

            h1,
            h2,
            h3,
            h4 {
                font-family: "Bebas Neue";
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 10px;
                letter-spacing: normal;
                font-weight: 400;

                &:not(:first-of-type) {
                    margin-top: 50px;

                    @media (max-width: 600px) {
                        margin-top: 30px;
                    }

                }

            }

            p {
                font-size: 22px;
                line-height: 1.2;
                margin-bottom: 20px;

                @media (max-width: 1300px) {
                    font-size: 18px;
                }

            }

        }

        .image {
            width: 760px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 25px;

            @media (max-width: 1300px) {
                width: 100%;
                max-width: 600px;
            }

            @media (max-width: 1100px) {
                margin: 0 auto 50px;
            }

            @media (max-width: 600px) {
                padding: 15px;
            }

            img {
                transform: rotate(0.7deg);

                @media (max-width: 600px) {
                    transform: rotate(0.4deg);
                }

            }

        }

    }

}







/*=======================================
            Two Col Text
========================================*/

.two-col-text {
    background-color: #000;
    color: #fff;

    .contents {
        align-items: flex-start;

        .left,
        .right {
            width: calc(50% - 60px);

            @media (max-width: 1000px) {
                width: 100%;
            }

        }

        .left {

            h2 {
                font-size: 120px;
                line-height: 1;

                @media (max-width: 1000px) {
                    font-size: 100px;
                }

                @media (max-width: 800px) {
                    font-size: 80px;
                }

                @media (max-width: 600px) {
                    font-size: 60px;
                }

                @media (max-width: 450px) {
                    font-size: 50px;
                }

            }

            .sub {
                font-family: "Bebas Neue";
                font-size: 28px;
                line-height: 1;
                background: linear-gradient(97deg, #FFDF07 0%, #EA682D 59.34%, #BB3E1F 112.89%);
                color: transparent;
                background-clip: text;
                margin-top: 10px;
            }

        }

        .right {
            padding-top: 20px;

            @media (max-width: 1000px) {
                max-width: 600px;
                padding-top: 50px;
            }

            .text-container {
                font-size: 22px;
                line-height: 1.2;

                h1,
                h2,
                h3,
                h4 {
                    font-family: "Bebas Neue";
                    font-size: 28px;
                    line-height: 1.2;
                    margin-bottom: 10px;
                    letter-spacing: normal;
                    font-weight: 400;
                }

                p {
                    font-size: 22px;
                    line-height: 1.2;
                    margin-bottom: 30px;

                    @media (max-width: 1300px) {
                        font-size: 18px;
                    }

                }

                ul, ol {

                    li {
                        margin-bottom: 5px;
                    }

                }

                a {
                    color: #fff;
                    text-decoration: underline;
                }

            }

        }

    }

    &.news-banner {
        padding: 50px 0;

        @media (max-width: 600px) {
            padding: 30px 0;
        }

        .contents .left {
            width: 100%;

            h2 {
                font-size: 80px;
                line-height: 1;

                @media (max-width: 800px) {
                    font-size: 80px;
                }

                @media (max-width: 600px) {
                    font-size: 60px;
                }

                @media (max-width: 450px) {
                    font-size: 50px;
                }

            }

        }

    }

    &.team-banner {
        padding: 70px 0;

        @media (max-width: 800px) {
            padding: 50px 0;
        }

        @media (max-width: 600px) {
            padding: 30px 0;
        }

        .contents .left {
            width: 100%;
        }

    }

}







/*=======================================
            Form Block
========================================*/

.form-block {
    background-color: #fff;
    color: #000;

    .contents {
        align-items: flex-start;

        .left {
            width: calc(45% - 60px);

            @media (max-width: 1400px) {
                width: calc(35% - 60px);
            }

            @media (max-width: 1200px) {
                width: 100%;
                margin-bottom: 50px;
            }

            .desc {
                font-size: 28px;
                line-height: 1.1;
                letter-spacing: normal;

                @media (max-width: 600px) {
                    font-size: 24px;
                }

            }

        }

        .form-wrap {
            width: calc(55% - 60px);

            @media (max-width: 1400px) {
                width: calc(65% - 60px);
            }

            @media (max-width: 1200px) {
                width: 100%;
            }

            .gform_required_legend {
                display: none;
            }

            .gfield {
                margin-bottom: 30px;

                @media (max-width: 600px) {
                    margin-bottom: 10px;
                }

            }

            .gfield--type-radio {

                .gfield_label {
                    color: #868686;
                    font-size: 14px;
                    line-height: 1.2;
                    font-weight: 500;
                    margin-bottom: 15px;

                    @media (max-width: 600px) {
                        margin-bottom: 0;
                    }

                }

                .gfield_radio {
                    display: flex;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    margin-bottom: 50px;

                    @media (max-width: 600px) {
                        margin-bottom: 0px;
                    }

                    .gchoice {
                        flex: 1 1 0;
                        padding-bottom: 10px;
                        border-bottom: 1px solid #000;

                        @media (max-width: 800px) {
                            flex: auto;
                            width: calc(100% / 3);
                            padding: 10px 0;
                        }

                        .gfield-choice-input {
                            display: none;
                        }

                        .gfield-choice-input:checked+label {
                            color: #000;
                            font-weight: 800;
                        }

                        label {
                            color: #868686;
                            font-size: 14px;
                            line-height: 1.2;
                            font-weight: 500;

                            @media (max-width: 400px) {
                                font-size: 12px;
                            }

                        }

                    }

                }

            }

            .gfield--type-name .gform-field-label {
                display: none;
            }

            input[type="text"],
            input[type="email"],
            textarea {
                font-size: 16px;
                line-height: 1.2;
                border: none;
                color: #000;
                border-bottom: 1px solid #000;
                padding: 10px 0;
                resize: none;
            }

            textarea {
                height: 150px !important;
            }

            input[type="submit"],
            .gform_button {
                background-color: #fff;
                color: #000;
                font-family: "Bebas Neue";
                text-align: center;
                font-size: 16px;
                line-height: 1 !important;
                font-weight: 400;
                letter-spacing: normal;
                border: 1px solid #000;
                min-width: 120px;
                padding: 13px 0 10px;
                cursor: pointer;
                transition: all 0.3s ease-in-out;

                &:hover {
                    background-color: #000;
                    color: #fff;
                }

            }

        }

    }

}







/*=======================================
            Map Block
========================================*/

.map-block {
    background-color: #000;
    color: #fff;

    h2 {
        font-size: 90px;
        line-height: 1.1;
        margin-bottom: 80px;

        @media (max-width: 1000px) {
            font-size: 80px;
            margin-bottom: 50px;
        }

        @media (max-width: 600px) {
            font-size: 60px;
            margin-bottom: 30px;
        }

    }

    .inner {
        align-items: flex-start;

        .address {
            width: calc(100% - 1000px);
            padding-right: 100px;

            @media (max-width: 1400px) {
                width: 350px;
                padding-right: 0;
            }

            @media (max-width: 1400px) {
                margin-bottom: 30px;
            }

            .heading {
                font-size: 28px;
                line-height: 1.2;
                margin-bottom: 30px;
                letter-spacing: normal;
            }

            address {
                font-size: 22px;
                line-height: 1.2;
                font-weight: 400;
                font-style: normal;
            }

        }

        .mapouter {
            position: relative;
            text-align: right;
            width: 1000px;
            height: 500px;

            @media (max-width: 1400px) {
                width: calc(100% - 350px);
            }

            @media (max-width: 1000px) {
                width: 100%;
            }

            .gmap_canvas {
                overflow: hidden;
                background: none !important;
                width: 100%;
                height: 500px;

                .gmap_iframe {
                    height: 500px !important;
                }

            }

        }

    }


}






/*=======================================
            Games Showcase
========================================*/

.games-showcase {

    .intro {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-top: 50px;

        @media (max-width: 1100px) {
            padding-top: 70px;
        }

        @media (max-width: 600px) {
            padding-top: 50px;
        }

        .container {

            @media (max-width: 1680px) {
                padding-left: 0;
            }

            @media (max-width: 1100px) {
                padding-right: 0;
            }

        }

        .contents {
            align-items: center;

            @media (max-width: 1100px) {
                flex-direction: column-reverse;
            }

            .image {
                width: calc(520px);

                @media (max-width: 800px) {
                    width: 400px;
                }

                @media (max-width: 450px) {
                    width: 100%;
                }

            }

            .info {
                width: calc(100% - 520px);
                padding-left: 200px;
                color: #fff;

                @media (max-width: 1300px) {
                    padding-left: 100px;
                }

                @media (max-width: 1100px) {
                    width: 100%;
                    margin-bottom: 50px;
                    padding: 0 40px;
                }

                @media (max-width: 600px) {
                    padding: 0 30px;
                }

                h2 {
                    font-size: 90px;
                    line-height: 1.1;
                    margin-bottom: 50px;

                    @media (max-width: 1100px) {
                        margin-bottom: 30px;
                    }

                    @media (max-width: 600px) {
                        font-size: 70px;
                    }

                }

                .desc {
                    font-size: 22px;
                    line-height: 1.2;

                    @media (max-width: 600px) {
                        font-size: 20px;
                    }

                }

            }

        }

    }

}

.games-carousel {
    background-color: #000;
    padding: 90px 0;

    @media (max-width: 1000px) {
        padding: 50px 0;
    }

    .gallery-wrap {
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
        overflow: hidden;

        @media (max-width: 1680px) {
            width: 100%;
            max-width: 100%;
            padding: 0 0 0 40px;
        }

        @media (max-width: 6000px) {
            padding: 0 0 0 30px;
        }

        .slick-track {
            display: flex !important;
        }

        .slick-list {
            padding: 0 40px 0 0 !important;
        }

        .game-card {
            height: inherit !important;
            margin-right: 16px;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 22px;

            @media (max-width: 500px) {
                margin-right: 10px;
            }

            .top {
                align-items: center;
                margin-bottom: 30px;

                .image {
                    width: 110px;
                }

                .meta {
                    width: calc(100% - 110px);
                    padding-left: 25px;

                    @media (max-width: 450px) {
                        padding-left: 20px;
                    }

                    h3 {
                        font-size: 28px;
                        letter-spacing: normal;
                        line-height: 1.2;
                        margin-bottom: 10px;

                        @media (max-width: 450px) {
                            font-size: 24px;
                        }

                    }

                    .subtitle {
                        font-size: 16px;
                        line-height: 1.2;
                        color: #868686;

                        @media (max-width: 450px) {
                            font-size: 14px;
                        }

                    }

                }

            }

            .main {

                p {
                    font-size: 16px;
                    line-height: 1.2;
                    margin-bottom: 20px;
                }

                .platforms {
                    justify-content: flex-start;
                    align-items: unset;

                    .platform {
                        width: 75px;
                        height: 75px;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        border: 1px solid #000;
                        margin-right: 10px;

                        @media (max-width: 500px) {
                            width: 60px;
                            height: 60px;
                        }

                        @media (max-width: 410px) {
                            width: 50px;
                            height: 50px;
                        }

                        img {
                            max-width: 80%;
                            max-height: 80%;
                            width: auto;
                            height: auto;
                        }

                    }

                }

                a {
                    font-size: 14px;
                    text-transform: uppercase;
                    font-weight: 600;
                    line-height: 1.2;
                    color: #000;
                    text-decoration: none;
                    margin-top: 30px;
                    margin-bottom: 8px;
                    display: inline-block;

                    svg {
                        display: inline-block;
                        width: 10px;
                        height: auto;
                        margin-left: 2px;
                        position: relative;
                        top: -1px;

                        path {
                            stroke: #000;
                        }

                    }

                }

            }

        }

    }

    .arrows {
        align-items: center;
        padding-top: 35px;

        .arrow {
            width: 35px;
            height: auto;
            cursor: pointer;

            &.next {
                transform: rotate(180deg);
            }

            &.prev {
                opacity: 0;
                pointer-events: none;
            }

            svg path {
                stroke: #fff;
            }

        }

    }

}







/*=======================================
            Project Info
========================================*/

.project-info {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    .contents {

        .poster {
            width: 430px;

            @media (max-width: 1000px) {
                width: 300px;
            }

        }

        .meta {
            width: calc(100% - 430px);
            padding-left: 200px;
            padding-top: 50px;

            @media (max-width: 1200px) {
                padding-left: 100px;
            }

            @media (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
            }

            h2 {
                font-size: 60px;
                line-height: 1;
                margin-bottom: 50px;

                @media (max-width: 450px) {
                    font-size: 50px;
                    margin-bottom: 30px;
                }

            }

            .text-container {
                font-size: 18px;
                line-height: 1.2;
                max-width: 500px;

                @media (max-width: 450px) {
                    font-size: 16px;
                }

                h1,
                h2,
                h3,
                h4 {
                    font-family: "Bebas Neue";
                    font-size: 28px;
                    font-weight: 400;
                    line-height: 1.2;
                    margin-bottom: 15px;
                }

                a {
                    color: #000;
                    text-decoration: underline;
                }

            }

            .game-platforms {
                margin-top: 30px;
                margin-bottom: 50px;

                h3 {
                    font-size: 28px;
                    letter-spacing: normal;
                    margin-bottom: 15px;
                }

                .platforms {
                    justify-content: flex-start;
                    align-items: unset;

                    .platform {
                        width: 75px;
                        height: 75px;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        border: 1px solid #000;
                        margin-right: 10px;

                        @media (max-width: 500px) {
                            width: 60px;
                            height: 60px;
                        }

                        @media (max-width: 410px) {
                            width: 50px;
                            height: 50px;
                        }

                        img {
                            max-width: 80%;
                            max-height: 80%;
                            width: auto;
                            height: auto;
                        }

                    }

                }

            }

            .read-more {
                font-size: 14px;
                line-height: 1.2;
                font-weight: 500;
                text-transform: uppercase;
                cursor: pointer;
                margin-bottom: 30px;

                span {
                    position: relative;
                    top: -1px;
                }

            }

            .extra {
                display: none;
            }

        }

    }

}







/*=======================================
            Team Bio
========================================*/

.team-bio {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 0;

    @media (max-width: 600px) {
        padding: 50px 0;
    }

    .contents {
        align-items: center;

        .image {
            width: 530px;

            @media (max-width: 1000px) {
                width: 400px;
            }

        }

        .info {
            width: calc(100% - 530px);
            padding-left: 120px;

            @media (max-width: 1300px) {
                padding-left: 70px;
            }

            @media (max-width: 1000px) {
                width: 100%;
                padding-left: 0;
                margin-top: 30px;
            }

            h2 {
                font-size: 70px;
                line-height: 1;
                margin-bottom: 20px;

                @media (max-width: 1200px) {
                    font-size: 50px;
                }

                @media (max-width: 450px) {
                    font-size: 40px;
                }

            }

            .bio {
                font-size: 22px;
                line-height: 1.2;

                @media (max-width: 1200px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

                a {
                    color: #000;
                    text-decoration: underline;
                }

            }

            .button {
                margin-top: 30px;
            }

        }

    }

}






/*=======================================
            Video Block
========================================*/

.video-block {
    background-color: #000;

    video {
        width: 100%;
        height: auto;
    }

    /* Loop Only */

    .video-wrap.loop-only {

        .video {
            display: none;
        }

    }

    /* Loop & Video */

    .video-wrap.loop-and-video {
        position: relative;

        .loop {
            position: absolute;
            z-index: 5;
            inset: 0;
            width: 100%;
        }

        .video {
            position: relative;
            z-index: 4;
        }

        .play-button {
            width: 75px;
            height: 75px;
            position: absolute;
            bottom: 30px;
            right: 30px;
            cursor: pointer;
            z-index: 6;

            @media (max-width: 800px) {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }

        }

    }

    /* Video Only */

    .video-wrap.video-only {

        .loop {
            display: none;
        }

    }

}






/*=======================================
            Basic Text
========================================*/

.basic-text {
    background-color: #000;
    color: #fff;

    .contents {
        max-width: 1000px;
        margin: 0 auto;

        .wrapper {

            .text-container {
                font-size: 22px;
                line-height: 1.2;

                h1,
                h2,
                h3,
                h4,
                h5,
                h6 {
                    font-family: "Bebas Neue";
                    line-height: 1.1;
                    letter-spacing: normal;
                    font-weight: 400;
                }

                h1,
                h2 {
                    font-size: 70px;
                    margin-bottom: 20px;

                    @media (max-width: 600px) {
                        font-size: 50px;
                    }

                }

                h3 {
                    font-size: 50px;
                    margin-bottom: 20px;

                    @media (max-width: 600px) {
                        font-size: 40px;
                    }

                }

                h4 {
                    font-size: 40px;
                    margin-bottom: 20px;

                    @media (max-width: 600px) {
                        font-size: 35px;
                    }

                }

                p {
                    font-size: 22px;
                    line-height: 1.2;
                    margin-bottom: 30px;

                    @media (max-width: 1300px) {
                        font-size: 18px;
                    }

                }

                blockquote {
                    display: block;
                    padding: 50px;
                    margin-bottom: 30px;
                    background: linear-gradient(90deg, #8A2715 0%, #EA682D 71.15%, #F7E14C 100%);

                    @media (max-width: 600px) {
                        padding: 30px;
                    }

                    p {
                        font-size: 40px;
                        font-style: italic;

                        @media (max-width: 1000px) {
                            font-size: 30px;
                        }

                        @media (max-width: 600px) {
                            font-size: 22px;
                        }

                        &:last-of-type {
                            font-size: 30px;
                            margin-bottom: 0;

                            @media (max-width: 1000px) {
                                font-size: 20px;
                            }

                            @media (max-width: 600px) {
                                font-size: 18px;
                            }

                        }

                    }

                }

                .wp-caption {
                    width: 100% !important;
                }

                .wp-caption-text {
                    font-size: 18px;
                    font-style: italic;
                    margin-top: 5px;
                }

                ul,
                ol {
                    margin-bottom: 30px;

                    @media (max-width: 1300px) {
                        font-size: 18px;
                    }

                    li {
                        margin-bottom: 5px;
                    }

                }

                a {
                    color: #fff;
                    text-decoration: underline;
                }

            }

        }

    }

}







/*=======================================
            Team Block
========================================*/

.character-grid {
    background-color: #fff;

    .intro {
        align-items: flex-start;
        padding-bottom: 80px;

        @media (max-width: 600px) {
            padding-bottom: 50px;
        }

        .heading {
            width: calc(50%);
            font-size: 90px;
            line-height: 1;
            padding-right: 50px;

            @media (max-width: 1000px) {
                width: 100%;
            }

            @media (max-width: 800px) {
                font-size: 70px;
            }

            @media (max-width: 600px) {
                font-size: 50px;
            }

        }

        .right {
            width: calc(50%);
            padding-top: 15px;

            @media (max-width: 1000px) {
                width: 100%;
            }

            .text {
                font-size: 22px;
                line-height: 1.2;

                @media (max-width: 600px) {
                    font-size: 20px;
                }

                @media (max-width: 450px) {
                    font-size: 18px;
                }

            }

            .button {
                margin-top: 30px;
            }

        }

    }

    .grid {
        justify-content: flex-start;
        align-items: unset;
        margin: 0 -8px;

        .team-card {
            width: calc(100% / 6 - 16px);
            margin: 0 8px 50px;
            border-bottom: 1px solid #000;
            cursor: pointer;
            position: relative;

            @media (max-width: 1300px) {
                width: calc(100% / 5 - 16px);
            }

            @media (max-width: 1100px) {
                width: calc(100% / 4 - 16px);
            }

            @media (max-width: 900px) {
                width: calc(100% / 3 - 16px);
            }

            @media (max-width: 700px) {
                width: calc(100% / 2 - 16px);
            }

            @media (max-width: 450px) {
                width: calc(100% - 16px);
                margin: 0 8px 30px;
            }

            .image {
                overflow: hidden;

                img {
                    transition: all 0.3s ease-in-out;
                }

            }

            &:hover {

                .image img {
                    transform: scale(1.05);
                }

            }

            .meta {
                padding: 20px 0;

                .heading {
                    font-size: 28px;
                    line-height: 1.2;
                    letter-spacing: normal;

                    @media (max-width: 500px) {
                        font-size: 24px;
                    }

                }

                .role {
                    font-size: 16px;
                    line-height: 1.2;
                    color: var(--grey);
                    margin-bottom: 10px;
                }

                .readmore {
                    font-size: 14px;
                    line-height: 1.1;
                    font-weight: 500;

                    &.link {

                        span {
                            position: relative;
                            top: -1px;
                        }
                    }

                }

            }

        }

    }

}







/*=======================================
            Team Popups
========================================*/

.character-popup {
    position: fixed;
    top: 0;
    right: -50vw;
    width: 50vw;
    height: 100vh;
    background-color: #000;
    z-index: 99999999;
    padding: 40px 75px;
    color: #fff;
    transition: all 0.5s ease-in-out;

    &.visible {
        right: 0;
    }

    @media (max-width: 1000px) {
        width: 75vw;
        right: -75vw;
        padding: 40px;
    }

    @media (max-width: 600px) {
        width: 100vw;
        right: -100vw;
    }

    .inner {
        height: 100%;
        overflow-y: auto;
    }

    .close {
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        cursor: pointer;
        position: absolute;
        top: 40px;
        right: 75px;

        @media (max-width: 1000px) {
            right: 40px;
        }

    }

    .main {
        padding-top: 60px;

        .image {
            max-width: 350px;
            margin-bottom: 30px;
        }

        .meta {

            .heading {
                font-size: 28px;
                line-height: 1.1;
                letter-spacing: normal;
            }

            .role {
                font-size: 16px;
                line-height: 1.2;
                color: var(--grey);
            }

        }

        .bio {
            margin-top: 40px;
            font-size: 22px;
            line-height: 1.2;

            @media (max-width: 600px) {
                font-size: 20px;
            }

            @media (max-width: 450px) {
                font-size: 18px;
            }

        }

    }

}