.blocks-container {
    display: flex;
    height: 700px;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    position: relative;
}

.small-blocks {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media(max-width:600px) {
    .small-blocks {
        flex-direction: column;
    }

    .blocks-container {
        height: auto;
    }

    .col-md-3 img {
        margin-bottom: 10px;
        height: 50px;
    }
}