.contact-us-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  position: relative;
  padding: 4rem 0;
}

.additional-information {
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 70%;
  height: calc(70% - 2rem);
  gap: 3rem;
}

.info-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: currentColor;
  gap: calc(2em + 1vw);
  font-size: calc(0.8rem + 0.1vw);
  width: calc(95% - 2rem);
  letter-spacing: calc(0.1em + 0.1vw);
  line-height: calc(4em + 0.5vh);
  font-weight: 300;
  padding: 3rem 5rem;

  background-color: var(--secondary-background-color);
  border: 2px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.info-box svg {
  fill: #333;
  width: calc(1.5em + 1vw);
  height: calc(1.5em + 1vw);
  opacity: 0.7;
}

.wrapper {
  color: var(--secondary-font-color);
  text-transform: uppercase;
  transition: all 0.5s ease;
  font-size: calc(0.7rem + 0.9vw);
}

@media (max-width: 767px) {
  .contact-us-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .contact-us-page .logo {
    font-size: 2rem;
  }

  .info-box {
    padding: 1rem 0.2rem;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-end;
    width: 95%;
  }

  .info-box a {
    height: 3rem;
  }

  .info-box svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .wrapper {
    font-size: 0.7rem;
  }
  .additional-information {
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .info-box {
    padding: 2rem 3rem;
  }

  .wrapper {
    font-size: 0.9rem;
  }
  .additional-information {
    width: 85%;
  }
}
