.footer {
  background: #040a63;
  padding: 16px 0;
}

.footer_top_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #aad7f133;
}

.footer_logo_link {
  display: flex;
  width: 90px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.footer_top_text {
  font-size: 12px;
  font-weight: 500;
  color: rgb(204, 204, 204);
  text-align: center;
}

.footer_top_menu_item {
  margin-bottom: 8px;
}

.footer_top_menu_item:last-child {
  margin-bottom: 0;
}

.footer_top_menu_link {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  transition: ease 0.9s;
}

.footer_top_menu_link:hover {
  color: #00eeff;
}

.footer_top_address_list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer_top_address_item {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.footer_top_address_item:last-child {
  margin-bottom: 0;
}

.footer_top_address_img {
  font-size: 14px;
  color: #ffffff;
}

.footer_top_address_link {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  transition: ease 0.9s;
}

.footer_top_address_link:hover {
  color: #00eeff;
}

.footer_top_title {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.footer_top_socials_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer_top_socials_link {
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  fill: #ffffff;
  transition: ease 0.9s;
}

.footer_top_socials_link:hover {
  border-color: #00eeff;
  fill: #00eeff;
}

.footer_top_socials_link_img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.footer_bottom_wrapper {
  padding-top: 16px;
}

.footer_bottom_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.footer_bottom_link {
  font-size: 16px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  transition: ease 0.9s;
}

.footer_bottom_link:hover {
  color: #00eeff;
}

.footer_bottom_text {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: rgb(204, 204, 204);
}

@media screen and (min-width: 768px) {
  .footer_top_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer_top_wrap {
    padding: 0 16px;
  }

  .footer_top_menu_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_top_address_item {
    align-items: baseline;
  }

  .footer_top_address_link {
    text-align: center;
  }

  .footer_bottom_list {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 24px 0;
  }

  .footer_top_wrapper {
    padding-bottom: 24px;
  }

  .footer_top_wrap {
    padding: 0 24px;
  }

  .footer_logo_link {
    margin-bottom: 24px;
  }

  .footer_top_menu_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer_top_title {
    margin-bottom: 24px;
  }

  .footer_bottom_wrapper {
    padding-top: 24px;
  }

  .footer_bottom_list {
    margin-bottom: 24px;
    gap: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .footer {
    padding: 32px 0;
  }

  .footer_top_wrapper {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 32px;
  }

  .footer_top_wrap {
    padding: 0 32px;
    border-right: 1px solid #aad7f133;
  }

  .footer_top_wrap:last-child {
    border: none;
  }

  .footer_top_menu_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_top_address_list {
    align-items: flex-start;
  }

  .footer_top_address_link {
    text-align: left;
  }

  .footer_bottom_wrapper {
    padding-top: 32px;
  }

  .footer_bottom_list {
    margin-bottom: 32px;
  }

  .footer_bottom_list {
    gap: 40px;
  }
}

@media screen and (min-width: 1440px) {
  .footer_bottom_list {
    gap: 48px;
  }
}
