@charset "UTF-8";
/* 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, 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;
}

/**********************
	VARIABLES
***********************/
/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://dallasbass.com
*/
[class*=grid],
[class*=col-],
[class*=mobile-],
.grid:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class*=col-] {
  float: left;
  min-height: 1px;
  padding-right: 20px;
  /* column-space */
}

[class*=col-] [class*=col-]:last-child {
  padding-right: 0;
}

.grid {
  width: 100%;
  max-width: 1140px;
  min-width: 748px;
  /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
  margin: 0 auto;
  /*overflow: hidden;*/
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

.grid-pad {
  padding-top: 20px;
  padding-left: 20px;
  /* grid-space to left */
  padding-right: 0;
  /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
  float: right;
}

/* Content Columns */
.col-1-1 {
  width: 100%;
}

.col-2-3, .col-8-12 {
  width: 66.66%;
}

.col-1-2, .col-6-12 {
  width: 50%;
}

.col-1-3, .col-4-12 {
  width: 33.33%;
}

.col-1-4, .col-3-12 {
  width: 25%;
}

.col-1-5 {
  width: 20%;
}

.col-1-6, .col-2-12 {
  width: 16.667%;
}

.col-1-7 {
  width: 14.28%;
}

.col-1-8 {
  width: 12.5%;
}

.col-1-9 {
  width: 11.1%;
}

.col-1-10 {
  width: 10%;
}

.col-1-11 {
  width: 9.09%;
}

.col-1-12 {
  width: 8.33%;
}

/* Layout Columns */
.col-11-12 {
  width: 91.66%;
}

.col-10-12 {
  width: 83.333%;
}

.col-9-12 {
  width: 75%;
}

.col-5-12 {
  width: 41.66%;
}

.col-7-12 {
  width: 58.33%;
}

/* Pushing blocks */
.push-2-3, .push-8-12 {
  margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
  margin-left: 50%;
}

.push-1-3, .push-4-12 {
  margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
  margin-left: 25%;
}

.push-1-5 {
  margin-left: 20%;
}

.push-1-6, .push-2-12 {
  margin-left: 16.667%;
}

.push-1-7 {
  margin-left: 14.28%;
}

.push-1-8 {
  margin-left: 12.5%;
}

.push-1-9 {
  margin-left: 11.1%;
}

.push-1-10 {
  margin-left: 10%;
}

.push-1-11 {
  margin-left: 9.09%;
}

.push-1-12 {
  margin-left: 8.33%;
}

@media handheld, only screen and (max-width: 768px) {
  .grid {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    /* grid-space to left */
    padding-right: 10px;
    /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
  }

  [class*=col-] {
    width: auto;
    float: none;
    margin: 10px 0;
    padding-left: 0;
    padding-right: 10px;
    /* column-space */
  }

  [class*=col-] [class*=col-] {
    padding-right: 0;
  }

  /* Mobile Layout */
  [class*=mobile-col-] {
    float: left;
    margin: 0 0 10px;
    padding-left: 0;
    padding-right: 10px;
    /* column-space */
    padding-bottom: 0;
  }

  .mobile-col-1-1 {
    width: 100%;
  }

  .mobile-col-2-3, .mobile-col-8-12 {
    width: 66.66%;
  }

  .mobile-col-1-2, .mobile-col-6-12 {
    width: 50%;
  }

  .mobile-col-1-3, .mobile-col-4-12 {
    width: 33.33%;
  }

  .mobile-col-1-4, .mobile-col-3-12 {
    width: 25%;
  }

  .mobile-col-1-5 {
    width: 20%;
  }

  .mobile-col-1-6, .mobile-col-2-12 {
    width: 16.667%;
  }

  .mobile-col-1-7 {
    width: 14.28%;
  }

  .mobile-col-1-8 {
    width: 12.5%;
  }

  .mobile-col-1-9 {
    width: 11.1%;
  }

  .mobile-col-1-10 {
    width: 10%;
  }

  .mobile-col-1-11 {
    width: 9.09%;
  }

  .mobile-col-1-12 {
    width: 8.33%;
  }

  /* Layout Columns */
  .mobile-col-11-12 {
    width: 91.66%;
  }

  .mobile-col-10-12 {
    width: 83.333%;
  }

  .mobile-col-9-12 {
    width: 75%;
  }

  .mobile-col-5-12 {
    width: 41.66%;
  }

  .mobile-col-7-12 {
    width: 58.33%;
  }

  .hide-on-mobile {
    display: none !important;
    width: 0;
    height: 0;
  }
}
/*****************
	CLEARFIX
******************/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*****************
	GRID
******************/
.grid-pad {
  padding-top: 80px;
  padding-left: 80px;
  padding-right: 0px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .grid-pad {
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 0px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .grid-pad {
    padding-left: 20px;
  }
}
@media (max-width: 568px) {
  .grid-pad {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

[class*=col-] {
  padding-right: 80px;
}
@media (max-width: 1024px) {
  [class*=col-] {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  [class*=col-] {
    padding-right: 20px;
  }
}

@media (max-width: 568px) {
  .mobile-col-1-2.xs, .mobile-col-10-12.xs, .mobile-col-2-3.xs, .mobile-col-1-3.xs {
    float: none;
    width: 100%;
  }
}

/********************
	TYPOGRAPHY
********************/
h1 {
  font-weight: 700;
  font-size: 72px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 62px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 568px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 26px;
  }
}

h2 {
  font-weight: 700;
  font-size: 40px;
}

h3 {
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 568px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 20px;
  }
}
h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
}

h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

p {
  font-size: 15px;
  line-height: 1.4;
}

a {
  text-decoration: underline;
  color: inherit;
  -webkit-text-decoration-color: #70c7ad;
}
a:hover {
  color: #70c7ad;
  text-decoration: none;
}

strong, b {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

ul, ol {
  font-size: 15px;
  line-height: 1.4;
}

/**************************
	BUTTONS
***************************/
.btn {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

.btn_pill {
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 25px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
}

.btn--shade_blue {
  background: #44ade2;
}
.btn--shade_blue:hover {
  background: #70c7ad;
  transition: background 0.2s ease-in-out;
  color: #fff;
}

.btn_simple {
  font-size: 14px;
  padding-bottom: 4px;
  display: inline-block;
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 14px;
  text-decoration: none;
}
.btn_simple span {
  display: inline-block;
  font-size: 12px;
}
.btn_simple--dark_blue {
  border-bottom: 2px solid #1c68a6;
  color: #1c68a6;
}
.btn_simple--dark_blue span {
  color: inherit;
}
.btn_simple--dark_blue:hover {
  color: #44ade2;
  border-color: #44ade2;
  transition: border-color 0.2 ease-in-out, color 0.2 ease-in-out;
}
.btn_simple--blue {
  border-bottom: 2px solid #4dbeee;
  color: #4dbeee;
}
.btn_simple--blue:hover {
  color: #1c68a6;
  border-color: #1c68a6;
  transition: border-color 0.2 ease-in-out, color 0.2 ease-in-out;
}
@media (max-width: 568px) {
  .btn_simple.xs {
    display: inline-block;
    margin: 10px;
  }
}

.btn_ghost {
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 25px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  display: inline-block;
}
.btn_ghost--shade_blue {
  border: 2px solid #44ade2;
  color: #44ade2;
}
.btn_ghost--shade_blue:hover {
  border-color: #70c7ad;
  color: #70c7ad;
  transition: border-color 0.2 ease-in-out, color 0.2 ease-in-out;
}
.btn_ghost--dark_blue {
  border: 2px solid #1c68a6;
  color: #1c68a6;
}
.btn_ghost--dark_blue:hover {
  border-color: #70c7ad;
  color: #70c7ad;
  transition: border-color 0.2 ease-in-out, color 0.2 ease-in-out;
}
.btn_ghost--white {
  border: 2px solid #fff;
  color: #fff;
}
.btn_ghost--white:hover {
  border-color: #70c7ad;
  color: #70c7ad;
  transition: border-color 0.2 ease-in-out, color 0.2 ease-in-out;
}

.btn--inline-block {
  display: inline-block;
}

/**********************
	ICONS
***********************/
.icon {
  width: 88px;
  height: 88px;
  background: url("images/force-sprite.png") no-repeat;
  background-size: 352px auto;
  -webkit-background-size: 352px auto;
  -moz-background-size: 352px auto;
  display: block;
  /** THIS NEEDS TO BE SMALLER */
}
.icon.fish {
  background-position: 0px 0px;
}
.icon.mmammals {
  background-position: -88px 0px;
}
.icon.lobsters {
  background-position: -176px 0px;
}
.icon.sbirds {
  background-position: 0px -88px;
}
.icon.mnoise {
  background-position: -88px -88px;
}
.icon.oscience {
  background-position: -176px -88px;
}
.icon.waves {
  background-position: 0px -176px;
}
.icon.plant {
  background-position: -88px -176px;
}
.icon.measure {
  background-position: -176px -176px;
}
.icon.bedrock {
  background-position: 0px -264px;
}
.icon.speed {
  background-position: -88px -264px;
}
.icon.airtemp {
  background-position: -176px -264px;
}
.icon.watertemp {
  background-position: -264px 0px;
}
.icon.solar {
  background-position: -264px -88px;
}
.icon.tidalpower1 {
  background-position: -264px -176px;
}
.icon.tidalpower2 {
  background-position: -264px -264px;
}
.icon.clock {
  background: url("images/Force_WebsiteIcons_01-Clock-Blue.png") no-repeat;
  width: 60px;
  height: 60px;
  background-size: auto 60px;
  -webkit-background-size: auto 60px;
  -moz-background-size: auto 60px;
}
.icon.cape {
  background: url("images/cape-split-icon.png") no-repeat;
  width: 88px;
  height: 88px;
  background-size: auto 88px;
  -webkit-background-size: auto 88px;
  -moz-background-size: auto 88px;
}
.icon.doc_type {
  background: url("images/doc-type-sprite.png");
  background-repeat: no-repeat;
  width: 42px;
  height: 42px;
  background-size: auto 126px;
  -webkit-background-size: auto 126px;
  -moz-background-size: auto 126px;
}
.icon.doc_type.pres {
  background-position: 0px 0px;
}
.icon.doc_type.doc {
  background-position: 0px -42px;
}
.icon.doc_type.image {
  background-position: 0px -84px;
}

/**************************
	FORMS
***************************/
form label {
  font-size: 15px;
  padding-bottom: 8px;
  display: block;
  font-weight: 600;
}
form input, form textarea {
  height: 36px;
  padding: 8px;
  display: block;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  font-size: 15px;
  font-weight: 400;
  color: #504d4c;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-appearance: none;
  border-radius: 0px;
}
form input::placeholder, form textarea::placeholder {
  font-weight: 600;
  font-size: 15px;
  color: rgba(80, 77, 76, 0.6) !important;
}
form input:focus, form textarea:focus {
  outline: none;
}
form input::-ms-clear, form textarea::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
form input::-ms-reveal, form textarea::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
form textarea {
  height: 200px;
  padding: 8px;
  width: 100%;
  outline: none;
  font-weight: 400;
}
form button {
  border: none;
  margin-bottom: 20px;
}

.form_status_container {
  clear: both;
  padding-left: 28px;
  margin-top: 40px;
  display: block;
}
.form_status_container .fa {
  display: inline;
  margin-right: 10px;
  font-size: 20px;
  margin-left: -28px;
  float: left;
  margin-top: -1px;
}
.form_status_container .success .fa {
  color: green;
}
.form_status_container .error .fa {
  color: red;
}

.form_subscribe .flex_parent {
  display: flex;
  justify-content: space-between;
}
.form_subscribe .flex_child--1 {
  flex-grow: 2;
}
.form_subscribe .flex_child--2 {
  flex-basis: 0;
  flex-grow: 1;
  align-self: center;
}
.form_subscribe [class*=col-] {
  padding-right: 20px;
}
.form_subscribe input {
  width: 100%;
  margin-bottom: 0px;
}
.form_subscribe button {
  margin-top: -2px;
}
@media (max-width: 1024px) {
  .form_subscribe .flex_child--1 {
    flex-grow: 1;
  }
  .form_subscribe .flex_child--2 {
    width: 157px;
    text-align: center;
  }
  .form_subscribe .flex_child--2 button {
    float: none;
  }
}
@media (max-width: 768px) {
  .form_subscribe .flex_parent {
    max-width: 70%;
    margin: 0 auto;
    flex-direction: column;
  }
  .form_subscribe .flex_child--2 {
    width: auto;
  }
  .form_subscribe [class*=col-] {
    padding-right: 0px;
  }
  .form_subscribe a {
    margin-top: 20px;
  }
}
@media (max-width: 568px) {
  .form_subscribe .flex_parent {
    max-width: 80%;
  }
}
.form_subscribe button {
  background: none;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .form_subscribe button {
    margin-left: 0px;
  }
}

html {
  font-family: proxima-nova, sans-serif;
  font-size: 10px;
  -webkit-text-size-adjust: none;
  font-weight: 400;
}

body {
  color: #504d4c;
}

[data-ember-action]:not(:disabled) {
  cursor: pointer;
}

/*****************
	HEADER
******************/
header, .header {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
}

.header--fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #18578c;
}

/*****************
-- BRANDING
******************/
.logo {
  display: inline-block;
  background: url("images/force-logo.png");
  background-size: auto 24px;
  -webkit-background-size: auto 24px;
  -moz-background-size: auto 24px;
  background-repeat: no-repeat;
  text-indent: -99999px;
  width: 90px;
  height: 24px;
  margin-top: 26px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .logo {
    margin-top: 25px;
  }
}

.hamburger {
  display: none;
  float: right;
  width: 34px;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border: 1px solid #fff;
  line-height: 40px;
  margin-top: 14px;
  margin-left: 20px;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-top: 15px;
    margin-bottom: 12px;
  }
}

.mobile_nav {
  float: right;
  margin-top: 35px;
  padding-bottom: 35px;
  background: transparent;
}
.mobile_nav #close-nav {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1000;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid #fff;
  line-height: 1;
}
@media (max-width: 768px) {
  .mobile_nav #close-nav {
    display: block;
  }
}
.mobile_nav .nav .nav_link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 2px 4px;
  margin: 0 6px;
}
.mobile_nav .nav .nav_link.active {
  color: #fff;
  border-bottom: 2px solid #44ade2;
  cursor: default;
}
.mobile_nav .nav .nav_link:hover {
  color: #fff;
  cursor: pointer;
}
.mobile_nav .nav .insert {
  display: none;
}
@media (max-width: 1024px) {
  .mobile_nav .nav .nav_link .insert {
    display: inline;
  }
  .mobile_nav .nav .nav_link .remove {
    display: none;
  }
}
@media (max-width: 768px) {
  .mobile_nav .nav {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    align-items: center;
    justify-content: center;
  }
  .mobile_nav .nav .nav_link {
    margin: 10px auto;
    font-size: 15px;
  }
  .mobile_nav .nav .nav_link .insert {
    display: none;
  }
  .mobile_nav .nav .nav_link .remove {
    display: inline;
  }
  .mobile_nav .nav .nav_link.active {
    border: 2px solid #fff;
    padding: 5px 8px;
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .mobile_nav {
    display: none;
    float: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #18578c;
    margin-top: 0px;
    flex-direction: column;
    justify-content: center;
  }
}
.mobile_nav--visible {
  display: flex;
}

/*****************
	HERO
******************/
.hero {
  min-height: 238px;
}
.hero--large {
  height: 540px;
}
.hero * {
  color: #fff;
}
.hero .back {
  font-size: 20px;
  margin-top: 20px;
  display: inline-block;
  margin-bottom: 20px;
  clear: both;
}
.hero .back .fa {
  color: #fff;
}
.hero .back:hover .fa {
  color: #70c7ad;
  transition: color 0.2s ease-in-out;
}

/*****************
	ASIDE
******************/
aside.float--top {
  margin-top: -140px;
}
@media (max-width: 768px) {
  aside.float--top {
    margin-top: 0px;
  }
}

.aside_padding {
  padding: 60px 40px;
}
@media (max-width: 768px) {
  .aside_padding {
    padding: 30px 20px;
  }
}

/*****************
	FOOTER
******************/
#footer {
  background: #2c2b2a;
  color: #7c7877;
}
#footer .logo_footer_container {
  padding-right: 0px;
}
#footer .logo_footer_container .logo_footer {
  background: url("images/force-coloured.png") no-repeat;
  text-indent: -99999px;
  background-size: 138px auto;
  -webkit-background-size: 138px auto;
  -moz-background-size: 138px auto;
  height: 94px;
  width: auto;
}
@media (max-width: 768px) {
  #footer .logo_footer_container {
    margin-bottom: 20px;
  }
  #footer .logo_footer_container .logo_footer {
    margin: 0 auto;
    background: url("images/ForceLogo_RGB_Screen-FullCol_ReverseCopy-Hor.png") no-repeat;
    width: 352px;
    background-size: 352px auto;
    -webkit-background-size: 352px auto;
    -moz-background-size: 352px auto;
  }
}
@media (max-width: 568px) {
  #footer .logo_footer_container .logo_footer {
    background-size: 281px 80px;
    width: 281px;
  }
}
#footer strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}
#footer p, #footer address {
  font-size: 15px;
  line-height: 1.6;
  color: inherit;
}
#footer p a, #footer address a {
  color: #7c7877;
  text-decoration: none;
}
#footer p a:hover, #footer address a:hover {
  color: #44ade2;
}
#footer p a:visited, #footer address a:visited {
  color: #7c7877;
}
@media (max-width: 1024px) {
  #footer p, #footer address {
    font-size: 13px;
    line-height: 1.5;
  }
}
#footer .quick_link {
  font-size: 15px;
  margin-right: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
