@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
checking


*********************/
@layer boilerplate,theme;
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/**
  Fonts
 */
/*
 i imported this one in the functions file so brafton would look sweet.
 don't forget to remove it for your site.
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button .wp-block-button__link, .btn, .nav.global-nav li.button a, #submit, .comment-reply-link, .btn:visited, .comment-reply-link:visited {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #F8F9FA;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 1.12px;
  padding: 0.75em 1em;
  border: 1px solid #1C7E86;
  cursor: pointer;
  border-radius: 0;
  margin-top: 1rem;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.wp-block-button .wp-block-button__link:hover, .btn:hover, .nav.global-nav li.button a:hover, #submit:hover, .comment-reply-link:hover, .wp-block-button .wp-block-button__link:focus, .btn:focus, .nav.global-nav li.button a:focus, #submit:focus, .comment-reply-link:focus {
  color: #F8F9FA;
  text-decoration: none;
  outline: none;
}
.wp-block-button .wp-block-button__link:active, .btn:active, .nav.global-nav li.button a:active, #submit:active, .comment-reply-link:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.btn, .nav.global-nav li.button a, #submit, .comment-reply-link, .btn:visited, .comment-reply-link:visited {
  background-color: #1C7E86;
}
.btn:hover, .nav.global-nav li.button a:hover, #submit:hover, .comment-reply-link:hover, .btn:focus, .nav.global-nav li.button a:focus, #submit:focus, .comment-reply-link:focus, .btn:visited:hover, .btn:visited:focus {
  background-color: #F8F9FA;
  border: 1px solid #1C7E86;
  color: #1C7E86;
}
.btn:active, .nav.global-nav li.button a:active, #submit:active, .comment-reply-link:active, .btn:visited:active {
  background-color: #2472a4;
}

.wp-block-button {
  container: inline-size;
}
.wp-block-button .wp-block-button__link {
  background-color: #1C7E86;
}
.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus {
  background-color: #F8F9FA;
  border: 1px solid #1C7E86;
  color: #1C7E86;
}
.wp-block-button .wp-block-button__link:active {
  background-color: #e9ecef;
}

.wp-block-button.is-style-secondary .wp-block-button__link {
  background-color: #F8F9FA;
  color: #1C7E86;
}
.wp-block-button.is-style-secondary .wp-block-button__link:hover, .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  background-color: #1C7E86;
  border: 1px solid #F8F9FA;
  color: #F8F9FA;
}
.wp-block-button.is-style-secondary .wp-block-button__link:active {
  background-color: #e9ecef;
}
.wp-block-button.is-style-arrow-link {
  margin-block-start: 1rem;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link {
  color: #1C7E86;
  background-color: transparent;
  padding: 0;
  display: flex;
  font-weight: bold;
  border: 0;
  text-align: left;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link:after {
  content: "\eb20";
  font-family: "lineicons";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  font-size: 0.5em;
  padding-left: 0.25em;
  transition: 0.5s padding ease-in;
  width: 2em;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link:hover {
  text-decoration: underline;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link:hover:after {
  padding-left: 0.75em;
  text-decoration: none;
}
.wp-block-button.is-style-loopy-arrow {
  position: relative;
}
.wp-block-button.is-style-loopy-arrow a {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wp-block-button.is-style-loopy-arrow a:before {
    content: "";
    display: block;
    background-image: url("../images/cta_arrow.png");
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 75px;
    transform: translate(-85%);
    top: 0;
  }
}
@layer boilerplate {
  /* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
  /* ==========================================================================
     HTML5 display definitions
     ========================================================================== */
  /**
   * Correct `block` display not defined in IE 8/9.
   */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  nav,
  section,
  summary {
    display: block;
  }
  /**
   * Correct `inline-block` display not defined in IE 8/9.
   */
  audio,
  canvas,
  video {
    display: inline-block;
  }
  /**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  /**
   * Address `[hidden]` styling not present in IE 8/9.
   * Hide the `template` element in IE, Safari, and Firefox < 22.
   */
  [hidden],
  template {
    display: none;
  }
  /* ==========================================================================
     Base
     ========================================================================== */
  /**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS text size adjust after orientation change, without disabling
   *    user zoom.
   */
  html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
  }
  /**
   * Remove default margin.
   */
  body {
    margin: 0;
  }
  /* ==========================================================================
     Links
     ========================================================================== */
  /**
   * Remove the gray background color from active links in IE 10.
   */
  a {
    background: transparent;
  }
  /**
   * Address `outline` inconsistency between Chrome and other browsers.
   */
  a:focus {
    outline: thin dotted;
  }
  /**
   * Improve readability when focused and also mouse hovered in all browsers.
   */
  a:active,
  a:hover {
    outline: 0;
  }
  /* ==========================================================================
     Typography
     ========================================================================== */
  /**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari 5, and Chrome.
   */
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  /**
   * Address styling not present in IE 8/9, Safari 5, and Chrome.
   */
  abbr[title] {
    border-bottom: 1px dotted;
  }
  p, ul, li {
    font-weight: 300;
  }
  /**
   * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
   */
  b,
  strong,
  .strong {
    font-weight: bold;
  }
  /**
   * Address styling not present in Safari 5 and Chrome.
   */
  dfn,
  em,
  .em {
    font-style: italic;
  }
  /**
   * Address differences between Firefox and other browsers.
   */
  hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
  }
  /*
   * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
  */
  p {
    -webkit-hyphens: auto;
    -epub-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
  /*
   * Addresses margins set differently in IE6/7.
   */
  pre {
    margin: 0;
  }
  /**
   * Correct font family set oddly in Safari 5 and Chrome.
   */
  code,
  kbd,
  pre,
  samp {
    font-family: monospace, serif;
    font-size: 1em;
  }
  /**
   * Improve readability of pre-formatted text in all browsers.
   */
  pre {
    white-space: pre-wrap;
  }
  /**
   * Set consistent quote types.
   */
  q {
    quotes: "“" "”" "‘" "’";
  }
  /**
   * Address inconsistent and variable font size in all browsers.
   */
  q:before,
  q:after {
    content: "";
    content: none;
  }
  small, .small {
    font-size: 75%;
  }
  /**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sup {
    top: -0.5em;
  }
  sub {
    bottom: -0.25em;
  }
  /* ==========================================================================
    Lists
  ========================================================================== */
  /*
   * Addresses margins set differently in IE6/7.
   */
  dl,
  menu,
  ol,
  ul {
    margin: 1em 0;
  }
  dd {
    margin: 0;
  }
  /*
   * Addresses paddings set differently in IE6/7.
   */
  menu {
    padding: 0 0 0 40px;
  }
  ul {
    padding: 0;
  }
  ol {
    padding: 0;
  }
  /*
   * Corrects list images handled incorrectly in IE7.
   */
  nav ul,
  nav ol {
    list-style: none;
    list-style-image: none;
  }
  /* ==========================================================================
    Embedded content
  ========================================================================== */
  /**
   * Remove border when inside `a` element in IE 8/9.
   */
  img {
    border: 0;
  }
  /**
   * Correct overflow displayed oddly in IE 9.
   */
  svg:not(:root) {
    overflow: hidden;
  }
  /* ==========================================================================
     Figures
     ========================================================================== */
  /**
   * Address margin not present in IE 8/9 and Safari 5.
   */
  figure {
    margin: 0;
  }
  /* ==========================================================================
     Forms
     ========================================================================== */
  /**
   * Define consistent border, margin, and padding.
   */
  fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  }
  /**
   * 1. Correct `color` not being inherited in IE 8/9.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
  legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
  }
  /**
   * 1. Correct font family not being inherited in all browsers.
   * 2. Correct font size not being inherited in all browsers.
   * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
   */
  button,
  input,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
  }
  /**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */
  button,
  input {
    line-height: normal;
  }
  /**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
   * Correct `select` style inheritance in Firefox 4+ and Opera.
   */
  button,
  select {
    text-transform: none;
  }
  /**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */
  button,
  html input[type=button],
  input[type=reset],
  input[type=submit] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
  }
  /**
   * Re-set default cursor for disabled elements.
   */
  button[disabled],
  html input[disabled] {
    cursor: default;
  }
  /**
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
  input[type=checkbox],
  input[type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  /**
   * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
   *    (include `-moz` to future-proof).
   */
  input[type=search] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
  }
  /**
   * Remove inner padding and search cancel button in Safari 5 and Chrome
   * on OS X.
   */
  input[type=search]::-webkit-search-cancel-button,
  input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  /**
   * Remove inner padding and border in Firefox 4+.
   */
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  /**
   * 1. Remove default vertical scrollbar in IE 8/9.
   * 2. Improve readability and alignment in all browsers.
   */
  textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
  }
  /* ==========================================================================
     Tables
     ========================================================================== */
  /**
   * Remove most spacing between table cells.
   */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .image-replacement,
  .ir {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  .clearfix, .cf, .comment-respond {
    zoom: 1;
  }
  .clearfix:before, .clearfix:after, .cf:before, .comment-respond:before, .cf:after, .comment-respond:after {
    content: "";
    display: table;
  }
  .clearfix:after, .cf:after, .comment-respond:after {
    clear: both;
  }
  /*
  use the best ampersand
  http://simplebits.com/notebook/2008/08/14/ampersands-2/
  */
  span.amp {
    font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
    font-style: italic;
  }
}
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  font-size: 1.25rem;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1, .is-style-h1 {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3.5vw, 3.4375rem);
  line-height: 1.13;
}

.is-style-large-h1 {
  font-size: clamp(2.5rem, 5vw, 4.6875rem);
  line-height: 1.133em;
}

h2, .h2, .is-style-h2, h2:first-child {
  font-size: clamp(2.25rem, 2.75vw, 3.125rem);
  line-height: 1.0769em;
  margin-bottom: 0.375em;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-weight: 400;
}

.is-style-banner-h1 {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-weight: 500;
  font-size: clamp(2.275rem, 2.868vw, 7rem);
  line-height: 1.13;
}

.is-style-responsive-h2 {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-weight: 500;
  font-size: clamp(2.75rem, 2.316rem + 2.237vw, 5rem);
  line-height: 1.13;
}

h3, .h3, .is-style-h3 {
  font-size: clamp(1.875rem, 3.125vw, 2.1875rem);
  font-weight: 300;
}

h4, .h4 {
  font-size: clamp(1.3rem, 2.125vw, 1.625rem);
  font-weight: 700;
}

h5, .h5 {
  font-size: 1.1rem;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.entry-content ul, .entry-content ol {
  font-size: 1.25rem;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  margin-left: 1rem !important;
}

.is-style-fake-heading {
  display: inline-block;
  font-size: 1.25rem;
}
.is-style-fake-heading:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: relative;
  bottom: -5px;
}

.wp-block-heading.is-style-h4-uppercase {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.125rem, 0.801rem + 1.295vw, 1.63rem);
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.82px;
  text-transform: uppercase;
}

a, a:visited {
  color: #1C7E86;
}
a:hover, a:visited:hover {
  color: #42B1BA;
}

.has-link-color a, .has-link-color a:visited {
  color: inherit;
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  box-sizing: border-box;
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #2C3F4A;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  background-color: #EFEFEF;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #f9f9f9;
  outline: none;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #F8F9FA;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #F8F9FA;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.btn, .nav.global-nav li.button a, #submit, .comment-reply-link, .btn:visited, .comment-reply-link:visited, .wp-block-button .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link {
  display: inline-block;
  position: relative;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #F8F9FA;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  letter-spacing: 1.12px;
  padding: 0.75em 1em;
  border: 1px solid #1C7E86;
  cursor: pointer;
  border-radius: 0;
  margin-top: 1rem;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.btn:hover, .nav.global-nav li.button a:hover, #submit:hover, .comment-reply-link:hover, .wp-block-button .wp-block-button__link:hover, .btn:focus, .nav.global-nav li.button a:focus, #submit:focus, .comment-reply-link:focus, .wp-block-button .wp-block-button__link:focus {
  color: #F8F9FA;
  text-decoration: none;
  outline: none;
}
.btn:active, .nav.global-nav li.button a:active, #submit:active, .comment-reply-link:active, .wp-block-button .wp-block-button__link:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.btn, .nav.global-nav li.button a, #submit, .comment-reply-link, .btn:visited {
  background-color: #1C7E86;
}
.btn:hover, .nav.global-nav li.button a:hover, #submit:hover, .comment-reply-link:hover, .btn:focus, .nav.global-nav li.button a:focus, #submit:focus, .comment-reply-link:focus, .btn:visited:hover, .btn:visited:focus {
  background-color: #F8F9FA;
  border: 1px solid #1C7E86;
  color: #1C7E86;
}
.btn:active, .nav.global-nav li.button a:active, #submit:active, .comment-reply-link:active, .btn:visited:active {
  background-color: #2472a4;
}

.wp-block-button {
  container: inline-size;
}
.wp-block-button .wp-block-button__link {
  background-color: #1C7E86;
}
.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus {
  background-color: #F8F9FA;
  border: 1px solid #1C7E86;
  color: #1C7E86;
}
.wp-block-button .wp-block-button__link:active {
  background-color: #e9ecef;
}

