/* Mobile */
@media screen and (max-width: 428px) {
    .info{
        margin: 0;
        display: flex;
        gap: 32px;
        max-width: 100vw; 
        justify-content: center;
    }
    .info div{
        font: bold 10px/12px 'Montserrat', sans-serif;
        color: #fff;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .info div::before{
        content: '';
        background: transparent url(/assets/images/v2/symbols-mobile.png) no-repeat;
        width: 53px; height: 43px;
        margin-bottom: 8px;
        background-size: 100%;
    }
    .support::before{
        background-position: 0 0; 
    }
    .secure::before{
        background-position: 0 -42px!important; 
    }
    .gdpr::before{
        background-position: 0 -84px!important; 
    }
    .privacy::before{
        background-position: 0 -128px!important; 
    }
}
/* Tablet */
@media screen and (min-width: 429px) and (max-width: 1024px){
    .info{
        margin: 0 auto;
        display: flex;
        gap: 40px;
        max-width: 700px;
    }
    .info div{
        font: bold 13px/17px 'Montserrat', sans-serif;
        color: #fff;
        text-transform: uppercase;
        display: flex;
        align-items: center;
    }
    .info div::before{
        content: '';
        background: transparent url(/assets/images/v2/symbols.png) no-repeat;
        width: 53px; height: 43px;
        margin-right: 14px;
        background-size: 100%;
    }
    .support::before{
        background-position: 0 0; 
    }
    .secure::before{
        background-position: 0 -42px!important; 
    }
    .gdpr::before{
        background-position: 0 -84px!important; 
    }
    .privacy::before{
        background-position: 0 -128px!important; 
    }
    
}
/* Desktop */
@media screen and (min-width: 1025px){
    .info{
        margin: 0 auto;
        display: flex;
        gap: 80px;
    }
    .info div{
        font: bold 13px/17px 'Montserrat', sans-serif;
        color: #fff;
        text-transform: uppercase;
        display: flex;
        align-items: center;
    }
    .info div::before{
        content: '';
        background: transparent url(/assets/images/v2/symbols.png) no-repeat;
        width: 83px; height: 67px;
        margin-right: 14px;
    }
    .support::before{
        background-position: 0 0; 
    }
    .secure::before{
        background-position: 0 -67px!important; 
    }
    .gdpr::before{
        background-position: 0 -134px!important; 
    }
    .privacy::before{
        background-position: 0 -201px!important; 
    }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    
}