
/*--------------------------------------------------------------------------------*/
@media (min-width: 1000px) {
    body {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
        .container {
            margin: 0px;
        }
}


    .desktop-right-banner {
        display: none;
    }

    @media (min-width: 1000px) {
        .desktop-right-banner {
            display: flex;
            flex-direction: column;
        }
    }

