.market-info-inner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block: 20px;
    padding: 3% 4%;

}

.market-info-wrapper:nth-child(odd) {
    background-color: #d9d9d9;
}

.market-info-img-box {
    flex: 1 1 50%;
    text-align: center;
    padding: 5% 2%;

    img {
        border-radius: 12px;
    }
}

.market-info-content-box {
    flex: 1 1 50%;
    padding-block: 5%;

    h2 {
        font-size: clamp(1.5625rem, 1.108rem + 2.2727vw, 2.8125rem);

        font-weight: 600;
        color: var(--secondry-color);
        margin-bottom: 20px;
        line-height: 1;
    }

    p {

        font-size: 18px;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 400;
        font-family: "Barlow", Sans-serif;

        a {
            color: #c36;
        }
    }
}

@media (max-width:767px) {
    .market-info-inner-wrapper {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .market-info-wrapper:nth-child(even) {
        .market-info-inner-wrapper {
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }
}