#footer .quick_link:hover {
  color: #fff;
}
#footer .quick_link.smedia {
  margin-right: 14px;
}
#footer .quick_link .fa {
  font-size: 20px;
  display: inline-block;
  margin-top: -8px;
  margin-right: 10px;
}
#footer .quick_link .insert {
  display: none;
}
@media (max-width: 1024px) {
  #footer .quick_link {
    margin-right: 22px;
  }
  #footer .quick_link .insert {
    display: inline;
  }
  #footer .quick_link .remove {
    display: none;
  }
}
@media (max-width: 568px) {
  #footer .quick_link {
    margin: 10px;
    display: inline-block;
  }
  #footer .quick_link.smedia {
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  #footer .card {
    margin-bottom: 40px;
  }
}
@media (max-width: 568px) {
  #footer {
    text-align: center;
  }
}
#footer .account_buttons_container {
  margin-top: 20px;
}

/*****************
	SECTION
******************/
.section_hero {
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  height: 490px;
  background-repeat: no-repeat;
}

/*****************
	CONTAINED
******************/
.contained {
  padding: 80px;
  background: #fff;
  overflow: hidden;
}
.contained.bg--dark_blue p {
  color: #fff;
}
.contained.bg--white p {
  color: #504d4c;
}
@media (max-width: 1024px) {
  .contained {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .contained.padding-right--none {
    padding-right: 40px;
  }
}
@media (max-width: 568px) {
  .contained {
    padding: 30px 20px;
  }
  .contained.padding-right--none {
    padding-right: 20px;
  }
}
.contained h4 {
  color: #18578c;
}

/*****************
	KEY-VALUE
******************/
.key_value_list {
  width: 100%;
}
.key_value_list.with_icons .key_value_list-child {
  margin-bottom: 40px;
}
.key_value_list.with_icons .key {
  text-align: center;
}
.key_value_list.with_icons .key .icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto 20px auto;
}
.key_value_list.with_icons .value {
  text-align: center;
  font-size: 14px;
}

