/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap");
* {
  box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}
*:before, *:after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  height: 100%;
}

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

img {
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  text-decoration: none;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.group:after {
  content: "";
  display: table;
  clear: both;
}

/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
@-webkit-keyframes checked {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes checked {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*
* Breakpoint debugging
*/
.text-center,
.center {
  text-align: center;
}

.hidden,
.hide {
  display: none;
}

.floatleft {
  float: left;
  align-self: flex-start;
}

.floatright {
  float: right;
  align-self: flex-end;
}

.wrap, .page-template-template-home .home-map-group .wp-block-group__inner-container,
.home .home-map-group .wp-block-group__inner-container {
  max-width: 1280px;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.wrap.wrap-small, .page-template-template-home .home-map-group .wrap-small.wp-block-group__inner-container,
.home .home-map-group .wrap-small.wp-block-group__inner-container {
  max-width: 800px;
}

.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.m0 {
  margin: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.p0 {
  padding: 0 !important;
}

.p1px {
  padding: 1px;
}

.mt1 {
  margin-top: 1rem !important;
}

.mt2 {
  margin-top: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

.mt5 {
  margin-top: 5rem !important;
}

.mt6 {
  margin-top: 6rem !important;
}

.mt7 {
  margin-top: 7rem !important;
}

.mt8 {
  margin-top: 8rem !important;
}

.mt9 {
  margin-top: 9rem !important;
}

.mt10 {
  margin-top: 10rem !important;
}

.mb1 {
  margin-bottom: 1rem !important;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb3 {
  margin-bottom: 3rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

.mb5 {
  margin-bottom: 5rem !important;
}

.mb6 {
  margin-bottom: 6rem !important;
}

.mb7 {
  margin-bottom: 7rem !important;
}

.mb8 {
  margin-bottom: 8rem !important;
}

.mb9 {
  margin-bottom: 9rem !important;
}

.mb10 {
  margin-bottom: 10rem !important;
}

.ml0 {
  margin-left: 0 !important;
}

/* LIGHTBOX CSS */
.lightbox {
  cursor: pointer;
}

.img-lightbox {
  position: fixed;
  top: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}
.img-lightbox .closeLightbox {
  position: absolute;
  top: 2em;
  right: 1em;
  font-size: 2em;
  color: white;
  cursor: pointer;
  transition: 0.2s ease-out;
}
.img-lightbox .closeLightbox:hover {
  color: #82c201;
}
.img-lightbox.active {
  visibility: visible;
  opacity: 1;
}
.img-lightbox.active img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.img-lightbox img {
  transition: 0.2s ease-out;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  max-height: 80%;
}
@media (max-width: 1024px) {
  .img-lightbox img {
    width: 100%;
    height: auto;
    max-height: 80%;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

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

a {
  display: inline-block;
  color: #075295;
  font-weight: 400;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #075295;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 2rem 0;
  padding: 0;
  font-weight: 400;
}
h1 strong,
h1 b,
h2 strong,
h2 b,
h3 strong,
h3 b,
h4 strong,
h4 b,
h5 strong,
h5 b,
h6 strong,
h6 b {
  font-weight: 400;
}

h2 {
  font-size: 5.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin: 0 0 2rem 0;
  padding: 0;
}

ul,
ol {
  padding: 0 0 0 2.5rem;
  margin: 0 0 3rem 0;
}
ul li,
ol li {
  list-style: disc;
  margin-bottom: 1rem;
}

img.alignright {
  margin: 0 0 0 2rem;
  width: 50%;
  height: auto;
  float: right;
}
img.alignleft {
  margin: 0 2rem 0 0;
  width: 50%;
  height: auto;
  float: left;
}
@media (min-width: 769px) {
  img.alignright, img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 2rem 0;
  }
}
img.aligncenter {
  margin: 0 auto;
}

blockquote {
  margin: 0 0 2rem 0;
  padding-left: 1.7rem;
  position: relative;
}
blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 16px;
  background: #fcc511;
}

cite {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  margin-top: 1rem;
}

figcaption {
  font-size: 1.6rem;
  color: #fcc511;
  font-weight: 400;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.page-title {
  color: #075295;
  font-size: 3rem;
  line-height: 1.25;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
html {
  background: #fff;
  overflow-x: hidden;
  font-size: 50%;
  scroll-behavior: smooth;
}
html.menu-opened {
  scroll-behavior: auto;
}
@media (min-width: 501px) {
  html {
    font-size: 55%;
  }
}
@media (min-width: 769px) {
  html {
    font-size: 57.5%;
  }
}
@media (min-width: 1025px) {
  html {
    font-size: 62.5%;
  }
}

html,
body {
  scroll-padding-top: 90px; /* set to the height of your header */
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
  color: #112126;
  position: relative;
}

.admin-bar header.reset,
.admin-bar header.sticky,
.admin-bar header .header-right nav.header-nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar header.reset,
  .admin-bar header.sticky,
  .admin-bar header .header-right nav.header-nav {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

iframe {
  display: block;
  width: 100%;
  margin: 0;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.fancybox-header {
  overflow: visible;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .fancybox-header {
    overflow: hidden;
    height: 100%;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ie-fancybox-body {
    overflow: visible !important;
    height: 100%;
  }
}

body.fancybox-active .fancybox-infobar {
  display: none;
}

/* -------------------------------------------
***** Header *****
------------------------------------------- */
header.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
}
header.header .wrap, header.header .page-template-template-home .home-map-group .wp-block-group__inner-container, .page-template-template-home .home-map-group header.header .wp-block-group__inner-container,
header.header .home .home-map-group .wp-block-group__inner-container,
.home .home-map-group header.header .wp-block-group__inner-container {
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  align-items: center;
}
header.header.headroom--top {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
header.header.headroom--not-top {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  background: #075295;
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 0 3rem 0 rgba(0, 0, 0, 0.3);
}
header.header.headroom--not-top .header-divider {
  margin: 2rem auto;
}
header.header.headroom--not-top .logo {
  transition: all 0.2s;
  background: none;
  width: 200px;
  height: 100%;
  padding: 1.25rem 0;
}
@media (max-width: 1440px) {
  header.header.headroom--not-top .logo {
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  header.header.headroom--not-top .logo {
    width: 175px;
  }
}
header.header.headroom--not-top .logo a {
  padding: 0;
  background: none;
}
header.header.headroom--not-top .logo img,
header.header.headroom--not-top .logo svg {
  transition: all 0.2s;
  width: 100%;
  height: auto;
  max-height: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header.header.headroom--not-top .logo img,
  header.header.headroom--not-top .logo svg {
    height: 40px;
  }
}
@media (min-width: 1025px) {
  .home header.header.headroom--not-top .logo img,
  .home header.header.headroom--not-top .logo svg {
    display: block;
  }
}
header.header.headroom--not-top .logo img path,
header.header.headroom--not-top .logo img circle,
header.header.headroom--not-top .logo svg path,
header.header.headroom--not-top .logo svg circle {
  fill: #fff !important;
}
header.header.headroom--not-top .header-right nav.header-nav > ul > li.current-page-parent > a,
header.header.headroom--not-top .header-right nav.header-nav > ul > li.current-menu-item > a {
  background: #fff;
  color: #075295;
}
header.header.headroom--not-top .header-right {
  padding: 10px 0;
}
header.header.headroom--not-top .header-right .burger-menu {
  background: none;
}
header.header.headroom--not-top .header-right .burger-menu span {
  background: #fff;
}
header.header.headroom--not-top .header-right .header-nav ul > li:hover > a {
  background: #fff;
  color: #075295;
}
@media (max-width: 1024px) {
  header.header.hamb-open {
    transition: all 0.4s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: none;
    box-shadow: -1px 2px 10px 0px rgba(0, 0, 0, 0.3);
  }
  header.header.hamb-open .wrap:before, header.header.hamb-open .page-template-template-home .home-map-group .wp-block-group__inner-container:before, .page-template-template-home .home-map-group header.header.hamb-open .wp-block-group__inner-container:before,
  header.header.hamb-open .home .home-map-group .wp-block-group__inner-container:before,
  .home .home-map-group header.header.hamb-open .wp-block-group__inner-container:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #075295;
    z-index: 3;
  }
  header.header.hamb-open .logo {
    height: 100%;
    z-index: 4;
    transition: width 0.2s ease-in-out;
  }
  header.header.hamb-open .logo img,
  header.header.hamb-open .logo svg {
    transition: none;
    width: 100%;
    height: auto;
    max-height: 100%;
  }
}
@media (max-width: 1024px) and (-ms-high-contrast: none), (max-width: 1024px) and (-ms-high-contrast: active) {
  header.header.hamb-open .logo img,
  header.header.hamb-open .logo svg {
    height: 40px;
  }
}
@media (max-width: 1024px) and (min-width: 1025px) {
  .home header.header.hamb-open .logo img,
  .home header.header.hamb-open .logo svg {
    display: block;
  }
}
@media (max-width: 1024px) {
  header.header.hamb-open .logo img path,
  header.header.hamb-open .logo img circle,
  header.header.hamb-open .logo svg path,
  header.header.hamb-open .logo svg circle {
    fill: #fff !important;
  }
  header.header.hamb-open .header-right {
    padding: 10px 0;
  }
  header.header.hamb-open .header-right .burger-menu {
    background: none;
  }
  header.header.hamb-open .header-right .burger-menu span {
    background: #fff;
  }
}
header.header .header-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  align-self: stretch;
  margin: 4rem auto;
}
@media (max-width: 1024px) {
  header.header .header-divider {
    display: none;
  }
}
header.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: none;
  width: 240px;
  height: 100%;
  margin-bottom: 0;
  padding: 4rem 0;
}
@media (max-width: 1440px) {
  header.header .logo {
    padding: 3rem 0;
    width: 220px;
  }
}
@media (max-width: 768px) {
  header.header .logo {
    width: 175px;
  }
}
header.header .logo a {
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.header .logo a img,
header.header .logo a svg {
  transition: all 0.3s;
}
header.header .logo img,
header.header .logo svg {
  width: 100%;
}
header.header .logo img path,
header.header .logo svg path {
  transition: fill 0.3s ease-in-out;
}
header.header .logo svg {
  fill: #fff;
}
header.header .tagline {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  padding: 0.4rem 0 0 0;
  opacity: 0.6;
}
header.header .header-right {
  display: block;
  overflow: visible;
  float: right;
}
header.header .header-right nav.header-nav {
  transition: opacity 0.5s ease;
  display: block;
}
header.header .header-right nav.header-nav > ul {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
}
header.header .header-right nav.header-nav > ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}
header.header .header-right nav.header-nav > ul li a {
  font-weight: 400;
  color: #112126;
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  header.header .header-right nav.header-nav {
    height: auto !important;
    display: block !important;
  }
  header.header .header-right nav.header-nav > ul {
    margin-top: 0 !important;
  }
  header.header .header-right nav.header-nav > ul:hover:after {
    height: 0;
    background: transparent;
    transition: all 0.4s ease;
  }
  header.header .header-right nav.header-nav > ul li {
    margin: 0;
    margin-left: 8px;
    padding: 0;
  }
}
@media (min-width: 1025px) and (min-width: 1441px) {
  header.header .header-right nav.header-nav > ul li {
    margin-left: 16px;
  }
}
@media (min-width: 1025px) {
  header.header .header-right nav.header-nav > ul li:first-child {
    margin-left: 0;
  }
  header.header .header-right nav.header-nav > ul li:hover > ul {
    display: block;
    flex-wrap: wrap;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    transition: all 0.4s ease;
  }
  header.header .header-right nav.header-nav > ul li ul {
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 280px;
    display: none;
    margin-bottom: 0;
    margin: 0;
    transition: all 0.4s ease-in-out;
    padding: 4rem 1.5rem 1.5rem;
  }
  header.header .header-right nav.header-nav > ul li ul:after {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 2.5rem);
    left: 0;
    top: auto;
    bottom: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.4);
  }
  header.header .header-right nav.header-nav > ul li ul:before {
    position: absolute;
    z-index: 2;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    top: 18px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border-radius: 3px;
  }
  header.header .header-right nav.header-nav > ul li ul li {
    overflow: hidden;
    z-index: 3;
    flex: 1 0 50%;
    display: block;
    border: 0;
    border-top: none;
    position: relative;
    margin: 0;
    padding: 0;
  }
  header.header .header-right nav.header-nav > ul li ul li:last-child a {
    border-bottom: none;
  }
  header.header .header-right nav.header-nav > ul li ul li a {
    display: block;
    position: relative;
    padding: 1rem;
    color: #737678;
    font-size: 1.4rem;
    line-height: 1.25;
    border-bottom: 1px solid #e8e8e9;
    text-transform: uppercase;
  }
  header.header .header-right nav.header-nav > ul li ul li a:hover {
    color: #075295;
    text-decoration: underline;
  }
  header.header .header-right nav.header-nav > ul li ul li a .subtitle {
    display: block;
    font-size: 1.2rem;
  }
  header.header .header-right nav.header-nav > ul li ul li.current-menu-item a {
    color: #075295;
  }
  header.header .header-right nav.header-nav > ul li ul li.current-menu-parent > a {
    background: none;
    color: #fff;
  }
  header.header .header-right nav.header-nav > ul li ul li ul {
    top: 0;
    left: 100%;
    background: #fff;
  }
  header.header .header-right nav.header-nav > ul > li:hover > a {
    background: #075295;
    color: #fff;
    border-radius: 3px;
  }
  header.header .header-right nav.header-nav > ul > li > a {
    padding: 1rem 0.6rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    font-size: 1.6rem;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  header.header .header-right nav.header-nav > ul > li > a {
    font-size: 1.4rem;
    padding: 1rem 0.3rem;
  }
}
@media (min-width: 1025px) {
  header.header .header-right nav.header-nav > ul > li.current-page-parent > a, header.header .header-right nav.header-nav > ul > li.current-menu-item > a {
    border-radius: 3px;
    background: #075295;
    color: #fff;
  }
}
@media (max-width: 1024px) {
  header.header .header-right nav.header-nav {
    display: none;
    opacity: 0;
    visibility: hidden;
    right: 0;
    position: fixed;
    top: 0;
    overflow: auto;
    z-index: 2;
    transition: opacity 0s linear;
    background: #fff;
  }
  header.header .header-right nav.header-nav * {
    -webkit-tap-highlight-color: transparent;
  }
  header.header .header-right nav.header-nav.full-width {
    width: 100%;
  }
  header.header .header-right nav.header-nav.full-width > ul {
    min-width: 100%;
  }
  header.header .header-right nav.header-nav.collapsed > ul li ul {
    display: none;
  }
  header.header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a {
    position: relative;
  }
  header.header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a:after, header.header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a:before {
    content: "+";
    pointer-events: none;
    z-index: 2;
    position: absolute;
    right: -41px;
    top: 50%;
    width: 25px;
    height: 25px;
    color: #fcc511;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    line-height: 25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  header.header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a:after {
    pointer-events: none;
    content: "";
    top: 45%;
    z-index: 1;
    width: 20px;
    height: 20px;
    background: #075295;
    border-radius: 4px;
    right: -31px;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }
  header.header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a.submenu-visible:before {
    line-height: 21px;
    content: "-";
    color: #075295;
  }
  header.header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a.submenu-visible:after {
    background: #fcc511;
  }
  header.header .header-right nav.header-nav.scrollable {
    overflow-y: scroll;
  }
  header.header .header-right nav.header-nav.scrollable > ul > li:last-child {
    margin-bottom: 10vh;
  }
  header.header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children {
    cursor: pointer;
  }
  header.header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children > a {
    width: calc(100% - 5rem);
  }
  header.header .header-right nav.header-nav.mmenu-active {
    visibility: visible;
    opacity: 1;
    box-shadow: 0 1rem 3rem -1rem rgba(0, 0, 0, 0.3);
  }
  header.header .header-right nav.header-nav > ul {
    flex-direction: column;
    min-width: 300px;
    padding: 3rem;
  }
  header.header .header-right nav.header-nav > ul li {
    padding: 0;
    width: 100%;
    position: relative;
  }
  header.header .header-right nav.header-nav > ul li:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #b4b6b7;
    opacity: 0.2;
    bottom: 0;
  }
  header.header .header-right nav.header-nav > ul li:last-child:after {
    display: none;
  }
  header.header .header-right nav.header-nav > ul li a {
    padding: 1.5rem 0;
    font-size: 2.4rem;
    padding-right: 2rem;
    color: #075295;
    white-space: normal;
    text-transform: uppercase;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  header.header .header-right nav.header-nav > ul li a {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  header.header .header-right nav.header-nav > ul li a .subtitle {
    display: block;
    font-size: 1.4rem;
  }
  header.header .header-right nav.header-nav > ul li.current-menu-item > a {
    text-decoration: underline;
  }
  header.header .header-right nav.header-nav > ul li ul {
    display: block;
    background: none;
    position: relative;
    min-width: auto;
    box-shadow: none;
    align-items: normal;
    z-index: 3;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  header.header .header-right nav.header-nav > ul li ul li:after {
    content: none;
  }
  header.header .header-right nav.header-nav > ul li ul li a {
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: inherit;
    border: 0;
    font-size: 1.8rem;
    color: #737678;
  }
}
header.header .header-right .burger-menu {
  padding: 10px;
  z-index: 9999;
  position: relative;
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  header.header .header-right .burger-menu {
    display: none;
    position: initial;
  }
}
header.header .header-right .burger-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header.header .header-right .burger-menu span:nth-child(1) {
  top: 0px;
}
header.header .header-right .burger-menu span:nth-child(2),
header.header .header-right .burger-menu span:nth-child(3) {
  top: 9px;
}
header.header .header-right .burger-menu span:nth-child(4) {
  top: 18px;
}
header.header .header-right .burger-menu[menu-mobile=active] span {
  background: #fff;
}
header.header .header-right .burger-menu[menu-mobile=active] span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
header.header .header-right .burger-menu[menu-mobile=active] span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header.header .header-right .burger-menu[menu-mobile=active] span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header.header .header-right .burger-menu[menu-mobile=active] span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/* -------------------------------------------
***** Footer *****
------------------------------------------- */
#colophon {
  position: relative;
  color: #fff;
  background: #112126;
  padding: 6rem 0 4rem;
}
#colophon::before {
  z-index: 0;
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(7, 82, 149, 0.25) 0%, rgba(7, 82, 149, 0) 100%);
}
#colophon a {
  color: #fff;
}
#colophon a:hover {
  text-decoration: underline;
  color: #fcc511;
}
#colophon ul {
  margin: 0;
  padding: 0;
}
#colophon ul li {
  list-style: none;
}
#colophon h4 {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 2rem 0;
  padding: 0 0 2rem 0;
  border-bottom: 2px solid rgba(59, 128, 179, 0.3);
}
#colophon .wrap, #colophon .page-template-template-home .home-map-group .wp-block-group__inner-container, .page-template-template-home .home-map-group #colophon .wp-block-group__inner-container,
#colophon .home .home-map-group .wp-block-group__inner-container,
.home .home-map-group #colophon .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
#colophon .footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  #colophon .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  #colophon .footer-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
#colophon .footer-columns .col-3 h4 {
  position: relative;
  display: flex;
  align-items: center;
}
#colophon .footer-columns .col-3 h4:after {
  content: "";
  position: relative;
  display: block;
  top: -8px;
  margin-left: 8px;
  width: 15px;
  height: 15px;
  background-image: url("img/custom/footer-new-tab.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#colophon .social-wrapper {
  float: none;
}
#colophon .social-wrapper ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}
#colophon .social-wrapper ul li {
  padding: 0;
  margin: 0;
}
#colophon .social-wrapper ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#colophon .social-wrapper ul a:hover {
  text-decoration: none;
}
#colophon .social-wrapper ul i {
  font-size: 4rem;
}
#colophon .sub-footer {
  position: relative;
  z-index: 1;
}
#colophon .sub-footer p {
  font-size: 1.8rem;
  margin: 0;
}
#colophon .sub-footer .legal-info {
  opacity: 0.6;
  margin-bottom: 3rem;
}
#colophon .sub-footer .legal-info p {
  font-size: 1.4rem;
}
#colophon .sub-footer .copyright-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #colophon .sub-footer .copyright-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
}
#colophon .sub-footer .credit {
  color: #3b80b3;
}
#colophon .sub-footer .credit a {
  color: inherit;
}
#colophon .sub-footer .credit a:hover {
  color: #fcc511;
}

