footer{
    padding: 0 3rem 1rem 3rem;
    margin-top: 9rem;
}

.society{
    font-size: 12vw;
    letter-spacing: 1rem;
    color: var(--text-color);
    overflow: hidden;
    font-family: var(--font-title);
    font-weight: 100;
    line-height: 1;
    margin-bottom: 1.2rem;
}

footer > p:nth-child(2){
    color:white;
    margin-left: 1rem;
    font-family: var(--font-subtitle);
}

.content-ancre-footer{
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-ancre-footer > div:nth-child(1){
    display: flex;
    margin-left: 1rem;
    gap:6rem
}

.content-ancre-footer > div:nth-child(1) > ul{
    display: flex;
    flex-direction: column;
    gap:0.5rem;
    list-style: none;
}

.content-ancre-footer > div:nth-child(1)> ul > li > a{
    color:white;
    text-decoration: none;
    font-family: var(--font-subtitle);
}

.content-ancre-footer > div:nth-child(1) > ul > li > a:hover{
    text-decoration: underline;
}

.socials {
    display: flex;
    gap: 1rem;
    align-self: flex-end;
    flex-direction: column;
}

.logo-instagram{
    width: 60%;
}


.social-circle {
    width: 2rem;
    height: 2rem;
    background-color: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .social-circle:hover {
  transform: scale(1.05);
}

  .text-black{
    color: #0A0A0A!important;
}

.background-black {
    background-color: #0A0A0A !important;
  }

  @media (max-width: 991.98px) {
    .society{
        font-size: 13vw;
    }

    .socials {
        gap:1.5rem
    }

    .social-circle {
        width: 3.5rem;
        height: 3.5rem;
    }

    footer > p:nth-child(2) {
        font-size: 1.8rem;
        margin-left: 0;
    }

    .content-ancre-footer > div:nth-child(1) > ul > li > a {
        font-size: 1.8rem;
    }

    .content-ancre-footer > div:nth-child(1) {
        margin-left: 0;
    }


  }


    @media (max-width: 767.98px) {
        .content-ancre-footer > div:nth-child(1) {
            flex-direction: column;
        }
    }



  @media (max-width: 575.98px) { /* sm- */
    footer > p:nth-child(2) {
        font-size: 1.6rem;
    }



    .content-ancre-footer {
        flex-direction: column;
    }

    .content-ancre-footer > div:nth-child(1) > ul > li > a {
        font-size: 1.6rem;
    }

    .social-circle {
        width: 3.5rem;
        height: 3.5rem;
    }

    .society {
        font-size: 15vw;
        margin-bottom: 1.2rem;
    }

    footer{
        padding: 0 1rem
    }

  }