/*
Theme Name: styl_s
Theme URI: https://github.com/luclemo/Styl_s
Author: Lucas Lemonnier
Author URI: http://lucaslemonnier.com
Description: A stylus version of the underscores starter theme (http://underscores.me/)
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: styl_s
Tags:

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

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

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
		## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 32em;
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 1280%;
  font-size: 80%;
}
sub,
sup {
  font-size: 1200%;
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 16em;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-weight: 300;
  font-style: normal;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: roboto, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: league-gothic, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1em;
}
h2 {
  font-size: 32px;
  font-size: 2rem;
  color: #f04e31;
}
h3 {
  font-size: 21.6px;
  font-size: 1.35rem;
  color: #003b73;
}
.single h3 {
  color: #fbb03d;
}
p {
  margin-bottom: 1.5em;
  font-size: 18px;
  font-size: 1.125rem;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 2000%;
  font-size: 125%;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
body {
  background: #fff;
}
blockquote,
q,
.wp-block-pullquote blockquote {
  quotes: "" "";
  text-align: center;
  padding: 25px;
  margin: 3.5em 0 3.5em 30px;
  position: relative;
}
blockquote:before,
q:before,
.wp-block-pullquote blockquote:before {
  content: '';
  width: 10px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#fbb03d), to(#f04e31));
  background: -o-linear-gradient(bottom, #fbb03d 0%, #f04e31 100%);
  background: linear-gradient(0deg, #fbb03d 0%, #f04e31 100%);
  display: block;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
blockquote p,
q p,
.wp-block-pullquote blockquote p {
  color: #0056a7;
  font-size: 21.6px;
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  text-align: left;
  background: #fff;
  padding: 0 0 30px 30px;
  margin: 0;
}
blockquote p:before,
q p:before,
.wp-block-pullquote blockquote p:before,
blockquote p:after,
q p:after,
.wp-block-pullquote blockquote p:after {
  content: '"';
}
blockquote cite,
q cite,
.wp-block-pullquote blockquote cite {
  color: #f04e31;
  font-family: league-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  background: #fff;
  padding: 0;
}
.wp-block-quote,
.wp-block-pullquote {
  margin: 2em 0;
}
.wp-block-pullquote {
  padding: 0;
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0 0 1.5em 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  max-width: 100%;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border-radius: 0;
  background-color: #003b73;
  -webkit-box-shadow: 0px 0px 18px 0px #fbb03d;
          box-shadow: 0px 0px 18px 0px #fbb03d;
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  color: #fff;
  letter-spacing: 3px;
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 8px 18px;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}
textarea {
  padding-left: 3px;
  width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
---------------------------------------------------------------*/
a {
  color: #f04e31;
}
a:visited {
  color: #f04e31;
}
a:hover,
a:focus,
a:active {
  color: #f04e31;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
.wp-block-button .wp-block-button__link,
.gb-block-button .gb-button {
  border-radius: 0;
  background-color: #003b73 !important;
  -webkit-box-shadow: 0px 0px 18px 0px #fbb03d;
          box-shadow: 0px 0px 18px 0px #fbb03d;
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  letter-spacing: 3px;
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 8px 18px;
}
/* --------------------------------------------------------------
## Menus
----------------------------------------------------------------*/
#masthead {
  background: #fff;
  width: 100%;
  z-index: 999;
}
#masthead .menu-container {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: visible;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1920px) {
  #masthead .menu-container {
    width: auto;
    max-width: 1820px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #masthead .menu-container {
    height: 100%;
  }
}
#masthead .menu-container .menu-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex {
    height: 100%;
    width: 100%;
  }
}
#masthead .menu-container .menu-flex .site-branding {
  position: relative;
  width: 150px;
  height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .site-branding {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .site-branding {
    margin-right: 50px;
  }
}
@media only screen and (min-width: 1551px) {
  #masthead .menu-container .menu-flex .site-branding {
    margin-right: 100px;
  }
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .main-navigation {
    display: block !important;
    margin-right: 50px;
  }
}
@media only screen and (min-width: 1551px) {
  #masthead .menu-container .menu-flex .main-navigation {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation {
    display: none;
    position: absolute;
    top: 99px;
    left: -15%;
    z-index: 98;
    width: calc(100vw + 15%);
    min-height: calc(100vh - 99px);
    background: #fff;
    border-top: 2px solid #f04e31;
    background: rgba(0,59,115,0.9);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0;
    position: relative;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li {
    padding: 50px 18px;
  }
}
@media only screen and (min-width: 1551px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li {
    padding: 50px 35px;
  }
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li:first-child {
    padding-left: 0 !important;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li:last-child {
  padding-right: 0 !important;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li {
    padding-top: 1.5em;
    min-width: 100%;
    max-width: 240px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15px 15%;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li .nav-heading {
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
  opacity: 0;
  position: absolute;
  top: 100%;
  z-index: 999999;
  font-size: 64px;
  font-size: 4rem;
  width: 500px;
  color: #fff;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li .nav-heading {
    top: 35px;
    z-index: 0;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-grandchildren.active >ul.sub-menu {
  left: 35px;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-grandchildren.active >ul.sub-menu {
    left: 0;
  }
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-grandchildren.active >ul.sub-menu {
    width: 100%;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-grandchildren.active:first-child >ul.sub-menu {
  left: 0;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-grandchildren >ul.sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 670px;
  left: -999em;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-grandchildren >ul.sub-menu {
    max-height: 100%;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-children .bg-overlay {
  background: rgba(0,59,115,0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: none;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
  opacity: 0;
  margin: 0;
  width: 200vw;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-children.active .nav-heading {
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
     transition-delay: 250ms;
  opacity: 1;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-children.active .bg-overlay {
  display: block;
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
     transition-delay: 250ms;
  opacity: 1;
  left: -100vw;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-children.active .bg-overlay {
    display: none;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-children.active >a {
  position: relative;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-has-children.active >a:before {
  content: '';
  width: 32px;
  height: 32px;
  display: block;
  background-image: url("./library/images/nav-item-active.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -9px;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-763.active .nav-heading {
  left: -145px;
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li.menu-item-763.active >ul.sub-menu {
    left: -145px;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li >a {
  color: #f04e31;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: league-gothic, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  white-space: nowrap;
  text-transform: uppercase;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu >li >a {
    color: #fbb03d;
    white-space: normal;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li >a:hover {
  color: #fbb03d;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li >a:active,
#masthead .menu-container .menu-flex .main-navigation #primary-menu >li >a:focus {
  outline: 0;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu li.active > ul {
  left: 35px;
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
     transition-delay: 250ms;
  opacity: 1;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu li.active > ul {
    position: relative;
    max-height: 100%;
    left: 0;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
  padding: 10em 0 3em 0;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
  opacity: 0;
  margin: 0;
  list-style: none;
  width: 100vw !important;
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul {
    width: auto;
    max-width: 812px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul {
    padding: 10em 0 0 0;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li {
  margin-bottom: 50px;
  line-height: 1em;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li a {
  color: #fbb03d;
  text-decoration: none;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: league-gothic, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
  white-space: nowrap;
  text-transform: uppercase;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li a {
    white-space: normal;
  }
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li a:hover {
  color: #f04e31;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li ul {
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li ul li {
  margin-bottom: 20px;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li ul li:last-child {
  margin-bottom: 0;
}
#masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14.4px;
  font-size: 0.9rem;
  font-family: roboto, sans-serif;
  font-weight: 400;
  letter-spacing: 0px;
  white-space: nowrap;
  text-transform: none;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .main-navigation #primary-menu > li > ul li ul li a {
    white-space: normal;
  }
}
#masthead .menu-container .menu-flex .site-search-mobile-nav {
  position: relative;
  padding: 15px 15%;
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .site-search-mobile-nav {
    display: none;
  }
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form .search-icon-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  cursor: pointer;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form .search-icon-mobile img {
  min-width: 35.91px;
  min-height: 35.91px;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="submit"] {
  width: 22px;
  height: 22px;
  background-image: url("./library/images/nav-search-arrow-right-white.svg");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border: none;
  opacity: 0;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="submit"].visible {
  opacity: 1;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"] {
  border: none;
  max-width: 120px;
  margin-right: 10px;
  background-color: transparent;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]::-webkit-input-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]::-moz-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]:-ms-input-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]::-ms-input-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]::placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]:active,
#masthead .menu-container .menu-flex .site-search-mobile-nav form input[type="search"]:focus {
  outline: 2px solid #fff;
}
#masthead .menu-container .menu-flex .site-social-mobile-nav {
  padding: 15px 15%;
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .menu-flex .site-social-mobile-nav {
    display: none;
  }
}
#masthead .menu-container .menu-flex .site-social-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#masthead .menu-container .menu-flex .site-social-mobile-nav ul li {
  margin-right: 30px;
}
#masthead .menu-container .menu-flex .site-social-mobile-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#masthead .menu-container .menu-flex .site-social-mobile-nav ul li a img {
  min-width: 35.91px;
  min-height: 35.91px;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .site-social {
    display: none;
  }
}
#masthead .menu-container .menu-flex .site-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#masthead .menu-container .menu-flex .site-social ul li {
  margin-right: 30px;
}
#masthead .menu-container .menu-flex .site-social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#masthead .menu-container .menu-flex .site-social ul li a img {
  min-width: 35.91px;
  min-height: 35.91px;
  max-width: 35.91px;
  max-height: 35.91px;
}
@media only screen and (max-width: 1223px) {
  #masthead .menu-container .menu-flex .site-search {
    display: none;
  }
}
#masthead .menu-container .menu-flex .site-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#masthead .menu-container .menu-flex .site-search form .search-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  cursor: pointer;
}
#masthead .menu-container .menu-flex .site-search form .search-icon img {
  min-width: 35.91px;
  min-height: 35.91px;
}
#masthead .menu-container .menu-flex .site-search form input[type="submit"] {
  width: 22px;
  height: 22px;
  background-image: url("./library/images/nav-search-arrow-right.svg");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border: none;
  opacity: 0;
}
#masthead .menu-container .menu-flex .site-search form input[type="submit"].visible {
  opacity: 1;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"] {
  border: none;
  max-width: 120px;
  margin-right: 10px;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"]::-webkit-input-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #f04e31;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"]::-moz-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #f04e31;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"]:-ms-input-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #f04e31;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"]::-ms-input-placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #f04e31;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"]::placeholder {
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #f04e31;
  letter-spacing: 2px;
}
#masthead .menu-container .menu-flex .site-search form input[type="search"]:active,
#masthead .menu-container .menu-flex .site-search form input[type="search"]:focus {
  outline: 2px solid #f04e31;
}
#masthead .menu-container .mobile-menu-button-container {
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 99;
}
@media only screen and (min-width: 1224px) {
  #masthead .menu-container .mobile-menu-button-container {
    display: none;
  }
}
#masthead .menu-container .mobile-menu-button-container .mobile-menu-button {
  width: 25px;
  height: 21px;
  display: block;
  background-image: url("./library/images/mobile-menu-button.svg");
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#masthead .menu-container .mobile-navigation {
  display: none;
  position: absolute;
  top: 76px;
  background: #fff;
  width: 100%;
  padding: 30px 20px;
  z-index: 99;
}
#masthead .menu-container .mobile-navigation ul#mobile-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
#masthead .menu-container .mobile-navigation ul#mobile-menu li {
  margin-bottom: 10px;
}
#masthead .menu-container .mobile-navigation ul#mobile-menu li:last-of-type {
  margin-bottom: 0;
}
#masthead .menu-container .mobile-navigation ul#mobile-menu li a {
  color: #003b73;
  text-transform: uppercase;
  font-size: 14.4px;
  font-size: 0.9rem;
  text-decoration: none;
}
#masthead .menu-container .mobile-navigation ul#mobile-menu li ul {
  margin: 20px 0 20px 20px;
  padding: 0;
  list-style: none;
  display: none;
}
#masthead .menu-container .mobile-navigation ul#mobile-menu li ul li a {
  font-size: 12.8px;
  font-size: 0.8rem;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
          box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0;
}
.widget select {
  max-width: 100%;
}
.widget_search .search-submit {
  display: none;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
----------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  margin: 0;
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  margin: 3.5em 0 3.5em 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
#page {
  overflow: hidden;
}
.container {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  .container {
    width: auto;
    max-width: 812px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.xlarge-container {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1920px) {
  .xlarge-container {
    width: auto;
    max-width: 1820px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.wide-container {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  .wide-container {
    width: auto;
    max-width: 1025px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1551px) {
  .wide-container {
    width: auto;
    max-width: 1224px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .wide-container {
    width: auto;
    max-width: 1551px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
div.wp-block-group:not(.alignwide),
div.wp-block-group:not(.alignfull) {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  div.wp-block-group:not(.alignwide),
  div.wp-block-group:not(.alignfull) {
    width: auto;
    max-width: 812px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
div.wp-block-group.alignwide,
.alignwide {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  div.wp-block-group.alignwide,
  .alignwide {
    width: auto;
    max-width: 1025px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1551px) {
  div.wp-block-group.alignwide,
  .alignwide {
    width: auto;
    max-width: 1224px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1920px) {
  div.wp-block-group.alignwide,
  .alignwide {
    width: auto;
    max-width: 1551px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
div.wp-block-group.alignfull,
.alignfull {
  width: 100%;
  max-width: 100%;
}
.margin-0 {
  margin: 0;
}
.blue-bg {
  background-image: url("./library/images/blue-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.home .entry-content {
  margin: 0;
  background-color: #000;
}
@media only screen and (min-width: 1224px) {
  .home .homepage-hero .wp-block-group {
    max-width: 1003px;
  }
}
.home .homepage-hero .wp-block-group p {
  max-width: 539px;
}
.home .wp-block-group.square-one-group {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  .home .wp-block-group.square-one-group {
    width: auto;
    max-width: 1034px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.home .news-events-query-loop .wp-block-post-template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .home .news-events-query-loop .wp-block-post-template {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .news-events-query-loop .wp-block-post-template .post {
  width: 29%;
}
@media only screen and (max-width: 767px) {
  .home .news-events-query-loop .wp-block-post-template .post {
    width: 100%;
    margin-bottom: 60px;
  }
}
.home .news-events-query-loop .wp-block-post-template .post .wp-block-post-featured-image {
  width: 100% !important;
  position: relative;
  margin-bottom: 68px;
}
.home .news-events-query-loop .wp-block-post-template .post .wp-block-post-featured-image:before {
  content: '';
  width: 246px;
  height: 246px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fbb03d), to(#f04e31));
  background: -o-linear-gradient(bottom, #fbb03d 0%, #f04e31 100%);
  background: linear-gradient(0deg, #fbb03d 0%, #f04e31 100%);
  display: block;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -28px;
  z-index: -1;
}
.home .news-events-query-loop .wp-block-post-template .post .wp-block-post-title a {
  color: #fff;
  text-decoration: none;
}
.home .homepage-certified h2 {
  margin-top: -97px;
  margin-bottom: 0.25em;
}
.home .homepage-certified p {
  max-width: 563px;
  margin-right: auto;
  margin-left: auto;
}
.home .homepage-get-help .get-help-callouts .wp-block-column {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .home .homepage-get-help .get-help-callouts .wp-block-column {
    min-height: 167px;
    margin-left: 44px;
  }
}
.home .homepage-get-help .get-help-callouts .wp-block-column:before {
  content: '';
  width: 167px;
  height: 167px;
  display: block;
  position: absolute;
  background-image: url("./library/images/get-help-path.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: -20px;
  left: -40px;
}
.home .homepage-get-help .get-help-callouts .wp-block-column h2 {
  max-width: 250px;
}
.home .homepage-get-help .wp-block-buttons {
  margin-right: 25%;
}
.home .wp-block-gallery {
  margin: 0;
  gap: 0;
}
.site-footer .widget a {
  color: #fff;
}
.site-footer .widget .wp-block-group.footer-group {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  .site-footer .widget .wp-block-group.footer-group {
    width: auto;
    max-width: 1025px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1551px) {
  .site-footer .widget .wp-block-group.footer-group {
    width: auto;
    max-width: 1224px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .site-footer .widget .wp-block-group.footer-group {
    width: auto;
    max-width: 1551px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.site-footer .widget .is-content-justification-space-between.is-nowrap.wp-block-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 445px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .site-footer .widget .gform_wrapper form .gform_fields {
    grid-column-gap: 2%;
  }
}
.site-footer .widget .gform_wrapper form input,
.site-footer .widget .gform_wrapper form select {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  font-family: league-gothic, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 2px;
  min-height: 54px;
}
@media only screen and (max-width: 767px) {
  .site-footer .widget .gform_wrapper form input,
  .site-footer .widget .gform_wrapper form select {
    min-height: 60px !important;
  }
}
.site-footer .widget .gform_wrapper form input::-webkit-input-placeholder, .site-footer .widget .gform_wrapper form select::-webkit-input-placeholder {
  color: #fff;
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
}
.site-footer .widget .gform_wrapper form input::-moz-placeholder, .site-footer .widget .gform_wrapper form select::-moz-placeholder {
  color: #fff;
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
}
.site-footer .widget .gform_wrapper form input:-ms-input-placeholder, .site-footer .widget .gform_wrapper form select:-ms-input-placeholder {
  color: #fff;
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
}
.site-footer .widget .gform_wrapper form input::-ms-input-placeholder, .site-footer .widget .gform_wrapper form select::-ms-input-placeholder {
  color: #fff;
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
}
.site-footer .widget .gform_wrapper form input::placeholder,
.site-footer .widget .gform_wrapper form select::placeholder {
  color: #fff;
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
}
.site-footer .widget .gform_wrapper form input {
  color: #fff;
}
.site-footer .widget .gform_wrapper form select {
  font-family: league-gothic, sans-serif;
  color: #fff;
  text-transform: uppercase;
}
.site-footer .widget .gform_wrapper form select option {
  color: #003b73;
}
.site-footer .widget .gform_wrapper form #field_1_5 {
  -ms-grid-column-span: 10;
  grid-column: span 10;
}
@media only screen and (max-width: 767px) {
  .site-footer .widget .gform_wrapper form #field_1_5 {
    -ms-grid-column-span: 9;
    grid-column: span 9;
  }
}
.site-footer .widget .gform_wrapper form #field_submit {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .site-footer .widget .gform_wrapper form #field_submit {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
}
.site-footer .widget .gform_wrapper form #field_submit input[type="submit"] {
  width: 100%;
  background-color: #003b73;
  -webkit-box-shadow: 0px 0px 18px 0px #fbb03d;
          box-shadow: 0px 0px 18px 0px #fbb03d;
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  letter-spacing: 3px;
  font-size: 21px;
  font-size: 1.3125rem;
  border: 1px solid #003b73;
}
.entry-header {
  position: relative;
  min-height: 550px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 120px 0;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .entry-header {
    min-height: 350px;
    padding: 100px 0;
  }
}
.entry-header:before {
  content: '';
  display: block;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(240,78,49,0.5)), to(rgba(251,176,61,0.5)));
  background: -o-linear-gradient(bottom, rgba(240,78,49,0.5) 0%, rgba(251,176,61,0.5) 100%);
  background: linear-gradient(0deg, rgba(240,78,49,0.5) 0%, rgba(251,176,61,0.5) 100%);
}
.entry-header .container {
  position: relative;
}
.entry-header .entry-title {
  font-size: 96px;
  font-size: 6rem;
  margin: 0;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .entry-header .entry-title {
    font-size: 64px;
    font-size: 4rem;
  }
}
.page-template-page-partners .partners-content-container {
  width: auto;
  max-width: 85%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1224px) {
  .page-template-page-partners .partners-content-container {
    width: auto;
    max-width: 1025px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1551px) {
  .page-template-page-partners .partners-content-container {
    width: auto;
    max-width: 1224px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .page-template-page-partners .partners-content-container {
    width: auto;
    max-width: 1364px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.page-template-page-partners .entry-content {
  margin: 0;
  padding: 60px 0 80px 0;
}
.page-template-page-partners .partners-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .partners-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-template-page-partners .partners-container .each-partner {
  min-width: 368px;
  width: 368px;
  margin-bottom: 50px;
  margin-right: 50px;
}
.page-template-page-partners .partners-container .each-partner:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 1045px) {
  .page-template-page-partners .partners-container .each-partner:nth-child(3n) {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .partners-container .each-partner:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1045px) {
  .page-template-page-partners .partners-container .each-partner:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .partners-container .each-partner {
    margin-right: 0;
    min-width: 258px;
    width: 258px;
  }
}
@media only screen and (min-width: 768px) {
  .page-template-page-partners .partners-container .each-partner {
    min-width: 258px;
    width: 258px;
  }
}
@media only screen and (min-width: 1551px) {
  .page-template-page-partners .partners-container .each-partner {
    min-width: 358px;
    width: 358px;
  }
}
.page-template-page-partners .partners-container .each-partner a {
  text-decoration: none;
}
.page-template-page-partners .partners-container .each-partner .white-container {
  background-color: #fff;
  text-align: center;
  height: 368px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px;
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .partners-container .each-partner .white-container {
    height: 258px;
  }
}
@media only screen and (min-width: 768px) {
  .page-template-page-partners .partners-container .each-partner .white-container {
    height: 258px;
  }
}
@media only screen and (min-width: 1551px) {
  .page-template-page-partners .partners-container .each-partner .white-container {
    height: 358px;
  }
}
.page-template-page-partners .partners-container .each-partner .white-container .partner-image {
  width: 100%;
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1551px) {
  .page-template-page-partners .partners-container .each-partner .white-container .partner-image {
    min-height: 160px;
  }
}
.page-template-page-partners .partners-container .each-partner .white-container .partner-image img {
  max-height: 100%;
  width: auto;
}
.page-template-page-partners .partners-container .each-partner .white-container .partner-title {
  color: #f04e31;
  margin-top: 20px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1551px) {
  .page-template-page-partners .partners-container .each-partner .white-container .partner-title {
    margin-top: 40px;
    font-size: 32px;
    font-size: 2rem;
  }
}
.page-template-page-partners .partners-container .each-partner .partner-content {
  color: #fff;
}
.page-template-page-partners .form-filters-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}
.page-template-page-partners .form-filters-container #partners-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .form-filters-container #partners-filters {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (max-width: 1045px) {
  .page-template-page-partners .form-filters-container #partners-filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .form-filters-container #partners-filters .select-container,
  .page-template-page-partners .form-filters-container #partners-filters .search-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 1045px) {
  .page-template-page-partners .form-filters-container #partners-filters .select-container,
  .page-template-page-partners .form-filters-container #partners-filters .search-container {
    margin-bottom: 20px;
  }
}
.page-template-page-partners .form-filters-container #partners-filters label {
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
  color: #fbb03d;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .form-filters-container #partners-filters label {
    font-size: 19.2px;
    font-size: 1.2rem;
  }
}
.page-template-page-partners .form-filters-container #partners-filters select,
.page-template-page-partners .form-filters-container #partners-filters input {
  min-height: 47px;
  border: 1px solid #f04e31;
  background-color: #003b73;
  color: #fff;
}
.page-template-page-partners .form-filters-container #partners-filters select {
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 21.6px;
  font-size: 1.35rem;
  padding: 0 10px;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .page-template-page-partners .form-filters-container #partners-filters select {
    font-size: 18.4px;
    font-size: 1.15rem;
  }
}
.page-template-page-partners .form-filters-container #partners-filters select option {
  font-family: league-gothic, sans-serif;
  text-transform: uppercase;
}
.page-template-page-partners .form-filters-container #partners-filters input#search {
  margin-right: 30px;
  padding: 0 10px;
}
.page-template-page-partners .form-filters-container #partners-filters input[type="submit"] {
  background-color: #f04e31;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 4px 18px;
}
.page-template-page-partners .pagination-container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-template-page-partners .pagination-container .page-numbers {
  margin: 0 7px;
  color: #fbb03d;
  text-decoration: none;
}
.page-template-page-partners .pagination-container .page-numbers.current {
  color: #fff;
}
.search .page-title {
  margin-bottom: 60px;
}
.search article {
  margin-bottom: 60px;
}
.search .search-header .entry-title a {
  text-decoration: none;
}
.search .pagination-container {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.search .pagination-container a {
  text-decoration: none;
  font-weight: 700;
}
.page-template-page-full-width .entry-content {
  margin: 0;
}
.news-events-query-loop.news-listing-page-query-loop .wp-block-post-template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .news-events-query-loop.news-listing-page-query-loop .wp-block-post-template {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-events-query-loop.news-listing-page-query-loop .wp-block-post-template .post {
  width: 29%;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .news-events-query-loop.news-listing-page-query-loop .wp-block-post-template .post {
    width: 100%;
  }
}
.news-events-query-loop.news-listing-page-query-loop .wp-block-post-template .post .wp-block-post-featured-image {
  width: 100% !important;
  position: relative;
  margin-bottom: 68px;
}
.news-events-query-loop.news-listing-page-query-loop .wp-block-post-template .post .wp-block-post-featured-image:before {
  content: '';
  width: 246px;
  height: 246px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fbb03d), to(#f04e31));
  background: -o-linear-gradient(bottom, #fbb03d 0%, #f04e31 100%);
  background: linear-gradient(0deg, #fbb03d 0%, #f04e31 100%);
  display: block;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -28px;
  z-index: -1;
}
.news-events-query-loop.news-listing-page-query-loop .wp-block-post-template .post .wp-block-post-title a {
  color: #fff;
  text-decoration: none;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
  color: #fbb03d;
  text-decoration: none;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers.current {
  color: #fff;
}
.wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination .wp-block-query-pagination-next {
  color: #fbb03d;
  text-decoration: none;
}
.single .entry-content {
  margin: 0;
  padding: 60px 0;
  color: #fff;
}
.single-partners .entry-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-partners .entry-header .white-container {
  background-color: #fff;
  text-align: center;
  height: 368px;
  width: 368px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px;
}
@media only screen and (max-width: 767px) {
  .single-partners .entry-header .white-container {
    height: 258px;
    width: 258px;
  }
}
@media only screen and (min-width: 768px) {
  .single-partners .entry-header .white-container {
    height: 258px;
    width: 258px;
  }
}
@media only screen and (min-width: 1551px) {
  .single-partners .entry-header .white-container {
    height: 358px;
    width: 358px;
  }
}
.single-partners .entry-header .white-container .partner-image {
  width: 100%;
  min-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single-partners .entry-header .white-container .partner-image img {
  max-height: 100%;
  width: auto;
}
.single-partners .entry-title {
  text-align: center;
  font-size: 64px;
  font-size: 4rem;
}
.single-partners .entry-content .partner-meta h3 {
  font-size: 21.6px;
  font-size: 1.35rem;
  letter-spacing: 2px;
}
.single-partners .entry-content .partner-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-getwid-counter .wp-block-getwid-counter__number {
  font-weight: 700;
}
.wp-block-getwid-person .wp-block-getwid-person__content-wrapper {
  margin-top: 1em;
}
.wp-block-getwid-person .wp-block-getwid-person__content-wrapper .wp-block-getwid-person__title {
  font-family: league-gothic, sans-serif;
  font-size: 21.6px;
  font-size: 1.35rem;
  color: #f04e31;
  text-transform: uppercase;
}
.wp-block-getwid-person .wp-block-getwid-person__content-wrapper .wp-block-getwid-person__content {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 0;
}
.wp-block-cover {
  line-height: 2.1em;
}
.wp-block-cover a {
  color: #fff;
  text-decoration: none;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-title {
  font-family: league-gothic, sans-serif;
  color: #003b73;
  font-size: 21.6px;
  font-size: 1.35rem;
}
.wp-block-getwid-accordion .wp-block-getwid-accordion__header-title strong {
  font-weight: normal;
}
.wp-block-genesis-blocks-gb-testimonial {
  text-align: center;
  margin: 2em 0;
  padding: 25px;
  background: transparent !important;
}
.wp-block-genesis-blocks-gb-testimonial:before,
.wp-block-genesis-blocks-gb-testimonial:after {
  content: "";
}
.wp-block-genesis-blocks-gb-testimonial p {
  color: #003b73;
  font-size: 18.4px;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}
.wp-block-genesis-blocks-gb-testimonial p:before,
.wp-block-genesis-blocks-gb-testimonial p:after {
  content: '"';
}
.wp-block-genesis-blocks-gb-testimonial .gb-testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-block-genesis-blocks-gb-testimonial .gb-testimonial-info .gb-testimonial-avatar-wrap {
  position: relative;
  margin-bottom: 5px;
}
.wp-block-genesis-blocks-gb-testimonial .gb-testimonial-info .gb-testimonial-name {
  color: #f04e31 !important;
  font-family: league-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  margin: 0;
}
.wp-block-genesis-blocks-gb-testimonial .gb-testimonial-info .gb-testimonial-title {
  margin: 0 !important;
}
.wp-block-genesis-blocks-gb-accordion details .gb-accordion-title {
  background: transparent;
  border: 1px solid #eee;
  font-family: league-gothic, sans-serif;
  color: #003b73;
  font-size: 21.6px;
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.wp-block-genesis-blocks-gb-accordion details .gb-accordion-title:before {
  content: '';
  display: block;
  background-image: url("./library/images/plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 12px;
  height: 12px;
  margin-right: 7px;
}
.wp-block-genesis-blocks-gb-accordion details[open] .gb-accordion-title:before {
  background-image: url("./library/images/minus.svg");
}
.wp-block-genesis-blocks-gb-accordion details[open] .gb-accordion-text {
  border: 1px solid #eee;
  border-top: none;
}
.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry {
  background: transparent;
  border: 1px solid #fff;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-img img {
  display: block;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content {
  background: transparent;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head {
  background: #d4deff;
  border-bottom: 1px solid #fff;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-masonry-col6:first-child {
  width: 40%;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-masonry-col6:last-child {
  width: 60%;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-event-date {
  color: #f04e31;
  font-family: league-gothic, sans-serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: 64px;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-event-month {
  color: #003b73;
  font-weight: 700;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-event-detail {
  color: #003b73;
  margin-top: -10px;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-event-location .mec-sl-location-pin {
  color: #f04e31;
  font-size: 57.6px;
  font-size: 3.6rem;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-event-location .mec-event-location-det .mec-location {
  color: #003b73;
  font-family: roboto, sans-serif;
  font-weight: 700;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .event-grid-modern-head .mec-event-location .mec-events-address .mec-address {
  color: #003b73;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .mec-event-content {
  background: transparent;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .mec-event-content .mec-event-title {
  font-size: 32px;
  font-size: 2rem;
  text-transform: uppercase;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .mec-event-content .mec-event-title a:hover {
  text-decoration: none;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .mec-event-content .mec-event-description {
  color: #fff;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .mec-event-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mec-wrap .mec-events-masonry-wrap .mec-wrap .mec-event-masonry .mec-masonry-item-wrap .mec-masonry .mec-event-article .mec-masonry-content .mec-event-footer .mec-booking-button {
  height: auto;
  border: none;
  border-radius: 0;
  background-color: #f04e31;
  color: #fff;
  text-transform: uppercase;
  font-family: league-gothic, sans-serif;
  letter-spacing: 3px;
  line-height: normal;
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 8px 18px;
  position: relative;
}
.single-mec-events .mec-single-event .mec-single-title {
  letter-spacing: 2px;
}
.single-mec-events .mec-single-event .mec-date,
.single-mec-events .mec-single-event .mec-time,
.single-mec-events .mec-single-event .mec-location {
  letter-spacing: 2px;
}
.single-mec-events .mec-single-event .mec-events-button,
.single-mec-events .mec-single-event .mec-event-social-icon a {
  text-decoration: none;
}
.press-releases-container .press-releases-inner-container .each-press-release {
  margin-bottom: 60px;
}
.press-releases-container .press-releases-inner-container .each-press-release a {
  text-decoration: none;
}
.press-releases-container .pagination-container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.press-releases-container .pagination-container .page-numbers {
  margin: 0 7px;
  color: #f04e31;
  text-decoration: none;
}
/*--------------------------------------------------------------
// ## Asides
----------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}
/*--------------------------------------------------------------
// ## Comments
----------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