/*****************
	STUBS
******************/
.stub {
  font-size: 15px;
  margin-top: 25px;
  display: block;
  text-decoration: none;
}
.stub .stub_media {
  height: 166px;
  margin-bottom: 40px;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-position: center center;
}
.stub .stub_date {
  font-weight: 600;
  color: #18578c;
  margin-bottom: 20px;
}
.stub .stub_title {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.stub .stub_desc {
  line-height: 1.3;
  color: #96908F;
  font-size: 15px;
}
.stub .stub_tags {
  color: rgba(80, 77, 76, 0.6);
  font-size: 15px;
  text-transform: capitalize;
}
.stub .stub_tags em {
  font-style: italic;
}
.stub .stub_icon {
  float: left;
  margin-right: 20px;
}
.stub .stub_att_icon {
  width: 30px;
  height: 12px;
  background: red;
  display: inline-block;
  margin-left: 10px;
  background: url("images/paperclip.png") no-repeat;
  background-size: 30px auto;
}
.stub .stub_buttons {
  margin-top: 20px;
}
.stub.bordered {
  border-bottom: 1px solid #44ade2;
  padding-bottom: 25px;
}
.stub.bordered--transp_gray {
  border-bottom: 1px solid rgba(80, 77, 76, 0.2);
}
.stub.bordered:last-child {
  border: none;
}
.stub.with_icon .stub_title, .stub.with_icon .stub_desc, .stub.with_icon .stub_tags, .stub.with_icon .btn_simple {
  margin-left: 62px;
}
.stub.stub_vert {
  padding: 20px;
}

/*

position: relative; padding-bottom: 56.25%;
		iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;} */
/*****************
	ARTICLES
******************/
article {
  margin-bottom: 40px;
}
article .article_media {
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 56.25%;
}
article .article_writeup {
  color: rgba(80, 77, 76, 0.8);
}
article .article_writeup div, article .article_writeup p {
  margin-bottom: 18px;
  line-height: 1.5;
}
article .article_writeup .lead {
  color: #504d4c;
  font-weight: 600;
}
article .article_writeup ul, article .article_writeup ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
article .article_writeup ul {
  list-style-type: disc;
}
article .article_writeup ol {
  list-style-type: decimal;
}
article .article_writeup li {
  margin-bottom: 12px;
}
article .article_writeup em, article .article_writeup i {
  font-style: italic;
}
article .article_tags {
  color: rgba(80, 77, 76, 0.6);
  text-transform: capitalize;
}
article .article_tags strong {
  color: #504d4c;
}
article .article_tags em {
  font-style: italic;
}
@media (max-width: 768px) {
  article {
    margin-bottom: 40px;
  }
}

/*****************
	MINI STUBS
******************/
.stub_mini {
  display: inline-block;
  height: 54px;
  background: #f2f2f3;
  margin-right: 10px;
  width: auto;
  margin-bottom: 10px;
  text-decoration: none;
}
.stub_mini .icon_container {
  width: 54px;
  height: 54px;
  background: #44ade2;
  display: flex;
  float: left;
}
.stub_mini .icon_container .fa {
  align-self: center;
  margin: 0 auto;
  color: #fff;
  font-size: 29px;
}
.stub_mini .desc_box {
  display: flex;
  margin-left: 54px;
  padding: 10px;
}
.stub_mini .desc_box p {
  margin: auto;
  font-size: 13px;
}
@media (max-width: 568px) {
  .stub_mini .desc_box p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 240px;
    display: block;
  }
}
@media (max-width: 320px) {
  .stub_mini .desc_box p {
    width: 180px;
  }
}

/*****************
IMAGE GALLERY
******************/
.image_gallery_section .line_short {
  margin-bottom: 40px;
  display: inline-block;
}

.image_gallery {
  overflow: hidden;
  margin-bottom: 20px;
}

.owl-carousel .owl-stage {
  padding-left: 0px !important;
  overflow: hidden;
}

.image_gallery-item {
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.caption {
  padding: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
}

.image_gallery_controls {
  text-align: center;
  margin: 20px auto;
  display: block;
}
.image_gallery_controls .control {
  display: inline-block;
  margin: 0 4px;
}
.image_gallery_controls .control i {
  color: #504d4c;
  font-size: 20px;
}

#slide-controls button {
  background: none;
  border: none;
}
#slide-controls button .fa {
  color: #44ade2;
}
#slide-controls button:hover .fa {
  color: #70c7ad;
}

/*****************
	MEMBERS
******************/
.members {
  clear: both;
  margin-top: 40px;
  display: block;
}

.member {
  margin-bottom: 40px;
  min-height: 240px;
  text-align: center;
}
.member .member_image {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  margin: 0 auto 20px auto;
}
.member .member_image.default {
  background: #f2f2f3 url("images/staff-default.png");
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: center center;
}
.member .member_name {
  font-size: 15px;
  color: #1c68a6;
  display: block;
  margin-bottom: 6px;
}
.member .member_position {
  font-size: 13px;
}
@media (max-width: 568px) {
  .member {
    min-height: 0px;
    height: auto;
  }
}

/*****************
	SOCIAL MEDIA
******************/
.smedia--round {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  margin-right: 8px;
  display: inline-block;
  text-align: center;
}
.smedia--round .fa {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}

#twitter-x, .twitter-x {
  width: 30px;
  height: 30px;
  background: #000 url("images/logo.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center center;
}

.twitter-x--white {
  width: auto;
  height: auto;
  display: inline-block;
  background-image: url("images/logo-white.png");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center center;
}

.twitter-x--black {
  width: 30px;
  height: 30px;
  display: inline-block;
  background-image: url("images/logo-black.png");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center center;
}

.flex-social {
  display: flex;
  align-items: end;
}

.flex-social a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.flex-social a:hover {
  border-bottom: 2px solid #fff;
}

.flex-social .smedia {
  margin-top: -4px;
}

.flex-social .fa {
  width: 9px;
}

.flex-social .fb {
  margin-right: 0px;
}

.flex-social .twitter-x--white {
  width: 14px;
  padding-bottom: 7px;
  background-position: left center;
}

.social_container .twitter-x--white {
  width: 30px;
  height: 30px;
  background-image: url("images/logo-white.png");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center center;
}

.flex-social_container {
  display: flex;
  align-items: start;
}

