* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background {
    margin: 20px;
    padding: 20px;
    background-image: linear-gradient(to right, white, #d5ccc1);
    border-radius: 60px;
    min-height: calc(100vh - 40px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    margin-left: -150px;
    overflow: hidden;
}

/* .strategies-left {
    width: 60%;
    text-align: center;
} */

.strategies-right {
    margin-top: 150px; 
} 

img {
    max-width: 100%;
}

img.logo {
    max-width: initial;
    position: absolute;
    top: 100px;
    right: 0px;
}


@media only screen and (max-width: 1400px) {
    .background {
        margin-left: 20px;
    }
    .strategies-left img {
        width: 480px;
    }
    .strategies-right img {
        width: 300px;
    }
    img.logo {
        width: 200px;
    }
}

@media only screen and (max-width: 1148px) {
    .strategies-left img {
        width: 400px;
    }
    .strategies-right img {
        width: 250px;
    }
}

@media only screen and (max-width: 954px) { 
    .background {
        min-height: calc(100vh - 40px) !important;
        flex-direction: column;
        gap: 0;
    }
    .strategies-left, .strategies-right {
        text-align: center;
    }
    .strategies-right {
        margin-top: 50px;
    }
    .strategies-left img {
        width: 400px;
    }
    .strategies-right img {
        width: 300px;
    }
    img.logo {
        bottom: 0px !important;
        top: initial;
    }
}

@media only screen and (max-width: 554px) { 
    .background {
        padding: 20px;
        margin: 0;
    }
    .strategies-left img {
        width: auto;
    }
    .strategies-right img {
        width: 250px
    }
    img.logo {
        bottom: 0px !important;
        top: initial;
    }
}