.contact_information {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.contact_information .map {
  width: 507px;
  height: 470px;
  overflow: hidden;
  position: relative;
}

.contact_information .map iframe {
  width: 100%;
  min-height: 410px;
  height: 600px;
  position: absolute;
  top: -120px;
  left: 0;
}

.contact_information .map+div {
  width: 432px;
}

.contact_information .map+div h3 {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .contact_information {
    display: block;
  }

  .contact_information .map {
    width: 100%;
    margin-top: 5.333333vw;
    
    height: auto;
  }

  .contact_information .map iframe {
    min-height: 244px;
    
    height: initial;
    position: initial;
  }

  .contact_information .map+div {
    width: 100%;
  }

  .contact_information .map+h3 {
    margin-top: 8vw !important;
  }
}