@media (max-width: 568px) {
  .flex-social {
    justify-content: center;
  }
}
.feedbox {
  height: 400px;
  display: flex;
  flex-direction: row;
}
.feedbox .feedbox_header {
  text-align: center;
  width: 40px;
  height: 100%;
  flex-shrink: 0;
}
.feedbox .feedbox_header .fa {
  font-size: 18px;
  margin-top: 14px;
}
/*****************
	FILTERING
******************/
.filter_categories {
  margin-top: 20px;
  margin-bottom: 20px;
}
.filter_categories.first {
  margin-top: 0px;
}
.filter_categories .filter_header {
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .filter_categories .filter_header {
    margin-bottom: 12px;
  }
}
.filter_categories .filter_category {
  color: #7c7877;
  text-transform: capitalize;
  margin-bottom: 6px;
  font-size: 15px;
  margin-left: 20px;
  line-height: 1.3;
}
.filter_categories .filter_category .fa {
  visibility: hidden;
  margin-left: -19px;
}
.filter_categories .filter_category.active {
  text-transform: capitalize;
  color: #44ade2;
  font-weight: 600;
}
.filter_categories .filter_category.active .fa {
  visibility: visible;
}
.filter_categories .filter_category:hover {
  color: #44ade2;
}
.filter_categories .filter_mobile select {
  display: block;
  width: 100%;
  max-width: 94%;
  outline: none;
  border: none;
  font-size: 15px;
  border: 1px solid rgba(80, 77, 76, 0.6);
  height: 30px;
  line-height: 30px;
  color: inherit;
  text-transform: capitalize;
}
@media (max-width: 568px) {
  .filter_categories .filter_mobile select {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .filter_categories {
    margin-top: 0px;
  }
}
@media (max-width: 568px) {
  .filter_categories.first .filter_mobile select {
    margin-bottom: 20px;
  }
}

/*****************
	VIDEOS
******************/
.videos {
  margin-top: 40px;
}

.video {
  margin-bottom: 20px;
}
.video .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.video .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video small {
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

/*****************
	Ember Chimp
******************/
.ember-chimp.idle .chimp-says, .ember-chimp.loading .chimp-says {
  display: none;
}
.ember-chimp.success .chimp-says {
  background-color: none;
  color: #fff;
}
@media (max-width: 768px) {
  .ember-chimp.success .chimp-says {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
}
.ember-chimp.error .chimp-says {
  background-color: none;
  color: #fff;
}
@media (max-width: 768px) {
  .ember-chimp.error .chimp-says {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
}

/*****************
404
******************/
.error-404-header {
  margin-top: 60px;
}
.error-404-header h1 {
  font-size: 60px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .error-404-header h2 {
    font-size: 30px;
  }
}
@media (max-width: 568px) {
  .error-404-header {
    margin-top: 80px;
  }
  .error-404-header h2 {
    font-size: 22px;
  }
}

#section-404 {
  min-height: 300px;
  text-align: center;
}
#section-404 p {
  font-size: 18px;
}

/**********************
	HELPERS
***********************/
.anchor {
  position: relative;
}

.bg--light_grey {
  background: #f2f2f3;
}

.bg--white {
  background: #fff;
}

.bg--shade_dark_blue {
  background: #18578c;
}

.bg--shade_blue {
  background: #44ade2;
}

.bg--dark_blue {
  background: #1c68a6;
}

.bg--blue {
  background: #4dbeee;
}

.bg--seafoam {
  background: #70c7ad;
}

.txt--shade_blue {
  color: #44ade2;
}

.txt--shade_dark_blue {
  color: #18578c;
}

.txt--dark_blue {
  color: #1c68a6;
}

.txt--white {
  color: #fff;
}

.txt--center {
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-txt--center {
    text-align: center;
    margin: 20px auto;
    float: none;
  }
}

.padding-top--none {
  padding-top: 0px;
}

.padding-bottom--none {
  padding-bottom: 0px;
}

.padding-left--none {
  padding-left: 0px;
}

.padding-right--none {
  padding-right: 0px;
}

.line_short {
  width: 60px;
  margin: 20px 0;
  height: 1px;
}
.line_short--white {
  border-top: 2px solid #fff;
}
.line_short--dark_blue {
  border-top: 2px solid #1c68a6;
}
.line_short--shade_blue {
  border-top: 2px solid #44ade2;
}

.line_long {
  width: 100%;
  margin: 20px 0;
  clear: both;
}
.line_long--white {
  border: 1px solid #fff;
}
.line_long--dark_blue {
  border: 1px solid #1c68a6;
}
.line_long--shade_blue {
  border: 1px solid #44ade2;
}
.line_long--grey {
  border: 1px solid rgba(80, 77, 76, 0.2);
}
.line_long.spacer {
  margin-top: 60px;
  margin-bottom: 40px;
  display: block;
  overflow: hidden;
}
@media (max-width: 568px) {
  .line_long.spacer {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.float--left {
  float: left;
}

.float--right {
  float: right;
}

.body_padding {
  padding: 60px 80px;
}
@media (max-width: 1024px) {
  .body_padding {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .body_padding {
    padding: 40px 20px;
  }
}
@media (max-width: 568px) {
  .body_padding {
    padding: 30px 10px 30px 0px;
  }
}

.list--styled {
  list-style: none;
  padding: 0;
}
.list--styled li {
  line-height: 1.4;
  padding-left: 50px;
  text-indent: -24px;
  margin-bottom: 12px;
}
.list--styled li:before {
  content: "•";
  color: #44ade2;
  margin-right: 20px;
}
.list--styled li p {
  display: inline;
}
.list--styled_white li:before {
  color: #fff;
}

.view--desktop_only {
  display: block;
}
@media (max-width: 768px) {
  .view--desktop_only {
    display: none;
  }
}

.view--mobile_only {
  display: none;
}
@media (max-width: 768px) {
  .view--mobile_only {
    display: block;
  }
}

.all-caps {
  text-transform: uppercase;
}

.ember-modal-dialog {
  border-radius: 0px !important;
  padding: 6px !important;
}
.ember-modal-dialog img {
  max-width: 90vw;
  max-height: 90vh;
}

.flex_parent--contained {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}
.flex_parent--contained .contained {
  margin-left: 60px;
}
.flex_parent--contained .contained.two {
  width: 50%;
}
.flex_parent--contained .contained.two:first-child {
  margin-left: 0px;
}
@media (max-width: 1024px) {
  .flex_parent--contained .contained {
    margin-left: 40px;
  }
}
@media (max-width: 768px) {
  .flex_parent--contained .contained {
    margin-left: 20px;
  }
}
@media (max-width: 568px) {
  .flex_parent--contained {
    flex-direction: column;
  }
  .flex_parent--contained .contained {
    margin-top: 20px;
    margin-left: 0px;
  }
  .flex_parent--contained .contained.two {
    width: auto;
  }
  .flex_parent--contained .contained.two:first-child {
    margin-top: 0px;
  }
}

.count {
  font-size: 12px;
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px 0px 6px;
  background: #44ade2;
  color: #fff;
  border-radius: 2px;
  line-height: 1;
  font-weight: 400;
}

.text--hide {
  font-size: 0px;
  color: transparent;
  background-color: transparent;
  border: 0;
}

/*****************
	INDEX PAGE
******************/
.index .hero {
  height: auto;
  background-image: url("images/home-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}
.index .hero h1 {
  margin-bottom: 56px;
}
.index .hero h4 {
  font-weight: 400;
  line-height: 1.3;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .index .hero h1 {
    margin-bottom: 86px;
  }
  .index .hero h4 {
    margin-top: 86px;
  }
}
@media (max-width: 568px) {
  .index .hero h1 {
    margin-bottom: 26px;
  }
}
.index .key_value_list .key_value_list-child {
  float: left;
  width: 33.3333%;
}
@media (max-width: 568px) {
  .index .key_value_list .key_value_list-child {
    width: 50%;
  }
}
.index .contained {
  margin-top: -60px;
  margin-bottom: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.index .contained .line_long {
  margin-top: 60px;
}
.index .contained .key_value_list {
  margin: 60px 0 0px 0;
}
.index .contained .key_value_list .key_value_list-child {
  margin-bottom: 60px;
}
.index .contained .key_value_list .key, .index .contained .key_value_list .value {
  float: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.index .contained .key_value_list .key {
  font-size: 15px;
  width: 30%;
  min-height: 80px;
  line-height: 1.4;
  color: #1c68a6;
  border-right: 2px solid #44ade2;
}
.index .contained .key_value_list .value {
  width: 70%;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 36px;
  font-weight: 700;
  color: #18578c;
}
.index .contained .key_value_list sup {
  font-size: 23px;
}
.index .contained .key_value_list small {
  font-size: 0.7em;
}
@media (max-width: 1024px) {
  .index .contained {
    margin-bottom: 60px;
  }
  .index .contained .key_value_list {
    margin: 30px 0;
  }
  .index .contained .key_value_list .key_value_list-child {
    margin-bottom: 30px;
  }
  .index .contained .key_value_list .value {
    padding-left: 20px;
    font-size: 31px;
  }
}
@media (max-width: 768px) {
  .index .contained {
    margin-bottom: 30px;
  }
  .index .contained .key_value_list {
    text-align: center;
  }
  .index .contained .key_value_list .key_value_list-child {
    width: 48%;
    float: none;
    display: inline-block;
  }
}
@media (max-width: 568px) {
  .index .contained h4 {
    display: block;
    float: none;
    text-align: center;
    margin-bottom: 20px;
  }
  .index .contained .line_long {
    margin-top: 20px;
  }
  .index .contained .btn_pill {
    display: block;
    float: none;
    margin: 0 auto;
    max-width: 80%;
  }
  .index .contained .key_value_list .key_value_list-child {
    padding: 10px;
    box-sizing: content-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .index .contained .key_value_list .key, .index .contained .key_value_list .value {
    float: none;
  }
  .index .contained .key_value_list .key {
    float: none;
    width: auto;
    border-right: none;
    min-height: 0px;
    text-align: center;
    margin-bottom: 10px;
  }
  .index .contained .key_value_list .key br {
    display: none;
  }
  .index .contained .key_value_list .value {
    text-align: center;
    width: auto;
    font-size: 22px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .index .contained .key_value_list .value br {
    display: none;
  }
  .index .contained .key_value_list .value sup {
    font-size: 10px;
  }
  .index .contained #temp-line {
    float: none;
    display: block;
    text-align: center;
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .index .subscribe_section h4 {
    text-align: center;
  }
  .index .subscribe_section button {
    margin-top: 20px;
  }
}

#online_section h1 {
  margin-bottom: 20px;
  margin-top: auto;
}
#online_section .fa {
  color: #fff;
}
#online_section .visit-us {
  margin-bottom: auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
}
#online_section .visit-us span {
  margin-right: 10px;
}
#online_section .visit-us .fa {
  font-size: 16px;
  line-height: 30px;
}
#online_section .online-header {
  height: 400px;
  display: flex;
  flex-direction: column;
}
#online_section #feedbox_section .feedbox {
  float: left;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 768px) {
  #online_section #feedbox_section .feedbox {
    max-width: 500px;
    margin: 20px auto 0px auto;
    float: none;
  }
}
#online_section #tw_feedbox {
  width: 100%;
}
#online_section #tw_feedbox .twitter_feed {
  background: #fff;
}
#online_section #tw_feedbox .twitter_feed iframe {
  width: 800px !important;
  border-radius: 0px;
  height: 100%;
}
#online_section #fb_feedbox {
  width: 320px;
}
@media (max-width: 900px) {
  #online_section #fb_feedbox {
    margin-left: -20px;
  }
}
@media (max-width: 768px) {
  #online_section #fb_feedbox {
    display: none;
  }
}
#online_section .smedia {
  margin: -8px 7px;
}
@media (max-width: 768px) {
  #online_section .online-header {
    height: auto;
    align-items: center;
  }
  #online_section h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  #online_section .visit-us {
    text-align: center;
    float: none;
    margin-top: 20px;
  }
}
@media (max-width: 568px) {
  #online_section .online-header {
    margin-top: 40px;
  }
}

