@import url(https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&family=Work+Sans:ital,wght@0,400;

0,500;0,600;1,400&display=swap);@charset "UTF-8";

/* ==========================================================================
===== THEME STYLESHEET =====
=
= I've divvied up the scss to go from a wider scope to a more specific scope. ( As you would )
= The order that I have decided on is: global > module > component > layout
= For each one, I will explain my thinking as to why they are more specific than the last.
= Here is a link to something which explains my thinking on the mater, fairly well.
= https://softwareengineering.stackexchange.com/questions/178927/is-there-a-difference-between-a-component-and-a-module
=
========================================================================== */




html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
  ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
  ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
  ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
  ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
  ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
  ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| BASE: Body
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

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

*:focus {
  outline: 0 !important;
}

html {
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  line-height: 1;
  font-size: 18px;
  font-weight: normal;
  font-family: "Work Sans", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.scrollable {
  overflow-x: hidden;
  overflow-y: auto;
}

.scroll-lock {
  overflow: hidden !important;
}

#site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#header {
  position: absolute;
  z-index: 3;
}

#main {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
}

#footer {
  position: relative;
  z-index: 1;
}

.site-fade-in {
  position: absolute;
  top: 0;
  opacity: 0;
  background: rebeccapurple;
  min-height: 100vh;
  min-width: 100vw;
  z-index: 99999999999;
  transition: opacity 1600ms cubic-bezier(0.29, 0.4, 0.15, 0.91) 100ms;
  pointer-events: none;
}