.wp-block-button.is-style-secondary .wp-block-button__link {
  background-color: #F8F9FA;
  color: #1C7E86;
}
.wp-block-button.is-style-secondary .wp-block-button__link:hover, .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  background-color: #1C7E86;
  border: 1px solid #F8F9FA;
  color: #F8F9FA;
}
.wp-block-button.is-style-secondary .wp-block-button__link:active {
  background-color: #e9ecef;
}
.wp-block-button.is-style-arrow-link {
  margin-block-start: 1rem;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link {
  color: #1C7E86;
  background-color: transparent;
  padding: 0;
  display: flex;
  font-weight: bold;
  border: 0;
  text-align: left;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link:after {
  content: "\eb20";
  font-family: "lineicons";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  font-size: 0.5em;
  padding-left: 0.25em;
  transition: 0.5s padding ease-in;
  width: 2em;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link:hover {
  text-decoration: underline;
}
.wp-block-button.is-style-arrow-link .wp-block-button__link:hover:after {
  padding-left: 0.75em;
  text-decoration: none;
}
.wp-block-button.is-style-loopy-arrow {
  position: relative;
}
.wp-block-button.is-style-loopy-arrow a {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wp-block-button.is-style-loopy-arrow a:before {
    content: "";
    display: block;
    background-image: url("../images/cta_arrow.png");
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 75px;
    transform: translate(-85%);
    top: 0;
  }
}
.post-template-default.single-post figure.featured-image, .post-template-default.single-glossary figure.featured-image, .glossary-template-default.single-post figure.featured-image, .glossary-template-default.single-glossary figure.featured-image {
  margin-top: 1.5rem;
}
.post-template-default.single-post figure.featured-image img, .post-template-default.single-glossary figure.featured-image img, .glossary-template-default.single-post figure.featured-image img, .glossary-template-default.single-glossary figure.featured-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 800px) {
  .post-template-default.single-post figure.featured-image img.size-800, .post-template-default.single-glossary figure.featured-image img.size-800, .glossary-template-default.single-post figure.featured-image img.size-800, .glossary-template-default.single-glossary figure.featured-image img.size-800 {
    display: none;
  }
}
@media only screen and (min-width: 1000px) {
  .post-template-default.single-post figure.featured-image img.size-1000, .post-template-default.single-glossary figure.featured-image img.size-1000, .glossary-template-default.single-post figure.featured-image img.size-1000, .glossary-template-default.single-glossary figure.featured-image img.size-1000 {
    display: none;
  }
}
.post-template-default.single-post .date, .post-template-default.single-glossary .date, .glossary-template-default.single-post .date, .glossary-template-default.single-glossary .date {
  font-size: 1.5rem;
  line-height: 1.41666;
}
.post-template-default.single-post .author__container, .post-template-default.single-glossary .author__container, .glossary-template-default.single-post .author__container, .glossary-template-default.single-glossary .author__container {
  display: grid;
  grid-template-columns: 4rem auto;
  grid-template-rows: repeat(4, 1rem);
  align-items: center;
  margin-bottom: 2rem;
  height: 4rem;
  gap: 0.25rem;
}
@media only screen and (min-width: 960px) {
  .post-template-default.single-post .author__container, .post-template-default.single-glossary .author__container, .glossary-template-default.single-post .author__container, .glossary-template-default.single-glossary .author__container {
    margin-bottom: 6.8125rem;
  }
}
.post-template-default.single-post .author__container .author__image, .post-template-default.single-glossary .author__container .author__image, .glossary-template-default.single-post .author__container .author__image, .glossary-template-default.single-glossary .author__container .author__image {
  grid-column: 1;
  grid-row: 1/span 4;
}
.post-template-default.single-post .author__container .author__image:not(:first-child), .post-template-default.single-glossary .author__container .author__image:not(:first-child), .glossary-template-default.single-post .author__container .author__image:not(:first-child), .glossary-template-default.single-glossary .author__container .author__image:not(:first-child) {
  transform: translatex(-25%);
}
.post-template-default.single-post .author__container .author__image img, .post-template-default.single-glossary .author__container .author__image img, .glossary-template-default.single-post .author__container .author__image img, .glossary-template-default.single-glossary .author__container .author__image img {
  position: relative;
  width: 3.8125rem;
  height: 3.8125rem;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff;
}
.post-template-default.single-post .author__container .author__names, .post-template-default.single-glossary .author__container .author__names, .glossary-template-default.single-post .author__container .author__names, .glossary-template-default.single-glossary .author__container .author__names {
  font-size: 1.1rem;
  font-weight: bold;
  grid-column: 2;
  grid-row: 2;
}
.post-template-default.single-post .author__container .author__cta, .post-template-default.single-glossary .author__container .author__cta, .glossary-template-default.single-post .author__container .author__cta, .glossary-template-default.single-glossary .author__container .author__cta {
  grid-row: 3/-1;
  grid-column: 2;
}
.post-template-default.single-post .author__container .author__cta > *, .post-template-default.single-glossary .author__container .author__cta > *, .glossary-template-default.single-post .author__container .author__cta > *, .glossary-template-default.single-glossary .author__container .author__cta > * {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}
.post-template-default.single-post .author__container .author__cta a, .post-template-default.single-post .author__container .author__cta a:visited, .post-template-default.single-glossary .author__container .author__cta a, .post-template-default.single-glossary .author__container .author__cta a:visited, .glossary-template-default.single-post .author__container .author__cta a, .glossary-template-default.single-post .author__container .author__cta a:visited, .glossary-template-default.single-glossary .author__container .author__cta a, .glossary-template-default.single-glossary .author__container .author__cta a:visited {
  color: #1C7E86;
  text-decoration: underline;
}
@media only screen and (min-width: 1030px) {
  .post-template-default.single-post .entry-content > p,
  .post-template-default.single-post .entry-content > h2,
  .post-template-default.single-post .entry-content > h3,
  .post-template-default.single-post .entry-content > h4,
  .post-template-default.single-post .entry-content > h5,
  .post-template-default.single-post .entry-content > ol,
  .post-template-default.single-post .entry-content > ul, .post-template-default.single-glossary .entry-content > p,
  .post-template-default.single-glossary .entry-content > h2,
  .post-template-default.single-glossary .entry-content > h3,
  .post-template-default.single-glossary .entry-content > h4,
  .post-template-default.single-glossary .entry-content > h5,
  .post-template-default.single-glossary .entry-content > ol,
  .post-template-default.single-glossary .entry-content > ul, .glossary-template-default.single-post .entry-content > p,
  .glossary-template-default.single-post .entry-content > h2,
  .glossary-template-default.single-post .entry-content > h3,
  .glossary-template-default.single-post .entry-content > h4,
  .glossary-template-default.single-post .entry-content > h5,
  .glossary-template-default.single-post .entry-content > ol,
  .glossary-template-default.single-post .entry-content > ul, .glossary-template-default.single-glossary .entry-content > p,
  .glossary-template-default.single-glossary .entry-content > h2,
  .glossary-template-default.single-glossary .entry-content > h3,
  .glossary-template-default.single-glossary .entry-content > h4,
  .glossary-template-default.single-glossary .entry-content > h5,
  .glossary-template-default.single-glossary .entry-content > ol,
  .glossary-template-default.single-glossary .entry-content > ul {
    padding: 0 2rem;
  }
}
.post-template-default.single-post .social-share-footer, .post-template-default.single-glossary .social-share-footer, .glossary-template-default.single-post .social-share-footer, .glossary-template-default.single-glossary .social-share-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 1030px) {
  .post-template-default.single-post .social-share-footer, .post-template-default.single-glossary .social-share-footer, .glossary-template-default.single-post .social-share-footer, .glossary-template-default.single-glossary .social-share-footer {
    padding: 0 2rem;
  }
}
.post-template-default.single-post .social-share-footer span, .post-template-default.single-glossary .social-share-footer span, .glossary-template-default.single-post .social-share-footer span, .glossary-template-default.single-glossary .social-share-footer span {
  color: #1C7E86;
  font-size: 0.625rem;
}
.post-template-default.single-post .social-share-footer button, .post-template-default.single-glossary .social-share-footer button, .glossary-template-default.single-post .social-share-footer button, .glossary-template-default.single-glossary .social-share-footer button {
  border: none;
  background: none;
}
.post-template-default.single-post .social-share-footer button i, .post-template-default.single-glossary .social-share-footer button i, .glossary-template-default.single-post .social-share-footer button i, .glossary-template-default.single-glossary .social-share-footer button i {
  color: #1C7E86;
  font-size: 1.75rem;
}
.post-template-default.single-post .social-share-footer button i:has(svg), .post-template-default.single-glossary .social-share-footer button i:has(svg), .glossary-template-default.single-post .social-share-footer button i:has(svg), .glossary-template-default.single-glossary .social-share-footer button i:has(svg) {
  background-color: #1C7E86;
  width: 28px;
  height: 28px;
  border-radius: 3px;
}
.post-template-default.single-post .social-share-footer button i > svg, .post-template-default.single-glossary .social-share-footer button i > svg, .glossary-template-default.single-post .social-share-footer button i > svg, .glossary-template-default.single-glossary .social-share-footer button i > svg {
  fill: white;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.post-template-default.single-post .social-share-footer button i > svg path, .post-template-default.single-glossary .social-share-footer button i > svg path, .glossary-template-default.single-post .social-share-footer button i > svg path, .glossary-template-default.single-glossary .social-share-footer button i > svg path {
  fill: white !important;
}
.post-template-default.single-post #sidebar1, .post-template-default.single-glossary #sidebar1, .glossary-template-default.single-post #sidebar1, .glossary-template-default.single-glossary #sidebar1 {
  display: none;
  padding-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .post-template-default.single-post #sidebar1, .post-template-default.single-glossary #sidebar1, .glossary-template-default.single-post #sidebar1, .glossary-template-default.single-glossary #sidebar1 {
    display: block;
  }
}
@media only screen and (min-width: 960px) {
  .post-template-default.single-post #sidebar1, .post-template-default.single-glossary #sidebar1, .glossary-template-default.single-post #sidebar1, .glossary-template-default.single-glossary #sidebar1 {
    padding-top: 6.8125rem;
  }
}
.post-template-default.single-post .static, .post-template-default.single-glossary .static, .glossary-template-default.single-post .static, .glossary-template-default.single-glossary .static {
  position: fixed;
  top: 0;
  padding-top: 129px;
}
.post-template-default.single-post .listening, .post-template-default.single-glossary .listening, .glossary-template-default.single-post .listening, .glossary-template-default.single-glossary .listening {
  position: absolute;
  bottom: 0;
  left: 71.4285715%;
}
.post-template-default.single-post #inner-content, .post-template-default.single-glossary #inner-content, .glossary-template-default.single-post #inner-content, .glossary-template-default.single-glossary #inner-content {
  position: relative;
}
.post-template-default .author__meta_container, .glossary-template-default .author__meta_container {
  padding: 3rem 0;
}
.post-template-default .author__meta_container .wrap, .glossary-template-default .author__meta_container .wrap {
  border-top: 1px solid #344754;
  display: flex;
}
.post-template-default .author__meta_container .wrap .author__item, .glossary-template-default .author__meta_container .wrap .author__item {
  display: flex;
  flex: 0 1 100%;
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .post-template-default .author__meta_container .wrap .author__item, .glossary-template-default .author__meta_container .wrap .author__item {
    flex: 0 1 50%;
  }
}
.post-template-default .author__meta_container .wrap .author__item .author__image, .glossary-template-default .author__meta_container .wrap .author__item .author__image {
  flex: 0 1 30%;
}
.post-template-default .author__meta_container .wrap .author__item .author__image img, .glossary-template-default .author__meta_container .wrap .author__item .author__image img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff;
}
@media only screen and (min-width: 768px) {
  .post-template-default .author__meta_container .wrap .author__item .author__image img, .glossary-template-default .author__meta_container .wrap .author__item .author__image img {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.post-template-default .author__meta_container .wrap .author__item .author__meta, .glossary-template-default .author__meta_container .wrap .author__item .author__meta {
  flex: 0 1 100%;
}
@media only screen and (min-width: 768px) {
  .post-template-default .author__meta_container .wrap .author__item .author__meta, .glossary-template-default .author__meta_container .wrap .author__item .author__meta {
    flex: 0 1 65%;
  }
}
.post-template-default .author__meta_container .wrap .author__item .author__meta .author__name, .glossary-template-default .author__meta_container .wrap .author__item .author__meta .author__name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
}
.post-template-default .author__meta_container .wrap .author__item .author__meta .author__bio, .glossary-template-default .author__meta_container .wrap .author__item .author__meta .author__bio {
  font-size: 1rem;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  margin: 0;
  font-style: italic;
}
.post-template-default .author__meta_container .wrap .author__item .author__meta .author__bio p, .glossary-template-default .author__meta_container .wrap .author__item .author__meta .author__bio p {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
}
.post-template-default .recommended_reading, .glossary-template-default .recommended_reading {
  background-color: #f5f6f7;
  padding: 3rem 0;
}
.post-template-default .recommended_reading .wrap article, .glossary-template-default .recommended_reading .wrap article {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .post-template-default .recommended_reading .wrap, .glossary-template-default .recommended_reading .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 7rem;
  }
  .post-template-default .recommended_reading .wrap h2, .glossary-template-default .recommended_reading .wrap h2 {
    flex: 1 0 100%;
    text-align: center;
  }
  .post-template-default .recommended_reading .wrap article, .glossary-template-default .recommended_reading .wrap article {
    flex: 0 1 calc(50% - 7rem);
  }
}
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
@layer boilerplate {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Base Mobile Stylesheet

  Be light and don't over style since everything here will be
  loaded by mobile devices. You want to keep it as minimal as
  possible. This is called at the top of the main stylsheet
  and will be used across all viewports.

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  body {
    font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
    font-size: 100%;
    line-height: 1.5;
    color: #2C3F4A;
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  /********************
  WORDPRESS BODY CLASSES
  style a page via class
  ********************/
  /* for sites that are read right to left (i.e. hebrew) */
  /* home page */
  /* blog template page */
  /* archive page */
  /* date archive page */
  /* replace the number to the corresponding page number */
  /* search page */
  /* search result page */
  /* no results search page */
  /* individual paged search (i.e. body.search-paged-3) */
  /* 404 page */
  /* single post page */
  /* individual post page by id (i.e. body.postid-73) */
  /* individual paged single (i.e. body.single-paged-3) */
  /* attatchment page */
  /* individual attatchment page (i.e. body.attachmentid-763) */
  /* style mime type pages */
  /* author page */
  /* user nicename (i.e. body.author-samueladams) */
  /* paged author archives (i.e. body.author-paged-4) for page 4 */
  /* category page */
  /* individual category page (i.e. body.category-6) */
  /* replace the number to the corresponding page number */
  /* tag page */
  /* individual tag page (i.e. body.tag-news) */
  /* replace the number to the corresponding page number */
  /* custom page template page */
  /* individual page template (i.e. body.page-template-contact-php */
  /* replace the number to the corresponding page number */
  /* parent page template */
  /* child page template */
  /* replace the number to the corresponding page number */
  /* if user is logged in */
  /* paged items like search results or archives */
  /* individual paged (i.e. body.paged-3) */
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: min(calc(100% - 3rem), 1200px);
    margin: 0 auto;
  }
  /*********************
  LINK STYLES
  *********************/
  a, a:visited {
    color: #263740;
    /* on hover */
    /* on click */
    /* mobile tap color */
  }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #151e24;
  }
  a:link, a:visited:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  }
  /*********************
  HEADER STYLES
  *********************/
  .header {
    background-color: #2C3F4A;
  }
  #logo {
    margin: 0.75em 0;
  }
  #logo a {
    color: #F8F9FA;
  }
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  #content {
    overflow: hidden;
  }
  .single-title,
  .page-title,
  .entry-title {
    margin: 0;
  }
  /* want to style individual post classes? Booya! */
  /* post by id (i.e. post-3) */
  /* general post style */
  /* general article on a page style */
  /* general style on an attatchment */
  /* sticky post style */
  /* hentry class */
  /* style by category (i.e. category-videos) */
  /* style by tag (i.e. tag-news) */
  /* post meta */
  .byline {
    color: #9fa6b4;
    font-style: italic;
    margin: 0;
  }
  /* entry content */
  .entry-content {
    /*
    image alignment on a screen this size may be
    a bit difficult. It's set to start aligning
    and floating images at the next breakpoint,
    but it's up to you. Feel free to change it up.
    */
  }
  .entry-content p {
    margin: 0 0 1rem;
  }
  .entry-content ul {
    list-style: disc;
  }
  .entry-content ol {
    list-style: decimal;
  }
  .entry-content table {
    width: 100%;
    border: 1px solid #EFEFEF;
    margin-bottom: 1.5em;
  }
  .entry-content table caption {
    margin: 0 0 7px;
    font-size: 0.75em;
    color: #9fa6b4;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .entry-content tr {
    border-bottom: 1px solid #EFEFEF;
  }
  .entry-content tr:nth-child(even) {
    background-color: #EAEDF2;
  }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #EFEFEF;
  }
  .entry-content td:last-child {
    border-right: 0;
  }
  .entry-content th {
    background-color: #EAEDF2;
    border-bottom: 1px solid #EFEFEF;
    border-right: 1px solid #EFEFEF;
  }
  .entry-content th:last-child {
    border-right: 0;
  }
  .entry-content blockquote {
    margin: 0 0 1.5em 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #2980b9;
    font-style: italic;
    color: #9fa6b4;
  }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #BCBEC0;
    margin-bottom: 1.5em;
  }
  .entry-content img {
    margin: 0;
    max-width: 100%;
    height: auto;
  }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto;
  }
  .entry-content pre {
    background: #2C3F4A;
    color: #EAEDF2;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px;
  }
  /* end .entry-content */
  .wp-caption {
    max-width: 100%;
    background: #EFEFEF;
    padding: 5px;
    /* images inside wp-caption */
  }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%;
  }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center;
  }
  /* end .wp-caption */
  /* image gallery styles */
  /* end .gallery */
  /* gallery caption styles */
  .tags {
    margin: 0;
  }
  /******************************************************************
  PAGE NAVI STYLES
  ******************************************************************/
  .pagination,
  .wp-prev-next {
    margin: 1.5em 0;
  }
  .pagination {
    text-align: center;
  }
  .pagination ul {
    display: inline-block;
    background-color: #F8F9FA;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px;
  }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #EFEFEF;
  }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #2980b9;
  }
  .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
    background-color: #2980b9;
    color: #F8F9FA;
  }
  .pagination .current {
    cursor: default;
    color: #2C3F4A;
  }
  .pagination .current:hover, .pagination .current:focus {
    background-color: #F8F9FA;
    color: #2C3F4A;
  }
  /* end .brafton_page_navi */
  /* fallback previous & next links */
  .wp-prev-next .prev-link {
    float: left;
  }
  .wp-prev-next .next-link {
    float: right;
  }
  /* end .wp-prev-next */
  /******************************************************************
  COMMENT STYLES
  ******************************************************************/
  /* h3 comment title */
  #comments-title {
    padding: 0.75em;
    margin: 0;
    border-top: 1px solid #EAEDF2;
    /* number of comments span */
  }
  .commentlist {
    margin: 0;
    list-style-type: none;
  }
  .comment {
    position: relative;
    clear: both;
    overflow: hidden;
    padding: 1.5em;
    border-bottom: 1px solid #EAEDF2;
    /* vcard */
    /* end .commentlist .vcard */
    /* end children */
    /* general comment classes */
  }
  .comment .comment-author {
    padding: 7px;
    border: 0;
  }
  .comment .vcard {
    margin-left: 50px;
  }
  .comment .vcard cite.fn {
    font-weight: 700;
    font-style: normal;
  }
  .comment .vcard time {
    display: block;
    font-size: 0.9em;
    font-style: italic;
  }
  .comment .vcard time a {
    color: #9fa6b4;
    text-decoration: none;
  }
  .comment .vcard time a:hover {
    text-decoration: underline;
  }
  .comment .vcard .avatar {
    position: absolute;
    left: 16px;
    border-radius: 50%;
  }
  .comment:last-child {
    margin-bottom: 0;
  }
  .comment .children {
    margin: 0;
    /* variations */
    /* change number for different depth */
  }
  .comment[class*=depth-] {
    margin-top: 1.1em;
  }
  .comment.depth-1 {
    margin-left: 0;
    margin-top: 0;
  }
  .comment:not(.depth-1) {
    margin-top: 0;
    margin-left: 7px;
    padding: 7px;
  }
  .comment.odd {
    background-color: #F8F9FA;
  }
  .comment.even {
    background: #EAEDF2;
  }
  /* comment meta */
  /* comment content */
  .comment_content p {
    margin: 0.7335em 0 1.5em;
    font-size: 1em;
    line-height: 1.5em;
  }
  /* end .commentlist .comment_content */
  /* comment reply link */
  .comment-reply-link {
    font-size: 0.9em;
    float: right;
  } /* end .commentlist .comment-reply-link */
  /* edit comment link */
  .comment-edit-link {
    font-style: italic;
    margin: 0 7px;
    text-decoration: none;
    font-size: 0.9em;
  }
  /******************************************************************
  COMMENT FORM STYLES
  ******************************************************************/
  .comment-respond {
    padding: 1.5em;
    border-top: 1px solid #EAEDF2;
  }
  #reply-title {
    margin: 0;
  }
  .logged-in-as {
    color: #9fa6b4;
    font-style: italic;
    margin: 0;
  }
  .logged-in-as a {
    color: #2C3F4A;
  }
  .comment-form-comment {
    margin: 1.5em 0 0.75em;
  }
  .form-allowed-tags {
    padding: 1.5em;
    background-color: #EAEDF2;
    font-size: 0.9em;
  }
  /* comment submit button */
  #submit {
    float: right;
    font-size: 1em;
  }
  /* comment form title */
  #comment-form-title {
    margin: 0 0 1.1em;
  }
  /* cancel comment reply link */
  /* logged in comments */
  /* allowed tags */
  #allowed_tags {
    margin: 1.5em 10px 0.7335em 0;
  }
  /* no comments */
  .nocomments {
    margin: 0 20px 1.1em;
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .widget ul li {
    /* deep nesting */
  }
  .no-widgets {
    background-color: #F8F9FA;
    padding: 1.5em;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-bottom: 1.5em;
  }
  /*********************
  FOOTER STYLES
  *********************/
  .footer {
    clear: both;
  }
  /*
  if you checked out the link above:
  http://www.alistapart.com/articles/organizing-mobile/
  you'll want to style the footer nav
  a bit more in-depth. Remember to keep
  it simple because you'll have to
  override these styles for the desktop
  view.
  */
  /* end .footer-links */
  iframe {
    max-width: 100%;
  }
  /*********************
  LARGER MOBILE DEVICES
  This is for devices like the Galaxy Note or something that's
  larger than an iPhone but smaller than a tablet. Let's call them
  tweeners.
  *********************/
  @media only screen and (min-width: 481px) {
    /******************************************************************
    Site Name:
    Author:

    Stylesheet: 481px and Up Stylesheet

    This stylesheet is loaded for larger devices. It's set to
    481px because at 480px it would load on a landscaped iPhone.
    This isn't ideal because then you would be loading all those
    extra styles on that same mobile connection.

    A word of warning. This size COULD be a larger mobile device,
    so you still want to keep it pretty light and simply expand
    upon your base.scss styles.

    ******************************************************************/
    /*
    IMPORTANT NOTE ABOUT SASS 3.3 & UP
    You can't use @extend within media queries
    anymore, so just be aware that if you drop
    them in here, they won't work.
    */
    /*********************
    POSTS & CONTENT STYLES
    *********************/
    /* entry content */
    .entry-content {
      /* at this larger size, we can start to align images */
    }
    .entry-content .alignleft, .entry-content figure.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left;
    }
    .entry-content .alignright, .entry-content figure.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right;
    }
    .entry-content .aligncenter, .entry-content figure.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both;
    }
    /* end .entry-content */
    /*********************
    FOOTER STYLES
    *********************/
    /*
    check your menus here. do they look good?
    do they need tweaking?
    */
    /* end .footer-links */
  }
  /*********************
  TABLET & SMALLER LAPTOPS
  This is the average viewing window. So Desktops, Laptops, and
  in general anyone not viewing on a mobile device. Here's where
  you can add resource intensive styles.
  *********************/
  @media only screen and (min-width: 768px) {
    /******************************************************************
    Site Name:
    Author:

    Stylesheet: Tablet & Small Desktop Stylesheet

    Here's where you can start getting into the good stuff.
    This size will work on iPads, other tablets, and desktops.
    So you can start working with more styles, background images,
    and other resources. You'll also notice the grid starts to
    come into play. Have fun!

    ******************************************************************/
    /*********************
    GENERAL STYLES
    *********************/
    /*********************
    LAYOUT & GRID STYLES
    *********************/
    /*********************
    HEADER STYLES
    *********************/
    /*********************
    SIDEBARS & ASIDES
    *********************/
    .sidebar {
      margin-top: 2.2em;
    }
    .widgettitle {
      margin-bottom: 0.75em;
    }
    .widget {
      padding: 0 10px;
      margin: 2.2em 0;
    }
    .widget ul li {
      margin-bottom: 0.75em;
      /* deep nesting */
    }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em;
    }
    /* links widget */
    /* meta widget */
    /* pages widget */
    /* recent-posts widget */
    /* archives widget */
    /* tag-cloud widget */
    /* calendar widget */
    /* category widget */
    /* recent-comments widget */
    /* search widget */
    /* text widget */
    /*********************
    FOOTER STYLES
    *********************/
    /*
    you'll probably need to do quite a bit
    of overriding here if you styled them for
    mobile. Make sure to double check these!
    */
    .footer-links ul li {
      /*
      be careful with the depth of your menus.
      it's very rare to have multi-depth menus in
      the footer.
      */
    }
    /* end .footer-links */
  }
  /*********************
  DESKTOP
  This is the average viewing window. So Desktops, Laptops, and
  in general anyone not viewing on a mobile device. Here's where
  you can add resource intensive styles.
  *********************/
  /*********************
  LARGE VIEWING SIZE
  This is for the larger monitors and possibly full screen viewers.
  *********************/
  /*********************
  LARGE VIEWING SIZE
  This is for the larger monitors and possibly full screen viewers.
  *********************/
  /*********************
  RETINA (2x RESOLUTION DEVICES)
  This applies to the retina iPhone (4s) and iPad (2,3) along with
  other displays with a 2x resolution. You can also create a media
  query for retina AND a certain size if you want. Go Nuts.
  *********************/
  @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    /******************************************************************
    Site Name: 
    Author: 

    Stylesheet: Retina Screens & Devices Stylesheet

    When handling retina screens you need to make adjustments, especially
    if you're not using font icons. Here you can add them in one neat
    place.

    ******************************************************************/
    /* 

    EXAMPLE 
    Let's say you have an image and you need to make sure it looks ok
    on retina screens. Let's say we have an icon which dimension are
    24px x 24px. In your regular stylesheets, it would look something
    like this:

    .icon {
    	width: 24px;
    	height: 24px;
    	background: url(img/test.png) no-repeat;
    }

    For retina screens, we have to make some adjustments, so that image
    doesn't look blurry. So, taking into account the image above and the
    dimensions, this is what we would put in our retina stylesheet:

    .icon {
    	background: url(img/test@2x.png) no-repeat;
    	background-size: 24px 24px;
    }

    So, you would create the same icon, but at double the resolution, meaning 
    it would be 48px x 48px. You'd name it the same, but with a @2x at the end
    (this is pretty standard practice). Set the background image so it matches
    the original dimensions and you are good to go. 

    */
  }
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
@layer theme {
  .main-header {
    background-color: var(--header-color, white);
    position: sticky;
    top: 0;
    z-index: 9999;
  }
  .main-header.header-override #inner-header .wrap #logo img {
    filter: invert(100%) brightness(134%);
  }
  .main-header.header-override #inner-header .wrap nav ul > li a {
    filter: invert(100%) brightness(134%);
  }
  .main-header:has(nav > ul li:hover), .main-header:has(nav ul.open) {
    background-color: white;
  }
  .main-header:has(nav > ul li:hover).header-override #inner-header .wrap #logo img, .main-header:has(nav ul.open).header-override #inner-header .wrap #logo img {
    filter: invert(0);
  }
  .main-header:has(nav > ul li:hover).header-override #inner-header .wrap nav ul > li a, .main-header:has(nav ul.open).header-override #inner-header .wrap nav ul > li a {
    filter: invert(0);
  }
  .main-header .inner-top {
    background-color: #EFEFEF;
    min-height: 40px;
  }
  .main-header .inner-top .wrap {
    width: min(calc(100% - 1rem), 1400px) !important;
  }
  .main-header #inner-header.wrap {
    width: min(calc(100% - 1rem), 1400px) !important;
  }
  .main-header #inner-header.wrap .wrap {
    width: min(calc(100% - 1rem), 1400px) !important;
    padding: 0;
    border-bottom: 1px solid rgba(44, 63, 74, 0.3411764706);
    justify-content: space-between;
  }
  @media only screen and (min-width: 1030px) {
    .main-header #inner-header.wrap .wrap {
      justify-content: initial;
    }
  }
  .main-header #inner-header #logo {
    margin: 0.5rem 0;
    max-width: 300px;
  }
  .main-header #inner-header #logo img {
    max-width: 100%;
    height: auto;
  }
  .main-header #inner-header .toggle {
    display: block;
    cursor: pointer;
  }
  .main-header #inner-header .toggle i {
    font-size: 2rem;
    padding-right: 1rem;
  }
  @media only screen and (min-width: 1030px) {
    .main-header #inner-header .toggle {
      display: none;
    }
    .main-header #inner-header .toggle nav {
      display: block;
    }
  }
  .main-header #inner-header .wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .main-header #inner-header nav {
    width: 1px;
    position: absolute;
    width: 100%;
    top: 100%;
  }
  .main-header #inner-header nav #closemobilenav {
    display: none;
  }
  .main-header #inner-header nav #closemobilenav.open {
    display: block;
  }
  .main-header #inner-header nav .fa-window-close {
    z-index: 10;
    color: white;
    font-size: 2rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: none;
  }
  @media only screen and (min-width: 1030px) {
    .main-header #inner-header nav {
      display: block;
      flex: 0 1 100%;
      width: auto;
      position: initial;
      overflow: initial;
    }
  }
  .main-header #inner-header nav #menu-main-navigation {
    width: fit-content;
    float: right;
    margin: 0;
  }
}
.nav {
  border-bottom: 0;
  margin: 0;
  list-style-type: none;
  display: block;
}
.nav.top-nav {
  position: relative;
  top: 0;
  width: 0;
  height: 0;
  background-color: #F8F9FA;
  transition: 0.5s height ease-in-out;
  overflow: hidden;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.nav.open {
  overflow-x: auto;
  width: 100%;
  height: fit-content;
  padding-top: 2rem;
  z-index: 9999;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  overflow: initial;
}
.nav li {
  position: relative;
}
.nav li.menu-item-has-children:before {
  content: "\eb0b";
  font-family: "lineicons";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  right: 1rem;
  position: absolute;
  top: 0;
  padding: 0.5rem 0;
}
.nav li a {
  display: inline-block;
  color: #2C3F4A;
  text-decoration: none;
  padding: 0.5em;
  font-size: 1.25rem;
  font-weight: 600;
}
.nav li ul.sub-menu,
.nav li ul.children {
  display: none;
  margin-top: 0;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
  font-size: 1.05rem;
}
.nav li.is-open > ul.sub-menu,
.nav li.is-open > ul.children {
  display: block;
}
.nav li.is-open > ul.sub-menu li,
.nav li.is-open > ul.children li {
  padding-left: 1rem;
}
.nav li.is-open > ul.sub-menu li.icon > a .icon,
.nav li.is-open > ul.children li.icon > a .icon {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  pointer-events: none;
  transform: translateX(calc(-100% - 0.5rem));
}
.nav li.is-open > ul.sub-menu li.icon > a .icon img,
.nav li.is-open > ul.children li.icon > a .icon img {
  width: 100%;
  height: auto;
}
.nav li.is-open > ul.sub-menu li .sub-menu,
.nav li.is-open > ul.children li .sub-menu {
  margin-top: 0;
  padding-left: 0.5rem;
}
.nav li.is-open > ul.sub-menu li .sub-menu a,
.nav li.is-open > ul.children li .sub-menu a {
  padding-left: 0.5rem;
}
@media only screen and (min-width: 1030px) {
  .nav {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav.top-nav {
    border: 0;
    display: block;
    position: initial;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    overflow-x: initial;
    padding-top: initial;
    background-color: initial;
  }
  .nav li.menu-item-has-children:before {
    display: none;
  }
  .nav li a {
    padding: 0.75em;
    font-size: 1.25rem;
    color: #2C3F4A;
  }
  .nav ul {
    background: white;
    margin-top: 0;
  }
  .nav li a {
    display: block;
  }
  .nav > li {
    float: left;
    position: static;
    padding: 1.25rem 0;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav > li a {
    border-bottom: 0;
    font-size: 1rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 2.72px;
    font-weight: bold;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav > li a:hover, .nav > li a:focus {
    color: #1C7E86;
    text-decoration: none;
  }
  .nav > li:hover:after {
    content: "";
    width: 40%;
    display: block;
    background-color: black;
    height: 0px;
    margin-left: 30%;
    box-shadow: 1px 1px 2px 1px black;
  }
  .nav > li > ul.sub-menu,
  .nav > li > ul.children {
    margin-top: 0;
    border-top: 0;
    position: absolute;
    display: none;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav > li > ul.sub-menu li,
  .nav > li > ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav > li > ul.sub-menu li a,
  .nav > li > ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: calc(100% - 1rem);
  }
  .nav > li > ul.sub-menu li:last-child a,
  .nav > li > ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav > li > ul.sub-menu li ul,
  .nav > li > ul.children li ul {
    top: 0;
    left: 100%;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 980px) {
  .nav > li > ul.sub-menu li:has(> .sub-menu > li.columns-2),
  .nav > li > ul.children li:has(> .sub-menu > li.columns-2) {
    max-width: 500px;
  }
  .nav > li > ul.sub-menu li:has(> .sub-menu > li.columns-2) > .sub-menu,
  .nav > li > ul.children li:has(> .sub-menu > li.columns-2) > .sub-menu {
    width: 100%;
  }
  .nav > li > ul.sub-menu li:has(> .sub-menu > li.columns-2) > .sub-menu > li,
  .nav > li > ul.children li:has(> .sub-menu > li.columns-2) > .sub-menu > li {
    width: 100%;
    max-width: 500px;
  }
}
@media only screen and (min-width: 1030px) {
  .nav > li > ul.sub-menu li.columns-2,
  .nav > li > ul.children li.columns-2 {
    max-width: 700px;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 980px) {
  .nav > li > ul.sub-menu li.columns-2 > .sub-menu,
  .nav > li > ul.children li.columns-2 > .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nav > li > ul.sub-menu li.columns-2 > .sub-menu li,
  .nav > li > ul.children li.columns-2 > .sub-menu li {
    max-width: fit-content !important;
  }
  .nav > li > ul.sub-menu li.columns-2 > .sub-menu li a,
  .nav > li > ul.children li.columns-2 > .sub-menu li a {
    padding-left: 0;
  }
  .nav > li > ul.sub-menu li.columns-2 > .sub-menu li .sub-menu li,
  .nav > li > ul.children li.columns-2 > .sub-menu li .sub-menu li {
    padding-left: 0;
  }
  .nav > li > ul.sub-menu li.columns-2 > .sub-menu li .sub-menu li a,
  .nav > li > ul.children li.columns-2 > .sub-menu li .sub-menu li a {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .nav > li:hover > ul {
    top: 100%;
    font-size: 1.25rem;
    line-height: 1.25;
    display: block;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
    padding: 0 6rem;
    transform: translateX(-6rem);
    padding-bottom: 1rem;
  }
  .nav > li:hover > ul:before {
    content: "";
    display: block;
    width: 100%;
    border-top: 1px solid rgba(44, 63, 74, 0.3411764706);
    position: absolute;
    transform: translateX(-6rem);
  }
  .nav > li:hover > ul > li:first-child {
    margin-top: 1rem;
  }
  .nav > li:hover > ul li {
    position: relative;
    padding-bottom: 0;
    flex: 1 0 auto;
    max-width: 250px;
    padding-inline: 0.5rem;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 980px) {
  .nav > li:hover > ul li:has(> .sub-menu > li.columns-2) {
    max-width: 500px;
  }
  .nav > li:hover > ul li:has(> .sub-menu > li.columns-2) > .sub-menu {
    width: 100%;
  }
  .nav > li:hover > ul li:has(> .sub-menu > li.columns-2) > .sub-menu > li {
    width: 100%;
    max-width: 500px;
  }
}
@media only screen and (min-width: 1030px) {
  .nav > li:hover > ul li a {
    width: 100%;
  }
  .nav > li:hover > ul li .sub-menu {
    display: block;
    position: initial;
    margin-top: 0;
  }
  .nav > li:hover > ul li .sub-menu li {
    float: initial;
    padding-bottom: 0;
  }
  .nav > li:hover > ul li .sub-menu li a {
    text-transform: initial;
    letter-spacing: initial;
    font-size: 1.25rem;
    line-height: 1.25;
    padding: 0.5rem;
    font-weight: 400;
  }
  .nav > li:hover > ul li .sub-menu li:hover > a {
    font-weight: 500;
  }
  .nav > li:hover > ul li .sub-menu li.header-no-link > a {
    font-size: 1rem;
    color: #00a8b6;
    pointer-events: none;
    text-transform: uppercase;
    font-weight: inherit;
  }
}
@media only screen and (min-width: 1030px) and (min-width: 980px) {
  .nav > li:hover > ul li .sub-menu li.columns-2 > .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nav > li:hover > ul li .sub-menu li.columns-2 > .sub-menu li a {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .nav > li:hover > ul li .sub-menu li.custom-content .content > * {
    margin: 0;
  }
  .nav > li:hover > ul li.icon > a {
    position: relative;
  }
  .nav > li:hover > ul li.icon > a .icon {
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    pointer-events: none;
    transform: translateX(calc(-100% - 0.5rem));
  }
  .nav > li:hover > ul li.icon > a .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .nav > li:hover > ul li.icon .sub-menu .icon {
    padding-left: 0;
  }
  .nav > li:hover > ul li.icon .sub-menu .icon a {
    padding-left: 10px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 2.72px;
    font-weight: bold;
    font-size: 1.05rem;
  }
  .nav > li.mega:hover > ul {
    width: 100%;
    padding: 0 7rem;
    position: absolute;
    left: 0;
    top: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: baseline;
    transform: none;
  }
  .nav > li.mega:hover > ul:before {
    content: "";
    display: block;
    width: min(calc(100% - 1rem), 1400px);
    border-top: 1px solid rgba(44, 63, 74, 0.3411764706);
    position: absolute;
    transform: none;
  }
  .nav > li.mega:hover > ul > li {
    margin-top: 1rem;
    padding-left: 0;
  }
  .nav:has(li:hover) > li a {
    opacity: 0.57;
  }
  .nav:has(li:hover) > li:hover a {
    opacity: 1;
  }
}
.nav.global-nav {
  display: flex;
  justify-content: end;
  background-color: transparent;
}
.nav.global-nav li {
  padding: 0 !important;
}
@media only screen and (min-width: 980px) {
  .nav.global-nav li {
    margin-left: 2rem;
  }
}
.nav.global-nav li a {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: inherit;
  font-weight: initial;
  color: #2A3943;
}
.nav.global-nav li.button a {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
}
.nav.global-nav li.button:hover:after {
  display: none !important;
}

.footer {
  background-color: #338B92;
  color: #F8F9FA;
}
.footer .footer__widgets {
  padding-top: 3.875rem;
  padding-bottom: 3.875rem;
}
.footer .footer__widgets .brand-logo {
  max-width: 300px;
}
.footer .footer__widgets .brand-logo img {
  max-width: 100%;
  height: auto;
}
.footer .footer__widgets .row {
  display: block;
}
.footer .footer__widgets .row > .col {
  width: 100%;
}
.footer .footer__widgets .row > .col:not(:last-child) {
  margin-bottom: 1rem;
}
.footer .footer__widgets .row > .col.social-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer .footer__widgets .row > .col.social-icons > a.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer .footer__widgets .row > .col.social-icons > a.social-link > img {
  display: block;
  margin: 0;
  border: 0;
}
.footer .footer__widgets .row > .col .widget {
  margin: 0;
  padding: 0;
}
.footer .footer__widgets .row > .col .widget * {
  font-size: 22px;
  line-height: 40px;
}
.footer .footer__widgets .row > .col .widget img {
  width: 100%;
  height: auto;
  max-width: 345px;
}
.footer .footer__widgets .row > .col .widget p {
  margin: 0;
}
.footer .footer__widgets .row > .col .widget ul li {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .footer .footer__widgets .row > .col {
    width: auto;
    flex: 1;
    padding: 0;
  }
  .footer .footer__widgets .row > .col:nth-child(2) {
    flex: 0 1 35%;
  }
  .footer .footer__widgets .row > .col:not(:last-child) {
    margin-bottom: 0;
  }
}
.footer .footer__widgets .row + .row {
  margin-top: 3.25rem;
}
.footer .footer__widgets .row.links ul {
  margin: 0;
  list-style-type: none;
}
.footer .footer__widgets .row.links ul li.menu-item {
  margin-bottom: 0;
}
.footer .footer__widgets .row.links ul li.menu-item > a:where(:not(.wp-element-button)) {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.5rem;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth {
  display: flex;
  align-items: center;
  width: auto !important;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoOffset,
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoGutter {
  display: none;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoFormRow:not(:has(.mktoFieldWrap)) {
  display: none;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoFormRow {
  flex: 1;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoFormRow .mktoFormCol {
  margin-bottom: 0 !important;
  width: 100%;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoFormRow .mktoFormCol .mktoFieldWrap {
  float: none !important;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoFormRow .mktoFormCol .mktoFieldWrap .mktoLabel {
  position: absolute;
  bottom: calc(100% + 0.25rem);
  left: 0;
  width: auto !important;
  font: normal 400 0.813rem/1rem "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  color: #F8F9FA;
  padding-top: 0 !important;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoFormRow .mktoFormCol .mktoFieldWrap input[type=email].mktoField {
  display: block;
  margin: 0;
  width: 100% !important;
  background-color: #F8F9FA;
  border: none;
  border-radius: 0.125rem !important;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.98px;
  height: 2.625rem !important;
  padding: 0 0.75rem !important;
  text-transform: uppercase;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoButtonRow span.mktoButtonWrap.mktoFirefox {
  margin-left: 0 !important;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoButtonRow span.mktoButtonWrap.mktoFirefox button[type=submit].mktoButton {
  display: inline-flex !important;
  align-items: center;
  background: #F8F9FA none !important;
  border: 2px solid transparent !important;
  border-radius: 0 !important;
  color: #1C7E86 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  margin: 0 !important;
  font: normal 700 1rem/1.875rem "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  height: 2.625rem !important;
  padding: 0 1.5rem !important;
}
.footer .footer__widgets .row.links form.mktoForm.mktoHasWidth .mktoButtonRow span.mktoButtonWrap.mktoFirefox button[type=submit].mktoButton:hover {
  background-color: transparent !important;
  border-color: #F8F9FA !important;
  color: #F8F9FA !important;
}
@media screen and (min-width: 768px) {
  .footer .footer__widgets .row {
    display: flex;
    gap: 3%;
  }
}
.footer .footer__widgets form.searchform {
  margin-bottom: 0;
}
.footer .footer__widgets form.searchform input[type=search] {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.98px;
  border-radius: 0.125rem;
}
.footer .footer__widgets form.searchform #searchsubmit {
  display: none;
}
.footer a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #F8F9FA;
}
.footer .footer__copyright {
  background-color: #135c68;
  padding: 0.469rem 0;
}
.footer .footer__copyright p.copyright {
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.063rem;
  text-transform: uppercase;
}

.wp-block-brafton-blocks-static-scroll-navigation .static-menu h2 {
  font-size: 3rem;
  line-height: 1.0769;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
}
.wp-block-brafton-blocks-static-scroll-navigation .static-menu p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
}
.wp-block-brafton-blocks-static-scroll-navigation .wp-block-group figure {
  margin-bottom: 40px;
}
.wp-block-brafton-blocks-static-scroll-navigation .wp-block-group figure img {
  height: auto !important;
}
.wp-block-brafton-blocks-static-scroll-navigation .wp-block-group p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
}
@media only screen and (min-width: 768px) {
  .wp-block-brafton-blocks-static-scroll-navigation .wp-block-group p {
    max-width: 65%;
  }
}
.wp-block-brafton-blocks-static-scroll-navigation .wp-block-group p:first-of-type {
  margin-top: 0;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.wp-block-brafton-blocks-static-scroll-navigation .wp-block-group h4 {
  font-style: italic;
  font-size: 1.75rem;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
}
@media only screen and (min-width: 768px) {
  .wp-block-brafton-blocks-static-scroll-navigation .wp-block-group h4 {
    width: 60%;
    max-width: 453px;
    min-width: 360px;
  }
}

.braftonium-custom-row {
  padding: 3rem 0;
}
.braftonium-custom-row.no-relative-wrap > .wrap {
  position: static;
}

.page .entry-content > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(p):not(.site-banner):not(hr):not(ul):not(ol), .single:not(.post-template-default) .entry-content > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(p):not(.site-banner):not(hr):not(ul):not(ol) {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.is-style-overlay-background {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .is-style-overlay-background {
    min-height: 500px;
    display: flex;
    align-items: center;
  }
}

.is-style-has-outside-arrow {
  position: relative;
}
.is-style-has-outside-arrow:after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -20px;
  z-index: 999;
  background-color: inherit;
  transform: rotate(45deg);
  left: 5%;
}
@media only screen and (min-width: 1200px) {
  .is-style-has-outside-arrow:after {
    left: calc((100vw - 1200px) / 2 + 2.5%);
  }
}
.is-style-has-outside-arrow + * {
  position: relative;
}

.is-style-stats-with-inset-arrow, .is-style-stats-with-inset-arrow-3 {
  padding: 0 !important;
  padding-top: 20px !important;
  gap: 0px !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
}
.is-style-stats-with-inset-arrow > .wp-block-column, .is-style-stats-with-inset-arrow-3 > .wp-block-column {
  padding: 3rem 0;
}
.is-style-stats-with-inset-arrow:after, .is-style-stats-with-inset-arrow-3:after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: -4px;
  z-index: 999;
  background-color: inherit;
  transform: rotate(45deg);
  right: 5%;
  left: calc(50% - 20px);
}
@media only screen and (min-width: 781px) {
  .is-style-stats-with-inset-arrow:after, .is-style-stats-with-inset-arrow-3:after {
    left: calc(12.5% - 20px);
  }
}
@media (max-width: 781px) {
  .is-style-stats-with-inset-arrow .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column, .is-style-stats-with-inset-arrow-3 .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 50% !important;
    align-self: stretch;
  }
}

@media only screen and (min-width: 781px) {
  .is-style-stats-with-inset-arrow-3after {
    left: calc(16.5% - 20px);
  }
}

.brafton-cta {
  padding: 3rem 0;
}
.brafton-cta > .wrap {
  max-width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brafton-cta > .wrap > div {
  align-items: center !important;
  gap: 0;
  justify-content: space-evenly !important;
  flex-wrap: nowrap !important;
}
.brafton-cta > .wrap > div > div:nth-child(1), .brafton-cta > .wrap > div > div:nth-child(3) {
  flex: none;
}
@media (max-width: 781px) {
  .brafton-cta > .wrap > div > div {
    flex-basis: auto !important;
  }
}
.brafton-cta > .wrap figure {
  height: 100%;
  width: auto;
  margin-left: 0;
}
.brafton-cta > .wrap figure img {
  max-width: 18vw;
}

@media (max-width: 530px) {
  .full-width.brafton-cta .wrap .wp-block-button {
    flex: 0 1 197px;
  }
  .is-style-loopy-arrow {
    justify-content: flex-end;
  }
}
.acf-block-preview .brafton-cta .wp-block-columns > div {
  display: flex;
  align-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  .full-width.brafton-cta > .wrap > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .full-width.brafton-cta > .wrap figure img {
    max-width: fit-content !important;
  }
}
.editor-styles-wrapper .full-width.brafton-cta {
  width: auto !important;
}

.braftonium-custom-row.blog-cta {
  position: relative;
}
.braftonium-custom-row.blog-cta > .wrap {
  position: static;
}
@media screen and (min-width: 1024px) {
  .braftonium-custom-row.blog-cta > .wrap .wp-block-column:first-child {
    max-width: 420px;
    padding-top: 4rem;
  }
  .braftonium-custom-row.blog-cta > .wrap .wp-block-column:first-child p {
    max-width: 343px;
  }
}
.braftonium-custom-row.blog-cta > .wrap .wp-block-column:last-child > .wp-block-image.size-large {
  position: absolute;
  right: 0;
  z-index: -1;
}
.braftonium-custom-row.blog-cta > .wrap .wp-block-column:last-child > .wp-block-image.size-large > img {
  max-height: 569px;
}

.editor-styles-wrapper .braftonium-custom-row.blog-cta > .wrap .wp-block-column:last-child > .wp-block-image.size-large {
  z-index: 0;
}

.full-width {
  width: 100dvw;
  margin-left: calc(50% - 50vw);
}

.full-height {
  height: 100dvh;
}

.box-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3764705882);
  padding: 3rem;
}

@media only screen and (min-width: 768px) {
  .skinny-80 {
    width: 90%;
    min-width: 360px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1030px) {
  .skinny-80 {
    width: 80%;
  }
}
.skinny-80:not(h1):not(h2):not(h3).has-text-align-left {
  margin-left: 0 !important;
}

@media only screen and (min-width: 768px) {
  .skinny-50 {
    width: 75%;
    min-width: 360px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1030px) {
  .skinny-50 {
    width: 50%;
  }
}
.skinny-50:not(h1):not(h2):not(h3).has-text-align-left {
  margin-left: 0 !important;
}

@media only screen and (min-width: 768px) {
  .skinny-60 {
    width: 70%;
    min-width: 360px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1030px) {
  .skinny-60 {
    width: 60%;
  }
}
.skinny-60:not(h1):not(h2):not(h3).has-text-align-left {
  margin-left: 0 !important;
}

@media only screen and (max-width: 540px) {
  .hide-on-mobile {
    display: none;
  }
}

@media only screen and (min-width: 541px) and (max-width: 1024px) {
  .hide-on-tablet {
    display: none;
  }
}

@media only screen and (min-width: 1030px) {
  .hide-on-desktop {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}

.offset-20 {
  transform: translateY(-10%);
  margin-bottom: -10% !important;
}
@media only screen and (min-width: 768px) {
  .offset-20 {
    transform: translateY(-20%);
    margin-bottom: calc(-10% + 2rem) !important;
  }
}

.offset-50 {
  transform: translateY(-50%);
}
@media only screen and (min-width: 540px) {
  .offset-50 {
    margin-bottom: calc(-25% + 3.5rem) !important;
  }
}

@media only screen and (min-width: 540px) {
  .wp-block-columns.maintain-column-layout-tablet:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap !important;
  }
  .wp-block-columns.maintain-column-layout-tablet:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0 !important;
    flex-grow: 1 !important;
  }
}

.relative {
  position: relative;
  overflow: hidden;
}

.static {
  position: static;
}

.absolute {
  position: absolute;
}

.breakout-image-right.wp-block-image {
  position: relative;
  height: 100%;
}
.breakout-image-right.wp-block-image img {
  position: absolute;
  left: 0;
  height: 100%;
  width: auto;
  max-width: fit-content;
}

.breakout-image-left.wp-block-image {
  position: relative;
  height: 100%;
}
.breakout-image-left.wp-block-image img {
  position: absolute;
  right: 0;
  height: 100%;
  width: auto;
  max-width: fit-content;
}

.wp-block-group.is-layout-flex.is-vertical {
  flex-direction: column;
  align-items: normal;
}

.max-h-90px {
  max-height: 90px;
}
.max-h-90px img {
  display: block;
  max-height: 90px;
}

.force-square-circle-logo {
  width: 90%;
  height: 0;
  padding-top: min(250px, 90%);
  position: relative;
  border-radius: 100%;
  overflow: hidden;
  max-width: 250px;
}
.force-square-circle-logo figure {
  position: static;
}
.force-square-circle-logo figure > div {
  position: static !important;
}
.force-square-circle-logo img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.is-inset-arrow {
  position: relative;
}
.is-inset-arrow:after {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(3rem - 20px);
  z-index: 999;
  background-color: inherit;
  transform: rotate(45deg);
  left: calc(4rem + 20px);
}
@media only screen and (min-width: 781px) {
  .is-inset-arrow:after {
    left: calc((100vw - 1200px) / 2 + 2.5%);
  }
}
.is-inset-arrow > .wp-block-group {
  padding: 3rem;
}

.remove-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.remove-top-padding {
  padding-top: 0 !important;
}
.remove-bottom-padding {
  padding-bottom: 0 !important;
}

.hover-card {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.hover-card .wp-block-cover {
  padding: 2rem;
  aspect-ratio: 1/1;
  min-height: unset;
}
.hover-card .wp-block-cover .wp-block-cover__background.has-background-dim {
  background-color: #2C3F4A;
  opacity: 0;
  max-height: 0;
  transform: translateY(100%);
  transition: all 200ms ease-in-out;
}
.hover-card .wp-block-cover img.wp-block-cover__image-background {
  display: block;
  margin: 0;
  border: 0;
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 100%;
  max-width: 100%;
}
.hover-card .wp-block-cover .wp-block-cover__inner-container {
  color: #F8F9FA;
  opacity: 0;
  max-height: 0;
  transform: translateY(100%);
  transition: all 150ms ease-in-out;
}
.hover-card .wp-block-cover .wp-block-cover__inner-container p a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: 1px;
  border-style: solid;
  border-color: currentColor;
  width: 100%;
  color: inherit;
  text-decoration: none;
  padding: 0.625rem 1rem;
  font-size: 1rem;
}
.hover-card .wp-block-cover:hover .wp-block-cover__background.has-background-dim {
  opacity: 0.88;
  max-height: unset;
  transform: translateY(0);
}
.hover-card .wp-block-cover:hover .wp-block-cover__inner-container {
  opacity: 1;
  max-height: unset;
  transform: translateY(0);
}

:root {
  --hover-card-gap-size: 0.5rem;
}

.hover-cards--clients.wp-block-group .wp-block-columns.is-layout-flex {
  gap: var(--hover-card-gap-size);
  margin-bottom: 0;
}
.hover-cards--clients.wp-block-group .wp-block-columns.is-layout-flex ~ .wp-block-columns.is-layout-flex {
  margin-top: var(--hover-card-gap-size);
}
@media screen and (min-width: 481px) {
  .hover-cards--clients.wp-block-group .wp-block-columns.is-layout-flex {
    --hover-card-gap-size: 1rem;
    gap: var(--hover-card-gap-size);
    margin-bottom: 0;
  }
  .hover-cards--clients.wp-block-group .wp-block-columns.is-layout-flex .wp-block-column {
    flex-basis: calc(50% - var(--hover-card-gap-size) / 2) !important;
    flex-grow: 0;
  }
  .hover-cards--clients.wp-block-group .wp-block-columns.is-layout-flex ~ .wp-block-columns.is-layout-flex {
    margin-top: var(--hover-card-gap-size);
  }
}

.braftonium-block.braftonium-contentlist.is-style-post-list-2-col {
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3764705882);
  background-color: #FFF;
  padding: 2rem 0;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item {
  padding: 1rem;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:not(:first-child):hover {
  background-color: #e2f5f6;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-image {
  display: none;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-content {
  height: auto;
  padding: 0 !important;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-content h3.list-item-title {
  margin: 0 0 0.5rem;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 1.313rem;
  line-height: 1.14;
  font-weight: 500;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-content .list-item-meta {
  display: flex;
  align-items: center;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-content .list-item-meta > span {
  flex: none;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-content .list-item-meta > span:not(:last-child)::after {
  display: inline-flex;
  content: "|";
  color: #BCBEC0;
  font-size: x-small;
  padding: 0 0.5rem;
}
.braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item .list-item-content .list-item-excerpt {
  display: none;
}
@media screen and (min-width: 1024px) {
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: repeat(5, auto);
    column-gap: 0 !important;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:first-child {
    grid-area: 1/1/6/2;
    border-right: 1px solid #EFEFEF;
    padding: 4rem 0 4rem 5rem;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:first-child .list-item-image {
    display: none;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:first-child .list-item-content {
    height: auto;
    padding: 0 !important;
    max-width: 298px;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:first-child .list-item-content h3.list-item-title {
    margin: 0 0 1.25rem;
    font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:first-child .list-item-content .list-item-meta {
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:first-child .list-item-content .list-item-excerpt {
    display: block;
    font-size: 1.125rem;
    line-height: 1.5;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 3rem;
  }
  .braftonium-block.braftonium-contentlist.is-style-post-list-2-col .list-item:not(:first-child) {
    padding: 1.75rem 2.875rem;
  }
}

.is-style-widecard-with-overlay {
  --col-gap: 2vw !important;
  gap: 10px 2vw !important;
}
.is-style-widecard-with-overlay article .list-item-image .list-item-meta {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.5em 1.5em;
  padding: 4% 1rem;
  background-color: #F8F9FA;
  backdrop-filter: blur(12px);
  opacity: 0.9;
}
.is-style-widecard-with-overlay article .list-item-image .list-item-meta .meta__date {
  grid-column: 1;
  grid-row: 2;
}
.is-style-widecard-with-overlay article .list-item-image .list-item-meta .meta__category {
  grid-row: 1/span 2;
  display: flex;
  align-content: center;
  align-items: center;
  font-weight: 600;
}
.is-style-widecard-with-overlay article .list-item-image .list-item-meta .meta__author {
  grid-column: 1;
  grid-row: 1;
  font-weight: 600;
}
.is-style-widecard-with-overlay .list-item-content {
  padding-top: 1.75rem;
}
.is-style-widecard-with-overlay .list-item-content .list-item-meta {
  display: none;
}
.is-style-widecard-with-overlay h3 {
  margin-top: 0;
  font-size: 1.375rem;
  line-height: 1.2272em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.is-style-widecard-with-overlay .list-item-btn {
  margin-top: 1.5rem;
}
.is-style-widecard-with-overlay .list-item-btn:after {
  content: "\eb20";
  font-family: "lineicons";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  font-size: 0.5em;
  padding-left: 0.25em;
  transition: 0.5s padding ease-in;
  width: 2em;
}

.is-style-skinny-square-featured-image {
  --col-gap: 6vw !important;
  gap: 10px 6vw !important;
}
.is-style-skinny-square-featured-image article .list-item-content {
  padding-top: 1.75rem;
}
.is-style-skinny-square-featured-image article h3 {
  margin-top: 0;
  font-size: 1.375rem;
  line-height: 1.2272em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.is-style-skinny-square-featured-image article .list-item-meta .meta__date {
  display: none;
}
.is-style-skinny-square-featured-image article .list-item-btn {
  margin-top: 1.5rem;
}
.is-style-skinny-square-featured-image article .list-item-btn:after {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  content: "\eb20";
  font-family: "lineicons";
  font-weight: 900;
  font-size: 0.5em;
  padding-left: 0.25em;
  transition: 0.5s padding ease-in;
  width: 2em;
}

.braftonium-contentlist .list-item-meta > *:empty {
  display: none;
}

.display-posttype .list-item-content > * {
  order: 2;
}
.display-posttype .list-item-content .list-item-meta {
  order: 1;
}
.display-posttype .list-item-content .list-item-meta .meta__posttype {
  font-size: 1rem;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1C7E86;
}

.braftonium-slider .slick-prev,
.braftonium-slider .slick-next {
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid #58C4CB;
  border-bottom-color: transparent;
  transform: rotate(-45deg);
}
.braftonium-slider .slick-prev {
  border-right-color: transparent;
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .braftonium-slider .slick-prev {
    left: 3rem;
  }
}
.braftonium-slider .slick-next {
  border-left-color: transparent;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .braftonium-slider .slick-next {
    right: 3rem;
  }
}
.braftonium-slider .slick-prev:before,
.braftonium-slider .slick-next:before {
  content: "";
  color: transparent;
}

.braftonium-slider.is-style-basic {
  background-color: #F8F9FA;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3764705882);
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-basic .slick-prev {
    left: calc((100% - 39rem) / 2 / 2);
  }
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-basic .slick-next {
    right: calc((100% - 39rem) / 2 / 2);
  }
}
.braftonium-slider.is-style-basic .slick-list.draggable,
.braftonium-slider.is-style-basic .block-editor-inner-blocks {
  max-width: 39rem;
  margin: 0 auto;
}

.braftonium-slider.is-style-snake-dots {
  background-color: #F8F9FA;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3764705882);
  padding: 3rem 0 4rem !important;
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-snake-dots .slick-prev {
    left: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .braftonium-slider.is-style-snake-dots .slick-prev {
    left: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .braftonium-slider.is-style-snake-dots .slick-prev {
    left: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-snake-dots .slick-next {
    right: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .braftonium-slider.is-style-snake-dots .slick-next {
    right: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .braftonium-slider.is-style-snake-dots .slick-next {
    right: 3rem;
  }
}
.braftonium-slider.is-style-snake-dots .slick-list.draggable,
.braftonium-slider.is-style-snake-dots .block-editor-inner-blocks {
  width: calc(100% - 2rem);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .braftonium-slider.is-style-snake-dots .slick-list.draggable,
  .braftonium-slider.is-style-snake-dots .block-editor-inner-blocks {
    max-width: calc(100% - 8rem);
  }
}
@media screen and (min-width: 1200px) {
  .braftonium-slider.is-style-snake-dots .slick-list.draggable,
  .braftonium-slider.is-style-snake-dots .block-editor-inner-blocks {
    max-width: calc(100% - 12rem);
  }
}

.braftonium-slider.is-style-snake-dots .slick-dots,
.braftonium-slider.is-style-mini-cards .slick-dots {
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.braftonium-slider.is-style-snake-dots .slick-dots li,
.braftonium-slider.is-style-mini-cards .slick-dots li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: unset;
  height: unset;
}
.braftonium-slider.is-style-snake-dots .slick-dots li button[role=tab],
.braftonium-slider.is-style-mini-cards .slick-dots li button[role=tab] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.688rem;
  height: 0.688rem;
  padding: 0;
  opacity: 0.31;
  transition: width 350ms, opacity 200ms ease-in-out;
}
.braftonium-slider.is-style-snake-dots .slick-dots li button[role=tab]::before,
.braftonium-slider.is-style-mini-cards .slick-dots li button[role=tab]::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1C7E86;
  border-radius: 50rem;
  opacity: 1;
}
.braftonium-slider.is-style-snake-dots .slick-dots li.slick-active button[role=tab],
.braftonium-slider.is-style-mini-cards .slick-dots li.slick-active button[role=tab] {
  opacity: 1;
  width: 4rem;
}

.braftonium-slider.is-style-mini-cards {
  background: none;
  width: calc(100% - 3.5rem);
  margin-left: auto;
  margin-right: auto;
}
.braftonium-slider.is-style-mini-cards .slick-dots {
  bottom: 0;
}
.braftonium-slider.is-style-mini-cards .slick-dots li button[role=tab]::before {
  background-color: #8cc040;
}
@media screen and (min-width: 1024px) {
  .braftonium-slider.is-style-mini-cards .slick-dots {
    display: none !important;
  }
}
.braftonium-slider.is-style-mini-cards .slick-prev,
.braftonium-slider.is-style-mini-cards .slick-next {
  background-color: #FFF !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3764705882);
  height: calc(100% - 7rem);
  width: 1.75rem;
  transform: rotate(0deg);
  border: none;
  top: 3.5rem;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-mini-cards .slick-prev,
  .braftonium-slider.is-style-mini-cards .slick-next {
    background-color: transparent !important;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid #58C4CB;
    border-bottom-color: transparent;
    box-shadow: none;
    z-index: initial;
  }
}
.braftonium-slider.is-style-mini-cards .slick-prev {
  left: -1.75rem;
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-mini-cards .slick-prev {
    left: -0.5rem;
    border-right-color: transparent;
    transform: rotate(-45deg);
  }
}
.braftonium-slider.is-style-mini-cards .slick-next {
  right: -2.5rem;
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-mini-cards .slick-next {
    right: calc(50% - 4rem);
    border-left-color: transparent;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1024px) {
  .braftonium-slider.is-style-mini-cards .slick-next {
    right: calc(33.3333333333% - 4rem);
  }
}
.braftonium-slider.is-style-mini-cards .slick-list {
  margin-left: 0;
}
.braftonium-slider.is-style-mini-cards .slick-list .slick-track {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.braftonium-slider.is-style-mini-cards .slick-list .slick-track .braftonium-slide {
  transition: opacity 250ms ease-in-out;
}
.braftonium-slider.is-style-mini-cards .slick-list .slick-track .braftonium-slide.slick-current.slick-active {
  opacity: 1;
  max-height: fit-content;
}
@media screen and (min-width: 1030px) {
  .braftonium-slider.is-style-mini-cards .slick-list .slick-track .braftonium-slide.slick-current.slick-active + .slick-active {
    opacity: 1;
    max-height: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-mini-cards .slick-list .slick-track .braftonium-slide {
    opacity: 0.13;
    max-height: 300px;
  }
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-mini-cards .slick-list {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-mini-cards {
    width: 100%;
    margin-left: 0;
  }
}

.braftonium-slide:has(.wp-block-group.is-style-quote) {
  height: auto;
  padding: 1rem;
}

.braftonium-slider.is-style-logos {
  max-width: calc(14.688rem + 72px);
  padding: 0 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-logos .slick-prev {
    left: -1rem;
  }
}
@media screen and (min-width: 768px) {
  .braftonium-slider.is-style-logos .slick-next {
    right: -1rem;
  }
}
.braftonium-slider.is-style-logos .slick-list.draggable,
.braftonium-slider.is-style-logos .block-editor-inner-blocks {
  max-width: 14.688rem;
  margin: 0 auto;
}
.braftonium-slider.is-style-logos .slick-list.draggable .slick-track .braftonium-slide .wp-block-image,
.braftonium-slider.is-style-logos .block-editor-inner-blocks .slick-track .braftonium-slide .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.688rem;
  height: 200px;
}
.braftonium-slider.is-style-logos .slick-list.draggable .slick-track .braftonium-slide .wp-block-image img,
.braftonium-slider.is-style-logos .block-editor-inner-blocks .slick-track .braftonium-slide .wp-block-image img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  margin: 0;
}
@media screen and (min-width: 540px) {
  .braftonium-slider.is-style-logos .slick-list.draggable,
  .braftonium-slider.is-style-logos .block-editor-inner-blocks {
    max-width: 30.626rem;
  }
}
@media screen and (min-width: 1030px) {
  .braftonium-slider.is-style-logos .slick-list.draggable,
  .braftonium-slider.is-style-logos .block-editor-inner-blocks {
    max-width: 62.502rem;
  }
}
@media screen and (min-width: 540px) {
  .braftonium-slider.is-style-logos {
    max-width: calc(30.626rem + 72px);
  }
}
@media screen and (min-width: 1030px) {
  .braftonium-slider.is-style-logos {
    max-width: calc(62.502rem + 72px);
  }
}

.wp-block-group.pattern--single-col-card {
  padding: clamp(1rem, 0.038rem + 3.846vw, 2.5rem) !important;
  gap: 1rem;
}
.wp-block-group.pattern--single-col-card .wp-block-image img {
  width: auto;
  max-height: 95px;
}
.wp-block-group.pattern--single-col-card .wp-block-heading {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.125rem, 0.801rem + 1.295vw, 1.63rem);
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.82px;
  text-transform: uppercase;
}
.wp-block-group.pattern--single-col-card p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
}

.wp-block-group.two-col-w-headings {
  padding: clamp(1rem, 0.038rem + 3.846vw, 2.5rem);
}
.wp-block-group.two-col-w-headings .wp-block-heading {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-top: 0;
  margin-bottom: clamp(1.25rem, -0.513rem + 7.051vw, 4rem);
  font-size: clamp(1.5rem, 0.84rem + 0.641vw, 2.19rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3.15px;
  line-height: 1.2;
  text-transform: uppercase;
}
.wp-block-group.two-col-w-headings .wp-block-columns .wp-block-column .wp-block-heading {
  font-size: clamp(1rem, 0.84rem + 0.641vw, 1.63rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.82px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-group.two-col-w-headings .wp-block-columns .wp-block-column p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
  margin-top: 1rem;
}

.wp-block-group.is-style-quote p.has-h-1-size-font-size,
.wp-block-group.is-style-quote-small p.has-h-1-size-font-size {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(1rem, 0.397rem + 2.299vw, 1.5rem) !important;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .wp-block-group.is-style-quote p.has-h-1-size-font-size,
  .wp-block-group.is-style-quote-small p.has-h-1-size-font-size {
    font-size: 2.188rem !important;
  }
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap {
  flex-wrap: nowrap;
  margin-top: 1.813rem;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-image,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-image {
  height: 6.438rem;
  width: 6.438rem;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-image img,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-image img {
  min-width: 6.438rem;
  display: block;
  margin: 0;
  border: 0;
  border-radius: 50rem;
  aspect-ratio: 1/1;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical {
  gap: 0.25rem;
  flex-wrap: wrap;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p {
  display: block;
  font-size: 0.875rem;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.063rem;
  width: 100%;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:first-child,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:first-child {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.105rem;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:nth-child(2),
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:nth-child(2) {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-style: italic;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:last-child,
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:last-child {
  margin-top: 0.75rem;
  font-weight: 500;
}
.wp-block-group.is-style-quote .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:last-child a:not(.wp-element-button):not(:hover),
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:last-child a:not(.wp-element-button):not(:hover) {
  text-decoration: none;
}

.wp-block-group.is-style-quote-small {
  max-width: 502px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem !important;
}
.wp-block-group.is-style-quote-small p.has-h-1-size-font-size {
  font-size: clamp(1rem, 0.397rem + 2.299vw, 1.25rem) !important;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap {
  margin-top: 1.813rem;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-image {
  height: 5rem;
  width: 5rem;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-image img {
  min-width: 5rem;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p {
  font-size: 0.875rem;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:first-child {
  letter-spacing: 0.15rem;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:nth-child(2) {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-style: italic;
}
.wp-block-group.is-style-quote-small .wp-block-group.is-layout-flex.is-nowrap .wp-block-group.is-vertical p:last-child {
  margin-top: 0;
}

.wp-block-columns.is-style-4-col-layout img {
  max-height: clamp(4.375rem, 3.125rem + 3.333vw, 5.625rem) !important;
}
.wp-block-columns.is-style-4-col-layout p {
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
}

.is-style-centered {
  text-align: center;
}
.is-style-centered .wp-block-heading {
  font-size: clamp(2rem, 0.875rem + 3vw, 3.125rem);
  line-height: 1.2;
  font-weight: 500;
}
.is-style-centered p {
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
}

.wp-block-group.is-style-2-col-tiny-icon {
  max-width: 772px;
  margin-left: auto;
  margin-right: auto;
  gap: 0.875rem;
}
.wp-block-group.is-style-2-col-tiny-icon .wp-block-group {
  flex-wrap: nowrap;
}
.wp-block-group.is-style-2-col-tiny-icon .wp-block-group .wp-block-image {
  width: 4.5rem;
}
.wp-block-group.is-style-2-col-tiny-icon .wp-block-group .wp-block-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.wp-block-group.is-style-2-col-tiny-icon .wp-block-group p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
}

.wp-block-group.is-style-2-col-tiny-icon-small {
  max-width: 450px;
  gap: 0.875rem;
}
.wp-block-group.is-style-2-col-tiny-icon-small .wp-block-group {
  flex-wrap: nowrap;
}
.wp-block-group.is-style-2-col-tiny-icon-small .wp-block-group .wp-block-image {
  width: 3.25rem;
}
.wp-block-group.is-style-2-col-tiny-icon-small .wp-block-group .wp-block-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.wp-block-group.is-style-2-col-tiny-icon-small .wp-block-group p {
  font-size: clamp(1rem, 0.84rem + 0.641vw, 1.375rem);
  font-weight: 600;
  line-height: 1.36;
}

.is-style-offset-grid .wp-block-columns {
  justify-content: center;
  flex-wrap: wrap !important;
  gap: 5.938rem;
}
.is-style-offset-grid .wp-block-columns .wp-block-column {
  flex-basis: calc((100% - 11.876rem) / 3) !important;
  flex-grow: 0 !important;
}
.is-style-offset-grid .wp-block-columns .wp-block-column .wp-block-group {
  gap: 0.875rem;
}
.is-style-offset-grid .wp-block-columns .wp-block-column .wp-block-group .wp-block-image {
  max-height: 6.125rem;
}
.is-style-offset-grid .wp-block-columns .wp-block-column .wp-block-group .wp-block-image img {
  display: block;
  width: auto;
  height: 100%;
}
.is-style-offset-grid .wp-block-columns .wp-block-column .wp-block-group .wp-block-heading {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.84rem + 0.641vw, 1.63rem);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.82px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}
.is-style-offset-grid .wp-block-columns .wp-block-column .wp-block-group p {
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
}

.wp-block-group.is-style-toc-pillar {
  max-width: 958px;
  margin: 0 auto;
  padding: clamp(1.5rem, 0.84rem + 0.641vw, 3rem);
}
.wp-block-group.is-style-toc-pillar .wp-block-heading {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 4.313rem;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns .wp-block-column .wp-block-image {
  max-width: 7.75rem;
  max-height: 7.75rem;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns .wp-block-column .wp-block-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 7.75rem;
  object-fit: contain;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns .wp-block-column .wp-block-image + p {
  margin-top: 1.25rem;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns .wp-block-column p {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.922rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.2;
  font-weight: 700;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns .wp-block-column p a {
  display: inline-block;
  text-decoration: none;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns .wp-block-column p a:hover {
  text-decoration: underline;
}
.wp-block-group.is-style-toc-pillar .wp-block-columns + .wp-block-columns {
  margin-top: 4.313rem;
}
@media screen and (min-width: 540px) {
  .wp-block-group.is-style-toc-pillar .wp-block-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .wp-block-group.is-style-toc-pillar .wp-block-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wp-block-group.is-style-zigzag-cols {
  text-align: center;
}
.wp-block-group.is-style-zigzag-cols .wp-block-heading {
  margin-bottom: 4rem;
}
.wp-block-group.is-style-zigzag-cols .wp-block-columns {
  gap: 2rem;
  justify-content: center;
}
.wp-block-group.is-style-zigzag-cols .wp-block-columns .wp-block-column .wp-block-heading {
  margin: 0;
}
.wp-block-group.is-style-zigzag-cols .wp-block-columns .wp-block-column p {
  margin-top: 0.5rem;
}
.wp-block-group.is-style-zigzag-cols .wp-block-columns .wp-block-column:first-child {
  max-width: 26.563rem;
}
.wp-block-group.is-style-zigzag-cols .wp-block-columns .wp-block-column:not(:first-child) {
  width: auto;
  min-width: 480px;
  max-width: 100%;
}
@media screen and (min-width: 782px) {
  .wp-block-group.is-style-zigzag-cols .wp-block-columns .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.wp-block-group.is-style-zigzag-cols .wp-block-columns + .wp-block-columns {
  margin-top: 6.625rem;
}
@media screen and (min-width: 782px) {
  .wp-block-group.is-style-zigzag-cols .wp-block-columns {
    justify-content: center;
    flex-grow: 0;
    flex-basis: initial;
    gap: 4rem;
    width: fit-content;
  }
  .wp-block-group.is-style-zigzag-cols .wp-block-columns:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 782px) {
  .wp-block-group.is-style-zigzag-cols {
    text-align: left;
  }
}

.wp-block-group.is-style-small-icon-wide-card {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.is-style-toc-list {
  max-width: 844px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.is-style-toc-list .wp-block-heading {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  margin-bottom: 2rem;
  font-weight: 500;
}
.wp-block-group.is-style-toc-list ul {
  padding-left: 2rem;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.wp-block-group.is-style-toc-list ul li {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.wp-block-group.is-style-toc-list ul li a {
  display: inline-block;
  text-decoration: none;
}
.wp-block-group.is-style-toc-list ul li a:hover {
  text-decoration: underline;
}
.wp-block-group.is-style-toc-list ul li + li {
  margin-top: 1.875rem;
}
.wp-block-group.is-style-toc-list ul li ul {
  margin-top: 0;
  margin-left: 0;
  padding-left: 1.25rem;
}
.wp-block-group.is-style-toc-list ul li ul li {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}

.wp-block-group.is-style-illustrated-wide-card p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
}

.wp-block-columns.is-style-location-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: clamp(1.25rem, -1.281rem + 10.126vw, 6.313rem);
  row-gap: 2.25rem;
}
@media screen and (min-width: 540px) {
  .wp-block-columns.is-style-location-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-location-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wp-block-columns.is-style-location-card-grid .wp-block-column .wp-block-group.pattern--single-col-card {
  padding: 1.5rem 1.875rem 2.25rem !important;
  gap: 0.938rem;
  height: 100%;
}
.wp-block-columns.is-style-location-card-grid .wp-block-column .wp-block-group.pattern--single-col-card .wp-block-image img {
  width: auto;
  max-height: 2.875rem;
}
.wp-block-columns.is-style-location-card-grid .wp-block-column .wp-block-group.pattern--single-col-card .wp-block-heading {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.801rem + 1.295vw, 1.375rem);
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: initial;
  margin-top: 0.938rem;
}
.wp-block-columns.is-style-location-card-grid .wp-block-column .wp-block-group.pattern--single-col-card p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
  margin-top: 0.938rem;
}

.wp-block-columns.is-style-speaker-details-card {
  gap: 1.875rem;
  flex-direction: column;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-speaker-details-card {
    flex-direction: row;
  }
}
.wp-block-columns.is-style-speaker-details-card .wp-block-column {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-speaker-details-card .wp-block-column {
    align-items: initial;
  }
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-speaker-details-card .wp-block-column:has(.wp-block-image) {
    flex-basis: fit-content;
    flex-grow: 0;
  }
}
.wp-block-columns.is-style-speaker-details-card .wp-block-column:has(.wp-block-heading) {
  flex: 1;
}
.wp-block-columns.is-style-speaker-details-card .wp-block-column .wp-block-image {
  width: fit-content;
}
.wp-block-columns.is-style-speaker-details-card .wp-block-column .wp-block-image img {
  display: block;
  width: auto;
  height: auto;
  max-height: 10.375rem;
}
.wp-block-columns.is-style-speaker-details-card .wp-block-column .wp-block-heading {
  margin: 0;
}
.wp-block-columns.is-style-speaker-details-card .wp-block-column p {
  margin: 0;
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
}

.wp-block-columns.is-style-2-col-w-offset-icon {
  gap: 4.188rem;
}
.wp-block-columns.is-style-2-col-w-offset-icon .wp-block-column {
  position: relative;
}
.wp-block-columns.is-style-2-col-w-offset-icon .wp-block-column:has(.wp-block-heading) .wp-block-image {
  width: 76px;
}
.wp-block-columns.is-style-2-col-w-offset-icon .wp-block-column:has(.wp-block-heading) .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-2-col-w-offset-icon .wp-block-column:has(.wp-block-heading) .wp-block-image {
    position: absolute;
    right: calc(100% + 1.5rem);
    top: 0;
  }
}
.wp-block-columns.is-style-2-col-w-offset-icon .wp-block-column .wp-block-heading {
  margin-bottom: 2rem;
  margin-top: 0;
}
.wp-block-columns.is-style-2-col-w-offset-icon .wp-block-column p {
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.125rem);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 2.625rem;
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-2-col-w-offset-icon {
    padding-left: 6.25rem;
  }
}

.wp-block-group.is-style-case-study-testimonial {
  position: relative;
}
.wp-block-group.is-style-case-study-testimonial::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 100%;
  left: calc((100% - min(100% - 4rem, 1200px)) / 2 + min(2vw, 3rem));
  width: 54px;
  height: 54px;
  background-color: var(--wp--preset--color--green);
  transform: rotate(45deg) translateY(-70%);
}
.wp-block-group.is-style-case-study-testimonial .wp-block-group.is-style-quote p.has-h-1-size-font-size {
  font-size: clamp(1rem, 0.397rem + 2.299vw, 1.875rem) !important;
}

.wp-block-group.is-style-case-study-card-w-quote .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wp-block-group.is-style-case-study-card-w-quote .wp-block-heading {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 0.801rem + 1.295vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  margin-top: 1.75rem;
}
.wp-block-group.is-style-case-study-card-w-quote p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.5;
  margin-top: 0.5rem;
}
.wp-block-group.is-style-case-study-card-w-quote p:has(a) {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.125rem);
  font-weight: 700;
  margin-top: 1.25rem;
}

.wp-block-columns.is-style-2x2-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(1.5rem, -6.291rem + 27.702vw, 11.438rem);
  row-gap: 4rem;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 460px) {
  .wp-block-columns.is-style-2x2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wp-block-columns.is-style-2x2-grid .wp-block-column .wp-block-image {
  margin-bottom: 1.75rem;
}
.wp-block-columns.is-style-2x2-grid .wp-block-column .wp-block-image img {
  height: clamp(4.375rem, 3.297rem + 3.833vw, 5.75rem);
  width: auto;
  max-width: 7rem;
}
.wp-block-columns.is-style-2x2-grid .wp-block-column p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.25rem);
}
@media screen and (min-width: 460px) {
  .wp-block-columns.is-style-2x2-grid .wp-block-column {
    max-width: 17.938rem;
  }
}

.wp-block-group.is-style-partnerships-list .wp-block-heading {
  text-align: center;
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-size: 2.188rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-group.is-style-partnerships-list ul {
  padding: 0;
  margin-top: 0;
  max-width: 746px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.is-style-partnerships-list ul li {
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.875rem, 0.84rem + 0.641vw, 1.25rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-align: left;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  text-transform: uppercase;
}
.wp-block-group.is-style-partnerships-list ul li::marker {
  color: transparent;
}
.wp-block-group.is-style-partnerships-list ul li:not(:first-child) {
  border-top: 1px solid #707070;
}
.wp-block-group.is-style-partnerships-list ul li a {
  text-decoration: none;
  color: inherit;
}
.wp-block-group.is-style-partnerships-list ul li a:hover {
  text-decoration: underline;
}
.wp-block-group.is-style-partnerships-list ul + .wp-block-heading {
  margin-top: 1.875rem;
}

.is-style-basic-cta .wp-block-group .is-style-cta__text {
  text-wrap: nowrap;
}
.is-style-basic-cta .wp-block-group .wp-block-buttons {
  justify-content: center;
}
.is-style-basic-cta .wp-block-group .is-style-loopy-arrow a:before {
  transform: rotate(6deg) scaleX(1) translate(-78%) translateY(6px);
}

@media screen and (max-width: 900px) {
  .is-style-basic-cta .wp-block-group .is-style-cta__text {
    text-wrap: wrap;
  }
  .is-style-basic-cta .wp-block-group .is-style-loopy-arrow a:before {
    transform: rotate(11deg) scaleX(1) translate(-78%) translateY(11px);
  }
}
.editor-styles-wrapper .is-style-basic-cta .wp-block-group .is-style-cta__text {
  text-wrap: nowrap !important;
}

.is-style-complex-cta .wp-block-group .is-style-complex-cta__body-text {
  font-size: clamp(0.875rem, 2.75vw, 1.25rem);
}
.is-style-complex-cta .wp-block-group .is-style-complex-cta__button-text {
  font-size: clamp(0.875rem, 2vw, 1.25rem);
}
.is-style-complex-cta .wp-block-group .wp-block-button {
  margin-left: 60px;
}
.is-style-complex-cta .wp-block-group .is-style-loopy-arrow a:before {
  transform: rotate(20deg) scaleX(0.75) scaleY(-1) translate(-112%) translateY(-62px);
}

.editor-styles-wrapper .is-style-basic-cta .wp-block-group .is-style-cta__text {
  text-wrap: nowrap !important;
}

.wp-block-brafton-blocks-accordion.is-style-center-text > .accordion-title {
  text-align: center;
}
.wp-block-brafton-blocks-accordion.is-style-service-location {
  max-width: 746px !important;
  margin: auto;
}
.wp-block-brafton-blocks-accordion.is-style-service-location > .accordion-title {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  height: 76px;
}
.wp-block-brafton-blocks-accordion.is-style-service-location > .accordion-title > img {
  height: 90% !important;
  width: auto !important;
}
.wp-block-brafton-blocks-accordion.is-style-service-location > .accordion-title .icon {
  display: none !important;
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content {
  padding-top: 3rem;
  padding-left: 1rem;
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content > * {
  min-width: calc(280px - 1rem);
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content .wp-block-buttons {
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 1rem;
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content .wp-block-buttons:not(.block-editor-block-list__block) {
  display: none;
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content .wp-block-buttons .wp-block-button a {
  margin: 0;
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content p {
  font-size: 0.75rem;
  display: block;
  position: relative;
  cursor: pointer;
}
.wp-block-brafton-blocks-accordion.is-style-service-location .accordion-content p:after {
  content: "";
  width: 12px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0.5rem;
  right: 0;
}

.is-style-fake-masonry {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.is-style-fake-masonry > *:nth-child(even) {
  transform: translateY(20%);
  margin-bottom: 2rem;
}

.is-style-half-width-right {
  right: 0;
  top: 0;
  height: 100%;
  width: 50vw;
}
.is-style-half-width-right:not(.block-editor-block-list__block) {
  position: absolute;
}
.is-style-half-width-right img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center left;
}

.is-style-half-width-left {
  left: 0;
  top: 0;
  height: 100%;
  width: 50vw;
}
.is-style-half-width-left:not(.block-editor-block-list__block) {
  position: absolute;
}
.is-style-half-width-left img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center right;
}

.is-style-breadcrumbs {
  display: none;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .is-style-breadcrumbs {
    display: flex;
  }
}
.is-style-breadcrumbs li {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.875;
  color: #1C7E86;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 1.12px;
  position: relative;
}
.is-style-breadcrumbs li:not(:first-child) {
  padding-left: 2rem;
}
.is-style-breadcrumbs li:not(:first-child):before {
  content: "»";
  position: absolute;
  left: 0.5rem;
  display: block;
  letter-spacing: -1px;
}

.is-style-emphasis-paragraph {
  font-size: clamp(1.4rem, 2.25vw, 1.875rem);
}

.wp-block-embed__wrapper:has(.instagram-embed-container):before {
  padding-top: 100% !important;
}

/* The Modal (background) */
.portfolio-asset-preview {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.portfolio-asset-preview__content {
  background-color: #fefefe;
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  height: 80%;
  overflow-y: auto;
}
.portfolio-asset-preview__content .portfolio-asset-preview__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* The Close Button */
.portfolio-asset-preview__close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.portfolio-asset-preview__close:hover,
.portfolio-asset-preview__close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.create-your-strategy .strategy-panel header {
  grid-row: 1;
  grid-column: 1/-1;
  position: relative;
}
.create-your-strategy .strategy-panel header .page {
  position: absolute;
  top: 0;
  left: 0;
}
.create-your-strategy .strategy-panel header > * {
  text-align: center;
}
.create-your-strategy .strategy-panel header h2 {
  margin-top: 0;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 2.16px;
}
.create-your-strategy .strategy-panel header p {
  font-family: "georgiapro", "Georgia", Cambria, Times New Roman, Times, serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-top: 0;
}
.create-your-strategy .strategy-panel .m-form-container {
  width: 60%;
  margin: auto;
}
.create-your-strategy .strategy-panel .m-form-container p {
  font-size: 0.875rem;
  font-style: italic;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 100;
  line-height: 1.13;
  color: #424143;
}
.create-your-strategy .strategy-panel-step2-container {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 25px;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e1f2f3;
  flex: 1 1 230px;
  height: 223px;
  padding: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  position: relative;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block .strategy-panel-step2__block__image-background {
  display: block;
  flex: 0 0 80px;
  border-radius: 50%;
  align-self: center;
  height: 80px;
  width: 80px;
  background-color: #ffffff;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block h3 {
  margin-top: 35px;
  text-align: center;
  font-family: proxima-nova, sans-serif;
  font-size: 1.375rem;
  line-height: 1.625rem;
  letter-spacing: 0px;
  font-weight: normal;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block .strategy-panel-step2__block__image {
  max-height: 100px;
  max-height: 100px;
  object-fit: contain;
  position: absolute;
  top: 10px;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block:hover {
  cursor: pointer;
  background-color: #f0c564;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block:hover h3 {
  font-weight: bold;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block:hover .strategy-panel-step2__block__image-background {
  background-color: #f5d99a;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block.selected {
  background-color: #f0c564;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block.selected .strategy-panel-step2__block__image-background {
  background-color: #f5d99a;
}
.create-your-strategy .strategy-panel-step2-container .strategy-panel-step2__block.selected h3 {
  font-weight: bold;
}
.create-your-strategy .strategy-panel-step3-container {
  display: flex;
  flex-direction: column;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container {
  border-bottom: 1px solid #dedede;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: initial;
  border: initial;
  padding: 5px 15px;
  height: 122px;
  width: 100%;
  gap: 2em;
  transition: background-color 0.3s ease-in-out;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion .accordion-title__image-background {
  display: block;
  flex: 0 0 45px;
  border-radius: 50%;
  align-self: center;
  height: 45px;
  width: 45px;
  background-color: #e1f2f3;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion .image {
  position: absolute;
  top: 27px;
  left: 2px;
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion .icon {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border: 2px solid #1c7e86;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  flex: 0 0 45px;
  transition: background-color 0.3s ease-in-out;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion .icon::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 25%;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: solid #1c7e86;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 7px;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion .title {
  font-family: "proxima-nova-bold", sans-serif;
  height: 100%;
  color: #2c3f4a;
  display: flex;
  align-items: center;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion .spacer {
  flex: 1 1 auto;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion:hover {
  cursor: pointer;
  background-color: #f9f9f9;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .strategy-panel-step3-container_accordion:hover .accordion-title__image-background {
  background-color: #f0c564;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content {
  display: none;
  color: #2c3f4a;
  padding: 25px;
  gap: 15px;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e1f2f3;
  flex: 1 1 173px;
  height: 192px;
  padding: 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  position: relative;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block .strategy-panel-step3__block__image-background {
  display: block;
  flex: 0 0 80px;
  border-radius: 50%;
  align-self: center;
  height: 75px;
  width: 75px;
  background-color: #ffffff;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block h3 {
  margin-top: 15px;
  text-align: center;
  font-family: proxima-nova, sans-serif;
  font-size: 1.375rem;
  line-height: 1.625rem;
  letter-spacing: 0px;
  font-weight: normal;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block .strategy-panel-step3__block__image {
  height: 100px;
  height: 100px;
  object-fit: contain;
  position: absolute;
  top: 7px;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block:hover {
  cursor: pointer;
  background-color: #f0c564;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block:hover h3 {
  font-weight: bold;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block:hover .strategy-panel-step3__block__image-background {
  background-color: #f5d99a;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block.selected {
  background-color: #f0c564;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block.selected .strategy-panel-step3__block__image-background {
  background-color: #f5d99a;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container .accordion-content .strategy-panel-step3__block.selected h3 {
  font-weight: bold;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container.open {
  background-color: #f9f9f9;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container.open .strategy-panel-step3-container_accordion {
  background-color: #f9f9f9;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container.open .strategy-panel-step3-container_accordion .accordion-title__image-background {
  background-color: #f0c564;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container.open .strategy-panel-step3-container_accordion .icon::before {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  top: initial;
  bottom: 21%;
}
.create-your-strategy .strategy-panel-step3-container .strategy-panel-step3-container_accordion_container.open .accordion-content {
  display: grid;
}
.create-your-strategy .strategy-panel:not(.active) {
  display: none;
}
.create-your-strategy .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.create-your-strategy .navigation .error {
  display: none;
  left: 0;
  width: 100%;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}
.create-your-strategy .navigation .error p {
  color: #f01d4f;
  margin: 0;
  text-align: center;
}
.create-your-strategy .navigation button {
  margin: 1rem 2rem;
  text-transform: uppercase;
}

.writers-share-form-panel {
  display: flex;
  flex-direction: column;
  width: 14.35rem;
  margin: 10px;
  gap: 10px;
}
.writers-share-form-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.writers-share-form-panel .writers-share-form-panel__writers-image {
  display: flex;
  position: relative;
  height: 8.313rem;
  align-items: flex-end;
}
.writers-share-form-panel .writers-share-form-panel__writers-image .writers-share-form-panel__writers-image__img {
  width: 8.313rem;
  height: 8.313rem;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff;
  position: absolute;
}
.writers-share-form-panel .writers-share-form-panel__writers-name {
  font-family: proxima-nova, sans-serif;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin: initial;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__text {
  font-family: proxima-nova, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.25rem;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button {
  width: 1.875rem;
  height: 1.875rem;
  background-color: transparent;
  border: initial;
  padding: initial;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button i {
  font-size: 1.875rem;
  color: #BCBEC0;
  width: 100%;
  height: 100%;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button i:has(svg) {
  background-color: #BCBEC0;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button i > svg {
  fill: white;
  width: 100%;
  height: 100%;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button i > svg path {
  fill: white !important;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button i:hover {
  color: #0AA9B6;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button i:hover:has(svg) {
  background-color: #0AA9B6;
}
.writers-share-form-panel .writers-share-form-panel__writers-share__buttons .writers-share-form-panel__writers-share__buttons__button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.writers-share-form-panel .writers-share-form-panel__news-letter-container {
  display: flex;
  flex-direction: column;
}
.writers-share-form-panel .writers-share-form-panel__news-letter-container .writers-share-form-panel__news-letter-container__CTO {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.writers-share-form-panel .writers-share-form-panel__news-letter-container .writers-share-form-panel__news-letter-container__CTO .writers-share-form-panel__news-letter-container__call {
  font-family: proxima-nova, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.25rem;
}
.writers-share-form-panel .writers-share-form-panel__news-letter-container .writers-share-form-panel__news-letter-container__CTO .writers-share-form-panel__news-letter-container__img {
  width: 3.688rem;
  height: 3.438rem;
}
.writers-share-form-panel .mktoForm {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100% !important;
}
.writers-share-form-panel .mktoForm .mktoFormRow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor {
  flex: 1 1 auto;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor .mktoFieldWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor .mktoFieldWrap .mktoLabel {
  pointer-events: none;
  color: white;
  width: fit-content !important;
  text-transform: uppercase;
  font-size: 0.625rem;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor .mktoFieldWrap .mktoLabel .mktoAsterix {
  color: #ffffff;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor .mktoFieldWrap .mktoGutter {
  display: none;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor .mktoFieldWrap .mktoField {
  width: 100% !important;
  min-width: 14.35rem;
  color: #2c3f4a;
  font-size: 0.875rem;
  height: 2.625rem;
  word-spacing: 0.98px;
  font-family: proxima-nova, sans-serif;
  background-color: #ffffff;
  border-color: #a3a3a3;
  border-style: solid;
  border-width: 0.5px;
  border-radius: 2px;
}
.writers-share-form-panel .mktoForm .mktoFieldDescriptor .mktoOffset {
  display: none;
}
.writers-share-form-panel .mktoForm .mktoButtonRow .mktoButtonWrap {
  margin-left: initial !important;
}
.writers-share-form-panel .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
  text-transform: uppercase !important;
  border-radius: 2px !important;
  color: #ffffff !important;
  background-color: #1c7e86 !important;
  font: initial !important;
  font-size: 1rem !important;
  font-family: proxima-nova, sans-serif !important;
  letter-spacing: 1.12px;
  align-items: center;
  background-image: initial !important;
  box-shadow: none !important;
  text-shadow: none !important;
  margin: 0 !important;
  margin-top: 5px !important;
  height: 2.825rem !important;
  padding: 0 1.5rem !important;
  border: 2px solid #1c7e86 !important;
}
.writers-share-form-panel .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover {
  background-color: transparent !important;
  border: 2px solid #1c7e86 !important;
  color: #1c7e86 !important;
  text-shadow: none !important;
  background-image: initial !important;
}
.writers-share-form-panel .mktoForm .completion {
  display: none;
}
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoFormRow {
  flex-direction: column;
}
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoFormCol {
  width: 100%;
}
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoFormCol .mktoFieldWrap {
  width: 100%;
}
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoFormCol input,
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoFormCol select,
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoFormCol textarea {
  width: 100%;
}
.writers-share-form-panel .mktoForm.single-column .mktoForm .mktoButtonRow {
  justify-content: flex-start;
}
.writers-share-form-panel .mktoForm.over-white .mktoForm .mktoFormRow .mktoLabel {
  color: #767676 !important;
}
.writers-share-form-panel .mktoForm.over-white .mktoForm .mktoFormRow .mktoLabel .mktoAsterix {
  color: #767676;
}
.writers-share-form-panel .mktoForm.fields-transparent .mktoForm .mktoFormRow .mktoField {
  background-color: transparent;
}
.writers-share-form-panel .mktoForm.top-margin {
  margin-top: 3em;
}
@media (max-width: 600px) {
  .writers-share-form-panel .mktoForm {
    flex-wrap: wrap;
  }
  .writers-share-form-panel .mktoFieldDescriptor {
    width: 100%;
  }
  .writers-share-form-panel .mktoFieldDescriptor .mktoFieldWrap {
    width: 100%;
  }
  .writers-share-form-panel .mktoFormRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.archive .wp-block-group.full-width, .search-results .wp-block-group.full-width {
  padding: 3rem 0;
}
@media (min-width: 782px) {
  .archive .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column, .search-results .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
}
.archive .resource-list-container__content, .search-results .resource-list-container__content {
  margin-bottom: 2rem;
}

.post-type-archive-glossary #pagination {
  background-color: #1C7E86;
}
.post-type-archive-glossary #pagination .wrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0.5rem;
}
.post-type-archive-glossary #pagination .wrap a {
  color: white;
  text-decoration: none;
  font-size: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .post-type-archive-glossary article {
    max-width: 80%;
    margin: auto;
  }
}
.post-type-archive-glossary article h3 {
  font-size: 1.625rem;
  line-height: 1.2308;
  font-weight: bold;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page-template-page-without-header #inner-header .wrap {
  justify-content: center;
}
.page-template-page-without-header #inner-header .wrap nav {
  display: none;
}
.page-template-page-without-header-and-footer #inner-header .wrap {
  justify-content: center;
}
.page-template-page-without-header-and-footer #inner-header .wrap nav {
  display: none;
}
.page-template-page-without-header-and-footer #inner-footer .row {
  display: flex;
}
.page-template-page-without-header-and-footer #inner-footer .branding {
  display: flex;
  justify-content: center;
}
.page-template-page-without-header-and-footer #inner-footer .brand-logo {
  display: flex;
  justify-content: center;
}

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