.footer {
  background: var(--concrete-dark);
  position: relative;
  font-family: "Open Sans Condensed" !important;
}
.footer__sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-direction: column;
  padding: 25px 0;
}
.footer__sponsors-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.footer__sponsors div {
  color: white;
  text-transform: uppercase;
}
.footer__content {
  display: flex;
  padding: 40px 20px 22px;
  justify-content: center;
  align-content: center;
  column-gap: 45px;
  row-gap: 40px;
  margin: auto;
}
.footer__content-info {
  display: flex;
  column-gap: 40px;
}
.footer__content-info div {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
.footer__content-info .media-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer__content-info .media-icons img {
  border-radius: 50%;
  border: 3px solid var(--white);
}
.footer__content-info .links {
  width: 204px;
}
.footer__content-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  max-width: var(--layout-width);
  row-gap: 20px;
}
.footer__copyright {
  background: #101010;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 34px;
  color: var(--concrete-light);
}
.footer .links .combine-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}
.footer .links .title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 34px;
  color: var(--white);
}
.footer .links li {
  font-family: "Open Sans Condensed" !important;
  min-height: 34px;
  color: var(--cream);
  text-decoration: none;
  font-size: 18px;
  line-height: 34px;
}
.footer .links a, .footer .links span {
  color: var(--cream);
  text-decoration: none;
  font-family: "Open Sans Condensed" !important;
  font-size: 18px;
  line-height: 34px;
  width: max-content;
  align-items: center;
  display: flex;
  cursor: pointer;
}
.footer .links a:hover, .footer .links span:hover {
  color: var(--brand-light);
}

.icon {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1300px) {
  .footer__content {
    padding: 40px 20px 22px;
    display: grid;
    column-gap: 45px;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .footer__content-info, .footer__content-links {
    margin: auto;
  }
}
@media screen and (max-width: 991px) {
  .footer__content-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .footer__content-links {
    grid-template-columns: 1fr;
    column-gap: 34px;
    row-gap: 26px;
  }
  .footer__content-info {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .footer__content-info div {
    display: contents;
  }
  .footer__content-info div img {
    order: 1;
  }
  .footer__content-info div .media-icons {
    order: 3;
  }
  .footer__content .links {
    text-align: center;
    order: 2;
    padding-bottom: 6px;
  }
  .footer__content .links .combine-wrapper {
    display: contents;
  }
  .footer__content .links li, .footer__content .links a {
    font-size: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer__content .links li a, .footer__content .links a a {
    margin-left: 5px;
    width: max-content;
  }
  .footer__sponsors {
    padding-bottom: 50px;
    gap: 30px;
  }
  .footer__sponsors-wrapper {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .footer__sponsors-text {
    order: 1;
  }
}
