.footer {
  background: rgb(0, 0, 0);
}

.footer__container {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 50px;
  font: 400 18px/25px "Montserrat", sans-serif;
}

.footer__copyright {
  text-align: right;
  width: 40%;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo img {
  object-fit: contain;
  width: 150px;
  margin: 0 30px;
}

.footer__conf {
  width: 40%;
}

.footer__item a {
  border-bottom: 1px solid white;
  text-decoration: none;
  transition: all 0.4s;
  color: #ffffff;
}

.footer__item a:hover {
  color: rgba(255, 255, 255, 0.541);
  border-bottom: 1px solid rgba(255, 255, 255, 0.541);
}

@media (max-width: 992px) {
  .footer__container {
    padding: 20px 20px 50px;
    font: 400 16px/22px "Montserrat", sans-serif;
  }
  .footer__logo img {
    width: 88px;
  }
}

@media (max-width: 740px) {
  .footer__container {
    padding: 20px 5px 70px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
  }
  .footer__logo {
    order: 1;
  }
  .footer__conf {
    order: 2;
    width: 100%;
  }
  .footer__copyright {
    width: 100%;
    order: 3;
    text-align: center;
    font: 400 14px/20px "Montserrat", sans-serif;
  }
}