/*********************************************************
  Main.scss == Table of Contents
*********************************************************/
/**
*** -- GLOBAL/BASE
***/
/*********************************************************
  Variables
  @NOTE: variable naming is using BEM conventions
*********************************************************/
/*********************************************************
  Mixins
*********************************************************/
.ar-16\:9 {
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ar-16\:9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ar-21\:9 {
  width: 100%;
  padding-top: 42.8571428571%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ar-21\:9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ar-32\:9 {
  width: 100%;
  padding-top: 28.125%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ar-32\:9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ar-4\:3 {
  width: 100%;
  padding-top: 75%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ar-4\:3 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ar-2\:1 {
  width: 100%;
  padding-top: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ar-2\:1 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
  * PX to REM Conversion
  * USAGE: .class {font-size: rem(18)}
  */
/**
  * Fluid Property
  * Make a property fluidly responsive by using calc and viewport units.
  * USAGE: @include fluid-property(height, 200, 400)
  */
/**
  * Fluid Text
  * Make font-size property fluidly responsive by using calc and viewport units.
  * USAGE: @include fluid-text(20, 40)
  */
/**
  * Clearfix
  * Usage: @include clearfix()
  */
/**
  * Triangle for Navigation 
  */
/* This mixin is for generating CSS arrows on a box */
.box--arrow-top {
  position: relative;
  z-index: 10;
  transition: left 0ms linear 150ms, opacity 114ms ease-out 150ms;
  transition-delay: 5s;
}
.box--arrow-top::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  z-index: 10;
  border: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  margin-left: 0;
  left: auto;
  border-bottom: 25px solid #EBF6FC;
  top: calc(100% - 20px);
  transform: translateX(50%);
}

/*********************************
MEDIA QUERIES
*********************************/
/*********************************************************
  HTML5 RESET
*********************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

td, th {
  padding: 0;
  text-align: left;
}

img, embed, object, audio, video {
  max-width: 100%;
}

iframe {
  border: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

button, input[type=submit] {
  -webkit-appearance: none;
}

/*********************************************************
  Base Styling
*********************************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  background-color: #ffffff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
html.nav-open {
  overflow: hidden;
}

body {
  font-size: 1rem;
  font-family: "Gotham", sans-serif;
  font-weight: 300;
  line-height: 1.4rem;
  color: #003753;
  overflow-x: hidden;
}

#page {
  position: absolute;
  width: 100%;
  overflow-x: hidden;
  top: 0;
  padding-top: 100px;
}
@media (min-width: 1025px) {
  #page {
    padding-top: 165px;
  }
}
#page.header--has-banner {
  padding-top: 165px;
}
@media (min-width: 768px) {
  #page.header--has-banner {
    padding-top: 150px;
  }
}
@media (min-width: 1025px) {
  #page.header--has-banner {
    padding-top: 210px;
  }
}

img {
  width: 100%;
  height: auto;
}

.main-body {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.container.site-content {
  margin-top: 90px;
}

.format-content blockquote {
  color: #0091da;
}
.format-content ul {
  list-style: disc;
}
.format-content ol {
  list-style: decimal;
}
.format-content ol > li,
.format-content ul > li {
  margin-left: 1.25rem;
  padding-left: 0.5rem;
}
.format-content a.btn.btn--link {
  border-bottom: none;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}

.cursor-default {
  cursor: default;
}

img.alignleft {
  float: left;
  width: auto;
  padding-right: 30px;
}

img.alignright {
  float: right;
  width: auto;
  padding-left: 30px;
}

img.aligncenter {
  width: auto;
  margin: 0 auto;
}

img.alignnone {
  width: auto;
}

/*********************************************************
    Fonts
*********************************************************/
/*
@font-face {
  font-family: 'brownbold';
  src: url('../fonts/lineto-brown-bold.eot') format('eot'),
       url('../fonts/lineto-brown-bold.woff') format('woff'),
       url('../fonts/lineto-brown-bold.ttf') format('ttf'),
       url('../fonts/lineto-brown-bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
};
*/
/* latin-ext */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjxAwXiWtFCfQ7A.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: local("Lato Regular"), local("Lato-Regular"), url(https://fonts.gstatic.com/s/lato/v14/S6uyw4BMUTPHjx4wXiWtFCc.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*********************************************************
  Typography
*********************************************************/
h1, h2, h3, h4, h5, h6 {
  font-family: "Gotham", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin-top: 1em;
}
h1.sec-heading, h2.sec-heading, h3.sec-heading, h4.sec-heading, h5.sec-heading, h6.sec-heading {
  text-align: inherit;
}

h1, .h1 {
  font-size: 2.125rem;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 2.75rem;
  }
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 3.625rem;
  }
}

h2, .h2 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.375rem;
  }
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 3.25rem;
  }
}

h3, .h3 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 2.125rem;
  }
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 2.875rem;
  }
}

h4, .h4 {
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 2.375rem;
  }
}

h5, .h5 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h5, .h5 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  h5, .h5 {
    font-size: 1.5rem;
  }
}

h6, .h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}

p {
  margin: 1.25rem 0 0 0;
}

a {
  color: #0091da;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}
a:hover, a:focus {
  text-decoration: underline;
}

strong {
  color: currentColor;
  font-weight: bold;
}

address {
  font-style: normal;
}

blockquote {
  color: #003753;
}

pre {
  padding: 1.25rem;
  background: #111111;
  color: #ffffff;
}

.entry-content ul {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.entry-content ul > li > ul {
  list-style-type: circle;
}

.heading-container {
  margin-bottom: 4rem;
  text-align: left;
}

.subheading {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .subheading {
    font-size: 1.125rem;
  }
}

h3.heading {
  margin-top: 1rem;
}

/*********************************************************
  Button
*********************************************************/
a.btn,
button.btn,
span.btn,
input[type=button],
input[type=submit],
.site-header .nav__inner > li.btn a,
.site-header .nav__top > li.btn a {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: 0;
  background-color: #0091da;
  color: #ffffff;
  line-height: inherit;
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  will-change: background-color;
  transition: background-color 256ms ease-out;
  border-radius: 30px;
  font-weight: 700;
}
a.btn:hover, a.btn:focus,
button.btn:hover,
button.btn:focus,
span.btn:hover,
span.btn:focus,
input[type=button]:hover,
input[type=button]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
.site-header .nav__inner > li.btn a:hover,
.site-header .nav__inner > li.btn a:focus,
.site-header .nav__top > li.btn a:hover,
.site-header .nav__top > li.btn a:focus {
  color: white;
  background-color: #0079b6;
  text-decoration: none;
}

a.btn--primary, button.btn--primary, span.btn--primary {
  background-color: #0091da;
  color: #ffffff;
}
a.btn--primary:hover, a.btn--primary:focus, button.btn--primary:hover, button.btn--primary:focus, span.btn--primary:hover, span.btn--primary:focus {
  color: white;
  background-color: #0079b6;
}

a.btn--secondary, button.btn--secondary, span.btn--secondary {
  background-color: #ffffff;
  color: #0091da;
  border: 2px solid #0091da;
}
a.btn--secondary:hover, a.btn--secondary:focus, button.btn--secondary:hover, button.btn--secondary:focus, span.btn--secondary:hover, span.btn--secondary:focus {
  color: white;
  background-color: #0091da;
}

a.btn--clear, button.btn--clear, span.btn--clear {
  background-color: transparent;
  color: #003753;
}
a.btn--clear:hover, a.btn--clear:focus, button.btn--clear:hover, button.btn--clear:focus, span.btn--clear:hover, span.btn--clear:focus {
  background-color: transparent;
  color: #001f2f;
}

.btn--small {
  font-size: 0.875rem;
  padding: 0.3125rem 0.625rem;
}

.btn--large {
  font-size: 1.125rem;
  padding: 0.9375rem 1.25rem;
}

.btn--disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.btn--block {
  display: block;
  max-width: 100%;
}

.arrow {
  position: absolute;
  height: 2px;
  width: 12px;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 8px;
  margin-left: 6px;
  transition: 0.15s ease-in-out;
}
.arrow:before, .arrow:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 8px;
}
.arrow:before {
  right: -2px;
  bottom: -2px;
  transform: rotate(-45deg);
}
.arrow:after {
  right: -2px;
  top: -2px;
  transform: rotate(45deg);
}

.arrow-link__right {
  position: relative;
  text-decoration: none;
}
.arrow-link__right:hover .arrow {
  margin-left: 10px;
}

.arrow-link__blue .arrow {
  background: #0091da;
}
.arrow-link__blue .arrow:before, .arrow-link__blue .arrow:after {
  background: #0091da;
}
.arrow-link__blue:hover {
  color: #003753;
}
.arrow-link__blue:hover .arrow {
  background: #003753;
}
.arrow-link__blue:hover .arrow:before, .arrow-link__blue:hover .arrow:after {
  background: #003753;
}

.arrow-link__white .arrow {
  background: white;
}
.arrow-link__white .arrow:before, .arrow-link__white .arrow:after {
  background: white;
}
.arrow-link__white:hover {
  color: white;
}
.arrow-link__white:hover .arrow {
  background: white;
}
.arrow-link__white:hover .arrow:before, .arrow-link__white:hover .arrow:after {
  background: white;
}

.arrow-link__large .arrow {
  height: 2px;
  width: 24px;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 8px;
  margin-left: 6px;
  transition: 0.15s ease-in-out;
}
.arrow-link__large .arrow:before, .arrow-link__large .arrow:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 14px;
}
.arrow-link__large .arrow:before {
  right: -2px;
  bottom: -4px;
  transform: rotate(-45deg);
}
.arrow-link__large .arrow:after {
  right: -2px;
  top: -4px;
  transform: rotate(45deg);
}

a.btn--link, button.btn--link, span.btn--link {
  display: inline-block;
  margin: 0.3125rem 0;
  padding: 0.125rem 0;
  border-bottom: 2px solid #0091da;
  background-color: transparent;
  color: #0091da;
  line-height: inherit;
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  will-change: background-color;
  transition: background-color 256ms ease-out;
  border-radius: 0;
  font-weight: 700;
}
a.btn--link:hover, a.btn--link:focus, button.btn--link:hover, button.btn--link:focus, span.btn--link:hover, span.btn--link:focus {
  color: #0079b6;
  border-color: #0079b6;
  background-color: transparent;
  text-decoration: none;
}

a.btn--arrow, button.btn--arrow, span.btn--arrow {
  display: inline-block;
  margin: 0.3125rem 0;
  padding: 0.125rem 0;
  background-color: transparent;
  color: #0091da;
  line-height: inherit;
  font-family: inherit;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  will-change: background-color;
  transition: background-color 256ms ease-out;
  border-radius: 0;
  font-weight: 700;
}
a.btn--arrow:hover, a.btn--arrow:focus, button.btn--arrow:hover, button.btn--arrow:focus, span.btn--arrow:hover, span.btn--arrow:focus {
  color: #0079b6;
  border-color: #0079b6;
  background-color: transparent;
  text-decoration: none;
}
a.btn--arrow .arrow, button.btn--arrow .arrow, span.btn--arrow .arrow {
  width: 14px;
  margin-top: 10px;
  margin-left: 8px;
}
a.btn--arrow .arrow:before, a.btn--arrow .arrow:after, button.btn--arrow .arrow:before, button.btn--arrow .arrow:after, span.btn--arrow .arrow:before, span.btn--arrow .arrow:after {
  height: 2px;
  width: 10px;
}
a.btn--arrow .arrow:before, button.btn--arrow .arrow:before, span.btn--arrow .arrow:before {
  right: -3px;
  bottom: -3px;
}
a.btn--arrow .arrow:after, button.btn--arrow .arrow:after, span.btn--arrow .arrow:after {
  right: -3px;
  top: -3px;
  transform: rotate(45deg);
}

.arrow-link__blue .arrow {
  background: #0091da;
}
.arrow-link__blue .arrow:before, .arrow-link__blue .arrow:after {
  background: #0091da;
}
.arrow-link__blue:hover {
  color: #0079b6;
}
.arrow-link__blue:hover .arrow {
  background: #0079b6;
}
.arrow-link__blue:hover .arrow:before, .arrow-link__blue:hover .arrow:after {
  background: #0079b6;
}

/*********************************************************
Input
*********************************************************/
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

label,
.form > .form__label {
  display: block;
  margin-bottom: 0.2rem;
  font-weight: bold;
  user-select: none;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
textarea,
select {
  display: inline-block;
  width: 100%;
  margin: 0.5rem 0 0;
  padding: 1rem 1.125rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: inherit;
  color: #003753;
  background-color: white;
  border: 1px solid #707372;
  border-radius: 0;
  outline: none;
  appearance: none;
  transition: 0.2s all ease-out;
}
input[type=email]:focus, input[type=email]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=text]:focus,
input[type=text]:active,
input[type=url]:focus,
input[type=url]:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
  border-color: #0091da;
}

textarea {
  width: 100%;
  height: 11.6rem;
  resize: vertical;
}

label.file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
  border: 6px dashed #707372;
  cursor: pointer;
}
label.file input {
  display: none;
}
label.file:hover, label.file:focus {
  border-color: black;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-weight: normal;
  cursor: pointer;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin: 0.3rem 0.5rem 0.3rem 0;
  border: 1px solid #707372;
  transition: box-shadow 114ms ease-out;
  box-shadow: inset 0 0 0 0.5rem white, inset 0 0 0 0.5rem #707372;
}
input[type=checkbox]:checked + label:before,
input[type=radio]:checked + label:before {
  box-shadow: inset 0 0 0 0.12rem white, inset 0 0 0 0.5rem #707372;
}
input[type=checkbox].fancy + label,
input[type=radio].fancy + label {
  display: inline-flex;
  align-items: center;
  margin: 0.5rem 0.35rem 0 0;
  padding: 0.4rem 1rem 0.4rem 1rem;
  border: 2px solid #0091da;
  color: #0091da;
  background-color: white;
  box-shadow: inset 0 0 0 0px #0091da;
}
input[type=checkbox].fancy + label span,
input[type=radio].fancy + label span {
  margin-top: -0.1rem;
}
input[type=checkbox].fancy + label:before,
input[type=radio].fancy + label:before {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #0091da;
  box-shadow: inset 0 0 0 0.5rem white, inset 0 0 0 0.5rem #0091da;
}
input[type=checkbox].fancy:checked + label:before,
input[type=radio].fancy:checked + label:before {
  box-shadow: inset 0 0 0 0.12rem white, inset 0 0 0 0.5rem #0091da;
}
input[type=checkbox].fancy[type=radio] + label,
input[type=radio].fancy[type=radio] + label {
  border-radius: 2rem;
}

input[type=radio] + label:before {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .form__btn-container {
    float: right;
  }
}

.form__input--success {
  border-color: #64A70B !important;
}
.form__input--error {
  border-color: #e07a5f !important;
}

.gform_body .gform_fields > li {
  margin: 2rem 0;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #003753;
  font-size: 1rem;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #003753;
  font-size: 1rem;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #003753;
  font-size: 1rem;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #003753;
  font-size: 1rem;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #003753;
  font-size: 1rem;
}

/*********************************************************
    Tables
*********************************************************/
.table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.table th {
  padding: 0.8rem;
  font-weight: 600;
  border-bottom: 0.2rem solid rgba(0, 55, 83, 0.25);
  vertical-align: bottom;
}

.table td {
  padding: 0.8rem;
  border-top: 1px solid rgba(0, 55, 83, 0.25);
}

.table--striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.03);
}

.table--hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

