/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
  main
*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0
}

.bold {
  font-weight: 600;
}

html {
  height: 100%;
  font-size: 10px;
}

body {
  height: 100%;
  background-color: #fff;
  color: #999;
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
}

a {
  /* color: #022350; */
  color: #0447a4;
  text-decoration: none;
}

.page {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.page__title {
  width: 420px;
  max-width: 100%;
  padding: 15px;
}

.page__logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.address {
  margin-top: 15px;
  text-transform: uppercase;
}

.address__prop {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #999;
}

@media (max-width: 335px) {
  .address__prop {
    margin-left: 6px;
    padding-left: 6px;
  }
}

.address__prop:first-child {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}

.text {
  margin-top: 45px;
  color: #022350;
}

.contact {
  margin-top: 10px;
  font-size: 1.3rem;
  text-align: center; 
}

.contact__prop {
  margin-top: 10px;
}

.contact__prop svg + * {
  vertical-align: text-top;
}