#recent_updates_section h4 {
  margin: 0 auto;
  display: block;
  text-align: center;
}
#recent_updates_section .line_short {
  margin: 20px auto;
}
#recent_updates_section .btn {
  margin-top: 40px;
  display: inline-block;
}
@media (max-width: 768px) {
  #recent_updates_section .btn {
    margin-top: 0px;
  }
}
#recent_updates_section .stub .stub_media {
  background: #1c68a6 url("images/force-icon-large-white.png");
  background-repeat: no-repeat;
  -webkit-background-size: 100px auto;
  background-size: 100px auto;
  -moz-background-size: 100px auto;
  background-position: center center;
}

#feat_docs_section {
  background: #f2f2f3 url("images/propeller.jpg");
  background-repeat: no-repeat;
  background-position: 0% center;
  background-size: 60% auto;
  -moz-background-size: 60% auto;
  -webkit-background-size: 55% auto;
}
@media (max-width: 1200px) {
  #feat_docs_section {
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    -moz-background-size: auto 100%;
  }
}
#feat_docs_section .stubs {
  margin-top: 20px;
}
#feat_docs_section .stub .stub_icon {
  width: 42px;
  height: 42px;
  background-size: auto 126px;
  -webkit-background-size: auto 126px;
  -moz-background-size: auto 126px;
}
#feat_docs_section .stub .stub_icon.pres {
  background-position: 0px 0px;
}
#feat_docs_section .stub .stub_icon.doc {
  background-position: 0px -42px;
}
#feat_docs_section .stub .stub_icon.image {
  background-position: 0px -84px;
}
#feat_docs_section .line_short {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #feat_docs_section {
    background-position: right center;
  }
  #feat_docs_section .grid {
    padding-left: 0px;
  }
  #feat_docs_section .feat_docs_container {
    width: 65%;
    margin-bottom: 0px;
    float: left;
    margin-top: 0px;
  }
}
@media (max-width: 568px) {
  #feat_docs_section {
    background: #f2f2f3;
  }
  #feat_docs_section .body_padding {
    padding: 40px 20px;
  }
  #feat_docs_section .grid {
    padding-right: 0px;
  }
  #feat_docs_section .feat_docs_container {
    width: 100%;
  }
}

.home-3d-video {
  position: relative;
  height: 550px;
  overflow: hidden;
}
.home-3d-video video {
  width: 150%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 84%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  transform: translateX(-84%);
}
.home-3d-video .threeD-text-wrapper {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  height: 100%;
  width: 100%;
}
.home-3d-video .grid {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-3d-video .grid-pad {
  padding-left: 0px;
}
.home-3d-video .threeD-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  width: 568px;
}
.home-3d-video p {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  align-self: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .home-3d-video {
    height: 300px;
  }
  .home-3d-video .threeD-text {
    padding: 20px;
  }
  .home-3d-video p {
    font-size: 22px;
  }
}
@media (max-width: 568px) {
  .home-3d-video .grid-pad {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*****************
	ABOUT US PAGE
******************/
.about-us .hero {
  height: auto;
  background-image: url("images/about-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center bottom;
}
.about-us .hero h1 {
  margin-top: 56px;
}

#mandate_section .contained {
  margin-top: 80px;
  margin-bottom: 40px;
}
#mandate_section .contained .icon {
  margin-bottom: 20px;
}
#mandate_section .contained h4 {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #mandate_section .contained {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  #mandate_section .contained {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}
#mandate_section .btn_pill {
  display: inline-block;
}
@media (max-width: 768px) {
  #mandate_section .btn_pill {
    margin: 40px auto 0 auto;
  }
}

#catalyst_section .image_container .image {
  max-width: 100%;
}
@media (max-width: 568px) {
  #catalyst_section .image_container {
    display: none;
  }
}

#test-site_section .section_hero {
  background-image: url("images/force-test-site-hero.jpg");
  background-position: center center;
}
@media (max-width: 768px) {
  #test-site_section .section_hero {
    height: 300px;
    background-image: url("images/force-test-site-hero-mobile.jpg");
  }
}
@media (max-width: 568px) {
  #test-site_section .section_hero {
    height: 240px;
  }
}
#test-site_section .key_value_list {
  text-align: center;
  width: 98%;
  margin: 20px auto;
  overflow: hidden;
}
#test-site_section .key_value_list-child {
  text-align: center;
  padding: 0px 10px;
  width: 25%;
  float: left;
  box-sizing: border-box;
}
#test-site_section .key_value_list-child .key {
  display: block;
  margin: 0 auto;
}
#test-site_section .key_value_list-child .value {
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 568px) {
  #test-site_section {
    flex-wrap: wrap;
  }
  #test-site_section .key_value_list-child {
    width: 50%;
    float: left;
    box-sizing: border-box;
    height: 180px;
  }
  #test-site_section .key_value_list-child .value {
    max-width: none;
  }
}

#bod_section .members {
  margin-top: 80px;
}
#bod_section .members .member {
  min-height: 75px;
}

#board-photo {
  background: url("images/board-photo.jpg") top center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  height: 500px;
}
@media (max-width: 768px) {
  #board-photo {
    background-image: url("images/board-photo-mobile.jpg");
    height: 400px;
  }
}
@media (max-width: 568px) {
  #board-photo {
    background-image: url("images/board-photo-mobile.jpg");
    height: 240px;
  }
}

#fundy_std_section {
  background: #44ade2 url("images/waves.jpg");
  background-repeat: no-repeat;
  background-position: 0% bottom;
  background-size: 50% auto;
  -webkit-background-size: 50% auto;
  -moz-background-size: 50% auto;
}
@media (max-width: 1024px) {
  #fundy_std_section {
    background-size: 80% auto;
    background-position: -55% center;
  }
}
@media (max-width: 768px) {
  #fundy_std_section {
    background-size: auto 100%;
    background-position: 120% center;
  }
  #fundy_std_section .grid {
    padding-left: 0px;
  }
  #fundy_std_section .fundy_std_container {
    width: 65%;
    margin-bottom: 0px;
    float: left;
    margin-top: 0px;
  }
}
@media (max-width: 568px) {
  #fundy_std_section {
    background: none;
  }
  #fundy_std_section .grid {
    padding-right: 0px;
  }
  #fundy_std_section .fundy_std_container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

#quote_section {
  background: #fff url("images/Joe-Kozak.jpg");
  background-repeat: no-repeat;
  background-position: 112% 45%;
  background-size: 60% auto;
  -webkit-background-size: 60% auto;
  -moz-background-size: 60% auto;
}
#quote_section .quote_container {
  padding: 100px;
}
#quote_section .quote_container blockquote {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #44ade2;
}
#quote_section .quote_container .left_double_quote {
  font-size: 80px;
  display: block;
  line-height: 1;
  margin-bottom: -40px;
}
@media (max-width: 1024px) {
  #quote_section {
    background-size: 65% auto;
    -webkit-background-size: 65% auto;
    -moz-background-size: 65% auto;
    background-position: 50% auto;
  }
  #quote_section .quote_container {
    padding: 80px 40px;
  }
}
@media (max-width: 768px) {
  #quote_section {
    background-size: 60% auto;
    background-position: 0% center;
  }
  #quote_section .grid {
    padding-right: 0px;
  }
  #quote_section .quote_container {
    margin-bottom: 0px;
    float: right;
    padding: 40px 20px;
  }
  #quote_section .quote_container blockquote {
    font-size: 21px;
  }
}
@media (max-width: 568px) {
  #quote_section {
    background-size: cover;
    background-position: center center;
  }
  #quote_section .grid {
    padding-right: 0px;
    padding-left: 0px;
    display: flex;
    height: 300px;
  }
  #quote_section .quote_container {
    width: 80%;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    line-height: 1.3;
  }
  #quote_section .quote_container blockquote {
    font-size: 20px;
  }
  #quote_section .quote_container .left_double_quote {
    font-size: 60px;
    margin-bottom: -30px;
  }
}

#tidal_tech_section {
  position: relative;
}
#tidal_tech_section figure {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
}
#tidal_tech_section img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  #tidal_tech_section figure {
    display: none;
  }
}

