/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_map_address__in {
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}
@media only screen and (min-width: 62em) {
  .sn_map_address__in {
    padding-top: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
  }
}
.sn_map_address__iframe {
  width: 50%;
  flex-grow: 1;
  max-width: 35.1875rem;
  aspect-ratio: 563/370;
}
.sn_map_address__iframe iframe {
  width: 100% !important;
  height: 100% !important;
}
.sn_map_address__info {
  width: 40%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.sn_map_address__info__i__title {
  color: #DB0032;
  text-transform: uppercase;
}
.sn_map_address__info__i__content {
  color: #000;
}