.footer {
  background-color: #191a1d;
  padding: 16px 0;
}

.footer_top_wrapper .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.footer_logo_link {
  display: block;
  width: 140px;
  height: 70px;
  margin-bottom: 16px;
}

.footer_text {
  font-size: 14px;
  font-weight: 500;
  color: #dddddd;
}

.footer_title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: capitalize;
}

.footer_menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer_menu_link {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  transition: all 0.5s ease;
}

.footer_menu_link:hover {
  color: #de0404;
}

.footer_socials_list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer_bottom_wrapper {
  padding-top: 16px;
}

.footer_list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.footer_link {
  font-size: 16px;
  font-weight: 600;
  color: #dddddd;
  transition: all 0.5s ease;
}

.footer_link:hover {
  color: #de0404;
}

@media screen and (min-width: 768px) {
  .footer_top_wrapper .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer_list {
    flex-direction: row;
    justify-content: space-evenly;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer_top_wrapper .container > .footer_top_wrap:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 24px 0;
  }

  .footer_logo_link {
    width: 160px;
  }

  .footer_text {
    font-size: 16px;
  }

  .footer_title {
    font-size: 18px;
  }

  .footer_menu_link {
    font-size: 18px;
  }

  .footer_bottom_wrapper {
    padding-top: 24px;
  }

  .footer_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .footer {
    padding: 32px 0;
  }

  .footer_top_wrapper .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer_logo_link {
    margin-bottom: 24px;
  }

  .footer_menu_list {
    gap: 24px;
  }

  .footer_bottom_wrapper {
    padding-top: 32px;
  }

  .footer_list {
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .footer_title {
    font-size: 20px;
  }

  .footer_logo_link {
    width: 180px;
  }

  .footer_text {
    font-size: 18px;
  }

  .footer_menu_link {
    font-size: 20px;
  }

  .footer_link {
    font-size: 20px;
  }
}
