.social-links {
    background-color: var(--secondary);
    overflow: hidden;
    position: relative;
}

.social-links .socials {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.socials li {
    flex: 1;
    height: 7rem;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.socials li a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.socials li a:first-child::after,
.socials li a:nth-child(2)::after,
.socials li a:nth-child(3)::after,
.socials li a:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.socials li a:first-child:hover:after,
.socials li a:nth-child(2):hover::after,
.socials li a:nth-child(3):hover::after,
.socials li a:nth-child(4):hover::after {
    width: 120%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.socials li a i {
    font-size: 1.6rem;
    color: white;
}

.socials li:first-child {
    background: #f9bcc4;
    position: relative;
}

.socials li:nth-child(2) {
    background: #9aa8b7;
    position: relative;
}

.socials li:nth-child(3) {
    background: #e4d8d0;
    position: relative;
}

.socials li:nth-child(4) {
    background: #7a6e92;
    position: relative;
}

.join-contact {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d3dcff;
}

.join-contact .contact:last-child {
    border-left: 1px solid #d3dcff;
}

.join-contact .contact {
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 3.6rem 0;
}

.join-contact .contact .chapeau {
    font-size: 0.8rem;
    color: var(--blue);
}

.join-contact .contact .title {
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.join-contact .contact .text {
    border-radius: 0.4rem;
    padding: 0.3rem 1.2rem;
    font-size: 0.6rem;
    font-weight: 500;
    margin-top: 0.4rem;
    background: var(--secondary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    background: white;
}

.bottom-section-left,
.bottom-section-right {
    padding: .4rem;
    flex: 1;
    align-items: center;
    display: flex;
}

.bottom-section-right {
    border-left: 1px solid #d3dcff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-section-right .address {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bottom-section-left .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: Manrope;
}


/* .bottom-section-left .links a,
  .bottom-section-left .links  */

.copyright {
    font-size: 0.36rem;
    color: #4e4460;
    font-family: Manrope;
}

.bottom-section-right .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address .icone {
    align-items: center;
    background: #cedfe6;
    border-radius: 0.3rem;
    display: flex;
    font-size: 0;
    height: 1.5rem;
    justify-content: center;
    position: relative;
    width: 1.5rem;
}

.address .icone img {
    height: .9rem;
}

.address .texte {
    color: #4e4460;
    font-family: Manrope, sans-serif;
    font-size: 0.3rem;
}

.address .texte b {
    font-size: 0.3rem;
}

.scrolltop {
    border-radius: 0.4rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 500;
    margin-top: 0.4rem;
    background: #cedfe6;
    color: #4e4460;
}

.bottom-section-right {
    border-left: 0;
    border-bottom: 1px solid #d3dcff;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
    background: var(--text);
    border-radius: 10em;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: -1px 3px 10px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -1px 3px 10px 3px rgba(0, 0, 0, 0.1);
    box-shadow: -1px 3px 10px 3px rgba(0, 0, 0, 0.1);
}

.whatsapp svg {
    width: 36px;
    height: 36px;
    color: white;
}

.wobble {
    animation: wobble 2s ease infinite;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

@media screen and (max-width: 768px) {
    .whatsapp {
        right: 20px;
    }
}