/**
_____                                       ______                            _ _
(____ \             _                       (_____ \                          (_) |
_   \ \ ____ _   _| |_  ___  ____   ____    _____) )___  ____ ____  ___  ____ _| |
| |   | / _  | | | |  _)/ _ \|  _ \ / _  |  |  ____/ _  |/ ___) _  |/___)/ _  | | |
| |__/ ( ( | | |_| | |_| |_| | | | ( ( | |  | |   ( ( | | |  ( ( | |___ ( ( | | | |
|_____/ \_||_|\__  |\___)___/|_| |_|\_||_|  |_|    \_||_|_|   \_||_(___/ \_||_|_|_|
            (____/
**/
/*///////////////////////////////////////////////
Web Fonts
//////////////////////////////////////////////*/
@import url(https://fonts.googleapis.com/css?family=Shadows+Into+Light|Roboto);
/*///////////////////////////////////////////////
Body
//////////////////////////////////////////////*/
*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
html {
  font-size: 100%;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
h1 {
  font-family: 'Shadows Into Light', cursive;
  font-size: 2.4em;
  margin: 0;
}
a {
  color: #032663;
}
img {
  max-width: 100%;
}
.heading-bg {
  background: url('/assets/img/beach-bg.png') no-repeat;
  width: 100%;
  background-size: cover;
  background-position: 0 50%;
  box-shadow: inset 0 8px 8px -8px #696868, inset 0 -8px 8px -8px #696868;
  padding: 20px 0 40px 0;
}
.text-center {
  text-align: center;
}
/*///////////////////////////////////////////////
Header
//////////////////////////////////////////////*/
.logo {
  position: relative;
  margin-top: 20px;
}
/*///////////////////////////////////////////////
Section titles
//////////////////////////////////////////////*/
.section-title {
  width: 100%;
  padding: 30px 0 30px 0;
  background-color: #032663;
  color: #fff;
  box-shadow: 0px 2px 4px rgba(238, 238, 238, 0.2), 0px -2px 4px rgba(238, 238, 238, 0.2);
}
/*///////////////////////////////////////////////
Content
//////////////////////////////////////////////*/
.content-block {
  flex: 1;
  max-width: 800px;
  padding: 8vmin;
  font-size: 1.4em;
}
/*///////////////////////////////////////////////
Reivew Sites
//////////////////////////////////////////////*/
.review-sites {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}
.review-sites li {
  list-style-type: none;
  padding-right: 20px;
}
.review-sites li img {
  width: 64px;
  height: 64px;
}
@media (min-width: 768px) {
  .review-sites li img {
    width: 128px;
    height: 128px;
  }
}
/*///////////////////////////////////////////////
Footer
//////////////////////////////////////////////*/
.footer {
  display: flex;
  flex: 1;
  width: 100%;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: #e6e6e6;
  padding: 8vmin;
}