.container {
  overflow-x: hidden;
  padding: 6.5rem 0;
}
body.page-id-879 .container {
  padding-bottom: 0;
}

.back-button {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: -6.5rem;
  margin-bottom: 4.5rem;
  background-color: #fef0c1;
}
.back-button .btn, .back-button .news-wrap button.alm-load-more-btn, .news-wrap .back-button button.alm-load-more-btn {
  font-size: 1.4rem;
}

.sidebar-enabled {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .sidebar-enabled {
    flex-direction: column;
  }
}
.sidebar-enabled .content {
  flex: 1;
  width: calc(100% - (240px + 8rem));
}
@media (max-width: 1024px) {
  .sidebar-enabled .content {
    width: 100%;
  }
}
.sidebar-enabled .sidebar {
  margin-top: 0;
  margin-right: 8rem;
  width: 240px;
  min-width: 240px;
}
@media (max-width: 1024px) {
  .sidebar-enabled .sidebar {
    margin: 0 auto;
    width: 100%;
    min-width: none;
  }
}
.sidebar-enabled .sidebar-widget {
  position: relative;
  padding: 0 0 5rem 0;
}
@media (max-width: 1024px) {
  .sidebar-enabled .sidebar-widget {
    padding: 0;
  }
}
.sidebar-enabled .parent-sidebar-menu {
  z-index: 1;
  position: relative;
}
.sidebar-enabled .parent-sidebar-menu:after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  left: -10%;
  top: -5%;
  width: 120%;
  height: 110%;
  background: #fff;
}
.sidebar-enabled .parent-link {
  display: block;
  font-size: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #b4b6b7;
  margin-bottom: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
}
.sidebar-enabled .parent-link:hover {
  color: #075295;
}
.sidebar-enabled ul.sidebar-menu {
  margin: 0;
  padding: 0;
}
.sidebar-enabled ul.sidebar-menu li {
  list-style: none;
  margin: 0;
  text-transform: uppercase;
}
.sidebar-enabled ul.sidebar-menu li:last-child a {
  border-bottom: 1px solid #b4b6b7;
}
.sidebar-enabled ul.sidebar-menu li.current a {
  color: #075295;
}
.sidebar-enabled ul.sidebar-menu li.current a:after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #075295;
  transition: all 0.2s ease-in-out;
}
.sidebar-enabled ul.sidebar-menu a {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  display: block;
  color: #737678;
  transition: all 0.2s ease-in-out;
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-bottom: 1px solid #e8e8e9;
}
.sidebar-enabled ul.sidebar-menu a:hover {
  color: #075295;
  text-decoration: underline;
}
.sidebar-enabled ul.sidebar-menu a .subtitle {
  display: block;
  font-size: 1.2rem;
}
.sidebar-enabled .widget-title {
  color: #075295;
  text-transform: uppercase;
  font-size: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #b4b6b7;
  font-weight: 500;
}
.sidebar-enabled .related-page {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  margin: 1.5rem 0 3rem;
  font-size: 1.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  border-radius: 5px;
  background: #075295;
  border: 1px solid #3b80b3;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in;
}
.sidebar-enabled .related-page:hover {
  color: #737678;
  background: #fff;
  border: 1px solid #e8e8e9;
}
.sidebar-enabled .related-page svg {
  margin-left: 1.5rem;
  width: 13px;
  height: 13px;
  fill: #fcc511;
  transition: all 0.2s ease-in;
}
.sidebar-enabled .article-links {
  margin: 0;
  padding: 0;
}
.sidebar-enabled .article-links li {
  list-style: none;
  margin: 0;
}
.sidebar-enabled .article-links li.current_page_item a {
  color: #075295;
}
.sidebar-enabled .article-links li.current_page_item a:after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  top: 49%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #075295;
  transition: all 0.2s ease-in-out;
}
.sidebar-enabled .article-links a {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  display: block;
  color: #737678;
  transition: all 0.2s ease-in-out;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid #e8e8e9;
}
.sidebar-enabled .article-links a:focus, .sidebar-enabled .article-links a:hover {
  color: #075295;
  text-decoration: underline;
}

/* --- TABLES --- */
.document-table-container {
  overflow-x: auto;
}

body.page-id-333 tr > td {
  width: 40%;
}

main table,
main .tablepress {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
main table + h2, main table + h3, main table + h4, main table + h5, main table + h6,
main .tablepress + h2,
main .tablepress + h3,
main .tablepress + h4,
main .tablepress + h5,
main .tablepress + h6 {
  margin-top: 3rem;
}
main table thead,
main table tfoot,
main .tablepress thead,
main .tablepress tfoot {
  color: #000;
  text-transform: unset;
}
main table thead tr,
main table tfoot tr,
main .tablepress thead tr,
main .tablepress tfoot tr {
  border-bottom: 3px solid #fcc511;
}
main table thead th,
main table tfoot th,
main .tablepress thead th,
main .tablepress tfoot th {
  font-weight: 600;
  font-size: 1.8rem;
  background: none;
  border-bottom: 0px;
}
main table thead th,
main .tablepress thead th {
  text-align: left;
  padding: 1.2rem 1.5rem;
  color: #112126;
  font-weight: 400;
  border: 0 !important;
}
main table thead .file_size,
main .tablepress thead .file_size {
  text-align: center;
}
main table tbody,
main .tablepress tbody {
  border-bottom: 1px solid #fcc511;
}
main table tbody strong,
main .tablepress tbody strong {
  color: #3b80b3;
}
main table tbody tr,
main .tablepress tbody tr {
  border-bottom: 1px solid #e8e8e9;
}
main table tbody tr:last-child,
main .tablepress tbody tr:last-child {
  border-bottom: none;
}
main table tbody tr td,
main .tablepress tbody tr td {
  vertical-align: middle;
  padding: 1.2rem 1.5rem;
  border: 0 !important;
}
@media (max-width: 500px) {
  main table tbody tr td,
  main .tablepress tbody tr td {
    padding: 0.7rem;
  }
}
main table tbody tr th,
main .tablepress tbody tr th {
  font-weight: 500;
}
main table tbody .file_size,
main .tablepress tbody .file_size {
  width: 120px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 500px) {
  main table tbody .file_size,
  main .tablepress tbody .file_size {
    width: 60px;
    font-size: 1.4rem;
  }
}
main table tbody .document_date,
main .tablepress tbody .document_date {
  width: 190px;
  font-size: 1.4rem;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  main table tbody .document_date,
  main .tablepress tbody .document_date {
    width: 85px;
  }
}
main table tbody .download,
main .tablepress tbody .download {
  width: 120px;
  text-align: center;
}
main table tbody .download a,
main .tablepress tbody .download a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
}
main table tbody .download a:hover svg,
main .tablepress tbody .download a:hover svg {
  fill: #fcc511;
}
main table tbody .download svg,
main .tablepress tbody .download svg {
  fill: #075295;
}
main table tfoot th,
main .tablepress tfoot th {
  background: none;
}

/* -------------------------------------------
***** GRAVITY FORM STYLING *****
------------------------------------------- */
.gform_confirmation_wrapper {
  padding: 2rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  color: #075295;
  font-weight: 400;
  border: 1px solid #075295;
  line-height: 1.2;
}

.user-content .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
.user-content .gform_wrapper.gravity-theme .gfield_label {
  font-size: 1.6rem;
  color: #112126;
  font-weight: 400;
}
.user-content .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}
.user-content .gform_wrapper.gravity-theme .gform_footer,
.user-content .gform_wrapper.gravity-theme .gform_page_footer {
  margin: 0;
  padding: 3rem 0 0 0;
}
.user-content .gform_wrapper.gravity-theme input[type=color],
.user-content .gform_wrapper.gravity-theme input[type=date],
.user-content .gform_wrapper.gravity-theme input[type=datetime-local],
.user-content .gform_wrapper.gravity-theme input[type=datetime],
.user-content .gform_wrapper.gravity-theme input[type=email],
.user-content .gform_wrapper.gravity-theme input[type=month],
.user-content .gform_wrapper.gravity-theme input[type=number],
.user-content .gform_wrapper.gravity-theme input[type=password],
.user-content .gform_wrapper.gravity-theme input[type=search],
.user-content .gform_wrapper.gravity-theme input[type=tel],
.user-content .gform_wrapper.gravity-theme input[type=text],
.user-content .gform_wrapper.gravity-theme input[type=time],
.user-content .gform_wrapper.gravity-theme input[type=url],
.user-content .gform_wrapper.gravity-theme input[type=week],
.user-content .gform_wrapper.gravity-theme select,
.user-content .gform_wrapper.gravity-theme textarea {
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
  background: #fff;
  border: 1px solid #737678;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s ease-in;
  border-radius: 3px;
}
.user-content .gform_wrapper.gravity-theme input[type=color]:focus,
.user-content .gform_wrapper.gravity-theme input[type=date]:focus,
.user-content .gform_wrapper.gravity-theme input[type=datetime-local]:focus,
.user-content .gform_wrapper.gravity-theme input[type=datetime]:focus,
.user-content .gform_wrapper.gravity-theme input[type=email]:focus,
.user-content .gform_wrapper.gravity-theme input[type=month]:focus,
.user-content .gform_wrapper.gravity-theme input[type=number]:focus,
.user-content .gform_wrapper.gravity-theme input[type=password]:focus,
.user-content .gform_wrapper.gravity-theme input[type=search]:focus,
.user-content .gform_wrapper.gravity-theme input[type=tel]:focus,
.user-content .gform_wrapper.gravity-theme input[type=text]:focus,
.user-content .gform_wrapper.gravity-theme input[type=time]:focus,
.user-content .gform_wrapper.gravity-theme input[type=url]:focus,
.user-content .gform_wrapper.gravity-theme input[type=week]:focus,
.user-content .gform_wrapper.gravity-theme select:focus,
.user-content .gform_wrapper.gravity-theme textarea:focus {
  background-color: #e8e8e9;
  border: 1px solid #112126;
}
.user-content .gform_wrapper.gravity-theme .ginput_container_consent {
  display: flex;
  align-items: center;
}
.user-content .gform_wrapper.gravity-theme .ginput_container_consent label {
  margin-bottom: 0;
  padding-left: 10px;
  text-transform: none;
}
.user-content .gform_wrapper.gravity-theme .ginput_container_consent input {
  border-radius: 0;
  border: 1px solid #fcc511;
  width: 30px;
  height: 30px;
  -webkit-appearance: checkbox;
}
.user-content .gform_wrapper.gravity-theme .gfield_select {
  padding-right: 3rem !important;
}
.user-content .gform_wrapper.gravity-theme .gfield_select {
  color: #112126;
  background-color: #fff;
  background-image: url("./img/custom/down.svg");
  background-size: 14px;
  background-position: right 7px top 50%;
  background-repeat: no-repeat;
  border-radius: 3px;
}
.user-content .gform_wrapper.gravity-theme .gform_footer button {
  margin: 0;
  border: 0;
  padding: 1.5rem 2rem !important;
  color: #112126 !important;
  background: #fcc511 !important;
}
.user-content .gform_wrapper.gravity-theme .gform_footer button:after {
  display: none;
}
.user-content .gform_wrapper.gravity-theme .gform_footer button:focus, .user-content .gform_wrapper.gravity-theme .gform_footer button:hover {
  cursor: pointer;
  color: #fff !important;
  background: #075295 !important;
}
.user-content .gform_wrapper.gravity-theme .gform_footer button svg {
  fill: #fff;
}

/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  background: #075295;
  background-image: url("img/custom/background-for-global-reach-and-companies.jpg");
  background-size: cover;
  background-position: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
html .language-switcher {
  margin-top: 2rem;
}
html .language-switcher label {
  display: none !important;
}
html .login .privacy-policy-page-link {
  margin: 5rem 0 2rem;
}
html body.login.login-action-login div#login h1 a {
  background-image: url("img/custom/color-logo.svg");
}
html .login {
  /* Logo */
  /* Error Message */
  /* Other message */
}
html .login h1 a {
  padding-bottom: 0;
  width: 250px;
  height: 80px;
  background-size: contain;
  background-position: center;
  display: block;
  margin: 3rem auto 0;
  padding: 0;
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #fff;
}
html .login p.message {
  margin: 0 20px 20px;
  background: #86d81b !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #nav {
  color: #112126 !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: #112126 !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: #112126 !important;
  text-decoration: underline !important;
}
html .login #login {
  margin: 0;
  background: #fff;
  padding: 0;
  min-width: 400px !important;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
