#machines-icon-pos {
    position: absolute;
    z-index: 1000;
    right: 6vw;
    bottom: -4.5vw;
}

#machines-icon {
    width: 17vw;
    border: none;
}

#rs-team-logo {
    position: fixed;
    left: 6vw;
    z-index: 1000;
    height: clamp(71px, 6vh, 144px)
}

#phone-number-link, #rs-team-page-link, #email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
}

#phone-icon {
    filter: hue-rotate(90deg) saturate(1.5);
}

#email-icon {
    filter: hue-rotate(53deg) saturate(1.5);
}

#website-icon {
    filter: hue-rotate(257deg) saturate(1.5);
}

.footer, .footer-welcome {
    position: absolute;
    background: transparent;
    width: 100%;
    z-index: 1002;
    bottom: 0%;
    min-height: 8dvh;
    min-height: 8vh;
    box-sizing: border-box;
    env(safe-area-inset-bottom); /* support for notch / iPhone */
}

#phone-icon, #email-icon, #website-icon {
    width: 43px;
    height: 41px;
}

.footer-welcome {
    padding-top: 0;
}

#email-link {
    font-size: 14px;
}

#company-contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: white;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    opacity: 0.9;
}

.glass-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25),
        inset 0 1px 2px rgba(255,255,255,0.35);
    position: relative;
    overflow: hidden;
}

.glass-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;

    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    opacity: 0.4;
}

.glass-icon img {
    height: clamp(20px, 7vw, 40px);
    z-index: 1;

    filter: brightness(0) invert(1);
}


@media (max-width: 1209px) {
    #email-link, #rs-team-page-link, #phone-number-link {
        font-size: 12px;
    }
    .contact-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}

@media (max-width: 955px) {
    #rs-team-logo {
        display: none;
    }
}


@media (max-width: 800px) {
  #email-link, #rs-team-page-link, #phone-number-link {
    font-size: 10px;
    flex-direction: column;
  }
}

@media (max-width: 505px) {
  #email-link, #rs-team-page-link, #phone-number-link {
    font-size: 10px !important;
  }
}

@media (max-width: 448px) {
     #company-contacts div img {
         display: block;
     }

}
