:root {
  --white: white;
  --black: black;
}

body {
  color: #333;
  font-family: Open Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

a {
  color: #333;
  text-decoration: none;
}

.site-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100svh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.content-wrapper {
  flex-flow: row;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  max-width: 720px;
}

.contact-info {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacer-small {
  height: 16px;
}

.spacer-large {
  height: 32px;
}

.logo-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.line-separator {
  background-color: #333;
  height: 1px;
}

.spacer-xlarge {
  height: 64px;
}

.email-container {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .contact-info {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .site-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
    place-items: center;
  }

  .logo {
    height: 80px;
  }

  #w-node-_0e58151b-2b2a-328a-cbfa-113b5dd14d41-dbbcbb2c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}
