.block:nth-of-type(odd){
    background: #F8F8F8;
}

.block{
    padding: 50px 0;
}

.block .row{
    align-items: center;
}

.block img{
    width: 100%;
    height: auto;
    max-width: 532px;
    aspect-ratio: 532/445;
    object-fit: cover;
}

.block .content{
    padding-left: 50px;
}

.block h2{
    color: #111111;
    font-size: 32px;
    font-weight: 800;
    line-height: 45px;
}

.block p{
    font-size: 17px;
    font-weight: 500;
    color: #111111;
}

.block .stores{
    margin-top: 30px;
}

.block .stores p{
    font-weight: 700;
}

.block ul{
    column-count: 2;
    list-style-type: none;
    padding: 0;
}

.block .stores a{
    color: #275B4E;
    font-weight: 500;
}

.block .stores i{
    margin-right: 10px;
}

.block .stores li{
    margin-bottom: 10px;
}

.block .click{
    margin-top: 30px;
}

@media(max-width:1200px){
    .block img{
        margin: 0 auto;
        display: block;
    }
    .block .content{
        padding: 0;
    }
}

@media(max-width:576px){
    .block ul{
        column-count: 1;
        width: 100%;
    }
}