.footer_top_wrapper {
  background-color: #0c77a4;
  padding: 16px 0;
}

.footer_title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffffcc;
  text-align: center;
  text-transform: uppercase;
}

.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.9s ease;
}

.footer_socials_link_img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer_socials_link.facebook:hover {
  background-color: #365493;
}

.footer_socials_link.mail:hover {
  background-color: #f89a1e;
}

.footer_socials_link.instagram:hover {
  background-color: #774430;
}

.footer_socials_link.youtube:hover {
  background-color: #cb2027;
}

.footer_socials_link.spotify:hover {
  background-color: #010101;
}

.footer_bottom_wrapper {
  background-color: #222222;
  padding: 16px 0;
}

.footer_logo_link {
  display: flex;
  width: 70px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 16px;
  transition: transform 0.9s ease;
}

.footer_logo_link:hover {
  transform: scale(1.1);
}

.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: 768px) {
  .footer_title {
    font-size: 42px;
  }
}

@media screen and (min-width: 1024px) {
  .footer_top_wrapper {
    padding: 24px 0;
  }

  .footer_title {
    font-size: 46px;
  }

  .footer_bottom_wrapper {
    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_top_wrapper {
    padding: 32px 0;
  }

  .footer_title {
    font-size: 50px;
  }

  .footer_socials_list {
    gap: 24px;
  }

  .footer_bottom_wrapper {
    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_title {
    font-size: 54px;
  }

  .footer_text {
    font-size: 18px;
  }

  .footer_bottom_link {
    font-size: 20px;
  }
}
