footer {
  width: 100%;
  background: #1c1c1e;
  padding: 130px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 130px;
}

footer .plan {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

footer .plan h3 {
  font-weight: 500;
  font-size: 22px;
  color: #f9f9f999;
}

footer .plan h2 {
  font-weight: 700;
  font-size: 49px;
  color: #ffffff;
}

footer .plan a {
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  background: #ffffff;
  font-weight: 600;
  font-size: 16px;
  color: #1c1c1e;
  transition: all 0.3s ease;
}

footer .plan a:hover {
  transform: scale(1.02);
}

footer .container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

footer .container .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

footer .container .content .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 19px;
}

footer .container .content .item h4 {
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
}

footer .container .content .item a {
  font-weight: 400;
  font-size: 12px;
  color: #f9f9f999;
  transition: all 0.3s ease;
}

footer .container .content .item a:hover {
  transform: scale(1.05);
  color: #ffffff;
}

footer .container .infos {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #f9f9f999;
}

footer .container .infos h3 {
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
}

footer .container .infos .links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 27px;
  padding: 0 10px;
}

footer .container .infos .links svg {
  height: 14px;
  width: auto;
  transition: all 0.3s ease;
}

footer .container .infos .links svg:hover {
  transform: scale(1.05);
}

footer .container .infos .links svg path {
  fill: #ffffff;
  transition: all 0.3s ease;
}

footer .container .infos .links svg:hover path {
  fill: #f9f9f999;
}

@media screen and (max-width: 440px) {
  footer .plan h3 {
    font-size: 18px;
  }

  footer .plan h2 {
    font-size: 33px;
  }

  footer .plan a {
    font-size: 13px;
    padding: 10px 20px;
  }
}