.footer {
  color: #fff;
  background-color: var(--grayColor-2);
  font-size: 11px;
  padding: 4em 0;
}

.footer--title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1.1em;
}

.footer--contact-information a,
.footer--contact-information a:hover,
.footer--contact-information a:focus {
  color: #fff;
}

.footer--links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 182px; */
  padding: 0;
}

.footer--img-gov {
  width: 185px;
  margin: 0.5em auto;
}

.footer--social-media {
  display: flex;
  justify-content: space-around;
  font-size: 10.5px;
  font-family: "Raleway";
  font-weight: 600;
  padding: 2em 0 3.2em;
}

.footer--social-media-btn,
.footer--social-media-btn:hover,
.footer--social-media-btn:focus {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer--social-media-btn img {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  margin-right: 0.5em;
  background-color: var(--grayColor-3);
  transition: all 0.3s;
}

.footer--social-media-btn:hover img,
.footer--social-media-btn:focus img {
  background-color: var(--grayColor-4);
}

.footer--links-bg {
  background-color: var(--grayColor-3);
  display: flex;
  padding: 0 0.5em;
}

.footer--links-bg a {
  color: #fff;
  text-align: center;
  font-size: 10.5px;
  font-family: "Raleway";
  font-weight: 600;
  display: inline-flex;
  height: 28px;
  padding: 0 0.6em;
  align-items: center;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  transition: all 0.3s;
}

.footer--links-bg a:hover,
.footer--links-bg a:active {
  background-color: var(--grayColor-4);
  text-decoration: none;
}

.footer--links-bg a:not(:first-child)::before {
  content: "";
  left: -0.5px;
  border-left: solid 1px #fff;
  height: calc(100% - 1.5em);
  display: block;
  position: absolute;
  top: 0.75em;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .footer--social-media {
    flex-wrap: wrap;
    margin-left: 1.5em;
    margin-right: 1.5em;
  }

  .footer--social-media-btn {
    margin-bottom: 0.5em;
  }

  .footer--links-bg {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 326px) and (max-width: 457px) {
  .footer--links-bg a:last-child::before {
    content: none;
  }
}

@media screen and (max-width: 326px) {
  .footer--links-bg a:nth-child(2)::before {
    content: none;
  }
}
