/* .two-button-hero-container {
    display: inline-block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

    .two-button-hero-container .left-container {
        max-width: 45%;
        box-sizing: border-box;
    }

    .two-button-hero-container .right-container {
        max-width: 55%;
        box-sizing: border-box;
    }

    .two-button-hero-container .content {
        display: flex;
        flex-wrap: wrap;
    }

        .two-button-hero-container .content h2 {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 1.5rem;
            margin-top: 0;
        }

        .two-button-hero-container .content p {
            font-size: 18px;
            margin-bottom: 1.5rem;
        }

        .two-button-hero-container .content .buttons {
            display: flex;
            gap: 1em;
        }

            .two-button-hero-container .content .buttons a {
                padding: 12px 24px;
                font-size: 16px;
                font-weight: 700;
                border: 1px solid black;
                border-radius: 4px;
                box-shadow: 3px 3px 6px rgba(0, 0, 0, .25);
                text-decoration: none;
                text-align: center;
            }

                .two-button-hero-container .content .buttons a:hover {
                    cursor: pointer;
                    filter: brightness(110%);
                }

    .two-button-hero-container img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        max-width: 100%;
    }

@media (max-width: 750px) {
    .two-button-hero-container .content .buttons {
        width: 11em;
    }

    .two-button-hero-container .content {
        width: 90%;
        flex-direction: column;
        gap: 1em;
    }

    .two-button-hero-container .left-container {
        max-width: 100%;
    }

    .two-button-hero-container .right-container {
        max-width: 100%;
        justify-content: center;
        display: flex;
    }

    .two-button-hero-container img {
        position: inherit;
        top: unset;
        transform: none;
        max-width: 80%;
    }
}

@media (min-width: 1440px) {
    .two-button-hero-container {
        width: 100%;
    }
} */
