/*!
Theme Name: Akouos
Theme URI: http://underscores.me/
Author: Image Conscious Studios
Author URI: https://www.icscreative.com/
Description: Custom theme: Akouos, developed by Image Conscious Studios
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: akouos
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Akouos is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover, a:focus, a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation, .site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/* Header Styles */
.site-header {
  width: 100%;
  position: fixed;
  display: block;
  height: auto;
  top: 0;
  padding-bottom: 0;
  padding-top: 0;
  z-index: 9999;
}
@media screen and (max-width: 850px) {
  .site-header.active {
    background: #49C6CB;
  }
}
@media screen and (min-width: 768px) {
  .site-header {
    position: fixed;
    top: auto;
    left: 0;
    background: #092035;
    z-index: 12;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 15px;
    display: -ms-flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    transition-property: background, top;
    transition-duration: 0.2s;
  }
}

@media screen and (min-width: 850px) {
  .site-header.active {
    background: #FFFFFF;
    box-shadow: 0 2px 160px 0 rgba(0, 0, 0, 0.17);
  }
}

.site-header .wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 50px;
  flex-direction: row;
  max-width: 1500px;
}

html p.site-title {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 16px;
}
@media screen and (min-width: 850px) {
  html p.site-title {
    margin-top: 0;
    margin-bottom: 2px;
  }
}

@media screen and (max-width: 850px) {
  html .toggled p.site-title {
    margin-top: 18px;
  }
}

.site-header.active .site-title a {
  background: url("imgs/akouos-x-lilly-logo-blue.svg");
}
.site-title a {
  text-indent: -10000px;
  display: block;
  width: 120px;
  transition-property: width, height, transform;
  transition-duration: 0.2s;
  background: url("imgs/akouos-x-lilly-logo-white.svg");
  background-repeat: no-repeat !important;
}
@media screen and (min-width: 850px) {
  .site-title a {
    width: 303px;
    height: 31px;
    margin-bottom: 8px;
  }
}

.site-branding {
  width: auto;
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
}
@media screen and (min-width: 850px) {
  .site-branding {
    width: 153px;
    position: relative;
    top: inherit;
    left: inherit;
    transform: none;
  }
}

@media screen and (min-width: 850px) {
  .site-header.active .main-navigation a {
    color: #182E41;
  }
}

.main-navigation a {
  font-size: 22px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  display: block;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  font-family: "Texta W00";
  font-weight: 700;
  letter-spacing: 3.02px;
}
@media screen and (min-width: 850px) and (max-width: 1050px) {
  .main-navigation a {
    font-size: 11px;
    letter-spacing: 2.5px;
  }
}
@media screen and (min-width: 1051px) {
  .main-navigation a {
    font-size: 13px;
    letter-spacing: 3.02px;
  }
}
@media screen and (min-width: 850px) {
  .main-navigation a {
    font-family: "Texta W00";
    text-transform: uppercase;
    color: #ECECEC;
    text-decoration: none;
    font-weight: 700;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.main-navigation li {
  width: auto;
  display: block;
}

.main-navigation {
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: auto;
  margin-left: auto;
}

.main-navigation a {
  display: inline-block;
  padding-bottom: 17px;
}

body nav#site-navigation .nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (min-width: 850px) {
  .site-header.active .current-menu-item a {
    background: linear-gradient(to bottom, #43D7DC, #43D7DC);
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: bottom left;
  }
}

.main-navigation .current-menu-item a {
  background: linear-gradient(to bottom, white, white);
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: bottom left;
}

.menu-primary-navigation-container ul#menu-primary-navigation a {
  padding-bottom: 20px;
}
@media screen and (min-width: 850px) {
  .menu-primary-navigation-container {
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: auto;
    background: none;
    transform: none;
    padding-top: 0;
  }
}

.toggled .menu-primary-navigation-container {
  transform: translateX(0);
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .toggled .menu-primary-navigation-container {
    overflow-y: auto;
    transform: none;
  }
}

body nav .menu-primary-navigation-container ul#primary-menu {
  gap: 40px;
}

/* Secndary Nav */
body nav .menu-secondary-navigation-container {
  margin-right: 4px;
}

body nav ul#menu-secondary-navigation {
  gap: 45px;
  margin-right: 2px;
}

body nav ul#menu-secondary-navigation a {
  color: #ececec;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  letter-spacing: unset;
  padding-bottom: 10px;
}

body .site-header.active ul#menu-secondary-navigation a {
  color: #5D7089;
}

@media screen and (min-width: 851px) {
  body .site-header ul#menu-secondary-navigation .current_page_item a {
    background: none;
    text-decoration: underline;
  }
}
@media screen and (max-width: 850px) {
  body nav ul#menu-secondary-navigation {
    gap: 0;
  }
  body nav#site-navigation .nav-wrapper {
    background-color: #49c6cb;
    position: fixed;
    top: 0;
    left: 100vw;
    height: 100vh;
    width: 75vw;
    transition: left 0.5s;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow-y: scroll;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  body nav#site-navigation .nav-wrapper a {
    text-transform: uppercase;
    font-size: 22px;
    padding-bottom: 17px;
    padding-top: 30px;
    letter-spacing: 3.02px;
    color: #fff !important;
  }
  body nav.toggled#site-navigation .nav-wrapper {
    left: 0;
  }
  body .main-navigation .menu {
    display: block;
  }
}
@media screen and (max-width: 1390px) {
  body .site-header .wrapper {
    gap: 10px;
    justify-content: center;
  }
  body .site-title a {
    height: 30px;
    width: 300px;
  }
}
@media screen and (max-width: 1000px) {
  body nav .menu-primary-navigation-container ul#primary-menu {
    gap: 25px;
  }
}
@media screen and (max-width: 849px) {
  body header.site-header {
    height: 60px;
  }
  body .site-header.active .site-title a {
    background: url("imgs/akouos-x-lilly-logo-white.svg");
  }
}
.main-navigation .menu {
  width: 100%;
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media screen and (max-width: 850px) {
  .main-navigation .menu {
    border-bottom: none;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 850px) {
  .main-navigation.toggled .menu {
    display: block;
  }
}

/*.current_page_item, .current_page_parent {
	.blog #primary-menu &, .single #primary-menu & {
		a {
			&:before {
				content: "";
				width: 100%;
				height: 3px;
				background: $teal;
				position: absolute;
				bottom: -3px;
				left: 0;
				@media screen and (max-width: $b-768) {
					display: none;
				}
			}
		}
	}
}*/
.menu-toggle {
  background: url(imgs/menu-button-t.svg) no-repeat center center/100%;
  display: none;
  text-indent: -10000px;
  border: none;
  border-radius: 0;
  position: absolute;
  right: 4.5%;
  top: 20px;
  width: 25px;
  height: 20px;
  padding: 0;
  z-index: 2;
  display: inline-block;
}
@media screen and (min-width: 850px) {
  .menu-toggle {
    display: none;
  }
}
.toggled .menu-toggle, .site-header.active .menu-toggle {
  background: url(imgs/menu-button.svg) no-repeat center center/100%;
}

.page-id-153 .entry-header a,
.home .entry-header a {
  background: url(imgs/header-button.svg) no-repeat center center/100%;
  text-indent: -10000px;
  display: inline-block;
  width: 42px;
  height: 42px;
}
@media screen and (max-width: 768px) {
  .page-id-153 .entry-header a,
  .home .entry-header a {
    display: none;
  }
}

.blog .entry-header {
  justify-content: center;
}

@media screen and (min-width: 768px) {
  body.ie .entry-header .header-bg {
    height: 624px;
  }
}

.entry-header .header-bg, .single .entry-header {
  min-height: 300px;
  padding-left: 9.7%;
  padding-right: 9.7%;
  padding-top: 171px;
  padding-bottom: 12vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .entry-header .header-bg, .single .entry-header {
    min-height: 624px;
  }
}

.single .entry-header {
  position: relative;
}

.home .entry-header {
  min-height: 990px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 80px;
  position: relative;
  text-align: left;
  z-index: 11;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .home .entry-header {
    min-height: auto;
    padding-top: 63.6vw;
    border-bottom: 0;
  }
}

.home .entry-header:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.86;
  background-image: linear-gradient(-90deg, #092035 52%, rgba(9, 32, 53, 0) 60%);
}
@media screen and (max-width: 768px) {
  .home .entry-header:before {
    display: none;
  }
}

.home .entry-header:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 31.9vw;
  background: url(imgs/wave-lines-v1.svg) no-repeat top left/100%;
  pointer-events: none;
  opacity: 0.85;
  -moz-transform: translateY(148px);
  -webkit-transform: translateY(148px);
  transform: translateY(148px);
}
@media screen and (max-width: 768px) {
  .home .entry-header:after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .entry-header {
    min-height: auto;
    background-size: contain;
  }
}
.single .entry-header {
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .single .entry-header {
    min-height: auto;
    padding-top: 63.6vw;
    background-size: contain !important;
    background-color: transparent !important;
    background-position: top left !important;
  }
}
.single .entry-header:before {
  content: "";
  width: 102%;
  height: 0;
  padding-bottom: 8.9%;
  bottom: -2px;
  left: -1%;
  pointer-events: none;
  background: url(imgs/wave-w.svg) no-repeat bottom center/cover;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .single .entry-header:before {
    display: none;
  }
}

.header-content {
  position: relative;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .header-content {
    background: white;
    text-align: center;
  }
}
.page-id-153 .header-content, .home .header-content {
  padding-left: 47.5%;
  padding-right: 6.9%;
}
@media screen and (max-width: 768px) {
  .page-id-153 .header-content, .home .header-content {
    padding-left: 7.6%;
    padding-right: 7.6%;
    padding-top: 20px;
  }
}

/*


Page Default Entry Header


*/
.highlight-text {
  color: #092035 !important;
}

.page-template-default h2.entry-title {
  font-family: "Texta W00";
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 3.02px;
  text-align: center;
  font-weight: 800;
  color: #009FA4;
  font-size: 16px;
}

.page-template-default .entry-header .header-bg, .page-template-page-narrow .entry-header .header-bg {
  background-image: linear-gradient(90deg, #01080E 0%, #00274D 51%, #000101 100%);
}

.page-template-default .entry-header .header-bg, .page-template-page-narrow .entry-header .header-bg {
  padding-bottom: 50px;
  padding-top: 50px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page-template-default .entry-header .header-bg, .page-template-page-narrow .entry-header .header-bg {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}

.blog .entry-header {
  padding-bottom: 50px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .blog .entry-header {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}

.entry-header .head-wrap {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.page-template-default .header-title, .page-template-page-narrow .header-title {
  font-family: "Texta W00";
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 3.91px;
  text-align: center;
  font-weight: 800;
  width: 100%;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-template-default .header-title, .page-template-page-narrow .header-title {
    font-size: 34px;
    letter-spacing: 7.91px;
  }
}

.header-content h1 {
  font-size: 94px;
  line-height: 82px;
  color: #49C6CB;
  font-family: "Texta W00";
  letter-spacing: -1.84px;
  margin-top: 10px;
  margin-bottom: 15px;
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .header-content h1 {
    font-size: 50px;
    line-height: 44px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 500px) {
  .header-content h1 {
    font-size: 35px;
    line-height: 33px;
    letter-spacing: -1.1px;
  }
}
.header-content h1 em {
  font-style: normal;
  color: white;
}
@media screen and (max-width: 768px) {
  .header-content h1 em {
    color: #092035;
  }
}

.blog h1.entry-title, .single h1.entry-title {
  color: white;
  text-align: center;
  font-family: "balboa";
  font-weight: 300;
  letter-spacing: 2.49px;
  font-size: 51px;
  text-transform: uppercase;
  line-height: 59px;
  margin-top: 0;
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .blog h1.entry-title, .single h1.entry-title {
    font-size: 30px;
    line-height: 34px;
  }
}
@media screen and (max-width: 500px) {
  .blog h1.entry-title, .single h1.entry-title {
    font-size: 22px;
    line-height: 26.5px;
  }
}

.panel-pull-card h2 {
  color: white;
  font-family: "Texta W00";
  font-size: 64px;
  line-height: 56px;
  letter-spacing: -1.51px;
  margin-bottom: 10px;
  margin-top: 0;
}
.panel-pull-card h2 em {
  color: #49C6CB;
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .panel-pull-card h2 {
    font-size: 46px;
    line-height: 40px;
  }
}
@media screen and (max-width: 500px) {
  .panel-pull-card h2 {
    font-size: 31px;
    line-height: 28px;
  }
}
h2 .subhead {
  font-family: var(--font-family--2);
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
  color: #434343;
  letter-spacing: 2px;
  line-height: 16px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h2.subhead {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 3.58px;
    color: #def0f9;
  }
}
.single h3 {
  font-size: 33px;
  line-height: 38px;
  font-family: "balboa";
  font-weight: 300;
  letter-spacing: 1.61px;
  color: #092035;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .single h3 {
    font-size: 29px;
    line-height: 34px;
  }
}
@media screen and (max-width: 500px) {
  .single h3 {
    font-size: 22px;
    line-height: 24.5px;
  }
}
.single h3:first-of-type {
  margin-top: 0;
}
.single h3 em {
  font-style: normal;
}
.blog .entry-header h3, .single .entry-header h3 {
  margin-top: 0;
  padding-top: 0;
  color: #49C6CB;
  font-family: "Texta W00";
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .blog .entry-header h3, .single .entry-header h3 {
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 2.6px;
  }
}
.background-white h3 em {
  color: #49C6CB;
}
.background-teal h3 em {
  color: white;
}
.panel-news-press h3, .panel-careers h3 {
  width: 100%;
}
.background-dark-blue h3 {
  color: #49C6CB;
}
.background-dark-blue h3 em {
  color: white;
}
.panel.panel-news-press h3, .panel.panel-careers h3, .panel-partners h3, #contact h3 {
  text-align: center;
  width: 100%;
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .panel.panel-news-press h3, .panel.panel-careers h3, .panel-partners h3, #contact h3 {
    margin-bottom: 27px;
  }
}
#contact h3 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #contact h3 {
    margin-bottom: 15px;
  }
}

h4.subhead {
  font-family: "balboa";
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 14px;
  color: #434343;
  letter-spacing: 2px;
  line-height: 16px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  h4.subhead {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 3.58px;
    color: #DEF0F9;
  }
}

.featured h4 {
  font-size: 15px;
  color: #49C6CB;
  font-family: "Texta W00";
  text-transform: uppercase;
  letter-spacing: 2.77px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .featured h4 {
    font-size: 13px;
    letter-spacing: 2px;
  }
}
.panel-pull-card h4.subhead {
  font-size: 18px;
  color: #ccc;
  font-weight: 200;
  letter-spacing: 3.58px;
  margin-bottom: 15px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .panel-pull-card h4.subhead {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.background-teal h4 {
  color: white;
}
.panel .points h4 {
  color: white;
  font-size: 17px;
  letter-spacing: 2.26px;
  background: #092035;
  border-radius: 100%;
  border: 2px solid #49C6CB;
  width: 200px;
  height: 200px;
  margin: 0 auto 12.5%;
  line-height: 193px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .panel .points h4 {
    width: 150px;
    height: 150px;
    line-height: 145px;
    font-size: 15px;
  }
}
.panel .points h4.reinforce {
  background: #092035 url(imgs/icon-reinforce.svg) no-repeat center center/62.5%;
}
.panel .points h4.rejuvenate {
  background: #092035 url(imgs/icon-rejuvenate.svg) no-repeat center center/50%;
}
.panel .points h4.restore {
  background: #092035 url(imgs/icon-restore.svg) no-repeat center center/45%;
}
.panel .points h4:before {
  content: "";
  width: 115%;
  height: 115%;
  position: absolute;
  top: -7.5%;
  left: -7.5%;
  pointer-events: none;
  border: 1.25px solid white;
  border-radius: 100%;
  opacity: 0.7;
}
.panel .points h4:after {
  content: "";
  width: 130%;
  height: 130%;
  position: absolute;
  top: -15%;
  left: -15%;
  pointer-events: none;
  border: 1px solid white;
  border-radius: 100%;
  opacity: 0.41;
}

.team-members h5 {
  font-family: "balboa";
  color: #092035;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.88px;
  text-align: center;
  line-height: 21px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .team-members h5 {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 5px;
  }
}
.team-members h5 em {
  color: #49C6CB;
}

.header-content p {
  color: #9598A3;
  font-size: 18px;
  line-height: 24px;
  font-family: "mr-eaves-modern";
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .header-content p {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 1rem;
    color: #EAF5FF;
  }
}

.header-content p:last-of-type {
  margin-bottom: 0;
}

.panel-team.panel p {
  color: #7E7E7E;
}
#contact p {
  font-size: 29px;
  width: 100%;
  text-align: center;
  color: white;
  font-family: "Texta W00";
  font-weight: 800;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #contact p {
    font-size: 22px;
  }
}
#contact p a {
  display: inline-block;
  padding-top: 13.5px;
  padding-bottom: 13.5px;
  padding-left: 70px;
  padding-right: 40px;
  border: 1.5px solid white;
  text-transform: none;
  font-size: 22px;
  color: white;
  text-decoration: none;
  border-radius: 45px;
  background: url(imgs/letter.svg) no-repeat 35px center/20px;
}
@media screen and (max-width: 768px) {
  #contact p a {
    font-size: 16px;
  }
}
.panel .panel-pull-card p {
  margin-bottom: 25px;
}
.panel .panel-pull-card p:last-of-type {
  margin-bottom: 0;
}
.single p {
  font-family: "mr-eaves-modern";
  color: #092035;
  font-size: 23px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .single p {
    font-size: 19px;
    line-height: 21px;
    margin-bottom: 25px;
  }
}
.single p.intro {
  font-size: 40px;
  line-height: 42px;
  color: #092035;
  font-family: "Texta W00";
  font-weight: 900;
  letter-spacing: -1.09px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .single p.intro {
    font-size: 30px;
    line-height: 33px;
    letter-spacing: -0.7px;
    margin-bottom: 25px;
  }
}
.background-dark-blue p {
  color: white;
}
.background-dark-blue p a {
  color: #49C6CB;
}
.panel .points p {
  font-size: 22px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .panel .points p {
    font-size: 19px;
    line-height: 21px;
  }
}
.panel .bio p {
  color: #7E7E7E;
  margin-bottom: 15px;
}
.panel .bio p strong {
  font-family: "balboa";
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.88px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .panel .bio p strong {
    font-size: 16px;
    letter-spacing: 0.77px;
  }
}