#fast_prog_section {
  background: #18578c url("images/Moving-FAST-image.jpg");
  background-repeat: no-repeat;
  background-position: 0% center;
  background-size: 50% auto;
  -webkit-background-size: 50% auto;
  -moz-background-size: 50% auto;
}
@media (max-width: 1100px) {
  #fast_prog_section {
    background-size: auto 100%;
  }
}
@media (max-width: 1024px) {
  #fast_prog_section {
    background-size: auto 120%;
  }
}
@media (max-width: 768px) {
  #fast_prog_section {
    background: #18578c;
  }
}

#timeline {
  margin-top: 40px;
  clear: both;
  /** for reference: first and third row **/
  /** for reference: second and fourth row **/
  /** THIS ONE TARGETS THE VERY FIRST ITEM IN THE TIMELINE **/
}
#timeline .row {
  margin-bottom: 80px;
}
#timeline .row [class*=col-]:last-child {
  padding-right: 80px;
}
@media (max-width: 1024px) {
  #timeline .row [class*=col-]:last-child {
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  #timeline .row [class*=col-]:last-child {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  #timeline .row {
    margin-bottom: 0px;
  }
}
#timeline [class*=col-] {
  border: none;
}
#timeline .timeline_point {
  position: relative;
}
#timeline .timeline_point .special-border {
  height: 9px;
  width: 110px;
  position: absolute;
  top: 15px;
  right: -30px;
  z-index: 100;
  background: url("images/line.png") no-repeat;
  background-size: auto 9px;
  -webkit-background-size: auto 9px;
  -moz-background-size: auto 9px;
}
@media (max-width: 1024px) {
  #timeline .timeline_point .special-border {
    right: -10px;
    width: 80px;
    background-position: right;
  }
}
@media (max-width: 768px) {
  #timeline .timeline_point .special-border {
    display: none;
  }
}
#timeline .timeline_point strong {
  font-size: 36px;
  color: #fff;
  padding-bottom: 15px;
  border-bottom: 2px solid #44ade2;
  display: inline-block;
  line-height: 1;
  margin-bottom: 20px;
  background: #1c68a6;
  z-index: 300;
}
#timeline .timeline_point p {
  color: #fff;
}
@media (max-width: 768px) {
  #timeline .timeline_point {
    margin-bottom: 20px;
  }
  #timeline .timeline_point p {
    max-width: 80%;
  }
}
#timeline .row--odd [class*=col-]:last-child .timeline_point .special-border {
  display: none;
}
#timeline .row--odd [class*=col-]:first-child .timeline_point .special-border {
  transform: rotate(90deg);
  top: -25px;
  width: 35%;
  left: 55%;
  background-position: right center;
}
@media (max-width: 1024px) {
  #timeline .row--odd [class*=col-]:first-child .timeline_point .special-border {
    width: 42%;
  }
}
#timeline .row--even {
  display: flex;
  flex-direction: row-reverse;
}
#timeline .row--even [class*=col-] .timeline_point .special-border {
  transform: rotate(-180deg);
  top: 25px;
}
#timeline .row--even [class*=col-]:first-child .timeline_point .special-border {
  transform: rotate(90deg);
  top: -35px;
  width: 35%;
  left: 40%;
  background-position: right;
}
@media (max-width: 1024px) {
  #timeline .row--even [class*=col-]:first-child .timeline_point .special-border {
    width: 24%;
  }
}
@media (max-width: 768px) {
  #timeline .row--even {
    display: block;
  }
}
#timeline .row--odd:first-child [class*=col-]:first-child .timeline_point .special-border {
  position: absolute;
  transform: none;
  top: 14px;
  width: 50%;
  left: 68%;
}
@media (max-width: 1024px) {
  #timeline .row--odd:first-child [class*=col-]:first-child .timeline_point .special-border {
    left: 50%;
  }
}

@media (max-width: 568px) {
  #advisory_section h1 {
    margin-top: 10px;
  }
  #advisory_section .btn {
    float: none;
  }
}

.news-and-updates-index .stubs .stub .stub_date,
.news-and-updates-view .stubs .stub .stub_date {
  color: #44ade2;
}
.news-and-updates-index .stubs .stub .stub_media,
.news-and-updates-view .stubs .stub .stub_media {
  float: right;
  width: 218px;
  height: 146px;
  margin-left: 20px;
}
@media (max-width: 568px) {
  .news-and-updates-index .stubs .stub .stub_media,
.news-and-updates-view .stubs .stub .stub_media {
    display: none;
  }
}
.news-and-updates-index .stubs .stub .btn_simple,
.news-and-updates-view .stubs .stub .btn_simple {
  margin-bottom: 10px;
}
.news-and-updates-index .stubs .stub:hover .btn_simple,
.news-and-updates-view .stubs .stub:hover .btn_simple {
  color: #44ade2;
  border-color: #44ade2;
}

@media (max-width: 768px) {
  #loader_section .col-1-1 {
    margin-bottom: 0px;
  }
}

.news-and-updates-index .hero {
  height: auto;
  background-image: url("images/news-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}
.news-and-updates-index .hero h1 {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .news-and-updates-index .filter_categories {
    margin-bottom: 0px;
  }
}
.news-and-updates-index .spinner {
  font-size: 14px;
  display: block;
  color: #70c7ad;
  margin: 40px auto;
}
.news-and-updates-index .stubs .stub {
  min-height: 140px;
}
.news-and-updates-index .stubs .stub_title {
  max-width: 80%;
}
@media (max-width: 768px) {
  .news-and-updates-index aside {
    margin-top: -30px;
  }
}
@media (max-width: 568px) {
  .news-and-updates-index aside {
    margin-top: 0px;
  }
}

#load_more_news {
  margin: 20px auto;
}

.news-and-updates-view .hero .grid-pad {
  padding-bottom: 40px;
}
.news-and-updates-view .hero .back {
  margin-top: 30px;
  display: block;
  margin-bottom: 30px;
}
.news-and-updates-view .hero h3 {
  max-width: 60%;
  margin-bottom: 30px;
}
.news-and-updates-view .hero .social_container {
  margin-top: -30px;
}
.news-and-updates-view .hero .smedia {
  font-size: 18px;
  line-height: 30px;
}
.news-and-updates-view .hero .smedia i {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .news-and-updates-view .hero .grid-pad {
    padding-bottom: 20px;
  }
  .news-and-updates-view .hero h3 {
    max-width: 80%;
  }
  .news-and-updates-view .hero .social_container {
    margin-top: -26px;
  }
}
@media (max-width: 568px) {
  .news-and-updates-view .hero .back {
    margin-top: 60px;
  }
  .news-and-updates-view .hero h3 {
    max-width: none;
    width: auto;
  }
  .news-and-updates-view .hero .social_container {
    float: None;
    margin-top: 20px;
  }
  .news-and-updates-view .hero .social_container .smedia {
    margin-left: 0px;
  }
}
.news-and-updates-view .stubs .stub .stub_title {
  max-width: 96%;
}
@media (max-width: 568px) {
  .news-and-updates-view .stubs .stub {
    border-bottom: none;
  }
}

#attached_files_section h4 {
  margin-bottom: 20px;
}

#news-image_gallery_section .grid-pad {
  padding: 40px 0px 40px 80px;
}
@media (max-width: 1024px) {
  #news-image_gallery_section .grid-pad {
    padding: 40px 0px 20px 40px;
  }
}
@media (max-width: 768px) {
  #news-image_gallery_section .grid-pad {
    padding: 40px 0px 40px 20px;
  }
}
#news-image_gallery_section .line_short {
  margin-bottom: 40px;
}

.partners-index .hero {
  min-height: 375px;
  background-image: url("images/partners-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}
.partners-index .hero .grid {
  height: 375px;
}
.partners-index .hero h1 {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .partners-index .hero {
    height: auto;
    min-height: 0px;
  }
  .partners-index .hero .grid {
    height: auto;
  }
}
.partners-index .hero .partners_filter_container {
  margin-top: 80px;
}
.partners-index .hero .partners_filter_container h4 {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .partners-index .hero .partners_filter_container {
    float: none;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

#partners_filter {
  color: #fff;
  border: 2px solid #fff;
  float: right;
  font-size: 16px;
  background: None;
  min-width: 200px;
  outline: none !important;
  font-weight: 600;
  background: none;
}
#partners_filter option {
  color: #000 !important;
}
@media (max-width: 768px) {
  #partners_filter {
    float: none;
    color: #fff;
    border: 2px solid #fff;
  }
}

#partners_list .stubs {
  margin-top: -100px;
}
#partners_list [class*=col-] {
  padding-right: 20px;
}
#partners_list .stub_vert {
  min-height: 220px;
}
#partners_list .stub_media {
  height: 150px;
  width: auto;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
#partners_list .stub_media img {
  width: 100%;
  max-height: 150px;
  max-width: 150px;
  margin: auto;
}
#partners_list .partner_name {
  margin: auto;
  color: #1c68a6;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
}
#partners_list .stub_buttons {
  text-align: center;
}
#partners_list .partners_default_message {
  margin-top: 100px;
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 1100px) {
  #partners_list .stub_vert {
    min-height: 264px;
  }
  #partners_list .stub_buttons .btn {
    display: block;
    margin-top: 8px;
  }
}
@media (max-width: 1024px) {
  #partners_list .col-10-12 {
    width: 100%;
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  #partners_list .stubs {
    margin-top: -80px;
    padding-right: 0px;
  }
}
@media (max-width: 568px) {
  #partners_list .stub {
    max-width: none;
  }
}