html .login #backtoblog {
  float: left;
  margin: 0;
  padding: 0 0 20px 20px;
  opacity: 0.7;
}
html .login #backtoblog a {
  color: #112126 !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: #112126 !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 20px;
  margin-top: 0;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: #112126;
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: whitesmoke;
  border: 1px solid #737678;
  box-shadow: none;
  color: #112126;
  padding: 15px 10px;
  margin-top: 5px;
  font-size: 16px;
}
html .login form label[for=user_login]:before {
  content: "\f110";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form label[for=user_pass]:before {
  content: "\f160";
  font-family: dashicons;
  font-size: 20px;
  position: relative;
  top: 4px;
  margin-right: 7px;
}
html .login form p.submit {
  display: flex;
  justify-content: flex-end;
}
html .login form p.submit #wp-submit {
  font-size: 18px;
  font-weight: 600;
  padding: 4px 30px;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  background: #075295;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 10px;
  height: auto;
  box-shadow: none !important;
  border-radius: 4px;
}
html .login form p.submit #wp-submit:hover {
  background: #085fad;
}
html .login .button.wp-hide-pw {
  top: 15%;
}
html .forgetmenot {
  display: none;
}

/* --- PAGE : 404 --- */
.error404 #content {
  margin: 60px 0 80px 0;
}
.error404 main h1 {
  margin: 0 0 3rem 0;
  opacity: 0.6;
}
.error404 main h1 strong {
  display: block;
  font-size: 11rem;
  color: #7c8084;
  line-height: 12rem;
  font-weight: 600;
}
.error404 main h1 span {
  display: block;
  font-size: 2.95rem;
  margin-top: -1rem;
  color: #687077;
}
.error404 main p {
  max-width: 50%;
  margin: 0 auto;
}
.error404 main p a {
  color: #075295;
  font-weight: 600;
}
.error404 main p a:hover {
  color: #fcc511;
}

.fullscreen-search {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(10, 33, 49, 0.97);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.1s linear, opacity 0.1s linear;
}
.fullscreen-search.active {
  opacity: 1;
  visibility: visible;
  transition: visibility 0.2s linear, opacity 0.2s linear;
}
.fullscreen-search .outer-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 85px;
  height: 85px;
  cursor: pointer;
}
.fullscreen-search .outer-close .close {
  position: fixed;
  top: 40px;
  right: 60px;
  color: #fff;
  z-index: 3;
  cursor: pointer;
  font-family: sans-serif;
}
.fullscreen-search .outer-close .close span,
.fullscreen-search .outer-close .close span:before,
.fullscreen-search .outer-close .close span:after {
  border-radius: 4px;
  height: 5px;
  width: 35px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
}
.fullscreen-search .outer-close .close span {
  background: transparent;
}
.fullscreen-search .outer-close .close span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.fullscreen-search .outer-close .close span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.fullscreen-search .search-form {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  max-width: 70%;
  margin: 0 auto;
}
.fullscreen-search .search-form h3 {
  color: #fff;
  font-size: 36px;
}
.fullscreen-search .search-form form input {
  -webkit-appearance: none;
  box-shadow: 2px 1px 1px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 0 10px 10px 10px;
  background: #fff;
}

.social-wrapper {
  float: right;
}
.social-wrapper ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  margin-right: 20px;
}
.social-wrapper ul li {
  padding: 0 8px;
  list-style: none;
  margin-bottom: 0;
}
.social-wrapper ul li a {
  font-size: 21px;
  color: #075295;
  transition-duration: 0.3s;
}
.social-wrapper ul li a:hover {
  color: #fcc511;
  transition-duration: 0.3s;
}

#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  border-top: 0 !important;
}

@media (max-width: 768px) {
  .moove-gdpr-cookie-notice {
    text-align: center;
  }
  .moove-gdpr-button-holder .mgbutton {
    margin: auto !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .moove-gdpr-info-bar-content {
    display: flex !important;
  }
  .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    margin-top: 0 !important;
  }
  .gdpr-icon.moovegdpr-arrow-close:before,
  .gdpr-icon.moovegdpr-arrow-close:after {
    margin: auto;
    left: 0;
    right: 0;
  }
}
/* -------------------------------------------
***** Custom *****
------------------------------------------- */
.page-template-template-home #share_price_summary,
.home #share_price_summary {
  min-height: 225px !important;
}
.page-template-template-home h2,
.home h2 {
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .page-template-template-home h2,
  .home h2 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .page-template-template-home h2,
  .home h2 {
    font-size: 3.6rem;
  }
}
.page-template-template-home .is-style-intro,
.home .is-style-intro {
  font-size: 2.6rem;
  padding: 0 7.5%;
}
@media (max-width: 1024px) {
  .page-template-template-home .is-style-intro,
  .home .is-style-intro {
    font-size: 2.2rem;
  }
}
.page-template-template-home .home-map-group,
.home .home-map-group {
  overflow: hidden;
  position: relative;
  background-color: #112126;
}
@media screen and (max-width: 1260px) {
  .page-template-template-home .home-map-group,
  .home .home-map-group {
    background-color: #112227;
  }
}
.page-template-template-home .home-map-group:after,
.home .home-map-group:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1440px;
  height: 1930px;
  background: url("img/custom/background-for-global-reach-and-companies.jpg");
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 1260px) {
  .page-template-template-home .home-map-group:after,
  .home .home-map-group:after {
    background: url("img/custom/background-for-global-reach-and-companie-blank.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.25;
  }
}
.page-template-template-home .home-map-group h2,
.home .home-map-group h2 {
  color: #fff;
}
@media (max-width: 1024px) {
  .page-template-template-home .home-map-group h2,
  .home .home-map-group h2 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .page-template-template-home .home-map-group h2,
  .home .home-map-group h2 {
    font-size: 3.6rem;
  }
}
.page-template-template-home .home-map-group p,
.home .home-map-group p {
  color: #fff;
  font-size: 2.2rem;
  padding: 0 7.5%;
}
.page-template-template-home .home-map-group .wp-block-group__inner-container,
.home .home-map-group .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.page-template-template-home .home-map-group .col-3-small,
.home .home-map-group .col-3-small {
  max-width: 860px;
  margin: 70px auto 100px;
}
@media (max-width: 1024px) {
  .page-template-template-home .home-map-group .col-3-small .wp-block-column,
  .home .home-map-group .col-3-small .wp-block-column {
    flex-basis: 33% !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .page-template-template-home .home-map-group .col-3-small .wp-block-column,
  .home .home-map-group .col-3-small .wp-block-column {
    flex-basis: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .page-template-template-home .home-map-group .col-3-small .wp-block-column:not(:last-child),
  .home .home-map-group .col-3-small .wp-block-column:not(:last-child) {
    margin-bottom: 8rem;
  }
}
.page-template-template-home .home-map-group .col-5-small,
.home .home-map-group .col-5-small {
  text-align: center;
}
@media (max-width: 1024px) {
  .page-template-template-home .home-map-group .col-5-small,
  .home .home-map-group .col-5-small {
    justify-content: center;
  }
}
.page-template-template-home .home-map-group .col-5-small p,
.home .home-map-group .col-5-small p {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .page-template-template-home .home-map-group .col-5-small .wp-block-column,
  .home .home-map-group .col-5-small .wp-block-column {
    flex-basis: 33% !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .page-template-template-home .home-map-group .col-5-small .wp-block-column,
  .home .home-map-group .col-5-small .wp-block-column {
    flex-basis: 50% !important;
  }
}

@-webkit-keyframes onLoad {
  0% {
    opacity: 0;
    -webkit-transform: translateY(66px);
            transform: translateY(66px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes onLoad {
  0% {
    opacity: 0;
    -webkit-transform: translateY(66px);
            transform: translateY(66px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.user-content {
  -webkit-animation: 0.5s ease-out 0s 1 onLoad;
          animation: 0.5s ease-out 0s 1 onLoad;
}
.page-id-17 .user-content {
  -webkit-animation: none;
          animation: none;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .user-content {
    margin: 0 auto;
    max-width: 100%;
    padding-bottom: 6rem;
  }
}
.user-content > *:not(:last-child) {
  margin-bottom: 3rem;
}
.user-content > :last-child {
  margin-bottom: 0 !important;
}
.user-content > .bir-block {
  width: 100%;
  margin-bottom: 3rem;
}
.user-content .kt-accordion-panel-inner > *:not(:last-child),
.user-content .wp-block-columns .wp-block-column > *:not(:last-child),
.user-content .wp-block-group .wp-block-group__inner-container > *:not(:last-child) {
  margin-bottom: 3rem;
}
.user-content .kt-accordion-panel-inner > :last-child,
.user-content .wp-block-columns .wp-block-column > :last-child,
.user-content .wp-block-group .wp-block-group__inner-container > :last-child {
  margin-bottom: 0 !important;
}
.user-content .wp-block-kadence-accordion,
.user-content .bir-block.iframe,
.user-content .wp-block-image,
.user-content .trustpilot-widget,
.user-content .is-style-feature,
.user-content .wp-block-columns,
.user-content .wp-block-table,
.user-content .wp-block-group {
  width: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .user-content .wp-block-image {
    width: 100%;
    height: 100%;
  }
}
.user-content .wp-block-image .alignright {
  float: right;
  margin: 1rem 0 1.5rem 1.5em;
}
@media (max-width: 768px) {
  .user-content .wp-block-image .alignright {
    width: 50%;
  }
}
.user-content .is-style-diamond {
  margin: 3rem !important;
  position: relative;
  width: 175px;
  height: 0;
  padding-bottom: 175px;
  border-radius: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .user-content .is-style-diamond {
    width: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .user-content .is-style-diamond {
    top: -30px;
    margin: 3rem auto !important;
  }
}
.user-content .is-style-diamond img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  width: 140% !important;
  height: 140% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1024px) {
  .user-content .is-style-diamond img {
    width: 130% !important;
    height: 130% !important;
  }
}
.user-content hr,
.user-content .wp-block-separator {
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid #808385;
  margin: 1rem 0 6rem;
  display: block;
}
.user-content blockquote {
  font-size: 2.2rem;
  padding-left: 2.2rem;
}
.user-content blockquote p {
  font-size: inherit;
}
.user-content blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: calc(100% - 3rem);
  background: #075295;
}
.user-content h1,
.user-content h2,
.user-content h3,
.user-content h4,
.user-content h5,
.user-content h6 {
  font-weight: 400;
  color: #075295;
}
.user-content h1 b,
.user-content h1 strong,
.user-content h2 b,
.user-content h2 strong,
.user-content h3 b,
.user-content h3 strong,
.user-content h4 b,
.user-content h4 strong,
.user-content h5 b,
.user-content h5 strong,
.user-content h6 b,
.user-content h6 strong {
  font-weight: 600;
}
.user-content h2 {
  font-size: 3rem;
  line-height: 1.25;
}
.user-content h3 {
  font-size: 2.6rem;
  line-height: 1.25;
}
.user-content h4 {
  font-size: 2.2rem;
  line-height: 1.5;
}
.user-content p {
  color: #737678;
  font-size: 1.8rem;
  line-height: 1.5555555556;
}
.user-content .wp-block-column > ul,
.user-content .investment-case ul,
.user-content .kt-accordion-panel-inner > ul,
.user-content > ul {
  margin: 0;
  padding: 0;
  color: #737678;
}
.user-content .wp-block-column > ul li,
.user-content .investment-case ul li,
.user-content .kt-accordion-panel-inner > ul li,
.user-content > ul li {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  list-style: none;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}
.user-content .wp-block-column > ul li:last-child,
.user-content .investment-case ul li:last-child,
.user-content .kt-accordion-panel-inner > ul li:last-child,
.user-content > ul li:last-child {
  margin-bottom: 0;
}
.user-content .wp-block-column > ul li:after,
.user-content .investment-case ul li:after,
.user-content .kt-accordion-panel-inner > ul li:after,
.user-content > ul li:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-image: url("./img/custom/custom-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 768px) {
  .user-content .wp-block-column > ul li:after,
  .user-content .investment-case ul li:after,
  .user-content .kt-accordion-panel-inner > ul li:after,
  .user-content > ul li:after {
    top: 4px;
  }
}
.user-content > ul > li > ul {
  margin-top: 2rem;
}
.user-content > ul > li > ul li:after {
  background-image: url("./img/custom/custom-bullet-inset.svg");
}
.user-content .case-study-content > ol,
.user-content > ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0;
}
.user-content .case-study-content > ol li,
.user-content > ol li {
  position: relative;
  list-style: auto;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  color: #737678;
}
.user-content .case-study-content > ol li:last-child,
.user-content > ol li:last-child {
  margin-bottom: 0;
}
.user-content .case-study-content > ol li::marker,
.user-content > ol li::marker {
  font-size: 0;
  display: none;
}
.user-content .case-study-content > ol li:before,
.user-content > ol li:before {
  position: relative;
  top: 0;
  content: counter(item);
  color: #fcc511;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
  min-width: 1rem;
  counter-increment: item;
  margin-right: 1.5rem;
}
.user-content h1.page-title {
  text-align: left;
}
.user-content h3.pre-title {
  text-transform: uppercase;
  font-size: 2.2rem;
  color: #112126;
  margin-bottom: 1rem;
}
.user-content .post-date {
  text-align: left;
  font-size: 1.6rem;
  color: #075295;
  text-transform: uppercase;
  margin-top: -2rem;
}
.user-content .has-text-align-center {
  align-self: center;
}
.user-content .gfield_consent_label > a,
.user-content p > strong > a,
.user-content tr a,
.user-content li > a,
.user-content p > a,
.user-content a.rule-link {
  display: inline;
  position: relative;
  color: #075295;
  transition: 0.2s ease-in-out;
}
.user-content .gfield_consent_label > a:focus, .user-content .gfield_consent_label > a:hover,
.user-content p > strong > a:focus,
.user-content p > strong > a:hover,
.user-content tr a:focus,
.user-content tr a:hover,
.user-content li > a:focus,
.user-content li > a:hover,
.user-content p > a:focus,
.user-content p > a:hover,
.user-content a.rule-link:focus,
.user-content a.rule-link:hover {
  color: #075295;
  text-decoration: underline;
}
.user-content .postnav {
  display: none;
}
.user-content .nav-links {
  border-top: 1px solid rgba(17, 33, 38, 0.1);
  padding-top: 4rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.user-content .nav-links > div {
  width: 48%;
}
.user-content .nav-links .nav-next a {
  flex-direction: row-reverse;
}
.user-content .nav-links .nav-next a svg {
  margin: 0 0 0 2rem;
}
.user-content .nav-links a {
  display: inline-flex;
  align-items: flex-start;
}
.user-content .nav-links a:focus, .user-content .nav-links a:hover {
  color: #fcc511;
}
.user-content .nav-links a:focus svg, .user-content .nav-links a:hover svg {
  fill: #fcc511;
}
.user-content .nav-links a svg {
  margin: 0 2rem 0 0;
  width: 70px;
  height: 20px;
  fill: #075295;
}

.page-id-2767 .user-content h2,
.page-id-2767 .user-content h3,
.page-id-2767 .user-content h4 {
  color: #006b62;
}

.moove-gdpr-branding {
  display: none !important;
}

#home-investor-tools .wp-block-column {
  display: flex;
  flex-direction: column;
}
#home-investor-tools .wp-block-group {
  padding: 3.5rem;
  border: 1px solid #b4b6b7;
  margin-bottom: 3rem;
  height: 100%;
}
#home-investor-tools .btn, #home-investor-tools .news-wrap button.alm-load-more-btn, .news-wrap #home-investor-tools button.alm-load-more-btn {
  align-self: flex-start;
}
#home-investor-tools h3 {
  color: #075295;
  font-size: 3.8rem;
  font-weight: 300;
}
#home-investor-tools h3 strong {
  font-weight: 400;
}

#investor-page-tools .wp-block-column {
  padding: 3.5rem;
  border: 1px solid #b4b6b7;
  display: flex;
  flex-direction: column;
}
#investor-page-tools .bir-block.iframe {
  margin-bottom: auto !important;
}
#investor-page-tools .btn, #investor-page-tools .news-wrap button.alm-load-more-btn, .news-wrap #investor-page-tools button.alm-load-more-btn {
  margin-top: 3rem;
  align-self: flex-start;
}
#investor-page-tools h3 {
  font-size: 3rem;
  font-weight: 300;
}
#investor-page-tools h3 strong {
  font-weight: 400;
}

