.banner-web {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1001;

    display: none;
    justify-content: center;
    align-items: center;

    width: 100%;
}

.banner-web a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.banner__img {
    height: 10rem;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.banner-web__button {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background: none;
    border: none;
    color: #fff;
    color: #000;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.banner-web__button:hover {
    opacity: 0.7;
}

.banner-web__button i {
    pointer-events: none;
}

@media screen and (max-width: 1060px) {
    .banner__img {
        height: 15rem;
    }
}