.facebook__logo span {
    text-indent: 9999px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}
/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */

/**
 * Global footer rules
 */

 .footer__bloc, .menu--footer{
     background-color: #000000;
     color: white;
     font-family: 'Open Sans', sans-serif;
     font-size: 16px;
 }

 .menu--footer .menu__link{
    color: white !important;
    font-size: 13px;
 }
 .footer__menu .menu__link:hover{
     text-decoration: underline;
 }

 #block-footerlogo {
    text-align: center;
 }

/**
*  Mobile
*/

@media(max-width: 414px){
    .footer__bloc{
        display:flex;
        flex-direction: column;
        padding: 1em 0em 1em 3.5em;
        position: relative;
    }
    .footer__bloc .field__item{
        position: relative;
        padding: 1rem;
    }
    .footer__bloc h3{
        font-weight: 700;
        font-size: 20px;
    }
    .footer__bloc p{
        font-weight: 400;
        font-size: 16px;
        margin-top: -1em;
    }
    .menu--footer > .menu--level-0{
        display: inline-flex;
        width: 100%;
        justify-content: space-evenly;
        margin: 1rem 0rem 1rem 0rem;
    }
}



@media (min-width: 415px) and (max-width: 799px){
    .footer__bloc{
        text-align: center;
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .menu--footer > .menu--level-0{
        display: inline-flex;
        width: 100%;
        justify-content: space-evenly;
        margin: 1rem 0rem 1rem 0rem;
    }
}

/**
*  Desktop
*/

@media(min-width: 800px){
    .footer__bloc{
        display: flex;
        flex-direction: row;
        padding: 3em;
        justify-content: center;
        position: relative;
    }
    .footer__bloc .field__item > img{
        margin-top: 1.6rem;
        margin-right: 2rem;
    }
    .field--name-field-body2 > .field__item{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .menu--footer > .menu--level-0{
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin: 1rem 0rem 1rem 0rem;
    }
    .menu--footer .menu__item{
        margin-left: 2rem;
        margin-right: 2rem;
    }
}


@media(min-width: 1100px){
  .footer__bloc{
      display: flex;
      flex-direction: row;
      padding: 3em;
      justify-content: center;
      position: relative;
  }
  .footer__bloc .field__item > img{
      margin-top: 1.6rem;
      margin-right: 2rem;
  }
  .field--name-field-body2 > .field__item{
      margin-left: 11rem;
      margin-right: 11rem;
  }
  .menu--footer > .menu--level-0{
      display: inline-flex;
      width: 100%;
      justify-content: center;
      margin: 1rem 0rem 1rem 0rem;
  }
  .menu--footer .menu__item{
      margin-left: 2rem;
      margin-right: 2rem;
  }
}


/*
 * Block Offical logos into the footer.
 */

.block__footer-logos {
    padding-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.block__footer-logos > *{
    max-width: 91px;
    max-height: auto;
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .block__footer-logos > *{
        max-width: 123px;
        max-height: auto;
        width: 100%;
    }

    .block__footer-logos {
        padding-top: 40px;
        gap: 50px;
    }
}


/*
 * Block Footer Content
 */

.block--footer__content {
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;

    /* Font settings */
    font-family: Raleway;
    color: white;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}


@media screen and (min-width: 1000px) {
    .block--footer__content {
        padding-top: 50px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 60px;

        /* Font settings */
        font-family: Raleway;
        color: white;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
    }
}

/*
 * Block facebook CTA
 */

.block__facebook {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.facebook__logo {
    position: relative;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    width: 50px;
    height: 50px;
}

.facebook__logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background-image: url('../images/socials/logo_fb.svg');
    background-size: cover;
}