#cyber-certifications {
  padding: 3.5rem;
  border: 1px solid #b4b6b7;
}
#cyber-certifications .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
}
@media screen and (max-width: 600px) {
  #cyber-certifications .wp-block-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
#cyber-certifications .wp-block-column {
  margin: 0 !important;
}

#contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8rem;
}
@media screen and (max-width: 960px) {
  #contact-columns {
    grid-gap: 4rem;
  }
}
@media (max-width: 768px) {
  #contact-columns {
    grid-template-columns: 1fr;
  }
}
#contact-columns > :nth-child(2) {
  padding: 3rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}

#about-services > .wp-block-column {
  display: flex;
  flex-direction: column;
  padding: 3.5rem;
  border: 1px solid #b4b6b7;
}
#about-services > .wp-block-column > .wp-block-columns {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-gap: 3rem;
}
#about-services .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#about-services .wp-block-group__inner-container .wp-block-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.25rem;
  width: 100px;
  height: 100px;
}

#our-companies-list {
  margin-top: 5rem;
}
#our-companies-list .wp-block-columns {
  margin-bottom: 7rem;
}
#our-companies-list .wp-block-image {
  margin-top: 4.75rem;
}

#our-story-group {
  position: relative;
  padding: 5rem 0;
}
@media (max-width: 1024px) {
  #our-story-group {
    padding: 0 0 10rem;
  }
}
#our-story-group:after {
  position: absolute;
  z-index: -1;
  content: "";
  left: -50vw;
  top: 0;
  width: 200vw;
  height: 100%;
  background: whitesmoke;
}
@media (max-width: 1024px) {
  #our-story-group:after {
    display: none;
  }
}

#our-strategy-columns .wp-block-column,
#business-model-columns .wp-block-column {
  background: whitesmoke;
  padding: 3.5rem;
}
@media (max-width: 1024px) {
  #our-strategy-columns .wp-block-column,
  #business-model-columns .wp-block-column {
    padding: 2rem;
  }
}
#our-strategy-columns .wp-block-group,
#business-model-columns .wp-block-group {
  width: calc(100% + 7rem);
  margin: -3.5rem -3.5rem 3.5rem;
  padding: 2.5rem 0;
  background: #075295;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  #our-strategy-columns .wp-block-group,
  #business-model-columns .wp-block-group {
    padding: 1.5rem 0;
    width: calc(100% + 4rem);
    margin: -2rem -2rem 2rem;
  }
}
#our-strategy-columns .wp-block-group__inner-container,
#business-model-columns .wp-block-group__inner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#our-strategy-columns .wp-block-image,
#business-model-columns .wp-block-image {
  width: 35px;
  margin: 0 1rem 0 0;
}
@media (max-width: 1024px) {
  #our-strategy-columns .wp-block-image,
  #business-model-columns .wp-block-image {
    width: 25px;
  }
}
#our-strategy-columns p.small,
#business-model-columns p.small {
  padding: 2.5rem 3.5rem;
  margin: -3.5rem -3.5rem 3.5rem;
  background: #3b80b3;
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  #our-strategy-columns p.small,
  #business-model-columns p.small {
    margin: -2rem -2rem 2rem;
    font-size: 1.6rem;
  }
}
#our-strategy-columns h3,
#business-model-columns h3 {
  color: #fff;
  margin: 0;
}
@media (max-width: 1024px) {
  #our-strategy-columns h3,
  #business-model-columns h3 {
    font-size: 2.2rem;
  }
}
#our-strategy-columns ul li:after,
#business-model-columns ul li:after {
  background-image: url("./img/custom/custom-bullet-alt.svg") !important;
}
#our-strategy-columns .icon-subtitle,
#business-model-columns .icon-subtitle {
  margin: 0 0 1ch -2rem;
  padding: 1.5rem 2rem;
  background: transparent;
}
#our-strategy-columns .icon-subtitle .wp-block-group__inner-container,
#business-model-columns .icon-subtitle .wp-block-group__inner-container {
  justify-content: flex-start;
}
#our-strategy-columns .icon-subtitle h4,
#business-model-columns .icon-subtitle h4 {
  padding: 0;
}

