/*
 * CSS for the contact page.
 */
/*
 * base.scss --
 *
 *      Includes some base files (e.g. variables) needed by each page (and most other SCSS files).
 *
 */
/*
 * variables.scss --
 *
 *      Defines various reusable variables.
 *
 */
/**
 * Fonts
 */
/**
 * Positioning, dimensions, margin and padding
 */
/**
 * Colors
 */
/*
 * mixins.scss --
 *
 *      Defines various reusable mixins.
 *
 */
@media (max-width: 1023px) {
  article {
    display: flex;
    flex-direction: column;
  }
}

article .location_map_container {
  position: relative;
}

@media (min-width: 1024px) {
  article .location_map_container {
    float: right;
    margin-top: 32px;
    width: 518px;
    height: 306px;
  }
}

@media (max-width: 1023px) {
  article .location_map_container {
    order: 20;
    width: 100%;
    height: 0;
    padding-bottom: 51%;
    padding-bottom: 59.07336%;
    margin-top: 28px;
  }
}

article .location_map_container .location_map {
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@media (max-width: 1023px) {
  article .contact_details {
    order: 10;
  }
}

article .contact_details h2 {
  margin-top: 28px;
  margin-bottom: 4px;
  font-size: 22px;
}

article .contact_details p {
  margin-top: 1em;
}
