.footer {
  width: 100%;
  height: auto;
  padding: 10vh 5vw;
  padding-right: 10vw;
  display: flex;
  justify-content: space-between;
  background-color: #111;
  color: #fff;
}
.footer__branding {
  width: 10vw;
  height: max-content;
  text-align: center;
}
.footer__branding img {
  width: 100%;
  height: auto;
  max-height: 15vh;
}
.footer__branding img:not(:last-child) {
  margin-bottom: 3vh;
}
.footer__branding--reduce {
  width: 70% !important;
}
.footer__notice {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__notice-block {
  width: max-content;
  font-size: 1em;
}
.footer__notice__head {
  text-transform: uppercase;
  color: #d29723;
  margin-bottom: 2vh;
}
.footer__notice__links .footer__notice__link:not(:last-child) {
  margin-bottom: 1.5vh;
}
.footer__notice__link {
  display: flex;
  align-items: center;
}
.footer__notice__link img {
  width: 1vw;
  margin-right: 0.5vw;
  height: auto;
}
.footer__notice__link a {
  color: #fff;
}
.footer__notice__link a:hover {
  text-decoration: underline;
}
.footer__medias {
  width: 100%;
  padding: 0 0.5vw;
  display: flex;
  align-items: center;
  height: max-content;
}
.footer__medias-block {
  display: flex;
}
.footer__medias__link {
  background-color: #fff;
  border-radius: 100%;
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__medias__link img {
  width: 60%;
  height: auto;
}
.footer__medias__link:not(:last-child) {
  margin-right: 0.5vw;
}
.footer__medias__brochure {
  background-color: #fff;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  color: #d29723;
  padding: 1vh 0.5vw;
  width: max-content;
  margin-left: auto;
  height: max-content;
}
.footer__medias__brochure > span {
  display: block;
  height: max-content;
}
.footer__medias__brochure img {
  width: 2vw;
  margin-right: 1vw;
  height: auto;
}
.footer__contact {
  font-size: 1em;
}
.footer__contact__title {
  text-transform: uppercase;
  color: #d29723;
}
.footer__contact .footer__contact__block:not(:last-child) {
  margin-bottom: 4vh;
}

@media only screen and (max-width: 1024px) {
  .footer {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 10vh 5vw;
    display: grid;
  }
  .footer__branding {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2vw;
    align-items: center;
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    margin-bottom: 5vh;
  }
  .footer__branding img {
    width: 100%;
    height: auto;
    max-height: 15vh;
  }
  .footer__branding img:not(:last-child) {
    margin-bottom: 0vh;
  }
  .footer__notice {
    width: 100%;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding-right: 3vw;
  }
  .footer__contact {
    width: 100%;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .footer__medias__link {
    width: 7vw;
    height: 7vw;
  }
  .footer__medias__brochure img {
    width: 5vw;
    margin-right: 2vw;
  }
}

@media only screen and (max-width: 420px) {
}
