:root {
    --card: #F5F5F7;
    --background-light: #F6F6F6;
    --background-dark: #202020;
    --stroke: #333335;
    --primary: #0071E3;
    --hover: #318BE7;
    --head: #101010;
    --main-text: #D8D8D8;
}

#demo-block .title {
    color: var(--card, #F5F5F7);
    font-family: "Roboto Condensed";
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding-top: 80px;
    max-width: 554px;
    max-height: 110px;
}

#demo-block .title_img {
    color: var(--card, #F5F5F7);
    font-family: "Roboto Condensed";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

#demo-block .img {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#demo-block .demo_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 110px;
}

#demo-block .items_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

#demo-block .title_text {
    color: var(--card, #F5F5F7);
    text-align: center;
    font-family: "Roboto Condensed";
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding-top: 20px;
}

#demo-block .texts_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#demo-block .text {
    color: var(--main-text, #D8D8D8);
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    padding-top: 20px;
}

@media (max-width: 1150px) {
    #demo-block .demo_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 915px) {
    #demo-block .demo_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    #demo-block .title_img {
        padding-bottom: 20px;
    }
    #demo-block .title {
        width: 100%;
        max-width: unset;
    }
    #demo-block .img img {
        width: 100%;
        height: 100%;
    }
    #demo-block .title {
        font-size: 32px;
    }
}

@media (max-width: 450px) {
    #demo-block .text {
     padding-left: 10px;
     padding-right: 10px;
    }
}