html {
  width: 100%;
  height: 100%;
  box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  color: #222222; }

h2 {
  display: block;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  hyphens: auto; }

.top-container {
  display: flex;
  background: #fff; }
  .top-container nav {
    display: block;
    display: none;
    align-self: center;
    width: 100%;
    text-align: right;
    padding: 16px; }
    .top-container nav a {
      color: #000;
      text-decoration: none;
      font-family: 'Oswald', sans-serif;
      font-weight: bold; }
  .top-container .container {
    justify-content: space-between;
    display: flex;
    flex-flow: row wrap;
    align-items: center; }
    .top-container .container .lang-nav a {
      color: #336699;
      text-decoration: none;
      text-transform: uppercase; }

.container {
  display: block;
  max-width: 98%;
  margin: 0 auto;
  padding: 8px 10px; }
  @media (min-width: 768px) {
    .container {
      padding: 12px 15px;
      width: 720px;
      max-width: 720px; } }

.logo {
  display: block;
  line-height: 0;
  margin-right: 60px; }
  .logo img {
    padding: 0;
    height: 40px; }

header {
  background-image: linear-gradient(-225deg, #3973ac 0%, #008fb3 50%, #00CCFF 100%);
  padding: 40px 12px; }
  @media (min-width: 768px) {
    header {
      padding: 60px; } }
  header h1 {
    display: block;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    hyphens: auto; }
  header p {
    text-align: center;
    color: #fff;
    font-weight: semibold;
    font-size: 1.125rem; }
    @media (min-width: 768px) {
      header p {
        font-size: 1.35rem; } }
  header .cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    margin-bottom: 1rem; }
  header .cta {
    margin: 0 0.3rem;
    font-size: 1rem;
    background: transparent;
    color: #fff;
    border-color: #fff;
    transition: all 0.33s ease-in-out;
    padding: 8px 16px; }
    header .cta:hover {
      background: #00CCFF;
      border-color: #00CCFF; }
    @media (min-width: 768px) {
      header .cta {
        font-size: 1.25rem;
        padding: 12px 24px; } }
    @media (min-width: 968px) {
      header .cta {
        margin: 0 0.5rem; } }

p {
  hyphens: auto;
  line-height: 1.6;
  font-size: 1.25rem;
  color: #333; }

section {
  padding: 4rem 1rem; }
  section .images {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center; }
    section .images figure {
      margin: 1rem 0.5rem; }
      section .images figure figcaption {
        color: #444; }
      section .images figure .image-placeholder {
        background: #dedede;
        width: 250px;
        height: 200px; }

section:nth-of-type(2) {
  background: rgba(0, 0, 0, 0.05);
  color: #222222; }
  section:nth-of-type(2) form {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start; }
    @media (min-width: 768px) {
      section:nth-of-type(2) form {
        flex-flow: row wrap; } }
    section:nth-of-type(2) form p.lead {
      width: 100%;
      margin-top: 0;
      margin-bottom: 1rem; }
    section:nth-of-type(2) form p {
      margin: 1rem 0; }
    section:nth-of-type(2) form input, section:nth-of-type(2) form textarea {
      padding: 6px 8px;
      font-size: 1rem;
      font-family: 'Source Sans Pro', sans-serif; }
    section:nth-of-type(2) form input {
      width: 100%; }
    section:nth-of-type(2) form textarea {
      height: 205px;
      max-width: 100%; }
    section:nth-of-type(2) form label {
      display: block; }
    section:nth-of-type(2) form button[type="submit"] {
      font-size: 1rem;
      font-family: 'Source Sans Pro';
      font-weight: 600;
      background: transparent;
      color: #336699;
      border: 1px solid #336699;
      border-radius: 2px;
      padding: 12px 24px;
      cursor: pointer; }
      section:nth-of-type(2) form button[type="submit"]:hover {
        background: #336699;
        color: #fff; }
    section:nth-of-type(2) form .hax {
      display: none; }
    section:nth-of-type(2) form .left {
      width: 100%; }
      @media (min-width: 768px) {
        section:nth-of-type(2) form .left {
          width: 50%;
          padding-right: 1rem; } }
    section:nth-of-type(2) form .right {
      width: 100%; }
      @media (min-width: 768px) {
        section:nth-of-type(2) form .right {
          width: 50%;
          padding-left: 1rem; } }

.cta {
  display: inline-block;
  width: auto;
  font-weight: 500;
  font-size: 1.3rem;
  text-decoration: none;
  background: #3498db;
  border: 2px solid #3498db;
  border-radius: 1px;
  padding: 12px 24px;
  margin: 0 auto;
  color: #fff; }

footer .container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center; }
  footer .container p {
    margin: 1rem; }
  footer .container a {
    font-size: 1.25rem;
    color: #336699;
    text-decoration: none;
    margin: 0 1rem; }
