.location {
  padding-top: 48px;
  padding-bottom: 48px;
}

.location__map {
  border: 5px solid #c7c7c7;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 300px;
}

address {
  display: block;
  text-align: center;
  font-style: normal;
}

address > *:not(:last-child) {
  margin-bottom: 20px;
}

address h2 {
  text-transform: uppercase;
  max-width: 70%;
  line-height: 1.2;
  margin-top: 40px;
  margin-inline: auto;
}

.complete__address {
  max-width: 85%;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .location {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    padding-bottom: 100px;
  }

  .location__map {
    max-width: 50%;
  }

  address {
    max-width: 50%;
    margin-inline: 0;
    text-align: left;
  }

  address h2 {
    max-width: 100%;
    margin-inline: 0;
  }

  .complete__address {
    max-width: 100%;
    margin-inline: 0;
  }
}