.section#contact{
    margin: 0 calc(50% - 50vw);
    padding: 2rem calc(50vw - 50%);
    background: linear-gradient(85deg, #217AC5 0%, #0094CF 100%);
    color: white;
    text-align: center;
    & h2{
        color: white;
        margin-top: 0;
    }
}

.contact-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-size: 2.375rem;
    font-weight: 600;
}

.contact-tel::before {
    font-family: "Font Awesome 6 Free";
    content: '\f2a0';
    font-weight: 900;
}

@media screen and (max-width: 768px) {
    .contact-tel {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-tel {
        font-size: 1.5rem;
    }
}