.footer {
  background-color: #00266e;
  padding: 16px 0;
}

.footer_logo_link {
  display: flex;
  width: 90px;
  margin: 0 auto;
  margin-bottom: 16px;
  transition: transform 0.9s ease;
}

.footer_bottom_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.footer_text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffffcc;
  text-align: center;
}

.footer_bottom_list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.footer_bottom_link {
  font-size: 16px;
  font-weight: 600;
  color: #ffffffcc;
  transition: all 0.9s ease;
}

.footer_bottom_link:hover {
  color: #ffffff;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 24px 0;
  }

  .footer_logo_link {
    margin-bottom: 24px;
  }

  .footer_text {
    font-size: 16px;
  }

  .footer_bottom_list {
    flex-direction: row;
  }

  .footer_bottom_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .footer {
    padding: 32px 0;
  }

  .footer_logo_link {
    margin-bottom: 32px;
  }

  .footer_bottom_wrap {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer_bottom_list {
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .footer_text {
    font-size: 18px;
  }

  .footer_bottom_link {
    font-size: 20px;
  }
}
