/** Shopify CDN: Minification failed

Line 108:1 Expected "}" to go with "{"

**/
.text-block-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}
.text-blocks-box{
    /* background:url('/cdn/shop/files/Group_1321316894.png?v=1776254101'); */
    background:url('/cdn/shop/files/Group_1321316894_1.png?v=1778049842');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    max-width: 300px;
    height: 179px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    padding: 25px;
    /* border-radius: 6px; */
    overflow: hidden;
}
.text-blocks-title{
    font-size:32px;
    line-height: 32px;
    color:#FD661B;
    letter-spacing:-4px;
}
.text-blocks-text{
    font-size:26px;
    color:#000;
    letter-spacing:0px;
}


@media only screen and (max-width:1500px){
    .text-blocks-box{
        max-width: 250px;
        height: 150px;
    }
    .text-blocks-title{
        font-size:20px;
        line-height: 22px;
         letter-spacing:-2px;
    }
    .text-blocks-text{
        font-size:16px;
    }
}
@media only screen and (max-width:1200px){
    .text-blocks-box{
        max-width: 210px;
        height: 150px;
    }
@media only screen and (max-width:990px){
    .text-blocks-box{
        max-width: 330px;
        height: 179px;
    }
    .text-blocks-title{
        font-size:24px;
        line-height: 24px;
        letter-spacing:-2px;
    }
    .text-blocks-text{
        font-size:20px;
    }
    .text-block-inner{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
}

@media only screen and (max-width:580px){
        .text-block-inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 20px;
        grid-row-gap: 10px;
    }
     .text-blocks-box{
        width:100%;
        height:105px;
     }
     .text-blocks-title{
        font-size:14px;
        line-height: 14px;
        color:#FD661B;
        letter-spacing:0px;
    }
    .text-blocks-text{
        font-size:14px;
        color:#000;
        letter-spacing:0px;
    }
}