.footer {
  background: #357dc1;
  color: #fff;
  margin-top: auto;
  margin-bottom: 0;
}
.footer__layout {
  display: grid;
  grid-template-columns: 1fr 2fr 4fr 2fr;
}
.footer__social-title {
  font-size: 0.7142857143vw;
  line-height: 1.2em;
  color: #fff;
  font-family: "Corbel", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.footer__social-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__social-btn {
  width: 1.5306122449vw;
  height: 1.5306122449vw;
  border: 2px solid #fff;
  border-radius: 5px;
  display: flex;
}
.footer__social-icon {
  width: 80%;
  height: 80%;
  object-fit: contain;
  margin: auto;
  display: block;
}
.footer__interior {
  display: flex;
}
.footer__interior-link {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
}
.footer__interior-link:hover {
  color: #fff;
  text-decoration: none;
}
.footer__interior-img {
  object-fit: contain;
  width: 80%;
  height: 80%;
  display: block;
  margin: auto;
}
.footer__list, .footer__contacts {
  font-size: 0.7142857143vw;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__list-link, .footer__contacts-link {
  color: #fff;
  text-transform: uppercase;
}
.footer__list-link:hover, .footer__contacts-link:hover {
  color: #fff;
  text-decoration: none;
}
.footer__oferta {
  font-size: 12px;
  line-height: 1.5em;
  width: 100%;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 1264px) {
  .footer__layout {
    grid-template-columns: 150px 300px 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "list list list" "social interior contacts";
    grid-gap: 20px;
  }
  .footer__social {
    grid-area: social;
  }
  .footer__social-title {
    font-size: 14px;
  }
  .footer__social-btn {
    width: 30px;
    height: 30px;
  }
  .footer__interior {
    grid-area: interior;
  }
  .footer__list {
    grid-area: list;
  }
  .footer__contacts {
    grid-area: contacts;
  }
  .footer__list, .footer__contacts {
    font-size: 14px;
  }
}
@media screen and (max-width: 960px) {
  .footer__layout {
    grid-template-columns: 150px 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "list list" "contacts contacts" "social interior";
  }
  .footer__social {
    grid-area: social;
  }
  .footer__social-title {
    font-size: 14px;
  }
  .footer__social-btn {
    width: 30px;
    height: 30px;
  }
  .footer__interior {
    grid-area: interior;
  }
  .footer__list {
    grid-area: list;
  }
  .footer__contacts {
    grid-area: contacts;
  }
  .footer__list, .footer__contacts {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .footer__layout {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "list" "contacts" "interior" "social";
  }
  .footer__social {
    max-width: 150px;
    margin: auto;
  }
  .footer__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__list-item {
    margin: 10px;
  }
  .footer__oferta {
    font-size: 10px;
  }
}

/*# sourceMappingURL=footer.css.map */
