#stores{
    background: #000000;
    padding: 50px 0 0
}

#stores h2{
    color: #fff;
    text-align: center;
}

#stores .header p{
    color: #fff;
    text-align: center;
}

#stores .header{
    margin-bottom: 50px;
}

#stores .wrap{
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    align-items: center;
}

#stores img{
    width: 568px;
    max-width: 568px;
    height: auto;
    aspect-ratio: 568/453;
    object-fit: cover;
}

#stores .right{
    padding-left: 50px;
}

#stores h3{
    font-size: 24px;
    line-height: 29px;
    font-weight: 800;
}

#stores .meta span{
    font-weight: 700;
    margin-right: 10px;
}

#stores .meta a{
    color: #295B4E;
    font-weight: 500;
}

#stores .meta{
    margin-bottom: 20px;
}

#stores .content{
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 20px;
}

#stores ul{
    column-count: 2;
    list-style: none;
    padding: 0;
}

#stores li{
    font-weight: 700;
    margin-bottom: 10px;
}

#stores li i{
    color: #295B4E;
    margin-right: 10px;
}

#stores .click{
    margin-top: 30px;
}

#stores .location{
    display: flex;
}

@media(max-width:1200px){
    #stores .wrap{
        flex-direction: column;
    }
    #stores .right{
        padding: 0;
        margin-top: 20px;
    }
}

@media(max-width:767px){
    #stores img{
        width: 100%;
    }
}

@media(max-width:576px){
    #stores ul{
        column-count: 1
    }
}