.footer {
  width: 100%;
  background-color: #2c3545;
  box-sizing: border-box;
  padding: 50px 20px;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer__content-first,
.footer__content-second,
.footer__content-third {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 200px;
}

.footer__content-first {
  gap: 20px;
  margin-top: 80px;
}

.footer__content-second,
.footer__content-third {
  margin-top: 80px;
}

.footer__content-secondtitle,
.footer__content-thirdtitle {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer__content-bigtext,
.footer__content-firsttext,
.footer__content-secondtext {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.footer__content-bigtext {
  max-width: 57%;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer__content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer__content-first,
  .footer__content-second,
  .footer__content-third {
    margin-top: 0;
    min-width: unset;
    text-align: center;
  }
}