.main_container {

    .hero {
        z-index: 1;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        gap: 48px;

        h1 {
            z-index: 1;
            margin: 0;
            padding: 0;
            text-align: center;
            font-family: 'Thunder', sans-serif;
            font-weight: 600;
            font-size: 120px;
            color: #AE041E;
            line-height: normal;
            user-select: none;

            @media (width <900px) {
                font-size: 120px;
                flex-direction: column;
                gap: 0;
            }
        }

        .video {
            width: 60%;
        }
    }

    .info_container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
        gap: 8px;
        margin: 160px 0;

        .info_row_1, .info_row_2 {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 16px;
            width: 100%;

            .element_container {
                display: flex;
                flex-direction: row;
                align-items: baseline;
                gap: 9px;
                font-family: 'Thunder', sans-serif;

                .job {
                    font-size: 24px;
                    font-weight: 400;
                    color: #666666;
                    text-transform: uppercase;
                }

                .name {
                    font-size: 32px;
                    font-weight: 600;
                    color: #f0f0f0;
                    text-transform: uppercase;
                }
            }
        }
    }

    .frames_container {
        position: relative;
        z-index: 2;
        width: calc(100% - 32px);
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-start;
        gap: 16px;
        padding: 0 16px;
        max-height: 70vh;

        .column_1, .column_2, .column_3 {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
            height: 70vh;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
        }
    }

    .video {
        height: 60vh;
    }
}