.partners-view .hero .back {
  margin-top: 46px;
}
.partners-view article .article_media {
  background: none;
  height: auto;
  padding-bottom: 0px;
}
.partners-view article .article_media img {
  width: auto;
  max-width: 100%;
  max-height: 200px;
}
.partners-view aside h6 {
  margin-bottom: 12px;
}
.partners-view aside address {
  color: rgba(80, 77, 76, 0.7);
}
.partners-view aside .btn_ghost {
  margin-bottom: 8px;
}

#partners-view-related-news {
  display: flex;
  flex-wrap: wrap;
}
#partners-view-related-news .stub {
  flex-basis: 33.3333%;
  padding-right: 20px;
  border: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#partners-view-related-news .stub:last-child {
  padding-right: 0px;
}
@media (max-width: 768px) {
  #partners-view-related-news .stub {
    flex-basis: 50%;
  }
}
@media (max-width: 568px) {
  #partners-view-related-news {
    flex-direction: column;
  }
  #partners-view-related-news .stub {
    padding-right: 0px;
  }
}

.capabilities .hero {
  background-image: url("images/cable-lay-6.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center 30%;
}
.capabilities .hero h1 {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .capabilities .hero {
    background-image: url("images/cable-lay-6-mobile.jpg");
    min-height: 238px;
  }
  .capabilities .hero h1 {
    margin-top: 65px;
    margin-bottom: 0px;
  }
}
@media (max-width: 568px) {
  .capabilities .hero h1 {
    margin-top: 85px;
  }
}
.capabilities .list--styled li {
  padding-left: 30px;
  text-indent: -26px;
}

#capabilities_writeup p {
  font-size: 20px;
}
@media (max-width: 768px) {
  #capabilities_writeup .grid-pad {
    padding: 30px 20px;
  }
  #capabilities_writeup p {
    font-size: 17px;
  }
}

#echofilter {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-shadow: 0px 0px 3px #d9d9d9;
}
#echofilter .echofilter__img-container {
  min-width: 40%;
  flex-grow: 1;
  background: url("images/Echofilter.jpg");
  background-repeat: no-repeat;
  background-position: -3px -1px;
}
#echofilter .echofilter__text-container {
  padding: 40px;
  align-self: center;
  flex-grow: 2;
}
@media (max-width: 768px) {
  #echofilter {
    flex-direction: column;
  }
  #echofilter .echofilter__img-container {
    height: 140px;
    background-size: cover;
    background-position: left top;
  }
  #echofilter .echofilter__text-container {
    padding: 20px;
  }
}

#app-research_section .app-research-images {
  min-height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app-research_section .app-research-image-wrapper {
  box-sizing: border-box;
  padding: 20px;
}
#app-research_section .app-research-image {
  display: block;
  max-width: 100%;
}
@media (max-width: 768px) {
  #app-research_section .app-research-images {
    flex-direction: row;
    width: 100%;
    padding-right: 0px;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  #app-research_section .app-research-image-wrapper:first-child {
    padding-left: 0px;
  }
}
@media (max-width: 568px) {
  #app-research_section .app-research-images {
    display: none;
  }
}

#data-capture {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-shadow: 0px 0px 3px #d9d9d9;
}
#data-capture .data-capture__img-container {
  min-width: 40%;
  flex-grow: 1;
  background: url("images/current-black-rock-aerial.jpg");
  background-repeat: no-repeat;
  background-position: -3px -1px;
  background-size: cover;
}
#data-capture .data-capture__text-container {
  padding: 40px;
  align-self: center;
  flex-grow: 2;
}
@media (max-width: 768px) {
  #data-capture {
    flex-direction: column;
  }
  #data-capture .data-capture__img-container {
    height: 160px;
    background: url("images/current-black-rock-aerial-mobile.jpg");
    background-size: cover;
    background-position: left 20%;
  }
  #data-capture .data-capture__text-container {
    padding: 20px;
  }
}

#infrastructure_section {
  background: #1c68a6 url("images/cable-lay-2.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  -moz-background-size: auto 100%;
  -webkit-background-size: auto 100%;
}
@media (max-width: 768px) {
  #infrastructure_section {
    background: #1c68a6;
  }
}

#engagement_section {
  background: #fff url("images/cable-lay-4.jpg");
  background-repeat: no-repeat;
  background-position: -200px center;
  background-size: auto 150%;
}
@media (max-width: 1100px) {
  #engagement_section {
    background-position: -300px center;
  }
}
@media (max-width: 1024px) {
  #engagement_section {
    background-position: -350px center;
  }
}
@media (max-width: 768px) {
  #engagement_section {
    background-position: left top;
    background: #fff url("images/cable-lay-4-mobile.jpg");
    background-size: cover;
  }
  #engagement_section .grid {
    padding: 40px;
  }
  #engagement_section .engagement-text-block {
    background: rgba(255, 255, 255, 0.9);
  }
}
@media (max-width: 568px) {
  #engagement_section {
    background-position: left top;
    background: #fff url("images/cable-lay-4-mobile.jpg");
    background-size: cover;
  }
  #engagement_section .grid {
    padding: 20px;
  }
  #engagement_section .body_padding {
    padding: 20px;
  }
}

.learning-portal-index .hero,
.learning-portal-tides .hero,
.learning-portal-tidal-energy .hero,
.learning-portal-environmental-monitoring .hero {
  height: auto;
  background-image: url("images/learning-portal-hero-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center 20%;
}

@media (max-width: 568px) {
  .learning-portal-tides .hero .back,
.learning-portal-tidal-energy .hero .back,
.learning-portal-environmental-monitoring .hero .back {
    margin-top: 40px;
  }
}

.learning-portal-index .hero h1 {
  margin-top: 30px;
}
.learning-portal-index .hero .sub_text {
  margin-top: -40px;
}
.learning-portal-index .hero small {
  text-align: right;
  display: inline-block;
  margin-right: 10px;
  font-size: 13px;
}
.learning-portal-index .hero .btn {
  margin-top: -6px;
}
@media (max-width: 568px) {
  .learning-portal-index .hero h1 {
    margin-top: 76px;
  }
  .learning-portal-index .hero .sub_text {
    float: none;
    margin-top: 20px;
  }
  .learning-portal-index .hero .sub_text small {
    text-align: left;
    display: block;
    float: none;
  }
  .learning-portal-index .hero .sub_text a {
    display: inline-block;
    margin-top: 10px;
  }
}
.learning-portal-index .key_value_list .key_value_list-child {
  width: 20%;
  float: left;
  padding: 0 10px;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  margin-bottom: 0px;
}
.learning-portal-index .key_value_list .key, .learning-portal-index .key_value_list .value {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.learning-portal-index .key_value_list .key {
  width: 88px;
  margin: 0 auto;
  font-size: 15px;
  min-height: 80px;
  line-height: 1.4;
  color: #1c68a6;
}
.learning-portal-index .key_value_list .icon {
  display: block;
  margin: 0 auto;
  float: none;
}
.learning-portal-index .key_value_list .value {
  color: rgba(80, 77, 76, 0.5);
  font-weight: 700;
}
.learning-portal-index .key_value_list .value span {
  padding-top: 10px;
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #18578c;
}
.learning-portal-index .key_value_list .value sup {
  font-size: 23px;
}
@media (max-width: 768px) {
  .learning-portal-index .key_value_list {
    text-align: center;
  }
  .learning-portal-index .key_value_list .key_value_list-child {
    float: none;
    display: inline-block;
    width: 200px;
    vertical-align: top;
    margin-bottom: 30px;
  }
  .learning-portal-index .key_value_list .value span {
    font-size: 28px;
  }
  .learning-portal-index .key_value_list .value sup {
    font-size: 20px;
  }
}
@media (max-width: 568px) {
  .learning-portal-index .key_value_list {
    margin-top: 20px;
  }
}
.learning-portal-index .portal .btn {
  margin-top: -26px;
}
@media (max-width: 768px) {
  .learning-portal-index .portal .btn {
    margin-top: 20px;
  }
}

#tides_section {
  background: #f2f2f3 url("images/Force-image-1.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  -moz-background-size: auto 100%;
  -webkit-background-size: auto 120%;
}
@media (max-width: 1024px) {
  #tides_section {
    background: #f2f2f3 url("images/Force-image-1a.jpg") no-repeat;
    background-position: right center;
    background-size: auto 110%;
    -moz-background-size: auto 110%;
    -webkit-background-size: auto 110%;
  }
}
@media (max-width: 768px) {
  #tides_section {
    background: #f2f2f3;
  }
}

#threed_render_section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
#threed_render_section .image-container-test {
  position: absolute;
  width: 50%;
  height: 100%;
}
#threed_render_section .image-container-test img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  #threed_render_section .image-container-test {
    display: none;
  }
}

#tidal_energy_section {
  background: #fff url("images/cape-sharp-tidal.jpg");
  background-repeat: no-repeat;
  background-position: -10% center;
  background-size: 80% auto;
  -moz-background-size: 80% auto;
  -webkit-background-size: auto 120%;
}
@media (max-width: 1400px) {
  #tidal_energy_section {
    background: #fff url("images/cape-sharp-tidal-b.jpg") no-repeat;
    -webkit-background-size: auto 120%;
    background-size: auto 120%;
    -moz-background-size: auto 120%;
  }
}
@media (max-width: 1024px) {
  #tidal_energy_section {
    background: #fff url("images/cape-sharp-tidal-c.jpg") no-repeat;
    background-position: -5% center;
    -webkit-background-size: auto 100%;
    -moz-background-size: auto 100%;
  }
}
@media (max-width: 768px) {
  #tidal_energy_section {
    background: none;
  }
}