div[id^=reasons-to-invest] {
  padding: 3rem 2rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(to right, #075295 0%, #10242e 100%);
}
div[id^=reasons-to-invest] .wp-block-group__inner-container {
  position: relative;
  z-index: 2;
}
div[id^=reasons-to-invest]:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -40%;
  width: 100%;
  height: 140%;
  background-image: url("img/custom/banner-logo-overlay.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
@media screen and (max-width: 780px) {
  div[id^=reasons-to-invest]:after {
    left: -100%;
    width: 300%;
    height: 300%;
  }
}
div[id^=reasons-to-invest] h3 {
  color: #fcc511;
  margin: 0 0 4rem;
}
div[id^=reasons-to-invest] .wp-block-column {
  padding: 1rem 0;
}
div[id^=reasons-to-invest] .bir-block.counter {
  width: auto;
}
div[id^=reasons-to-invest] .bir-block.counter .number-container * {
  font-size: 3rem;
}
.home div[id^=reasons-to-invest] .bir-block.counter .number-container * {
  font-size: 5rem;
}
div[id^=reasons-to-invest] .bir-block.counter .number-wrapper:after {
  display: none;
}

div[id^=callout-text-column] .wp-block-column {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  div[id^=callout-text-column] .wp-block-column {
    margin-bottom: 3rem;
  }
  div[id^=callout-text-column] .wp-block-column:last-child {
    margin-bottom: 0;
  }
}
div[id^=callout-text-column] h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  color: #19b2ad;
  margin-bottom: 0 !important;
  min-height: 50px;
}
@media (max-width: 768px) {
  div[id^=callout-text-column] h4 {
    min-height: 0;
  }
}
.page-id-873 div[id^=callout-text-column] h4 {
  min-height: 0;
}
div[id^=callout-text-column] hr,
div[id^=callout-text-column] .wp-block-separator {
  border-bottom: 3px solid #e8e8e9;
  margin: 2rem 0;
}

ol[id^=two-column-ol-list] {
  width: calc(100% + 5rem) !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -5rem;
  margin-bottom: -5rem;
}
ol[id^=two-column-ol-list] li {
  width: calc((100% / 2) - 5rem);
  margin-right: 5rem;
  margin-bottom: 4rem;
  padding-top: 60px;
}
@media screen and (max-width: 600px) {
  ol[id^=two-column-ol-list] li {
    width: calc((100% / 1) - 5rem);
  }
}
ol[id^=two-column-ol-list] li::marker {
  display: none;
  font-size: 0;
}
ol[id^=two-column-ol-list] li:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background-image: url("img/custom/ol-background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 2.8rem;
  font-weight: 500;
}

.unsupported-browser {
  display: none;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .unsupported-browser {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: #075295;
    color: #181822;
    padding: 30px;
  }
  .unsupported-browser .unsupported-browser-wrapper {
    height: auto;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
  }
  .unsupported-browser h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
  .unsupported-browser p {
    font-size: 1.6rem;
  }
}
/*!
 * Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-display: swap;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("fonts/fontawesome/fa-brands-400.eot");
  src: url("fonts/fontawesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("fonts/fontawesome/fa-brands-400.woff") format("woff"), url("fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("fonts/fontawesome/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("fonts/fontawesome/fa-regular-400.eot");
  src: url("fonts/fontawesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-400.woff2") format("woff2"), url("fonts/fontawesome/fa-regular-400.woff") format("woff"), url("fonts/fontawesome/fa-regular-400.ttf") format("truetype"), url("fonts/fontawesome/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("fonts/fontawesome/fa-solid-900.eot");
  src: url("fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("fonts/fontawesome/fa-solid-900.woff") format("woff"), url("fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* -------------------------------------------
***** Packages *****
------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* -------------------------------------------
***** Extensions *****
------------------------------------------- */
/* -------------------------------------------
***** Includes *****
------------------------------------------- */
/* -------------------------------------------
***** HOME BANNERS *****
------------------------------------------- */
.main-slider .slick-slide .banner-caption-wrapper, .main-slider .slick-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@-webkit-keyframes custom-fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes custom-fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(1.5rem);
            transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.main-slider {
  width: 100%;
  height: clamp(600px, 75vh, 800px);
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  overflow: hidden;
}
.main-slider .slick-slide {
  height: clamp(600px, 75vh, 800px);
  position: relative;
}
.main-slider .slick-slide iframe {
  position: relative;
  pointer-events: none;
}
.main-slider .slick-slide figure {
  position: relative;
  height: 100%;
}
.main-slider .slick-slide .slide-image {
  height: 100%;
  background-size: cover;
  background-position: bottom;
  transition: all 0.8s ease;
}
.main-slider .slick-slide .slide-image.show {
  opacity: 1;
}
.main-slider .slick-slide .embed-player {
  display: none;
}
@media (min-width: 769px) {
  .main-slider .slick-slide .embed-player {
    display: block;
  }
}
.main-slider .slick-slide .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.main-slider .slick-slide .logo-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: -45%;
  right: 0;
  opacity: 0.1;
}
@media (max-width: 1024px) {
  .main-slider .slick-slide .logo-overlay {
    width: 150%;
    height: 150%;
    bottom: 0;
    top: 50%;
    left: 0;
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .main-slider .slick-slide .logo-overlay {
    width: 200%;
    height: 200%;
  }
}
.main-slider .slick-slide .logo-overlay svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.main-slider .slick-slide .banner-caption-wrapper {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
  -webkit-animation: custom-fade-in-up 0.85s ease forwards;
          animation: custom-fade-in-up 0.85s ease forwards;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption {
  padding: 0 20% 0 5%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 100px;
}
@media (max-width: 1024px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption {
    padding: 0 10px;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption.has-background, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption.has-background, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption.has-background,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background {
  padding: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
}
@media (min-width: 769px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption.has-background, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption.has-background, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption.has-background,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background {
    padding: 30px;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption.has-background h2, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption.has-background h2, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background h2,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption.has-background h2,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background h2,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption.has-background p,
.main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption.has-background p,
.page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background p,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption.has-background p,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption.has-background p {
  color: #075295;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h1, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h1,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2,
.main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h2,
.page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h2,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption p,
.main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption p,
.page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption p,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption p,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption p {
  color: #fff;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h1, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h1,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2,
.main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h2,
.page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h2,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2 {
  margin: 0;
  position: relative;
  font-size: 3.6rem;
  line-height: 1.33;
  font-weight: 300;
}
@media (max-width: 1440px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h1, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h1,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2,
  .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h2,
  .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h2,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h1, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h1,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h1,
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2,
  .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption h2,
  .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption h2,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption h2 {
    text-align: center;
    font-size: 2.7rem;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption p, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption p, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption p,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption p,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption p {
  max-width: 100%;
  padding-top: 2rem;
  font-size: 2.1rem;
  font-weight: 300;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption p, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption p, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption p,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption p,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption p {
    max-width: 80%;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption .banner-caption-buttons, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption .banner-caption-buttons,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption .banner-caption-buttons,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption .banner-caption-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption .banner-caption-buttons, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption .banner-caption-buttons,
  .main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption .banner-caption-buttons,
  .home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption .banner-caption-buttons {
    margin: 20px auto 0;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons a, .main-slider .slick-slide .banner-caption-wrapper .page-template-template-home .home-map-group .wp-block-group__inner-container .banner-caption .banner-caption-buttons a, .page-template-template-home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption .banner-caption-buttons a,
.main-slider .slick-slide .banner-caption-wrapper .home .home-map-group .wp-block-group__inner-container .banner-caption .banner-caption-buttons a,
.home .home-map-group .main-slider .slick-slide .banner-caption-wrapper .wp-block-group__inner-container .banner-caption .banner-caption-buttons a {
  display: flex;
  align-self: flex-start;
  margin-right: 0;
  justify-content: center;
  margin-bottom: 15px;
}
.main-slider .slick-slide .home-banners-alt-image {
  z-index: 20;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 769px) {
  .main-slider .slick-slide .home-banners-alt-image {
    display: none;
  }
}
.main-slider .slick-slide .slide-media {
  -webkit-animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
          animation: slideOut 0.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active {
  z-index: 1;
}
.main-slider .slick-slide.slick-active .slide-media {
  -webkit-animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
          animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active .caption {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
.main-slider .slick-slide.youtube iframe {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.main-slider .slick-arrow {
  position: absolute;
  cursor: pointer;
  top: 50vh;
  height: 5rem;
  width: 5rem;
  z-index: 1;
  background-color: transparent;
  color: transparent;
  border: none;
  background: url(img/framework/arrow-right.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.main-slider .slick-arrow.slick-prev {
  left: 0;
  -webkit-transform: translate(0, -100%) rotate(180deg);
          transform: translate(0, -100%) rotate(180deg);
}
.main-slider .slick-arrow.slick-next {
  right: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.main-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.main-slider .slick-dots {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
}
.main-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 8px;
}
.main-slider .slick-dots li button {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border-radius: 2px;
  border: 2px solid #fff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.main-slider .slick-dots li button:focus {
  outline: none;
}
.main-slider .slick-dots li button:hover {
  opacity: 1;
}
.main-slider .slick-dots li.slick-active button {
  border-color: #fff;
  opacity: 1;
  background: #fff;
}

/* -------------------------------------------
***** INNER BANNERS *****
------------------------------------------- */
.inner-banner {
  margin-bottom: 0;
  position: relative;
  width: 100%;
  opacity: 1;
  transition: all 1.2s ease;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(to bottom right, #075295 0%, #3b80b3 100%);
}
@media (max-width: 1024px) {
  .inner-banner {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .inner-banner {
    height: 230px;
  }
}
.inner-banner .title-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.inner-banner .wrap, .inner-banner .page-template-template-home .home-map-group .wp-block-group__inner-container, .page-template-template-home .home-map-group .inner-banner .wp-block-group__inner-container,
.inner-banner .home .home-map-group .wp-block-group__inner-container,
.home .home-map-group .inner-banner .wp-block-group__inner-container {
  margin-top: auto;
  padding-bottom: 2.5rem;
}
.inner-banner h1 {
  position: relative;
  color: #cbcccb;
  font-weight: 200;
  font-size: 3.6rem;
  margin: 0;
  text-transform: none;
  padding-left: 2.5rem;
  text-align: left;
}
@media (max-width: 500px) {
  .inner-banner h1 {
    font-size: 3rem;
    line-height: 1.33;
  }
}
.inner-banner h1::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #cbcccb;
}
.inner-banner.no-image {
  height: 250px;
}
@media (max-width: 1024px) {
  .inner-banner.no-image {
    height: 140px;
  }
}
@media (max-width: 768px) {
  .inner-banner.no-image {
    height: 100px;
  }
}
.inner-banner .banner-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.8s ease;
}
.inner-banner .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* -------------------------------------------
***** Includes *****
------------------------------------------- */
.btn, .news-wrap button.alm-load-more-btn,
.user-content .gform_wrapper.gravity-theme .gform_footer button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  color: #112126;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  text-align: center;
  background: #fcc511;
  min-width: 100px;
  transition: all 0.2s ease-in;
  border-radius: 3px;
  border: 1px solid #fcc511;
}
.btn:hover, .news-wrap button.alm-load-more-btn:hover, .btn:active, .news-wrap button.alm-load-more-btn:active, .btn:focus, .news-wrap button.alm-load-more-btn:focus,
.user-content .gform_wrapper.gravity-theme .gform_footer button:hover,
.user-content .gform_wrapper.gravity-theme .gform_footer button:active,
.user-content .gform_wrapper.gravity-theme .gform_footer button:focus {
  cursor: pointer;
  color: #fff;
  background-color: #075295;
  border: 1px solid #3b80b3;
}
.btn:hover svg, .news-wrap button.alm-load-more-btn:hover svg, .btn:active svg, .news-wrap button.alm-load-more-btn:active svg, .btn:focus svg, .news-wrap button.alm-load-more-btn:focus svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button:hover svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button:active svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button:focus svg {
  fill: #fff;
}
.btn svg, .news-wrap button.alm-load-more-btn svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button svg {
  position: relative;
  top: -1px;
  width: 9.6px;
  height: 14.4px;
  fill: #112126;
  margin-left: 1.5rem;
  transition: all 0.2s ease-in;
}
.btn.btn-no-bg, .news-wrap button.btn-no-bg.alm-load-more-btn,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg {
  position: relative;
  background: none;
  padding: 3px;
  color: #075295;
  border-radius: 0;
  border: 0;
}
.btn.btn-no-bg:after, .news-wrap button.btn-no-bg.alm-load-more-btn:after,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: all 0.05s ease-in;
  background: transparent;
}
.btn.btn-no-bg:hover, .news-wrap button.btn-no-bg.alm-load-more-btn:hover, .btn.btn-no-bg:active, .news-wrap button.btn-no-bg.alm-load-more-btn:active, .btn.btn-no-bg:focus, .news-wrap button.btn-no-bg.alm-load-more-btn:focus,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:hover,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:active,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:focus {
  cursor: pointer;
  color: #075295;
  background: none;
  border: 0;
}
.btn.btn-no-bg:hover svg, .news-wrap button.btn-no-bg.alm-load-more-btn:hover svg, .btn.btn-no-bg:active svg, .news-wrap button.btn-no-bg.alm-load-more-btn:active svg, .btn.btn-no-bg:focus svg, .news-wrap button.btn-no-bg.alm-load-more-btn:focus svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:hover svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:active svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:focus svg {
  fill: #075295;
}
.btn.btn-no-bg:hover:after, .news-wrap button.btn-no-bg.alm-load-more-btn:hover:after, .btn.btn-no-bg:active:after, .news-wrap button.btn-no-bg.alm-load-more-btn:active:after, .btn.btn-no-bg:focus:after, .news-wrap button.btn-no-bg.alm-load-more-btn:focus:after,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:hover:after,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:active:after,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg:focus:after {
  background: #075295;
}
.btn.btn-no-bg svg, .news-wrap button.btn-no-bg.alm-load-more-btn svg,
.user-content .gform_wrapper.gravity-theme .gform_footer button.btn-no-bg svg {
  fill: #075295;
}
.btn.full-width, .news-wrap button.full-width.alm-load-more-btn,
.user-content .gform_wrapper.gravity-theme .gform_footer button.full-width {
  display: block;
}
.btn.aligncenter, .news-wrap button.aligncenter.alm-load-more-btn,
.user-content .gform_wrapper.gravity-theme .gform_footer button.aligncenter {
  display: inline-flex !important;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btn.center, .news-wrap button.center.alm-load-more-btn,
.user-content .gform_wrapper.gravity-theme .gform_footer button.center {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}

/* block : cta */
.cta {
  margin-bottom: 50px !important;
}

.cta-bg {
  display: block;
  min-height: 250px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-bg.icon {
  background-size: 30%;
}

.cta.icon-magni .icon {
  background-size: 45%;
}

.cta-content {
  padding: 36px 30px 30px 30px;
  background: rgb(237, 237, 237);
  background: linear-gradient(to right, #ededed 0%, #f1ebf6 100%);
  position: relative;
}

.cta-content h3 {
  font-size: 30px;
  margin: -10px 0 30px 0;
}

.cta-content *:last-child {
  margin-bottom: 0;
}

@media (max-width: 799px) {
  .cta-content:before {
    height: 6px;
    top: 0;
    left: 30px;
    right: 30px;
  }
}
@media (min-width: 800px) {
  .cta.horis {
    display: flex;
    flex-wrap: wrap;
  }
  .cta.horis .cta-bg {
    width: 40%;
    order: 1;
  }
  .cta.horis .cta-content {
    width: 60%;
    padding: 40px 46px 40px 40px;
    order: 0;
  }
  .cta.horis .cta-content {
    padding: 40px 46px 40px 40px;
  }
  .cta.vert .cta-content:before {
    height: 6px;
    top: 0;
    left: 30px;
    right: 30px;
  }
  .cta.horis .cta-content:before {
    width: 6px;
    top: 45px;
    bottom: 37px;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .cta.horis .cta-bg,
  .cta.horis .cta-content {
    width: 50%;
  }
  .cta.three-by-one .cta-bg {
    width: 25%;
  }
  .cta.three-by-one .cta-content {
    width: 75%;
  }
}
/* block : iframe */
iframe {
  border: 0;
  width: 100%;
  overflow: hidden !important;
}

.image-cta {
  min-height: 450px;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 40px 0;
  z-index: 2;
}
@supports (-webkit-overflow-scrolling: touch) {
  .image-cta {
    background-attachment: unset !important;
  }
}
@media (min-width: 501px) {
  .image-cta {
    min-height: 300px;
  }
}
.image-cta .wrap, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container,
.image-cta .home .home-map-group .wp-block-group__inner-container,
.home .home-map-group .image-cta .wp-block-group__inner-container {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 1025px) {
  .image-cta .wrap, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container,
  .image-cta .home .home-map-group .wp-block-group__inner-container,
  .home .home-map-group .image-cta .wp-block-group__inner-container {
    align-items: flex-start;
  }
}
.image-cta .wrap .image-cta-content-wrapper, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper,
.image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper,
.home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
@media (min-width: 1025px) {
  .image-cta .wrap .image-cta-content-wrapper, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper,
  .image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper,
  .home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper {
    width: 60%;
  }
}
.image-cta .wrap .image-cta-content-wrapper .image-cta-content-title-wrapper, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper,
.image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper,
.home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image-cta .wrap .image-cta-content-wrapper .image-cta-content-title-wrapper a.btn, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper a.btn, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper a.btn,
.image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper a.btn,
.home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper .image-cta-content-title-wrapper a.btn {
  margin-top: 0;
}
.image-cta .wrap .image-cta-content-wrapper h2, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper h2, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper h2,
.image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper h2,
.home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper h2 {
  color: #fcc511;
  margin-bottom: 0;
  padding: 15px 20px;
}
@media (min-width: 769px) {
  .image-cta .wrap .image-cta-content-wrapper h2, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper h2, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper h2,
  .image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper h2,
  .home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper h2 {
    padding: 5px 20px;
  }
}
.image-cta .wrap .image-cta-content-wrapper p, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper p, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper p,
.image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper p,
.home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper p {
  color: #fff;
  margin-top: 15px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1025px) {
  .image-cta .wrap .image-cta-content-wrapper p, .image-cta .page-template-template-home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper p, .page-template-template-home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper p,
  .image-cta .home .home-map-group .wp-block-group__inner-container .image-cta-content-wrapper p,
  .home .home-map-group .image-cta .wp-block-group__inner-container .image-cta-content-wrapper p {
    width: 90%;
  }
}
.image-cta .image-cta-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.image-cta a.btn {
  margin-top: 20px;
}
.image-cta a.btn span svg {
  float: right;
  margin-left: 30px;
  width: 22px;
  height: 22px;
}

p.is-style-intro,
.is-style-intro {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #112126;
}

.is-style-feature {
  background: #075295;
  padding: 20px;
  color: #fff;
  font-weight: 400;
  position: relative;
}

.alm-listing .alm-reveal {
  margin-bottom: 0;
}

.alm-reveal,
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.5rem;
}
@media (max-width: 1024px) {
  .alm-reveal,
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .alm-reveal,
  .posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
body.home .alm-reveal,
body.home .posts {
  grid-gap: 5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 500px) {
  body.home .alm-reveal,
  body.home .posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
.alm-reveal .post,
.posts .post {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.alm-reveal .post:hover,
.posts .post:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.alm-reveal .post:hover .thumb,
.posts .post:hover .thumb {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
  border: 1px solid #075295;
}
.alm-reveal .post:hover .title,
.posts .post:hover .title {
  color: #075295;
  text-decoration: underline;
}
.alm-reveal .thumb,
.posts .thumb {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  margin-bottom: 3rem;
  border: 1px solid #b4b6b7;
  transition: all 0.2s ease-in;
}
.alm-reveal .thumb img,
.posts .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.alm-reveal .title,
.posts .title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #112126;
  margin: 0;
  transition: all 0.2s ease-in;
  line-height: 1.4;
}
body.home .alm-reveal .title,
body.home .posts .title {
  font-size: 2.6rem;
}
.alm-reveal .meta,
.posts .meta {
  font-size: 1.6rem;
  color: #075295;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.alm-reveal .external-link,
.posts .external-link {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 1rem;
  top: 0;
  right: 0;
  background: #fcc511;
  transition: all 0.2s ease-in;
  pointer-events: none;
}
.alm-reveal .external-link span,
.posts .external-link span {
  position: relative;
  top: 1px;
  text-transform: uppercase;
  color: #112126;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}
.alm-reveal .external-link svg,
.posts .external-link svg {
  width: 100%;
  height: 100%;
  fill: #112126;
  stroke: none;
}
.alm-reveal .external-link .icon,
.posts .external-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  width: 15px;
  height: 15px;
}

.team-grid {
  margin: 0 0 0 -18px;
}
@media (max-width: 768px) {
  .team-grid {
    margin: 0 0 0 -36px;
  }
}
@media screen and (max-width: 580px) {
  .team-grid {
    margin: 0;
  }
}
.team-grid.fade > .team-head.open {
  border: 1px solid transparent;
}
.team-grid.fade > .team-head.open:after {
  width: 85%;
  opacity: 1;
}
.team-grid.fade > .team-head.open .team-details {
  background: none;
}
.team-grid.fade > .team-head.open .team-details h3 {
  color: #075295;
}
.team-grid.fade > .team-head.open .team-icon {
  background: #075295;
}
.team-grid.fade > .team-head.open .team-cross {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.team-grid.fade > .team-head:not(.open) {
  opacity: 0.15;
}
.team-grid.fade > .team-head:not(.open):hover {
  opacity: 1;
}
.team-grid .team-head {
  cursor: pointer;
  overflow: visible;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: calc(33.3333333333% - 40px);
  margin: 0 0 36px 36px;
  padding: 2rem 0 0 0;
}
@media (max-width: 768px) {
  .team-grid .team-head {
    width: calc(50% - 20px);
    margin: 0 0 17px 17px;
  }
}
@media screen and (max-width: 580px) {
  .team-grid .team-head {
    width: 100%;
    margin: 0;
    padding-bottom: 2rem;
  }
}
.team-grid .team-head:hover img, .team-grid .team-head:active img, .team-grid .team-head:focus img {
  opacity: 1;
}
.team-grid .team-head:hover .team-details h3, .team-grid .team-head:active .team-details h3, .team-grid .team-head:focus .team-details h3 {
  color: #fcc511;
}
.team-grid .team-head:hover .team-icon, .team-grid .team-head:active .team-icon, .team-grid .team-head:focus .team-icon {
  background: #fcc511;
}
.team-grid .team-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: rgba(115, 118, 120, 0.6);
  border-radius: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.2s ease-in;
}
.team-grid .team-icon svg {
  width: 100%;
  height: 100%;
}
.team-grid .team-icon .team-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  transition: all 0.2s ease-in;
}
.team-grid .team-details {
  height: 100%;
  width: 100%;
  padding-top: 2rem;
  text-align: center;
}
@media (max-width: 1440px) {
  .team-grid .team-details {
    max-width: 300px;
    margin: 1rem auto 0 auto;
  }
}
.team-grid .team-details h3 {
  margin: 0 0 1rem 0;
  font-size: 2.2rem;
  color: #112126;
  transition: all 0.2s ease-in;
}
.team-grid .team-details .team-position {
  line-height: 1.25;
  font-size: 1.6rem;
  font-weight: 500;
  color: #737678;
}
.team-grid .team-bio {
  display: none;
  float: left;
  margin: 0 0 18px 36px;
  width: calc(100% - 18px - 36px);
}
@media screen and (max-width: 580px) {
  .team-grid .team-bio {
    margin: 20px 0;
    width: calc(100% - 20px);
  }
}
.team-grid .team-bio-wrap {
  display: flex;
  gap: 4rem;
}
@media (max-width: 500px) {
  .team-grid .team-bio-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.team-grid .team-bio-wrap .team-photo {
  position: relative;
  margin: 0 auto;
  width: 125px;
  height: 125px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e8e8e9;
  transition: all 0.2s ease-in;
}
@media (max-width: 768px) {
  .team-grid .team-bio-wrap .team-photo {
    width: 150px;
    height: 150px;
  }
}
.team-grid .team-bio-wrap .team-photo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-grid .team-bio-wrap .team-bio-content {
  flex: 1;
}

/* block : team list */
.team-member {
  margin: 0 0 50px 0;
}
@media (min-width: 501px) {
  .team-member .team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px -20px;
  }
}

.team-member .head h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 30px 0;
}

.team-member .head span {
  display: block;
  padding: 25px 20px;
  background: linear-gradient(135deg, var(--lightgrey) 0%, rgb(235, 226, 242) 100%);
}

.team-member .head h3 em {
  display: block;
  font-size: 18px;
  color: var(--secondary);
}

.team-member .bio p:first-of-type {
  font-size: 105%;
  color: var(--primary);
}

@media (min-width: 700px) {
  .team-member .head {
    margin: 0 0 30px 0;
    position: relative;
  }
  .team-member .head img {
    width: 55%;
  }
  .team-member .head .name {
    width: 55%;
    margin: 0;
    position: absolute;
    top: 30px;
    right: 0;
  }
}
@media (min-width: 900px) {
  .team-member {
    margin: 0 0 120px 0;
  }
  .team-member .bio p:last-of-type {
    margin-bottom: 0;
  }
}
@media (min-width: 1100px) {
  .team-member .head span {
    max-width: 480px;
  }
  .team-member .head img {
    width: 300px;
  }
  .team-member .head .name {
    width: calc(100% - 250px);
  }
  .team-member .bio {
    width: calc(100% - 330px);
    margin: -74px 0 0 auto;
  }
}
@media (min-width: 1300px) {
  .team-member .head span {
    padding: 45px 50px;
  }
}
/* bio lightbox */
.bio.fancybox-content {
  width: 90%;
  max-width: 900px;
}

.bio-photo img {
  width: 100%;
  margin: 0;
}

.bio-name {
  margin: 0 0 24px 0;
  padding-top: 15px;
  border-top: 5px solid var(--primary);
}

.bio-name h3 {
  font-size: 22px;
  margin: 0 0 4px 0;
}

.bio-name p {
  display: block;
  font-size: 16px;
  margin: 0;
  color: var(--secondary);
}

.bio-name p + p {
  margin-top: 5px;
}

bio-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .bio-photo {
    width: 240px;
    float: left;
  }
  .bio-body {
    width: calc(100% - 240px);
    float: left;
    padding-left: 20px;
  }
}
@media (min-width: 1000px) {
  .bio-photo {
    width: 300px;
  }
  .bio-body {
    width: calc(100% - 300px);
    padding-left: 30px;
  }
}
.image-slider ul.slick-slider {
  margin: 0;
  padding: 0;
}
.image-slider ul.slick-slider .slick-list li {
  width: 100%;
  height: 250px;
}
@media (min-width: 769px) {
  .image-slider ul.slick-slider .slick-list li {
    height: 300px;
  }
}
@media (min-width: 1025px) {
  .image-slider ul.slick-slider .slick-list li {
    height: 400px;
  }
}
.image-slider ul.slick-slider .slick-dots {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 10px;
}
.image-slider ul.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.image-slider ul.slick-slider .slick-dots li button {
  width: 15px;
  height: 18px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}
.image-slider ul.slick-slider .slick-dots li button:focus {
  outline: none;
}
.image-slider ul.slick-slider .slick-dots li button:hover {
  opacity: 1;
}
.image-slider ul.slick-slider .slick-dots li.slick-active button {
  border-color: #fff;
  opacity: 1;
  background: #fff;
}

blockquote.wp-block-quote p {
  font-size: 1.8rem;
}

.wp-block-image.size-full img {
  width: 100%;
}

.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header {
  cursor: pointer;
  border-radius: 0;
  border-width: 0;
  padding: 2rem;
  margin-top: 1.4rem;
  background: whitesmoke;
  color: #112126;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header:hover {
  background: #fef0c1 !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header:hover .kt-blocks-accordion-icon-trigger:after {
  background: #fcc511 !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active {
  color: #112126;
  background: #fff;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-icon-trigger:before {
  -webkit-transform: translate(-50%, -50%) rotate(180deg) !important;
          transform: translate(-50%, -50%) rotate(180deg) !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-icon-trigger:after {
  background: #075295 !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner {
  border: 0;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner > :last-child {
  margin-bottom: 0;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner:after {
  display: none;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .kt-blocks-accordion-title-wrap {
  padding-left: 10px;
}
.wp-block-kadence-accordion .kt-blocks-accordion-header {
  position: relative;
  z-index: 1;
}
.wp-block-kadence-accordion .kt-blocks-accordion-icon-trigger {
  position: relative;
  min-width: 12px;
}
.wp-block-kadence-accordion .kt-blocks-accordion-icon-trigger:before {
  display: block;
  content: "";
  position: absolute;
  background-color: transparent !important;
  background-image: url("img/custom/accordion-button.svg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 12px !important;
  width: 12px !important;
  top: 50% !important;
  left: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  transition: all 0.2s ease-in;
}
.wp-block-kadence-accordion .kt-blocks-accordion-icon-trigger:after {
  display: block;
  content: "";
  position: absolute;
  width: 22px !important;
  height: 22px !important;
  top: 50% !important;
  left: 50% !important;
  background: #b4b6b7 !important;
  z-index: -1;
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
  transition: all 0.2s ease-in;
}

.wp-block-kadence-tabs ul.kt-tabs-title-list {
  margin-bottom: 2rem;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li {
  margin: 0 10px 10px 0;
  width: 100%;
}
@media (min-width: 769px) {
  .wp-block-kadence-tabs ul.kt-tabs-title-list li {
    margin: 0 10px -1px 0;
    width: auto;
  }
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
  padding: 1.25rem 2.25rem;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  width: auto;
  border: 0;
}
@media (min-width: 769px) {
  .wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
    width: auto;
  }
}
@media (max-width: 768px) {
  .wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
    width: 100%;
    border-radius: 8px;
  }
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-inactive a.kt-tab-title {
  color: #737678;
  background: linear-gradient(to bottom right, #cbcccb 0%, #e4e4e4 100%);
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-inactive a.kt-tab-title span {
  color: #737678;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title {
  color: #fff;
  background: linear-gradient(to bottom right, #112126 0%, #075295 100%) !important;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title span {
  color: #fff;
}
.wp-block-kadence-tabs div.kt-tabs-content-wrap .wp-block-kadence-tab {
  border: 0;
  padding: 0;
}

.counter {
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: 200px;
}
@media screen and (max-width: 1260px) {
  .counter {
    width: 100%;
  }
}
.home .counter {
  height: 0;
  padding-bottom: 200px;
}
@media screen and (max-width: 1260px) {
  .home .counter {
    width: 200px;
  }
}
@media (max-width: 1024px) {
  .home .counter {
    width: 175px;
    padding-bottom: 175px;
  }
}
.home .counter:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: linear-gradient(to bottom right, #075295 0%, rgba(7, 82, 149, 0) 100%);
}
.home .counter .suffix,
.home .counter .prefix,
.home .counter .number {
  font-size: 6rem;
}
@media (max-width: 1024px) {
  .home .counter .suffix,
  .home .counter .prefix,
  .home .counter .number {
    font-size: 4rem;
  }
}
.home .counter p.number-title {
  margin: 0;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .home .counter p.number-title {
    font-size: 1.4rem;
  }
}
.home .counter .number-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home .counter .number-wrapper:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: linear-gradient(to bottom right, #075295 0%, rgba(7, 82, 149, 0) 100%);
}
.home .counter.no-bg {
  width: 100%;
  height: auto;
  padding: 0 5%;
}
.home .counter.no-bg:after {
  display: none;
}
.home .counter.no-bg .number-wrapper {
  position: relative;
}
.home .counter.no-bg .suffix,
.home .counter.no-bg .prefix,
.home .counter.no-bg .number {
  font-size: 6rem;
}
@media (max-width: 1024px) {
  .home .counter.no-bg .suffix,
  .home .counter.no-bg .prefix,
  .home .counter.no-bg .number {
    font-size: 4.6rem;
  }
}
.home .counter.no-bg p.number-title {
  margin: 0;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .home .counter.no-bg p.number-title {
    font-size: 1.6rem;
  }
}
.counter.mind {
  position: relative;
  width: 100%;
  max-width: 250px;
}
.counter.mind .number-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
}
.counter.mind .number-container:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(to bottom right, #002b26 0%, #006b62 100%);
}
.counter.mind .suffix,
.counter.mind .prefix,
.counter.mind .number {
  font-weight: 400;
  color: #fff;
}
.counter.mind p.number-title {
  margin-top: 3rem;
  color: #002b26;
}
.counter .number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.counter .number-container {
  white-space: nowrap;
}
.counter .suffix,
.counter .prefix,
.counter .number {
  font-size: 5rem;
  line-height: 1;
  color: #fff;
  font-weight: 200;
}
@media screen and (max-width: 1200px) {
  .counter .suffix,
  .counter .prefix,
  .counter .number {
    font-size: 4rem;
  }
}
.counter p.number-title {
  max-width: 190px;
  font-size: 1.6rem;
  margin: 1rem 0 0;
  line-height: 1.33;
  text-transform: uppercase;
  color: #fcc511;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .counter p.number-title {
    font-size: 1.4rem;
  }
}
body.page-id-1507 .counter p.number-title {
  font-size: 1.4rem;
}

.history {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.history .history-entry {
  display: flex;
  align-items: center;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 600px) {
  .history .history-entry {
    flex-direction: row-reverse;
  }
}
.history .history-entry:last-child {
  margin-bottom: 0;
}
.history .history-entry:nth-child(even) {
  flex-direction: row-reverse;
}
.history .history-entry:nth-child(even) .entry-content {
  padding-right: 0;
  padding-left: 3.5rem;
}
.history .history-entry:nth-child(even) .entry-year-container {
  margin-right: 0;
  margin-left: auto;
}
.history .entry-content {
  width: 45%;
  padding-right: 3.5rem;
}
@media (max-width: 1440px) {
  .history .entry-content {
    width: calc(50% - 50px);
  }
}
@media screen and (max-width: 600px) {
  .history .entry-content {
    width: calc(100% - 120px);
    padding: 0 !important;
  }
}
.history .entry-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.history .entry-text {
  margin: 0;
}
.history .entry-year-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  height: 0;
  padding-bottom: 10%;
  margin-right: auto;
}
@media (max-width: 1440px) {
  .history .entry-year-container {
    width: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 600px) {
  .history .entry-year-container {
    width: 80px;
    padding-bottom: 80px;
    margin-right: auto !important;
    margin-left: 0 !important;
  }
}
.history .entry-year-container:after, .history .entry-year-container:before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #075295;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.2s ease-in;
}
.history .entry-year-container:before {
  z-index: 0;
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.history .entry-year {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fcc511;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.75;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.content-box {
  position: relative;
  background-size: cover;
  background-position: center;
}
.content-box .content-box-overlay {
  background: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.content-box .content-box-content {
  z-index: 2;
  position: relative;
}

.latest-document {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 400px;
  padding: 4rem;
}
@media (max-width: 1440px) {
  .latest-document {
    min-height: 350px;
  }
}
@media (max-width: 500px) {
  .latest-document {
    min-height: 250px;
  }
}
.latest-document.shallow {
  min-height: 250px;
}
@media (max-width: 1024px) {
  .latest-document.shallow {
    min-height: 230px;
  }
}
.latest-document.height-300 {
  height: 300px;
  min-height: unset;
  max-height: unset;
}
.latest-document .prefix,
.latest-document .document,
.latest-document .btn,
.latest-document .news-wrap button.alm-load-more-btn,
.news-wrap .latest-document button.alm-load-more-btn,
.latest-document .download {
  position: relative;
  z-index: 2;
}
.latest-document .prefix {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 300;
  color: #fff;
}
.latest-document .prefix b {
  font-weight: 400;
}
.latest-document .document {
  position: relative;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.latest-document .download {
  margin-top: auto;
}
.latest-document .download svg {
  width: 18px;
  height: 18px;
}
.latest-document .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.latest-document .cover-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.latest-document .cover-image img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.is-style-grey-bg {
  background: #faf9f6;
}

.row.bir-block {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
.row.bir-block .row-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/* -------------------------------------------
Endorsement Carousel
------------------------------------------- */
.testimonial-slider {
  width: 100%;
  position: relative;
}
.testimonial-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.testimonial-slider .slick-arrow:hover {
  cursor: pointer;
}
.testimonial-slider .slick-arrow:hover svg {
  fill: #fcc511;
}
.testimonial-slider .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #075295;
}
.testimonial-slider .slick-arrow.next {
  right: -20px;
}
.testimonial-slider .slick-arrow.previous {
  left: -20px;
}
.testimonial-slider .testimonial-wrapper {
  padding: 0 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .testimonial-slider .testimonial-wrapper {
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .testimonial-slider .testimonial-wrapper {
    flex-direction: column;
  }
}
.testimonial-slider .testimonial-logo {
  position: relative;
  min-width: 180px;
  min-height: 200px;
}
@media (max-width: 1024px) {
  .testimonial-slider .testimonial-logo {
    min-width: 140px;
    min-height: 180px;
  }
}
@media (max-width: 768px) {
  .testimonial-slider .testimonial-logo {
    min-width: 180px;
    min-height: 140px;
  }
}
.testimonial-slider .testimonial-logo img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonial-slider .testimonial-divider {
  border-right: 2px solid rgba(115, 118, 120, 0.5);
  align-self: stretch;
  margin: 2rem 5rem;
}
@media (max-width: 1024px) {
  .testimonial-slider .testimonial-divider {
    display: none;
  }
}
.testimonial-slider .testimonial-text {
  font-size: 1.8rem;
  color: #737678;
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .testimonial-slider .testimonial-text {
    padding-left: 4rem;
  }
}
@media (max-width: 768px) {
  .testimonial-slider .testimonial-text {
    padding-left: 0;
    text-align: center;
  }
}
.testimonial-slider .testimonial-text:before {
  display: none;
}
.testimonial-slider .testimonial-text > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.testimonial-slider .testimonial-text > :last-child {
  margin-bottom: 0 !important;
}

/* -------------------------------------------
Events Blocks
------------------------------------------- */
.events {
  width: 100%;
  border-top: 3px solid #fcc511;
}

.event {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem;
  border-bottom: 1px solid #e8e8e9;
}
@media (max-width: 768px) {
  .event {
    margin: 0;
    padding: 1.5rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.event img {
  width: auto;
  height: 8rem;
  margin-bottom: 1.5rem;
}
.event .event-title {
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .event .event-title {
    margin: 0 0 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.event .event-title span.meta {
  line-height: 1;
  width: 110px;
  font-size: 1.4rem;
  color: #112126;
  margin-right: 1rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .event .event-title span.meta {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.event .event-title span.meta em {
  font-style: normal;
}
.event .event-title span.title {
  font-size: 2rem;
  line-height: 1.35;
  margin: 0 0 0.4rem 0;
}
.event .event-links {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  padding-left: 2.5rem;
}
.event .event-links svg {
  position: absolute;
  left: 0;
  top: 3px;
}
@media (max-width: 768px) {
  .event .event-links svg {
    top: 1px;
  }
}
.event .event-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-decoration: none;
  padding-left: 1rem;
  line-height: 1;
  color: #075295;
  transition: all 0.2s ease-in;
  border-radius: 20px;
  margin-left: 0.75rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .event .event-links a {
    margin-right: 0.75rem;
  }
}
.event .event-links a:hover {
  text-decoration: underline;
  color: #075295;
}

.aim-rules {
  margin-bottom: 4rem;
  border-top: 3px solid #fcc511;
}
.aim-rules .aim-rule {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e8e9;
}
@media (min-width: 769px) {
  .aim-rules .aim-rule {
    flex-direction: row;
    align-items: center;
  }
}
.aim-rules .aim-rule * {
  margin: 0;
  font-size: 1.8rem;
}
.aim-rules .aim-rule > :last-child {
  margin: 0;
}
@media (min-width: 769px) {
  .aim-rules .rule {
    width: 45%;
    padding-left: 2rem;
  }
}
.aim-rules .title {
  color: #737678;
  margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .aim-rules .title {
    width: 55%;
    margin: 0 0 -1px 0;
    padding-right: 2rem;
  }
}

.advisors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.5rem;
}
@media (max-width: 1024px) {
  .advisors {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .advisors {
    grid-template-columns: repeat(1, 1fr);
  }
}
.advisors:first-child {
  margin-top: 0;
}
.advisors p {
  color: #112126;
  margin: 0;
  font-weight: 400;
}
.advisors .advisor {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: 0.23s all ease-in;
  border: 1px solid #b4b6b7;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0);
}
.advisors .advisor-title {
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: flex-start;
  font-size: 2rem;
  color: #112126;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  padding: 2rem 3.5rem;
  margin: 0;
  border-bottom: 2px solid #fcc511;
  min-height: 100px;
}
.advisors .advisor-logo {
  position: relative;
  padding: 3.5rem 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  mix-blend-mode: multiply;
}
.advisors .advisor-logo img {
  width: 80%;
  max-width: 190px;
}
.advisors .advisor-details {
  padding: 2rem 3.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.advisors .url-wrap {
  margin-top: auto;
  padding-top: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.news-wrap {
  margin-top: -6.5rem;
}
.news-wrap .filters-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  padding: 3rem 0;
}
@media (max-width: 1024px) {
  .news-wrap .filters-wrap {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.news-wrap .filters-wrap:before, .news-wrap .filters-wrap:after {
  content: "";
  position: absolute;
  width: 100vw;
  top: 0;
  height: 100%;
  background: whitesmoke;
  z-index: -1;
}
.news-wrap .filters-wrap:before {
  right: 0;
}
.news-wrap .filters-wrap:after {
  left: 0;
}
.news-wrap select {
  width: 100%;
  border: 0;
  background-color: white;
  padding: 1rem;
  color: #112126;
  padding-right: 3rem;
  border: 1px solid #737678;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  background-image: url("./img/custom/down.svg");
  background-size: 14px;
  background-position: right 7px top 50%;
  background-repeat: no-repeat;
  border-radius: 3px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .news-wrap select {
    background: none;
    padding-right: 1.5rem;
  }
}
.news-wrap button.alm-load-more-btn {
  margin: 0;
  min-width: 0;
}
.news-wrap button.alm-load-more-btn:before {
  content: "";
  display: none;
}
.news-wrap button.alm-load-more-btn.done {
  color: #112126;
  background: #fcc511;
}
.news-wrap button.alm-load-more-btn.loading {
  padding-left: 2.5rem;
  background: #fcc511;
  color: #fff;
}
.news-wrap button.alm-load-more-btn.loading::before {
  content: "";
  display: none;
}
.news-wrap .category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  white-space: nowrap;
  max-width: 400px;
}
@media (max-width: 1024px) {
  .news-wrap .category {
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
    margin-bottom: 2rem;
  }
}
@media (max-width: 500px) {
  .news-wrap .category {
    grid-gap: 2rem 0;
  }
}
.news-wrap .btn.active, .news-wrap button.active.alm-load-more-btn {
  background: #112126;
  color: #fcc511;
}
.news-wrap .btn.filter-news-posts, .news-wrap button.filter-news-posts.alm-load-more-btn {
  min-width: 0;
  margin-right: 2rem;
}
@media (max-width: 1024px) {
  .news-wrap .btn.filter-news-posts, .news-wrap button.filter-news-posts.alm-load-more-btn {
    min-width: 0;
  }
}
.news-wrap .btn.filter-nav-reset, .news-wrap button.filter-nav-reset.alm-load-more-btn {
  background: none;
  margin-top: 2.5rem;
  margin-left: 1.5rem;
  padding: 1rem;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border: 0;
}
@media (max-width: 1024px) {
  .news-wrap .btn.filter-nav-reset, .news-wrap button.filter-nav-reset.alm-load-more-btn {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .news-wrap .btn.filter-nav-reset, .news-wrap button.filter-nav-reset.alm-load-more-btn {
    justify-content: flex-start;
    width: 100%;
  }
}
.news-wrap .btn.filter-nav-reset:hover, .news-wrap button.filter-nav-reset.alm-load-more-btn:hover, .news-wrap .btn.filter-nav-reset:active, .news-wrap button.filter-nav-reset.alm-load-more-btn:active, .news-wrap .btn.filter-nav-reset:focus, .news-wrap button.filter-nav-reset.alm-load-more-btn:focus {
  background: none;
  color: #075295;
  border: 0;
}
.news-wrap .btn.filter-nav-reset:hover svg, .news-wrap button.filter-nav-reset.alm-load-more-btn:hover svg, .news-wrap .btn.filter-nav-reset:active svg, .news-wrap button.filter-nav-reset.alm-load-more-btn:active svg, .news-wrap .btn.filter-nav-reset:focus svg, .news-wrap button.filter-nav-reset.alm-load-more-btn:focus svg {
  fill: #075295;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.news-wrap .btn.filter-nav-reset svg, .news-wrap button.filter-nav-reset.alm-load-more-btn svg {
  fill: #112126;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.news-wrap .date,
.news-wrap .keyword {
  min-width: 160px;
  margin-right: 2rem;
}
@media (max-width: 1024px) {
  .news-wrap .date,
  .news-wrap .keyword {
    flex: 1;
  }
}
.news-wrap .label {
  display: block;
  text-transform: uppercase;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  width: 100%;
  color: #737678;
  font-weight: 500;
}
.news-wrap .separator {
  flex: 1;
  background-color: #fcc511;
  min-height: 2px;
  margin-right: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) {
  .news-wrap .separator {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .news-wrap .keyword {
    margin-top: 2rem;
  }
}
.news-wrap .keyword form {
  position: relative;
}
.news-wrap .keyword form input {
  border: 0;
  background-color: white;
  padding: 1rem;
  color: #112126;
  padding-right: 3rem;
  border: 1px solid #737678;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  border-radius: 3px;
  width: 100%;
}
.news-wrap .keyword form button {
  position: absolute;
  right: 10px;
  top: 0;
  cursor: pointer !important;
  border: 0;
  height: 100%;
  background-color: transparent;
  color: #112126;
}
.news-wrap .keyword form i {
  font-size: 1.6rem;
  color: #fcc511;
}

.pie-counter {
  text-align: center;
}
.pie-counter .pie-counter-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 50px;
  text-transform: uppercase;
  color: #112126;
  line-height: 1.1;
  margin: 0 0 2rem 0;
}
.pie-counter .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.pie-counter .number-container {
  position: relative;
  display: flex;
  align-items: center;
}
.pie-counter .number-container:after {
  content: "";
  background: #fff;
  width: 90px;
  height: 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
}
.pie-counter .number-suffix,
.pie-counter .number {
  z-index: 2;
  position: relative;
  color: #112126;
  font-size: 2.2rem;
  font-weight: 600;
}
.pie-counter .progress-circle {
  width: 150px;
  height: 150px;
  margin: 0;
}

h1 {
  color: #63b8ff;
  text-align: center;
}

.progress-circle {
  position: relative;
  display: inline-block;
  margin: 1rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #1b343c;
}

.progress-circle:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: colorload 100ms;
          animation: colorload 100ms;
}

.progress-circle.progress-0:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(90deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-1:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(93.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-2:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(97.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-3:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(100.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-4:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(104.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-5:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(108deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-6:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(111.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-7:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(115.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-8:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(118.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-9:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(122.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-10:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(126deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-11:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(129.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-12:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(133.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-13:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(136.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-14:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(140.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-15:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(129.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-16:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(133.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-17:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(136.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-18:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(140.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-19:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(144deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-20:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(151.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-21:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(158.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-22:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(161.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-23:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(165.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-24:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(169.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-25:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(180deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-26:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(183.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-27:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(187.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-28:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(190.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-29:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(194.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-30:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(198deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-31:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(201.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-32:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(205.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-33:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(208.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-34:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(212.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-35:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(216deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-40:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(234deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-36:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(219.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-37:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(223.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-38:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(226.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-39:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(230.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-41:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(237.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-42:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(241.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-43:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(244.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-44:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(248.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-45:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(252deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-46:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(255.6deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-47:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(259.2deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-48:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(262.8deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-49:after {
  background-image: linear-gradient(90deg, #1b343c 50%, transparent 50%, transparent), linear-gradient(266.4deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-50:after {
  background-image: linear-gradient(-90deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-51:after {
  background-image: linear-gradient(-86.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-52:after {
  background-image: linear-gradient(-82.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-53:after {
  background-image: linear-gradient(-79.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-54:after {
  background-image: linear-gradient(-75.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-55:after {
  background-image: linear-gradient(-72deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-56:after {
  background-image: linear-gradient(-68.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-57:after {
  background-image: linear-gradient(-64.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-58:after {
  background-image: linear-gradient(-61.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-59:after {
  background-image: linear-gradient(-57.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-60:after {
  background-image: linear-gradient(-54deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-61:after {
  background-image: linear-gradient(-50.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-62:after {
  background-image: linear-gradient(-46.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-63:after {
  background-image: linear-gradient(-43.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-64:after {
  background-image: linear-gradient(-39.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-65:after {
  background-image: linear-gradient(-36deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-66:after {
  background-image: linear-gradient(-32.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-67:after {
  background-image: linear-gradient(-28.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-68:after {
  background-image: linear-gradient(-25.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-69:after {
  background-image: linear-gradient(-21.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-70:after {
  background-image: linear-gradient(-18deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-71:after {
  background-image: linear-gradient(-14.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-72:after {
  background-image: linear-gradient(-10.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-73:after {
  background-image: linear-gradient(-7.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-74:after {
  background-image: linear-gradient(-3.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-75:after {
  background-image: linear-gradient(0deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-76:after {
  background-image: linear-gradient(3.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-77:after {
  background-image: linear-gradient(7.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-78:after {
  background-image: linear-gradient(10.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-79:after {
  background-image: linear-gradient(14.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-80:after {
  background-image: linear-gradient(18deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-81:after {
  background-image: linear-gradient(21.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-82:after {
  background-image: linear-gradient(25.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-83:after {
  background-image: linear-gradient(28.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-84:after {
  background-image: linear-gradient(32.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-85:after {
  background-image: linear-gradient(36deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-86:after {
  background-image: linear-gradient(39.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-87:after {
  background-image: linear-gradient(43.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-88:after {
  background-image: linear-gradient(46.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-89:after {
  background-image: linear-gradient(50.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-90:after {
  background-image: linear-gradient(54deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-91:after {
  background-image: linear-gradient(57.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-92:after {
  background-image: linear-gradient(61.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-93:after {
  background-image: linear-gradient(64.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-94:after {
  background-image: linear-gradient(68.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-95:after {
  background-image: linear-gradient(72deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-96:after {
  background-image: linear-gradient(75.6deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-97:after {
  background-image: linear-gradient(79.2deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-98:after {
  background-image: linear-gradient(82.8deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-99:after {
  background-image: linear-gradient(86.4deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

.progress-circle.progress-100:after {
  background-image: linear-gradient(90deg, #ffc710 50%, transparent 50%, transparent), linear-gradient(270deg, #ffc710 50%, #1b343c 50%, #1b343c);
}

@-webkit-keyframes colorload {
  0% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.callout-text .callout-title {
  position: relative;
  color: #112126;
  font-weight: 400;
  font-size: 2.6rem;
  margin: 0 0 2rem;
  text-transform: none;
  padding-left: 2.5rem;
  text-align: left;
}
.callout-text .callout-title::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #fcc511;
}
.callout-text .callout-content {
  padding-left: 2.5rem;
}

.awards-list .award {
  display: flex;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .awards-list .award {
    padding: 2rem 2rem 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #b4b6b7;
  }
}
.awards-list .award:last-child {
  margin-bottom: 0;
}
.awards-list .award-text,
.awards-list .award-image,
.awards-list .award-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 230px;
  padding: 0.75rem 0;
  border-right: 3px solid #fcc511;
}
.awards-list .award-text img,
.awards-list .award-image img,
.awards-list .award-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 95px;
  width: 80%;
}
@media (max-width: 768px) {
  .awards-list .award-text img,
  .awards-list .award-image img,
  .awards-list .award-logo img {
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .awards-list .award-text,
  .awards-list .award-image,
  .awards-list .award-logo {
    flex: 1 !important;
    width: auto !important;
  }
}
@media (max-width: 768px) {
  .awards-list .award-text,
  .awards-list .award-image,
  .awards-list .award-logo {
    padding: 0;
    margin-bottom: 3rem;
    border: none;
  }
  .awards-list .award-text:last-child,
  .awards-list .award-image:last-child,
  .awards-list .award-logo:last-child {
    margin-bottom: 0;
  }
}
.awards-list .award-image {
  border: none;
  justify-content: center;
}
.awards-list .award-text {
  border: none;
  width: auto;
  flex: 1;
  font-size: 2.2rem;
  color: #075295;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .awards-list .award-text {
    text-align: center;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.awards-grid .award-entry {
  position: relative;
}
.awards-grid .award-entry-image {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  border: 1px solid #b4b6b7;
}
.awards-grid .award-entry-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 75%;
  width: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-link {
  max-width: 300px;
}
.logo-link .company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  border: 1px solid #b4b6b7;
  margin-bottom: 1rem;
}
.logo-link .company-logo img {
  height: 75%;
  width: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-link .btn, .logo-link .news-wrap button.alm-load-more-btn, .news-wrap .logo-link button.alm-load-more-btn {
  width: 100%;
}
.logo-link .btn svg, .logo-link .news-wrap button.alm-load-more-btn svg, .news-wrap .logo-link button.alm-load-more-btn svg {
  width: 15px;
  height: 15px;
}

.investment-case {
  display: flex;
  flex-direction: column;
}
.investment-case.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media (max-width: 500px) {
  .investment-case.grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.investment-case.grid .case {
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(0, 43, 38, 0.1);
  padding: 3rem;
  margin: 0;
  border-radius: 5px;
}
.investment-case .case {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 500px) {
  .investment-case .case {
    align-items: flex-start;
  }
}
.investment-case .case:last-child {
  margin-bottom: 0;
}
.investment-case .case .case-icon {
  position: relative;
  flex: 0 0 17.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5rem;
}
@media (max-width: 500px) {
  .investment-case .case .case-icon {
    flex: 0 0 25%;
    margin-right: 2.5rem;
  }
}
.investment-case .case .case-icon img {
  margin: 0 auto;
}
.investment-case .case .case-content {
  flex-grow: 1;
}
.investment-case .case .case-content > :last-child {
  margin: 0;
}
.investment-case.block .case {
  flex-wrap: wrap;
  justify-content: center;
}
.investment-case.block .case > * {
  display: block;
  flex: none;
}
.investment-case.block .case .case-icon {
  width: 14rem;
  margin: 0 auto 1.2ch auto;
}
.investment-case.block .case .case-content {
  width: 100%;
  text-align: center;
}

.home-reasons-to-invest + .home-reasons-to-invest {
  margin-bottom: 6rem;
}

@media (min-width: 500px) and (max-width: 780px) {
  .home-reasons-to-invest.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: calc(50% - 2rem) !important;
    flex-grow: 0;
  }
}
.single-document {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 350px;
  padding: 3.5rem;
}
.single-document.shallow {
  min-height: 250px;
}
@media (max-width: 1024px) {
  .single-document.shallow {
    min-height: 230px;
  }
}
.single-document.height-300 {
  height: 300px;
  min-height: unset;
  max-height: unset;
}
.single-document .document,
.single-document .date,
.single-document .download {
  position: relative;
  z-index: 2;
}
.single-document .document {
  color: #fff;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.33;
}
.single-document .date {
  margin: 0 0 1rem 0;
  color: #fff;
  font-size: 2.2rem;
}
.single-document .download {
  margin-top: auto;
}
.single-document .download svg {
  width: 18px;
  height: 18px;
}
.single-document .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.single-document .cover-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.single-document .cover-image img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.large-quote {
  display: flex;
  padding: 0 0 0 275px !important;
}
@media (max-width: 1024px) {
  .large-quote {
    padding: 0 0 0 230px !important;
  }
}
@media screen and (max-width: 600px) {
  .large-quote {
    flex-direction: column;
    padding: 0 !important;
  }
}
.large-quote:before {
  display: none;
}
.large-quote.no-image {
  padding: 0 0 0 80px !important;
}
@media screen and (max-width: 600px) {
  .large-quote.no-image {
    padding: 0 !important;
  }
}
.large-quote.no-image .quote-icon {
  left: 0;
}
.large-quote .quote-image {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 175px;
  height: 175px;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #e8e8e9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .large-quote .quote-image {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 600px) {
  .large-quote .quote-image {
    position: relative;
    margin: 0 auto 70px;
    -webkit-transform: translateX(-25%) rotate(45deg);
            transform: translateX(-25%) rotate(45deg);
  }
}
.large-quote .quote-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  max-width: none;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1024px) {
  .large-quote .quote-image img {
    width: 200px;
    height: 200px;
  }
}
.large-quote .quote-icon {
  position: absolute;
  top: 0;
  left: 200px;
  width: 55px;
  height: 55px;
}
@media (max-width: 1024px) {
  .large-quote .quote-icon {
    left: 160px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 600px) {
  .large-quote .quote-icon {
    display: none;
  }
}
.large-quote .quote-icon svg {
  width: 100%;
  height: 100%;
  fill: #e8e8e9;
}
.large-quote .quote-content:last-child {
  margin-bottom: 0;
}
.large-quote .quote-content p {
  margin: 0 0 2rem;
  color: #3b80b3;
  font-size: 1.8rem;
}
.large-quote .quote-cite {
  font-size: 1.8rem;
  font-style: normal;
}
.large-quote .quote-cite span {
  margin-top: 0.5rem;
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #737678;
}

.annual-archive ul.tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.annual-archive ul.tabs li {
  list-style: none;
  margin: 0 10px 10px 0;
}
.annual-archive ul.tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem;
  border-radius: 8px 8px 0 0;
  color: #737678;
  background: linear-gradient(to bottom right, #cbcccb 0%, #e4e4e4 100%);
}
@media screen and (max-width: 1200px) {
  .annual-archive ul.tabs a {
    border-radius: 8px;
  }
}
.annual-archive ul.tabs a:hover {
  text-decoration: none;
}
.annual-archive ul.tabs a.active {
  color: #fff;
  background: linear-gradient(to bottom right, #112126 0%, #075295 100%);
}
.annual-archive .tab-panel-headers {
  display: flex;
  align-items: center;
  border-bottom: 3px solid #fcc511;
  padding: 1.2rem 1.5rem;
}
.annual-archive .tab-panel-headers p {
  font-size: 1.8rem;
  color: #112126;
  margin: 0;
}
.annual-archive .tab-panel-headers .title {
  flex-grow: 1;
}
.annual-archive .tab-panel-headers .size {
  text-align: center;
  min-width: 120px;
  margin-right: 120px;
}
@media (max-width: 500px) {
  .annual-archive .tab-panel-headers .size {
    min-width: 50px;
  }
}
.annual-archive .file {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e8e8e9;
}
.annual-archive .file:hover {
  color: #075295;
  text-decoration: underline;
}
.annual-archive .file .title {
  flex-grow: 1;
}
.annual-archive .file .icon,
.annual-archive .file .size {
  text-align: center;
  min-width: 120px;
}
@media (max-width: 500px) {
  .annual-archive .file .icon,
  .annual-archive .file .size {
    min-width: 50px;
  }
}
.annual-archive .file svg {
  width: 20px;
  height: 20px;
  fill: #075295;
}

.what-we-do {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 40px;
}
@media screen and (max-width: 1200px) {
  .what-we-do {
    grid-template-columns: repeat(4, 1fr);
    width: 80% !important;
    margin: 0 auto;
  }
}
@media screen and (max-width: 960px) {
  .what-we-do {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .what-we-do {
    grid-gap: 15px;
    width: 100% !important;
  }
}
.what-we-do .service-wrapper {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 1200px) {
  .what-we-do .service-wrapper:nth-child(5n+1) {
    grid-column: 1/3;
  }
  .what-we-do .service-wrapper:nth-child(5n+2) {
    grid-column: 3/5;
  }
  .what-we-do .service-wrapper:nth-child(5n+3) {
    grid-column: 5/7;
  }
  .what-we-do .service-wrapper:nth-child(5n+4) {
    grid-column: 2/4;
  }
  .what-we-do .service-wrapper:nth-child(5n+5) {
    grid-column: 4/6;
  }
  .what-we-do .service-wrapper:nth-child(1n+4) {
    margin-top: -50%;
  }
}
@media screen and (max-width: 1200px) {
  .what-we-do .service-wrapper:nth-child(3n+1) {
    grid-column: 1/3;
  }
  .what-we-do .service-wrapper:nth-child(3n+2) {
    grid-column: 3/5;
  }
  .what-we-do .service-wrapper:nth-child(3n+3) {
    grid-column: 2/4;
  }
  .what-we-do .service-wrapper:nth-child(1n+3) {
    margin-top: -50%;
  }
}
@media (hover: hover) {
  .what-we-do .service-wrapper:hover {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  .what-we-do .service-wrapper:hover:after {
    background: #fcc511;
  }
  .what-we-do .service-wrapper:hover:before {
    opacity: 0.2;
  }
  .what-we-do .service-wrapper:hover .service-title {
    color: #075295;
  }
  .what-we-do .service-wrapper:hover .service-cross-bg {
    background: #075295;
  }
  .what-we-do .service-wrapper:hover .service-cross {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.what-we-do .service-wrapper:before, .what-we-do .service-wrapper:after {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75%;
  height: 75%;
  border-radius: 25px;
  background: #075295;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 960px) {
  .what-we-do .service-wrapper:before, .what-we-do .service-wrapper:after {
    border-radius: 20px;
  }
}
.what-we-do .service-wrapper:after {
  box-shadow: 1rem 0 3rem rgba(2, 28, 52, 0.4);
}
.what-we-do .service-wrapper:before {
  z-index: 0;
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.what-we-do .service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .what-we-do .service-icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .what-we-do .service-icon {
    width: 30px;
    height: 30px;
  }
}
.what-we-do .service-link {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  height: 60%;
  width: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.what-we-do .service-title {
  text-transform: uppercase;
  max-width: 170px;
  color: #fcc511;
  margin: 1.5rem 0 0 0;
  font-size: 1.4rem;
  line-height: 1.25;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 600px) {
  .what-we-do .service-title {
    font-size: 1.2rem;
    margin: 1.5rem 0 1.5rem 0;
  }
}
.what-we-do .service-cross-bg {
  box-sizing: content-box;
  padding: 4px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  bottom: -22.5%;
  width: 20px;
  height: 20px;
  background: #042a4c;
  border-radius: 5px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 960px) {
  .what-we-do .service-cross-bg {
    bottom: -20%;
  }
}
@media screen and (max-width: 600px) {
  .what-we-do .service-cross-bg {
    background: transparent;
  }
}
.what-we-do .service-cross-bg svg {
  width: 100%;
  height: 100%;
}
.what-we-do .service-cross-bg .service-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  transition: all 0.2s ease-in;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 1024px) {
  .related-services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .related-services {
    grid-template-columns: repeat(1, 1fr);
  }
}
.related-services .service {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  font-size: 1.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #737678;
  border-radius: 5px;
  background: #fff;
  border: 1px solid transparent;
  box-shadow: 0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in;
}
.related-services .service:hover {
  color: #fff;
  background: #075295;
  border: 1px solid #3b80b3;
}
.related-services svg {
  margin-left: 1.5rem;
  width: 13px;
  height: 13px;
  fill: #fcc511;
  transition: all 0.2s ease-in;
}

.case-study-repeater > *:not(:last-child) {
  margin-bottom: 3rem;
}
.case-study-repeater > :last-child {
  margin-bottom: 0 !important;
}
.case-study-repeater .case-study-block {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .case-study-repeater .case-study-block {
    flex-direction: column;
  }
}
.case-study-repeater .case-study-divider {
  border-right: 3px solid #3b80b3;
  align-self: stretch;
  margin: 0 3rem;
}
@media (max-width: 768px) {
  .case-study-repeater .case-study-divider {
    margin: 0 0 2rem;
    height: 1px;
    width: 100%;
    border-bottom: 1px solid #3b80b3;
  }
}
.case-study-repeater .case-study-title {
  flex: 1;
  max-width: 220px;
  font-size: 2.2rem;
  color: #3b80b3;
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}
@media (max-width: 768px) {
  .case-study-repeater .case-study-title {
    position: relative;
    max-width: none;
    top: 0;
  }
}
.case-study-repeater .case-study-content {
  flex: 1;
}

.resources-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.5rem;
}
@media (max-width: 1024px) {
  .resources-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .resources-posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
.resources-posts .resource-post {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.15);
  padding: 2rem;
  transition: all 0.2s ease-in;
}
.resources-posts .resource-post:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.resources-posts .resource-post:hover .title {
  color: #075295;
  text-decoration: underline;
}
.resources-posts .resource-post:hover .btn, .resources-posts .resource-post:hover .news-wrap button.alm-load-more-btn, .news-wrap .resources-posts .resource-post:hover button.alm-load-more-btn {
  color: #075295;
  background: none;
  border: 0;
}
.resources-posts .resource-post:hover .btn svg, .resources-posts .resource-post:hover .news-wrap button.alm-load-more-btn svg, .news-wrap .resources-posts .resource-post:hover button.alm-load-more-btn svg {
  fill: #075295;
}
.resources-posts .resource-post:hover .btn:after, .resources-posts .resource-post:hover .news-wrap button.alm-load-more-btn:after, .news-wrap .resources-posts .resource-post:hover button.alm-load-more-btn:after {
  background: #075295;
}
.resources-posts .thumb {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  margin: -2rem -2rem 3rem;
  transition: all 0.2s ease-in;
}
.resources-posts .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.resources-posts .title {
  font-size: 1.8rem;
  margin: 0 0 2rem;
  line-height: 1.4;
  font-weight: 500;
}
.resources-posts .description {
  font-size: 1.6rem;
  line-height: 1.4;
}
.resources-posts .btn:hover:after, .resources-posts .news-wrap button.alm-load-more-btn:hover:after, .news-wrap .resources-posts button.alm-load-more-btn:hover:after {
  background: none;
}
.resources-posts .btn.pdf svg, .resources-posts .news-wrap button.pdf.alm-load-more-btn svg, .news-wrap .resources-posts button.pdf.alm-load-more-btn svg {
  width: 18px;
  height: 18px;
}

.shearwater-timeline .year-entry:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .shearwater-timeline .year-entry:nth-child(even) {
    flex-direction: column;
  }
}
.shearwater-timeline .year-entry:nth-child(even) .year-line {
  right: auto;
  left: -52px;
}
.shearwater-timeline .year-entry:nth-child(even) .event:first-child:before {
  left: auto;
  right: 0;
}
.shearwater-timeline .year-entry:nth-child(even) .event-content {
  text-align: right;
  width: 100%;
}
.shearwater-timeline .year-entry:nth-child(even) .event.has-image .event-content {
  padding-right: 0;
  padding-left: 90px;
}
.shearwater-timeline .year-entry:nth-child(even) .event-image {
  left: 0;
  right: auto;
}
.shearwater-timeline .year-entry {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .shearwater-timeline .year-entry {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
  }
}
.shearwater-timeline .year-entry::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 2px;
  height: calc(100% - 75px);
  left: 50%;
  bottom: -25px;
  background: #eaf4fe;
}
@media (max-width: 1024px) {
  .shearwater-timeline .year-entry::before {
    height: 100%;
  }
}
.shearwater-timeline .year-entry:last-child::before {
  display: none;
}
@media (max-width: 1024px) {
  .shearwater-timeline .year-entry:last-child::before {
    display: block;
    top: 0;
    bottom: auto;
    height: 80%;
  }
}
.shearwater-timeline .year {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  height: 0;
  padding-bottom: 75px;
  margin: 0 50px;
}
.shearwater-timeline .year:after, .shearwater-timeline .year:before {
  z-index: -1;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #075295;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.2s ease-in;
}
.shearwater-timeline .year:before {
  z-index: 0;
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.shearwater-timeline .year-text {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fcc511;
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  line-height: 0.75;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.shearwater-timeline .year-line {
  position: absolute;
  right: -52px;
  top: 50%;
  height: 1px;
  width: 30px;
  background: #3b80b3;
  z-index: -1;
}
@media (max-width: 1024px) {
  .shearwater-timeline .year-line {
    display: none;
  }
}
.shearwater-timeline .year-events {
  width: calc(50% - 87.5px);
}
@media (max-width: 1024px) {
  .shearwater-timeline .year-events {
    margin-top: 4rem;
    width: 100%;
  }
}
.shearwater-timeline .event {
  z-index: 2;
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem;
  background: #fff;
  border: 1px solid #e8e8e9;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.shearwater-timeline .event:not(:last-child) {
  margin-bottom: 2rem;
}
.shearwater-timeline .event:first-child:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  height: 45px;
  width: 3px;
  background: #3b80b3;
}
.shearwater-timeline .event h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.shearwater-timeline .event p {
  line-height: 1.4;
}
.shearwater-timeline .event strong,
.shearwater-timeline .event b {
  font-weight: 500;
}
.shearwater-timeline .event.has-image .event-content {
  padding-right: 90px;
}
.shearwater-timeline .event-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.shearwater-timeline .event-image figcaption {
  color: #fff;
  font-size: 1.2rem;
}
.shearwater-timeline .event-image img {
  width: 85%;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}
.shearwater-timeline .event-image.yellow {
  background: #fcc511;
}
.shearwater-timeline .event-image.blue {
  background: #075295;
}
.shearwater-timeline .event-image.teal {
  background: #19b2ad;
}
.shearwater-timeline .march-2021 {
  margin: 2rem -2rem -2rem;
  padding: 2rem;
  background: #f6faff;
}
.shearwater-timeline .march-2021 img {
  display: block;
  width: 200px;
  margin-bottom: 1rem;
}
.shearwater-timeline .march-2021 > :last-child {
  margin-bottom: 0;
}

.vertical-counter-repeater .number-wrapper {
  margin: 0 auto 4rem;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.vertical-counter-repeater .number-wrapper:last-child {
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .vertical-counter-repeater .number-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 0 auto 2rem;
  }
}
.vertical-counter-repeater .number-container {
  white-space: nowrap;
  margin-right: 2rem;
  min-width: 210px;
  padding-right: 2rem;
  border-right: 1px solid #fcc511;
}
@media (max-width: 1024px) {
  .vertical-counter-repeater .number-container {
    border-right: 0;
    min-width: 0;
  }
}
.vertical-counter-repeater .suffix,
.vertical-counter-repeater .prefix,
.vertical-counter-repeater .number {
  font-size: 5rem;
  line-height: 1;
  color: #fff;
  font-weight: 200;
}
@media screen and (max-width: 1200px) {
  .vertical-counter-repeater .suffix,
  .vertical-counter-repeater .prefix,
  .vertical-counter-repeater .number {
    font-size: 4rem;
  }
}
.vertical-counter-repeater p.number-title {
  font-size: 2rem;
  margin: 0;
  line-height: 1.33;
  text-transform: uppercase;
  color: #fcc511;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .vertical-counter-repeater p.number-title {
    font-size: 1.6rem;
    text-align: center;
  }
}

.business-highlights .highlight {
  display: flex;
  margin-bottom: 4rem;
}
.business-highlights .highlight:last-child {
  margin-bottom: 0;
}
.business-highlights .highlight-content {
  padding-left: 2.5rem;
}
.business-highlights .highlight-content > :last-child {
  margin-bottom: 0;
}
.business-highlights .highlight-content > :not(:last-child) {
  margin: 0 0 1.5rem;
}
.business-highlights .highlight-content ul {
  font-size: 1.6rem;
  color: #737678;
}
.business-highlights .highlight-content ul li {
  list-style: circle;
}
.business-highlights .highlight-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  height: 6.5rem;
  color: #fcc511;
  font-weight: bold;
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.business-highlights .highlight-number:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 6.5rem;
  height: 6.5rem;
  background-image: url("img/custom/ol-background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 2.8rem;
  font-weight: 500;
}
.business-highlights.align-center .highlight {
  align-items: center;
}
.business-highlights.align-center .highlight-number {
  margin-bottom: 0;
}

.un-sdg-list .un-sdg-list-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .un-sdg-list .un-sdg-list-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 500px) {
  .un-sdg-list .un-sdg-list-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.un-sdg-list .un-sdg-list-wrapper.active-item .sdg-member:not(.active) {
  opacity: 0.5;
}
.un-sdg-list .sdg-member {
  position: relative;
  transition: all 0.2s ease;
}
.un-sdg-list .sdg-member.active .sdg-cross {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.un-sdg-list .sdg-member.active .sdg-icon {
  background: #075295;
}
.un-sdg-list .sdg-image {
  transition: all 0.2s ease;
  border: 1px solid #a7a9aa;
}
.un-sdg-list .sdg-image:hover {
  cursor: pointer;
  border-color: #075295;
}
.un-sdg-list .sdg-image .image {
  position: relative;
  aspect-ratio: 1/1;
}
.un-sdg-list .sdg-image .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.un-sdg-list .sdg-icon {
  position: absolute;
  top: -9px;
  right: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #a7a9aa;
  border-radius: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  transition: all 0.2s ease-in;
}
.un-sdg-list .sdg-icon svg {
  width: 100%;
  height: 100%;
}
.un-sdg-list .sdg-icon .sdg-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  transition: all 0.2s ease-in;
}
.un-sdg-list .sdg-text {
  position: relative;
  z-index: 2;
  width: calc(500% + 12rem);
  display: none;
  pointer-events: none;
  background: #fff;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .un-sdg-list .sdg-text {
    width: calc(400% + 9rem);
  }
}
@media (max-width: 500px) {
  .un-sdg-list .sdg-text {
    width: calc(200% + 3rem);
  }
}
.un-sdg-list .sdg-text .text h3 {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1rem;
}
.un-sdg-list .sdg-text .text p {
  font-size: 1.6rem;
  margin: 0;
}

.callout-box {
  display: flex;
  flex-direction: column;
  padding: 3rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 2rem rgba(0, 43, 38, 0.1);
}
.callout-box.mind {
  background: #ededed;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: 0 1rem 3rem -1.5rem rgba(0, 43, 38, 0.2);
}
.callout-box.mind .callout-title {
  color: #006b62;
}
.callout-box.mind .separator {
  border-color: #006b62;
}
.callout-box.mind .callout-content * {
  color: #002b26 !important;
}
.callout-box .separator {
  border-bottom: 3px solid #e8e8e9;
  margin-bottom: 2rem;
}
.callout-box .callout-title {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  color: #19b2ad;
  margin-bottom: 2rem;
}
.callout-box .callout-content > :last-child {
  margin: 0;
}

.bir-block.post .post {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in;
}
.bir-block.post .post:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.bir-block.post .post:hover .thumb {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
  border: 1px solid #075295;
}
.bir-block.post .post:hover .title {
  color: #075295;
  text-decoration: underline;
}
.bir-block.post .thumb {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 66.6666666667%;
  margin-bottom: 3rem;
  border: 1px solid #b4b6b7;
  transition: all 0.2s ease-in;
}
.bir-block.post .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bir-block.post .title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #112126;
  margin: 0;
  transition: all 0.2s ease-in;
  line-height: 1.4;
}
body.home .bir-block.post .title {
  font-size: 2.6rem;
}
.bir-block.post .meta {
  font-size: 1.6rem;
  color: #075295;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.bir-block.post .external-link {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 1rem;
  top: 0;
  right: 0;
  background: #fcc511;
  transition: all 0.2s ease-in;
  pointer-events: none;
}
.bir-block.post .external-link span {
  position: relative;
  top: 1px;
  text-transform: uppercase;
  color: #112126;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}
.bir-block.post .external-link svg {
  width: 100%;
  height: 100%;
  fill: #112126;
  stroke: none;
}
.bir-block.post .external-link .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  width: 15px;
  height: 15px;
}

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

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

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

@media only screen and (max-width: 600px) {
  .wp-block-column {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .wp-block-column:last-child {
    margin-bottom: 0;
  }
}

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