.footer {
  display: flex;
  flex-direction: column;
}

.footer-container {
  padding: 2rem;
  background: linear-gradient(135deg, #74afdb 0%, #4285f4 100%);
  color: white;
}

.footer-container > img {
  margin-bottom: 20px;
}

.footer-wrapper {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
}

.footer-wrapper {
  gap: 30px;
}

.location-container {
  width: 30%;
}

.contact-container {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-container > p:first-child {
  font-size: 14px;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.location-container div:nth-child(2) {
  margin-bottom: 30px;
}

.contact-item a {
  text-decoration: none;
}

.contact-item p {
  color: white;
}

.connect-with-us-container-mobile p {
  margin: 0 0 5px 0;
  font-size: 12px;
}

.location-container p,
.contact-container p {
  margin: 0;
  font-size: 12px;
}

.location-container > p:first-child,
.location-container div:nth-child(3) > p,
.connect-with-us-container-mobile > p {
  font-size: 14px;
  padding-bottom: 10px;
}

.location-container > p:first-child,
.contact-container > p:first-child {
  font-size: 20px;
  font-weight: bold;
}

.contact-item > p:first-child {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 700px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .location-container {
    width: 100%;
  }

  .contact-container {
    width: 100%;
    margin-top: 20px;
    gap: 15px;
  }

  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-item {
    width: 50%;
    margin-right: 10px;
  }

  .location-container div:nth-child(2) {
    margin-bottom: 10px;
  }

  .footer::before {
    background-position: top 69% right -31px;
    background-size: 15%;
  }
}

@media (min-width: 2952px) {
  .footer::after {
    background-position: top 273% right -97px;
    background-size: 50%;
  }
}
