.app-link-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.app_link {
    overflow: hidden;
    width: 190px;
    height: 56px;
    border-radius: 6px;
    background-image: url(../images/svg/google-play.svg);
    background-position: 0px 0px;
    background-size: auto;
}

.app_link.apple {
    overflow: hidden;
    background-image: url(../images/svg/apple-store.svg);
    background-position: 50% 50%;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .store_link.apple {
        background-position: 50% 50%;
    }
}

@media screen and (max-width: 991px) {
    .app_link.apple {
        background-position: 50% 50%;
        background-size: contain;
    }
}

@media screen and (max-width: 991px) {
    .app_link {
        overflow: hidden;
        height: 36px;
        max-width: 120px;
        background-size: 120px;
        background-repeat: repeat-x;
        background-attachment: scroll;
    }

    .home-icon{
        max-width: 90px;
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .app_link {
        width: 120px;
        max-width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .app_link {
        margin-bottom: 0px;
    }
    .home-icon{
        max-height: 90px;
    }
}

.home-icon{
    max-height: 90px;
}

