.contact-widget {
    position: fixed;
    left: 20px;
    bottom: 40px;
    z-index: 1000;
    gap: 10px;
}

.contact-widget__item {
    width: clamp(40px, 4.88vw, 50px);
    height: clamp(40px, 4.88vw, 50px);
    display: block;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.contact-widget__item:hover {
    -webkit-transform: translateY(-3px) scale(1.05);
    -moz-transform: translateY(-3px) scale(1.05);
    -ms-transform: translateY(-3px) scale(1.05);
    -o-transform: translateY(-3px) scale(1.05);
    transform: translateY(-3px) scale(1.05);
}

.contact-widget__item--max {
    background-image: url('images/icon-max.svg');
}

.contact-widget__item--telegram {
    background-image: url('images/icon-telegram.svg');
}

@media only screen and (max-width: 1024px) {
    .contact-widget {
        bottom: 70px;
    }
}