@media screen and (min-width: 320px) {
  .footer {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: row;
    font-size: 20px;
    justify-content: space-between;
    padding: 5px 5%;
    position: relative;
    width: 100%;
  }
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  .footer a:active, .footer a:hover, .footer a:focus, .footer a:target {
    color: #fff;
  }
  .footer__logo-container {
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-height: 85px;
    max-width: 250px;
    transform: rotate(-90deg) translate(50%, 0);
    width: 25%;
  }
  .footer__logo-container * {
    max-width: inherit;
    max-height: inherit;
  }
  .footer__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 75%;
  }
  .footer__top-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer__nav-section li {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    padding-top: 15px;
    width: 70%;
  }
  .footer__nav-section li ul {
    margin-block: 5px;
    padding: 0;
  }
  .footer__nav-section li :hover {
    color: #2272FF;
  }
  .footer__contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .footer__contact-form h3 {
    font-size: 2em;
    margin: 0;
  }
  .footer__contact-form input, .footer__contact-form textarea {
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 1.5em;
    margin-top: 12px;
    width: 100%;
  }
  .footer__contact-form .contact-sign-about {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 8px;
  }
  .footer__contact-form textarea {
    width: 100%;
    resize: none;
  }
  .footer__contact-form button {
    background-color: #181818;
    border: 1px solid #fff;
    color: #fff;
    float: right;
    font-size: 22px;
    margin-top: 12px;
    padding: 4px 14px;
  }
  .footer__bottom-container {
    display: flex;
    flex-direction: column;
  }
  .footer__social-link-section {
    border-bottom: 1px solid #fff;
  }
  .footer__social-link-section li {
    display: flex;
    flex-direction: row;
    height: 24px;
    margin: 10px 0;
    padding: 0;
    width: 24px;
  }
  .footer__social-link-section li ul {
    margin: 0 10px;
    padding: 0;
  }
  .footer__social-link-section li * {
    height: inherit;
    width: inherit;
  }
  .footer__additional-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 8px;
    text-align: center;
  }
  .footer__additional-info-section > * {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .footer__logo-container {
    width: 15%;
  }
  .footer__content {
    width: 85%;
  }
  .footer__top-container {
    flex-direction: row;
  }
  .footer__contact-form {
    width: 65%;
  }
  .footer__contact-form h3 {
    font-size: 4em;
  }
  .footer__contact-form input, .footer__contact-form textarea {
    width: 48%;
  }
  .footer__contact-form textarea {
    width: 100%;
  }
  .footer__contact-form .contact-sign-about {
    display: flex;
    flex-direction: row;
  }
  .footer__additional-info-section {
    flex-direction: row;
    justify-content: space-between;
  }
}/*# sourceMappingURL=footer.css.map */