.site-fade-in.loading-site {
  opacity: 1;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| BASE: Typography
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

span {
  display: inline;
}

p {
  margin: 0;
  line-height: 160%;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-weight: normal;
  font-family: "PT Serif", serif;
  word-wrap: break-word;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: -0.25em;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.6rem;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-30 {
  font-size: 30px;
}

.f-36 {
  font-size: 36px;
}

.f-64 {
  font-size: 64px;
}

.f-90 {
  font-size: 90px;
}

li {
  line-height: 1.7;
  list-style: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0;
  list-style: decimal outside;
}

blockquote {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 1.2rem;
}

cite {
  font-size: 0.8rem;
}

figcaption {
  font: 0.8rem/1.2 "Work Sans", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:hover,
a:focus {
  outline: none;
  color: inherit;
}

address {
  font-style: normal;
}

time {
  font-style: normal;
}

code {
  border-radius: 2px;
  background: #dddddd;
  padding: 4px;
  line-height: 1.7;
  font-family: "Work Sans", sans-serif;
  font-size: inherit;
  color: #333333;
}

pre code {
  display: block;
  padding: 1rem;
  white-space: normal;
}

b {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

i {
  font-style: italic;
}

em {
  font-style: italic;
}

mark {
  background-color: yellow;
}

ins {
  text-decoration: underline;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 0.8em;
}

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

sup {
  top: -0.25em;
}

sub {
  bottom: -0.25em;
}

.font-pt-serif {
  font-family: "PT Serif", serif;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| BASE: Dividers
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* === line === */

hr,
.line {
  clear: both;
  margin: 0;
  border: unset;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: inherit;
}

/* === line-break === */

br,
.line-break {
  clear: both;
  display: inline-block;
  width: 0;
  height: 1em;
  line-height: inherit;
}

/* === break === */

.break {
  padding-top: 30px;
  min-width: 100%;
  content: "";
}

/* === space === */

.space {
  padding-left: 30px;
  min-height: 100%;
  content: "";
}

/* === gap === */

.gap {
  padding-top: 30px;
  padding-left: 30px;
}

.gap-0 {
  padding-top: 0;
  padding-left: 0;
}

.gap-1 {
  padding-top: 0.4rem;
  padding-left: 0.4rem;
}

.gap-2 {
  padding-top: 0.8rem;
  padding-left: 0.8rem;
}

.gap-3 {
  padding-top: 1.2rem;
  padding-left: 1.2rem;
}

.gap-4 {
  padding-top: 1.6rem;
  padding-left: 1.6rem;
}

.gap-5 {
  padding-top: 2.4rem;
  padding-left: 2.4rem;
}

.gap-6 {
  padding-top: 3.2rem;
  padding-left: 3.2rem;
}

.gap-7 {
  padding-top: 6.4rem;
  padding-left: 6.4rem;
}

@media (min-width: 480px) {
  .sm\:gap {
    padding-top: 30px;
    padding-left: 30px;
  }

  .sm\:gap-0 {
    padding-top: 0;
    padding-left: 0;
  }

  .sm\:gap-1 {
    padding-top: 0.4rem;
    padding-left: 0.4rem;
  }

  .sm\:gap-2 {
    padding-top: 0.8rem;
    padding-left: 0.8rem;
  }

  .sm\:gap-3 {
    padding-top: 1.2rem;
    padding-left: 1.2rem;
  }

  .sm\:gap-4 {
    padding-top: 1.6rem;
    padding-left: 1.6rem;
  }

  .sm\:gap-5 {
    padding-top: 2.4rem;
    padding-left: 2.4rem;
  }

  .sm\:gap-6 {
    padding-top: 3.2rem;
    padding-left: 3.2rem;
  }

  .sm\:gap-7 {
    padding-top: 6.4rem;
    padding-left: 6.4rem;
  }
}

@media (min-width: 768px) {
  .md\:gap {
    padding-top: 30px;
    padding-left: 30px;
  }

  .md\:gap-0 {
    padding-top: 0;
    padding-left: 0;
  }

  .md\:gap-1 {
    padding-top: 0.4rem;
    padding-left: 0.4rem;
  }

  .md\:gap-2 {
    padding-top: 0.8rem;
    padding-left: 0.8rem;
  }

  .md\:gap-3 {
    padding-top: 1.2rem;
    padding-left: 1.2rem;
  }

  .md\:gap-4 {
    padding-top: 1.6rem;
    padding-left: 1.6rem;
  }

  .md\:gap-5 {
    padding-top: 2.4rem;
    padding-left: 2.4rem;
  }

  .md\:gap-6 {
    padding-top: 3.2rem;
    padding-left: 3.2rem;
  }

  .md\:gap-7 {
    padding-top: 6.4rem;
    padding-left: 6.4rem;
  }
}

@media (min-width: 1024px) {
  .lg\:gap {
    padding-top: 30px;
    padding-left: 30px;
  }

  .lg\:gap-0 {
    padding-top: 0;
    padding-left: 0;
  }

  .lg\:gap-1 {
    padding-top: 0.4rem;
    padding-left: 0.4rem;
  }

  .lg\:gap-2 {
    padding-top: 0.8rem;
    padding-left: 0.8rem;
  }

  .lg\:gap-3 {
    padding-top: 1.2rem;
    padding-left: 1.2rem;
  }

  .lg\:gap-4 {
    padding-top: 1.6rem;
    padding-left: 1.6rem;
  }

  .lg\:gap-5 {
    padding-top: 2.4rem;
    padding-left: 2.4rem;
  }

  .lg\:gap-6 {
    padding-top: 3.2rem;
    padding-left: 3.2rem;
  }

  .lg\:gap-7 {
    padding-top: 6.4rem;
    padding-left: 6.4rem;
  }
}

@media (min-width: 1280px) {
  .xl\:gap {
    padding-top: 30px;
    padding-left: 30px;
  }

  .xl\:gap-0 {
    padding-top: 0;
    padding-left: 0;
  }

  .xl\:gap-1 {
    padding-top: 0.4rem;
    padding-left: 0.4rem;
  }

  .xl\:gap-2 {
    padding-top: 0.8rem;
    padding-left: 0.8rem;
  }

  .xl\:gap-3 {
    padding-top: 1.2rem;
    padding-left: 1.2rem;
  }

  .xl\:gap-4 {
    padding-top: 1.6rem;
    padding-left: 1.6rem;
  }

  .xl\:gap-5 {
    padding-top: 2.4rem;
    padding-left: 2.4rem;
  }

  .xl\:gap-6 {
    padding-top: 3.2rem;
    padding-left: 3.2rem;
  }

  .xl\:gap-7 {
    padding-top: 6.4rem;
    padding-left: 6.4rem;
  }
}

/* === FILLER === */

.filler {
  display: block;
  flex: 1 1 auto;
  content: "";
}

.fill {
  flex: 1 1 auto;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| BASE: Forms 
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

form {
  display: block;
  max-width: 860px;
}

label[for] {
  cursor: pointer;
}

input,
select,
textarea,
fieldset,
.input {
  display: block;
  margin: 0;
  outline: none;
  box-shadow: none;
  border: 2px solid #73F6FF;
  border-radius: 6px;
  background-color: #f8f8f8;
  width: 100%;
  padding: 0.5em 0.8em;
  line-height: 1;
  font-size: 1rem;
  color: #333333;
  transition: border 300ms ease-in-out, background-color 300ms ease-in-out;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, fieldset::-moz-placeholder, .input::-moz-placeholder {
  opacity: 0.3;
  color: inherit;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder, fieldset:-ms-input-placeholder, .input:-ms-input-placeholder {
  opacity: 0.3;
  color: inherit;
}

input::placeholder,
select::placeholder,
textarea::placeholder,
fieldset::placeholder,
.input::placeholder {
  opacity: 0.3;
  color: inherit;
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
fieldset:focus,
fieldset:active,
.input:focus,
.input:active {
  border-color: #40EAF4;
  background-color: white;
}

input[readonly]:focus,
input[readonly]:active,
fieldset:focus,
fieldset:active {
  border-color: #73F6FF;
  background-color: #f8f8f8;
}

legend {
  padding: 0 0.4em;
  margin: 0 -0.4em;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  height: 12em;
  resize: vertical;
  line-height: 1.4;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=color] {
  height: 2.2em;
  padding: 0.1em;
  cursor: pointer;
}

input[type=checkbox] {
  display: inline-block;
  width: unset;
  cursor: pointer;
}

input[type=radio] {
  display: inline-block;
  width: unset;
  cursor: pointer;
}

input[type=range] {
  cursor: pointer;
}

input[type=file] {
  cursor: pointer;
}

[class*=form_message] {
  border: 2px solid #73F6FF;
  border-radius: 6px;
  width: 100%;
  padding: 0.3em 0.6em;
}

.form_message_success {
  border-color: #16c85e;
  background-color: #2AE776;
  color: #333333;
}

.form_message_error {
  border-color: lighten #F56849, 20%;
  background-color: #fde0da;
  color: #333333;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| BASE: Buttons
|––––––––––––––––––––––––––––––––––––––––––––––––––
|
| The button or submit should by default have button styles,
| but once a class is put on them, they should be wiped of styles so you dont have to backpedal.
|
| If you want to put a class on the button but keep the default styles,
| just add the button class to the classes you want.
|
*/

button {
  display: inline-block;
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 23px;
  min-width: 8em;
  height: 2.5em;
  min-height: 40px;
  background-color: #73F6FF;
  padding: 0.6em 1.4em;
  line-height: 1;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  color: #003482;
  text-align: start;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  overflow: hidden;
  justify-content: center;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .btn {
    align-self: flex-start;
  }
}

.btn:hover,
.btn:focus {
  outline: none;
  border-color: #0058BF;
  background-color: #0058BF;
  color: #ffffff;
}

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

.btn[disabled]:hover,
.btn[disabled]:focus {
  border-color: #003482;
  background-color: #003482;
  color: #ffffff;
}

.btn__text {
  display: inline-block;
  font-size: 18px;
  padding-left: 25px;
  padding-right: 25px;
  background-color: inherit;
  z-index: 20;
  position: relative;
  text-align: center;
  transition: padding 0.2s ease;
}

.btn__icon {
  display: inline-block;
  max-width: 1em;
  max-height: 1em;
}

.btn--border {
  border-color: #003482;
  background: transparent;
  color: #003482;
}

.btn--border:hover,
.btn--border:focus {
  border-color: #0058BF;
  background-color: transparent;
  color: #0058BF;
}

.btn--border .btn__text {
  font-size: 0.7em;
}

.btn--slim {
  min-width: 6em;
  height: 1.6em;
  border-width: 1px;
  padding: 0.4em 1.2em;
  font-weight: normal;
}

.btn--slim .btn__text {
  font-size: 0.7em;
}

.btn--slim .btn__icon {
  max-width: 0.8em;
  max-height: 0.8em;
}

.btn--slim.btn--border .btn__text {
  font-size: 0.6em;
}

.btn--phat {
  min-width: 12em;
  height: 2.8em;
  padding: 0.8em 2.4em;
  font-weight: bold;
}

.btn--phat .btn__text {
  font-size: 0.9em;
}

.btn--phat .btn__icon {
  max-width: 1.2em;
  max-height: 1.2em;
}

.btn--phat.btn--border .btn__text {
  font-size: 0.8em;
}

.btn--stout {
  min-width: unset;
  padding-right: 0.8em;
  padding-left: 0.8em;
}

.btn--square {
  min-width: unset;
  padding: 0.2em;
  width: 2.5em;
  height: 2.5em;
}

.btn--square.btn--slim {
  width: 1.6em;
  height: 1.6em;
}

.btn--square.btn--phat {
  width: 2.8em;
  height: 2.8em;
}

.btn-w1 {
  width: 190px;
}

.btn-w2 {
  width: 162px;
}

.btn-w3 {
  width: 224px;
}

.articles-btn {
  width: 227px;
  min-height: 40px;
  justify-content: center;
}

.articles-btn svg {
  z-index: 99;
}

.articles-btn .btn__text {
  transition: padding 0.2s ease;
}

.articles-btn:hover .btn__text {
  padding-right: 42px;
  padding-left: 42px;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| BASE: Media
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

figure {
  display: block;
  margin: 0;
}

video,
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 100%;
}

.svg-fill {
  fill: currentColor;
}

.svg-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.no-linecap {
  stroke-linecap: unset;
}

.no-linejoin {
  stroke-linejoin: unset;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| UTILITY: Backgrounds
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* === BACKGROUND IMAGE === */

.bg-img {
  display: block;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.bg-img::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.bg-img::after {
  display: block;
  content: "";
}

/* === BACKGROUND OVERLAYS === */

.bg-overlay-lighten::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-overlay-darken::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-overlay-primary::before {
  background-color: rgba(0, 52, 130, 0.8);
}

/* === IMAGE RATIOS === */

.bg-square::after,
.ratio-1-1::after {
  padding-top: 100%;
}

.bg-landscape::after,
.ratio-4-3::after {
  padding-top: 75%;
}

.bg-portrait::after,
.ratio-3-4::after {
  padding-top: 133.333333%;
}

.bg-wide::after,
.ratio-16-9::after {
  padding-top: 56.25%;
}

.bg-tall::after,
.ratio-9-16::after {
  padding-top: 177.777777%;
}

.bg-ultra-wide::after,
.ratio-21-9::after {
  padding-top: 42.8571%;
}

/* === BORDER RADIUS === */

.circle {
  border-radius: 50%;
  overflow: hidden;
}

/* === BACKGROUND ELEMENTS === */

.bg-element {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

/* ==========================================================================
===== COMPONENTS STYLES =====
=
= Here a component is a specific class or set of classes that relate to a singular use or style.
=
========================================================================== */

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Copyblock -- used in multiple text blocks
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.copyblock {
  position: relative;
  padding: 80px 20px 8px 20px;
}

@media (min-width: 480px) {
  .copyblock {
    padding: 100px 50px 100px 50px;
  }
}

@media (min-width: 768px) {
  .copyblock {
    padding: 120px 0 120px 50px;
  }
}

@media (min-width: 1024px) {
  .copyblock {
    padding: 120px 0 120px 100px;
  }
}

@media (max-width: 767px) {
  .copyblock {
    background-color: #ffffff;
  }

  .copyblock:after {
    content: "";
    width: 220px;
    height: 220px;
    background-color: #ffffff;
    position: absolute;
    top: -220px;
    right: 0;
  }
}

.copyblock__label {
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #F69E3A;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .copyblock__label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.copyblock__heading {
  font-size: 34px;
  line-height: 120%;
  font-family: "PT Serif", serif;
  color: #0058BF;
}

@media (min-width: 768px) {
  .copyblock__heading {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .copyblock__heading {
    font-size: 48px;
  }
}

@media (min-width: 1280px) {
  .copyblock__heading {
    font-size: 48px;
  }
}

.copyblock__p {
  color: #333333;
  font-size: 16px;
  letter-spacing: -0.5px;
  line-height: 160%;
}

@media (min-width: 480px) {
  .copyblock__p {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
  .copyblock__p {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .copyblock__p {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .copyblock__p {
    font-size: 18px;
  }
}

.copyblock__md p {
  color: #333333;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 160%;
  margin-bottom: 30px;
  max-width: 550px;
  text-align: center;
}

@media (min-width: 768px) {
  .copyblock__md p {
    font-size: 18px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .copyblock__md p {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .copyblock__md p {
    font-size: 20px;
  }
}

.copyblock__md p:first-child {
  margin-top: 20px;
}

.copyblock__md p:last-child {
  margin-bottom: 0;
}

.copyblock__btn {
  margin-top: 40px;
  align-self: center;
}

@media (min-width: 768px) {
  .copyblock__btn {
    align-self: flex-start;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Transcription
|––––––––––––––––––––––––––––––––––––––––––––––––––
|
| For sections where you want your lists, links and etc. to look nice,
| and so you don't have to backpedal any of the styles where you don't need.
|
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* === Headings === */

.heading {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: inherit;
}

.heading:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.heading:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.heading + p {
  margin-top: 0;
}

.h1,
.transcription h1 {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 3.6rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #0058BF;
}

.h1:first-child,
.transcription h1:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.h1:last-child,
.transcription h1:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.h1 + p,
.transcription h1 + p {
  margin-top: 0;
}

.h2,
.transcription h2 {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #0058BF;
}

.h2:first-child,
.transcription h2:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.h2:last-child,
.transcription h2:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.h2 + p,
.transcription h2 + p {
  margin-top: 0;
}

.h3,
.transcription h3 {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 2rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #0058BF;
}

.h3:first-child,
.transcription h3:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.h3:last-child,
.transcription h3:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.h3 + p,
.transcription h3 + p {
  margin-top: 0;
}

.h4,
.transcription h4 {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #0058BF;
}

.h4:first-child,
.transcription h4:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.h4:last-child,
.transcription h4:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.h4 + p,
.transcription h4 + p {
  margin-top: 0;
}

.h5,
.transcription h5 {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #40EAF4;
}

.h5:first-child,
.transcription h5:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.h5:last-child,
.transcription h5:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.h5 + p,
.transcription h5 + p {
  margin-top: 0;
}

.h6,
.transcription h6 {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #404040;
}

.h6:first-child,
.transcription h6:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.h6:last-child,
.transcription h6:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.h6 + p,
.transcription h6 + p {
  margin-top: 0;
}

.subheading {
  margin: 0 0 32px;
  padding-top: 1em;
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: normal;
  font-family: "PT Serif", serif;
  color: #40EAF4;
}

.subheading:first-child {
  margin-top: -0.25em;
  padding-top: 0;
}

.subheading:last-child {
  margin-bottom: -0.2em;
  padding-bottom: 0;
}

.subheading + p {
  margin-top: 0;
}

.hgroup h2,
.hgroup h3,
.hgroup h4,
.hgroup h5,
.hgroup h6 {
  margin-top: -0.25em;
  margin-bottom: -0.2em;
  padding: 0;
  line-height: 1.7;
}

.hgroup h1 {
  margin-top: -0.25em;
  margin-bottom: -0.2em;
  padding: 0;
  line-height: 140%;
}

/* === Standard Text === */

.copy,
.transcription p {
  margin: 30px 0 0;
  max-width: 860px;
  line-height: 200%;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}

.copy:first-child,
.transcription p:first-child {
  margin-top: 0;
}

.label,
.transcription label {
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
}

.caption {
  line-height: 1.2;
  letter-spacing: 2px;
}

.meta {
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 2px;
  font-family: "Work Sans", sans-serif;
  font-weight: normal;
}

.meta-fix {
  display: inline-block;
}

.small {
  font-size: 0.8rem;
}

.large {
  font-size: 1.2rem;
}

.thin {
  font-weight: 300;
}

.bold {
  font-weight: 700;
}

.midline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.baseline {
  display: inline-flex;
  align-items: baseline;
  vertical-align: baseline;
}

.icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 1em;
  max-height: 1em;
}

.icon svg {
  max-width: inherit;
  max-height: inherit;
}

/* === Anchor Tags === */

.link {
  color: #003482;
  transition: color 200ms ease-in-out;
  cursor: pointer;
}

.link:hover,
.link:focus {
  color: #0058BF;
}

.link:hover .cta-title,
.link:focus .cta-title {
  color: #0058BF;
}

.hyperlink,
.transcription a {
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 0.2em), #73F6FF 0), linear-gradient(transparent calc(100% - 0.2em), #D7FBFD 0);
  background-size: 0 100%, 100% 100%;
  color: inherit;
  transition: background 200ms ease-in-out;
}

.hyperlink:hover,
.transcription a:hover {
  color: inherit;
  background-size: 100% 100%, 100% 100%;
}

/* === List Types === */

.list {
  margin: 30px 0 30px 10px;
  max-width: 860px;
  padding: 0;
  line-height: 1.4;
  list-style: none;
}

.list:first-child {
  margin-top: 0;
}

.list > li {
  margin: 0.8em 0 0;
  padding: 0;
  letter-spacing: -0.5px;
}

.list > li:first-child {
  margin-top: 0;
}

.list > ul,
.list > ol {
  margin-top: 0.8em;
  margin-left: 1.6em;
}

.ul,
.transcription ul {
  margin: 30px 0 30px 10px;
  max-width: 860px;
  padding: 0;
  line-height: 1.4;
  list-style: none;
}

.ul:first-child,
.transcription ul:first-child {
  margin-top: 0;
}

.ul > li,
.transcription ul > li {
  position: relative;
  margin: 0.8em 0 0;
  padding: 0 0 0 1.6em;
  letter-spacing: -0.5px;
}

.ul > li:first-child,
.transcription ul > li:first-child {
  margin-top: 0;
}

.ul > li:before,
.transcription ul > li:before {
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50px;
  background-color: #40EAF4;
  content: "";
}

.ul > li p,
.transcription ul > li p {
  width: auto;
  line-height: 150%;
}

.ul > ul,
.transcription ul > ul,
.ul > ol,
.transcription ul > ol {
  margin-top: 0.8em;
  margin-left: 1.6em;
}

.ol,
.transcription ol {
  margin: 30px 0 30px 10px;
  max-width: 860px;
  padding: 0;
  line-height: 1.4;
  list-style: decimal outside;
}

.ol:first-child,
.transcription ol:first-child {
  margin-top: 0;
}

.ol > li,
.transcription ol > li {
  margin: 0.8em 0 0 0.8em;
  padding: 0 0 0 0.8em;
  list-style: inherit;
}

.ol > li:first-child,
.transcription ol > li:first-child {
  margin-top: 0;
}

.ol > li p,
.transcription ol > li p {
  width: auto;
  line-height: 150%;
}

.ol > ul,
.transcription ol > ul,
.ol > ol,
.transcription ol > ol {
  margin-top: 0.8em;
  margin-left: 1.6em;
}

/* === Blockquote === */

.quote,
.transcription blockquote {
  margin: 1.6rem 0 0;
  max-width: 600px;
  border-left: 0.2em solid #40EAF4;
  padding: 0 0 0 1.2em;
  font-size: 1.2rem;
}

.quote:first-child,
.transcription blockquote:first-child {
  margin-top: 0;
}

.cite,
.transcription cite {
  display: block;
  margin: 0.2em 0 0;
  max-width: 860px;
  padding: 0;
  text-align: right;
  line-height: 1.2rem;
  font-size: 0.8rem;
}

.cite:before,
.transcription cite:before {
  padding: 0 0.5em 0 0;
  content: "\2014";
}

/* === Putting it all together === */

.transcription {
  display: block;
}

/* ===== Extra Componants ===== */

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Section
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* ===== CONTAINERS ===== */

/* === outer === */

.outer {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1600px;
}

.outer--half {
  max-width: 800px;
}

.outer.c-max {
  max-width: 1280px;
}

/* === wrapper === */

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1280px;
}

.wrapper--half {
  max-width: 640px;
}

/* === inner === */

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 860px;
}

.inner--half {
  max-width: 430px;
}

/* ===== WHITESPACE ===== */

/* === frame === */

.frame {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .frame {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .frame {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (min-width: 480px) {
  .sm\:frame {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 480px) and (min-width: 768px) {
  .sm\:frame {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .md\:frame {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .lg\:frame {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

/* === trim === */

.trim {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 480px) {
  .trim {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .trim {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 1024px) {
  .trim {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.trim.killtoptrim {
  padding-top: 0;
}

.trim.killtrim {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 480px) {
  .sm\:trim {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (min-width: 480px) and (min-width: 768px) {
  .sm\:trim {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 768px) {
  .md\:trim {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .lg\:trim {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* === buffer === */

.buffer {
  margin-right: 20px;
  margin-left: 20px;
}

@media (min-width: 480px) {
  .buffer {
    margin-right: 50px;
    margin-left: 50px;
  }
}

@media (min-width: 768px) {
  .buffer {
    margin-right: 100px;
    margin-left: 100px;
  }
}

@media (min-width: 480px) {
  .sm\:buffer {
    margin-right: 50px;
    margin-left: 50px;
  }
}

@media (min-width: 480px) and (min-width: 768px) {
  .sm\:buffer {
    margin-right: 100px;
    margin-left: 100px;
  }
}

@media (min-width: 768px) {
  .md\:buffer {
    margin-right: 100px;
    margin-left: 100px;
  }
}

@media (min-width: 1024px) {
  .lg\:buffer {
    margin-right: 100px;
    margin-left: 100px;
  }
}

/* === gutter === */

.gutter {
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 480px) {
  .gutter {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 1024px) {
  .gutter {
    padding-right: 100px;
    padding-left: 100px;
  }
}

@media (max-width: 479px) {
  .gutter-m-wide {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 480px) {
  .sm\:gutter {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 480px) and (min-width: 768px) {
  .sm\:gutter {
    padding-right: 100px;
    padding-left: 100px;
  }
}

@media (min-width: 768px) {
  .md\:gutter {
    padding-right: 100px;
    padding-left: 100px;
  }
}

@media (min-width: 1024px) {
  .lg\:gutter {
    padding-right: 100px;
    padding-left: 100px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Navigation 
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.nav {
  display: flex;
  margin: -0.5em;
}

.nav__link {
  display: inline-flex;
  padding: 4px 10px;
  color: inherit;
}

.nav__link:hover,
.nav__link:active {
  color: #003482;
}

.nav__text {
  display: inline-block;
  margin-top: 0.1em;
  margin-bottom: -0.2em;
  letter-spacing: 2px;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.nav--h {
  flex-direction: row;
}

.nav--h .nav__link {
  white-space: nowrap;
  line-height: 1;
}

.nav--v {
  flex-direction: column;
}

.nav--v .nav__link {
  line-height: 1.2;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Site Header 
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* ===== LAYOUT ===== */

.header {
  background-color: transparent;
  width: 100vw;
  padding-top: 16px;
  padding-bottom: 16px;
  color: #333333;
  border-bottom: 1px solid #f6f6f6;
}

@media (min-width: 1024px) {
  .header {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

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

.header__inner .btn {
  display: none;
  z-index: 20;
}

@media (min-width: 480px) {
  .header__inner .btn {
    display: flex;
  }
}

.header__logo {
  position: relative;
  z-index: 3;
  color: #1569CC;
}

.header__logo:hover,
.header__logo:focus {
  color: #1569CC;
}

.header__nav {
  display: flex;
  flex-direction: column;
}

.header__subnav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.header__subnav .link {
  transition: color 300ms ease-in-out;
  font-weight: bold;
  color: #13aac3;
}

.header__subnav .link:hover,
.header__subnav .link:active {
  color: #0058BF;
}

.header__subnav .link .meta {
  font-weight: medium;
  letter-spacing: -0.5px;
  font-size: 15px;
}

.header__mainnav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.header__mainnav .link {
  color: inherit;
  transition: color 300ms ease-in-out;
  font-weight: bold;
  color: #003482;
}

.header__mainnav .link:hover,
.header__mainnav .link:active {
  color: #0058BF;
}

.header__mainnav .link .meta {
  font-weight: bold;
  letter-spacing: -0.5px;
  font-size: 20px;
}

.header .menu-button {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: flex-end;
  height: 45px;
  margin-left: 20px;
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header .menu-button {
    display: none;
  }
}

/* ===== COMPONENTS ===== */

.logo {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: auto;
  max-width: 154px;
}

.logo svg {
  width: 100%;
  height: inherit;
  max-height: 58px;
}

@media (min-width: 480px) {
  .logo {
    max-width: 175px;
  }

  .logo svg {
    max-height: 84px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Site Header
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* ===== VARIABLES ===== */

/* ===== LAYOUT ===== */

.menu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  flex-flow: column;
  background-color: #ffffff;
  padding: 0 30px;
  padding-top: 147px;
  line-height: 1;
  font-size: 2.4rem;
  transition: all 0.3s ease-in-out;
  visibility: visible;
  /* === NAVIGATION LINKS === */
}

.menu.open-menu {
  opacity: 1;
  pointer-events: all;
}

.menu:before,
.menu:after {
  position: absolute;
  z-index: 9;
  left: 0;
  width: 100%;
  min-height: 1em;
  content: "";
}

.menu:before {
  top: 200px;
}

.menu__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
}

.menu__inner::before,
.menu__inner::after {
  display: block;
  opacity: 0;
  width: 100%;
  min-height: 1em;
  content: "";
}

.menu__nav {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin: -0.8rem;
  z-index: 10;
}

@media (min-width: 480px) {
  .menu__nav {
    padding-left: 27px;
  }
}

.menu__link {
  display: inline-flex;
  padding: 0.7rem;
  text-transform: capitalize;
  font-family: "PT Serif", serif;
  font-weight: normal;
  font-size: 30px;
  color: #003482;
}

.menu__link .icon:first-child {
  margin-right: 0.5em;
}

.menu__link .icon:last-child {
  margin-left: 0.5em;
}

.menu__subnav {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  max-width: 350px;
}

.menu__subnav .menu__link {
  font-size: 20px;
  font-weight: normal;
  font-family: "Work Sans", sans-serif;
  padding: 0.5rem 0.7rem;
}

.menu__cta {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
  margin-bottom: 13px;
  padding-left: 16px;
  font-weight: normal;
}

@media (min-width: 480px) {
  .menu__cta {
    display: inline-flex;
    flex-direction: unset;
  }
}

.menu__cta .cta-title {
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  color: #003482;
  font-size: 14px;
}

.menu__cta .cta-description {
  font-size: 16px;
  color: #003482;
  font-family: "Work Sans", sans-serif;
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 15px;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent calc(100% - 0.2em), #73F6FF 0), linear-gradient(transparent calc(100% - 0.2em), #D7FBFD 0);
  background-size: 0 100%, 100% 100%;
  color: inherit;
  transition: background 200ms ease-in-out;
}

@media (min-width: 480px) {
  .menu__cta .cta-description {
    margin-left: 29px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.menu__cta .cta-description:hover {
  color: inherit;
  background-size: 100% 100%, 100% 100%;
}

.menu__cta .cta-description.email-padding {
  margin-left: 0;
  margin-top: 10px;
}

@media (min-width: 480px) {
  .menu__cta .cta-description.email-padding {
    margin-left: 33px;
    margin-top: 0;
  }
}

.menu__cta:last-child {
  margin-top: 0;
}

@-webkit-keyframes open_menu {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes open_menu {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes close_menu {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes close_menu {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* === MENU BUTTON === */

.menu-button {
  display: block;
  z-index: 99;
  outline: none;
  border: none;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  background-color: transparent;
  padding: 0.5em;
  font-size: 24px;
  color: inherit;
  transition: background-color 300ms ease;
  cursor: pointer;
}

.menu-button__bar {
  display: block;
  position: absolute;
  top: 0;
  right: 0.5em;
  height: 6px;
  border-radius: 3px;
  background-color: #003482;
  transition: all 300ms ease;
}

.menu-button__bar:nth-child(1) {
  top: calc(0.5em);
  bottom: unset;
  width: 36px;
  align-self: flex-end;
}

.menu-button__bar:nth-child(2) {
  top: unset;
  bottom: calc(0.5em);
  width: 36px;
}

.menu-button:hover,
.menu-button:focus {
  color: #F69E3A;
}

.menu-button[data-state=active],
.menu-button[data-state=activating] {
  visibility: visible;
  color: #ffffff;
}

.menu-button[data-state=active] .menu-button__bar,
.menu-button[data-state=activating] .menu-button__bar {
  visibility: visible;
}

.menu-button[data-state=active] .menu-button__bar:nth-child(1),
.menu-button[data-state=activating] .menu-button__bar:nth-child(1) {
  top: calc(1em - 5px);
  transform: rotate(45deg);
  width: 37px;
  left: 0px;
}

.menu-button[data-state=active] .menu-button__bar:nth-child(2),
.menu-button[data-state=activating] .menu-button__bar:nth-child(2) {
  bottom: calc(1em - 4px);
  transform: rotate(-45deg);
  width: 37px;
  left: 0px;
}

.menu-button[data-state=inactive],
.menu-button[data-state=deactivating] {
  visibility: visible;
}

.menu-button[data-state=inactive] .menu-button__bar,
.menu-button[data-state=deactivating] .menu-button__bar {
  visibility: visible;
}

.menu-button[data-state=inactive] .menu-button__bar:nth-child(1),
.menu-button[data-state=deactivating] .menu-button__bar:nth-child(1) {
  transform: rotate(0);
}

.menu-button[data-state=inactive] .menu-button__bar:nth-child(2),
.menu-button[data-state=deactivating] .menu-button__bar:nth-child(2) {
  transform: rotate(0);
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Site Footer
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.icon-arrow-up {
  color: #0058BF;
}

.footer {
  border-top: 1px solid #eee;
  background-color: #ffffff;
  /* === NAVIGATION === */
  /* === SCROLL TO TOP BUTTON === */
  /* === COPYRIGHT === */
}

.footer__outer {
  position: relative;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer__inner {
  position: relative;
}

.footer__inner .copyright {
  margin-top: 4rem;
  max-width: 290px;
  width: 100%;
  display: flex;
  font-size: 14px;
  color: #333333;
}

@media (min-width: 768px) {
  .footer__inner .copyright {
    justify-content: center;
    max-width: unset;
  }
}

.footer__inner .copyright a {
  color: inherit;
}

.footer__inner .copyright a:hover,
.footer__inner .copyright a:focus {
  color: #13aac3;
}

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

.footer__logo {
  width: 175px;
  height: auto;
  margin-right: 20px;
  color: #1569CC;
}

.footer__logo:hover,
.footer__logo:focus {
  color: #1569CC;
}

.footer__slogan {
  display: none;
  font-size: 16px;
  line-height: 120%;
  color: #0058BF;
  padding-left: 20px;
  letter-spacing: -0.5px;
  border-left: 1px solid #eee;
}

@media (min-width: 768px) {
  .footer__slogan {
    display: block;
    font-size: 18px;
  }
}

.footer__bottom {
  display: flex;
  margin-top: 80px;
  flex-direction: column;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}

.footer__left {
  width: 100%;
}

@media (min-width: 768px) {
  .footer__left {
    width: 40%;
    padding-right: 40px;
  }
}

.footer__left h3 {
  color: #0058BF;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
}

.footer__left a {
  display: inline-block;
  color: #333333;
  font-size: 18px;
  margin-bottom: 15px;
  margin-right: 20px;
  background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#F9B8C7, #F9B8C7);
  background-size: 0.05em 1px, 0.05em 1px, 2px 2px;
  background-repeat: no-repeat, no-repeat, repeat-x;
  text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff, 0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff, 0.12em 0 #fff, -0.12em 0 #fff, 0.15em 0 #fff, -0.15em 0 #fff;
  background-position: 0 95%, 100% 95%, 0 95%;
  text-decoration: none;
  transition: color 0.15s;
}

.footer__left a:hover,
.footer__left a:focus {
  background: 0 0;
  color: #0058BF;
}

.footer .social-icons a {
  display: flex;
  align-items: center;
  background: none;
}

.footer__right {
  width: 100%;
}

@media (min-width: 768px) {
  .footer__right {
    width: 60%;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  color: #003482;
  margin: 10px 0 0 0;
}

.footer .nav__link {
  display: block;
  width: 200px;
  padding: 10px 10px 10px 0;
}

.footer .nav__link:hover,
.footer .nav__link:focus {
  color: #0058BF;
}

.footer .scroll-to-top {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 1px;
  right: 0;
  width: 117px;
  height: 82px;
  padding: 0.25em;
  font-size: 4rem;
  background-color: #ffffff;
  fill: #0058BF;
}

.footer .scroll-to-top svg {
  width: 30px;
  z-index: 2;
}

.footer .scroll-to-top svg path {
  transition: fill 0.35s ease-in-out;
}

.footer .scroll-to-top:hover svg path {
  fill: #0058BF;
}

.footer .copyright {
  justify-self: center;
}

.footer .copyright a {
  font-size: inherit;
  color: inherit;
}

.footer .footer-spacer {
  height: 1px;
  min-width: 223px;
  max-width: 223px;
  margin-right: 96px;
  content: "";
}

.footer .nav-wrapper {
  padding-bottom: 2px;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Banner
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.banner {
  min-height: 560px;
  background-color: #ffffff;
  color: #003482;
  padding-top: 40px;
}

@media (min-width: 480px) {
  .banner {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .banner {
    padding-top: 100px;
  }
}

.banner .banner-trim {
  padding-bottom: 40px;
}

@media (min-width: 480px) {
  .banner .banner-trim {
    padding-bottom: 60px;
  }
}

@media (min-width: 768px) {
  .banner .banner-trim {
    padding-bottom: 100px;
  }
}

.banner #banner-heading-group {
  opacity: 0;
  transition: opacity 1600ms cubic-bezier(0.29, 0.4, 0.15, 0.91) 100ms;
}

.banner #banner-heading-group.site-loaded {
  opacity: 1;
}

.banner--short {
  min-height: 12rem;
}

.banner--full {
  min-height: 100vh;
}

.banner__inner {
  display: flex;
  flex-flow: row;
  align-items: flex-start;
  position: relative;
  justify-content: flex-start;
}

.banner__inner--blog {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .banner__inner--blog .banner__copy {
    width: 90%;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .banner__inner--blog .banner__copy {
    width: 80%;
    padding-top: 40px;
  }
}

@media (min-width: 1280px) {
  .banner__inner--blog .banner__copy {
    width: 80%;
    padding-top: 60px;
  }
}

.banner__inner--blog .banner__copy p {
  max-width: 600px;
}

.banner__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .banner__heading {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.banner__img {
  width: 100%;
  position: relative;
  padding: 60px 20px 40px 20px;
}

@media (min-width: 480px) {
  .banner__img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .banner__img {
    width: 45%;
    padding: 80px 20px 40px 20px;
  }
}

@media (min-width: 1280px) {
  .banner__img {
    width: 45%;
  }
}

.banner__copy {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 768px) {
  .banner__copy {
    width: 60%;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .banner__copy {
    width: 50%;
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1280px) {
  .banner__copy {
    width: 50%;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.banner__copy h4 {
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  color: #F69E3A;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .banner__copy h4 {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 480px;
  }
}

.banner__copy h1 {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 120%;
  color: #0058BF;
}

@media (min-width: 480px) {
  .banner__copy h1 {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .banner__copy h1 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .banner__copy h1 {
    font-size: 52px;
  }
}

.banner__copy p {
  color: #333333;
  font-size: 18px;
  letter-spacing: -0.5px;
  line-height: 140%;
  margin-top: 10px;
}

@media (min-width: 480px) {
  .banner__copy p {
    font-size: 20px;
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .banner__copy p {
    max-width: 520px;
  }
}

.banner__copy .btn {
  margin-top: 40px;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Excerpt
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.card {
  display: flex;
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  background: #003482;
}

.card__content {
  width: 100%;
  padding: 30px;
}

.card__figure {
  width: 100%;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Bard
|––––––––––––––––––––––––––––––––––––––––––––––––––
|
| Layout and styles for anthing built within the bard.
|
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.bard {
  margin-right: auto;
  margin-left: auto;
  max-width: 1280px;
  /*---- for when the bard is used in a section block ---*/
  /* === Alignment === */
}

.bard .bard-block:first-child {
  margin-top: 0;
}

.bard--section {
  margin-left: 0;
  margin-right: 0;
  max-width: 860px;
}

.bard .transcription:first-child > p:first-child::first-letter {
  float: left;
  margin: 0;
  padding: 10px 14px 0 0;
  font-family: Times, serif;
  font-size: calc(4.45rem + 1px);
  color: #0058BF;
  margin-top: 10px;
}

.bard .blockquote {
  max-width: 600px;
  font-family: "PT Serif", serif;
  color: #003482;
  font-size: 24px;
}

.bard .blockquote p {
  color: #003482;
  font-size: 24px;
}

.bard blockquote {
  max-width: 600px;
  font-family: "PT Serif", serif;
  color: #003482;
  font-size: 24px;
  margin: 40px 0 40px 0;
  line-height: 160%;
}

@media (min-width: 768px) {
  .bard blockquote {
    margin: 60px;
  }
}

.bard blockquote p {
  color: #003482;
  font-size: 24px;
  line-height: 160%;
}

.bard img {
  margin-left: -30px;
  margin-right: -30px;
  max-width: calc(100% + 60px);
}

@media (min-width: 480px) {
  .bard img {
    margin-left: -50px;
    margin-right: -50px;
    max-width: calc(100% + 100px);
  }
}

@media (min-width: 768px) {
  .bard img {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    max-width: 100%;
  }
}

.bard p {
  font-size: 16px;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .bard p {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .bard p {
    width: calc(100% + 80px);
  }
}

.bard h2 {
  font-size: 2rem;
}

.bard h3 {
  font-size: 1.6rem;
}

.bard h4,
.bard h5 {
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 2px;
}

.bard h5 {
  color: #40EAF4;
}

.bard hr {
  margin: 3.2rem auto;
  border-color: #f6f6f6;
  border-bottom: none;
  border-width: 2px;
}

.bard hr + * {
  margin-top: 0;
}

@media (min-width: 768px) {
  .bard hr {
    width: calc(100% + 80px);
  }
}

.bard figure,
.bard figcaption {
  margin: 0 auto;
}

.bard figure {
  margin: 60px auto;
}

.bard figure:first-child {
  margin-top: 0;
}

.bard figcaption {
  display: block;
  margin: 19px 0 0;
  text-align: center;
  font-size: 14px;
  font-style: italic;
  line-height: 36px;
}

@media (min-width: 768px) {
  .bard figcaption {
    padding-left: 6px;
  }
}

.bard .double-image {
  display: flex;
  flex-flow: row wrap;
}

.bard .double-image img,
.bard .double-image .bg-img {
  max-width: 50%;
}

.bard .align-full,
.bard .align-wide {
  margin-top: 30px;
  margin-bottom: 30px;
}

.bard .align-left,
.bard .align-right {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.bard .align-full {
  max-width: unset;
  margin-left: -50vw;
  margin-right: -50vw;
}

.bard .align-full > * {
  width: 100%;
  max-width: unset;
}

.bard .align-wide {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

.bard .align-wide > * {
  width: 100%;
  max-width: unset;
}

.bard .align-left,
.bard .align-right {
  width: 100%;
  max-width: 640px;
}

.bard .align-left {
  float: left;
  margin-right: 30px;
}

.bard .align-right {
  float: right;
  margin-left: 30px;
}

@media (min-width: 768px) {
  .bard .bard-block {
    max-width: 860px;
  }
}

@media (min-width: 1024px) {
  .bard .bard-block {
    max-width: 860px;
  }
}

@media (max-width: 767px) {
  .bard .align-left,
  .bard .align-right {
    display: block;
    float: none;
    margin-right: auto;
    margin-left: auto;
    max-width: 860px;
  }
}

@media (max-width: 1023px) {
  .bard .align-wide {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: unset;
  }

  .bard .video-block.align-wide {
    padding-top: 56.25vw;
  }
}

.fancy-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .fancy-quote {
    width: 120%;
    margin-left: -10%;
  }
}

.fancy-quote blockquote.fancy-quote__quote {
  font-family: "PT Serif", serif;
  font-weight: bold;
  font-size: 24px;
  color: #003482;
  text-align: center;
  line-height: 140%;
  max-width: 1024px;
  margin-bottom: 30px;
}

@media (min-width: 480px) {
  .fancy-quote blockquote.fancy-quote__quote {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .fancy-quote blockquote.fancy-quote__quote {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .fancy-quote blockquote.fancy-quote__quote {
    font-size: 36px;
  }
}

.fancy-quote__author {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  color: #F69E3A;
  font-size: 14px;
  text-align: center;
}

.fancy-quote svg {
  width: 60px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  stroke: #2AE776;
}

@media (min-width: 480px) {
  .fancy-quote svg {
    width: 80px;
  }
}

@media (min-width: 768px) {
  .fancy-quote svg {
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .fancy-quote svg {
    width: 100px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Modal 
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* === variables === */

/* === animations === */

@-webkit-keyframes modal_pop_in {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes modal_pop_in {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}

@-webkit-keyframes modal_pop_out {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@keyframes modal_pop_out {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}

@-webkit-keyframes modal_fade_in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal_fade_in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes modal_fade_out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes modal_fade_out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* === content === */

.modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  padding: 0 3rem;
}

.modal::before,
.modal::after {
  display: block;
  position: relative;
  z-index: 899;
  flex-shrink: 0;
  width: 100%;
  height: 5rem;
  content: "";
}

.modal__overlay {
  display: block;
  position: fixed;
  z-index: 991;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  content: "";
}

.modal__close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  left: unset;
  transform: translate(-10px, 10px);
  border-radius: 50%;
  border: 0;
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  line-height: 1;
  font-size: 24px;
  color: blue;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
  cursor: pointer;
}

.modal__close::after {
  display: block;
  padding: 3px 0 0 1px;
  content: "\D7";
}

.modal__close:hover,
.modal__close:focus {
  background-color: blue;
  color: white;
}

.modal > .modal__close {
  position: fixed;
}

.modal__container {
  display: flex;
  position: relative;
  z-index: 998;
  max-width: 100%;
  box-shadow: 0px 0px 20px 4px rgba(0, 0, 0, 0.2);
}

.modal__container .modal__close {
  transform: translate(60%, -60%);
}

.modal--full {
  background-color: #ffffff;
}

.modal--full .modal__container {
  box-shadow: none;
}

.modal[data-state=active] {
  visibility: visible;
}

.modal[data-state=active] .modal__container {
  visibility: visible;
}

.modal[data-state=deactivating] {
  -webkit-animation: modal_fade_out 300ms forwards ease-out;
          animation: modal_fade_out 300ms forwards ease-out;
}

.modal[data-state=deactivating] .modal__container {
  -webkit-animation: modal_pop_out 300ms forwards ease-out;
          animation: modal_pop_out 300ms forwards ease-out;
}

.modal[data-state=inactive] {
  visibility: hidden;
}

.modal[data-state=inactive] .modal__container {
  visibility: hidden;
}

.modal[data-state=activating] {
  -webkit-animation: modal_fade_in 300ms forwards ease-in;
          animation: modal_fade_in 300ms forwards ease-in;
}

.modal[data-state=activating] .modal__container {
  -webkit-animation: modal_pop_in 300ms forwards ease-in;
          animation: modal_pop_in 300ms forwards ease-in;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Pagination
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.pagination {
  display: flex;
  font-size: 1.2rem;
}

.pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.25em;
  border-radius: 6px;
  width: 2em;
  height: 2em;
  background-color: #003482;
  padding: 0.5em;
  line-height: 1;
  vertical-align: baseline;
  text-align: center;
  font-weight: bold;
  font-size: inherit;
  font-family: "Work Sans", sans-serif;
  color: #ffffff;
}

.pagination__item:first-child {
  margin-left: 0;
}

.pagination__item:last-child {
  margin-right: 0;
}

.pagination__link {
  background-color: #003482;
  color: #ffffff;
  transition: background 300ms ease, color 300ms ease;
  cursor: pointer;
}

.pagination__link:hover,
.pagination__link:active {
  background-color: #0058BF;
  color: #ffffff;
}

.pagination__active {
  background-color: #003482;
  color: #003482;
  cursor: default;
}

.pagination__disabled {
  background-color: #0058BF;
  color: #ffffff;
  cursor: not-allowed;
}

.pagination .icon-arrow-left,
.pagination .icon-arrow-right {
  width: 100%;
  max-width: 0.8em;
  max-height: 0.8em;
  stroke-width: 6px;
  stroke: currentColor;
}

.pagination .icon-arrow-left {
  margin-right: 0.1em;
}

.pagination .icon-arrow-right {
  margin-left: 0.1em;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Overflow Image
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.overflow-image-left {
  margin-top: -160px;
}

@media (min-width: 480px) {
  .overflow-image-left {
    margin-top: -160px;
  }
}

@media (min-width: 768px) {
  .overflow-image-left {
    margin-top: -200px;
  }
}

.VueCarousel-pagination .VueCarousel-dot {
  background-color: #333333 !important;
}

.VueCarousel-pagination .VueCarousel-dot--active {
  background-color: #003482 !important;
}

.VueCarousel-navigation .VueCarousel-navigation-button {
  color: #003482 !important;
}

.VueCarousel-navigation .VueCarousel-navigation-prev {
  display: none;
}

.VueCarousel-navigation .VueCarousel-navigation-next[data-v-453ad8cd] {
  height: 46px;
  width: 46px;
  position: absolute;
  right: 46px;
  top: 194px;
  background-color: #003482;
}

.rotator-slide {
  background-color: #404040;
  height: 217px;
}

.rotator-slide .rotator-left {
  background-color: #003482;
  min-width: 222px;
}

.rotator-slide .rotator-right {
  padding: 28px;
}

.rotator-slide .rotator-right .rotator-comments {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 30px;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Logo Row
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.trim-logos {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 480px) {
  .trim-logos {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .trim-logos {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}

.logo-row {
  max-width: 100%;
  display: flex;
}

.logo-row__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .logo-row__inner {
    flex-direction: row;
    align-items: flex-start;
  }
}

.logo-row__label {
  padding-right: 20px;
  color: #F69E3A;
  font-size: 24px;
  font-family: "PT Serif", serif;
  line-height: 120%;
  margin-bottom: 35px;
}

@media (min-width: 480px) {
  .logo-row__label {
    padding-right: 50px;
    min-width: 250px;
    margin-bottom: 55px;
  }
}

@media (min-width: 768px) {
  .logo-row__label {
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .logo-row__label {
    padding-right: 50px;
  }
}

.logo-row__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 700px;
}

.logo-row .imgbox {
  max-width: 100%;
  max-height: 100%;
  justify-self: left;
  align-self: center;
  margin-bottom: 30px;
}

.logo-row .imgbox img {
  display: block;
  width: 100%;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Image plus TXT
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.image-plus-txt {
  overflow: hidden;
  /*---- rt class added to position image at right -------*/
  /*----- else for image at left ----------*/
}

.image-plus-txt .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .image-plus-txt .wrapper {
    flex-direction: row;
    justify-content: flex-end;
  }

  .image-plus-txt .wrapper.image-plus-txt__rt {
    justify-content: flex-start;
  }
}

.image-plus-txt__rt .image-plus-txt__img {
  width: 100%;
  position: relative;
}

@media (min-width: 480px) {
  .image-plus-txt__rt .image-plus-txt__img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .image-plus-txt__rt .image-plus-txt__img {
    position: absolute;
    left: 60%;
    right: unset;
    width: 60%;
  }
}

.image-plus-txt__rt .image-plus-txt__img img {
  margin: 0 auto;
}

@media (min-width: 480px) {
  .image-plus-txt__rt .image-plus-txt__img img {
    margin: unset;
  }
}

.image-plus-txt__rt .image-plus-txt__copy {
  position: relative;
  float: unset;
  width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .image-plus-txt__rt .image-plus-txt__copy {
    width: 50%;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .image-plus-txt__rt .image-plus-txt__copy {
    width: 50%;
  }
}

@media (min-width: 1280px) {
  .image-plus-txt__rt .image-plus-txt__copy {
    width: 50%;
  }
}

.image-plus-txt__img {
  width: 100%;
  position: relative;
}

@media (min-width: 480px) {
  .image-plus-txt__img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .image-plus-txt__img {
    position: absolute;
    left: -10%;
    right: unset;
    width: 60%;
  }
}

@media (min-width: 1280px) {
  .image-plus-txt__img {
    left: 0;
    right: unset;
  }
}

.image-plus-txt__img img {
  margin: 0 auto;
}

@media (min-width: 480px) {
  .image-plus-txt__img img {
    margin: unset;
  }
}

.image-plus-txt__copy {
  position: relative;
  float: right;
  width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .image-plus-txt__copy {
    width: 50%;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .image-plus-txt__copy {
    width: 50%;
  }
}

@media (min-width: 1280px) {
  .image-plus-txt__copy {
    width: 50%;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Image Plus Markdown
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.image-plus-mkdn {
  position: relative;
}

.image-plus-mkdn__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .image-plus-mkdn__wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
}

.image-plus-mkdn__img {
  display: flex;
  justify-content: center;
  align-self: center;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}

@media (min-width: 480px) {
  .image-plus-mkdn__img {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .image-plus-mkdn__img {
    width: 50%;
    padding-left: 0;
    padding-right: 30px;
  }
}

.image-plus-mkdn__copy {
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 0 0 0;
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 480px) {
  .image-plus-mkdn__copy {
    padding: 40px 40px 0 40px;
  }
}

@media (min-width: 768px) {
  .image-plus-mkdn__copy {
    text-align: left;
    width: 60%;
    padding: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .image-plus-mkdn__copy {
    width: 50%;
    padding: 0;
  }
}

.image-plus-mkdn__copy .copyblock__heading {
  font-size: 34px;
}

@media (min-width: 480px) {
  .image-plus-mkdn__copy .copyblock__heading {
    font-size: 36px;
  }
}

@media (min-width: 768px) {
  .image-plus-mkdn__copy .copyblock__heading {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .image-plus-mkdn__copy .copyblock__heading {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .image-plus-mkdn__wrapper.flip {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .image-plus-mkdn__wrapper.flip .image-plus-mkdn__img {
    padding-left: 30px;
    padding-right: 0;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Triple Stats Row
|––––––––––––––––––––––––––––––––––––––––––––––––––
|
| Layout and styles for a row of 3 statistics.
|
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.triple-stat .wrapper {
  display: flex;
  max-width: 80%;
  background: linear-gradient(180deg, #DFFFFF 0%, #FFFFFF 100%);
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (min-width: 768px) {
  .triple-stat .wrapper {
    max-width: 1140px;
  }
}

@media (max-width: 767px) {
  .triple-stat.gutter {
    padding-left: 0;
    padding-right: 0;
  }
}

.triple-stat__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 30px;
}

@media (min-width: 768px) {
  .triple-stat__stat {
    width: 33.333%;
    border-right: 4px solid #ffffff;
  }
}

.triple-stat__stat:last-child {
  border-right: none;
}

.triple-stat__img {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 150px;
}

.triple-stat__number {
  display: flex;
  position: relative;
  font-family: "PT Serif", serif;
  text-align: center;
  justify-content: center;
  z-index: 6;
}

.triple-stat__main {
  font-size: 48px;
  font-weight: bold;
  color: #0058BF;
}

@media (min-width: 768px) {
  .triple-stat__main {
    font-size: 50px;
  }
}

@media (min-width: 1280px) {
  .triple-stat__main {
    font-size: 60px;
  }
}

.triple-stat__sub {
  display: flex;
  flex-direction: row;
  font-size: 30px;
  font-weight: bold;
  color: #0058BF;
  margin-left: 5px;
}

.triple-stat__sub--top {
  align-items: flex-start;
}

.triple-stat__sub--mid {
  align-items: center;
}

.triple-stat__sub--bot {
  align-items: flex-end;
  padding-bottom: 2px;
}

.triple-stat__marker {
  display: flex;
  justify-content: center;
  height: 20px;
  margin-top: 20px;
  margin-bottom: -30px;
}

.triple-stat__marker span {
  display: inline-block;
  width: 50%;
  max-width: 150px;
  height: 8px;
  border-radius: 4px;
  background-color: #13aac3;
}

.triple-stat__copy {
  position: relative;
  z-index: 6;
  color: #333333;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  max-width: 280px;
  margin: 40px auto 20px auto;
}

@media (min-width: 768px) {
  .triple-stat__copy {
    max-width: 200px;
  }
}

.triple-stat__copy p {
  line-height: 140%;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Text + IMG + shape
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.txt-pic-shape {
  position: relative;
}

@media (min-width: 768px) {
  .txt-pic-shape .wrapper:before {
    content: "";
    width: 330px;
    height: 330px;
    background-color: #ffffff;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.txt-pic-shape.gutter {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  .txt-pic-shape .frame.copyblock {
    margin-top: 0;
    padding-bottom: 40px;
  }
}

.txt-pic-shape__copy {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .txt-pic-shape__copy {
    margin-top: 0;
    padding-right: 40px;
    width: 50%;
  }
}

.txt-pic-shape__shape {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 30px 0 30px;
  border-top-left-radius: 160px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 160px;
  background: linear-gradient(156.71deg, #A2F7F7 13.58%, #FFE0E7 89.13%), #97E2E7;
}

@media (min-width: 768px) {
  .txt-pic-shape__shape {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    max-width: 680px;
    border-top-left-radius: 220px;
    border-bottom-right-radius: 220px;
  }
}

@media (min-width: 1024px) {
  .txt-pic-shape__shape {
    border-top-left-radius: 330px;
    border-bottom-right-radius: 330px;
  }
}

.four-points__outer {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}

.four-points__point-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0px;
  margin-bottom: 70px;
  align-items: center;
}

.four-points__point-card:last-child {
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .four-points__point-card {
    width: 50%;
    flex-direction: row;
    align-items: flex-start;
    padding-right: 50px;
  }

  .four-points__point-card:nth-last-child(2) {
    margin-bottom: 0px;
  }
}

.four-points__image {
  width: 100px;
  height: 100px;
  margin-right: 0px;
}

@media (min-width: 768px) {
  .four-points__image {
    margin-right: 30px;
    margin-top: 20px;
  }
}

.four-points__text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .four-points__text {
    display: block;
  }
}

.four-points__title {
  color: #0058BF;
  font: "Work Sans", sans-serif;
  line-height: 120%;
  font-size: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .four-points__title {
    text-align: left;
    font-size: 24px;
  }
}

.four-points__body {
  color: #333333;
  font: "Work Sans", sans-serif;
  line-height: 140%;
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .four-points__body {
    text-align: left;
    font-size: 18px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Horizontal Rule
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.horizontal-rule__line {
  display: block;
  width: 100%;
  height: 4px;
}

.icon-left-points__outer {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}

.icon-left-points__point-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0px;
  margin-bottom: 70px;
  align-items: center;
}

@media (min-width: 768px) {
  .icon-left-points__point-card {
    width: 100%;
    max-width: 800px;
    flex-direction: row;
    align-items: flex-start;
    padding-right: 50px;
  }
}

.icon-left-points__point-card:last-child {
  margin-bottom: 0;
}

.icon-left-points__image {
  width: 100px;
  height: 100px;
  margin-right: 0px;
}

@media (min-width: 768px) {
  .icon-left-points__image {
    margin-right: 30px;
    margin-top: 20px;
  }
}

.icon-left-points__text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .icon-left-points__text {
    display: block;
  }
}

.icon-left-points__title {
  color: #0058BF;
  font: "Work Sans", sans-serif;
  line-height: 120%;
  font-size: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .icon-left-points__title {
    text-align: left;
  }
}

.icon-left-points__body {
  color: #333333;
  font: "Work Sans", sans-serif;
  line-height: 140%;
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .icon-left-points__body {
    text-align: left;
    font-size: 18px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Big Quote
|––––––––––––––––––––––––––––––––––––––––––––––––––
|
| Layout and styles for wide text quote.
|
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.big-quote__outer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.big-quote__quote {
  font-family: "PT Serif", serif;
  font-weight: bold;
  font-size: 24px;
  color: #0058BF;
  text-align: center;
  line-height: 140%;
  max-width: 920px;
}

@media (min-width: 480px) {
  .big-quote__quote {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .big-quote__quote {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .big-quote__quote {
    font-size: 36px;
  }
}

.big-quote__author {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  color: #40EAF4;
  font-size: 16px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .big-quote__author {
    font-size: 18px;
    margin-top: 30px;
  }
}

.big-quote svg {
  width: 80px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  stroke: #F9B8C7;
}

@media (min-width: 480px) {
  .big-quote svg {
    width: 100px;
  }
}

@media (min-width: 768px) {
  .big-quote svg {
    margin-top: 40px;
    width: 120px;
  }
}

@media (min-width: 1024px) {
  .big-quote svg {
    width: 150px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Podcast
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.podcast__episode {
  min-height: 560px;
  padding-top: 40px;
}

@media (min-width: 480px) {
  .podcast__episode {
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .podcast__episode {
    padding-top: 100px;
  }
}

.podcast__episode .player {
  margin-top: 30px;
}

.episode__header,
.podcast__header {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  gap: 30px;
}

@media (min-width: 768px) {
  .episode__header,
  .podcast__header {
    flex-direction: row;
    gap: 50px;
  }
}

.episode__image,
.podcast__image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background-size: cover;
  border-radius: 20px;
}

@media (min-width: 1024px) {
  .episode__image,
  .podcast__image {
    width: 300px;
    height: 300px;
  }
}

.episode__title,
.podcast__title {
  color: #003482;
  margin-bottom: 30px;
  max-width: 525px;
}

.episode__title--lrg,
.podcast__title--lrg {
  font-size: 36px;
  padding-top: 15px;
}

@media (min-width: 768px) {
  .episode__title--lrg,
  .podcast__title--lrg {
    font-size: 48px;
  }
}

.episode__title span,
.podcast__title span {
  font-size: 18px;
  font-family: "Work Sans", sans-serif;
  color: #13aac3;
  display: block;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .episode__title span,
  .podcast__title span {
    font-size: 22px;
  }
}

.episode__summary,
.podcast__summary {
  max-width: 525px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .episode__summary,
  .podcast__summary {
    font-size: 18px;
  }
}

.episode__number,
.podcast__number {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #03bf6a;
}

.episode__date,
.podcast__date {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}

.episode__notes,
.podcast__notes {
  max-width: 680px;
  padding-top: 40px;
}

.episode__notes h4,
.podcast__notes h4 {
  color: #003482;
  margin-bottom: 30px;
}

.episode__listen-on,
.podcast__listen-on {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.episode__listen-on span,
.podcast__listen-on span {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #808080;
}

.episode__listen-on a,
.podcast__listen-on a {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.episode .player,
.podcast .player {
  margin-top: 30px;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast-list__heading {
  font-size: 18px;
  color: #003482;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .podcast-list__heading {
    font-size: 22px;
  }
}

.podcast-list__card {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  gap: 40px;
}

@media (min-width: 480px) {
  .podcast-list__card {
    flex-direction: row;
  }
}

.podcast-list__img {
  width: 100px;
  height: 100px;
  background-size: cover;
  border-radius: 20px;
  flex-shrink: 0;
  transition: 0.2s all ease;
}

@media (min-width: 768px) {
  .podcast-list__img {
    width: 150px;
    height: 150px;
  }
}

@media (min-width: 1024px) {
  .podcast-list__img {
    width: 200px;
    height: 200px;
  }
}

.podcast-list__copy {
  padding-top: 10px;
}

.podcast-list__title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #003482;
}

@media (min-width: 768px) {
  .podcast-list__title {
    font-size: 30px;
  }
}

.podcast-list p {
  font-size: 16px;
}

@media (min-width: 768px) {
  .podcast-list p {
    font-size: 18px;
  }
}

.podcast-list__number {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #03bf6a;
}

.podcast-list__date {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Program Cards Row
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.program-cards {
  /* ----------- BLOCk --------*/
}

.program-cards .wrapper {
  max-width: 1160px;
  justify-content: center;
}

.program-cards.suck-top {
  margin-top: calc(-40px + 20px);
}

@media (min-width: 768px) {
  .program-cards.suck-top {
    margin-top: calc(-60px + 20px);
  }
}

@media (min-width: 1024px) {
  .program-cards.suck-top {
    margin-top: calc(-80px + 20px);
  }
}

@media (min-width: 1280px) {
  .program-cards.suck-top {
    margin-top: calc(-100px + 20px);
  }
}

.program-cards .start {
  align-items: start;
}

.program-cards h3 {
  color: #0058BF;
  font-size: 30px;
  font-weight: bold;
  line-height: 120%;
  font-family: "PT Serif", serif;
  text-align: center;
  margin: 0 auto 80px auto;
}

.program-cards .btn {
  margin: 80px auto 100px auto;
}

.program-cards__grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .program-cards__grid {
    display: grid;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .program-cards__grid {
    grid-column-gap: 40px;
  }
}

.program-cards__grid.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.program-cards__grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.program-cards__grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.program-cards__grid.columns-4 {
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  grid-column-gap: 20px;
}

@media (min-width: 1280px) {
  .program-cards__grid.columns-4 {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

@media (min-width: 1160px) {
  .program-cards__grid.columns-4 {
    grid-column-gap: 30px;
  }
}

@media (min-width: 768px) {
  .program-cards__grid.gutter-sm {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .program-cards__grid.gutter-sm {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media (min-width: 768px) {
  .program-cards__grid.gutter-lg {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

@media (min-width: 1024px) {
  .program-cards__grid.gutter-lg {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

.program-cards__grid.round-sm .image-grid__block img {
  border-radius: 20px;
}

.program-cards__grid.round-lg .image-grid__block img {
  border-radius: 30px;
}

.program-cards__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 30px;
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0px 20px 40px rgba(151, 216, 231, 0.3);
  margin-bottom: 20px;
  max-width: 850px;
}

@media (min-width: 768px) {
  .program-cards__block {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 40px;
  }
}

.program-cards__block:last-child {
  margin-bottom: 0;
}

.program-cards__block h4 {
  color: #0058BF;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.5px;
  margin: 10px 0 0 0;
}

.program-cards__block h5 {
  color: #F69E3A;
  font-size: 14px;
  font-weight: normal;
  line-height: 120%;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 6px 0 0 0;
}

.program-cards__block p {
  color: #333333;
  font-size: 16px;
}

.program-cards__block svg {
  position: relative;
  width: 100px;
  height: auto;
  margin: 0 20px 0 0;
}

.program-cards__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .program-cards__left {
    flex-direction: row;
    align-items: flex-start;
    width: 55%;
  }
}

.program-cards__card-title {
  text-align: center;
  padding-bottom: 30px;
  max-width: 420px;
}

@media (min-width: 768px) {
  .program-cards__card-title {
    text-align: left;
    padding-bottom: 0;
  }
}

.program-cards__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 3px solid #eeeeee;
  padding: 30px 0 0 0;
  max-width: 420px;
}

@media (min-width: 768px) {
  .program-cards__right {
    flex-direction: row;
    align-items: flex-start;
    width: 45%;
    border-top: 0;
    border-left: 3px solid #eeeeee;
    padding-left: 30px;
    padding-top: 0;
    text-align: left;
  }
}

.program-cards__right p span {
  display: block;
  padding-top: 4px;
  color: #003482;
  font-weight: bold;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Program List
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.program-list {
  position: relative;
}

.program-list .wrapper {
  flex-direction: column;
}

@media (min-width: 768px) {
  .program-list .wrapper {
    flex-direction: row;
  }
}

.program-list h3 {
  margin: 0 0 0 0;
  padding-right: 20px;
  color: #F56849;
  font-size: 20px;
  font-family: "PT Serif", serif;
  line-height: 120%;
  text-align: center;
  width: auto;
}

@media (min-width: 768px) {
  .program-list h3 {
    font-size: 24px;
    min-width: 250px;
    width: 250px;
    padding-right: 50px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .program-list h3 {
    padding-right: 50px;
  }
}

.program-list__outer {
  padding-top: 40px;
}

@media (min-width: 768px) {
  .program-list__outer {
    padding-top: 0;
  }
}

.program-list__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 48px 0;
  max-width: 830px;
  border-bottom: 1px solid #eee;
}

.program-list__block:first-child {
  padding-top: 0;
  margin-top: 0;
}

.program-list__block:last-child {
  border: none;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .program-list__block {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.program-list__block svg {
  width: 25%;
  max-width: 175px;
}

.program-list__block img {
  width: 25%;
  max-width: 175px;
}

.program-list__inner {
  width: 75%;
  text-align: center;
  padding-top: 30px;
}

@media (min-width: 768px) {
  .program-list__inner {
    text-align: left;
    padding-right: 40px;
    padding-top: 0;
  }
}

.program-list__title {
  color: #0058BF;
  font-size: 30px;
  line-height: 120%;
  margin: 0 0 30px 0;
  max-width: 450px;
}

.program-list__subtitle {
  display: block;
  color: #F69E3A;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 25px 0;
  max-width: 450px;
}

.program-list__details {
  line-height: 160%;
  padding-bottom: 40px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .program-list__details {
    font-size: 18px;
  }
}

.label-paragraph {
  position: relative;
}

.label-paragraph__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .label-paragraph__text {
    flex-direction: row;
    align-items: flex-start;
  }
}

.label-paragraph__label {
  padding-right: 20px;
  color: #F69E3A;
  font-size: 24px;
  font-family: "PT Serif", serif;
  line-height: 120%;
}

@media (min-width: 768px) {
  .label-paragraph__label {
    padding-right: 50px;
    min-width: 250px;
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .label-paragraph__label {
    padding-right: 50px;
  }
}

.label-paragraph__body {
  max-width: 650px;
  color: #333333;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  line-height: 160%;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .label-paragraph__body {
    margin-top: 0px;
    font-size: 18px;
  }
}

.label-paragraph__body p {
  margin-bottom: 30px;
}

.label-paragraph__body p:last-child {
  margin-bottom: 0;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Faq List
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.faq-list {
  position: relative;
}

.faq-list .wrapper {
  flex-direction: column;
}

@media (min-width: 768px) {
  .faq-list .wrapper {
    flex-direction: row;
  }
}

.faq-list h3 {
  margin: 0 0 0 0;
  padding-right: 20px;
  color: #F56849;
  font-size: 24px;
  font-family: "PT Serif", serif;
  line-height: 120%;
}

@media (min-width: 480px) {
  .faq-list h3 {
    padding-right: 50px;
    min-width: 250px;
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .faq-list h3 {
    padding-right: 50px;
  }
}

.faq-list__outer {
  max-width: 600px;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .faq-list__outer {
    padding-top: 12px;
  }
}

.faq-list__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 30px 0 25px 0;
  max-width: 830px;
  border-bottom: 1px solid #f6f6f6;
}

.faq-list__block:first-child {
  padding-top: 0;
}

.faq-list__block:last-child {
  border: none;
}

@media (min-width: 768px) {
  .faq-list__block {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.faq-list__inner {
  padding-top: 0;
}

@media (min-width: 768px) {
  .faq-list__inner {
    text-align: left;
  }
}

.faq-list__title {
  color: #003482;
  font-size: 24px;
  line-height: 120%;
  margin: 0 0 25px 0;
}

@media (min-width: 768px) {
  .faq-list__title {
    max-width: 450px;
  }
}

.faq-list__details p {
  line-height: 160%;
  padding-bottom: 1.5em;
  font-size: 16px;
}

@media (min-width: 768px) {
  .faq-list__details p {
    font-size: 18px;
  }
}

.faq-list__details p:last-child {
  padding-bottom: 0;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Resource List
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.resource-list {
  position: relative;
}

.resource-list .wrapper {
  flex-direction: column;
}

@media (min-width: 768px) {
  .resource-list .wrapper {
    flex-direction: row;
  }
}

.resource-list h3 {
  margin: 0 0 0 0;
  padding-right: 20px;
  color: #F56849;
  font-size: 24px;
  font-family: "PT Serif", serif;
  line-height: 120%;
}

@media (min-width: 480px) {
  .resource-list h3 {
    padding-right: 50px;
    min-width: 250px;
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .resource-list h3 {
    padding-right: 50px;
  }
}

.resource-list__outer {
  max-width: 600px;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .resource-list__outer {
    padding-top: 12px;
  }
}

.resource-list__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 30px 0 25px 0;
  max-width: 830px;
  border-bottom: 1px solid #f6f6f6;
}

.resource-list__block:first-child {
  padding-top: 0;
}

.resource-list__block:last-child {
  border: none;
}

@media (min-width: 768px) {
  .resource-list__block {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.resource-list__inner {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

@media (min-width: 768px) {
  .resource-list__inner {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .resource-list__info {
    padding-right: 40px;
  }
}

.resource-list__title {
  color: #003482;
  font-size: 20px;
  line-height: 120%;
  margin: 0 0 10px 0;
}

@media (min-width: 768px) {
  .resource-list__title {
    max-width: 450px;
  }
}

.resource-list__subtitle {
  display: block;
  color: #F69E3A;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px 0 25px 0;
}

@media (min-width: 768px) {
  .resource-list__subtitle {
    max-width: 450px;
  }
}

.resource-list__details {
  line-height: 160%;
  padding-bottom: 0;
  font-size: 16px;
}

@media (min-width: 768px) {
  .resource-list__details {
    font-size: 18px;
  }
}

.resource-list .btn {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .resource-list .btn {
    margin-top: 30px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Social Icons
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.social-icons {
  display: flex;
  margin: 20px -0.2em 0 -0.2em;
  font-size: 2rem;
}

.social-icons__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: auto;
  padding: 8px;
}

.social-icons .icon-facebook {
  color: #0058BF;
}

.social-icons .icon-facebook:hover,
.social-icons .icon-facebook:focus {
  color: #3b5998;
}

.social-icons .icon-instagram {
  color: #0058BF;
}

.social-icons .icon-instagram:hover,
.social-icons .icon-instagram:focus {
  color: #bc2a8d;
}

.social-icons .icon-linkedin {
  color: #0058BF;
}

.social-icons .icon-linkedin:hover,
.social-icons .icon-linkedin:focus {
  color: #0077b5;
}

.social-icons .icon-periscope {
  color: #0058BF;
}

.social-icons .icon-periscope:hover,
.social-icons .icon-periscope:focus {
  color: #d75444;
}

.social-icons .icon-pinterest {
  color: #0058BF;
}

.social-icons .icon-pinterest:hover,
.social-icons .icon-pinterest:focus {
  color: #c8232c;
}

.social-icons .icon-soundcloud {
  color: #0058BF;
}

.social-icons .icon-soundcloud:hover,
.social-icons .icon-soundcloud:focus {
  color: #FF5401;
}

.social-icons .icon-twitter {
  color: #0058BF;
}

.social-icons .icon-twitter:hover,
.social-icons .icon-twitter:focus {
  color: #1da1f2;
}

.social-icons .icon-vimeo {
  color: #0058BF;
}

.social-icons .icon-vimeo:hover,
.social-icons .icon-vimeo:focus {
  color: #1ab7ea;
}

.social-icons .icon-youtube {
  color: #0058BF;
}

.social-icons .icon-youtube:hover,
.social-icons .icon-youtube:focus {
  color: #bb0000;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Stagger Image Text
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.stagger-image-text .wrapper {
  max-width: 1400px;
}

.stagger-image-text__row {
  display: flex;
  flex-direction: column;
}

.stagger-image-text__row .stagger-image-text__img {
  border-radius: 40px;
}

@media (min-width: 768px) {
  .stagger-image-text__row {
    flex-direction: row;
  }

  .stagger-image-text__row .stagger-image-text__img {
    border-top-left-radius: 0;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 0;
  }

  .stagger-image-text__row:nth-child(even) {
    flex-direction: row-reverse;
  }

  .stagger-image-text__row:nth-child(even) .stagger-image-text__img {
    border-top-left-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 60px;
  }
}

@media (min-width: 1024px) {
  .stagger-image-text__row {
    margin-bottom: 60px;
  }

  .stagger-image-text__row:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 1400px) {
  .stagger-image-text__row {
    margin-bottom: 80px;
  }

  .stagger-image-text__row .stagger-image-text__img {
    border-radius: 60px;
  }

  .stagger-image-text__row:nth-child(even) .stagger-image-text__img {
    border-radius: 60px;
  }
}

@media (min-width: 768px) {
  .stagger-image-text__wrapper--flip .stagger-image-text__row {
    flex-direction: row-reverse;
  }

  .stagger-image-text__wrapper--flip .stagger-image-text__row .stagger-image-text__img {
    border-top-left-radius: 60px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 60px;
  }

  .stagger-image-text__wrapper--flip .stagger-image-text__row:nth-child(even) {
    flex-direction: row;
  }

  .stagger-image-text__wrapper--flip .stagger-image-text__row:nth-child(even) .stagger-image-text__img {
    border-top-left-radius: 0;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1400px) {
  .stagger-image-text__wrapper--flip .stagger-image-text__row .stagger-image-text__img {
    border-radius: 60px;
  }

  .stagger-image-text__wrapper--flip .stagger-image-text__row:nth-child(even) .stagger-image-text__img {
    border-radius: 60px;
  }
}

.stagger-image-text__img {
  display: block;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% - 40px);
  min-height: 24rem;
  overflow: hidden;
}

.stagger-image-text__img:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.stagger-image-text__img:after {
  display: block;
  content: "";
  padding-top: 54%;
}

@media (min-width: 480px) {
  .stagger-image-text__img {
    width: 80%;
  }

  .stagger-image-text__img:after {
    padding-top: 64%;
  }
}

@media (min-width: 768px) {
  .stagger-image-text__img {
    width: 100%;
  }

  .stagger-image-text__img:after {
    padding-top: 74%;
  }
}

.stagger-image-text__left {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media (min-width: 768px) {
  .stagger-image-text__left {
    width: 50%;
  }
}

.stagger-image-text__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 30px 0 30px;
  margin-bottom: 70px;
}

@media (min-width: 480px) {
  .stagger-image-text__right {
    padding: 40px 40px 0 40px;
  }
}

@media (min-width: 768px) {
  .stagger-image-text__right {
    width: 50%;
    padding: 60px;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .stagger-image-text__right {
    padding: 80px;
  }
}

.stagger-image-text__right .copyblock__heading {
  font-size: 30px;
}

@media (min-width: 480px) {
  .stagger-image-text__right .copyblock__heading {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .stagger-image-text__right .copyblock__heading {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .stagger-image-text__right .copyblock__heading {
    font-size: 42px;
  }
}

.stagger-image-text__row:last-child .stagger-image-text__right {
  margin-bottom: 0;
}

.stagger-image-text__copy {
  max-width: 500px;
}

@media (min-width: 768px) {
  .stagger-image-text__copy {
    max-width: unset;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Tab button /blogs/_buttons.antlers.html -- used in blog templates
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.tag-buttons {
  border-bottom: 1px solid #f6f6f6;
}

.tag-buttons__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 28px 0;
}

.tag-buttons__btn {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 23px;
  height: 30px;
  background-color: #D7FBFD;
  border: 1px solid #D7FBFD;
  padding-right: 16px;
  padding-left: 16px;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 17px;
  font-family: "Work Sans", sans-serif;
  color: #0058BF;
  text-align: start;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  justify-content: center;
  margin-top: 8px;
  margin-right: 6px;
}

@media (min-width: 768px) {
  .tag-buttons__btn {
    height: 34px;
    font-size: 16px;
    line-height: 19px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.tag-buttons__btn:hover,
.tag-buttons__btn:focus {
  border: 1px solid #eeeeee;
  background-color: #ffffff;
  color: #003482;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Text plus points
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.text-points__outer {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .text-points__outer {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}

@media (min-width: 1024px) {
  .text-points__outer {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.text-points__copy {
  display: flex;
  flex-direction: column;
}

.text-points__points {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 10px;
  padding-top: 60px;
}

@media (min-width: 480px) {
  .text-points__points {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .text-points__points {
    display: flex;
    flex-direction: column;
  }
}

.text-points__point {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0px;
}

@media (min-width: 480px) {
  .text-points__point {
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (min-width: 600px) {
  .text-points__point {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .text-points__point {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .text-points__point {
    margin-bottom: 20px;
  }
}

.text-points__point:last-child {
  margin-bottom: 0;
}

.text-points__img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.text-points__title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #0058BF;
  font-family: "PT Serif", serif;
  padding-left: 15px;
  line-height: 120%;
}

@media (min-width: 768px) {
  .text-points__title {
    padding-left: 20px;
    font-size: 20px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Text plus points plus image
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.text-points-image__outer {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .text-points-image__outer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}

@media (min-width: 1024px) {
  .text-points-image__outer {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.text-points-image__copy {
  display: flex;
  flex-direction: column;
}

.text-points-image__points {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 10px;
  padding-top: 60px;
}

@media (min-width: 480px) {
  .text-points-image__points {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    padding-top: 60px;
  }
}

@media (min-width: 768px) {
  .text-points-image__points {
    display: flex;
    flex-direction: column;
  }
}

.text-points-image__point {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0px;
}

@media (min-width: 480px) {
  .text-points-image__point {
    flex-direction: column;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (min-width: 600px) {
  .text-points-image__point {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .text-points-image__point {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .text-points-image__point {
    margin-bottom: 20px;
  }
}

.text-points-image__point:last-child {
  margin-bottom: 0;
}

.text-points-image__img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.text-points-image__title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #0058BF;
  font-family: "PT Serif", serif;
  padding-left: 15px;
  line-height: 120%;
}

@media (min-width: 768px) {
  .text-points-image__title {
    padding-left: 20px;
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .text-points-image__right {
    margin-right: -80px;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| COMPONENTS: Twin Paragraphs
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.twin-paragraphs .wrapper {
  max-width: 1020px;
}

.twin-paragraphs__title {
  color: #0058BF;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .twin-paragraphs__title {
    margin-bottom: 40px;
  }
}

.twin-paragraphs__grid {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

@media (min-width: 768px) {
  .twin-paragraphs__grid {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}

@media (min-width: 1024px) {
  .twin-paragraphs__grid {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}

.twin-paragraphs__paragraph p {
  font-size: 16px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .twin-paragraphs__paragraph p {
    font-size: 18px;
  }
}

.twin-paragraphs__paragraph p:last-child {
  margin-bottom: 0;
}

.twin-paragraphs__paragraph:first-child p:last-child {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .twin-paragraphs__paragraph:first-child p:last-child {
    margin-bottom: 0;
  }
}

.errors {
  padding-bottom: 0;
}

.errors__inner {
  display: flex;
  flex-direction: row;
}

.errors__left {
  display: flex;
  flex-direction: column;
}

.errors__title-group {
  margin-top: 120px;
}

.errors__title {
  font-size: 150px;
  font-family: "Work Sans", sans-serif;
  color: #0058BF;
}

@media (min-width: 480px) {
  .errors__title {
    font-size: 175px;
  }
}

@media (min-width: 768px) {
  .errors__title {
    font-size: 200px;
  }
}

.errors__subtitle {
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  color: #0058BF;
}

@media (min-width: 480px) {
  .errors__subtitle {
    font-size: 18px;
  }
}

.video-block.wrapper {
  max-width: 1000px;
}

.video-block__inner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* 16:9 */
}

.video-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
===== UTILITY STYLES =====
=
=
=
========================================================================== */

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| UTILITY: Text
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.font-serif {
  font-family: Times, serif;
}

.font-sans {
  font-family: "Work Sans", sans-serif;
}

.font-geo {
  font-family: "Work Sans", sans-serif;
}

.letter-space {
  letter-spacing: 2px;
}

.uppercase {
  text-transform: uppercase;
}

.break-words {
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

/* === Font Weight === */

.font-lighter {
  font-weight: lighter;
}

.font-normal {
  font-weight: normal;
}

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

/* === Alignment === */

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

@media (min-width: 480px) {
  .sm\:text-left {
    text-align: left;
  }

  .sm\:text-right {
    text-align: right;
  }

  .sm\:text-center {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .md\:text-left {
    text-align: left;
  }

  .md\:text-right {
    text-align: right;
  }

  .md\:text-center {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-right {
    text-align: right;
  }

  .lg\:text-center {
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .xl\:text-left {
    text-align: left;
  }

  .xl\:text-right {
    text-align: right;
  }

  .xl\:text-center {
    text-align: center;
  }
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| UTILITY: Color
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* === text === */

.text-dark {
  color: #333333;
}

.text-light {
  color: #404040;
}

.text-white {
  color: #ffffff;
}

.text-color {
  color: #333333;
}

.heading-color {
  color: #0058BF;
}

.heading-color-alt {
  color: #40EAF4;
}

.link-color {
  color: #003482;
}

/* === border === */

.border-white {
  border-color: #ffffff;
}

.border-text-color {
  border-color: #333333;
}

.border-primary {
  border-color: #003482;
}

.border-accent {
  border-color: #40EAF4;
}

/* === svg === */

.fill-white {
  fill: #ffffff;
}

.fill-text-color {
  fill: #333333;
}

.fill-primary {
  fill: #003482;
}

.fill-accent {
  fill: #40EAF4;
}

/* === BACKGROUND COLORS === */

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

.bg-off-white {
  background-color: #f8f8f8;
}

.bg-gray {
  background-color: #808080;
}

.bg-off-black {
  background-color: #202020;
}

.bg-primary {
  background-color: #003482;
}

.bg-accent {
  background-color: #40EAF4;
}

.bg-contrast {
  background-color: #003482;
}

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

.bg-border {
  background-color: #73F6FF;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| UTILITY: Extention
|––––––––––––––––––––––––––––––––––––––––––––––––––
|
| For when you want a box to continue outside its parent
|
*/

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

/* === for parent === */

.extend-t {
  position: relative;
}

.extend-t::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: unset;
  left: 0;
  transform: translateY(100%);
  content: "";
}

.extend-r {
  position: relative;
}

.extend-r::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: unset;
  transform: translateX(100%);
  content: "";
}

.extend-b {
  position: relative;
}

.extend-b::before {
  position: absolute;
  top: unset;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(-100%);
  content: "";
}

.extend-l {
  position: relative;
}

.extend-l::before {
  position: absolute;
  top: 0;
  right: unset;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  content: "";
}

/* === for child === */

.put-t {
  position: absolute;
  top: 0;
  bottom: 100%;
}

.put-r {
  position: absolute;
  right: 0;
  left: 100%;
}

.put-b {
  position: absolute;
  top: 100%;
  bottom: 0;
}

.put-l {
  position: absolute;
  right: 100%;
  left: 0;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| UTILITY: Alignment
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

.clearfix::after {
  display: block;
  width: 100%;
  height: 0;
  float: none;
  clear: both;
  content: "";
}

/* ===== ALIGNMENT ===== */

.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/*
|––––––––––––––––––––––––––––––––––––––––––––––––––
| UTILITY: WIDTH
|––––––––––––––––––––––––––––––––––––––––––––––––––
*/

/* ===== MAX WIDTHS ===== */

/* dynamic */

.mxw-text {
  max-width: 860px;
}

.mxw-content {
  max-width: 1280px;
}

.mxw-site {
  max-width: 1600px;
}

/* ===== FORCE FULL ===== */

.force-full {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: unset;
}

/* ==========================================================================
===== PAGE SECTION STYLES =====
=
=
========================================================================== */

.home-intro-wrapper {
  padding-bottom: 0px;
}

@media (min-width: 480px) {
  .home-intro-wrapper {
    padding-bottom: 96px;
  }
}

@media (min-width: 768px) {
  .home-intro-wrapper {
    padding-bottom: 128px;
  }
}

.home-intro .arrow-right-container {
  height: 22px;
  width: 22px;
}

.home-intro__label {
  padding-top: 0;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .home-intro__label {
    padding-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  .home-intro__label {
    padding-right: 36px;
  }
}

@media (min-width: 768px) {
  .home-intro__label p {
    padding-top: 8px;
  }
}

.home-intro .intro-paragraph {
  margin-bottom: 32px;
  font-size: 20px;
}

@media (min-width: 480px) {
  .home-intro .intro-paragraph {
    margin-bottom: 62px;
    font-size: 24px;
  }
}

.stat-card-container {
  flex-wrap: wrap;
}

@media (min-width: 849px) {
  .stat-card-container {
    flex-wrap: nowrap;
  }
}

.stat-card {
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 50px 20px 70px 59px;
  align-items: flex-start;
  border-bottom: 2px solid #ffffff;
}

@media (min-width: 480px) {
  .stat-card {
    flex-direction: row;
    align-items: center;
    padding-left: 49px;
    margin-bottom: 18px;
    border-bottom: none;
  }
}

@media (min-width: 580px) {
  .stat-card {
    padding-left: 59px;
  }
}

@media (min-width: 849px) {
  .stat-card {
    flex-direction: column;
    margin-right: 28px;
    padding-top: 60px;
    padding-right: 2%;
    padding-bottom: 60px;
    padding-left: 50px;
    align-items: stretch;
    margin-bottom: 0;
  }

  .stat-card .stat-card-left {
    margin-right: 0;
  }

  .stat-card .vertical-line {
    display: none;
  }

  .stat-card .vertical-line {
    display: none;
  }
}

.stat-card:before {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 2px;
  height: calc(100% - 28px);
  background-color: #ffffff;
}

.stat-card:after {
  content: "";
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: calc(100% - 28px);
  height: 15px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.stat-card:last-child {
  margin-right: 0;
  border-bottom: none;
}

.stat-card:hover {
  cursor: default;
}

.stat-card__title span {
  font-size: 48px;
}

.stat-card__heading {
  color: #40EAF4;
  line-height: 140%;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 580px) {
  .stat-card__heading {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

@media (min-width: 1024px) {
  .stat-card__heading {
    letter-spacing: 1px;
  }
}

@media (min-width: 1150px) {
  .stat-card__heading {
    letter-spacing: 2px;
  }
}

.stat-card .stat-card-left {
  width: 100%;
  min-width: 150px;
  margin-right: 18px;
}

@media (min-width: 480px) {
  .stat-card .stat-card-left {
    width: 30%;
    min-width: 150px;
  }
}

@media (min-width: 580px) {
  .stat-card .stat-card-left {
    width: 30%;
    min-width: 180px;
  }
}

.stat-card .vertical-line {
  display: none;
}

@media (min-width: 480px) {
  .stat-card .vertical-line {
    display: block;
  }
}

@media (min-width: 849px) {
  .stat-card .vertical-line {
    display: none;
  }
}

.stat-card .card-paragraph {
  width: 100%;
  padding-left: 0;
  padding-right: 18px;
  margin-top: 20px;
  line-height: 1.4;
}

@media (min-width: 480px) {
  .stat-card .card-paragraph {
    width: 70%;
    max-width: 300px;
    margin-top: 0;
    padding-left: 30px;
  }
}

@media (min-width: 580px) {
  .stat-card .card-paragraph {
    padding-left: 40px;
  }
}

@media (min-width: 849px) {
  .stat-card .card-paragraph {
    width: 100%;
    padding: 0;
    margin-top: 16px;
  }
}

.overflow-heading {
  max-width: 275px;
  font-size: 48px;
}

@media (min-width: 1024px) {
  .overflow-heading {
    max-width: 343px;
    font-size: 64px;
  }
}

.overflow-paragraph {
  max-width: 295px;
}

@media (min-width: 480px) {
  .overflow-paragraph {
    max-width: 467px;
  }
}

.overflow-image-text {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0;
}

@media (min-width: 480px) {
  .overflow-image-text {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .overflow-image-text {
    padding-right: 30px;
  }
}

@media (min-width: 1150px) {
  .overflow-image-text {
    padding-right: 0px;
  }
}

@media (min-width: 1280px) {
  .overflow-image-text {
    padding: 0 6rem 6rem 0;
  }
}

.accent-lines {
  max-width: 586px;
}

@media (min-width: 480px) {
  .accent-lines {
    padding: 0 0 20px 20px;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
  }
}

@media (min-width: 768px) {
  .medium-762 {
    width: 762px;
  }
}

.overflow-section-wrapper {
  padding-bottom: 0px;
}

@media (min-width: 480px) {
  .overflow-section-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 1024px) {
  .overflow-section-wrapper {
    padding-left: 70px;
    padding-right: 70px;
  }
}

.home-summary-section {
  position: relative;
  width: calc(100% + 30px);
}

@media (min-width: 480px) {
  .home-summary-section {
    width: calc(100% + 50px);
  }
}

@media (min-width: 768px) {
  .home-summary-section {
    width: unset;
  }
}

.summary-left-wrapper {
  z-index: 20;
}

.home-summary-left {
  margin-left: 0px;
}

.home-summary-left .summary-heading {
  font-size: 48px;
  max-width: 350px;
}

@media (min-width: 768px) {
  .home-summary-left {
    width: 432px;
  }
}

@media (min-width: 1024px) {
  .home-summary-left .summary-heading {
    font-size: 64px;
    max-width: 400px;
  }
}

.summary-right-container {
  margin-left: -30px;
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #003482;
  z-index: 20;
}

@media (min-width: 480px) {
  .summary-right-container {
    padding-bottom: 96px;
    margin-left: -50px;
  }
}

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

@media (min-width: 768px) {
  .summary-right-container {
    padding-bottom: 128px;
    margin: 0;
  }
}

.home-summary-right .grid-title {
  padding-left: 30px;
  color: #40EAF4;
}

@media (min-width: 560px) {
  .home-summary-right .grid-title {
    padding-left: 0;
  }
}

.summary-images-wrapper {
  max-width: 566px;
}

.summary-images-wrapper .main-grid-img-box {
  max-height: 532px;
  overflow: hidden;
}

.summary-images-wrapper .main-grid-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.bottom-image-container {
  height: auto;
  width: 100%;
}

.bottom-image-wrapper:nth-child(1) {
  margin-right: 20px;
}

.blog-articles-section {
  padding-top: 60px;
}

@media (min-width: 480px) {
  .blog-articles-section {
    padding-top: 96px;
  }
}

@media (min-width: 768px) {
  .blog-articles-section {
    padding-top: 60px;
  }
}

.blog-intro-title {
  font-size: 48px;
}

@media (min-width: 1024px) {
  .blog-intro-title {
    font-size: 64px;
  }
}

h3.articles__heading {
  color: #F56849;
  margin: 60px 0 40px 0;
}

/*-----------------------
==== Blog Grid ======
---------------------------*/

.blog-grid {
  display: flex;
  flex-direction: column;
}

@media (min-width: 480px) {
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }
}

.blog-grid__card {
  margin-bottom: 30px;
  transition: all 2s ease;
}

@media (min-width: 480px) {
  .blog-grid__card {
    margin-bottom: 0;
  }
}

.blog-grid__card:hover .blog-grid__img,
.blog-grid__card:focus .blog-grid__img {
  opacity: 1;
}

.blog-grid__card:hover .blog-grid__title,
.blog-grid__card:focus .blog-grid__title {
  color: #13aac3;
}

.blog-grid__img {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 0 20px;
  padding-top: 60%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .blog-grid__img {
    margin-bottom: 30px;
  }
}

.blog-grid__title {
  color: #0058BF;
  font-size: 20px;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .blog-grid__title {
    font-size: 22px;
  }
}

/*-----------------------
==== Pagination ======
---------------------------*/

.paginate {
  align-self: flex-end;
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.paginate a:first-child {
  display: none;
}

.paginate .paginate-prev {
  margin-right: 30px;
}

.paginate .paginate-next {
  margin-left: 30px;
}

.paginate-blog {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 104px;
}

.paginate-blog .pag-btn {
  margin-right: 12px;
  width: 52px;
  height: 50px;
  background: #ffffff;
  border: 2px solid #EFEEEE;
  box-sizing: border-box;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F56849;
  padding: 10px;
  transition: all 0.3s ease;
}

.paginate-blog .pag-btn:hover,
.paginate-blog .pag-btn:focus {
  background: #D7FBFD;
  border: 2px solid #D7FBFD;
  color: #003482;
}

.paginate-blog .pag-btn.active {
  background: #D7FBFD;
  border: 2px solid #D7FBFD;
  color: #003482;
}

.paginate-blog__end {
  color: #F56849;
}

.paginate-blog__middle {
  color: #133F68;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
}

.paginate-prev {
  align-items: center;
  color: #40EAF4;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.paginate-prev span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #40EAF4;
  border-top: 2px solid #40EAF4;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}

.paginate-prev:hover,
.paginate-prev:focus {
  color: #003482;
}

.paginate-prev:hover span,
.paginate-prev:focus span {
  border-color: #003482;
}

.paginate-next {
  align-items: center;
  color: #40EAF4;
  padding-right: 20px;
  transition: all 0.3s ease;
}

.paginate-next span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 2px solid #40EAF4;
  border-top: 2px solid #40EAF4;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}

.paginate-next:hover,
.paginate-next:focus {
  color: #0058BF;
}

.paginate-next:hover span,
.paginate-next:focus span {
  border-color: #0058BF;
}

/*-----------------
=== Blog Post -- show.antlers.html =====
--------------------------*/

.blog-post__wrapper {
  max-width: 820px;
  padding-top: 100px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__meta {
  color: #F69E3A;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .blog-post__meta {
    font-size: 18px;
  }
}

.blog-post__title {
  font-size: 42px;
  color: #0058BF;
  margin: 20px 0 30px 0;
}

@media (min-width: 768px) {
  .blog-post__title {
    font-size: 56px;
    margin: 30px 0 40px 0;
  }
}

.blog-post__intro {
  font-size: 18px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .blog-post__intro {
    font-size: 20px;
    margin-bottom: 60px;
  }
}

.blog-post__img {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  width: 120%;
  margin-left: -10%;
}

@media (min-width: 768px) {
  .blog-post__img {
    margin-bottom: 60px;
  }
}

/*-----------------
=== Related Posts -- show.antlers.html =====
--------------------------*/

.related-posts__wrapper {
  padding-top: 50px;
}

@media (min-width: 480px) {
  .related-posts__wrapper {
    padding-top: 100px;
  }
}

.related-posts__inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 480px) {
  .related-posts__inner {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) 1.5fr 1.5fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media (min-width: 768px) {
  .related-posts__inner {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }
}

.related-posts__header {
  font-size: 24px;
  color: #F69E3A;
  margin-bottom: 60px;
}

@media (min-width: 480px) {
  .related-posts__header {
    margin-botto: 0;
  }
}

@media (min-width: 768px) {
  .related-posts__header {
    font-size: 24px;
  }
}

.related-posts__card {
  margin-bottom: 40px;
  transition: all 2s ease;
}

@media (min-width: 480px) {
  .related-posts__card {
    margin-bottom: 0;
  }
}

.related-posts__card:hover .related-posts__img {
  opacity: 1;
}

.related-posts__img {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 0 20px;
  padding-top: 60%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .related-posts__img {
    margin-bottom: 30px;
  }
}

.related-posts__title {
  color: #0058BF;
  font-size: 20px;
}

@media (min-width: 768px) {
  .related-posts__title {
    font-size: 22px;
  }
}

/*----------------------
===== Tag view ====
-------------------------*/

.trim-no-banner {
  padding-top: 78px;
}

@media (min-width: 1024px) {
  .trim-no-banner {
    padding-top: 106px;
  }
}

.contact-section .wrapper {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-section .wrapper {
    flex-direction: row;
  }
}

.contact-section__title {
  margin: 0 0 0 0;
  padding-right: 20px;
  color: #F69E3A;
  font-size: 24px;
  font-family: "PT Serif", serif;
  line-height: 120%;
}

@media (min-width: 480px) {
  .contact-section__title {
    padding-right: 50px;
    min-width: 250px;
    width: 250px;
  }
}

@media (min-width: 1024px) {
  .contact-section__title {
    padding-right: 50px;
  }
}

.contact-section__main {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .contact-section__main {
    flex-direction: row;
  }
}

.contact-section__form {
  min-width: 300px;
  max-width: 375px;
  margin-right: 50px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .contact-section__form {
    margin-right: 40px;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .contact-section__form {
    margin-right: 50px;
  }
}

@media (min-width: 1280px) {
  .contact-section__form {
    margin-right: 100px;
  }
}

.contact-section__right {
  margin-top: 80px;
  color: #003482;
}

@media (min-width: 1024px) {
  .contact-section__right {
    margin-top: 0;
  }
}

.contact-section__right h4 {
  font-size: 20px;
}

@media (min-width: 1280px) {
  .contact-section__right h4 {
    font-size: 24px;
  }
}

.contact-section__right p {
  margin-top: 20px;
}

.contact-section__info {
  margin-top: 20px;
}

.contact-section__info a {
  display: flex;
  align-items: center;
  color: #003482;
  font-size: 17px;
  margin-bottom: 20px;
  margin-right: 20px;
  text-decoration: none;
  transition: color 0.15s;
}

@media (min-width: 1280px) {
  .contact-section__info a {
    font-size: 18px;
  }
}

.contact-section__info a:hover,
.contact-section__info a:focus {
  background: 0 0;
  color: #40EAF4;
}

.contact-section__info svg {
  width: 20px;
  height: 20px;
  height: auto;
  margin-right: 15px;
}

@media (min-width: 768px) {
  .contact-section__info svg {
    display: none;
  }
}

@media (min-width: 1280px) {
  .contact-section__info svg {
    display: block;
  }
}

input,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  box-sizing: border-box;
}

label {
  box-sizing: border-box;
}

textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

input[type=email],
input[type=text],
input[type=tel] {
  background-color: white;
  height: calc(3em + 2px);
  padding: 1em;
  font-size: 1em;
  border: 1px solid #73F6FF;
  border-radius: 6px;
  transition: all 0.2s ease-out;
  box-shadow: none;
  resize: none;
  outline: none;
}

input[type=email]:hover,
input[type=text]:hover,
input[type=tel]:hover {
  border: 1px solid #73F6FF;
}

input[type=email]:focus,
input[type=email]:active,
input[type=text]:focus,
input[type=text]:active,
input[type=tel]:focus,
input[type=tel]:active {
  border: 1px solid #e87e22;
}

input[type=email]:focus + label:before,
input[type=email]:active + label:before,
input[type=text]:focus + label:before,
input[type=text]:active + label:before,
input[type=tel]:focus + label:before,
input[type=tel]:active + label:before {
  color: #e87e22;
}

input[type=email] + label,
input[type=text] + label,
input[type=tel] + label {
  display: block;
  font-size: 1em;
  height: 3em;
  line-height: 3em;
  margin-top: calc(-3em - 1px);
  margin-bottom: 1em;
  pointer-events: none;
}

input[type=email] + label:before,
input[type=text] + label:before,
input[type=tel] + label:before {
  content: attr(placeholder);
  display: inline-block;
  color: #333333;
  margin: 0 calc(1em + 2px);
  white-space: nowrap;
  transition-property: transform, color;
  transition-duration: 0.2s;
  transition-delay: 0;
  transition-timing-function: ease-out;
  transform-origin: left center;
}

input[type=email]:focus + label:before,
input[type=email].active + label:before,
input[type=email]:valid + label:before,
input[type=text]:focus + label:before,
input[type=text].active + label:before,
input[type=text]:valid + label:before,
input[type=tel]:focus + label:before,
input[type=tel].active + label:before,
input[type=tel]:valid + label:before {
  background: white;
  line-height: 1;
  padding: 0 1.5px;
  transform: translateY(calc(-3em / 2 - 1px/2)) scale(0.8, 0.8);
}

input[type=email]:valid,
input[type=text]:valid,
input[type=tel]:valid {
  border: 1px solid #23a045;
}

input[type=email]:valid + label:before,
input[type=text]:valid + label:before,
input[type=tel]:valid + label:before {
  content: attr(alt);
  color: #23a045;
}

textarea {
  background-color: white;
  height: calc(15em + 2px);
  padding: 1em;
  font-size: 1em;
  border: 1px solid #73F6FF;
  border-radius: 6px;
  transition: all 0.2s ease-out;
  box-shadow: none;
  resize: none;
  outline: none;
}

textarea:hover {
  border: 1px solid #73F6FF;
}

textarea:focus,
textarea:active {
  border: 1px solid #e87e22;
}

textarea:focus + label:before,
textarea:active + label:before {
  color: #e87e22;
}

textarea + label {
  display: block;
  font-size: 1em;
  height: calc(15em + 2px);
  line-height: 1;
  padding-top: calc(1em + 1px);
  margin-top: calc(-15em - 2px);
  margin-bottom: 1em;
  pointer-events: none;
}

textarea + label:before {
  content: attr(placeholder);
  display: inline-block;
  color: #333333;
  margin: 0 calc(1em + 2px);
  white-space: nowrap;
  transition-property: transform, color;
  transition-duration: 0.2s;
  transition-delay: 0;
  transition-timing-function: ease-out;
  transform-origin: left center;
}

textarea:focus + label:before,
textarea.active + label:before,
textarea:valid + label:before {
  background: white;
  line-height: 1;
  padding: 0 1.5px;
  transform: translateY(calc((-1em - 0.5em) - 0.5px)) scale(0.8, 0.8);
}

textarea:valid {
  border: 1px solid #23a045;
}

textarea:valid + label:before {
  content: attr(alt);
  color: #23a045;
}

.vertical-line {
  border-left: 1px solid #003482;
  height: 78px;
}

.horizontal-line {
  border-bottom: 1px solid #003482;
  width: 78px;
}

.mb-44 {
  margin-bottom: 44px;
}

.mb-53 {
  margin-bottom: 53px;
}

.mr-112 {
  margin-right: 112px !important;
}

.pl-113 {
  padding-left: 113px;
}

.px-9 {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.p-28 {
  padding: 28px !important;
}

.pl-28 {
  padding-left: 28px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pl-59 {
  padding-left: 59px !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.px-14 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.pt-46 {
  padding-top: 46px !important;
}

.pt-199 {
  padding-top: 199px !important;
}

.w-227 {
  width: 227px;
}

.patterns {
  height: 100%;
  width: 100%;
  background-color: #152747;
  position: absolute;
  top: 0px;
  left: 0px;
}

.animated-link {
  width: 280px;
  height: 30px;
  transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
}

.animated-link p {
  transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
}

.animated-link svg {
  transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
}

.animated-link svg path {
  transition: all 0.35s cubic-bezier(0.46, 0.01, 0.32, 1);
}

.animated-link:hover p {
  color: #0058BF;
}

.animated-link:hover svg {
  margin-left: 6px;
}

.animated-link:hover svg path {
  stroke: #0058BF;
}

