/* Top menu */

#menu-top-menu .nav-link {
    padding: 0.35em 0.5em;
    color: inherit;
    font-size: 1.25rem;
    font-weight: 500;
}
#menu-top-menu li {
    position: relative;
}
#menu-top-menu li:not(:first-child)::before {
    content: '|';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* Menu réseaux sociaux */

.menu-reseaux-sociaux-container li {
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-reseaux-sociaux-container li .nav-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-left: 0.75rem;
    padding: 0;
    background: white;
    border-radius: 100%;
    color: var(--wp--preset--color--color-1);
    font-size: 1rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, opacity 1s var(--reveal-delay, 0s) cubic-bezier(.5, 0, 0, 1), transform 1s var(--reveal-delay, 0s) cubic-bezier(.5, 0, 0, 1);
}
.menu-reseaux-sociaux-container li .nav-link:hover {
    background: var(--wp--preset--color--color-2);
}


/* Menu principal */

.header-container .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.menu-menu-principal-container {
    width: 100%;
}
#menu-menu-principal {
    justify-content: space-between;
    max-width: 50em;
    margin-left: auto;
    padding: 0.5em;
    background: white;
    border-radius: 5em;
}

#menu-menu-principal .nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.75rem;
    padding: 0 0.75rem;
    color: inherit;
    font-size: var(--wp--preset--font-size--medium);
    font-weight: bold;
}

#menu-menu-principal > li:last-child .nav-link {
    font-weight: 500;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, opacity 1s var(--reveal-delay, 0s) cubic-bezier(.5, 0, 0, 1), transform 1s var(--reveal-delay, 0s) cubic-bezier(.5, 0, 0, 1);
}


/* CTA */

.sticky-cta {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    gap: 1.5rem;
}

.sticky-cta i {
    width: 60px;
    height: 60px;
    background-color: var(--wp--preset--color--color-2);
    box-shadow: none;
    color: white;
    font-size: 2rem;
}
.sticky-cta a:hover i {
    background-color: var(--wp--preset--color--color-1) !important;
    color: white !important;
    transform: none !important;
}

.sticky-cta .phone-cta svg {
    width: 60px;
    height: 60px;
}
.sticky-cta .phone-cta svg .bubble {
    transition: fill 0.25s, transform 0.25s;
    fill: var(--wp--preset--color--color-2);
}
.sticky-cta .phone-cta:hover svg .bubble {
    fill: var(--wp--preset--color--color-1);
}