em {
  font-style: normal;
}
.background-teal em {
  color: white;
}

.title {
  font-size: 22px;
  color: #092035;
  display: block;
  line-height: 29px;
  font-family: "balboa";
  letter-spacing: 1.07px;
  text-transform: uppercase;
  padding-right: 7%;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 16px;
    line-height: 21px;
  }
}

.category, .location {
  font-size: 15px;
  color: #49C6CB;
  text-transform: uppercase;
  font-family: "Texta W00";
  font-weight: 900;
  letter-spacing: 2.77px;
  padding-top: 24px;
  display: inline-block;
  width: 100%;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .category, .location {
    font-size: 11px;
    letter-spacing: 1.8px;
    padding-top: 14px;
  }
}

.location {
  color: #092035;
}

.position {
  font-size: 19px;
  line-height: 23px;
  text-transform: uppercase;
  color: #092035;
  font-family: "balboa";
  letter-spacing: 0.95px;
}
.position em {
  color: #49C6CB;
}
@media screen and (min-width: 768px) {
  .position {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 1.17px;
  }
}

.single .entry-content ul, .single .entry-content ol, .single .entry-content dl {
  margin: 0;
  padding-left: 35px;
}

.single .entry-content li {
  font-family: "mr-eaves-modern";
  color: #092035;
  font-size: 23px;
  line-height: 30px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .single .entry-content li {
    font-size: 19px;
    line-height: 21px;
    margin-bottom: 25px;
  }
}

.panel hr {
  width: 40%;
  margin: 0;
  background: #ADEBED;
}

.panel-title-cta .desc pdiv.content-area {
  overflow: hidden;
}

.panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.panel-bg {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .panel-bg {
    padding-left: 9.7%;
    padding-right: 9.7%;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.panel#precision-therapies {
  overflow-y: visible;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .panel#precision-therapies:after {
    content: "";
    background: url(imgs/wave-lines-v3.svg) no-repeat top left/130%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-bottom: 41vw;
    pointer-events: none;
    opacity: 0.25;
    -moz-transform: translateY(31.5%);
    -webkit-transform: translateY(31.5%);
    transform: translateY(31.5%);
  }
}
.panel.background-dark-blue {
  background: #092035;
}
.panel.background-teal {
  background-color: #49C6CB;
}
.panel.background-light-blue {
  background-color: #D1F6F7;
}
.panel.background-lightest-blue {
  background: #DFFEFF;
}
.panel.background-light-blue-teal-grad {
  background-image: linear-gradient(to bottom, #DFFEFF 50%, #49C6CB 50%);
}
.panel.background-white {
  background-color: white;
}
.panel.background-cream {
  background-color: #F8F8F3;
}
.panel.background-darker-blue {
  background-color: #06192B;
}
.panel.background-light-blue-grad {
  background-image: linear-gradient(180deg, #B1E3E0 0%, #DFFEFF 60%);
}
.panel.background-grey {
  background-color: #F5F9F5;
}
.panel.wave-teal.background-dark-blue {
  background: #092035 url(imgs/wave-teal.svg) no-repeat bottom center/100%;
}
@media screen and (max-width: 768px) {
  .panel.wave-teal.background-dark-blue {
    background: #092035;
  }
}
.panel.wave-white.background-dark-blue {
  background: #092035 url(imgs/wave-w.svg) no-repeat bottom center/110%;
  padding-bottom: 12vw;
}
@media screen and (max-width: 768px) {
  .panel.wave-white.background-dark-blue {
    background: #092035;
    padding-bottom: 40px;
  }
}
.panel.panel-pull-card {
  padding-bottom: 0;
  padding-top: 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .panel.panel-pull-card {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.panel.panel-team {
  padding-top: 40px;
}
.panel.panel-partners {
  padding-bottom: 30px;
}
.panel.panel-platform.background-dark-blue {
  background: url(imgs/wave-lines-v3.svg) no-repeat center 12.5%/100%, #092035;
}
@media screen and (max-width: 768px) {
  .panel.panel-platform.background-dark-blue {
    background: url(imgs/wave-lines-v3.svg) no-repeat center 12.5%/100%, #092035;
    padding-bottom: 40px;
  }
}

.panel-content {
  width: 57.5%;
}
.panel-team .panel-content, .panel-partners .panel-content, .panel-platform .panel-content, .panel-news-press .panel-content, .panel-careers .panel-content {
  width: 100%;
  padding-left: 25%;
  padding-right: 25%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .panel-team .panel-content, .panel-partners .panel-content, .panel-platform .panel-content, .panel-news-press .panel-content, .panel-careers .panel-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.panel-pull-card .panel-content {
  width: 47.5%;
  padding-right: 5%;
  padding-left: 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .panel-pull-card .panel-content {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}

.panel-news-press {
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: 8.2%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .panel-news-press {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.panel-news-press:before {
  content: "";
  width: 102%;
  margin-left: -1%;
  padding-bottom: 8.2%;
  margin-top: -8.2%;
  position: relative;
  background: url(imgs/wave-teal-top.svg) no-repeat bottom center/cover;
}

.panel-news-press:after {
  content: "";
  width: 102%;
  margin-left: -1%;
  padding-bottom: 9.8%;
  margin-bottom: -9.8%;
  position: relative;
  background: url(imgs/white-wave.svg) no-repeat bottom center/cover;
}

.panel-news-press .wrapper {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .panel-news-press .wrapper {
    margin-bottom: 4rem;
  }
}

.panel-careers.panel {
  background: url(imgs/news-image.jpg) no-repeat center center/cover;
}

.home .panel-news-press, .page-id-153 .panel-news-press {
  padding-top: 17vw;
  padding-bottom: 150px;
  background: url(imgs/wave-lines-v4.svg) no-repeat fixed center -20%/100%, url(imgs/wave-lines-v5.svg) no-repeat fixed center 110%/100%, #092035;
}
@media screen and (max-width: 768px) {
  .home .panel-news-press, .page-id-153 .panel-news-press {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.home .panel-news-press:before, .page-id-153 .panel-news-press:before {
  content: "";
  width: 100%;
  height: 17vw;
  position: absolute;
  top: 0;
  left: 0;
  background: url(imgs/wave-navy.svg) no-repeat top left/110%;
}
@media screen and (max-width: 768px) {
  .home .panel-news-press:before, .page-id-153 .panel-news-press:before {
    display: none;
  }
}

.panel-image img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-image {
  position: relative;
}

.points {
  list-style-type: none;
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 45px 0 0 0;
  width: 100%;
}
.points li {
  width: 29.3333%;
  position: relative;
  margin-right: 6%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .points li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.points li:nth-of-type(3n) {
  margin-right: 0;
}

.bios .bio {
  background: #FFFFFF;
  box-shadow: 0 5px 30px 17px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding-left: 7.9%;
  padding-right: 7.9%;
  padding-top: 61px;
  padding-bottom: 61px;
  -moz-columns: 2;
  -webkit-columns: 2;
  columns: 2;
  -moz-column-gap: 2vw;
  -webkit-column-gap: 2vw;
  column-gap: 2vw;
  display: none;
}
@media screen and (min-width: 769px) {
  .bios .bio.open {
    display: block;
  }
}

.bios {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bios {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .partners img {
    max-width: 150px;
    margin: 0 auto;
    display: block;
  }
}

.team-members li {
  cursor: pointer;
}

.team-members, .partners {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  width: 100%;
}
.team-members li, .partners li {
  width: 16%;
  margin-right: 5%;
  margin-bottom: 15px;
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .team-members li, .partners li {
    width: 47.5%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .team-members li, .partners li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .team-members li:last-of-type, .partners li:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .team-members li:nth-of-type(even), .partners li:nth-of-type(even) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .team-members li:nth-of-type(5n), .partners li:nth-of-type(5n) {
    margin-right: 0;
  }
}

.careers {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  list-style-type: none;
}
.careers > li {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.careers > li a {
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .careers > li a {
    padding-left: 2rem;
  }
}

.team-members {
  padding-top: 40px;
}
.team-members li .bio {
  display: none;
}
@media screen and (max-width: 768px) {
  .team-members li .bio {
    display: none;
  }
}
.team-members li.open {
  position: relative;
}
@media screen and (min-width: 769px) {
  .team-members li.open:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -15px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid white;
  }
}
@media screen and (max-width: 768px) {
  .team-members li.open .bio {
    display: block;
  }
}
.team-members img {
  display: block;
  width: 100%;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .team-members img {
    max-width: 154px;
    margin: 0 auto;
  }
}

.panel-pull-card {
  overflow-y: visible;
}
.panel-pull-card .panel-pull-card {
  background: #001528;
  box-shadow: 0 20px 143px 13px #122C47;
  width: 52.5%;
  padding-top: 66px;
  padding-bottom: 66px;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .panel-pull-card .panel-pull-card {
    width: 100%;
    padding-top: 33px;
    padding-bottom: 33px;
  }
}

/*


General classes for flex layout


*/
.panels-wrapper {
  position: relative;
}

.flex-parent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

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

.col-12 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-12 {
    flex: 0 100%;
    max-width: 100%;
  }
}

.col-11 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-11 {
    flex: 0 91.66666667%;
    max-width: 91.66666667%;
  }
}

.col-10 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-10 {
    flex: 0 83.33333333%;
    max-width: 83.33333333%;
  }
}

.col-9 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-9 {
    flex: 0 75%;
    max-width: 75%;
  }
}

.col-8 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-8 {
    flex: 0 66.66666667%;
    max-width: 66.66666667%;
  }
}

.col-7 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-7 {
    flex: 0 58.33333333%;
    max-width: 58.33333333%;
  }
}

.col-6 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-6 {
    flex: 0 50%;
    max-width: 50%;
  }
}

.col-5 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-5 {
    flex: 0 41.66666667%;
    max-width: 41.66666667%;
  }
}

.col-4 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-4 {
    flex: 0 33.33333333%;
    max-width: 33.33333333%;
  }
}

.col-3 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-3 {
    flex: 0 25%;
    max-width: 25%;
  }
}

.col-2 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-2 {
    flex: 0 16.66666667%;
    max-width: 16.66666667%;
  }
}

.col-1 {
  flex: 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .col-1 {
    flex: 0 8.333333333%;
    max-width: 8.333333333%;
  }
}

.panel.background-dark-blue .panel-title {
  color: white;
}

.panel.background-dark-blue .desc p {
  color: white;
}

.panel.background-teal.has-wave {
  margin-top: 8.8%;
}

.panel.background-teal.has-wave.panel-full-width-text-block {
  margin-top: 0;
}

.panel.background-teal.has-wave.panel-full-width-text-block:after {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 10.2%;
  margin-bottom: -2px;
  background: url(imgs/white-wave.svg) no-repeat bottom center/contain;
}

.panel.background-teal.has-wave.wave-bottom-waves {
  margin-top: 0;
}

.panel.background-teal.has-wave.wave-bottom-waves:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 0;
  padding-bottom: 13.9%;
  background-image: url(imgs/bottom-m-waves.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
}

.panel.background-light-blue-grad.has-wave:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 15%;
  margin-top: -14.8%;
  background-image: url(imgs/lightest-blue-wave.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
}

.panel.background-darker-blue.has-wave:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 15%;
  margin-top: -14.8%;
  background-image: url(imgs/top-darker-blue.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
}

.panel.background-darker-blue.has-wave.wave-dark-blue {
  margin-top: 15%;
}

.panel.background-light-blue.has-wave:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 14.8%;
  margin-top: -14.8%;
  background-image: url(imgs/top-wave-light-blue.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.panel.background-light-blue.has-wave {
  margin-top: 15%;
}

.panel.background-teal.teal:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 8.8%;
  margin-top: -8.8%;
  background-image: url(imgs/top-blue-wave-2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: white;
}

.panel.has-wave .panel-bg {
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.panel.has-wave.wave-dark-blue .panel-bg {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .panel.has-wave.wave-dark-blue .panel-bg {
    padding-top: 80px;
  }
}

.panel.background-white.wave-white {
  margin-top: 9.8%;
}

.panel.background-white.wave-white:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 9.8%;
  margin-top: -9.8%;
  background: url(imgs/white-wave.svg) no-repeat bottom left/contain;
}

.panel.background-dark-blue + .panel.wave-white:before {
  background-color: #061727;
}

.panel.background-darker-blue + .panel.background-teal:before {
  background-color: #06192B;
}

.panel.background-cream + .panel.background-light-blue-grad:before {
  background-color: #F8F8F3;
}

.panel.background-light-blue + .panel.background-teal:before {
  background-color: #D1F6F7;
}

.panel.background-dark-blue.has-wave {
  margin-top: 9.4%;
}

.panel.background-dark-blue.wave-bottom-white.has-wave {
  margin-top: 0;
}

.panel.background-dark-blue.has-wave:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 10%;
  margin-top: -9.4%;
  background: url(imgs/top-dark-blue.svg) no-repeat bottom center/contain;
}

.panel.background-dark-blue.wave-bottom-white.has-wave:before {
  display: none;
}

.panel.background-dark-blue.wave-bottom-white.has-wave:after {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 10.2%;
  margin-bottom: -2px;
  background: url(imgs/white-wave.svg) no-repeat bottom center/contain;
}

.panel.background-dark-blue.wave-bottom-white.has-wave.panel-title-cta .panel-bg {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .panel.background-dark-blue.wave-bottom-white.has-wave.panel-title-cta .panel-bg {
    padding-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .panel.background-grey.wave-grey {
    margin-top: 9.8%;
  }
}

.panel.background-teal.wave-bottom-waves + .panel.wave-grey:before {
  background-color: #1BDEE2;
}

.panel-slider + .panel.background-grey.wave-grey:before {
  background-color: #49C6CB;
}

.panel.background-grey.wave-grey:before {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 11.9%;
  margin-top: -10.2%;
  background: url(imgs/grey-top-wave.svg) no-repeat bottom left/contain;
}

.panel.background-teal.wave-bottom-white {
  margin-top: 0;
}

.panel.has-wave.wave-bottom-white .panel-bg {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .panel.has-wave.wave-bottom-white .panel-bg {
    padding-top: 80px;
  }
}

.panel.background-teal.wave-bottom-white:after {
  content: "";
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 9.8%;
  background: url(imgs/white-wave.svg) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .page-id-280 .panels-wrapper:before {
    content: "";
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 955px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 0;
    padding-bottom: 177%;
    z-index: 1;
    background: url(imgs/focus-line.svg) no-repeat top/contain;
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .page-id-325 .panel:nth-of-type(6) .panel-image {
    margin-bottom: -16%;
  }
}

.single .entry-content a:not([class]), .panel-slider .slides .wrap a:not([class]), .panel-left-img .panel-content a:not([class]), .panel-title-cta .desc a:not([class]), .panel-full-width-text-block .wrapper a:not([class]) {
  background-image: linear-gradient(235deg, #65E9EC 0%, #2F8AAE 79%);
  background-repeat: no-repeat;
  background-position: bottom left;
  font-weight: 700;
  padding-bottom: 2px;
  color: #00284D;
  text-decoration: none;
  background-size: 100% 2px;
  font-family: mr-eaves-modern, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.panel-full-width-text-block .wrapper a:not([class]) {
  color: white;
}

/*


Buttons


*/
a.scroll-down {
  text-indent: -10000px;
  background: url(imgs/scroll-button.svg) no-repeat center center/28px;
  width: 28px;
  height: 28px;
}

.buttons-primary a {
  display: block;
  margin: 0 1.25rem;
}

.buttons-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.buttons-primary span {
  display: inline-block;
  line-height: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .buttons-primary span {
    line-height: 36px;
  }
}

.buttons-primary img {
  display: inline-block;
  margin-right: 0.55rem;
  max-width: 20px;
  transform: translateY(4px);
}
@media screen and (min-width: 768px) {
  .buttons-primary img {
    max-width: 36px;
    margin-right: 1.5rem;
    transform: translateY(9px);
  }
}

/*


Panel Platform


*/
.panel-platform .wrapper {
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.panel-platform .buttons-primary {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .panel-platform .buttons-primary {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.panel-platform .wrapper.head-wrapper {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-platform .wrapper.head-wrapper {
    margin-bottom: 3rem;
  }
}

.panel.panel-platform .points h4 {
  font-family: "Texta W00";
  font-size: 13px;
  letter-spacing: 1.75px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel.panel-platform .points h4 {
    font-size: 16px;
    letter-spacing: 2.13px;
  }
}

.panel-platform .panel-title {
  font-family: "balboa";
  font-weight: 200;
  font-size: 18px;
  color: #434343;
  width: 100%;
  letter-spacing: 2.1px;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel-platform .panel-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 3.23px;
  }
}

.panel-platform .head-wrapper p {
  font-family: "mr-eaves-modern";
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.4px;
  color: #5D7089;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-platform .head-wrapper p {
    font-size: 23px;
    line-height: 27px;
    letter-spacing: -0.61px;
  }
}

/*


Panel Full Width Text


*/
.panels-wrapper .panel.panel-full-width-text-block:first-of-type .wrapper {
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .panels-wrapper .panel.panel-full-width-text-block:first-of-type .wrapper {
    margin-top: -166px;
  }
}

.panel-full-width-text-block .panel-bg {
  padding-top: 0;
}

.panel-full-width-text-block .buttons-primary {
  margin-top: 1.75rem;
}

.panel-full-width-text-block .buttons-primary a.button {
  border-radius: 10px;
  margin-bottom: 1rem;
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url(imgs/right-arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 7px;
}
@media screen and (min-width: 768px) {
  .panel-full-width-text-block .buttons-primary a.button {
    padding-top: 26.5px;
    padding-bottom: 26.5px;
    padding-left: 50px;
    padding-right: 85px;
  }
}

.panel-full-width-text-block .wrapper {
  background: #061727;
  margin: 0 auto;
  max-width: 1155px;
  box-shadow: 0 10px 20px 0 rgba(18, 26, 58, 0.3);
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .panel-full-width-text-block .wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 5rem;
    padding-right: 5rem;
    box-shadow: 0 34px 44px 0 rgba(18, 26, 58, 0.3);
  }
}

.panel-full-width-text-block .subtitle {
  font-family: "balboa";
  font-size: 15px;
  font-weight: 200;
  color: #CCCCCC;
  letter-spacing: 2.9px;
  text-align: center;
  line-height: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel-full-width-text-block .subtitle {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 3.58px;
  }
}

.panel-full-width-text-block .subtitle {
  color: #49C6CB;
}

.panel-full-width-text-block p {
  font-family: "mr-eaves-modern";
  font-size: 15px;
  color: #E4F2FF;
  letter-spacing: 0;
  text-align: center;
  line-height: 22px;
}
@media screen and (min-width: 768px) {
  .panel-full-width-text-block p {
    font-size: 21px;
    line-height: 34px;
  }
}

.panel-full-width-text-block .title {
  font-family: "Texta W00";
  font-weight: 600;
  font-size: 24px;
  color: white;
  padding: 0;
  text-transform: none;
  letter-spacing: -0.55px;
  text-align: center;
  line-height: 26px;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .panel-full-width-text-block .title {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -0.85px;
  }
}

.panel-full-width-text-block .buttons-primary {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/*


Common Filter System


*/
.bio-filters {
  display: none;
}

.filters-system {
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .filters-system {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.archive-posts .filters-system ul {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .archive-posts .filters-system ul {
    margin-bottom: 0;
  }
}

.filters-system ul {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
  padding: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .filters-system ul {
    margin-bottom: 1rem;
  }
}

.filters-system .filter-item {
  flex: 0 auto;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .filters-system .filter-item {
    margin-bottom: 1rem;
  }
}

.filters-system .filter-item input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.filter-item h4 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 34px;
  font-family: "Texta W00";
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  color: #152B3F;
  letter-spacing: 2.79px;
  text-align: center;
}

.filters-system .filter-item input[type=checkbox] + label {
  background: #C3E0E1;
  border-radius: 17px;
  display: inline-block;
  color: #0A192A;
  text-align: center;
  font-family: "Texta W00";
  font-weight: 800;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 2px;
}
.filters-system .filter-item input[type=checkbox] + label:hover {
  box-shadow: 0 27px 77px 0 rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .filters-system .filter-item input[type=checkbox] + label {
    font-size: 12px;
    letter-spacing: 2.79px;
    line-height: 34px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.filters-system .filter-item input[checked=checked] + label,
.filters-system .filter-item input[checked=all] + label {
  background: #49C6CB;
  color: white;
}

/*


Team Grid


*/
.panel-team-members .panel-bg {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.panel-team-members .head-wrapper {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-team-members .head-wrapper {
    margin-bottom: 3rem;
  }
}

.panel-team-members .panel-title {
  font-family: "balboa";
  font-weight: 200;
  font-size: 18px;
  color: #434343;
  letter-spacing: 2.1px;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel-team-members .panel-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 3.23px;
  }
}

.panel-team-members .head-wrapper p {
  font-family: "mr-eaves-modern";
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.4px;
  color: #5D7089;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-team-members .head-wrapper p {
    font-size: 23px;
    line-height: 27px;
    letter-spacing: -0.61px;
  }
}

.bio-posts {
  padding: 0;
  margin: 0;
  align-items: stretch;
}

.bio-card .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-card .bio-cont {
  height: 100%;
}

.bio-card {
  flex: 0 50%;
  max-width: 50%;
  list-style-type: none;
  box-sizing: border-box;
  position: relative;
  border: 1px solid white;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .bio-card {
    flex: 0 20%;
    max-width: 20%;
  }
}

.bio-card .img-cont, .bio-card .img-wrap {
  height: 100%;
}

.bio-card .bio-wrap {
  position: relative;
  width: 100%;
  z-index: 2;
}

.bio-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 1rem;
  right: 0.75rem;
  z-index: 3;
  background: #49C6CB;
  border-radius: 39px;
  width: 39px;
  height: 39px;
  align-items: flex-start;
}

.bio-links.toggled {
  height: auto;
  padding-bottom: 0.5rem;
}

.bio-links li {
  width: 100%;
  justify-content: center;
}

button.bio-modal {
  width: 100%;
  cursor: pointer;
  background: url(imgs/modal-button.svg) no-repeat center center/23px;
  border-radius: 0;
  display: inline-block;
  text-indent: -10000px;
  border: none;
  height: 37px;
}

.bio-card .img-cont {
  position: relative;
}

.bio-card .img-cont:before, .bio-modal .image-col:before {
  content: "";
  position: absolute;
  display: inline-block;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-1deg, #001837 11%, rgba(0, 46, 130, 0.52) 30%, rgba(112, 134, 183, 0) 73%);
}

.bio-card:hover .img-cont:before {
  background-image: linear-gradient(1deg, #001837 11%, rgba(0, 46, 130, 0.39) 51%, rgba(37, 211, 239, 0.29) 100%);
}

.bio-wrap .content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  bottom: 1rem;
  width: 100%;
}

.bio-links .hidden {
  display: none;
}

.bio-links.toggled .hidden {
  display: block;
}

.bio-links a {
  width: 100%;
  height: 37px;
  margin-bottom: 0.25rem;
  display: inline-block;
  text-indent: -10000px;
}

.bio-links a[href*="twitter.com"] {
  background: url(imgs/twitter.svg) no-repeat center center/22px;
}

.bio-links a[href*="linkedin.com"] {
  background: url(imgs/linkedin.svg) no-repeat center center/22px;
}

.open-button {
  width: 37px;
  height: 37px;
  border-radius: 0;
  padding: 0;
  border: none;
  display: inline-block;
  text-indent: -10000px;
  background: url(imgs/open-modal.svg) no-repeat center center/33px;
}

.bio-wrap h2.title {
  font-family: "Texta W00";
  color: #FFFFFF;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 2.65px;
}
@media screen and (min-width: 768px) {
  .bio-wrap h2.title {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 3.49px;
  }
}

.bio-wrap h3.role-title {
  font-family: "balboa";
  font-weight: 200;
  color: white;
  font-size: 11px;
  line-height: 12px;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .bio-wrap h3.role-title {
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 2.63px;
  }
}

.fancybox-bg {
  background: rgba(255, 255, 255, 0.8);
}

.fancybox-content.bio-modal {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 0;
  box-shadow: 0 -10px 100px 0 rgba(0, 30, 47, 0.2);
}

.bio-modal .image-col {
  flex: 0 100%;
  max-width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bio-modal .image-col {
    flex: 0 43%;
    max-width: 43%;
  }
}

.bio-modal .image-col img {
  display: block;
  width: 100%;
  height: auto;
}

.bio-modal .image-col .content {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

.bio-modal .content-col {
  flex: 0 100%;
  max-width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (min-width: 768px) {
  .bio-modal .content-col {
    flex: 0 57%;
    max-width: 57%;
  }
}

.bio-modal .image-col .content h2 {
  font-family: "Texta W00";
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 3.18px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .bio-modal .image-col .content h2 {
    font-size: 18px;
    letter-spacing: 4.18px;
  }
}

.bio-modal .image-col .content h3 {
  color: white;
  text-transform: uppercase;
  font-family: "balboa";
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 200;
  line-height: 25px;
  letter-spacing: 2.25px;
}
@media screen and (min-width: 768px) {
  .bio-modal .image-col .content h3 {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 3px;
  }
}

.bio-modal .image-col .content h2:after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 77px;
  height: 2px;
  background-image: linear-gradient(90deg, #2C7FA4 0%, #6EEBEE 100%);
}

.bio-modal .social {
  list-style-type: none;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.25rem;
}

.bio-modal .social a {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  text-indent: -10000px;
}

.bio-modal .social a[href*="twitter.com"] {
  background: url(imgs/twitter-blue.svg) no-repeat center center/23px;
}

.bio-modal .social a[href*="linkedin.com"] {
  background: url(imgs/linkedin-blue.svg) no-repeat center center/23px;
}

.bio-modal .bio {
  font-family: "mr-eaves-modern";
  font-size: 14px;
  color: #5F728A;
  letter-spacing: 0;
  line-height: 22px;
}
@media screen and (min-width: 768px) {
  .bio-modal .bio {
    font-size: 18px;
    line-height: 27px;
  }
}

/*


Panel Video with Quote


*/
.panel-video-quote .panel-bg {
  padding-top: 0;
}

.panel-video-quote.background-dark-blue {
  background: linear-gradient(to bottom, #092035 40%, #061727 40%);
}

.panel-video-quote .wrapper {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.panel-video-quote .vid-img {
  position: relative;
}

.panel-video-quote .vid-img:before {
  content: "";
  background-image: linear-gradient(0deg, rgba(1, 12, 38, 0.73) 8%, rgba(14, 26, 111, 0.21) 88%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal-launch {
  text-indent: -10000px;
  width: 91px;
  height: 91px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
  background: url(imgs/modal-launch.svg) no-repeat center center/88px;
}

.panel-video-quote .vid-quote {
  background: #071D30;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 2.5%;
  padding-right: 2.5%;
}
@media screen and (min-width: 768px) {
  .panel-video-quote .vid-quote {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

.vid-quote blockquote {
  background: url(imgs/quote.svg) no-repeat top left/25px;
  padding-top: 35px;
}
@media screen and (min-width: 768px) {
  .vid-quote blockquote {
    padding-top: 45px;
    background: url(imgs/quote.svg) no-repeat top left/45px;
  }
}

.vid-quote cite {
  width: 100%;
  text-align: left;
  padding-left: 50%;
  display: block;
}

.vid-quote cite .person {
  width: 100%;
  display: block;
  font-family: "Texta W00";
  font-weight: 800;
  color: #ECECEC;
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 768px) {
  .vid-quote cite .person {
    font-size: 15px;
    letter-spacing: 3.49px;
  }
}

.vid-quote cite .person_title {
  width: 100%;
  font-family: "balboa";
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 1.8px;
  font-style: normal;
  text-transform: uppercase;
  color: #D2D2D2;
}
@media screen and (min-width: 768px) {
  .vid-quote cite .person_title {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2.62px;
  }
}

.modal.video-modal {
  padding: 0;
}

.vid-quote blockquote p {
  font-family: "Texta W00";
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .vid-quote blockquote p {
    font-size: 26px;
    line-height: 36px;
  }
}

/*


Panel with image left


*/
@media screen and (min-width: 768px) {
  .panel-left-img .buttons-primary {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .panel-content.align-text-right + .buttons-primary {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .panel-content.align-text-right + .buttons-primary a {
    margin-right: 0;
  }
}

.panel-left-img p {
  font-family: "mr-eaves-modern";
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 21px;
}
@media screen and (min-width: 768px) {
  .panel-left-img p {
    font-size: 18.5px;
    line-height: 29px;
  }
}

.panel-left-img h4 {
  font-family: "balboa";
  font-size: 14px;
  color: #D2D2D2;
  letter-spacing: 2px;
  line-height: 18px;
  font-weight: 200;
}
@media screen and (min-width: 768px) {
  .panel-left-img h4 {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 2.84px;
  }
}

.panel-left-img .buttons-primary a {
  margin-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .panel-left-img .buttons-primary a {
    margin-left: 0;
  }
}

.panel-left-img .wrapper {
  margin: 0 auto;
  max-width: 1150px;
  position: relative;
  z-index: 3;
}

.panel-left-img .wrapper.content-white-ds {
  background: white;
  background: #FFFFFF;
  box-shadow: 0 52px 76px 0 rgba(18, 26, 58, 0.3);
  border-radius: 3px;
  overflow: hidden;
  max-width: 1225px;
}

.panel-left-img .wrapper.content-white-ds .panel-content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .panel-left-img .wrapper.content-white-ds .panel-content {
    padding-right: 8%;
    padding-left: 8%;
  }
}

@media screen and (min-width: 768px) {
  .home .panel-left-img:first-of-type .offset-wrap {
    margin-left: 11%;
    margin-right: -11%;
  }
}

@media screen and (min-width: 768px) {
  .home .panel-left-img:first-of-type .offset-wrap .panel-image {
    padding-right: 4%;
    padding-left: 4%;
  }
}

#principles-block .panel-bg {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  #principles-block .panel-bg {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  #principles-block .panel-image {
    margin-top: -70px;
  }
}

/*


Panel with Glossary Terms


*/
.panel-glossary + .panel-title-cta {
  margin-top: -3rem;
}
@media screen and (min-width: 768px) {
  .panel-glossary + .panel-title-cta {
    margin-top: -6rem;
  }
}

.panel-title-cta .desc {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.panel-title-cta.background-white .panel-title .highlight-text {
  color: #092035;
}

.panel-title-cta.background-teal .panel-title .highlight-text {
  color: #092035;
}

.panel-title-cta .desc p {
  font-family: "mr-eaves-modern";
  font-size: 16px;
  line-height: 24px;
  color: #5D7089;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-title-cta .desc p {
    font-size: 21px;
    line-height: 30px;
  }
}

.panel-title-cta.background-teal .desc p:first-of-type {
  margin-top: 0;
}

.panel-title-cta.background-teal .desc p:first-of-type, .panel-title-cta.background-navy .desc p {
  color: white;
}

.panel-title-cta.background-teal .desc p {
  color: #00284D;
}

.panel-title-cta.background-teal .buttons-primary a, .panel-title-cta.background-navy .buttons-primary a {
  border-color: white;
}

.panel-glossary .nav-wrap {
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .panel-glossary .nav-wrap {
    max-width: 630px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}

.panels-wrapper .panel.panel-glossary:first-of-type .wrapper {
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .panels-wrapper .panel.panel-glossary:first-of-type .wrapper {
    margin-top: -166px;
  }
}

.glossary-navigation .navigation {
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .glossary-navigation .navigation {
    justify-content: flex-start;
  }
}

.glossary-navigation .navigation li {
  flex: 0 auto;
  margin-right: 0.4rem;
  margin-bottom: 1rem;
}

.glossary-navigation .navigation li a {
  width: 33px;
  height: 33px;
  background: #C3E0E1;
  border-radius: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "Texta W00";
  font-size: 10px;
  color: #6E9394;
  letter-spacing: 1.79px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 33px;
}
@media screen and (min-width: 768px) {
  .glossary-navigation .navigation li a {
    font-size: 12px;
    letter-spacing: 2.79px;
  }
}

.glossary-navigation {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .glossary-navigation {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.glossary-navigation h3 {
  font-family: "Texta W00";
  text-transform: uppercase;
  font-weight: 800;
  font-size: 10px;
  color: #152B3F;
  letter-spacing: 2.2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .glossary-navigation h3 {
    font-size: 12px;
    letter-spacing: 2.79px;
  }
}

.glossary-navigation .navigation li a:hover {
  color: white;
  background: #49C6CB;
}

.glossary-section {
  padding-left: 6%;
  padding-right: 6%;
}

.panel.panel-glossary .panel-bg {
  padding-top: 0;
  background: #F8F8F3;
}

.glossary-section article .content {
  padding-left: 7.5%;
  padding-right: 7.5%;
}

.glossary-section article .content ul {
  margin: 0;
}

.glossary-section article .content p, .glossary-section article .content li {
  font-family: "mr-eaves-modern";
  font-size: 16px;
  color: #5D7089;
  letter-spacing: -0.36px;
  line-height: 22px;
}
@media screen and (min-width: 768px) {
  .glossary-section article .content p, .glossary-section article .content li {
    font-size: 21px;
    line-height: 28px;
    letter-spacing: -0.56px;
  }
}

.glossary-section article h3 {
  background: #49C6CB;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  color: white;
  font-family: "Texta W00";
  font-weight: 800;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  font-size: 12px;
  letter-spacing: 2.25px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .glossary-section article h3 {
    font-size: 16px;
    letter-spacing: 3.72px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

.glossary-section .col-2 h2 {
  font-family: "Texta W00";
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
  color: rgba(73, 198, 203, 0.2);
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 8px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .glossary-section .col-2 h2 {
    font-size: 120px;
    line-height: 85px;
    margin-top: -20px;
    letter-spacing: 27.9px;
  }
}

.panel-glossary .wrapper {
  max-width: 1150px;
  margin: 0 auto;
  background: white;
  border-top: 4px solid #49C6CB;
  position: relative;
  z-index: 2;
  padding-top: 10px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .panel-glossary .wrapper {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

/*


Panel with FAQ


*/
.panel.panel-faq .panel-bg {
  padding-top: 0;
  background: #F8F8F3;
}

.panels-wrapper .panel.panel-faq:first-of-type .wrapper {
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .panels-wrapper .panel.panel-faq:first-of-type .wrapper {
    margin-top: -166px;
  }
}

.faq-list dt {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .faq-list dt {
    margin-bottom: 1.25rem;
  }
}

.faq-list dt button {
  background: #FFFFFF url(imgs/down-arrow-faq.svg) no-repeat calc(100% - 16px) center/10px;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  display: block;
  border: none;
  width: 100%;
  text-align: left;
  font-family: "Texta W00";
  font-weight: 700;
  color: rgba(36, 39, 44, 0.7);
}
@media screen and (min-width: 768px) {
  .faq-list dt button {
    font-size: 19px;
    line-height: 18px;
  }
}

body.ie .faq-list dt button, body.edge .faq-list dt button {
  background: #FFFFFF url(imgs/down-arrow-faq.svg) no-repeat 98.5% center/10px;
}

.faq-list dt button.active {
  background: #49C6CB url(imgs/up-arrow-faq.svg) no-repeat calc(100% - 16px) center/10px;
  color: white;
}

body.ie .faq-list dt button.active, body.edge .faq-list dt button.active {
  background: #49C6CB url(imgs/up-arrow-faq.svg) no-repeat 98.5% center/10px;
}

.faq-list dd {
  font-family: "mr-eaves-modern";
  font-size: 15px;
  color: #5D7089;
  letter-spacing: -0.56px;
  line-height: 21px;
}
@media screen and (min-width: 768px) {
  .faq-list dd {
    font-size: 21px;
    line-height: 28px;
    letter-spacing: -0.56px;
  }
}

.faq-list dd[data-hide=true] {
  display: none;
}

.panel-faq .wrapper {
  max-width: 1150px;
  margin: 0 auto;
  background: white;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  border-top: 4px solid #49C6CB;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .panel-faq .wrapper {
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*


Panel with Careers


*/
.panel-careers-type .head-wrapper.wrapper {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .panel-careers-type .head-wrapper.wrapper {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
  }
}

.panel-careers-type .panel-title {
  font-family: "balboa";
  font-weight: 200;
  color: #49C6CB;
  text-align: center;
  color: white;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel-careers-type .panel-title {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: 3.79px;
  }
}

.panel-careers-type .wrapper {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .panel-careers-type .buttons-primary {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .panel-careers-type .buttons-primary a {
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 22px;
  }
}

@media screen and (min-width: 768px) {
  .panel-careers-type .buttons-primary a span {
    line-height: 22px;
  }
}

/*


Panel with Full Width Image


*/
.panel-full-width-image .wrapper {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

.panel-full-width-image .panel-bg {
  padding: 0;
}

.panel-full-width-image img {
  display: block;
  width: 100%;
  height: auto;
}

/*


Panel with Columns of Image and Text


*/
.panel-left-img h4 + h2 {
  margin-top: 1rem;
}

.panel-left-img h2 {
  font-family: "Texta W00";
  font-weight: 700;
  color: #092035;
  font-size: 35px;
  line-height: 33px;
  letter-spacing: -1.1px;
}
@media screen and (min-width: 768px) {
  .panel-left-img h2 {
    font-size: 62px;
    line-height: 53px;
    letter-spacing: -1.47px;
  }
}

.panel-left-img h3 {
  font-family: "Texta W00";
  font-weight: 700;
  color: #092035;
  font-size: 25px;
  line-height: 27px;
  letter-spacing: -0.7px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .panel-left-img h3 {
    font-size: 38px;
    letter-spacing: -1.05px;
    line-height: 36px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}

.panel-left-img.background-darker-blue h3, .panel-left-img.background-dark-blue h3 {
  color: white;
}

.panel-left-img h4 {
  font-family: "balboa";
  font-weight: 200;
  font-size: 14px;
  color: #434343;
  letter-spacing: 2px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .panel-left-img h4 {
    font-size: 18px;
    letter-spacing: 2.84px;
    line-height: 22px;
  }
}

@media screen and (min-width: 768px) {
  .panel-left-img .img-right .panel-content {
    padding-right: 8%;
  }
}

.panel-left-img .panel-content.align-text-right {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-left-img .panel-content.align-text-right {
    text-align: right;
  }
}

.panel-left-img .panel-content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-left-img .panel-content {
    text-align: left;
  }
}

.panel-left-img .panel-content.align-text-right .buttons-primary {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .panel-left-img .panel-content.align-text-right .buttons-primary {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .panel-left-img .panel-content.align-text-right .buttons-primary a {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .panel-left-img .img-left .panel-content {
    padding-left: 8%;
  }
}

@media screen and (min-width: 768px) {
  .panel-left-img .img-left .panel-image.offset-img {
    flex: 0 62.5%;
    max-width: 62.5%;
    margin-left: -12.5%;
  }
}

@media screen and (min-width: 768px) {
  .panel-left-img .img-right .panel-image.offset-img {
    flex: 0 62.5%;
    max-width: 62.5%;
    margin-right: -12.5%;
  }
}

.border-radius img {
  border-radius: 100%;
}

.drop-shadow img {
  box-shadow: 0 2px 30px 0 rgba(18, 26, 58, 0.3);
}
@media screen and (min-width: 768px) {
  .drop-shadow img {
    box-shadow: 0 52px 76px 0 rgba(18, 26, 58, 0.3);
  }
}

.panel-left-img .panel-content p {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-left-img .panel-content p {
    text-align: inherit;
  }
}

.panel-left-img p {
  font-family: "mr-eaves-modern";
  font-size: 16px;
  line-height: 24px;
  color: #00284D;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .panel-left-img p {
    font-size: 21px;
    line-height: 30px;
  }
}

.panel-left-img.background-darker-blue p, .panel-left-img.background-dark-blue p {
  color: white;
}

.panel-left-img .panel-image.drop-shadow {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .panel-left-img .panel-image.drop-shadow {
    padding-bottom: 70px;
    padding-top: 0;
  }
}

/*


Image Panel


*/
.panel-image .wrapper {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

.panel-image .panel-title {
  font-family: "Texta W00";
  text-transform: uppercase;
  font-size: 18px;
  color: #0E2539;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .panel-image .panel-title {
    font-size: 24px;
    letter-spacing: 5.58px;
    padding-bottom: 1rem;
  }
}

.panel-image p {
  text-align: center;
}

.panel-image img {
  display: block;
  width: 100%;
}

.panel-image .head-wrapper {
  padding-top: 1.75rem;
  padding-bottom: 3rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .panel-image .head-wrapper {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.panel-image .panel-title:after {
  content: "";
  width: 45px;
  height: 2px;
  background-image: linear-gradient(90deg, #2F8AAE 0%, #21E5ED 94%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .panel-image .panel-title:after {
    width: 60px;
  }
}

.panel-image .panel-bg {
  padding-bottom: 0;
}

.panel-image + .panel-title-cta .panel-bg {
  padding-top: 0;
}

.panel-image:has(video) {
  padding-bottom: 194px;
}
.panel-image:has(video) .panel-title {
  color: white;
}
.panel-image:has(video) .panel-title:after {
  background-image: linear-gradient(90deg, #ffffff 0%, #c6fdff 94%);
}

.panel-image video {
  box-shadow: 0 2px 30px 0 rgba(18, 26, 58, 0.3);
  max-width: 100%;
}

@media screen and (max-width: 850px) {
  .panel-image video {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
/*


Slider Panel


*/
.panel-slider {
  background-color: #49C6CB;
  background-image: url(imgs/slider-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
  position: relative;
  z-index: 2;
}

.panel-slider .panel-title {
  font-family: "Texta W00";
  text-transform: uppercase;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-align: center;
  position: relative;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .panel-slider .panel-title {
    font-size: 24px;
    letter-spacing: 5.58px;
    padding-bottom: 1rem;
  }
}

.panel-slider .panel-title:after {
  content: "";
  width: 45px;
  height: 2px;
  background-image: linear-gradient(90deg, #FFFFFF 0%, #C6FDFF 94%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .panel-slider .panel-title:after {
    width: 60px;
  }
}

.panel-slider .head-wrapper {
  padding-top: 1.75rem;
  padding-bottom: 3rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .panel-slider .head-wrapper {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}

.panel-slider .slide-cont {
  align-items: flex-start;
}

.panel-slider .content .sub-title {
  font-family: "Texta W00";
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  line-height: 27px;
}
@media screen and (min-width: 768px) {
  .panel-slider .content .sub-title {
    font-size: 28px;
    line-height: 33px;
    letter-spacing: -0.66px;
  }
}

.panel-slider .slick-dots {
  margin: 0;
  padding: 0;
  display: none !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .panel-slider .slick-dots {
    display: flex !important;
  }
}

.panel-slider .content p {
  font-family: "mr-eaves-modern";
  font-size: 14px;
  color: #000000;
  letter-spacing: 0;
  line-height: 23px;
}
@media screen and (min-width: 768px) {
  .panel-slider .content p {
    font-size: 18.5px;
    line-height: 29px;
  }
}

.panel-slider .buttons-primary {
  justify-content: flex-start;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .panel-slider .buttons-primary {
    padding-bottom: 4rem;
  }
}

.panel-slider .buttons-primary a {
  background: white;
  color: #0B4072;
  margin-left: 0;
  border: none;
  box-shadow: 0 52px 76px 0 rgba(18, 26, 58, 0);
  transition-property: box-shadow;
  transition-duration: 0.3s;
}

.panel-slider .buttons-primary a:hover {
  box-shadow: 0 52px 76px 0 rgba(18, 26, 58, 0.3);
}

.panel-slider .slick-dots li {
  margin: 0 1px;
}

.panel-slider .slides {
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .panel-slider .slides {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.panel-slider .slick-dots li.slick-active button {
  background: white;
  background: #FFFFFF;
  box-shadow: 0 27px 77px 0 rgba(0, 0, 0, 0.4);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .panel-slider .slick-dots li.slick-active button {
    padding-top: 1.7rem;
    padding-bottom: 1.85rem;
  }
}

.panel-slider .slick-dots li.slick-active button:after {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(imgs/slide-down-arrow.svg) no-repeat center center/40px;
  bottom: 0;
  width: 40px;
  height: 40px;
  left: 50%;
  transform: translate(-50%, 35%);
}

.panel-slider .slick-dots li button {
  font-family: "Texta W00";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 2px;
  background: #E3FEFF;
  color: rgba(14, 37, 57, 0.8);
  display: inline-block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .panel-slider .slick-dots li button {
    font-size: 15px;
    letter-spacing: 1.29px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.panel-slider .panel-bg {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .panel-slider .panel-bg {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .panel-slider .content {
    padding-right: 8%;
  }
}

.panel-slider .slick-arrow {
  position: absolute;
  height: 100%;
  width: 30px;
  top: 0;
  border-radius: 0;
  display: inline-block;
  border: 0;
  text-indent: -10000px;
  padding: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .panel-slider .slick-arrow {
    width: 60px;
  }
}

.panel-slider .slick-arrow.slick-prev {
  left: 0;
  background: rgba(53, 178, 183, 0.8) url(imgs/slide-arrow-left.svg) no-repeat center center/12px;
}
.panel-slider .slick-arrow.slick-next {
  right: 0;
  background: rgba(53, 178, 183, 0.8) url(imgs/slide-arrow-right.svg) no-repeat center center/12px;
}
.panel-slider .wrapper {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.panel-slider button.slick-prev {
  left: 0;
}
.panel-slider button.slick-next {
  right: 0;
}
.panel-slider .wrapper {
  max-width: 100%;
}
.panel-slider .slick-slider {
  max-width: 1150px;
  margin: 0 auto;
}

/*


CTA Full width


*/
.panel-faq + .panel-title-cta {
  margin-top: -3rem;
}
@media screen and (min-width: 768px) {
  .panel-faq + .panel-title-cta {
    margin-top: -6rem;
  }
}

.panel-title-cta .wrapper {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

.panel-title-cta .buttons-primary {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .panel-title-cta .buttons-primary {
    margin-top: 2rem;
  }
}

.panel-title-cta .panel-bg {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .panel-title-cta .panel-bg {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.panel-title-cta .panel-title {
  color: white;
  font-family: "Texta W00";
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  font-size: 30px;
  line-height: 39px;
  letter-spacing: -0.5px;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .panel-title-cta .panel-title {
    font-size: 41px;
    letter-spacing: -0.97px;
    line-height: 56px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

/*


Resources Panel


*/
.panel-resource-filters .panel-title {
  font-family: "balboa";
  font-weight: 200;
  font-size: 18px;
  color: #434343;
  letter-spacing: 2.1px;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel-resource-filters .panel-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 3.23px;
  }
}

.panel-resource-filters .panel-bg {
  padding-top: 0;
}

.panel-resource-filters .wrapper.head-wrapper {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .panel-resource-filters .wrapper.head-wrapper {
    margin-bottom: 3rem;
  }
}

.panel-resource-filters .wrapper {
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.panel-resource-filters .resource-posts {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.resource-posts a {
  background: #FFFFFF;
  box-shadow: 0 2px 60px 0 rgba(11, 34, 74, 0.12);
  text-decoration: none;
  transition-property: box-shadow;
  transition-duration: 0.3s;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .resource-posts a {
    margin-left: 1.375rem;
    margin-right: 1.375em;
    width: calc(100% - 2.75rem);
  }
}

.resource-posts a:hover {
  box-shadow: 0 2px 75px 0 rgba(11, 34, 74, 0.34);
}

.resource-posts .col-5 img {
  display: block;
  width: 100%;
  height: auto;
}

.resource-posts .col-7 {
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .resource-posts .col-7 {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.resource-posts > li {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .resource-posts > li {
    margin-bottom: 2.75rem;
  }
}

.resource-posts .learn-more {
  background-image: linear-gradient(235deg, #65E9EC 0%, #2F8AAE 79%);
  background-repeat: no-repeat;
  background-position: bottom left;
  display: inline-block;
  background-size: 100% 2px;
  padding-bottom: 0.5rem;
  font-family: "Texta W00";
  text-transform: uppercase;
  font-weight: 800;
  font-size: 9px;
  color: #000000;
  letter-spacing: 2.25px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .resource-posts .learn-more {
    font-size: 11px;
    letter-spacing: 2.55px;
    margin-bottom: 0.75rem;
  }
}

.resource-category {
  list-style-type: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .resource-category {
    margin-top: 1.25rem;
  }
}

.resource-category li {
  font-family: "Texta W00";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  color: #0A192A;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .resource-category li {
    font-size: 13px;
    letter-spacing: 2.4px;
  }
}

.resource-posts .post-title {
  font-family: "Texta W00";
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 0.4rem;
  margin-top: 0.6rem;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: -0.32px;
}
@media screen and (min-width: 768px) {
  .resource-posts .post-title {
    font-size: 17.5px;
    line-height: 19.5px;
    letter-spacing: -0.45px;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
  }
}

/*


Featured Post panel


*/
.panel.panel-featured-post {
  background-image: linear-gradient(90deg, #01080E 0%, #00274D 51%, #000101 100%);
}

.panel-featured-post .panel-bg {
  padding: 0;
}

.panel-featured-post .entry-header .head-wrap {
  max-width: 1150px;
  text-align: center;
}

.panel-featured-post .button {
  width: 37px;
  text-indent: -10000px;
  height: 37px;
  background: url(imgs/read-more-arrow.svg) no-repeat center center/37px;
  padding: 0;
  border: none;
  border-radius: 0;
}

.archive-posts {
  background: #49C6CB url(imgs/archive-bg.png) no-repeat top center/100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 80px;
  padding-top: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-posts {
    padding-bottom: 12%;
    padding-top: 25px;
    padding-left: 9.7%;
    padding-right: 9.7%;
  }
}

.archive-posts:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  padding-bottom: 10.2%;
  margin-bottom: -2px;
  background: url(imgs/white-wave.svg) no-repeat bottom center/cover;
}

.archive-posts .filters-system {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .archive-posts .filters-system {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.archive-posts .filters-system .filter-item input[type=checkbox]:checked + label {
  background: #F3FEFF;
  color: #152B3F;
}

.archive-posts .filters-system .filter-item input[type=checkbox] + label {
  background: #31ADB2;
  color: #FFFFFF;
}

#Posts {
  align-items: flex-start;
}

h1.warning {
  text-align: center;
  font-size: 25px;
  font-family: "Texta W00";
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width: 768px) {
  h1.warning {
    font-size: 35px;
  }
}

.archive-posts .warning {
  color: white;
}

.archive-posts .post-item, .archive-posts .careers > li {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .archive-posts .post-item, .archive-posts .careers > li {
    margin-bottom: 2.5rem;
  }
}

.post-item .post-image, .careers > li .post-image {
  display: block;
  width: 100%;
  position: relative;
}

.post-item .post-image:after, .careers > li .post-image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(17, 43, 107, 0.16) 27%, rgba(0, 10, 24, 0.81) 98%);
  width: 100%;
  height: 100%;
}

.post-item .post-image img, .careers > li .post-image img {
  display: block;
  width: 100%;
  height: auto;
}

.post-item .content, .careers > li .content {
  padding-left: 6%;
}

.archive-posts .wrapper {
  max-width: 1150px;
  background: linear-gradient(to bottom, #49C6CB, #49C6CB);
  background-repeat: no-repeat;
  background-position: top left;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  margin-top: -50px;
  position: relative;
  background-size: 100% 50px;
}
@media screen and (min-width: 768px) {
  .archive-posts .wrapper {
    margin-top: -166px;
    padding-left: 4rem;
    padding-right: 4rem;
    background-size: 100% 166px;
  }
}

/*


Contact Form panel


*/
.panels-wrapper .panel.panel-form:first-of-type .wrapper {
  margin-top: -50px;
}
@media screen and (min-width: 768px) {
  .panels-wrapper .panel.panel-form:first-of-type .wrapper {
    margin-top: -166px;
  }
}

.panel-form .panel-bg {
  padding-top: 0;
}

.panel-form .gform_confirmation_wrapper {
  font-family: "Texta W00";
  font-weight: 600;
  font-size: 24px;
  color: white;
  padding: 0;
  text-transform: none;
  letter-spacing: -0.55px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 2rem;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_confirmation_wrapper {
    font-size: 36px;
    line-height: 56px;
    letter-spacing: -0.85px;
    margin-top: 60px;
    margin-bottom: 4rem;
  }
}

.panel-form .wrapper {
  width: 100%;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  background: #061727;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3.5rem;
  border-top: 1.75px solid #49C6CB;
}
@media screen and (min-width: 768px) {
  .panel-form .wrapper {
    padding-left: 17.5%;
    padding-right: 17.5%;
    padding-bottom: 5rem;
  }
}

.panel-form .gform_wrapper input[type=submit] {
  min-width: 205px;
}

.panel-form .gform_wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.panel-form .email-wrap .col-6 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}

.panel-form .email-wrap a {
  font-family: "Texta W00";
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: -0.15px;
  text-align: center;
  line-height: 24px;
  text-decoration: none;
  background: linear-gradient(235deg, #65E9EC 0%, #2F8AAE 79%);
  background-size: 100% 1.75px;
  background-repeat: no-repeat;
  background-position: bottom left;
  display: inline-block;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .panel-form .email-wrap a {
    font-size: 28px;
    line-height: 31px;
    letter-spacing: -0.23px;
  }
}

.panel-form .email-wrap h3 {
  font-family: "balboa";
  font-weight: 200;
  font-size: 13px;
  color: #FFFFFF;
  text-align: center;
  line-height: 17px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 768px) {
  .panel-form .email-wrap h3 {
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 2.98px;
    margin-bottom: 0.9rem;
  }
}

.panel-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  background-image: linear-gradient(235deg, #65E9EC 0%, #2F8AAE 79%);
  background-size: 100% 1.75px;
  background-position: bottom left;
  border-radius: 0;
  border: none;
  background-repeat: no-repeat;
  background-color: transparent;
  font-family: "Texta W00";
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  min-height: 40px;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    font-size: 20px;
    line-height: 24px;
    min-height: 44px;
  }
}

.panel-form .gform_wrapper ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #9BB4CB;
}

.panel-form .gform_wrapper ::-moz-placeholder { /* Firefox 19+ */
  color: #9BB4CB;
}

.panel-form .gform_wrapper :-ms-input-placeholder { /* IE 10+ */
  color: #9BB4CB;
}

.panel-form .gform_wrapper :-moz-placeholder { /* Firefox 18- */
  color: #9BB4CB;
}

.panel-form .gform_wrapper .gform_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0.75rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_wrapper .gform_footer {
    margin-top: 1rem;
  }
}

.panel-form .gform_wrapper .gform_description {
  font-family: "mr-eaves-modern";
  font-size: 17px;
  color: #E4F2FF;
  letter-spacing: 0;
  text-align: center;
  line-height: 22px;
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_wrapper .gform_description {
    font-size: 21px;
    line-height: 25px;
    margin-bottom: 2rem;
  }
}

.panel-form .gform_wrapper .gfield_label {
  font-family: "balboa";
  font-weight: 200;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 2.25px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_wrapper .gfield_label {
    line-height: 18px;
    letter-spacing: 2.98px;
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
}

.panel-form .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 8px;
  padding-left: 8px;
  margin-bottom: 1.75rem;
}

.panel-form .gform_wrapper textarea {
  background: #0B2944;
  border-radius: 0;
  border: none;
  font-family: "Texta W00";
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #FFFFFF;
  letter-spacing: 0;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .panel-form .gform_wrapper textarea {
    font-size: 20px;
    line-height: 24px;
  }
}

.panel-form .gform_wrapper ul.gform_fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/*


Grid Resources panel


*/
.panel-resources-grid .wrapper .panel-title {
  width: 100%;
  text-align: center;
}

.panel-resources-grid .wrapper .col-large {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  margin: 0.5px;
  min-height: 225px;
}

.panel-resources-grid .wrapper [class*=col-] {
  position: relative;
}

.panel-resources-grid .wrapper [class*=col-]:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #06192B;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.panel-resources-grid .wrapper [class*=col-]:hover:after {
  opacity: 0.2;
}

.panel-resources-grid .wrapper .col-large:nth-of-type(odd) {
  flex: 0 calc(100% - 1px);
  max-width: calc(100% - 1px);
  width: calc(100% - 1px);
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .wrapper .col-large:nth-of-type(odd) {
    flex: 0 calc(44% - 1px);
    max-width: calc(44% - 1px);
    width: calc(44% - 1px);
  }
}

.panel-resources-grid .wrapper .col-large:nth-of-type(even) {
  flex: 0 calc(100% - 1px);
  max-width: calc(100% - 1px);
  width: calc(100% - 1px);
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .wrapper .col-large:nth-of-type(even) {
    flex: 0 calc(56% - 1px);
    max-width: calc(56% - 1px);
    width: calc(56% - 1px);
  }
}

.panel-resources-grid .wrapper .col-small {
  flex: 0 calc(100% - 1px);
  max-width: calc(100% - 1px);
  width: calc(100% - 1px);
  margin: 0.5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 200px;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .wrapper .col-small {
    flex: 0 calc(28% - 1px);
    max-width: calc(28% - 1px);
    width: calc(28% - 1px);
  }
}

.panel-resources-grid .wrapper .col-small:nth-of-type(3n + 1) {
  flex: 0 calc(100% - 1px);
  max-width: calc(100% - 1px);
  width: calc(100% - 1px);
  align-items: flex-end;
  justify-content: flex-end;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .wrapper .col-small:nth-of-type(3n + 1) {
    flex: 0 calc(44% - 1px);
    max-width: calc(44% - 1px);
    width: calc(44% - 1px);
  }
}

.panel-resources-grid .wrapper .col-small:nth-of-type(2n) {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .panel-resources-grid .wrapper .col-small:nth-of-type(2n) .wrap, .panel-resources-grid .wrapper .col-small:nth-of-type(3n + 1) .wrap {
    padding-bottom: 1rem;
  }
}

.panel-resources-grid .col-large:nth-of-type(3n) {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: left;
}

.panel-resources-grid .col-large:nth-of-type(3n) .wrap {
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .col-large:nth-of-type(3n) .wrap {
    padding-bottom: 1.25rem;
  }
}

.panel-resources-grid .wrapper {
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  align-items: stretch;
}

.panel-resources-grid .wrap {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.panel-resources-grid .col-large.video {
  height: 0;
  padding-bottom: 56.25%;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .col-large.video {
    padding-bottom: 31.5%;
  }
}

.panel-resources-grid .panel-title {
  font-family: "balboa";
  font-weight: 200;
  text-transform: uppercase;
  font-size: 19px;
  color: #06192B;
  letter-spacing: 2.5px;
  text-align: center;
  line-height: 22px;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .panel-title {
    font-size: 24px;
    letter-spacing: 3.23px;
    line-height: 28px;
    margin-bottom: 2rem;
  }
}

.panel-resources-grid .panel-title .highlight-text {
  color: white;
}

.panel-resources-grid .buttons-primary {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}

.panel-resources-grid .buttons-primary .button {
  border-color: white;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 20px;
  font-size: 11px;
}

.panel-resources-grid .col-small .buttons-primary .button {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .col-small .buttons-primary .button {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.panel-resources-grid .buttons-primary .button span {
  line-height: 21px;
  text-align: center;
}

.panel-resources-grid hr {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #678FB2;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.panel-resources-grid .title {
  font-family: "balboa";
  font-weight: 300;
  text-transform: uppercase;
  font-size: 17px;
  color: #FFFFFF;
  letter-spacing: 0.75px;
  line-height: 21px;
  margin-top: 0.4rem;
  margin-bottom: 0.5rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .title {
    font-size: 21px;
    margin-top: 0.5rem;
    line-height: 28px;
    letter-spacing: 1.02px;
    margin-bottom: 0.65rem;
  }
}

.panel-resources-grid .vid-img .modal-launch {
  background: none;
  width: 100%;
}

.panel-resources-grid .vid-img {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 56.25%;
  background: url(imgs/modal-launch.svg) no-repeat center center/88px;
}

.panel-resources-grid .desc {
  font-family: "mr-eaves-modern";
  font-weight: 400;
  font-size: 17px;
  color: #FFFFFF;
  letter-spacing: -0.36px;
  line-height: 20px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .desc {
    font-size: 21px;
    line-height: 25px;
    letter-spacing: -0.56px;
    margin-top: 0;
  }
}

.panel-resources-grid .sup-title {
  font-family: "Texta W00";
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  color: #C3ECFB;
  letter-spacing: 2.28px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .panel-resources-grid .sup-title {
    font-size: 12px;
    letter-spacing: 2.58px;
  }
}

/*


Panel Link Group


*/
.panel.panel-link-grid {
  background: #08345E;
}

.panel-link-grid .panel-bg {
  padding: 0;
  background: url(imgs/link-group-bg.svg) no-repeat top center/cover;
}

.panel-link-grid .buttons-primary {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.panel-link-grid .buttons-primary a div {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.panel-link-grid .buttons-primary a {
  text-indent: 0;
  height: auto;
  text-align: center;
  text-decoration: none;
  background-image: none;
}

.panel-link-grid .buttons-primary a:nth-of-type(even) {
  background: rgba(7, 31, 57, 0.5);
}

.panel-link-grid .buttons-primary a span {
  width: 100%;
  display: block;
  font-family: "balboa";
  font-weight: 300;
  text-transform: uppercase;
  font-size: 30px;
  color: #FFFFFF;
  letter-spacing: 1.46px;
  text-align: center;
  line-height: 28px;
  background: url(imgs/link-grid.svg) no-repeat center bottom/31px;
  padding-bottom: 50px;
}

.panel-link-grid .buttons-primary a h4 {
  font-family: "Texta W00";
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: #49C6CB;
  letter-spacing: 2.58px;
  text-align: center;
}

.panel-link-grid .buttons-primary a {
  flex: 0 100%;
  max-width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .panel-link-grid .buttons-primary a {
    flex: 0 50%;
    max-width: 50%;
  }
}

/*


Panel Logos


*/
.panel-logo-garden .head-wrapper {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-logo-garden .head-wrapper {
    margin-bottom: 3rem;
  }
}

.panel-logo-garden .panel-title {
  font-family: "balboa";
  font-weight: 200;
  font-size: 18px;
  color: #434343;
  letter-spacing: 2.1px;
  text-align: center;
  line-height: 18px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .panel-logo-garden .panel-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 3.23px;
  }
}

.panel-logo-garden .head-wrapper p {
  font-family: "mr-eaves-modern";
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.4px;
  color: #5D7089;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-logo-garden .head-wrapper p {
    font-size: 23px;
    line-height: 27px;
    letter-spacing: -0.61px;
  }
}

.panel-logo-garden .logo-garden img {
  display: block;
  width: 85%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.panel-logo-garden .logo-garden li {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .panel-logo-garden .logo-garden li {
    margin-bottom: 2rem;
  }
}

.panel-logo-garden .logo-garden {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
  max-width: 1085px;
  margin-left: auto;
  margin-right: auto;
}

/* Temporary fix to hide all Archived Press Releases from the Resources page, including the filter */
#ResourceFilters > ul > li:nth-child(9) {
  display: none;
}

#ResourcePosts .resource-posts .flex-parent {
  align-items: unset;
}

#ResourcePosts .resource-posts .flex-parent .col-5 {
  background-size: cover;
  background-position: center;
}

.contact-form-disclaimer p {
  color: #fff;
  margin: 0;
  font-size: 12px;
  text-align: justify;
}

/* and we're back to normal things */
.panel-left-img h2 {
  font-family: "Texta W00";
  font-weight: 700;
  color: #092035;
  font-size: 25px;
  line-height: 27px;
  letter-spacing: -0.7px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .panel-left-img h2 {
    font-size: 38px;
    letter-spacing: -1.05px;
    line-height: 36px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}
.panel-left-img.background-darker-blue h2,
.panel-left-img.background-dark-blue h2 {
  color: white;
}

.panel-left-img h3,
body .supertitle-style {
  font-family: "balboa";
  font-weight: 200;
  font-size: 14px;
  color: #434343;
  letter-spacing: 2px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .panel-left-img h3,
  body .supertitle-style {
    font-size: 18px;
    letter-spacing: 2.84px;
    line-height: 22px;
  }
}
/*accessibility*/
.background-darker-blue .highlight-text,
.post-325 .header-bg .highlight-text,
.background-dark-blue .highlight-text,
.panel-full-width-text-block .wrapper .highlight-text {
  color: #009FA4 !important;
}

.posts, .archive-posts {
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}

.featured {
  display: -ms-flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .featured {
    padding-top: 30px;
  }
}
.featured img {
  display: inline-block;
  max-width: 200px;
  margin-left: 4%;
}

.post-item a, .careers > li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 33px;
  padding-bottom: 25px;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .post-item a, .careers > li a {
    padding-bottom: 15px;
  }
}
.post-item a:after, .careers > li a:after {
  content: "";
  width: 33px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #49C6CB url(imgs/right-arrow.svg) no-repeat center center/12px;
}

.post-item, .careers > li {
  width: 48.5%;
  background: white;
  margin-right: 3%;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0), 0 5px 10px 0 rgba(0, 0, 0, 0);
  margin-bottom: 25px;
  transition-property: box-shadow;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .post-item, .careers > li {
    width: 100%;
    margin-right: 0;
  }
}
.post-item:nth-of-type(even), .careers > li:nth-of-type(even) {
  margin-right: 0;
}

.post-item:hover, .careers > li:hover {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1), 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.single .entry-content {
  padding-left: 12.7%;
  padding-right: 12.7%;
  padding-bottom: 130px;
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .single .entry-content {
    padding-left: 9.7%;
    padding-right: 9.7%;
    padding-bottom: 65px;
  }
}

.single .wp-caption {
  width: 110%;
  margin-left: -5%;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .single .wp-caption {
    margin-bottom: 32.5px;
  }
}

.wp-caption-text {
  font-family: "mr-eaves-modern";
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  color: #868686;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .wp-caption-text {
    padding-top: 14px;
    font-size: 15px;
  }
}

#contact {
  padding-bottom: 0;
}

.notices .notice {
  color: white;
  font-family: "mr-eaves-modern";
  text-align: center;
  width: 50%;
  font-size: 12px;
  line-height: 21px;
}
@media screen and (max-width: 768px) {
  .notices .notice {
    width: 100%;
    margin-top: 15px;
  }
}
.notices .notice a {
  color: white;
}

.notices.panel {
  padding-top: 25px;
  padding-bottom: 15px;
}

.site-footer .copyright {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  width: 100%;
  font-family: "mr-eaves-modern";
  font-weight: 400;
  font-size: 11px;
  color: #A9B0B9;
  letter-spacing: 0.85px;
  text-align: center;
  line-height: 16px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .site-footer .copyright {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.96px;
  }
}

.site-footer .copyright a {
  color: #A9B0B9;
  text-decoration: none;
}

.site-footer .copyright p {
  margin-bottom: 0;
  margin-top: 0;
  color: #A9B0B9;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.85px;
}
@media screen and (min-width: 768px) {
  .site-footer .copyright p {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.96px;
  }
}

.menu-footer-menu-container {
  max-width: 1085px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .menu-footer-menu-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.site-footer {
  background: url(imgs/footer-lines.svg) no-repeat top left/cover;
  padding-top: 0rem;
  padding-bottom: 1rem;
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-footer {
    padding-top: 0rem;
    padding-bottom: 2rem;
    margin-top: -4%;
  }
}

.page-id-465 .site-footer, .single .site-footer, .page-id-280 .site-footer {
  padding-top: 2rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .page-id-465 .site-footer, .single .site-footer, .page-id-280 .site-footer {
    padding-top: 3rem;
    margin-top: 0;
  }
}

.site-footer .gform_confirmation_wrapper {
  margin-left: auto;
  margin-right: auto;
  font-family: "Texta W00";
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.menu-footer-menu-container .menu {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.menu-footer-menu-container .menu .menu-item a {
  font-family: "Texta W00";
  text-transform: uppercase;
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
  color: #092035;
  letter-spacing: 2.5px;
  text-align: center;
}

.menu-footer-menu-container .menu .menu-item .sub-menu {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0.4rem;
  list-style-type: none;
}

.menu-footer-menu-container .menu .menu-item .sub-menu a, .menu-footer-menu-container .menu .menu-item .sub-menu li {
  font-family: "mr-eaves-modern";
  font-weight: 400;
  font-size: 17px;
  color: #5D7089;
  text-transform: none;
  letter-spacing: -0.45px;
  line-height: 22px;
}

.menu-footer-menu-container .sub-menu .menu-item {
  margin-bottom: 0.7rem;
  line-height: 16px;
}

.menu-footer-menu-container .menu > .menu-item {
  flex: 0 50%;
  max-width: 50%;
}
@media screen and (min-width: 768px) {
  .menu-footer-menu-container .menu > .menu-item {
    flex: 0 16.6667%;
    max-width: 16.6667%;
  }
}

.site-footer .footer-title {
  width: 100%;
  font-family: "Texta W00";
  font-weight: 700;
  font-size: 23px;
  color: #092035;
  letter-spacing: -0.5px;
  text-align: center;
  line-height: 28px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-footer .footer-title {
    font-size: 31px;
    line-height: 38px;
    letter-spacing: -0.73px;
  }
}

.site-footer .gform_wrapper {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-footer .gform_wrapper form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer .gform_wrapper .gfield {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-image: linear-gradient(235deg, #65E9EC 0%, #2F8AAE 79%);
  background-position: bottom left;
  background-size: 100% 2px;
  background-repeat: no-repeat;
  padding-right: 0 !important;
  margin-right: 0;
  padding-left: 16px !important;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper .gfield {
    margin-right: 16px;
  }
}

.site-footer .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
  line-height: 26px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body .site-footer .gform_wrapper .gform_footer input.button {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  body .site-footer .gform_wrapper .gform_footer input.button {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.site-footer .gform_wrapper .gfield label {
  display: block;
  flex: 0 20%;
  max-width: 20%;
  font-family: "Texta W00";
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: #092035;
  line-height: 40px;
  letter-spacing: 2.79px;
  text-align: center;
  margin-bottom: -8px;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper .gfield label {
    margin-bottom: 0;
  }
}

.site-footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-radius: 0;
  border: none;
  background: transparent;
  line-height: 40px;
}

body.ie .site-footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  line-height: 0;
}

body.ie .gform_wrapper .gform_footer input[type=submit] {
  padding-left: 20px;
  padding-right: 20px;
}

.site-footer .gform_wrapper .ginput_container {
  flex: 0 80%;
  max-width: 80%;
}

.site-footer .gform_wrapper form .gform_body {
  flex: 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper form .gform_body {
    flex: 0 70%;
    max-width: 70%;
  }
}

.site-footer .gform_wrapper ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #9BB4CB;
  font-family: "Texta W00";
  font-size: 17px;
  color: #587576;
  letter-spacing: 0;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper ::-webkit-input-placeholder {
    font-size: 22px;
    line-height: 24px;
  }
}

.site-footer .gform_wrapper ::-moz-placeholder { /* Firefox 19+ */
  color: #9BB4CB;
  font-family: "Texta W00";
  font-size: 17px;
  color: #587576;
  letter-spacing: 0;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper ::-moz-placeholder {
    font-size: 22px;
    line-height: 24px;
  }
}

.site-footer .gform_wrapper :-ms-input-placeholder { /* IE 10+ */
  color: #9BB4CB;
  font-family: "Texta W00";
  font-size: 17px;
  color: #587576;
  letter-spacing: 0;
  line-height: 40px;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper :-ms-input-placeholder {
    font-size: 17px;
    line-height: 40px;
  }
}

.site-footer .gform_wrapper :-moz-placeholder { /* Firefox 18- */
  color: #9BB4CB;
  font-family: "Texta W00";
  font-size: 17px;
  color: #587576;
  letter-spacing: 0;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper :-moz-placeholder {
    font-size: 22px;
    line-height: 24px;
  }
}

.site-footer .gform_wrapper form .gform_footer {
  flex: 0 100%;
  max-width: 100%;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .site-footer .gform_wrapper form .gform_footer {
    flex: 0 30%;
    max-width: 30%;
  }
}

.site-footer .panel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText,
#CybotCookiebotDialogDetailFooter {
  display: none;
}

/* LinkedIn Footer Link */
.footer-linkedin a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
  margin-left: -3px;
}

.footer-linkedin svg {
  width: 25px;
  height: 25px;
}

a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText,
#CybotCookiebotDialogDetailFooter,
#CybotCookiebotDialogHeader,
.CookiebotWidget-main-logo {
  display: none !important;
}

.button, .solide-button, .solid-white, .panel-form .gform_wrapper .gform_footer input[type=submit], .site-footer .gform_wrapper .gform_footer input.button, .site-footer .gform_wrapper .gform_footer input[type=submit], .site-footer .gform_wrapper .gform_page_footer input.button, .site-footer .gform_wrapper .gform_page_footer input[type=submit] {
  font-family: "Texta W00";
  font-weight: 900;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  border: 1.5px solid #49C6CB;
  background: transparent;
  border-radius: 45px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-right: 35px;
  padding-left: 35px;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .button, .solide-button, .solid-white, .panel-form .gform_wrapper .gform_footer input[type=submit], .site-footer .gform_wrapper .gform_footer input.button, .site-footer .gform_wrapper .gform_footer input[type=submit], .site-footer .gform_wrapper .gform_page_footer input.button, .site-footer .gform_wrapper .gform_page_footer input[type=submit] {
    padding-right: 40px;
    padding-left: 40px;
    font-size: 13px;
  }
}
.button:visited, .button:hover, .solide-button:visited, .solide-button:hover, .solid-white:visited, .solid-white:hover, .panel-form .gform_wrapper .gform_footer input[type=submit]:visited, .panel-form .gform_wrapper .gform_footer input[type=submit]:hover, .site-footer .gform_wrapper .gform_footer input.button:visited, .site-footer .gform_wrapper .gform_footer input.button:hover, .site-footer .gform_wrapper .gform_footer input[type=submit]:visited, .site-footer .gform_wrapper .gform_footer input[type=submit]:hover, .site-footer .gform_wrapper .gform_page_footer input.button:visited, .site-footer .gform_wrapper .gform_page_footer input.button:hover, .site-footer .gform_wrapper .gform_page_footer input[type=submit]:visited, .site-footer .gform_wrapper .gform_page_footer input[type=submit]:hover {
  color: white;
}

.panel-news-press .button {
  position: absolute;
  top: 0;
  right: 0;
  border-color: white;
}
@media screen and (max-width: 768px) {
  .panel-news-press .button {
    position: relative;
    top: inherit;
    right: inherit;
    margin: 0 auto 25px;
  }
}

.button {
  transition-property: color, background, border-color;
  transition-duration: 0.3s;
}

.button:hover {
  color: #092035;
  background: white;
  border-color: white;
}

.solide-button {
  background: #49C6CB;
  border-color: #49C6CB;
  box-shadow: 0 27px 77px 0 rgba(0, 0, 0, 0);
  color: #0A192A !important;
  transition-property: box-shadow;
  transition-duration: 0.3s;
}

.solide-button:hover {
  box-shadow: 0 27px 77px 0 rgba(0, 0, 0, 0.4);
}

.solid-white:visited {
  color: #092035;
}

.solid-white {
  background: white;
  border-color: white;
  color: #092035;
  box-shadow: 0 52px 76px 0 rgba(18, 26, 58, 0);
  transition-property: box-shadow;
  transition-duration: 0.3s;
}

.solid-white:hover {
  color: #092035;
  box-shadow: 0 52px 76px 0 rgba(18, 26, 58, 0.3);
}

.site-footer .gform_wrapper .gform_footer input.button, .site-footer .gform_wrapper .gform_footer input[type=submit], .site-footer .gform_wrapper .gform_page_footer input.button, .site-footer .gform_wrapper .gform_page_footer input[type=submit] {
  background: #49C6CB;
  border: none;
}

.buttons-primary .no-text {
  width: 29px;
  height: 29px;
  text-indent: -10000px;
  background: url(imgs/no-text-bttn.svg) no-repeat center center/29px;
}

.buttons-primary .full-width {
  font-size: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  margin: 0;
}

.single .entry-header .button span {
  line-height: 34px;
}

a.styled {
  background-image: linear-gradient(235deg, #65e9ec 0%, #2f8aae 79%);
  background-repeat: no-repeat;
  background-position: bottom left;
  font-weight: 700;
  padding-bottom: 2px;
  color: #00284d;
  text-decoration: none;
  background-size: 100% 2px;
  font-family: mr-eaves-modern, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #fff;
}

a.standard-link {
  background-image: linear-gradient(235deg, #65e9ec 0%, #2f8aae 79%);
  background-repeat: no-repeat;
  background-position: bottom left;
  font-weight: 700;
  padding-bottom: 2px;
  color: #00284d;
  text-decoration: none;
  background-size: 100% 2px;
  font-family: mr-eaves-modern, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.page-template-page-narrow .entry-content {
  background: #49C6CB;
}

.page-template-page-narrow .entry-content td, .page-template-page-narrow .entry-content th {
  border: 1px solid #404040;
  padding: 5px 10px;
}

.page-template-page-narrow .content-wrapper {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -55px;
  background: white;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  width: 90%;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  .page-template-page-narrow .content-wrapper {
    padding-top: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
    margin-top: -120px;
    margin-bottom: 5%;
    width: 100%;
  }
}

.page-template-page-narrow .content-wrapper {
  font-family: "mr-eaves-modern";
  font-size: 17px;
  letter-spacing: 0;
}

.page-template-page-narrow .site-footer {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .page-template-page-narrow .site-footer {
    margin-top: 0;
    padding-top: 3rem;
  }
}

.page-template-page-narrow .entry-header .header-bg {
  min-height: 165px;
}
@media screen and (min-width: 768px) {
  .page-template-page-narrow .entry-header .header-bg {
    min-height: 350px;
  }
}

.page-template-page-narrow h2.entry-title {
  font-family: "Texta W00";
  width: 100%;
  text-transform: uppercase;
  font-size: 27px;
  color: #49C6CB;
  letter-spacing: 3.55px;
  text-align: center;
  font-weight: 800;
}

body.page-id-465 div#ResourcePosts ul > li:nth-child(2) {
  order: -1;
}

/* Archived Press Releases */
body.page-id-1368 header h2.entry-title {
  display: none;
}

body.page-id-1368 div.panel-resource-filters {
  padding-top: 75px;
}

/* Contact Inquiries */
body.page-id-462 div.panel-full-width-text-block .panel-bg {
  padding-top: 0 !important;
}

body.page-id-462 div.panel-full-width-text-block .panel-bg .wrapper {
  max-width: 1050px;
}

.post-280 .entry-title,
.post-459 .entry-title,
.post-465 .entry-title {
  color: #fff !important;
}

#notitle .wrapper.head-wrapper {
  display: none;
}

a.cookie-link {
  color: #49c6cb;
  text-decoration: none;
}

.simple-banner {
  top: 0px;
  position: sticky !important;
}

@media screen and (max-width: 500px) {
  .simple-banner-text {
    font-size: 12px !important;
  }
}
/* Homepage Edits */
@media screen and (min-width: 768px) {
  body.home .panel-resources-grid .wrapper div:nth-child(7),
  body.home .panel-resources-grid .wrapper div:nth-child(4) {
    flex: 0 calc(56% - 1px);
    max-width: calc(56% - 1px);
    width: calc(56% - 1px);
  }
  body.home .panel-resources-grid .wrapper div:nth-child(6),
  body.home .panel-resources-grid .wrapper div:nth-child(5) {
    flex: 0 calc(44% - 1px);
    max-width: calc(44% - 1px);
    width: calc(44% - 1px);
  }
}
body.page-id-315 .panel-platform {
  margin-bottom: 100px;
}

/*# sourceMappingURL=style.css.map */
