:root {
    --card: #F5F5F7;
    --background-light: #F6F6F6;
    --background-dark: #202020;
    --stroke: #333335;
    --primary: #0071E3;
    --hover: #318BE7;
    --head: #101010;
    --main-text: #D8D8D8;
}

#market-block {
    margin-bottom: 80px;
}

#market-block .title {
    color: var(--card);
    font-family: Roboto Condensed;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-align: center;
    margin-bottom: 40px;
}

#market-block .market_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 10px;
    background: var(--background-dark);
    padding-left: 80px;
    padding-top: 40px;
    padding-bottom: 33px;
    height: max-content;
}

#market-block .title_block {
    color: var(--card);
    font-family: Roboto Condensed;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

#market-block .subtitle_block {
    color: var(--card);
    font-family: Roboto Condensed;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}

#market-block .subtitle_block span {
    color: var(--background-light);
    font-family: Roboto Condensed;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
}


#market-block .wrapper_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

@media (max-width: 1000px) {
    #market-block .market_wrapper {
        flex-direction: column;
        padding-left: unset;
    }
    #market-block .wrapper_text {
        align-items: center;
    }
    #market-block .title {
        font-size: 38px;
    }
    @media (max-width: 1000px) {
        #market-block .subtitle_block {
            font-size: 14px;
        }
    }
}