body {
    background:#1d5b1b24;
}
.hero {
    background-image: url(../img/hero-bg.webp);

    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply; 
}
/* .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7); 
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2; 
} */

.hero__wrap-item {
    background-color: #fff;
}
.hero__wrap-item p {
    color: var(--color-black);
}
.hero__wrap-item::before, .about__item::before, .gear__item::before, .payments__item::before, .payments__tabs-btn::before, .request__item::before, .request__card::before, .request__footer-info::after, .support__item::before, .benefits__item::before, .offcanvas__menu-link::before, .static::before, .support__list-item::before, .benefits__list-item::before {
    display: none;
}
.hero__links-info {
    background-color: rgba(217,116,88, .7);
}
.hero__links-info:hover {
    background-color: rgba(217,116,88, .9);
}
.footer__inner {
    height: auto;
    min-height: 100px;
}
@media (max-width: 940px) {
    .footer__menu {
        padding: 0 10px;
        text-align: center;
    }
}


/* body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
} */

.contact-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.contact-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 280px;
    width: fit-content;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.whatsapp-bg {
    background-color: #25D366; /* WhatsApp зелёный */
}

.phone-bg {
    background-color: #007bff; /* Синий для вызова */
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-number {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.contact-label {
    font-size: 12px;
    color: #888;
}

a {
    text-decoration: none;
    color: inherit;
}