.market-block {
    margin: 120px 0;
}

.market-image img {
    width: 463px;
    height: 241px;
    object-fit: cover;
    margin-right: 35px;
    float: left;
    border-radius: 100px 0 0 0;
}

.market-content h2 {
    margin-bottom: 35px;
}

hr {
    border: none;
    border-top: 1px solid #A1A7B3;
    margin: 21px 0 14px;
}

@media screen and (max-width: 768px) {
    .market-block {
        margin: 120px 0;
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }
    .market-image img {
        width: 100%;
        height: auto;
        margin-right: 0;
        float: none;
        border-radius: 0 0 0 100px;
    }
    .market-content p {
        font-size: 18px;
        line-height: 23.76px;
    }
}