.image {
    background-image: url("/banner-mob.webp");
    height: 0;
    min-width: 240px;
    padding-bottom: 200%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width: 800px) {
    .image {
        background-image: url("/banner.webp");
        padding-bottom: 100%;
    }
}

.telegram-button {
    top: 90px;
    background: #0088cc; /*цвет кнопки */
}

.whatsapp-button {
    top: 200px;
    background: #2fb943; /*цвет кнопки*/
}

.phone-button {
    top: 310px;
    background: #255c2d; /*цвет кнопки*/
}

.telegram-button:before,
.telegram-button:after {
    border: 1px solid #0088cc; /*цвет анимированных волн от кнопки*/
}

.whatsapp-button:before,
.whatsapp-button:after {
    border: 1px solid #2fb943; /*цвет анимированных волн от кнопки*/
}

.phone-button:before,
.phone-button:after {
    border: 1px solid #255c2d; /*цвет анимированных волн от кнопки*/
}

.button {
    position: fixed;
    right: 13px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 55px; /*ширина кнопки*/
    height: 55px; /*высота кнопки*/
    color: #fff;
    text-align: center;
    line-height: 53px; /*центровка иконки в кнопке*/
    font-size: 35px; /*размер иконки*/
    z-index: 9999;
}

.button > img {
    filter: invert();
}

/* .telegram-button a, .whatsapp-button a, .phone-button a {
    color: #fff;
} */

.button:before,
.button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}
 
.button:after {
    animation-delay: .5s;
}

@keyframes animate {
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}