#env_mon_section {
  background: #f2f2f3 url("images/vectron-trial.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  -moz-background-size: auto 100%;
  -webkit-background-size: auto 100%;
}
#env_mon_section .btn {
  margin-top: -60px;
}
@media (max-width: 1200px) {
  #env_mon_section {
    background: #f2f2f3 url("images/vectron-trial-b.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    -moz-background-size: auto 100%;
  }
}
@media (max-width: 1024px) {
  #env_mon_section {
    background: #f2f2f3 url("images/vectron-trial-c.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-background-size: auto 100%;
    background-size: auto 100%;
    -moz-background-size: auto 100%;
  }
}
@media (max-width: 768px) {
  #env_mon_section {
    background: #f2f2f3;
  }
  #env_mon_section .btn {
    margin-top: -56px;
  }
}
#env_mon_section .env_mon_list .list--styled li {
  padding-left: 30px;
}
#env_mon_section .env_mon_list [class*=col-] {
  padding-right: 10px;
}

#tides_renewable_section {
  background: #44ade2 url("images/turbine-3.jpg");
  background-repeat: no-repeat;
  background-position: 0% center;
  background-size: 50% auto;
  -moz-background-size: 50% auto;
  -webkit-background-size: 49% auto;
}
@media (max-width: 1200px) {
  #tides_renewable_section {
    background: #44ade2 url("images/turbine-3-b.jpg") no-repeat;
    background-size: auto 120%;
    -webkit-background-size: auto 120%;
    -moz-background-size: auto 120%;
    background-position: 0% top;
  }
}
@media (max-width: 768px) {
  #tides_renewable_section {
    background: #44ade2;
  }
  #tides_renewable_section .body_padding {
    width: 100%;
    margin-left: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

#tides_bof_section .section_hero {
  height: 300px;
  background: url("images/bay-of-fundy.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}

#subsea_equip_section figure {
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%;
}
#subsea_equip_section figure img {
  max-width: 100%;
  height: auto;
  position: absolute;
}

#shorebased_equip_section {
  background: #fff url("images/Aerial.jpg");
  background-repeat: no-repeat;
  background-position: 0% center;
  background-size: auto 100%;
  -moz-background-size: auto 100%;
  -webkit-background-size: auto 100%;
}
@media (max-width: 768px) {
  #shorebased_equip_section {
    background: #fff;
  }
  #shorebased_equip_section .body_padding {
    padding-left: 0px;
    padding-right: 0px;
  }
}

#vectron_section small {
  font-size: 13px;
  margin-top: 8px;
  display: block;
  line-height: 1.3;
}
#vectron_section figure img {
  max-width: 300px;
  height: auto;
}

#barrage-vs-instream_section .flex_parent--contained {
  margin-top: 40px;
}
@media (max-width: 768px) {
  #barrage-vs-instream_section .flex_parent--contained {
    margin-top: 20px;
  }
}

.contact-us .hero h1 {
  margin-top: 60px;
  font-size: 66px;
}
@media (max-width: 1024px) {
  .contact-us .hero h1 {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .contact-us .hero h1 {
    font-size: 42px;
  }
}
@media (max-width: 568px) {
  .contact-us .hero h1 {
    font-size: 32px;
    margin-top: 80px;
  }
}
.contact-us .hero h4 {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contact-us .hero h4 {
    margin-top: 30px;
  }
}
.contact-us .hero a {
  text-decoration: none;
}
.contact-us .hero a:hover p {
  color: #70c7ad;
}
.contact-us .map_container {
  background: gray;
  height: 400px;
  margin-top: -30px;
  margin-bottom: 80px;
}
.contact-us .map_container .leaflet-container {
  height: 400px;
  z-index: 5;
}
.contact-us .map_container .leaflet-marker-icon {
  width: 40px;
  height: auto;
}
@media (max-width: 768px) {
  .contact-us .map_container {
    margin-top: -30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 568px) {
  .contact-us .map_container {
    margin-top: 30px;
  }
}
.contact-us .subscribe_section {
  background: url("images/visitor-centre.jpg") no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
}
.contact-us .subscribe_section .form_subscribe .btn {
  border: 2px solid #fff;
  color: #fff;
}
.contact-us .subscribe_section .form_subscribe .btn:hover {
  border: 2px solid #70c7ad;
  color: #70c7ad;
}
@media (max-width: 768px) {
  .contact-us .subscribe_section .form_subscribe .btn {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .contact-us .subscribe_section {
    background: url("images/visitor-centre-mobile.jpg") no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
  }
}

#force_staff_section .line_short {
  margin: 0 auto;
  float: none;
  display: inline-block;
}
#force_staff_section .members {
  padding-top: 60px;
  overflow: hidden;
}
#force_staff_section .member_position {
  font-size: 13px;
}

#send_message_section {
  background: #f2f2f3 url("images/send-message.jpg");
  background-repeat: no-repeat;
  background-position: -20% center;
  background-size: 70% auto;
  -moz-background-size: 70% auto;
  -webkit-background-size: 70% auto;
}
@media (max-width: 1024px) {
  #send_message_section {
    -webkit-background-size: 80% auto;
    background-size: 80% auto;
    -moz-background-size: 80% auto;
    background-position: -24% center;
  }
}
@media (max-width: 768px) {
  #send_message_section {
    background: #f2f2f3 url("images/send-message-2.jpg");
    background-repeat: no-repeat;
    background-position: 120% center;
    background-size: auto 100%;
    -moz-background-size: auto 100%;
    -webkit-background-size: auto 100%;
  }
  #send_message_section .quote_container {
    margin-bottom: 0px;
  }
}
@media (max-width: 568px) {
  #send_message_section {
    background: #f2f2f3;
  }
}

#send_message_form {
  margin-top: 20px;
}
#send_message_form [class*=col-] {
  padding-right: 20px;
}

#report_line .report_phone, #report_line .report_toll {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}
#report_line .report_purpose {
  color: rgba(80, 77, 76, 0.7);
  font-size: 15px;
}

#visit-btn {
  margin-top: -32px;
}

.visit .hero {
  background-image: url("images/visitors-centre-hero-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}
.visit .hero h1 {
  margin-top: 60px;
}
.visit aside .map_container {
  height: 160px;
  background: gray;
}
.visit .visit-3d {
  background: #44ade2;
  padding: 20px;
  color: #fff;
  border-radius: 2px;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: left;
}
.visit .visit-3d p {
  flex-grow: 1;
}
.visit .visit-3d .fa {
  font-size: 20px;
  float: right;
}
.visit .visit-3d:hover {
  background: #70c7ad;
}

#webcam_section {
  background-image: url("images/cape-split.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-position: center center;
}
#webcam_section .btn {
  margin-top: -50px;
  margin-right: 40px;
}
@media (max-width: 768px) {
  #webcam_section .btn {
    margin-top: 0px;
    float: none;
    margin-top: 30px;
    margin-right: 0px;
  }
}

.document-collection-index .hero {
  background: #18578c url("images/cape_split-hero.jpg") no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.document-collection-index .hero h1 {
  margin-top: 80px;
}
.document-collection-index .stub .stub_icon {
  background: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}
.document-collection-index .stub .stub_icon .doc_type {
  width: 42px;
  height: 42px;
  background-size: auto 126px;
  -webkit-background-size: auto 126px;
  -moz-background-size: auto 126px;
}
.document-collection-index .stub.with_icon .stub_title, .document-collection-index .stub.with_icon .stub_date, .document-collection-index .stub.with_icon .stub_desc, .document-collection-index .stub.with_icon .stub_tags, .document-collection-index .stub.with_icon .btn_simple {
  margin-left: 84px;
}

#search_keyword form {
  position: relative;
  overflow: hidden;
  clear: both;
  height: 33px;
}
#search_keyword form input {
  background: #f2f2f3;
}
#search_keyword .start_over {
  float: right;
  text-decoration: none;
  background: #44ade2;
  text-align: center;
  line-height: normal;
  font-size: 14px;
  color: #fff;
  padding: 4px 8px;
  margin-top: -2px;
}

.document-collection-view .hero {
  min-height: 340px;
  background: #18578c url("images/cape_split-hero.jpg") no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.document-collection-view .hero .back {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .document-collection-view .hero {
    min-height: 300px;
  }
}
@media (max-width: 568px) {
  .document-collection-view .hero .back {
    margin-top: 80px;
  }
}

.sign-in h1,
.forgot-password h1,
.reset-password h1,
.activate-account h1,
.account h1 {
  margin-top: 40px;
}

.sign-in .btn_pill {
  margin-right: 10px;
}

.ember-modal-dialog {
  z-index: 51;
  position: fixed;
}
.ember-modal-dialog.emd-in-place {
  position: static;
}

.ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .ember-modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center .ember-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ember-modal-wrapper.emd-animatable .ember-modal-dialog {
  position: relative;
}

.ember-modal-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.ember-modal-dialog {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #222;
  padding: 10px;
}

.ember-modal-overlay.translucent {
  background-color: rgba(128, 128, 128, 0.77);
}