/*Стили только для футера*/
*,
*::before,
*::after {
box-sizing: border-box;
}

footer {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1160px;
  color: #838AA7;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

footer p {
  margin: 0 0 10px;
}

footer a {
  color: #838AA7;
  text-decoration: none;
  border : none;
}

.footer__logo{
  width: 84px;
}

.footer__links-list {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer_course_container{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 720px) {
  footer {
    display: flex;
    grid-template-columns: 1fr 200px;
    justify-content: flex-start;
    gap: 40px 50px;
    padding: 40px 24px;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
  }

  .footer__links-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    grid-column: 1 /  -1;
    gap: 20px;
    order: 1;
  }

  .footer-container{
    padding-bottom: 80px;
  }
  .footer_course_container{
    align-items: center;
  }
}