.footer ul, .footer ol {
  margin: 0;
  list-style-type: none;
}

.footer a {
  text-decoration: none;
}

.footer {
  padding: 70px 0;
  background: #000;
  color: #fff;
  font-size: 17px;
  font-family: Manrope;
  position: relative;
}

.footer-nw {
  background: #000;
}

.footer .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media (min-width: 320px) {
  .footer .container {
    width: 320px;
  }
}

@media (min-width: 640px) {
  .footer .container {
    width: 640px;
  }
}

@media (min-width: 1024px) {
  .footer .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .footer .container {
    width: 1200px;
  }
}

.footer a {
  color: #fff;
}
.footer-nav {
  margin-bottom: 50px;
  display: grid;
  grid-gap: 20px;
}
@media (min-width: 640px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .footer-nav {
    grid-template-columns: repeat(5, 1fr);
  }
}
.footer-nav__title {
  margin-bottom: 10px;
  color: #d29df9;
  font-family: BebasNeue;
  font-size: 25px;
}
@media (min-width: 640px) {
  .footer-nav__title {
    margin-bottom: 20px;
    font-weight: 600;
  }
}
.footer-list {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 1024px) {
  .footer-list {
    font-size: 14px;
  }
}
.footer-list__link {
  color: #fff;
}
.footer-list__link:hover {
  text-decoration: underline;
}
.footer-grid {
  margin: 50px 0;
  padding: 25px 0;
  border: 1px solid #d29df9;
  border-left: none;
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer-grid {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-grid__title {
  margin-bottom: 10px;
  color: #7f26c5;
}
@media (min-width: 640px) {
  .footer-grid__title {
    margin-bottom: 20px;
  }
}
.footer-grid__logo {
  width: 200px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .footer-social {
    font-size: 14px;
  }
}
.footer-social__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social__img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.footer__entry-content {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .footer__entry-content {
    font-size: 14px;
  }
}
.footer-bottom {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-bottom a {
  color: #7f26c5;
}
@media (min-width: 1024px) {
  .footer-bottom {
    font-size: 14px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-theme-light {
  background: #eeeeee;
  color: #000;
}
.footer-theme-light a {
  color: #000;
}
.footer-theme-light .svg path {
  fill: #000;
}