body {
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.color-kit {
    --global-color-blue: #003595;
    --global-color-gold: #8C734B;
    --global-color-white: #ffffff;
    --global-color-black: #000000;
    --global-color-lightgrey: #d9d9d9;
}

h2 {
    font-weight: 600;
    font-size: 34px;
    text-transform: uppercase;
    color: var(--global-color-blue);
}

.vh100 {
    min-height: 100vh;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.left-column {
    margin-right: -30px;
}

.right-column {
    background-color: white;
    border-radius: 30px 0 0 30px;
    z-index: 10;
}

.form-container {
    padding: 80px;

}

.form-btn {
    background-color: var(--global-color-gold);
    border-radius: 100px;
    padding: 8px 20px;
    color: var(--global-color-white);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    transition: opacity .3s ease;
}

.form-btn:hover {
    background-color: var(--global-color-gold);
    color: var(--global-color-white);
    opacity: .9;
}

@media(max-width:480px) {
    .bg-video {
        position: relative;
    }

    .vh100 {
        min-height: auto;
    }

    .right-column {
        border-radius: 30px 30px 0 0;
        margin-top: -30px;
        z-index: 10;
    }

    .form-container {
        padding: 40px 20px;
    }

    h2 {
        font-size: 22px;
        text-align: center;
    }

    p {
        text-align: center;
    }

    .form-btn,
    .form-check {
        display: table;
        margin: 25px auto;
    }

    .btn-sound,
    .btn-replay {
        position: absolute;
        background: rgba(0, 0, 0, 0.6);
        border: none;
        color: #fff;
        font-size: 22px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-sound:hover,
    .btn-replay:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    /* Posições */
    .btn-sound {
        bottom: 45px;
        right: 20px;
    }

    .btn-replay {
        bottom: 45px;
        left: 20px;
    }
}