/* --- REX Style Sheet --- */
.small {
  display: none; }
  @media (max-width: 768px) {
    .small {
      display: block; } }

@media (max-width: 768px) {
  .notonmobile {
    display: none !important; } }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url('../font/Open Sans/normal-light-300.woff') format('woff'); }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url('../font/Open Sans/normal-400.woff') format('woff'); }

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url('../font/Open Sans/normal-700.woff') format('woff'); }

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url('../font/Open Sans/italic-400.woff') format('woff'); }

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url('../font/Open Sans/italic-700.woff') format('woff'); }

html, body {
  height: 100%;
  width: 100%;
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  font-weight: 400; }

html, input, textarea, button {
  -webkit-font-smoothing: antialiased; }

body {
  overflow-y: scroll;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #40597f;
  background: #286b86; }

ul {
  list-style: none; }

img {
  max-width: 100%; }

.col {
  -webkit-flex: 1;
  flex: 1;
  padding: 20px 10%;
  margin: 0 auto;
  position: relative;
  }

.col-image {
  background: #eaf2fa;
  background-size: cover;
  background-position: 50%;
  padding: 0;
  -webkit-flex: 1;
  flex: 1;
  height: auto;
}

.col-image p {
  text-align: center;
}

.col-image img {
}

@media (min-width: 768px) {
  .col-image {
    min-width: 400px;
    min-height: 400px;
  }
  
  .col-image img {
  }
  
  .col-image iframe {
    position: absolute;
  }
}

.col-text {
  padding: 40px 20px;
  -webkit-flex: 2;
  flex: 2; }
  @media (min-width: 768px) {
    .col-text {
      padding: 50px 60px; } }
  .col-text ul {
    list-style: circle;
    padding: 0 0 0 20px;
    margin: 0 0 20px; }
  .col-text a {
    text-decoration: underline; }

a {
  text-decoration: none;
  color: #286B86;
  transition: 100ms all linear;
  }
  a:hover {
    color: #4e607a; }

.clickable {
  cursor: pointer; }

.not-clickable {
  cursor: default; }

section {
  line-height: 1.7;
  font-size: 16px;
  display: -webkit-flex;
  display: flex;
  width: 100%; }
  @media (max-width: 768px) {
    section {
      -webkit-flex-direction: column;
      flex-direction: column; } }

.button {
  border: 1px solid #7085a4;
  padding: 10px 20px;
  width: 80%;
  text-align: center;
  display: inline-block;
  transition: 350ms ease;
  text-rendering: optimizeLegibility; }
  .button:hover {
    background: #7085a4;
    color: #fff; }
  .button:active {
    background: #40597f;
    border-color: #40597f;
    color: #fff; }

.button-secondary {
  color: #fff;
  border: 1px solid #fff;
  width: 275px;
  height: 75px;
  font-size: 25px;
  line-height: 50px;
  font-weight: 300;
  }
  .button-secondary:hover {
    background: #fff;
    color: #333;
  }
  .button-secondary:active {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.7);
    color: #333; }
  @media (max-width: 768px) {
    .button-secondary {
      width: 100%; } }

h1 {
  font-size: 50px;
  line-height: 1;
  padding: 20px;
  margin-bottom: 30px;
  color: #7085a4;
  width: 100%;
  font-weight: 300;
  }

h2 {
  font-size: 24px;
  height: 40px;
  color: #286B86;
  margin-bottom: 20px;
  font-weight: 300;
  }

p {
  margin: 0 0 20px;
  color: #444444;
  }

b {
  font-weight: 400; }

.content {
  background-color: white; }

.alt {
  background-color: #eaf2fa;
  text-align: right;
  }

header {
  height: 40px;
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  transition: all 200ms ease-in-out;
  display: 
  -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  }
  header .logo {
    margin: 0 20px; }
    header .logo img {
      width: 40px;
      height: 40px;
      margin: 0; }
  header .nav {
    text-transform: uppercase;
    display: -webkit-flex;
    display: flex;
    -webkit-flex: 1;
    flex: 1;
    max-width: 450px;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    }
    header .nav li {
      display: inline-block;
      font-size: 16px;
      text-align: center;
      line-height: 40px;
      }
      header .nav li a {
        display: block;
        font-weight: 300;
        height: 40px; }
      header .nav li a.active {
        border-bottom: 3px solid #2B5E78;
        }
    header .nav .demo {
      background-color: #7085a4;
      padding: 0 26px; }
      header .nav .demo a {
        color: #fff; }
  header.timeline {
    height: 40px;
    margin: 0; }

#intro {
  background-image: url('../img/intro-background.jpg');
  background-size: cover;
  background-position: 50%;
  margin: 0;
  padding: 0 0 40px;
  color: #fff;
  height: 100%;
  font-weight: 300;
  -webkit-align-content: center;
  align-content: center;
}

@media (max-width: 768px) {
  #intro {
    padding: 40px 0;
    height: auto;
  }
}

#intro img {
  height: 100%;
  width: auto;
}

@media (max-width: 768px) {
  #intro img {
    margin-top: -20px;
    width: 80%;
    height: auto;
  }
}
  #intro h1 {
    color: #fff;
    padding: 0;
    margin-top: 30px; }
    @media (min-width: 768px) {
      #intro h1 {
        margin-top: 110px;
        } }
  #intro p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 30px; }

.col-logo {
  -webkit-flex: none;
  flex: none;
  padding-right: 50px;
  margin-right: 0;
  height: 100%;
}

@media (max-width: 768px) {
  .col-logo {
    padding: 0 !important;
    margin-right: auto;
    height: auto;
    text-align: center;
  }
}


.col-text-intro {
  -webkit-flex: 1;
  flex: 1;
  max-width: 800px;
  padding-left: 50px;
  padding-right: 10%;
  margin-left: 0;
}

.footer {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 11px;
  font-weight: 300;
  color: #fff;
  text-align: right;
  background: #286b86;
  padding: 0 5%;
  }
  @media (max-width: 768px) {
    .footer {
      text-align: center; } }
