.get-in-touch {
    position: fixed;
    z-index: 1200;
    width: 40px;
    bottom: 64px;
    right: 22px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 18px;
}
.get-in-touch a {
        display: flex;
        width: 48px;
        height: 48px;
        padding: 12px;
        justify-content: center;
        align-items: center;
        border-radius: 67px;
        border: 1px solid #2a2a2a;
        background: #2a2a2a;
        box-shadow: 0px 6px 10px 0px rgba(29, 30, 33, 0.2);
    }
.get-in-touch a svg {
            width: 20px;
            height: 20px;
        }
@media (max-width: 1024px) {
    .get-in-touch {
        bottom: 20px;
}
    }
@media (max-width: 500px) {
        .get-in-touch a {
            margin-top: 10px;
        }
    }
