footer {
  border-top: 1px solid #dfe3ff;
  padding: 34px 0 18px;
  background: #fff;
}

footer .container {
  width: min(1440px, 92%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 28px;
}

footer .logo-icon {
  width: 46px;
  height: 46px;
  /* border: 4px solid #512cf3; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  color: #512cf3;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(91, 53, 245, .28);
}

footer .logo-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

footer h4 {
  font-size: 15px;
  margin-bottom: 16px;
}

footer a,
footer p {
  display: block;
  color: #22255f;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #edf0ff;
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #30336f;
}

@media (max-width: 992px) {

  .course-grid,
  .promo-grid,
  .call-box,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}