body,
html {
  height: 100%;
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
.grid {
  display: flex;
}
.grid.horizontal-grid {
  flex-direction: row;
}
.grid.vertical-grid {
  flex-direction: column;
}
.cover-vertical {
  height: 100%;
}
.cover-vertical.between {
  align-content: space-between;
}
.cover-vertical.around {
  align-content: space-around;
}
.cover-horizontal {
  width: 100%;
}
.cover-horizontal.between {
  justify-content: space-between;
}
.cover-horizontal.around {
  justify-content: space-around;
}
.cover-full {
  width: 100%;
  height: 100%;
}
.cover-full.between {
  justify-content: space-between;
}
.cover-full.around {
  justify-content: space-around;
}
.cover-full.between {
  align-content: space-between;
}
.cover-full.around {
  align-content: space-around;
}
.is-12 {
  width: 100%;
}
.is-6 {
  width: 50%;
}
.is-4 {
  width: 33%;
}
.is-3 {
  width: 25%;
}
body {
  color: #666666;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
h1,
h2,
h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #444444;
}
img {
  max-width: 100%;
  max-height: 100%;
}
header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3em;
  padding-right: 1em;
  padding-left: 1em;
  padding-bottom: 3em;
  background: url("../images/line-bg.png") repeat-x bottom;
  background-color: #f9f9f9;
}
footer {
  color: #666666;
  padding: 3em 2em 3em 2em;
  min-height: 240px;
  background: url("../images/line-bg.png") repeat-x top;
  background-color: #f9f9f9;
}
@media (max-width: 770px) {
  footer {
    padding: 1em;
  }
}
footer a {
  text-decoration: none;
  color: #666666;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 962px) {
  footer .address {
    line-height: 3.2;
    text-align: left;
  }
}
@media (max-width: 780px) {
  footer .address {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
}
footer .address .fa {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 3em;
  margin-bottom: 1rem;
}
@media (max-width: 962px) {
  footer .address .fa {
    display: none;
  }
}
footer .address:hover .fa {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
@media (max-width: 962px) {
  footer > .grid {
    flex-direction: row !important;
  }
}
@media (max-width: 780px) {
  footer > .grid {
    flex-direction: column-reverse !important;
    align-items: center;
  }
}
@media (max-width: 962px) {
  footer > .grid > .is-12 {
    width: 50%;
    padding: 0 1em;
  }
}
@media (max-width: 780px) {
  footer > .grid > .is-12 {
    width: 100%;
  }
}
.text-center {
  text-align: center;
}
.bullets {
  flex: 1;
}
@media (max-width: 780px) {
  .bullets {
    flex-direction: column !important;
  }
}
.bullets .is-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1253px) {
  .bullets .is-3 {
    width: 33%;
  }
}
@media (max-width: 962px) {
  .bullets .is-3 {
    width: 100%;
    padding: 1em;
  }
}
@media (max-width: 780px) {
  .bullets .is-3 {
    width: 100%;
    padding: 1rem;
  }
}
.bullets .bullet {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 780px) {
  .bullets .bullet {
    margin: 0;
  }
}
.bullets .bullet .icon {
  width: 30px;
  display: flex;
  align-items: center;
}
.bullets .bullet .text {
  font-weight: 300;
  font-size: 1.2em;
  word-wrap: break-word;
}
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  margin-bottom: 3em;
}
@media (max-width: 962px) {
  .contact {
    flex-direction: column;
  }
}
@media (max-width: 780px) {
  .contact {
    margin-bottom: 0;
  }
}
.contact .contact-item {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1253px) {
  .contact .contact-item {
    width: 33%;
  }
}
@media (max-width: 962px) {
  .contact .contact-item {
    width: 100%;
    padding: .5em;
  }
}
@media (max-width: 780px) {
  .contact .contact-item {
    width: 311px;
  }
}
.contact .contact-item span {
  padding: .3em;
  display: flex;
  align-items: center;
}
.contact .contact-item span.item {
  padding-right: 2em;
}
.contact .contact-item span .fa {
  font-size: 1.5em;
  margin-right: 1em;
  margin-left: 1em;
}
