/** May the force of SCSS be with you */
.logo-store a{
    display: block;
    text-align: center;
    width: inherit;
    height: inherit;
}
.logo-store a span{
    display: block;
    position: absolute;
    margin: 0 auto;
    left: 0px;
    right: 0;
    bottom: 2px;
    font-size: 11px;
    color: #222222;
}
@media(max-width: 991px) {
    .logo-store a span{
        font-size: 13px;
        left: 0;
        bottom: -9px;
    }
}
@media (max-width: 767px) {
    .logo-store a{
        width: 200px;
    }
    .logo-store a span {
        font-size: 11px;
        bottom: 0px;
        font-style: italic;
        font-weight: bold;
    }
}
@media(max-width: 570px) {
    .logo-store a span{
        font-size: 10px;
    }
}