/*********************************************************
  Grid & Containers
  @NOTE: Uses Flexbox Sass
*********************************************************/
.container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.container--narrow {
  max-width: 800px;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.row {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .row {
    margin-right: -1rem;
    margin-left: -1rem;
  }
}

.row.reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

[class*=col-xs] {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  [class*=col-xs] {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

.col-xs-1 {
  -webkit-flex-basis: 8.3333333333%;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-xs-2 {
  -webkit-flex-basis: 16.6666666667%;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-xs-3 {
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -webkit-flex-basis: 33.3333333333%;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-xs-5 {
  -webkit-flex-basis: 41.6666666667%;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-xs-6 {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -webkit-flex-basis: 58.3333333333%;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-xs-8 {
  -webkit-flex-basis: 66.6666666667%;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-xs-9 {
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -webkit-flex-basis: 83.3333333333%;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-xs-11 {
  -webkit-flex-basis: 91.6666666667%;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-xs-12 {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
}

.start-xs {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs, .flex-top {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.middle-xs, .flex-middle {
  -webkit-align-items: center;
  align-items: center;
}

.bottom-xs, .flex-bottom {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.around-xs, .flex-around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.between-xs, .flex-between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.first-xs {
  -webkit-order: -1;
  order: -1;
}

.last-xs {
  -webkit-order: 1;
  order: 1;
}

@media only screen and (min-width: 48rem) {
  [class*=col-sm] {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-sm-1 {
    -webkit-flex-basis: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-flex-basis: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-flex-basis: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-flex-basis: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-flex-basis: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-flex-basis: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-flex-basis: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-flex-basis: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-sm {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-align-items: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .around-sm {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 64rem) {
  [class*=col-md] {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-md-1 {
    -webkit-flex-basis: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-flex-basis: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-flex-basis: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-flex-basis: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-flex-basis: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-flex-basis: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-flex-basis: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-flex-basis: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-md {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-align-items: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .around-md {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .between-md {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .first-md {
    -webkit-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 80rem) {
  [class*=col-lg] {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-lg-1 {
    -webkit-flex-basis: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-flex-basis: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-flex-basis: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-flex-basis: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-flex-basis: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-flex-basis: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-flex-basis: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-flex-basis: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .start-lg {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-align-items: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  .around-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-order: 1;
    order: 1;
  }
}
/*********************************************************
  Section
*********************************************************/
.section, section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .section, section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .section, section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.section header, section header {
  text-align: center;
}
.section.white, section.white {
  background-color: #ffffff;
}
.section.primary, section.primary {
  color: #ffffff;
  background-color: #003753;
}
.section.secondary, section.secondary {
  background-color: #0091da;
}
.section.tertiary, section.tertiary {
  color: #ffffff;
  background-color: #64A70B;
}
.section.gray, section.gray {
  background-color: #707372;
}
.section.gray-light, section.gray-light {
  background-color: #E3E3E3;
}
.section.white + .white, section.white + .white {
  padding-top: 0;
}
.section.primary + .site-footer, section.primary + .site-footer {
  padding-top: 0;
}
.section.primary + .primary, section.primary + .primary {
  box-shadow: inset 0 2px 0 0 rgba(255, 255, 255, 0.12);
}
.section.gray-light + .gray-light, section.gray-light + .gray-light {
  box-shadow: inset 0 2px 0 0 #707372;
}
.section.padding--half, section.padding--half {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section.padding--half, section.padding--half {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section.padding--half, section.padding--half {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
.section.padding-bottom--half, .page-template-resources .section.basic-content, section.padding-bottom--half, .page-template-resources section.basic-content {
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section.padding-bottom--half, .page-template-resources .section.basic-content, section.padding-bottom--half, .page-template-resources section.basic-content {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section.padding-bottom--half, .page-template-resources .section.basic-content, section.padding-bottom--half, .page-template-resources section.basic-content {
    padding-bottom: 3.5rem;
  }
}
.section.padding-top--half, section.padding-top--half {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .section.padding-top--half, section.padding-top--half {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section.padding-top--half, section.padding-top--half {
    padding-top: 3.5rem;
  }
}
.section.padding-top--0, section.padding-top--0 {
  padding-top: 0;
}
.section.padding-bottom--0, section.padding-bottom--0 {
  padding-bottom: 0;
}

.section {
  padding: 5em 0;
}

.section--sm {
  padding: 3em 0;
}

.section--md {
  padding: 7em 0;
}

.section--lg {
  padding: 9em 0;
}

.background--gray {
  background-color: #E3E3E3;
}

.section-padding__top--half {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .section-padding__top--half {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section-padding__top--half {
    padding-top: 3.5rem;
  }
}

.section-padding__bottom--half {
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-padding__bottom--half {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .section-padding__bottom--half {
    padding-bottom: 3.5rem;
  }
}

.section-padding__top--none {
  padding-top: 0;
}
@media (min-width: 768px) {
  .section-padding__top--none {
    padding-top: 0;
  }
}
@media (min-width: 1200px) {
  .section-padding__top--none {
    padding-top: 0;
  }
}

.section-padding__bottom--none {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .section-padding__bottom--none {
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .section-padding__bottom--none {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .two-up {
    display: flex;
  }
}

.two-up li {
  max-width: 350px;
  margin: 2rem auto;
}
@media (min-width: 992px) {
  .two-up li {
    display: flex;
    width: 50%;
    max-width: none;
    margin: 4rem auto 0;
  }
}

.two-up li > div {
  padding: 1rem;
}

.two-up li > div img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.two-up li > div .btn {
  margin-top: 1.25rem;
}

@media (min-width: 992px) {
  .two-up li:first-child > div {
    margin-right: 1rem;
  }
}

@media (min-width: 992px) {
  .two-up li:last-child > div {
    margin-left: 1rem;
  }
}

@media (min-width: 992px) {
  .three-up {
    display: flex;
  }
}

.three-up li {
  max-width: 350px;
  margin: 2rem auto;
}
@media (min-width: 992px) {
  .three-up li {
    display: flex;
    width: 33.3333%;
    max-width: none;
    margin: 4rem auto 0;
  }
}

.three-up li > div {
  padding: 1rem;
}
@media (min-width: 992px) {
  .three-up li > div {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
  }
  .three-up li > div > * {
    flex: 0 0 100%;
  }
}

.three-up li > div img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.three-up li > div .btn {
  margin-top: 1.25rem;
}

@media (min-width: 992px) {
  .three-up li:first-child > div {
    margin-right: 1rem;
  }
}

@media (min-width: 992px) {
  .three-up li:nth-child(2) > div {
    margin: 0 0.5rem;
  }
}

@media (min-width: 992px) {
  .three-up li:last-child > div {
    margin-left: 1rem;
  }
}

/*********************************************************
  Section Spacing
*********************************************************/
.spacer {
  width: 100%;
  display: block;
  position: relative;
}

.spacer--large {
  height: 3rem;
}
@media (min-width: 768px) {
  .spacer--large {
    height: 5rem;
  }
}
@media (min-width: 1200px) {
  .spacer--large {
    height: 7rem;
  }
}

.spacer--medium {
  height: 2rem;
}
@media (min-width: 768px) {
  .spacer--medium {
    height: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .spacer--medium {
    height: 5rem;
  }
}

.spacer--small {
  height: 1rem;
}
@media (min-width: 768px) {
  .spacer--small {
    height: 2rem;
  }
}
@media (min-width: 1200px) {
  .spacer--small {
    height: 3rem;
  }
}

/***************************************
BIGSEA ACCORDION
****************************************/
.collapse {
  display: none;
  transition: all 0.3s ease;
}

.collapse.show {
  display: block;
}

.bsd-accordion {
  width: 100%;
  border-top: 2px solid #003753;
}
.bsd-accordion .card {
  border: none;
  border-bottom: 2px solid #003753;
  background-color: transparent;
}
.bsd-accordion .card.active .card-header [data-toggle=collapse] .accordion-icon:before {
  opacity: 0;
}
.bsd-accordion .card.active .card-header [data-toggle=collapse] .accordion-icon:after {
  opacity: 1;
}
.bsd-accordion .card .card-header {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.bsd-accordion .card .card-header:hover [data-toggle=collapse] {
  color: #003753;
}
.bsd-accordion .card .card-header [data-toggle=collapse] {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 50px 20px 5px;
  position: relative;
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: #003753;
  line-height: 1.125em;
  border: none;
  border-radius: 0;
  transition: ease all 0.5s;
  cursor: pointer;
}
.bsd-accordion .card .card-header [data-toggle=collapse] .accordion-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsd-accordion .card .card-header [data-toggle=collapse] .accordion-icon:before, .bsd-accordion .card .card-header [data-toggle=collapse] .accordion-icon:after {
  display: block;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-size: 15px;
  left: 0;
  right: 0;
  margin: auto;
  transform-style: preserve-3d;
  transition: ease transform 0.5s;
}
.bsd-accordion .card .card-header [data-toggle=collapse] .accordion-icon:before {
  color: #003753;
  content: "\f067";
  opacity: 1;
}
.bsd-accordion .card .card-header [data-toggle=collapse] .accordion-icon:after {
  color: #003753;
  content: "\f068";
  opacity: 0;
}
.bsd-accordion .card .card-body {
  padding: 0 40px 20px 5px;
}
.bsd-accordion .card .card-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.4;
}
.bsd-accordion .card .card-body p:first-child {
  margin-top: 0;
}

/**
*** -- COMPONENTS
***/
/*********************************************************
  Header & Nav Base Styles
  *********************************************************/
@media (min-width: 1025px) {
  html {
    overflow: visible;
  }
}

body {
  margin-top: 6.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin: 0;
  color: #ffffff;
  background-color: #003753;
  z-index: 30;
}
@media (min-width: 1025px) {
  .site-header {
    background-color: white;
  }
}

.site-header a {
  color: white;
}

.site-header__banner {
  width: initial;
  height: 6.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 30;
}

.site-header__logo {
  width: 270px;
}

.site-header__logo a {
  color: #ffffff;
}

@media (min-width: 1025px) {
  .site-header .site-header__wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.site-header .site-header__top-wrapper {
  display: none;
}

.site-header .divider {
  display: none;
}

.site-header .site-header__social-links {
  display: none;
}

.site-header__nav-toggle {
  position: relative;
  width: 30px;
  height: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .site-header__nav-toggle {
    display: none;
  }
}

.site-header__nav-toggle-line {
  display: block;
  right: 0;
  background: #ffffff;
  width: 30px;
  height: 3px;
  will-change: top, transform;
  transition: all 0.25s;
}

@media (max-width: 1024px) {
  .site-header .site-header__nav {
    position: absolute;
    z-index: 0;
    top: 100%;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 414px;
    height: calc(100vh - 4.5rem);
    padding-bottom: 6.5rem;
    color: #003753;
    background-color: #003753;
    font-size: 0.875rem;
    line-height: 1.6875rem;
    overflow: auto;
    transform: translate(100%, 0%);
    transition: transform 400ms ease-in-out;
  }
  .site-header .site-header__nav.nav-open {
    display: block;
    transform: translate(0%, 0%);
  }
}
@media (min-width: 1025px) {
  .site-header .site-header__nav {
    display: flex;
    background: none !important;
    width: inherit;
    margin-left: 2rem;
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  .site-header .site-header__nav {
    margin-left: 5rem;
  }
}

@media (min-width: 1025px) {
  .site-header .nav__inner {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner .arrow {
    margin-top: 11px;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li {
    border-bottom: 1px solid white;
  }
}
@media (min-width: 1025px) {
  .site-header .nav__inner > li {
    position: relative;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #707372;
    font-weight: bold;
    font-size: 0.875rem;
  }
  .site-header .nav__inner > li > a:hover, .site-header .nav__inner > li > a:focus {
    text-decoration: none;
  }
}
@media (min-width: 1025px) {
  .site-header .nav__inner > li > a {
    display: block;
    padding: 0.5rem 1.5rem;
    line-height: 1.5rem;
    color: #707372;
    font-weight: 600;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li.menu-item-has-children > a > .arrow {
    display: block;
    width: 1.6em;
    height: 1.6em;
  }
  .site-header .nav__inner > li.menu-item-has-children > a > .arrow.active {
    transform: rotate(180deg);
  }
}
@media (min-width: 1025px) {
  .site-header .nav__inner > li.menu-item-has-children > a > .arrow {
    display: none;
  }
}

@media (min-width: 1025px) {
  .site-header .nav__inner > li.btn {
    margin-left: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li.menu-item-has-children > a > .arrow > svg {
    width: 1.6em;
    height: 1.6em;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li .sub-menu {
    display: none;
    border-top: 1px solid white;
    padding: 30px;
    background-color: #EBF6FC;
  }
  .site-header .nav__inner > li .sub-menu.active {
    display: block;
  }
}
@media (min-width: 1025px) {
  .site-header .nav__inner > li .sub-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li .sub-menu .container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li .sub-menu > .container > .content > .list > li {
    padding: 15px 0;
  }
  .site-header .nav__inner > li .sub-menu > .container > .content > .list > li:first-of-type {
    padding-top: 0;
  }
  .site-header .nav__inner > li .sub-menu > .container > .content > .list > li:last-of-type {
    padding-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li .sub-menu li.feature {
    border-bottom: 1px solid #E3E3E3;
  }
}

@media (max-width: 1024px) {
  .site-header .nav__inner > li .sub-menu li a {
    display: block;
    color: #003753;
    font-weight: bold;
    font-size: 0.875rem;
  }
  .site-header .nav__inner > li .sub-menu li a:hover, .site-header .nav__inner > li .sub-menu li a:focus {
    background-color: #74d0ff;
  }
}

.site-header li > a:hover {
  text-decoration: none;
}

.site-header .social-links a svg #Rectangle {
  transition: 0.15s ease-in-out;
}
.site-header .social-links a:hover svg #Rectangle {
  fill: #003753;
}

.site-header__search svg path {
  transition: 0.15s ease-in-out;
}
.site-header__search svg:hover path {
  fill: #003753;
}

.site-header .menu-item-has-children {
  position: relative;
}

.site-header .site-header__logo-wrapper .logo-desktop {
  display: none;
}
.site-header .site-header__logo-wrapper .logo-mobile {
  display: block;
}
@media (min-width: 1025px) {
  .site-header .site-header__logo-wrapper .logo-desktop {
    display: block;
  }
  .site-header .site-header__logo-wrapper .logo-mobile {
    display: none;
  }
}

.site-header .site-header__logo-wrapper img {
  width: 200px;
}
@media (min-width: 1025px) {
  .site-header .site-header__logo-wrapper img {
    width: 250px;
  }
}

.site-header .top-navigation {
  display: none;
}
@media (min-width: 1025px) {
  .site-header .top-navigation {
    display: block;
  }
}

.site-header .header-banner {
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #EBF6FC;
  color: #707372;
  line-height: 1rem;
  font-size: 0.75rem;
}
@media (min-width: 1025px) {
  .site-header .header-banner {
    background-color: #003753;
    color: white;
  }
}

.site-header .header-banner a {
  color: #707372;
}
@media (min-width: 1025px) {
  .site-header .header-banner a {
    color: white;
  }
}

.nav--mobile {
  display: none;
}
@media (min-width: 1024px) {
  .nav--mobile {
    display: none;
  }
}

.nav--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .nav--desktop {
    display: none;
  }
}

.site-header .nav__inner .arrow--nav {
  position: absolute;
  margin: 0 auto;
  cursor: pointer;
  background-color: #0091da;
  width: 20px;
  height: 2px;
  margin-top: 8px;
  margin-left: 6px;
  transition: 0.15s ease-in-out;
}
.site-header .nav__inner .arrow--nav:before, .site-header .nav__inner .arrow--nav:after {
  background-color: #0091da;
  width: 10px;
  right: 0;
  content: "";
  position: absolute;
  height: 2px;
}
.site-header .nav__inner .arrow--nav:before {
  right: -4px;
  bottom: -3px;
  transform: rotate(-45deg);
}
.site-header .nav__inner .arrow--nav:after {
  right: -4px;
  top: -3px;
  transform: rotate(45deg);
}

.site-header .nav__inner .sub-menu__arrow {
  width: 25px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .site-header .nav__inner .sub-menu__arrow {
    display: none;
  }
}

.parent-menu__item {
  position: relative;
}

.excerpt__content {
  display: none;
}
@media (min-width: 1024px) {
  .excerpt__content {
    display: block;
  }
}

/*
  Modern header
*/
@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav {
    max-width: none;
    padding: 0;
    transform: translate(100%, 0%);
    background-color: #0091da;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav.nav-open {
    transform: translate(0%, 0%);
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .nav__inner {
    position: relative;
    z-index: 10;
    height: calc(100% - 4.5rem);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .nav__inner > li {
    display: flex;
    flex: 2 0 auto;
    border-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .nav__inner > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    border: 0;
    font-size: 2rem;
    line-height: 1em;
    text-align: center;
  }
  .site-header.m-modern .nav__inner > li > a:hover, .site-header.m-modern .nav__inner > li > a:focus {
    color: #003753;
    background-color: white;
    text-decoration: none;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .nav__inner > li.menu-item-has-children > a > .arrow {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__social-links:not(.d-modern) {
    display: flex;
    width: 100%;
    height: 4.5rem;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__social-links:not(.d-modern) ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__social-links:not(.d-modern) ul li {
    margin: 0 0.5rem;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__social-links:not(.d-modern) ul li a {
    display: block;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__social-links:not(.d-modern) ul li a svg {
    display: block;
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav-toggle-line:nth-child(1) {
    top: 20%;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav-toggle-line:nth-child(3) {
    top: 80%;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav-toggle.active .site-header__nav-toggle-line:nth-of-type(1) {
    top: 50%;
    margin-top: -2px;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav-toggle.active .site-header__nav-toggle-line:nth-of-type(2) {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .site-header.m-modern .site-header__nav-toggle.active .site-header__nav-toggle-line:nth-of-type(3) {
    top: 50%;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .site-header__nav {
    background: white !important;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner > li .sub-menu {
    border: none;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner > li {
    border-color: #E3E3E3;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner li a {
    color: #707372;
    font-family: "Gotham", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner li a .arrow polyline {
    stroke: #003753;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner > li {
    color: #707372;
    font-family: "Gotham", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner > li .parent-menu__item {
    padding: 20px 30px;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner li.feature .featured-post p {
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .site-header.m-traditional .nav__inner li.feature .featured-post a {
    padding-top: 0.35rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner {
    align-items: center;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner .sub-menu {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    display: none;
    width: 220px;
    max-height: calc(100vh - 4.5rem);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #E3E3E3;
    text-align: center;
    overflow: auto;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner .sub-menu li a {
    padding: 0.5rem 1rem;
    color: #003753;
    line-height: 1.35rem;
  }
  .site-header.d-traditional .nav__inner .sub-menu li a:hover, .site-header.d-traditional .nav__inner .sub-menu li a:focus {
    text-decoration: none;
    background-color: #929292;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner > li > a {
    white-space: nowrap;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner > li:not(.btn) > a {
    padding: 1.5rem;
    position: relative;
  }
  .site-header.d-traditional .nav__inner > li:not(.btn) > a:after {
    content: "";
    display: block;
    width: 0%;
    height: 0.5rem;
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0091da;
    will-change: width;
    transition: width 256ms ease-out;
  }
  .site-header.d-traditional .nav__inner > li:not(.btn) > a:hover, .site-header.d-traditional .nav__inner > li:not(.btn) > a:focus {
    text-decoration: none;
  }
  .site-header.d-traditional .nav__inner > li:not(.btn) > a:hover:after, .site-header.d-traditional .nav__inner > li:not(.btn) > a:focus:after {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner > li:hover .sub-menu,
  .site-header.d-traditional .nav__inner > li a:hover + .sub-menu {
    display: block;
  }
}

@media (min-width: 1025px) {
  .site-header.d-traditional .nav__inner > li:last-of-type .sub-menu {
    right: 0;
    transform: translateX(0);
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .nav__inner {
    display: none;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav {
    position: fixed;
    z-index: 0;
    top: 4.5rem;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: none;
    height: calc(100vh - 4.5rem);
    border-top: 1px solid white;
    color: #003753;
    background-color: #003753 !important;
    overflow: auto;
    transform: translate(100%, 0%);
    transition: transform 400ms ease-in-out;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav.nav-open {
    transform: translate(0%, 0%);
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .nav__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .nav__inner > li {
    display: flex;
    flex: 0 0 auto;
    margin: 1rem 0;
    border-bottom: 0;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .nav__inner > li.btn {
    margin-left: 0;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .nav__inner > li:not(.btn) {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .nav__inner > li > a {
    font-size: 2rem;
    line-height: 1em;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__social-links {
    display: none;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__social-links.d-modern {
    display: flex;
    height: 4.5rem;
    margin: 0 3rem 0 auto;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__social-links.d-modern ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__social-links.d-modern ul li {
    margin: 0 0.5rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__social-links.d-modern ul li a {
    display: block;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__social-links.d-modern ul li a svg {
    display: block;
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav-toggle-line:nth-child(1) {
    top: 20%;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav-toggle-line:nth-child(3) {
    top: 80%;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav-toggle.active .site-header__nav-toggle-line:nth-of-type(1) {
    top: 50%;
    margin-top: -2px;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav-toggle.active .site-header__nav-toggle-line:nth-of-type(2) {
    opacity: 0;
  }
}

@media (min-width: 1025px) {
  .site-header.d-modern .site-header__nav-toggle.active .site-header__nav-toggle-line:nth-of-type(3) {
    top: 50%;
  }
}

@media (min-width: 1025px) {
  body {
    margin-top: 165px;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__top-wrapper {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__top-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: #0091da !important;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search {
    display: flex;
    margin: 0 1.25rem 0 0;
    padding: 0 1.25rem 0 0;
    border-right: 1px solid rgba(112, 115, 114, 0.25);
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search input[type=search] {
    margin: 0 10px 0 0;
    padding: 0.3em;
    border: 0;
    border-radius: 0;
    font-size: inherit;
    line-height: 1.5em;
    color: #0091da;
    background-color: #ffffff;
    appearance: textfield;
    display: none;
  }
  .site-header.d-full .site-header__search input[type=search].shown {
    display: block;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search input[type=search]::placeholder {
    color: transparent;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search input[type=search].shown {
    box-shadow: inset 0 -2px 0 0 white;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search input[type=search].shown::placeholder {
    color: white;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search button {
    color: white;
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: inherit;
    transition: font-size 114ms ease-out;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__search button svg {
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: middle;
    cursor: pointer;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__top {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__top > li:not(.btn) > a {
    display: block;
    padding: 1rem 1.5rem;
    line-height: 1.5rem;
    white-space: nowrap;
    color: #0091da;
    font-weight: 600;
    position: relative;
    font-size: 0.875rem;
  }
  .site-header.d-full .nav__top > li:not(.btn) > a:hover, .site-header.d-full .nav__top > li:not(.btn) > a:focus {
    color: #003753;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__top li.btn {
    margin-left: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .divider {
    display: block;
    margin: 0;
    border-top: 1px solid white;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .site-header__wrapper {
    position: static;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner {
    align-items: center;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner > li > a {
    white-space: nowrap;
  }
}

.site-header.d-full .nav__inner > li {
  font-size: 0.9375rem;
}
@media (min-width: 1025px) {
  .site-header.d-full .nav__inner > li {
    padding: 20px 10px;
    position: static;
    padding: 20px;
    font-weight: 700;
    color: #707372;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .site-header.d-full .nav__inner > li {
    padding: 20px 30px;
  }
}

.site-header.d-full .nav__inner .sub-menu li a,
.site-header.d-full .nav__inner .sub-menu li span {
  color: #0091da;
  font-size: 14px;
  transition: 0.15s ease-in-out;
}
.site-header.d-full .nav__inner .sub-menu li a:hover,
.site-header.d-full .nav__inner .sub-menu li span:hover {
  color: #003753;
  text-decoration: none;
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner > li:not(.btn) > a {
    padding: 1.5rem;
    position: relative;
  }
  .site-header.d-full .nav__inner > li:not(.btn) > a:hover, .site-header.d-full .nav__inner > li:not(.btn) > a:focus {
    text-decoration: none;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner > li:hover .sub-menu,
  .site-header.d-full .nav__inner > li a:hover + .sub-menu {
    left: 0px;
    opacity: 1;
    transition-delay: 150ms;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner > li:last-of-type .sub-menu {
    right: 0;
    transform: translateX(0);
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu {
    position: absolute;
    top: 100%;
    left: 999999px;
    display: block;
    width: 100vw;
    max-height: calc(100vh - (8rem + 1px));
    padding: 0;
    border-top: 1px solid white;
    background-color: #EBF6FC;
    opacity: 0;
    transition: left 0ms linear 150ms, opacity 114ms ease-out 150ms;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu hr {
    margin: 0.875rem 0;
    border-top: 1px solid white;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .content {
    flex: 1 0 100%;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu > .container > .content > .list {
    display: flex;
    flex-wrap: wrap;
    line-height: 1rem;
    justify-content: space-between;
    flex: 0 1 auto;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu > .container > .content > .list > li {
    padding: 2.5rem 0;
  }
}

.site-header.d-full .nav__inner .sub-menu__column {
  padding-top: 0.35rem;
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu > .container > .content > .list .sub-menu__column .content .list {
    display: block;
    line-height: 1rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu > .container > .content > .list .sub-menu__column .content .list li:nth-child(even) {
    padding-left: 0;
  }
}

.site-header.d-full .nav__inner .sub-menu .list .menu-item-has-children .menu-column__title {
  color: #003753;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .content .list li {
    flex: 1 1 20%;
    margin-top: 0.35rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .content .list li.feature {
    flex: 0 0 25%;
    margin-top: 0.35rem;
    border-right: 1px solid #E3E3E3;
    padding-right: 3.5rem;
    margin-right: 3.5rem;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .content .list li a {
    display: block;
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .featured-post {
    flex: 0 1 25%;
  }
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .featured-post a {
    padding: 0;
  }
}

.site-header.d-full .menu-item {
  color: black;
}

/* Sub Menu & Feature Styles */
.feature .featured-post {
  margin-left: 0;
}

.feature h5 {
  color: #003753;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

.feature .excerpt {
  margin-top: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
  font-size: 14px;
}

.feature .excerpt a {
  text-decoration: none;
  margin-top: 1.25rem;
  font-weight: 700;
}

.menu-category {
  min-width: 200px;
  max-width: 270px;
}

.search-input--hidden {
  display: none;
}

@media (min-width: 1025px) {
  .site-header.d-full .nav__inner .sub-menu .container .content .list li > span {
    line-height: 24px;
  }
}

.footer__logo a {
  text-decoration: none;
}

footer {
  background: #003753;
  color: white;
  z-index: 0;
  position: relative;
}

footer a {
  color: white;
}

footer p {
  margin: 0;
}

footer .social-fill {
  fill: #003753;
}

footer .site-footer__logo svg {
  width: 200px;
  height: 35.52px;
}

footer .site-footer__logo img {
  width: 200px;
}
@media (max-width: 768px) {
  footer .site-footer__logo img {
    margin: 0 auto;
  }
}

footer .site-footer__nav {
  margin: 1rem 0;
}
@media (min-width: 992px) {
  footer .site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0.5rem;
  }
}

footer .site-footer__nav li {
  margin: 0.1rem 0;
}
@media (min-width: 992px) {
  footer .site-footer__nav li {
    flex: 0 0 50%;
  }
}

footer .social-links {
  display: flex;
  justify-content: center;
}

footer .social-links li {
  margin: 0.25rem;
}

/*********************************************************
  Standard Connect Footer
*********************************************************/
.site-footer__connect {
  padding: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer__connect {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container {
    display: flex;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container .left.main {
    flex: 0 0 65%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container .right.main {
    flex: 0 0 35%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container > .left {
    display: flex;
    flex: 0 0 60%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container > .left > .left {
    flex: 0 0 43%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container > .left > .right {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container > .right {
    flex: 0 0 40%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container .left.bottom {
    flex: 0 0 70%;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .container .right.bottom {
    flex: 0 0 30%;
  }
}

.site-footer__connect .site-footer__logo svg {
  width: 200px;
  height: 35.52px;
}

@media (min-width: 992px) {
  .site-footer__connect .site-footer__nav {
    display: inherit;
    text-align: right;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .site-footer__nav li {
    margin-left: 0.5rem;
    display: inline-block;
  }
}

.site-footer__connect .social-links {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .site-footer__connect .social-links {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .site-footer__connect .social-links li {
    margin: 0 0.5rem 0 0;
  }
}

.site-footer__connect .gform_body {
  width: 60%;
  margin: 0;
  display: inline-block;
}

.site-footer__connect .gform_footer.top_label {
  width: 30%;
  display: inline-block;
}

.site-footer__connect .gform_button {
  background-color: #0091da;
  padding: 0.5rem 1.125rem;
  border: 1px solid #0091da;
}

.site-footer__connect input[type=email],
.site-footer__connect input[type=number],
.site-footer__connect input[type=password],
.site-footer__connect input[type=search],
.site-footer__connect input[type=tel],
.site-footer__connect input[type=text],
.site-footer__connect input[type=url],
.site-footer__connect textarea,
.site-footer__connect select {
  padding: 0.5rem 1.125rem;
}

@media (min-width: 1025px) {
  .site-footer__connect .site-header__logo svg {
    width: 300px;
    height: 53.28px;
  }
}

body .gform_legacy_markup_wrapper div.validation_error {
  background-color: #fff;
}

body .gform_legacy_markup_wrapper li.gfield.gfield_error {
  background-color: transparent !important;
  border: none !important;
  margin-bottom: 0 !important;
}

body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 0 !important;
}

body .gform_legacy_markup_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  display: none !important;
}

footer .gform_ajax_spinner {
  display: none !important;
}

/*********************************************************
  Standard Expanded Footer
*********************************************************/
.site-footer__expanded {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.footer__menu-title {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 1rem;
}

.site-footer__expanded .footer__contact-block {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer__expanded .footer__logo {
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer__expanded .footer__logo {
    flex: 0 0 30%;
    justify-content: flex-start;
  }
}
@media (min-width: 920px) {
  .site-footer__expanded .footer__logo {
    display: flex;
    flex: 0 0 50%;
  }
}

.site-footer__expanded .footer__contact-info {
  display: flex;
  flex: 0 0 100%;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .site-footer__expanded .footer__contact-info {
    display: flex;
    flex: 0 0 70%;
  }
}
@media (min-width: 920px) {
  .site-footer__expanded .footer__contact-info {
    display: flex;
    flex: 0 0 50%;
  }
}

.site-footer__expanded .footer__contact-info > div {
  display: flex;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer__expanded .footer__contact-info > div {
    display: flex;
    flex: 0 0 33%;
    align-items: flex-start;
  }
}
@media (min-width: 920px) {
  .site-footer__expanded .footer__contact-info > div {
    display: flex;
    flex: 0 0 33%;
    align-items: flex-start;
  }
}

.site-footer__expanded .footer__copyright {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .site-footer__expanded .footer__copyright {
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

.site-footer__expanded .footer__copyright p {
  margin: 0;
}

.site-footer__expanded .footer__privacy-section li {
  display: inline;
  margin-left: 2px;
  margin-right: 2px;
}
@media (min-width: 920px) {
  .site-footer__expanded .footer__privacy-section li {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.site-footer__expanded .footer__pivacy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .site-footer__expanded .footer__pivacy {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-footer__expanded .footer__block-sec {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .site-footer__expanded .footer__block-sec {
    margin-bottom: 2.5rem;
  }
}

.site-footer__expanded .social-links {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .site-footer__expanded .social-links {
    justify-content: flex-start;
  }
}

.site-footer__expanded .social-links li {
  margin: 0.25rem 0.25rem 0.25rem 0;
}

.social-links-white svg * {
  fill: white !important;
}

.footer__menu-item {
  font-size: 0.8125rem;
  font-weight: 600;
}

footer .social-links-white a svg #Rectangle {
  transition: 0.15s ease-in-out;
}
footer .social-links-white a:hover svg #Rectangle {
  fill: #0091da !important;
}

footer a.btn--arrow {
  font-size: 0.8125rem;
}

footer a.btn--arrow .arrow {
  width: 12px;
  margin-top: 8px;
  margin-left: 6px;
}

footer a.btn--arrow .arrow:before,
footer a.btn--arrow .arrow:after {
  height: 2px;
  width: 8px;
}

footer a.btn--arrow .arrow:before {
  right: -2px;
  bottom: -2px;
}

footer a.btn--arrow .arrow:after {
  right: -2px;
  top: -2px;
}

.footer__logo img {
  max-width: 220px;
}

.footer-separator {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

footer .social-links-white {
  max-width: 170px;
  justify-content: space-between;
}

.footer-form .gform_wrapper form {
  background: white;
  padding: 0.25rem;
  display: flex;
  border-radius: 9999px;
}

.footer-form .gform_wrapper .gform_footer {
  padding: 0;
  margin: 0;
  width: auto;
}

.footer-form .gform_wrapper ul.gform_fields li.gfield {
  padding: 0;
  margin: 0;
}

.footer-form .gform_wrapper .top_label div.ginput_container {
  margin-top: 0;
}

.footer-form .gform_wrapper li.hidden_label input {
  margin-top: 0;
}

.footer-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 1rem 1.125rem;
  border: none;
  background: transparent;
}

.footer-form .gform_button {
  width: 8rem;
  height: 100%;
}

.footer-form .gform_wrapper .gform_body {
  width: 100%;
}

/*********************************************************
  Standard Basic Footer
*********************************************************/
.site-footer__basic {
  padding: 2.5rem 0 2.5rem 0;
  text-align: center;
}

.site-footer__basic .site-footer__logo img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.site-footer__basic .site-footer__nav {
  margin: 0.5rem 0;
}

.site-footer__basic .site-footer__nav li {
  display: inline-block;
  margin: 0.1rem 0.5rem;
}
@media (min-width: 920px) {
  .site-footer__basic .site-footer__nav li {
    margin: 0.1rem 2rem;
  }
}

.site-footer__basic .social-links {
  margin-bottom: 0.5rem;
}

.site-footer__basic .social-links svg {
  width: 26px;
}

/*********************************************************
  Standard Contact Footer
*********************************************************/
.site-footer__contact {
  padding: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer__contact {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container {
    display: flex;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container .left.main {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container .right.main {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container > .left {
    display: flex;
    flex: 0 0 60%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container > .left > .left {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container > .left > .right {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container > .right {
    display: flex;
    flex: 0 0 60%;
    flex: 0 0 40%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container > .right > .left {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container > .right > .right {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container .left.bottom {
    flex: 0 0 70%;
  }
}
@media (min-width: 920px) {
  .site-footer__contact .container .left.bottom {
    margin-top: 3rem;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .container .right.bottom {
    flex: 0 0 30%;
  }
}
@media (min-width: 920px) {
  .site-footer__contact .container .right.bottom {
    text-align: right;
    justify-content: flex-end;
    margin-top: 3rem;
  }
}

.site-footer__contact .site-footer__nav {
  margin: 0;
}
@media (min-width: 992px) {
  .site-footer__contact .site-footer__nav {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .site-footer__nav li {
    margin-left: 0.5rem;
    display: inline-block;
  }
}

.site-footer__contact .social-links {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .site-footer__contact .social-links {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .site-footer__contact .social-links li {
    margin: 0 0.5rem 0 0;
  }
}

@media (max-width: 768px) {
  .site-footer__contact .left {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .site-footer__contact .copyright {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .site-footer__contact .copyright .left {
    order: 1;
  }
}

@media (max-width: 768px) {
  .site-footer__contact .copyright .right {
    order: 0;
  }
}

@media (min-width: 1025px) {
  .site-footer__contact .site-header__logo svg {
    width: 300px;
    height: 53.28px;
  }
}

/*********************************************************
  Standard Highlights Footer
*********************************************************/
.site-footer__highlights {
  padding: 4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer__highlights {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container {
    display: flex;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container .left.main {
    flex: 0 0 65%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container .right.main {
    flex: 0 0 35%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container > .left {
    display: flex;
    flex: 0 0 60%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container > .left > .left {
    flex: 0 0 43%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container > .left > .right {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container > .right {
    flex: 0 0 40%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container .left.bottom {
    flex: 0 0 70%;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .container .right.bottom {
    flex: 0 0 30%;
  }
}

.site-footer__highlights .social-links {
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .site-footer__highlights .social-links {
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  .site-footer__highlights .social-links li {
    margin: 0 0.5rem 0 0;
  }
}

.site-footer__highlights .site-footer__logo img {
  width: 200px;
}
@media (max-width: 768px) {
  .site-footer__highlights .site-footer__logo img {
    margin: 0 auto;
  }
}

.site-footer__highlights .footer__cta-headline {
  margin-bottom: 1rem;
}

@media (min-width: 1025px) {
  .site-footer__highlights .site-header__logo svg {
    width: 300px;
    height: 53.28px;
  }
}

/*********************************************************
    Hero 
    - Template Part (template-parts/hero)
    - Component Function: 'render_hero'
    - ACF Field: 'Layout: Hero' 
*********************************************************/
/** BASE STYLES *****************************************/
.hero {
  position: relative;
  height: inherit;
  color: #ffffff;
  background: white;
  color: #ffffff;
  padding-bottom: 0;
  padding-top: 0;
}
@media (min-width: 1024px) {
  .hero {
    height: 650px;
  }
}
.hero__image {
  height: 40vh;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .hero__image {
    position: absolute;
    height: 450px;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
}

.hero__content {
  background: #003753;
  height: 100%;
  z-index: 0;
  text-align: left;
  position: relative;
  left: 0;
  color: #ffffff;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero__content {
    margin: 0 auto;
    max-width: 65%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}

.hero__content-container {
  text-align: left;
  padding: 4rem 4rem 4rem 3rem;
}
@media (min-width: 1024px) {
  .hero__content-container {
    max-width: 550px;
    margin-left: 3.5rem;
    padding: 6.25rem 0 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .hero__content-container {
    margin-left: 7.5rem;
  }
}
@media (min-width: 1500px) {
  .hero__content-container {
    margin-left: 15rem;
  }
}

.hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__subtitle {
  margin-bottom: 1rem;
  text-align: left;
  line-height: 1.75rem;
  font-size: 1rem;
  margin-top: 0.9375rem;
}
@media (min-width: 1024px) {
  .hero__subtitle {
    margin-top: 1.5625rem;
  }
}

.hero__btn-container {
  margin-top: 1.5625rem;
}
@media (min-width: 768px) {
  .hero__btn-container {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__btn-container {
    margin-top: 2.5rem;
  }
}

.hero--has-accent {
  z-index: 0;
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .hero--has-accent .hero__content-container {
    padding-top: 5rem;
  }
}
@media (min-width: 1024px) {
  .hero--has-accent .hero__content {
    top: 0;
    transform: none;
    max-height: 600px;
  }
  .hero--has-accent .hero__accent {
    width: 250px;
    height: 250px;
    position: absolute;
    bottom: 0;
    background-size: cover;
  }
}

.hero--left .hero__content {
  margin: 0 0 0 auto;
}
.hero--left .hero__image {
  left: 0;
}
.hero--left .hero__content-container {
  text-align: left;
}
@media (min-width: 1024px) {
  .hero--left .hero__content-container {
    margin-left: 12.5rem;
  }
}
@media (min-width: 1200px) {
  .hero--left .hero__image {
    width: calc(50% - 50px);
  }
  .hero--left .hero__content-container {
    margin-left: 14rem;
  }
}
@media (min-width: 1500px) {
  .hero--left .hero__content-container {
    margin-left: 17rem;
  }
}

.hero--right .hero__content {
  margin: 0;
}
.hero--right .hero__image {
  right: 0;
}

/** INTERIOR: ALIGNED STYLES ****************************/
@media (min-width: 1024px) {
  .hero--aligned.hero--has-accent {
    height: 700px;
  }
  .hero--aligned.hero--has-accent .hero__image {
    top: calc(50% - 50px);
    max-height: 425px;
  }
}
.hero--aligned.hero--left .hero__accent {
  left: 10%;
}
.hero--aligned.hero--right .hero__accent {
  right: 10%;
}

/** INTERIOR: OFFSET STYLES *****************************/
@media (min-width: 1024px) {
  .hero--offset.hero--has-accent {
    height: 800px;
  }
}
@media (min-width: 1024px) {
  .hero--offset .hero__content-container {
    max-width: 550px;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .hero--offset .hero__content-container {
    margin-left: 7.5rem;
  }
}
@media (min-width: 1500px) {
  .hero--offset .hero__content-container {
    margin-left: 15rem;
  }
}
@media (min-width: 1024px) {
  .hero--offset .hero__subtitle {
    margin-right: 5rem;
  }
}
.hero--offset .hero__image {
  height: 40vh;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero--offset .hero__image {
    height: 600px;
    width: 45%;
  }
}
.hero--offset.hero--right .hero__accent {
  left: 10%;
}
.hero--offset.hero--left .hero__accent {
  right: 10%;
}

/** HOME PAGE STYLES ************************************/
.hero--home {
  position: relative;
  height: inherit;
  background: white;
  color: #ffffff;
  padding-bottom: 0;
  padding-top: 0;
}
@media (min-width: 1024px) {
  .hero--home {
    height: calc(100vh - 225px);
    min-height: 600px;
  }
}

.hero--home .container {
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .hero--home .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.hero__image--mobile {
  background-size: cover;
  height: 40vh;
  width: 100%;
  background-position: center center;
}
@media (min-width: 1024px) {
  .hero__image--mobile {
    display: none;
  }
}

.hero-home--background {
  background-size: cover;
  background-position: center;
  height: auto;
}
@media (max-width: 1023px) {
  .hero-home--background {
    background-image: none !important;
  }
}
@media (min-width: 1024px) {
  .hero-home--background {
    height: calc(100vh - 225px);
    min-height: 600px;
  }
}

.hero--home .hero__content {
  padding: 4rem 4rem 4rem 3rem;
  background: rgba(0, 54, 82, 0.8);
  height: auto;
  top: 0;
  transform: none;
  left: 0;
  margin: 0;
  max-width: 100%;
  text-align: left;
}
@media (min-width: 1024px) {
  .hero--home .hero__content {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 40%;
    height: 500px;
  }
}

.hero--home .hero__content h1 {
  font-size: 2.625rem;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 768px) {
  .hero--home .hero__content h1 {
    font-size: 3.375rem;
  }
}
@media (min-width: 1024px) {
  .hero--home .hero__content h1 {
    font-size: 4rem;
    padding-top: 4rem;
    padding-left: 3rem;
    padding-right: 5rem;
  }
}

.hero--home .hero__content .hero__subtitle {
  text-align: left;
  line-height: 1.75rem;
  font-size: 1rem;
  margin-top: 0.9375rem;
}
@media (min-width: 1024px) {
  .hero--home .hero__content .hero__subtitle {
    font-size: 1rem;
    margin-top: 1.5625rem;
    padding-left: 3rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero--home .hero__content .hero__btn-container {
    padding-left: 3rem;
    padding-right: 4rem;
  }
}

.hero-backdrop {
  background-color: #E3E3E3;
  height: 200px;
  position: absolute;
  width: 100%;
  top: 500px;
  bottom: 0;
  z-index: 0;
}

/** GROWTHZONE STYLES ***********************************/
.hero--growthzone {
  position: relative;
  height: inherit;
}
@media (min-width: 1024px) {
  .hero--growthzone {
    height: 225px;
  }
}

.hero--growthzone .hero__content {
  position: relative;
  z-index: 0;
}
@media (min-width: 1024px) {
  .hero--growthzone .hero__content {
    max-width: 1200px;
    max-height: 225px;
  }
}

.hero--growthzone .hero__content .container {
  height: 100%;
  z-index: 1;
  background: #003753;
}
@media (min-width: 1024px) {
  .hero--growthzone .hero__content .container {
    position: absolute;
  }
}

.hero--growthzone .hero__content .hero__title {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .hero--growthzone .hero__content .hero__title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 3.75rem;
    padding-right: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero--growthzone .hero__accent {
  z-index: -1;
  position: absolute;
  background-size: cover;
  width: 200px;
  height: 180px;
  right: 0;
  bottom: -150px;
}
@media (min-width: 600px) {
  .hero--growthzone .hero__accent {
    width: 185px;
  }
}
@media (min-width: 768px) {
  .hero--growthzone .hero__accent {
    width: 215px;
    height: 200px;
    right: 30px;
    bottom: -175px;
  }
}
@media (min-width: 920px) {
  .hero--growthzone .hero__accent {
    right: 50px;
  }
}
@media (min-width: 1024px) {
  .hero--growthzone .hero__accent {
    width: 275px;
    height: 275px;
    right: 100px;
    bottom: -225px;
  }
}

/** BLOG STYLES *****************************************/
.hero--posts {
  height: inherit;
}

@media (max-width: 1023px) {
  .hero--posts .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.hero--posts .hero__content {
  padding: 40px;
  transform: none;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero--posts .hero__content {
    padding: 2.5rem 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero--posts .hero__content {
    padding: 5rem 6.25rem 4.375rem;
  }
}

.hero--posts .hero__subtitle {
  max-width: 380px;
  border-top: 1px solid white;
  padding-top: 30px;
  margin-left: auto;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .hero--posts .hero__subtitle {
    max-width: 100%;
    flex: 0 1 60%;
    margin-top: 0;
    margin-left: 0;
  }
}
@media (min-width: 920px) {
  .hero--posts .hero__subtitle {
    flex: 0 1 50%;
  }
}
@media (min-width: 1024px) {
  .hero--posts .hero__subtitle {
    flex: 0 1 45%;
  }
}
@media (min-width: 1200px) {
  .hero--posts .hero__subtitle {
    flex: 0 1 40%;
  }
}

@media (min-width: 768px) {
  .hero--posts .hero__content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/** NEWS SINGLE STYLES **********************************/
.hero--news {
  height: inherit;
}

.hero--news .hero__content {
  padding: 40px 0;
  transform: none;
  max-width: 100%;
  background: white;
  color: #003753;
  border-top: 1px solid #E3E3E3;
}
@media (min-width: 768px) {
  .hero--news .hero__content {
    padding: 2.5rem 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero--news .hero__content {
    padding: 5rem 6.25rem 0;
  }
}

.hero--news .hero__taxonomy {
  color: #0091da;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 0.625rem;
}
@media (min-width: 768px) {
  .hero--news .hero__taxonomy {
    margin-top: 1.25rem;
  }
}

.hero__taxonomy--link {
  color: #0091da;
}

.hero__taxonomy--link:last-of-type > .seperator {
  display: none;
}

.hero--news .hero-meta__container {
  font-size: 1.125rem;
  border-bottom: 2px solid #003753;
  padding-bottom: 1.5625rem;
  margin-top: 2.5rem;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .hero--news .hero-meta__container {
    display: flex;
    margin-top: 7.5rem;
    padding-bottom: 1.875rem;
  }
}

.hero--news .article-meta {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .hero--news .article-meta {
    flex: 0 1 50%;
  }
}

.hero--news .article-author {
  flex: 0 1 50%;
}

.hero--news .article-date {
  flex: 0 1 50%;
}

.hero--news .article-sharing {
  margin-top: 0.625rem;
}
@media (min-width: 768px) {
  .hero--news .article-sharing {
    margin-top: 0;
    flex: 0 1 50%;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .hero--news .article-sharing .share-links {
    justify-content: flex-end;
  }
}

/*********************************************************
    Featured Post Hero 
    - Used in Posts Browser Template
    - Template Part (template-parts/hero-featured-post)
*********************************************************/
.featured-post {
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .featured-post {
    max-width: 100%;
  }
}

.featured-post__image {
  min-height: 300px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .featured-post__image {
    min-height: 450px;
  }
}

.featured-post__image a {
  width: 100%;
  height: 100%;
  position: absolute;
}
@media (min-width: 768px) {
  .featured-post__image a {
    padding-right: 4rem;
  }
}
@media (min-width: 1200px) {
  .featured-post__image a {
    padding-right: 6rem;
  }
}

.featured-post .feature-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

.featured-post__content {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 0;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .featured-post__content {
    padding: 3.75rem 0;
  }
}

.featured-post__label {
  color: #0091da;
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.featured-post__subheader {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.featured-post__content .btn {
  display: inline-block;
  max-width: fit-content;
}

.featured-post__content a:hover, .featured-post__content a:active {
  color: #003753;
}
.featured-post__content a.btn:hover, .featured-post__content a.btn:active {
  color: white;
}

/*********************************************************
    Alternating Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_image_content'
    - ACF Field: 'Component: Alternating Image/Content' 
*********************************************************/
.alt-content {
  position: relative;
  text-align: center;
}

.alt-content .sections li {
  position: relative;
  max-width: 400px;
}
@media (min-width: 768px) {
  .alt-content .sections li {
    max-width: 480px;
  }
}
@media (min-width: 920px) {
  .alt-content .sections li {
    max-width: none;
  }
}

/*-- Section Padding --*/
.alt-content .sections li {
  margin: 5rem auto;
}
@media (min-width: 920px) {
  .alt-content .sections li {
    margin: 7rem auto;
  }
}

.alt-content .sections li.section-padding__top--extended {
  margin-top: 7.5rem;
}
@media (min-width: 920px) {
  .alt-content .sections li.section-padding__top--extended {
    margin-top: 10.5rem;
  }
}

.alt-content .sections li.section-padding__bottom--extended {
  margin-bottom: 7.5rem;
}
@media (min-width: 920px) {
  .alt-content .sections li.section-padding__bottom--extended {
    margin-bottom: 10.5rem;
  }
}

.alt-content .sections li.section-padding__top--none {
  margin-top: 0;
}
@media (min-width: 920px) {
  .alt-content .sections li.section-padding__top--none {
    margin-top: 0;
  }
}

.alt-content .sections li.section-padding__bottom--none {
  margin-bottom: 0;
}
@media (min-width: 920px) {
  .alt-content .sections li.section-padding__bottom--none {
    margin-bottom: 0;
  }
}

.alt-content .sections li:nth-child(even) .content {
  padding-top: 2rem;
}
@media (min-width: 920px) {
  .alt-content .sections li:nth-child(even) .content {
    padding-top: 0;
    order: -1;
    padding-right: 3rem;
    padding-left: 0;
  }
}

.alt-content .sections li:nth-child(odd) .content {
  padding-top: 2rem;
}
@media (min-width: 920px) {
  .alt-content .sections li:nth-child(odd) .content {
    padding-top: 0;
    padding-left: 3rem;
    padding-right: 0;
  }
}

@media (min-width: 920px) {
  .alt-content .sections li > div {
    display: flex;
  }
}

.alt-content .sections li > div .image-container {
  position: relative;
}
@media (min-width: 920px) {
  .alt-content .sections li > div .image-container {
    flex: 0 0 50%;
  }
}

.alt-content .sections li .content {
  text-align: left;
}

@media (min-width: 920px) {
  .alt-content .sections li .content > div {
    margin: 0 3rem 0 2rem;
  }
}

.alt-content .sections li .content .btn {
  margin: 2.5rem 0 0;
}

.alt-content .sections li .content .format-content .btn {
  margin-top: 0;
}

.alt-content .format-content ul li,
.alt-content .format-content ol li {
  padding-bottom: 0.5rem;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .alt-content .alt-content__link {
    padding-left: 1rem;
  }
}

.alt-content .alt-content__heading {
  margin: 0;
}
@media (min-width: 920px) {
  .alt-content .alt-content__heading {
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .alt-content .content {
    margin-top: 2.5rem;
  }
}
@media (min-width: 920px) {
  .alt-content .content {
    margin-top: 1rem;
  }
}

.alt-content .format-content p {
  margin-top: 1.5rem;
}
@media (min-width: 920px) {
  .alt-content .format-content p {
    margin-top: 2rem;
    padding-left: 1rem;
  }
}
@media (min-width: 1024px) {
  .alt-content .format-content p {
    padding-right: 2rem;
  }
}

.alt-content__quote {
  margin-top: 0;
  height: inherit;
}
@media (min-width: 920px) {
  .alt-content__quote {
    margin-top: 1rem;
    padding-left: 1rem;
  }
}
@media (min-width: 1024px) {
  .alt-content__quote {
    padding-right: 2rem;
  }
}

.alt-content__quote svg {
  width: 70px;
  margin-left: -15px;
}

.alt-content__quote .quote {
  margin-top: 0;
}

.alt-content .image {
  position: relative;
  max-width: 480px;
}

.alt-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  cursor: pointer;
}
.alt-video__play:before, .alt-video__play:after {
  content: "";
  display: block;
}
.alt-video__play:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
  transform: scale(0.7);
  transition: 256ms ease-out;
  will-change: transform;
  opacity: 0.85;
}
.alt-video__play:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-left: 1.25rem solid #0091da;
  border-bottom: 0.75rem solid transparent;
}
.alt-video__play:hover:before, .alt-video__play:focus:before {
  transform: scale(0.9);
  opacity: 0.9;
}

.alt-video__play--outer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  cursor: pointer;
  background: white;
  opacity: 0.35;
}

.alt-content .heading-container {
  max-width: 400px;
  margin-bottom: 6rem;
}

.quote-author__title, .quote-author__company {
  font-weight: 400;
}

/*----- Alternating Content Styles -----*/
/*-- Media Type --*/
.alt-content__media--video .media-height__small .video-image,
.alt-content__media--video .media-height__medium .video-image,
.alt-content__media--video .media-height__large .video-image,
.alt-content__media--video .media-height__content .video-image {
  width: 100%;
  position: relative;
}
.alt-content__media--video .media-height__small .video-still,
.alt-content__media--video .media-height__medium .video-still,
.alt-content__media--video .media-height__large .video-still,
.alt-content__media--video .media-height__content .video-still {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.alt-content__media--video .media-height__small .video-still {
  height: 280px;
}
.alt-content__media--video .media-height__medium .video-still {
  height: 300px;
}
@media (min-width: 768px) {
  .alt-content__media--video .media-height__medium .video-still {
    height: 350px;
  }
}
.alt-content__media--video .media-height__large .video-still {
  height: 500px;
}
.alt-content__media--video .media-height__content .video-still {
  height: 100%;
}

.alt-content__media--image .media-height__small .image,
.alt-content__media--image .media-height__medium .image,
.alt-content__media--image .media-height__large .image,
.alt-content__media--image .media-height__content .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
}
.alt-content__media--image .media-height__small .image {
  height: 280px;
}
.alt-content__media--image .media-height__medium .image {
  height: 300px;
}
@media (min-width: 768px) {
  .alt-content__media--image .media-height__medium .image {
    height: 350px;
  }
}
.alt-content__media--image .media-height__large .image {
  height: 400px;
}
@media (min-width: 768px) {
  .alt-content__media--image .media-height__large .image {
    height: 500px;
  }
}
.alt-content__media--image .media-height__content .image {
  width: 100%;
  height: 100%;
}

/*-- Accent Colors --*/
.alt-content .image__accent--blue {
  background: rgb(235, 246, 252);
}

.alt-content .image__accent--green {
  background: rgba(100, 167, 11, 0.08);
}

.alt-content .image__accent--gray {
  background: rgb(245, 245, 245);
}

.alt-content .image {
  position: relative;
}

/*-- Section Styles --*/
@media (min-width: 920px) {
  .alt-content li.alt-content__fill-top .content,
  .alt-content li.alt-content__fill-bottom .content,
  .alt-content li.alt-content__mark .content,
  .alt-content li.alt-content__offset-top .content,
  .alt-content li.alt-content__offset-bottom .content,
  .alt-content li.alt-content__mark-accent .content {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .alt-content li.alt-content__fill-top .image,
  .alt-content li.alt-content__fill-bottom .image,
  .alt-content li.alt-content__mark .image,
  .alt-content li.alt-content__offset-top .image,
  .alt-content li.alt-content__offset-bottom .image,
  .alt-content li.alt-content__mark-accent .image {
    max-width: 480px;
  }
}
@media (min-width: 920px) and (min-width: 920px) {
  .alt-content li.alt-content__fill-top .image,
  .alt-content li.alt-content__fill-bottom .image,
  .alt-content li.alt-content__mark .image,
  .alt-content li.alt-content__offset-top .image,
  .alt-content li.alt-content__offset-bottom .image,
  .alt-content li.alt-content__mark-accent .image {
    max-width: 400px;
  }
}
@media (min-width: 920px) and (min-width: 1024px) {
  .alt-content li.alt-content__fill-top .image,
  .alt-content li.alt-content__fill-bottom .image,
  .alt-content li.alt-content__mark .image,
  .alt-content li.alt-content__offset-top .image,
  .alt-content li.alt-content__offset-bottom .image,
  .alt-content li.alt-content__mark-accent .image {
    max-width: 480px;
  }
}

@media (min-width: 920px) {
  .alt-content li.alt-content__fill-top .image {
    margin-top: 200px;
    margin-bottom: 100px;
  }
}
.alt-content li.alt-content__fill-top .content > div {
  padding-top: 100px;
}
.alt-content li.alt-content__fill-top .image__accent {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  float: right;
  opacity: 1;
}
@media (min-width: 920px) {
  .alt-content li.alt-content__fill-top .image__accent {
    left: auto;
    right: 0;
    width: calc(100% - 100px);
  }
}
.alt-content li.alt-content__fill-top.content-height .image {
  height: calc(100% - 300px);
}
.alt-content li.alt-content__fill-top.content-height .content {
  margin-bottom: 100px;
  margin-top: 200px;
}
.alt-content li.alt-content__fill-top.content-height .content > div {
  padding-top: 0;
}

@media (min-width: 920px) {
  .alt-content li.alt-content__fill-bottom .image {
    margin-bottom: 200px;
    margin-top: 100px;
  }
}
.alt-content li.alt-content__fill-bottom .content > div {
  padding-bottom: 100px;
}
.alt-content li.alt-content__fill-bottom .image__accent {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  float: right;
  right: 0;
  opacity: 1;
  width: calc(100% - 100px);
}
.alt-content li.alt-content__fill-bottom.content-height .image {
  height: calc(100% - 300px);
}
.alt-content li.alt-content__fill-bottom.content-height .content {
  margin-top: 100px;
  margin-bottom: 200px;
}
.alt-content li.alt-content__fill-bottom.content-height .content > div {
  padding-bottom: 0;
}

.alt-content li.alt-content__offset-top .image-container {
  padding-top: 100px;
}
@media (min-width: 920px) {
  .alt-content li.alt-content__offset-top .image-container {
    display: flex;
  }
}
@media (min-width: 920px) {
  .alt-content li.alt-content__offset-top .image {
    height: 100%;
  }
}
.alt-content li.alt-content__offset-top .content > div {
  padding-top: 100px;
}
.alt-content li.alt-content__offset-top .image__accent {
  display: block;
  position: absolute;
  z-index: -1;
  float: right;
  opacity: 1;
  top: 0;
  bottom: 0;
  height: 100%;
  right: 0;
  width: calc(100% - 100px);
}
.alt-content li.alt-content__offset-bottom .image__accent {
  display: block;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  position: absolute;
  top: 100px;
  left: 100px;
  z-index: -1;
  float: right;
  right: 0;
  opacity: 1;
}
@media (min-width: 920px) {
  .alt-content li.alt-content__offset-bottom .image__accent {
    right: 0;
  }
}
.alt-content li.alt-content__offset-bottom.content-height .image-container {
  padding-bottom: 100px;
}
.alt-content li.alt-content__offset-bottom.content-height .image {
  margin-bottom: 100px;
}
.alt-content li.alt-content__offset-bottom.content-height .content > div {
  padding-bottom: 100px;
}

@media (min-width: 920px) {
  .alt-content li.alt-content__mark .image-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.alt-content li.alt-content__mark .image {
  margin-bottom: 100px;
}
.alt-content li.alt-content__mark .image__accent--mark {
  display: block;
  width: 300px;
  height: 280px;
  position: absolute;
  z-index: -1;
  float: right;
  right: -45%;
  opacity: 1;
  bottom: 0;
  background-size: cover;
  background-position: center top;
}
@media (min-width: 920px) {
  .alt-content li.alt-content__mark-accent .image-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.alt-content li.alt-content__mark-accent .image {
  margin-bottom: 150px;
  margin-top: 150px;
}
.alt-content li.alt-content__mark-accent .image__accent--mark {
  display: block;
  width: 250px;
  height: 230px;
  position: absolute;
  z-index: -1;
  float: right;
  opacity: 1;
  bottom: 0;
  background-size: cover;
  background-position: center top;
}
@media (min-width: 920px) {
  .alt-content li.alt-content__mark-accent .image__accent--mark {
    left: 0;
  }
}
.alt-content li.alt-content__mark-accent .image__accent {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  float: right;
  right: calc(-50% - 50px);
  opacity: 1;
  top: 0;
  bottom: 0;
}
.alt-content li.alt-content__mark-accent.content-height .image-container {
  padding-bottom: 150px;
  padding-top: 150px;
}

/*-- Overrides for Alternating Styles --*/
@media (min-width: 920px) {
  .alt-content li:nth-child(even).alt-content__mark .image {
    float: right;
  }
}

@media (min-width: 920px) {
  .alt-content li:nth-child(odd).alt-content__mark .image-container {
    justify-content: flex-start;
  }
}
@media (min-width: 920px) {
  .alt-content li:nth-child(odd).alt-content__mark.alt-content__media--video .image__accent--mark, .alt-content li:nth-child(odd).alt-content__mark.alt-content__media--image .image__accent--mark {
    float: left;
    left: -45%;
  }
}
@media (min-width: 920px) {
  .alt-content li:nth-child(odd).alt-content__mark-accent .image__accent {
    float: left;
    left: calc(-50% - 50px);
  }
}
@media (min-width: 920px) {
  .alt-content li:nth-child(odd).alt-content__mark-accent .image-container {
    justify-content: flex-start;
  }
}
@media (min-width: 920px) {
  .alt-content li:nth-child(odd).alt-content__mark-accent .image__accent--mark {
    right: 0;
    left: auto;
  }
}

/*********************************************************
    Basic Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_basic_content'
    - ACF Field: 'Component: Basic Content' 
*********************************************************/
.basic-content {
  position: relative;
}

.basic-content .heading-container {
  margin-bottom: 1.5rem;
}

.basic-content .content {
  font-family: "Gotham", sans-serif;
}

.basic-content .heading-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .basic-content .heading-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 945px;
  }
}

.basic-content__content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .basic-content__content {
    padding-left: 0;
    padding-right: 0;
    max-width: 945px;
  }
}

.basic-content__button {
  margin-top: 2rem;
}

.basic-content__background--blue {
  height: 40%;
  width: 60%;
  background: #EBF6FC;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .basic-content__background--blue {
    height: 100%;
    width: 40%;
  }
}

/*********************************************************
    Blockquote 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_block_quote'
    - ACF Field: 'Component: Block Quote'
*********************************************************/
.block-quote {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .block-quote {
    border-left: 2px solid #0091da;
    padding-left: 40px;
  }
}

.block-quote__by {
  margin-top: 40px;
}

/*********************************************************
  Carousel 

  @NOTE: uses Slick
*********************************************************/
.carousel {
  position: relative;
  margin-bottom: 4rem;
}

.carousel__slide {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .carousel__slide {
    padding: 0;
  }
}

.slick-prev, .slick-next {
  height: 0;
  width: 0;
  visibility: hidden;
  padding: 0;
}
.slick-prev:before, .slick-next:before {
  visibility: visible;
  content: "";
  height: 60px;
  width: 40px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
@media (max-width: 768px) {
  .slick-prev:before, .slick-next:before {
    height: 30px;
    width: 20px;
  }
}

.slick-prev:before {
  left: -50px;
}
@media (max-width: 768px) {
  .slick-prev:before {
    left: -20px;
  }
}

.slick-next:before {
  right: -50px;
}
@media (max-width: 768px) {
  .slick-next:before {
    right: -20px;
  }
}

/*********************************************************
    Callout Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_callout_content'
    - ACF Field: 'Component: Callout Content'
*********************************************************/
.callout-content__block {
  padding: 2rem;
}
@media (min-width: 768px) {
  .callout-content__block {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .callout-content__block {
    padding-top: 4.25rem;
    padding-bottom: 5rem;
    margin: 0;
  }
}

.callout-content__block svg {
  margin: 0 auto;
}

.callout-content__block .callout-content {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0 auto;
  padding-top: 1rem;
}
@media (min-width: 1024px) {
  .callout-content__block .callout-content {
    padding-bottom: 1rem;
  }
}

.callout-content__text h5 {
  margin-top: 0;
}

.callout-large a {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/*********************************************************
    Card Layout
    - Posts Browser Template
    - ACF Field: 'Template: Post Browser'
*********************************************************/
.card__thumb {
  padding-bottom: 56.25%;
  background-color: gainsboro;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.card__meta {
  display: flex;
}

.card__categories {
  flex: 1 1 100%;
  margin: 1rem 1rem 0 0;
  overflow: hidden;
  white-space: nowrap;
}

.card__date {
  flex: 0 0 auto;
  margin: 1rem 0 0 0;
}

.card .btn {
  margin: 2rem 0 0 0;
}

.card a:hover, .card a:focus {
  text-decoration: none;
}
.card a:hover .card__title, .card a:focus .card__title {
  text-decoration: underline;
}

/*********************************************************
    Cards Showcase
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_cards_showcase'
    - ACF Field: 'Component: Cards Showcase'
*********************************************************/
.cards .bg-contain {
  width: 100%;
}

.cards .cards-container {
  color: white;
  text-align: center;
}

.cards .three-up li {
  cursor: default;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cards .three-up li {
    margin: 0 1rem;
  }
  .cards .three-up li:first-of-type {
    margin-left: 0;
  }
  .cards .three-up li:last-of-type {
    margin-right: 0;
  }
}

.cards .even-cards li {
  cursor: default;
  margin: 0.5rem 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cards .even-cards li {
    margin: 0.5rem;
  }
  .cards .even-cards li:nth-of-type(2n-1) {
    margin-left: 0;
  }
  .cards .even-cards li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .cards .even-cards li {
    margin: 1rem;
  }
  .cards .even-cards li:nth-of-type(2n-1) {
    margin-left: 0;
  }
  .cards .even-cards li:nth-of-type(2n) {
    margin-right: 0;
  }
}

.cards .cards-container li > .card {
  padding: 3rem;
  border-radius: 0;
  box-shadow: inset 0 0 0 99999px rgba(0, 55, 83, 0.5);
  transition: 400ms ease-out;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cards .cards-container li > .card {
    align-content: center;
    overflow: hidden;
  }
}
.cards .cards-container li > .card:hover {
  transform: scale(1.05);
}

.cards .even-cards li > .card {
  padding-bottom: 6rem;
}
@media (min-width: 992px) {
  .cards .even-cards li > .card {
    height: 315px;
    padding-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  .cards .three-up li > .card {
    height: 540px;
  }
}

.cards .cards-container li > .card hr {
  margin: 0.9375rem 0 0 0;
  border-top-width: 1.3px;
}

@media (min-width: 992px) {
  .cards .cards-container li > .card img {
    width: 8rem;
    height: 8rem;
    flex: 0 0 8rem;
  }
}

.cards .cards-container li > .card h4 {
  color: white;
  font-size: 2rem;
  text-align: left;
  line-height: 2.5rem;
  transform: none;
}

.cards .even-cards li > .card h4 {
  max-width: 275px;
}

.cards .three-up li > .card h4 {
  max-width: 200px;
}

.cards .cards-container li > .card .arrow-link__large {
  margin-top: 1.875rem;
}

.cards .even-cards li > .card .arrow-link__large {
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .cards .even-cards li > .card .arrow-link__large {
    margin-top: 1.875rem;
  }
}

.cards .cards-container li > .card .arrow {
  right: 0;
  top: 0;
  margin-top: 18px;
}

@media (min-width: 992px) {
  .cards .cards-container li > .card .content {
    max-height: 0%;
    opacity: 0;
    transition: max-height 400ms ease-out, opacity 400ms ease-out;
  }
}

@media (min-width: 992px) {
  .cards .cards-container li > .card .btn {
    justify-content: center;
  }
}

.cards .cards-container li > .card:hover,
.cards .cards-container li > .card:focus {
  box-shadow: inset 0 0 0 99999px rgba(0, 55, 83, 0.35);
  text-decoration: none;
}

.cards .cards-container li > .card:hover h4,
.cards .cards-container li > .card:focus h4 {
  text-decoration: none;
}

@media (min-width: 992px) {
  .cards .cards-container li > .card:hover .content,
  .cards .cards-container li > .card:focus .content {
    max-height: 100%;
    opacity: 1;
  }
}

.cards .cards-container li {
  display: flex;
}

.cards .three-up li {
  max-width: 400px;
  display: flex;
  height: 250px;
}
.cards .three-up li:first-of-type {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .cards .three-up li {
    height: 100%;
  }
}

.cards .three-up {
  padding-top: 2rem;
}
@media (min-width: 1024px) {
  .cards .three-up {
    padding-top: 0;
  }
}

.cards .cards-container li .bg-cover {
  background-position: center;
}

.cards .heading-container {
  max-width: 100%;
  margin-bottom: 4rem;
}

.cards .even-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.cards .even-cards li {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .cards .even-cards li {
    flex: 0 0 48%;
  }
}
@media (min-width: 1200px) {
  .cards .even-cards li {
    flex: 0 0 48.5%;
  }
}

/*********************************************************
    Full Width Image
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_full_image'
    - ACF Field: 'Component: Full Width Image'
*********************************************************/
.full-width-image {
  height: 500px;
  background-size: cover;
  background-position: center;
}

/*********************************************************
    Image Background Layout
	- Posts Browser Template
    - ACF Field: 'Template: Post Browser'
*********************************************************/
.image-bg__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.375rem;
}

.image-bg__date {
  font-weight: bold;
  margin-top: 1rem;
}

.image-bg .btn {
  margin-top: 1.25rem;
}

.image-bg {
  display: flex;
}
.image-bg__excerpt {
  margin-bottom: auto;
}
.image-bg__excerpt * {
  width: 100% !important;
  font-size: 14px;
}
.image-bg__meta {
  height: auto !important;
}

.image-bg > a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: #003753;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px;
}
.image-bg > a:hover, .image-bg > a:focus {
  text-decoration: none;
}

.image-bg a:hover .card__title,
.image-bg a:focus .card__title {
  text-decoration: underline;
}

/*********************************************************
    Center Aligned Call-to-Action
	- Page Builder Component (functions/add-components)
	- Component Function: 'render_centered_cta'
    - ACF Field: 'Component: Center Aligned CTA'
*********************************************************/
.centered-cta {
  color: #ffffff;
  background-color: #0091da;
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .centered-cta {
    padding: 3.5rem 0;
  }
}

.centered-cta .wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
}

.centered-cta .wrapper p {
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .centered-cta .wrapper p {
    margin-top: 1.5rem;
  }
}

.centered-cta .wrapper .btn {
  margin: 1.5rem auto 0;
}
@media (min-width: 1024px) {
  .centered-cta .wrapper .btn {
    margin: 2.25rem auto 0;
  }
}

/*********************************************************
    Modal
    - Template Part (template-parts/modal)
    - Javascript Functionality (src/js/classes/modal)
*********************************************************/
.xoo-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(0);
  animation: backdrop_blur 512ms ease-out forwards;
  will-change: background-color, backdrop-filter;
}

.xoo-modal.open {
  display: flex;
}

.xoo-modal__wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: white;
  filter: drop-shadow(0 0 20px rgba(0, 55, 83, 0.25));
  opacity: 0;
  animation: fadeIn 512ms ease-out forwards 256ms;
}

.xoo-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(1) translate(50%, -50%);
  display: block;
  font-size: 2.5rem;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #a80000;
  cursor: pointer;
}
.xoo-modal__close:before, .xoo-modal__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.05em;
  border-radius: 0.05em;
  background-color: white;
}
.xoo-modal__close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.xoo-modal__close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.xoo-modal__close:hover {
  background-color: #bd0000;
}

/*********************************************************
    Simple Call-to-Action
	- Page Builder Component (functions/add-components)
	- Component Function: 'render_simple_cta'
    - ACF Field: 'Component: Simple CTA'
*********************************************************/
.simple-cta {
  padding: 2.5rem 0;
  color: #ffffff;
  background-color: #003753;
}
@media (min-width: 1024px) {
  .simple-cta {
    padding: 3.5rem 0;
  }
}

.simple-cta .btn {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .simple-cta .btn {
    margin: 0;
  }
}

@media (min-width: 768px) {
  .simple-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .simple-cta .container > div:first-child {
    margin-right: 2rem;
  }
}

/*********************************************************
    Simple Column Content
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_column_content_simple'
    - ACF Field: 'Component: Simple Column Content'
*********************************************************/
.simple-column-content {
  padding: 3rem 0;
}

.simple-column-content__main-title {
  margin-bottom: 2rem;
}

/*********************************************************
    Image Column Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_column_content_image'
    - ACF Field: 'Component: Image Column Content'
*********************************************************/
.image-column-content {
  background-size: cover;
  background-position: center;
  padding-top: 2.25rem;
  padding-bottom: 2rem;
}

.image-column-content__row {
  align-items: flex-end;
}

.image-column-content__subtitle {
  margin-bottom: 1.5rem;
}

.image-column-content__main-title {
  margin-bottom: 3rem;
}

.image-column-content__block {
  margin-bottom: 2rem;
}

.image-column-content__icon {
  margin-bottom: 1.25rem;
}

.image-column-content__image {
  width: 100%;
  height: 220px;
  background-size: cover;
  margin-top: 1.25rem;
}

.image-column-content__content {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.image-column-content__wrapper {
  background-size: cover;
  background-position: center;
}

/*********************************************************
    Video Gallery
	- Page Builder Component (functions/add-components)
	- Component Function: 'render_video_gallery'
    - ACF Field: 'Component: Video Gallery'
*********************************************************/
.video-gallery {
  color: white;
  background-color: #0091da;
  text-align: center;
}

.video-gallery__container {
  text-align: left;
}
@media (min-width: 992px) {
  .video-gallery__container {
    flex: 0 0 65%;
    width: 65%;
  }
}

.video-gallery__btn {
  margin-top: 1.25rem;
}

.video-gallery__slider {
  margin: 2.5rem -1.25rem 0 -1.25rem;
}

.video-gallery__slider .slick-list {
  padding: 0 2.5rem;
}

.video-gallery__slider .slide__wrapper {
  padding: 0.75rem;
}

.video-gallery__slider .slide__thumb {
  position: relative;
}

.video-gallery__slider .slide__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
}
.video-gallery__slider .slide__play:before, .video-gallery__slider .slide__play:after {
  content: "";
  display: block;
}
.video-gallery__slider .slide__play:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
  transform: scale(0.65);
  transition: transform 256ms ease-out;
  will-change: transform;
}
.video-gallery__slider .slide__play:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 0.75rem solid transparent;
  border-left: 1.5rem solid #003753;
  border-bottom: 0.75rem solid transparent;
}
.video-gallery__slider .slide__play:hover:before, .video-gallery__slider .slide__play:focus:before {
  transform: scale(1.05);
}

.video-gallery__slider .slide__title {
  margin-top: 1.25rem;
}

@media (min-width: 992px) {
  .video-gallery__block {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .video-gallery__content {
    flex: 0 0 35%;
    width: 35%;
  }
}

@media (min-width: 992px) {
  .video-gallery__content header {
    text-align: left;
  }
}

/*********************************************************
    Quick Fact Stats
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_quick_fact_stats'
    - ACF Field: 'Component: Quick Fact Stats'
*********************************************************/
.quick-facts .heading-container {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .quick-facts .heading-container {
    margin-bottom: 4rem;
  }
}

.quick-facts__button {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .quick-facts__button {
    padding-top: 1rem;
    text-align: right;
    margin-bottom: 0;
  }
}

.quick-fact {
  border-left: 1px solid #64A70B;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .quick-fact {
    padding: 2rem;
  }
}
@media (min-width: 1024px) {
  .quick-fact {
    margin: 0;
  }
}

.quick-fact__stat {
  color: #64A70B;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .quick-fact__stat {
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .quick-fact__stat {
    font-size: 2.75rem;
    line-height: 2.75rem;
  }
}

.quick-fact__subtext {
  color: #64A70B;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 1024px) {
  .quick-fact__subtext {
    min-height: 1.25rem;
  }
}

.quick-fact__description {
  height: 100%;
}

.quick-fact__description p:not(:first-child) {
  margin-top: 0;
}

/*********************************************************
    Image Showcase
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_image_showcase'
    - ACF Field: 'Component: Image Showcase'
*********************************************************/
.image-showcase__container {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.image-showcase__image {
  height: 150px;
  flex: 0 1 48%;
}
@media (min-width: 768px) {
  .image-showcase__image {
    flex: 0 1 30%;
  }
}
@media (min-width: 1024px) {
  .image-showcase__image {
    flex: 0 1 18%;
  }
}

.showcase-image {
  max-width: 180px;
  height: auto;
  margin: 0 auto;
  width: auto;
}

/*********************************************************
    Timeline
	- Home Page Template Part: 'template-parts/timeline'
    - ACF Field: 'Component: Timeline'
*********************************************************/
.timeline .heading-container {
  max-width: 475px;
}

.timeline-block {
  display: flex;
  flex-flow: column wrap;
}
@media (min-width: 920px) {
  .timeline-block {
    flex-flow: row nowrap;
    max-width: 920px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .timeline-block {
    max-width: 1020px;
  }
}
@media (min-width: 1200px) {
  .timeline-block {
    max-width: 100%;
    margin: 0;
  }
}

.timeline-block > div {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.timeline-block > div:first-of-type {
  margin-top: 0;
}
.timeline-block > div:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 920px) {
  .timeline-block > div {
    margin: 0 0.5rem;
  }
  .timeline-block > div:first-of-type {
    margin-left: 0;
  }
  .timeline-block > div:last-of-type {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .timeline-block > div {
    margin: 0 1rem;
  }
}

.timeline__card {
  background-color: #0091da;
  color: white;
  padding: 1.875rem;
  position: relative;
  font-weight: 700;
}
@media (min-width: 920px) {
  .timeline__card {
    flex-basis: 15%;
    min-width: 100px;
    height: 430px;
  }
}
@media (min-width: 1024px) {
  .timeline__card {
    padding: 2.5rem;
    min-width: 115px;
  }
}
@media (min-width: 1200px) {
  .timeline__card {
    padding: 2.5rem;
    min-width: 130px;
  }
}
.timeline__card:hover .timeline__year {
  color: white;
}

.timeline__background {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
}

.timeline__background--overlay {
  width: 100%;
  height: 100%;
  background: #0091da;
  opacity: 0.75;
}

.timeline__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.timeline__arrow .arrow {
  left: auto;
  right: 0;
  margin-left: auto;
  transform: rotate(90deg);
  margin-top: 14px;
}
@media (min-width: 920px) {
  .timeline__arrow .arrow {
    transform: none;
    margin-top: 0;
    left: 0;
  }
}

.timeline__content {
  display: none;
}

.timeline__year {
  transition: 0.15s ease-in-out;
  font-size: 1.75rem;
  color: #007AB7;
  height: 1.75rem;
  line-height: 1.75rem;
  height: 100%;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .timeline__year {
    font-size: 2.125rem;
    height: 2.125rem;
    line-height: 2.125rem;
  }
}
@media (min-width: 920px) {
  .timeline__year {
    transform: rotate(-90deg) translateX(40%) translateY(-335%);
    position: absolute;
    width: 275px;
    left: 0;
    bottom: 0;
    margin-top: 0;
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .timeline__year {
    font-size: 2.375rem;
    height: 2.875rem;
    line-height: 2.875rem;
    transform: rotate(-90deg) translateX(40%) translateY(-255%);
  }
}
@media (min-width: 1200px) {
  .timeline__year {
    transform: rotate(-90deg) translateX(40%) translateY(-240%);
  }
}

.timeline__card--open {
  flex-grow: 2;
  background-color: transparent;
}
.timeline__card--open .timeline__background {
  opacity: 1;
}
.timeline__card--open .timeline__arrow.arrow-link__large .arrow {
  width: 100%;
  opacity: 0;
  margin-left: auto;
  display: none;
}
@media (min-width: 920px) {
  .timeline__card--open .timeline__arrow.arrow-link__large .arrow {
    opacity: 0.12;
    display: block;
  }
}
.timeline__card--open .timeline__content {
  display: block;
  padding-top: 1.875rem;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
  margin-top: 6px;
}
@media (min-width: 920px) {
  .timeline__card--open .timeline__content {
    border-top: none;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .timeline__card--open .timeline__content {
    padding-top: 2.125rem;
  }
}
.timeline__card--open .timeline__content > div {
  font-size: 14px;
  line-height: 24px;
}
.timeline__card--open .timeline__year {
  color: white;
  margin-top: 2.5rem;
  opacity: 0.25;
}
@media (min-width: 920px) {
  .timeline__card--open .timeline__year {
    margin-top: 0;
    transform: rotate(-90deg) translateX(40%) translateY(380%);
  }
}
@media (min-width: 1024px) {
  .timeline__card--open .timeline__year {
    transform: rotate(-90deg) translateX(40%) translateY(220%);
  }
}
@media (min-width: 1200px) {
  .timeline__card--open .timeline__year {
    transform: rotate(-90deg) translateX(40%) translateY(260%);
  }
}

/*********************************************************
    Resources List
	- Resource Template Part: 'template-parts/resources-list'
    - ACF Field == Layout: Resource Taxonomy Selection && Post: Resources
*********************************************************/
.resource-taxonomy {
  border-top: 3px solid #64A70B;
  color: #64A70B;
  font-size: 1.15rem;
  padding: 1.5625rem 0 0;
}

.resource-taxonomy__list .resources {
  padding-bottom: 0.625rem 0 0;
}

.resource-taxonomy__list .resource {
  border-bottom: 1px solid #E3E3E3;
  padding: 1.875rem 0;
}
.resource-taxonomy__list .resource:last-of-type {
  border-bottom: none;
}

.resource__title {
  margin-top: 0.3125rem;
  padding: 0.625rem 0;
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  .resource__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .resource__title {
    font-size: 1.75rem;
  }
}

.resource__content {
  padding: 0.625rem 0;
  max-width: 620px;
  line-height: 1.375rem;
}

.resource__link {
  margin-bottom: 0.9375rem;
}

/*********************************************************
    Resources Downloaded
	- Resource Template Part: 'template-parts/resources-downloaded'
    - ACF Field == Layout: Most Downloaded Resources
*********************************************************/
.most-downloaded .container {
  padding: 3.125rem;
  background-color: #F5F5F5;
}

.most-downloaded__title {
  border-top: 1px solid #003753;
  padding-top: 1.875rem;
  padding-bottom: 0;
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  .most-downloaded__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .most-downloaded__title {
    font-size: 1.75rem;
  }
}

.most-downloaded__resource {
  border-bottom: 1px solid #E3E3E3;
  padding: 1.25rem 0;
}

.most-downloaded__resource .resource__title {
  font-size: 1rem;
  font-weight: 800;
  padding: 0.625rem 0 0.3125rem;
}

.most-downloaded__resource .resource__content {
  padding: 0;
}

.most-downloaded__resource .resource__link {
  margin-bottom: 0.625rem;
  margin-top: 0.3125rem;
}

/*********************************************************
    Resources Event Callout
	- Resource Template Part: 'template-parts/resources-event'
    - ACF Field == Layout: Upcoming Events Callout
*********************************************************/
.event-callout .container {
  padding: 3.125rem;
  background-color: #F5F5F5;
}

.event-callout__title {
  border-top: 1px solid #003753;
  padding-top: 1.875rem;
  padding-bottom: 0;
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  .event-callout__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .event-callout__title {
    font-size: 1.75rem;
  }
}

.event-callout__description {
  line-height: 1.375rem;
}

.event-callout__link {
  margin-top: 20px;
}

/*********************************************************
    Styled Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_styled_content'
    - ACF Field: 'Component: Styled Content' 
*********************************************************/
.styled-content--offset .heading-container {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .styled-content--offset .heading-container {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .styled-content--offset .heading-container {
    margin-bottom: 4rem;
  }
}

.styled-content--offset .styled-content__content {
  border-top: 2px solid #64A70B;
  padding-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .styled-content--offset .styled-content__content {
    max-width: 650px;
    margin-left: auto;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 920px) {
  .styled-content--offset .styled-content__content {
    max-width: 800px;
    padding-right: 8rem;
  }
}

@media (min-width: 1024px) {
  .styled-content--aligned > div {
    display: flex;
  }
}

.styled-content--aligned .heading-container {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .styled-content--aligned .heading-container {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .styled-content--aligned .heading-container {
    margin-bottom: 0;
  }
}

.styled-content--aligned .styled-content__content {
  border-top: 2px solid #64A70B;
  padding-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .styled-content--aligned .styled-content__content {
    max-width: 650px;
    margin-left: auto;
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
@media (min-width: 920px) {
  .styled-content--aligned .styled-content__content {
    max-width: 800px;
    padding-right: 8rem;
  }
}
@media (min-width: 1024px) {
  .styled-content--aligned .styled-content__content {
    max-width: 680px;
    padding-right: 8rem;
  }
}
@media (min-width: 1200px) {
  .styled-content--aligned .styled-content__content {
    max-width: 800px;
    padding-right: 8rem;
  }
}

/*********************************************************
    Dual Column Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'render_dual_column_content'
    - ACF Field: 'Component: Dual Column Content' 
*********************************************************/
.dual-column__column {
  border-left: 2px solid #E3E3E3;
  padding: 2.5rem 3.125rem;
}
.dual-column__column:first-of-type {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .dual-column__column:first-of-type {
    margin-bottom: 0;
  }
}

.dual-column__inner {
  max-width: 450px;
}

.dual-column-content__title {
  font-size: 1rem;
}

/*********************************************************
    Table Style List Content 
    - Page Builder Component (functions/add-components)
    - Component Function: 'table_style_list'
    - ACF Field: 'Component: Table Style List' 
*********************************************************/
.list-table__container {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .list-table__container {
    margin-top: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .list-table__container {
    margin-top: 5rem;
  }
}

.list-table table {
  width: 100%;
}

.list-table table tr {
  border-top: 2px solid #E3E3E3;
  border-bottom: 2px solid #E3E3E3;
}
.list-table table tr:nth-child(odd) {
  background: #ffffff;
}
.list-table table tr:first-child {
  border-top: none;
}
.list-table table tr:last-child {
  border-bottom: none;
}

.list-table table tr .item-name {
  order: 1;
  flex: 0 1 50%;
  padding: 1.25rem 0.3125rem 0.625rem 0.9375rem;
}
@media (min-width: 768px) {
  .list-table table tr .item-name {
    padding: 1.25rem 1.875rem;
  }
}

.list-table table tr .item-address {
  order: 3;
  flex: 0 1 100%;
  padding: 0.625rem 0.9375rem 1.25rem 0.9375rem;
}
@media (min-width: 768px) {
  .list-table table tr .item-address {
    padding: 1.25rem 1.875rem;
  }
}

.list-table table tr .item-phone {
  order: 2;
  flex: 0 1 50%;
  padding: 1.25rem 0.9375rem 0.625rem 0.3125rem;
  text-align: right;
  min-width: 160px;
}
@media (min-width: 768px) {
  .list-table table tr .item-phone {
    text-align: left;
    padding: 1.25rem 1.875rem;
  }
}

.list-table table tr {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .list-table table tr {
    display: table-row;
  }
}

.list-table table td,
.list-table table th {
  display: block;
}
@media (min-width: 768px) {
  .list-table table td,
  .list-table table th {
    display: table-cell;
  }
}

.tabbed-grid-component .tab-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .tabbed-grid-component .tab-wrapper {
    flex-direction: row;
  }
}
.tabbed-grid-component .tab-wrapper .tab-items-wrapper {
  display: flex;
  flex-direction: row;
  min-width: 300px;
  border-top: 5px solid #003753;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .tabbed-grid-component .tab-wrapper .tab-items-wrapper {
    flex-wrap: nowrap;
    flex-direction: column;
    border-top: none;
    border-left: 5px solid #003753;
  }
}
.tabbed-grid-component .tab-wrapper .tab-items-wrapper .single-tab-item {
  color: #003753;
  background-color: #ffffff;
  padding: 10px;
  cursor: pointer;
  border-bottom: 2px solid #EBF6FC;
  border-left: 2px solid #EBF6FC;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .tabbed-grid-component .tab-wrapper .tab-items-wrapper .single-tab-item {
    padding: 30px 20px;
    text-align: left;
    border-top: none;
  }
}
.tabbed-grid-component .tab-wrapper .tab-items-wrapper .single-tab-item.active {
  background-color: #003753;
  color: #ffffff;
  border-left: 2px solid #003753;
}
@media (min-width: 768px) {
  .tabbed-grid-component .tab-wrapper .tab-items-wrapper .single-tab-item.active:first-child {
    border-top: 2px solid #003753;
  }
}
@media (min-width: 768px) {
  .tabbed-grid-component .tab-wrapper .tab-items-wrapper .single-tab-item:first-child {
    border-top: 2px solid #EBF6FC;
  }
}
.tabbed-grid-component .tab-wrapper .tab-content-wrapper .single-tab-content {
  padding: 30px;
  height: 100%;
  display: none;
  background-color: #EBF6FC;
  transition: all 0.3s ease;
}
.tabbed-grid-component .tab-wrapper .tab-content-wrapper .single-tab-content:first-child {
  display: block;
}
.tabbed-grid-component .foot-note {
  font-size: 12px;
  font-style: italic;
  padding-left: 15px;
  margin-top: 5px;
}

.membership-table-component .bsd-table-wrapper {
  overflow-x: scroll;
}
@media (min-width: 768px) {
  .membership-table-component .bsd-table-wrapper {
    overflow-x: hidden;
  }
}
.membership-table-component table.bsd-table {
  margin: 0 0 1em;
  border-collapse: collapse;
  table-layout: fixed;
  width: auto;
}
@media (min-width: 768px) {
  .membership-table-component table.bsd-table {
    width: 100%;
  }
}
.membership-table-component table.bsd-table .check-image {
  max-width: 20px;
  margin: 0 auto;
}
.membership-table-component table.bsd-table thead tr th {
  padding: 1rem;
  background-color: #003753;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3019607843);
  color: #ffffff;
  font-weight: 400;
  text-align: left;
  display: table-cell;
}
.membership-table-component table.bsd-table thead tr th:first-child {
  width: 300px;
}
.membership-table-component table.bsd-table th,
.membership-table-component table.bsd-table td {
  padding: 1rem;
  border-right: 1px solid rgba(17, 17, 17, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  vertical-align: top;
}
@media (min-width: 768px) {
  .membership-table-component table.bsd-table th:last-child,
  .membership-table-component table.bsd-table td:last-child {
    border-right: none;
  }
}
.membership-table-component table.bsd-table tr {
  display: table-row;
}
.membership-table-component table.bsd-table tr:nth-child(even) {
  background: #f0f0f0;
}
.membership-table-component table.bsd-table tr:nth-child(odd) {
  background: #ffffff;
}
.membership-table-component table.bsd-table td {
  display: table-cell;
}

/**
*** -- TEMPLATES
***/
/*********************************************************
	404 Template
	- ACF Field: 'Template: 404 Page (Site Options)'
*********************************************************/
.Error-404 {
  padding: 60px 20px;
}

.Error-404__title {
  margin: 0;
}

.Error-404__subtitle {
  margin: 0;
}

/*********************************************************
    About Template
*********************************************************/
/*********************************************************
    Search Results Template  
    - templates/search.php
*********************************************************/
.search-result {
  padding: 30px 0;
  border-top: 1px solid #e4e4e4;
}

.search-result .search-result__tag {
  text-transform: uppercase;
}

.search-result .search-result__title {
  margin-top: 0;
}

/*********************************************************
    Contact Template  
    - templates/contact.php
    - ACF Field: TBD
*********************************************************/
.contact-title {
  margin-bottom: 2rem;
}

/*********************************************************
    Post Browser Template  
    - templates/posts-browser.php
    - ACF Field: 'Template: Post Browser'
*********************************************************/
.posts .filters {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .posts .filters {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  .posts .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.posts .filters form.disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.posts .filters select {
  margin: 0;
  background: #003753;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 1.25rem 2.5rem;
}
@media (min-width: 920px) {
  .posts .filters select {
    padding: 1.875rem 3.125rem;
    font-size: 22px;
  }
}

.posts .filters .filter {
  margin: 2px 0 1rem;
}

.posts .filters .dropdown {
  width: 100%;
  position: relative;
}

.posts .filters .dropdown > div:after {
  border-left: 2px solid #0091da;
  border-bottom: 2px solid #0091da;
  content: "";
  position: absolute;
  top: 18px;
  right: 40px;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
}
@media (min-width: 920px) {
  .posts .filters .dropdown > div:after {
    top: 28px;
    right: 50px;
  }
}

.posts .list {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .posts .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .posts .list {
    padding-left: 0;
    padding-right: 0;
  }
}

.posts .list li {
  max-width: 350px;
  margin: 4rem auto 0 auto;
}
@media (min-width: 768px) {
  .posts .list li {
    display: flex;
    width: 50%;
    max-width: none;
    margin: 1rem 0;
  }
}
@media (min-width: 992px) {
  .posts .list li {
    width: 33.3333%;
  }
}

@media (min-width: 992px) {
  .posts .list.col_2 li {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .posts .list li .wrapper {
    display: flex;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .posts .list li .wrapper a {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .posts .list li:nth-child(2n+1) .wrapper {
    padding: 0 1rem 0 0;
  }
}

@media (min-width: 768px) {
  .posts .list li:nth-child(2n+2) .wrapper {
    padding: 0 0 0 1rem;
  }
}

@media (min-width: 992px) {
  .posts .list li:nth-child(3n+1) .wrapper {
    padding: 0 1rem 0 0;
  }
}

@media (min-width: 992px) {
  .posts .list li:nth-child(3n+2) .wrapper {
    padding: 0 0.5rem;
  }
}

@media (min-width: 992px) {
  .posts .list li:nth-child(3n+3) .wrapper {
    padding: 0 0 0 1rem;
  }
}

.posts .pagination {
  margin: 2rem 0 0 0;
}

.posts .pagination > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
}

.posts .pagination .loading svg {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  will-change: transform;
  animation: spin_360 500ms linear infinite;
}

.image-bg__meta {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/*********************************************************
    Default Template
*********************************************************/
@media (min-width: 1024px) {
  .page-template-home .hero-backdrop {
    background-color: #E3E3E3;
    height: 200px;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 0;
  }
}
.page-template-home .image-showcase__image:last-child {
  max-width: calc(100% - 20px);
}

/*********************************************************
  Resources Template
*********************************************************/
.page-template-resources .basic-content .heading-container {
  padding-left: 0;
}
.page-template-resources .basic-content .heading {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.875rem;
  font-weight: 700;
  padding-left: 0;
}
@media (min-width: 768px) {
  .page-template-resources .basic-content .heading {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .page-template-resources .basic-content .heading {
    font-size: 3rem;
  }
}

/*********************************************************
    GrowthZone Template
*********************************************************/
.mn-directory .mn-intro {
  font-family: "Gotham Bold", sans-serif;
  color: #64A70B;
}
.mn-directory .mn-adv-filter-label {
  font-family: "Gotham Bold", sans-serif;
  color: #64A70B;
}

.page-template-growthzone-content #mn-content label {
  font-family: "Gotham Medium", sans-serif;
  color: #929292;
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0;
  margin-top: 1rem;
}
.page-template-growthzone-content #mn-content input[type=email], .page-template-growthzone-content #mn-content input[type=number], .page-template-growthzone-content #mn-content input[type=password], .page-template-growthzone-content #mn-content input[type=search], .page-template-growthzone-content #mn-content input[type=tel], .page-template-growthzone-content #mn-content input[type=text], .page-template-growthzone-content #mn-content input[type=url], .page-template-growthzone-content #mn-content select, .page-template-growthzone-content #mn-content textarea {
  border: none;
  background: #F5F5F5;
  border-radius: 30px;
  font-size: 14px;
  padding: 0.75rem 1.125rem;
}
.page-template-growthzone-content #mn-content .mn-button {
  padding: 15px 30px;
  font-weight: 700;
  background: #0091da;
  margin-top: 20px;
  border-radius: 30px;
}
.page-template-growthzone-content #mn-content .mn-button + .mn-button {
  color: #0091da;
  border: 2px solid #0091da;
  padding: 13px 28px;
}
.page-template-growthzone-content #mn-content .mn-events-filter form > div:first-of-type label {
  margin-top: 0;
}
@media (min-width: 682px) {
  .page-template-growthzone-content #mn-content .mn-events-filter .filter-end-date {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}
.page-template-growthzone-content #mn-content .mn-events-filter .mn-button {
  display: block;
  padding: 15px 30px;
  background: #0091da;
  margin-top: 20px;
}
.page-template-growthzone-content #mn-content > div > .mn-row:first-of-type {
  max-width: 740px;
}
.page-template-growthzone-content #mn-content > div.mn-content > .mn-row:first-of-type {
  max-width: inherit;
}
.page-template-growthzone-content #mn-content .mn-events-filter {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .page-template-growthzone-content #mn-content .mn-events-filter {
    margin-bottom: 80px;
  }
}
.page-template-growthzone-content #mn-content .mn-page-heading {
  background: #EBF6FC;
  padding-top: 40px;
  padding-left: 30px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media (min-width: 600px) {
  .page-template-growthzone-content #mn-content .mn-page-heading {
    padding-top: 50px;
    padding-left: 40px;
  }
}
@media (min-width: 920px) {
  .page-template-growthzone-content #mn-content .mn-page-heading {
    max-width: 70%;
    padding-top: 70px;
    padding-left: 60px;
  }
}
.page-template-growthzone-content #mn-content .mn-page-heading .mn-heading {
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  .page-template-growthzone-content #mn-content .mn-page-heading .mn-heading {
    font-size: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .page-template-growthzone-content #mn-content .mn-page-heading .mn-heading {
    font-size: 2.375rem;
  }
}
.page-template-growthzone-content #mn-content .mn-switch-to-calendar {
  background: #EBF6FC;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-top: 10px;
}
@media (min-width: 600px) {
  .page-template-growthzone-content #mn-content .mn-switch-to-calendar {
    padding-bottom: 50px;
    padding-left: 40px;
  }
}
@media (min-width: 920px) {
  .page-template-growthzone-content #mn-content .mn-switch-to-calendar {
    max-width: 70%;
    padding-bottom: 70px;
    padding-left: 60px;
    margin-bottom: 80px;
  }
}
.page-template-growthzone-content #mn-content .mn-switch-to-calendar a {
  font-weight: 700;
  color: #0091da;
  border-bottom: 2px solid #0091da;
  padding-bottom: 5px;
}
.page-template-growthzone-content #mn-content .mn-switch-to-calendar a:hover {
  text-decoration: none;
}
.page-template-growthzone-content #mn-content .mn-listing .mn-search-form {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .page-template-growthzone-content #mn-content .mn-listing .mn-search-form {
    margin-bottom: 80px;
  }
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-template-growthzone-content #mn-content .mn-listing .mn-row-inner {
    flex-direction: row;
  }
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-1-5 {
  width: 100%;
}
@media (min-width: 768px) {
  .page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-1-5 {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-image {
    max-width: 150px;
    max-height: 200px;
  }
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-4-5 {
  padding-top: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-4-5 {
    padding-top: 0;
    width: 80%;
    padding-left: 30px;
  }
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-4-5 .mn-title .mn-divider-pipe {
  display: none;
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-4-5 .mn-title .mn-sub-heading {
  display: block;
  font-weight: 700;
  padding-top: 20px;
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-4-5 .mn-title .mn-sub-heading .mn-date {
  font-size: 0.9375rem;
}
.page-template-growthzone-content #mn-content .mn-listing .mn-row-inner .mn-col-4-5 .mn-description p {
  margin-top: 0;
  font-size: 0.9375rem;
}
.page-template-growthzone-content #mn-content .mn-block.mn-pane {
  border: 1px solid #E3E3E3;
  padding: 30px;
  margin-bottom: 30px;
}
.page-template-growthzone-content #mn-content .mn-events-calendar .mn-switch-to-list {
  background: #EBF6FC;
  margin-bottom: 60px;
  padding: 40px 30px;
}
@media (min-width: 600px) {
  .page-template-growthzone-content #mn-content .mn-events-calendar .mn-switch-to-list {
    padding: 40px 50px;
  }
}
@media (min-width: 920px) {
  .page-template-growthzone-content #mn-content .mn-events-calendar .mn-switch-to-list {
    max-width: 70%;
    padding: 60px 70px;
    margin-bottom: 80px;
  }
}
.page-template-growthzone-content #mn-content .mn-events-calendar .mn-switch-to-list a {
  font-weight: 700;
  color: #0091da;
  border-bottom: 2px solid #0091da;
  padding-bottom: 5px;
}
.page-template-growthzone-content #mn-content .mn-events-calendar .mn-switch-to-list a:hover {
  text-decoration: none;
}
.page-template-growthzone-content #mn-content .mn-events-calendar .mn-calendar-month .mn-heading {
  padding-bottom: 20px;
}
@media (min-width: 920px) {
  .page-template-growthzone-content #mn-content .mn-events-calendar .mn-calendar-month .mn-heading {
    padding-bottom: 40px;
  }
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .week.names {
  background-color: #707372;
  font-weight: 700;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .week.names .day {
  border: 1px solid #707372;
  padding: 10px 5px;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .day {
  border: 1px solid #E3E3E3;
  padding: 15px;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .day .event-link:first-of-type {
  margin-top: 5px;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .mn-day-link {
  color: #929292;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .event-link {
  font-weight: 700;
  border-bottom: 1px solid #0091da;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .event-link:last-child {
  border: none;
}
.page-template-growthzone-content #mn-content .mn-events-calendar #calendar .event-link a {
  color: #0091da;
}
.page-template-growthzone-content #mn-content .mn-block .mn-block:first-of-type {
  margin-bottom: inherit;
}
.page-template-growthzone-content #mn-content .mn-block .mn-block.mn-listing {
  margin-bottom: 30px;
}

.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-search .gz-search-filters {
  font-weight: 700;
  color: #707372;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-search .gz-search-filters input {
  font-weight: 700;
  color: #707372;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-search .gz-search-filters .gz-search-btn {
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-search .gz-search-filters .gz-search-btn {
    border-radius: 0 30px 30px 0;
  }
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-main .gz-alphanumeric .btn {
  font-size: 1.25rem;
  font-weight: 700;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-main .gz-alphanumeric .btn:hover {
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-main .gz-cat-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-main .gz-cat-card-body .gz-cat-subcat > a {
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-main .gz-card-title {
  margin-top: 0.55rem;
  text-align: center;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-main .gz-card-title > a {
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-search-pills {
  margin-bottom: 1.5rem;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-sort-bar {
  margin-bottom: 1rem;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-sort-bar a:hover {
  border-color: transparent;
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-sort-bar .gz-subtitle {
  color: #707372;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-sort-bar .gz-sort-btn-group .gz-sort-btn i {
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card {
  width: 100%;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .card-header {
  order: 3;
  border-left: 1px solid rgba(0, 0, 0, 0.125);
  height: inherit;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .card-header .gz-img-placeholder {
  display: none;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .card-header .img-fluid {
  width: auto;
  margin: 0 auto;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .card-title {
  border-top: none;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .card-title a {
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .card-title a:hover {
  text-decoration: underline;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .list-group .gz-card-address a, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .list-group .gz-card-phone a, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .list-group .gz-card-website a {
  color: #003753;
  font-weight: 400;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .list-group .gz-card-address a:hover, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .list-group .gz-card-phone a:hover, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-list-col .gz-directory-card .list-group .gz-card-website a:hover {
  text-decoration: underline;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .card-header {
  height: inherit;
  order: 3;
  padding-bottom: 2rem;
  padding-top: 0;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .card-header .gz-img-placeholder {
  display: none;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .card-header .img-fluid {
  width: auto;
  margin: 0 auto;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .card-title {
  border-top: none;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .card-title a {
  color: #003753;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .card-title a:hover {
  text-decoration: underline;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .list-group .gz-card-address a, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .list-group .gz-card-phone a, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .list-group .gz-card-website a {
  color: #003753;
  font-weight: 400;
}
.page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .list-group .gz-card-address a:hover, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .list-group .gz-card-phone a:hover, .page-template-growthzone-content #gzns.gz-pageId-1758 .gz-directory-listing .gz-directory-cards .gz-grid-col .gz-directory-card .list-group .gz-card-website a:hover {
  text-decoration: underline;
}

.page-template-strategic-plan {
  /*==================================
  TIMELINE
  ==================================*/
  /*----- TIMELINE LEGEND -----*/
  /*-- GENERAL STYLES
  ------------------------------*/
  /*----- TIMELINE ITEM -----*/
  /*----- TIMELINE INFO -----*/
  /*----- TIMELINE MARKER -----*/
  /*----- TIMELINE CONTENT -----*/
  /*----- TIMELINE TITLE -----*/
  /*----- TIMELINE PERIOD -----*/
  /*----------------------------------------------
      MOD: TIMELINE SPLIT
  ----------------------------------------------*/
  /*----------------------------------------------
      MOD: TIMELINE CENTERED
  ----------------------------------------------*/
  /*
  .timeline-centered {
      @extend .timeline-split;
      @media (min-width: 992px) {
          &,
          .timeline-item,
          .timeline-info,
          .timeline-marker,
          .timeline-content {
              display: block;
              margin: 0;
              padding: 0;
          }
          .timeline-item {
              padding-bottom: 40px;
              overflow: hidden;
          }
          .timeline-marker {
              position: absolute;
              left: 50%;
              margin-left: -7.5px;
          }
          .timeline-info,
          .timeline-content {
              width: 50%;
          }
          > .timeline-item:nth-child(odd) .timeline-info {
              float: left;
              text-align: right;
              padding-right: 30px;
          }
          > .timeline-item:nth-child(odd) .timeline-content {
              float: right;
              text-align: left;
              padding-left: 30px;
          }    
          > .timeline-item:nth-child(even) .timeline-info {
              float: right;
              text-align: left;
              padding-left: 30px;
          }
          > .timeline-item:nth-child(even) .timeline-content {
              float: left;
              text-align: right;
              padding-right: 30px;
          }
          > .timeline-item.period .timeline-content {
              float: none;
              padding: 0;
              width: 100%;
              text-align: center;
          }
          .timeline-item.period {
              padding: 50px 0 90px;
          }
          .period .timeline-marker:after {
              height: 30px;
              bottom: 0;
              top: auto;
          }
          .period .timeline-title {
              left: auto;
          }
      }
  }

  */
  /*----------------------------------------------
      MOD: MARKER OUTLINE
  ----------------------------------------------*/
}
.page-template-strategic-plan .hero__content {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .page-template-strategic-plan .hero__content-container {
    padding-top: 0;
  }
}
.page-template-strategic-plan .toc {
  text-align: center;
}
.page-template-strategic-plan .toc p {
  font-size: 22px;
  line-height: 1.5;
}
.page-template-strategic-plan img.accent {
  position: absolute;
  z-index: -1;
  top: -75px;
  left: 50px;
  width: 250px;
  height: 250px;
}
.page-template-strategic-plan .objectives-wrapper {
  margin-top: 40px;
}
.page-template-strategic-plan .justify-content-center {
  justify-content: center;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-legend {
    padding-left: calc(30% + 15px);
    margin-bottom: -108px;
  }
}
@media (min-width: 992px) {
  .page-template-strategic-plan .timeline-legend {
    margin-bottom: 0;
  }
}
.page-template-strategic-plan .timeline-legend .timeline-title {
  color: #003753;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-template-strategic-plan .timeline-legend .flex-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-legend .flex-wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.page-template-strategic-plan .timeline-legend .flex-wrapper > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-legend .flex-wrapper > div {
    margin-bottom: 0;
  }
}
.page-template-strategic-plan .timeline-legend .flex-wrapper i {
  margin-right: 8px;
  font-size: 32px;
}
.page-template-strategic-plan .timeline-legend .flex-wrapper i.not-started {
  color: #CCD5DB;
}
.page-template-strategic-plan .timeline-legend .flex-wrapper i.in-progress {
  color: #FCBF49;
}
.page-template-strategic-plan .timeline-legend .flex-wrapper i.complete {
  color: #55bb47;
}
.page-template-strategic-plan .timeline-legend .flex-wrapper i + span {
  font-size: 14px;
  color: #003753;
}
.page-template-strategic-plan .timeline {
  list-style: none;
  margin: 0;
  padding-top: 0;
  width: 100%;
}
.page-template-strategic-plan .timeline-item {
  position: relative;
  padding-left: 40px;
  margin-top: -10px;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-item {
    padding-left: 50px;
  }
}
.page-template-strategic-plan .timeline-item:last-child {
  padding-bottom: 0;
}
.page-template-strategic-plan .timeline-item:last-child .timeline-marker:after {
  border-bottom: 3px solid #CCD5DB;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 10px 10px 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-info .timeline-item-intro {
    flex-direction: row;
    text-align: left;
    padding: 10px;
  }
}
.page-template-strategic-plan .timeline-info .timeline-item-intro:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #c5248e;
  transform: skewX(-10deg);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}
.page-template-strategic-plan .timeline-info .timeline-item-intro.green {
  color: black;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro.green:after {
  background-color: #90cd41;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro.blue {
  color: black;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro.blue:after {
  background-color: #3fcdf0;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro img {
  width: 55px;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro .timeline-item-title {
  padding-left: 10px;
  padding-right: 15px;
}
.page-template-strategic-plan .timeline-info .timeline-item-intro .timeline-item-title .timeline-objective {
  margin-top: 10px;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .page-template-strategic-plan .timeline-info .timeline-item-intro .timeline-item-title .timeline-objective {
    margin-top: 5px;
  }
}
.page-template-strategic-plan .timeline-info .timeline-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0 0 0.5em 0;
  white-space: nowrap;
}
.page-template-strategic-plan .timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
}
.page-template-strategic-plan .timeline-marker:before {
  position: absolute;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-size: 40px;
  font-weight: 400;
  color: #CCD5DB;
  top: 28px;
  left: -13px;
}
.page-template-strategic-plan .timeline-marker:after {
  content: "";
  width: 3px;
  background: #CCD5DB;
  display: block;
  position: absolute;
  top: 68px;
  bottom: 0;
  left: 6px;
}
.timeline-item:last-child .page-template-strategic-plan .timeline-marker:after {
  content: none;
}
.page-template-strategic-plan .timeline-item.in-progress .timeline-marker:before {
  font-weight: 700;
  color: #FCBF49;
  border-bottom-color: #FCBF49;
}
.page-template-strategic-plan .timeline-item.in-progress .timeline-marker:after {
  background-color: #FCBF49;
}
.page-template-strategic-plan .timeline-item.in-progress + .period .timeline-marker:before {
  border-top-color: #FCBF49;
}
.page-template-strategic-plan .timeline-item.complete .timeline-marker:before {
  font-weight: 700;
  color: #55bb47;
  border-bottom-color: #55bb47;
}
.page-template-strategic-plan .timeline-item.complete .timeline-marker:after {
  background-color: #55bb47;
}
.page-template-strategic-plan .timeline-item.complete + .period .timeline-marker:before {
  border-top-color: #55bb47;
}
.page-template-strategic-plan .timeline-content {
  padding: 0 5% 60px 15px;
}
.page-template-strategic-plan .timeline-content p {
  text-align: center;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-content p {
    text-align: left;
  }
}
.page-template-strategic-plan .timeline-content p:last-child {
  margin-bottom: 0;
}
.page-template-strategic-plan .timeline-title:not(h3) {
  font-size: 20px;
}
.page-template-strategic-plan .period {
  padding: 0;
}
.page-template-strategic-plan .period .timeline-info {
  display: none;
}
.page-template-strategic-plan .period .timeline-marker:before {
  background: transparent;
  content: "";
  width: 15px;
  height: auto;
  border: none;
  border-radius: 0;
  top: 10px;
  left: 0;
  bottom: 30px;
  position: absolute;
  border-top: 3px solid #CCD5DB;
  border-bottom: 3px solid #CCD5DB;
}
.page-template-strategic-plan .period .timeline-marker:after {
  content: "";
  height: 32px;
  top: auto;
}
.page-template-strategic-plan .period .timeline-content {
  padding: 40px 0 70px;
}
.page-template-strategic-plan .period .timeline-title {
  margin: 0;
}
@media (min-width: 768px) {
  .page-template-strategic-plan .timeline-split .timeline {
    display: table;
  }
  .page-template-strategic-plan .timeline-split .timeline-item {
    display: table-row;
    padding: 0;
  }
  .page-template-strategic-plan .timeline-split .timeline-info,
  .page-template-strategic-plan .timeline-split .timeline-marker,
  .page-template-strategic-plan .timeline-split .timeline-content,
  .page-template-strategic-plan .timeline-split .period .timeline-info {
    display: table-cell;
    vertical-align: top;
  }
  .page-template-strategic-plan .timeline-split .timeline-marker {
    position: relative;
  }
  .page-template-strategic-plan .timeline-split .timeline-content {
    padding-left: 30px;
  }
  .page-template-strategic-plan .timeline-split .timeline-info {
    padding-right: 30px;
  }
  .page-template-strategic-plan .timeline-split .period .timeline-title {
    position: relative;
    left: -45px;
  }
}
.page-template-strategic-plan .marker-outline .timeline-marker:before {
  background: transparent;
  border-color: #FF6B6B;
}
.page-template-strategic-plan .marker-outline .timeline-item:hover .timeline-marker:before {
  background: #FF6B6B;
}

/**
*** -- STATES 
***/
/*********************************************************
    Animations
*********************************************************/
@keyframes backdrop_blur {
  0% {
    background-color: transparent;
    backdrop-filter: blur(0);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
  }
}
@keyframes spin_360 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(20px);
    animation-timing-function: cubic-bezier(0.65, 0.88, 0.36, 0.29);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(20px);
    animation-timing-function: cubic-bezier(0.65, 0.88, 0.36, 0.29);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sign {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 1368;
  }
}
@keyframes fill {
  0% {
    color: transparent;
  }
  50% {
    color: #ffffff;
  }
  100% {
    color: #003753;
  }
}
@keyframes exitUp {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-100%, 0);
  }
}
@keyframes exitDown {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(100%, 0);
  }
}
/*********************************************************
  Utility / Helper Classes
  @NOTE: prefix with ".u-"
*********************************************************/
/**
  * Visibility
  */
.u-visible-desktop {
  display: none;
}
@media (min-width: 920px) {
  .u-visible-desktop {
    display: block;
  }
}

.u-visible-tablet {
  display: none;
}
@media (min-width: 768px) {
  .u-visible-tablet {
    display: block;
  }
}

@media (min-width: 920px) {
  .u-hidden-desktop {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-hidden-tablet {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-hidden-phone {
    display: none !important;
  }
}

/**
  * Alignments
  */
.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

/**
  * Text Colors
  */
.u-color-white {
  color: #ffffff;
}

.u-color-primary {
  color: #003753;
}

.u-color-secondary {
  color: #0091da;
}

.u-color-tertiary {
  color: #64A70B;
}

.u-color-link {
  color: #0091da;
}

/**
  * Background Colors
  */
.u-bg-primary {
  background-color: #003753;
}

.u-bg-secondary {
  background-color: #0091da;
}

.u-bg-tertiary {
  background-color: #64A70B;
}

.u-bg-white {
  background-color: #ffffff;
}

.u-bg-light-blue {
  background-color: #EBF6FC;
}

/**
  * Fonts
  */
.u-font-heading {
  font-family: "Gotham", sans-serif;
}

.u-font-body {
  font-family: "Gotham", sans-serif;
}

.u-font-bold {
  font-weight: 700;
}

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