/* CSS Code */

body {
  margin: 0 auto;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.main-container {
  padding-top: 20vh;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: 73.5vh;
}

.flex-container {
  display: flex;
  flex-direction: row;
  height: auto;
}

.flex-item {
  width: 33.33%;
  text-align: center;
}
.contact-info {
  padding: 10px;
}

.contact-info h2 {
  text-align: center;
}

.map {
  padding-top: 10vh;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  z-index: -1;
}

.map iframe {
  left: 0;

  top: 0;

  height: 100%;

  width: 100%;

  position: absolute;
}

@media (max-width: 767px) {
  body {
    height: auto;
    overflow: auto;
  }
  .main-container {
    padding: 20% 0 10% 0;
    margin-top: 0px;
    width: 100%;
    height: 100%;
  }
  .flex-container {
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .flex-item {
    width: 95%;
    text-align: center;
  }
}
