.location {
  color: white;
  padding-top: 4rem;
}
.location h2 {
  color: white;
}

.location-2 {
  padding: 12px;
}

.location-2 p {
  padding-left: 1rem;
  line-height: 2rem;
  font-size: x-large;
}

.location-div {
  display: flex;
  width: 100%;
  background-color: rgb(69, 96, 185);
  border-radius: 16px;
  height: 500px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: -19px 6px 9px rgba(41, 41, 41, 0.685);
}

.location-map {
  display: flex;
  padding-bottom: 30px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.location-map iframe {
  border-radius: 0.75rem;
}

.location-button {
  display: flex;
  background-color: white;
  color: black;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  gap: 10px;
  padding: 1rem;
  font-weight: 600;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.location-button img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}
.location-button:hover {
  transform: scale(0.9);
}

@media (min-width: 768px) {
  .location {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .location-map {
    padding-top: 5%;
    width: 100%;
    max-width: 30%;
  }
  .location-2 {
    max-width: 100%;
    width: 400px;
  }
}

@media (min-width: 1024px) {
  .location {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .location-map {
    padding-top: 5%;
    width: 600px;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 0;
  }

  .location-2 {
    max-width: 100%;
    width: 500px;
    padding: 0;
  }

  .location-map iframe {
    padding-bottom: 4rem;
  }
}
