.footer {
  background-color: #aa2b4a;
  padding: 16px 0;
}

.footer_logo_link {
  display: flex;
  width: 110px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 16px;
}

.footer_content_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.footer_text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
}

.footer_list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.footer_link {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer_link:hover {
  color: #ffd100;
}

.footer_socials_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer_socials_link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  fill: #ffffff;
  transition: all 0.5s ease;
}

.footer_socials_link:hover {
  border-color: #ffd100;
  fill: #ffd100;
}

.footer_socials_link_img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 24px 0;
  }

  .footer_logo_link {
    margin-bottom: 24px;
  }

  .footer_content_wrap {
    margin-bottom: 24px;
  }

  .footer_text {
    font-size: 16px;
  }

  .footer_list {
    flex-direction: row;
  }

  .footer_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .footer {
    padding: 32px 0;
  }

  .footer_logo_link {
    margin-bottom: 32px;
  }

  .footer_content_wrap {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .footer_list {
    gap: 24px;
  }

  .footer_socials_list {
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .footer_text {
    font-size: 18px;
  }

  .footer_link {
    font-size: 20px;
  }
}
