/* -------------------------------------------
***** Prepend Imports *****
------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900&display=swap");
@import url("https://use.typekit.net/tix7wnl.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
* {
  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;
}

.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, $white);
* 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);
  }
  to {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.text-center,
.center {
  text-align: center;
}

.hidden,
.hide {
  display: none;
}

.offsetborder img {
  outline: 2px solid white;
  outline-offset: -5px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

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

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

.wrap {
  max-width: 1160px;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}

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

.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

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

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

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

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

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

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

.pt1 {
  padding-top: 1rem !important;
}

.pb1 {
  padding-bottom: 1rem !important;
}

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

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

.pt2 {
  padding-top: 2rem !important;
}

.pb2 {
  padding-bottom: 2rem !important;
}

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

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

.pt3 {
  padding-top: 3rem !important;
}

.pb3 {
  padding-bottom: 3rem !important;
}

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

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

.pt4 {
  padding-top: 4rem !important;
}

.pb4 {
  padding-bottom: 4rem !important;
}

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

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

.pt5 {
  padding-top: 5rem !important;
}

.pb5 {
  padding-bottom: 5rem !important;
}

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

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

.pt6 {
  padding-top: 6rem !important;
}

.pb6 {
  padding-bottom: 6rem !important;
}

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

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

.pt7 {
  padding-top: 7rem !important;
}

.pb7 {
  padding-bottom: 7rem !important;
}

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

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

.pt8 {
  padding-top: 8rem !important;
}

.pb8 {
  padding-bottom: 8rem !important;
}

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

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

.pt9 {
  padding-top: 9rem !important;
}

.pb9 {
  padding-bottom: 9rem !important;
}

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

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

.pt10 {
  padding-top: 10rem !important;
}

.pb10 {
  padding-bottom: 10rem !important;
}

.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: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.dark-blue {
  color: #00344d !important;
}

.medium-blue {
  color: #0072bc !important;
}

.light-blue {
  color: #7ed3f7 !important;
}

:root a {
  display: inline-block;
  color: #0072bc;
  font-weight: 500;
}
:root a,
:root a:link,
:root a:visited {
  text-decoration: none;
}
:root a:hover,
:root a:active,
:root a:focus {
  color: rgb(0, 83.0744680851, 137);
}
:root strong {
  font-weight: 600;
}
:root em {
  font-style: italic;
}
:root h1[class*=has-kb-palette-],
:root h1,
:root h2[class*=has-kb-palette-],
:root h2,
:root h3,
:root h3[class*=has-kb-palette-],
:root h4,
:root h4[class*=has-kb-palette-],
:root h5,
:root h6 {
  margin: 0 0 30px 0;
  padding: 0;
  font-family: "campton-light", sans-serif;
  font-weight: normal;
  line-height: 1.2;
  color: #00344d;
}
:root h2 {
  font-size: 3.8rem;
}
.home :root h2 {
  font-weight: bold;
}
:root h3 {
  font-size: 2.8rem;
}
:root h4 {
  font-size: 2.4rem;
}
:root h5 {
  font-size: 2rem;
}
:root h6 {
  font-size: 1.8rem;
}
:root p {
  margin: 0 0 30px 0;
  padding: 0;
}
:root ul,
:root ol {
  padding: 0 0 0 25px;
  margin: 0 0 30px 0;
}
:root ul li,
:root ol li {
  list-style: disc;
  margin-bottom: 10px;
}
:root img.alignright {
  margin: 0 0 0 20px;
  width: 50%;
  height: auto;
  float: right;
}
:root img.alignleft {
  margin: 0 20px 0 0;
  width: 50%;
  height: auto;
  float: left;
}
@media (min-width: 769px) {
  :root img.alignright, :root img.alignleft {
    width: 100%;
    float: none;
    margin: 0 0 20px 0;
  }
}
:root img.aligncenter {
  margin: 0 auto;
}
:root blockquote {
  margin: 0 0 2rem 0;
  padding-left: 1.7rem;
  position: relative;
}
:root blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 16px;
  background: #00344d;
}
:root cite {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  margin-top: 1rem;
}
:root figcaption {
  font-size: 1.6rem;
  color: #00344d;
  font-weight: 400;
}
:root sub,
:root sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
:root sup {
  top: -0.5em;
}
:root sub {
  bottom: -0.25em;
}
:root .page-title {
  text-transform: uppercase;
  color: #00344d;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 5.5rem;
}

/*!
 * 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;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
html {
  background: white;
  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%;
  }
}

body {
  font-family: "calibri", sans-serif;
  font-size: 1.9rem;
  line-height: 1.4;
  font-weight: 300;
  color: #58595b;
  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 {
  min-height: 100vh;
  overflow: hidden;
}

img {
  max-width: 100%;
  width: auto\9 ;
  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: bold;
  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;
}

.popmake-close {
  display: none;
}

.pum .buttons {
  display: flex;
  gap: 2rem;
}
.pum .buttons button,
.pum .buttons a {
  padding: 12px !important;
  height: 50px !important;
}
.pum .buttons .popmake-close {
  display: inline-block;
}
.pum .buttons .disagree {
  background-color: red;
  border-color: red !important;
}
.pum .buttons .disagree:hover {
  color: red !important;
  background-color: transparent;
}

@font-face {
  font-family: "campton-bold";
  src: url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-BoldDEMO.eot?#iefix") format("embedded-opentype"), url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-BoldDEMO.otf") format("opentype"), url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-BoldDEMO.woff") format("woff"), url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-BoldDEMO.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "campton-light";
  src: url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-LightDEMO.eot?#iefix") format("embedded-opentype"), url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-LightDEMO.otf") format("opentype"), url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-LightDEMO.woff") format("woff"), url("../../themes/brighterir-gutenberg-framework/fonts/campton/Campton-LightDEMO.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* -------------------------------------------
***** Header *****
------------------------------------------- */
header {
  background: #ffffff;
  position: fixed;
  z-index: 10;
  width: 100%;
  transition: all 0.4s ease;
  top: 0;
  left: 0;
}
header iframe {
  position: absolute;
  top: 0;
  right: -4.2%;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
  position: relative;
}
header.sticky {
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: -1px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1025px) {
  header.sticky {
    padding: 0;
  }
}
header.sticky .logo {
  width: 150px;
  height: 80px;
}
header.sticky .header-right nav.header-nav > ul li:hover > ul {
  top: 54px;
}
body.home header.sticky .header-right nav.header-nav > ul li:hover > ul {
  top: 50px;
}
header.sticky .header-right {
  padding: 10px 0;
}
@media (min-width: 1025px) {
  header.sticky .header-right {
    padding: 20px 0;
  }
}
header.sticky .header-right .burger-menu {
  background: none;
}
header.sticky .header-right .burger-menu span {
  background: #00344d;
}
@media (max-width: 1024px) {
  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.hamb-open .wrap:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 3;
  }
  header.hamb-open .logo {
    width: 150px;
    height: 100%;
    z-index: 4;
    transition: width 0.2s ease-in-out;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  header.hamb-open .logo {
    width: 180px;
  }
}
@media (max-width: 1024px) {
  header.hamb-open .logo img,
  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.hamb-open .logo img,
  header.hamb-open .logo svg {
    height: 40px;
  }
}
@media (max-width: 1024px) and (min-width: 1025px) {
  .home header.hamb-open .logo img,
  .home header.hamb-open .logo svg {
    display: block;
  }
}
@media (max-width: 1024px) {
  header.hamb-open .header-right {
    padding: 10px 0;
  }
  header.hamb-open .header-right .burger-menu {
    background: none;
  }
  header.hamb-open .header-right .burger-menu span {
    background: white;
  }
}
header .logo {
  transition: all 0.2s;
  width: 200px;
  height: 115px;
  display: flex;
  align-items: center;
}
header .logo a {
  display: flex;
  align-items: flex-start;
}
header .logo img,
header .logo svg {
  width: 100%;
  height: 100%;
}
header .tagline {
  display: block;
  font-size: 1.8rem;
  font-weight: normal;
  font-style: normal;
  padding: 0.4rem 0 0 0;
  opacity: 0.6;
}
header .header-right {
  display: block;
  overflow: visible;
  float: right;
  position: relative;
}
header .header-right nav.header-nav {
  transition: opacity 0.5s ease;
  display: block;
}
header .header-right nav.header-nav > ul {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding: 0;
  padding-right: 70px;
}
header .header-right nav.header-nav > ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}
header .header-right nav.header-nav > ul li a {
  font-weight: 400;
  color: #00344d;
  font-family: "calibri", sans-serif;
  font-size: 20px;
  transition: all 0.4s ease;
}
header .header-right nav.header-nav > ul li:hover > a {
  color: #00344d;
}
header .header-right nav.header-nav > ul li.current-menu-parent > a, header .header-right nav.header-nav > ul li.current-menu-item > a {
  border-bottom: 3px solid #00344d;
  padding: 0 0px 5px;
}
@media (min-width: 1025px) {
  header .header-right nav.header-nav {
    height: auto !important;
    display: block !important;
  }
  header .header-right nav.header-nav > ul {
    margin-top: 0 !important;
  }
  header .header-right nav.header-nav > ul:hover:after {
    height: 0;
    background: transparent;
    transition: all 0.4s ease;
  }
  header .header-right nav.header-nav > ul li {
    padding: 0px 12px;
    padding-bottom: 50px;
    margin-bottom: -57px;
    position: relative;
  }
  header .header-right nav.header-nav > ul li:first-child {
    border-left: 0;
  }
  header .header-right nav.header-nav > ul li:hover > ul {
    display: block;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all 0.4s ease;
    width: 100%;
    position: absolute;
    top: 72px;
    padding: 20px;
  }
  body.home header .header-right nav.header-nav > ul li:hover > ul {
    top: 68px;
  }
  header .header-right nav.header-nav > ul li ul {
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 300px;
    background: white;
    display: none;
    margin-bottom: 0;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease-in-out;
    box-shadow: inset 0px 4px 13px -6px black;
  }
  header .header-right nav.header-nav > ul li ul li {
    border: 0;
    border-top: none;
    margin: 0;
    padding: 0;
    text-align: left;
    flex: 50%;
    padding: 6px 20px;
    align-self: flex-start;
  }
  header .header-right nav.header-nav > ul li ul li:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 80%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
  }
  header .header-right nav.header-nav > ul li ul li a {
    padding: 0;
    border-bottom: none;
    text-shadow: none;
    align-self: flex-start;
    display: flex;
  }
  header .header-right nav.header-nav > ul li ul li.current-menu-item a {
    border-bottom: 0;
    border-bottom: 3px solid #00344d;
  }
  header .header-right nav.header-nav > ul li ul li:hover {
    border-top: 0;
    margin-top: unset;
  }
  header .header-right nav.header-nav > ul li ul li:hover > a {
    color: #00344d;
  }
  header .header-right nav.header-nav > ul li ul li ul {
    top: 0;
    left: 100%;
    background: white;
  }
}
@media (max-width: 1024px) {
  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: #00344d;
  }
  header .header-right nav.header-nav.full-width {
    width: 100%;
  }
  header .header-right nav.header-nav.full-width > ul {
    min-width: 100%;
  }
  header .header-right nav.header-nav.collapsed > ul li ul {
    display: none;
  }
  header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a {
    position: relative;
  }
  header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a:before {
    content: "+";
    position: absolute;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease-in-out !important;
    transition-delay: 0.2s !important;
    font-size: 30px;
  }
  header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a.submenu-visible:before {
    content: "-" !important;
  }
  header .header-right nav.header-nav.scrollable {
    overflow-y: scroll;
  }
  header .header-right nav.header-nav.scrollable > ul > li:last-child {
    margin-bottom: 40vh;
  }
  header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children {
    cursor: pointer;
  }
  header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children > a {
    width: calc(100% - 5rem);
  }
  header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children > a:before {
    right: -5rem;
    pointer-events: none;
    border: 1px solid white;
    border-radius: 50%;
    text-align: center;
    width: 25px;
    height: 25px;
    font-size: 22px;
    line-height: 20px;
  }
  header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children > a.submenu-visible:before {
    line-height: 19px;
  }
  header .header-right nav.header-nav.mmenu-active {
    visibility: visible;
    opacity: 1;
    z-index: 9;
    padding-bottom: 100px;
    margin-top: -30px;
    overflow: scroll;
  }
  header .header-right nav.header-nav.mmenu-active > ul li.menu-item-has-children > a:before {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
    transition-delay: 0.2s;
  }
  header .header-right nav.header-nav > ul {
    flex-direction: column;
    min-width: 300px;
    padding: 20px 30px 20px 35px;
  }
  header .header-right nav.header-nav > ul li {
    padding: 0;
    width: 100%;
    padding-top: 10px !important;
  }
  header .header-right nav.header-nav > ul li:last-child:after {
    display: none;
  }
  header .header-right nav.header-nav > ul li a {
    padding: 8px 0px;
    font-size: 18px;
    padding-right: 20px;
    color: white;
    white-space: nowrap;
  }
  header .header-right nav.header-nav > ul li.current-menu-item > a {
    opacity: 1 !important;
  }
  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: 10px;
  }
  header .header-right nav.header-nav > ul li ul li:after {
    content: none;
  }
  header .header-right nav.header-nav > ul li ul li a {
    padding-left: 10px;
    line-height: inherit;
    border: 0;
    font-size: 17px;
    opacity: 0.65 !important;
  }
  header .header-right nav.header-nav > ul li ul li.current-menu-item > a {
    font-size: 17px;
    opacity: 1 !important;
    padding-left: 10px;
    border-bottom: none !important;
  }
}
header .header-right .burger-menu {
  padding: 10px;
  z-index: 9999;
  position: relative;
  width: 30px;
  height: 20px;
  position: relative;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (min-width: 1025px) {
  header .header-right .burger-menu {
    display: none;
    position: initial;
  }
}
header .header-right .burger-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #00344d;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header .header-right .burger-menu span:nth-child(1) {
  top: 0px;
}
header .header-right .burger-menu span:nth-child(2),
header .header-right .burger-menu span:nth-child(3) {
  top: 9px;
}
header .header-right .burger-menu span:nth-child(4) {
  top: 18px;
}
header .header-right .burger-menu[menu-mobile=active] span {
  background: white;
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(2) {
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(3) {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/* -------------------------------------------
***** Footer *****
------------------------------------------- */
footer {
  color: #ffffff;
  background: #00344d;
  margin-top: 50px;
}
footer ul.menu {
  padding: 25px 0 0;
}
footer ul.menu li {
  display: inline;
  padding-right: 20px;
}
footer ul.menu li a {
  color: white;
  font-size: 17px;
}
footer p.copyright {
  font-size: 17px;
}
@media (min-width: 1025px) {
  footer p.copyright {
    text-align: right;
  }
}
footer a {
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
footer .footer-columns {
  padding: 20px 0;
}
@media (min-width: 501px) {
  footer .footer-columns {
    padding: 40px 0 0;
  }
}
@media (min-width: 501px) {
  footer .footer-columns .wrap {
    flex-wrap: wrap;
    display: flex;
  }
}
footer .footer-columns .wrap .col {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
@media (min-width: 1025px) {
  footer .footer-columns .wrap .col {
    width: 28%;
  }
  footer .footer-columns .wrap .col:nth-child(2) {
    width: 42%;
  }
}
footer .footer-columns .wrap .col svg {
  width: 100%;
  height: 47px;
}
footer .footer-columns .wrap .col:last-child {
  margin-bottom: 0;
}
@media (min-width: 501px) {
  footer .footer-columns .wrap .col:last-child {
    margin-bottom: 40px;
  }
}

.sidebar-enabled {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1025px) {
  .sidebar-enabled {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1025px) {
  .sidebar-enabled .content {
    float: right;
    width: 80%;
  }
}
.sidebar-enabled .sidebar {
  margin-top: 40px;
}
@media (min-width: 1025px) {
  .sidebar-enabled .sidebar {
    width: 20%;
    margin-top: 0;
    margin-right: 80px;
    max-width: 300px;
  }
}
.sidebar-enabled .sidebar .sidebar-widget > h3 {
  margin-bottom: 30px;
  color: #00344d;
  font-size: 1.6rem;
  padding: 10px 20px;
}
.sidebar-enabled .sidebar .sidebar-widget > h3 a {
  color: #00344d;
}
.sidebar-enabled .sidebar .sidebar-widget .widget {
  margin-bottom: 50px;
}
.sidebar-enabled .sidebar .sidebar-widget .widget ul.menu {
  margin-bottom: 0;
}
.sidebar-enabled .sidebar .sidebar-widget .widget ul.menu li {
  list-style: none;
  margin-bottom: 15px;
}
.sidebar-enabled .sidebar .sidebar-widget .widget ul.menu li.current-menu-item a {
  color: #00344d;
}
.sidebar-enabled .sidebar .sidebar-widget .widget ul.menu li a {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "campton-light", sans-serif;
  color: #00344d;
}
.sidebar-enabled .sidebar .sidebar-widget .widget ul.menu li a:hover, .sidebar-enabled .sidebar .sidebar-widget .widget ul.menu li a:active, .sidebar-enabled .sidebar .sidebar-widget .widget ul.menu li a:focus {
  color: #00344d;
}

/* --- TABLES --- */
main table,
main .tablepress {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 16px;
  margin-bottom: 2rem;
}
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: black;
  text-transform: unset;
  font-family: "campton-light", sans-serif;
}
main table thead tr,
main table tfoot tr,
main .tablepress thead tr,
main .tablepress tfoot tr {
  border-bottom: 3px solid #00344d;
}
main table thead th,
main table tfoot th,
main .tablepress thead th,
main .tablepress tfoot th {
  font-weight: 600;
  font-size: 18px;
  background: none;
  border-bottom: 0px;
}
main table thead th,
main .tablepress thead th {
  text-align: left;
  padding: 10px 20px;
  color: #00344d;
  font-weight: 500;
}
main table tbody,
main .tablepress tbody {
  border-bottom: 1px solid #00344d;
}
main table tbody tr td,
main .tablepress tbody tr td {
  padding: 10px;
  vertical-align: middle;
  padding: 10px 20px;
}
main table tbody tr th,
main .tablepress tbody tr th {
  font-weight: 500;
}
main table tfoot th,
main .tablepress tfoot th {
  background: none;
}

/* -------------------------------------------
***** GRAVITY FORM STYLING *****
------------------------------------------- */
.gform_confirmation_wrapper {
  padding: 20px;
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-family: "campton-light", sans-serif;
  color: #00344d;
  font-weight: 400;
  border: 2px solid #829ab1;
  border-radius: 10px;
  line-height: 1.2;
}

.gform_wrapper form .validation_error,
.gform_wrapper form .validation_message {
  background: #ef7e6a;
  color: white;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  margin-top: 5px;
}
.gform_wrapper form .gform_body ul {
  margin: 0;
  padding: 0;
}
.gform_wrapper form .gform_body ul li {
  margin-bottom: 20px;
  list-style: none;
}
@media (min-width: 769px) {
  .gform_wrapper form .gform_body ul li.field-half {
    width: calc(50% - 20px);
    float: left;
    margin-right: 20px;
  }
  .gform_wrapper form .gform_body ul li.field-half:nth-child(even) {
    margin-right: 0;
    width: 50%;
  }
}
.gform_wrapper form .gform_body ul li label {
  display: block;
  font-size: 1.6rem;
  margin: 0 0 0.4rem 0;
  text-transform: uppercase;
  font-weight: 400;
  text-transform: none;
}
.gform_wrapper form .gform_body ul li.hidden_label > label {
  display: none;
}
.gform_wrapper form .gform_body ul li.gform_validation_container {
  display: none;
}
.gform_wrapper form .gform_body ul li input:not([type=checkbox]):not([type=radio]):not(button),
.gform_wrapper form .gform_body ul li textarea,
.gform_wrapper form .gform_body ul li select {
  width: 100%;
  font-family: "calibri", sans-serif;
  font-size: 16px;
  -webkit-appearance: none;
  border: 0;
  padding: 15px;
  background: #f0f4f7;
  overflow: hidden;
}
.gform_wrapper form .gform_body ul li input:not([type=checkbox]):not([type=radio]):not(button):active, .gform_wrapper form .gform_body ul li input:not([type=checkbox]):not([type=radio]):not(button):focus,
.gform_wrapper form .gform_body ul li textarea:active,
.gform_wrapper form .gform_body ul li textarea:focus,
.gform_wrapper form .gform_body ul li select:active,
.gform_wrapper form .gform_body ul li select:focus {
  outline: none;
  border-color: #ccc;
}
.gform_wrapper form .gform_body ul li .gfield_checkbox,
.gform_wrapper form .gform_body ul li .gfield_radio {
  display: flex;
}
.gform_wrapper form .gform_body ul li .gfield_checkbox li,
.gform_wrapper form .gform_body ul li .gfield_radio li {
  align-items: center;
  display: flex;
  margin-right: 20px;
}
.gform_wrapper form .gform_body ul li .gfield_checkbox li label,
.gform_wrapper form .gform_body ul li .gfield_radio li label {
  margin-bottom: 0;
  margin-left: 10px;
}
.gform_wrapper form .gform_body ul li .gfield_checkbox input[type=checkbox] {
  -webkit-appearance: checkbox;
}
.gform_wrapper form .gform_body ul li .gfield_radio input[type=radio] {
  -webkit-appearance: radio;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent {
  display: flex;
  align-items: flex-start;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent label {
  margin-bottom: 0;
  padding-left: 10px;
  text-transform: none;
  font-size: 1.4rem;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent input {
  width: 30px;
  height: 30px;
  -webkit-appearance: checkbox;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent .gfield_required {
  display: none;
}
.gform_wrapper form .gform_body ul li .ginput_recaptcha iframe {
  border: 0;
  background: none;
  padding: 0;
  border-radius: 0;
}
.gform_wrapper form .gform_body ul li .validation_error,
.gform_wrapper form .gform_body ul li .validation_message {
  color: #ef7e6a;
  background: none;
  padding: 0;
}
.gform_wrapper form .gform_footer button {
  padding: 0;
  border: 0;
  margin-top: 3rem;
  margin-right: 2rem;
}
.gform_wrapper form .gform_footer button:hover {
  cursor: pointer;
}
.gform_wrapper input,
.gform_wrapper select,
.gform_wrapper textarea {
  border: 1px solid #00344d;
  padding: 10px !important;
  -webkit-appearance: auto !important;
  font-family: "calibri", sans-serif;
}
.gform_wrapper button {
  padding: 12px !important;
}
.gform_wrapper button:hover {
  border: 2px solid #00344d !important;
  background: transparent;
  color: #00344d;
}

/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  background: #00344d;
  background-image: url("img/custom/logo.svg");
  background-size: cover;
  background-position: center;
}
html .login {
  /* Logo */
  /* Error Message */
  /* Other message */
}
html .login h1 a {
  padding-bottom: 0;
  width: 200px;
  height: 150px;
  background-size: 200px auto;
  background-position: center;
  display: block;
  margin: 0 auto;
  padding: 0;
  background-image: url("img/framework/logo.svg") !important;
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #ffffff;
  box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #ffffff;
}
html .login p.message {
  margin: 0 20px 20px;
  background: #86d81b !important;
  color: #ffffff;
  box-shadow: none !important;
  border: none;
}
html .login #nav {
  color: #58595b !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: #58595b !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: #58595b !important;
  text-decoration: underline !important;
}
html .login #login {
  margin: auto;
  background: #ffffff;
  padding: 0;
  min-width: 425px !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: #58595b !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: #58595b !important;
  text-decoration: underline;
}
html .login form {
  background: none;
  padding: 20px;
  margin-top: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}
html .login form label {
  color: #58595b;
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: #e6e7e8;
  border: none;
  border-bottom: 1px solid #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #58595b;
  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: 10px 40px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0;
  background: #00344d;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 15px;
  height: auto;
  box-shadow: none !important;
  border-radius: 4px;
}
html .login form p.submit #wp-submit:hover {
  background: rgb(0, 69.2207792208, 102.5);
}
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;
}
.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: #00344d;
  font-weight: 600;
}

.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: white;
  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: white;
  position: absolute;
  display: block;
  content: "";
}
.fullscreen-search .outer-close .close span {
  background: transparent;
}
.fullscreen-search .outer-close .close span:before {
  transform: rotate(45deg);
}
.fullscreen-search .outer-close .close span:after {
  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: white;
  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: white;
}

.social-wrapper {
  margin: 0 auto;
}
.social-wrapper ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}
.social-wrapper ul li {
  padding: 0 8px;
  list-style: none;
  margin-bottom: 0;
}
.social-wrapper ul li a {
  font-size: 31px;
  color: #00344d;
  transition-duration: 0.3s;
}
.social-wrapper ul li a:hover {
  color: #00344d;
  transition-duration: 0.3s;
}

header.sticky .social-wrapper {
  top: 20px;
}

header .social-wrapper {
  margin: 0 auto;
  position: absolute;
  right: 0px;
  top: 0;
}
header .social-wrapper ul li a {
  font-size: 17px;
  color: #00344d;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
header .social-wrapper ul li a:hover {
  color: #00344d;
}
header.hamb-open .social-wrapper {
  position: relative;
  margin-left: 35px;
}

footer .social-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social-wrapper ul li a {
  color: #ffffff;
}
footer .social-wrapper ul li a:hover {
  color: #00344d;
}

/* -------------------------------------------
***** Custom *****
------------------------------------------- */
.pal {
  position: absolute !important;
  left: 30px;
  bottom: 30px;
}

.par {
  position: absolute !important;
  right: 30px;
  bottom: 30px;
}

.shadow {
  box-shadow: 1px 1px 14px -3px black;
}

.wp-block-table .has-subtle-light-gray-background-color,
.wp-block-table table {
  background-color: #fcfcfc !important;
}

.ml0 .kt-row-column-wrap {
  margin-left: 0 !important;
}

.mr0 .kt-row-column-wrap {
  margin-right: 0 !important;
}

.logo .a {
  fill: #c9ecfc !important;
}

.head-accordion {
  padding: 15px 10px 5px;
  margin-bottom: 0 !important;
  background-color: #e6e7e8;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .head-accordion {
    padding: 20px 15px;
  }
}
@media (min-width: 1025px) {
  .head-accordion {
    padding: 30px 20px;
  }
}
.head-accordion > div {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 769px) {
  .head-accordion > div {
    width: calc(100% - 40px);
  }
}
.head-accordion > div .phases {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0;
}
.head-accordion > div .phases > div {
  display: flex;
}
.head-accordion p {
  margin: 0;
  font-size: 6px;
  color: #00344d;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: relative;
  text-transform: uppercase;
}
.head-accordion p:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 8rem;
  width: 1px;
  background-color: black;
  opacity: 0.4;
}
@media (min-width: 769px) {
  .head-accordion p {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1.1rem;
  }
}
@media (min-width: 1025px) {
  .head-accordion p {
    font-size: 1.6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.head-accordion p.col1 {
  order: 0;
  width: 30%;
}
.head-accordion p.col2 {
  display: none;
}
.head-accordion .phases {
  width: 70%;
  order: 1;
}
.head-accordion .phases p.col3 {
  width: 33%;
}
.head-accordion .phases p.col4,
.head-accordion .phases p.col5,
.head-accordion .phases p.col6 {
  width: 18%;
}
.head-accordion .phases p.col7 {
  width: 14%;
}
@media (min-width: 769px) {
  .head-accordion p.col1 {
    width: 18%;
    padding-left: 0;
  }
  .head-accordion p.col2 {
    width: 25%;
    order: 1;
    display: block;
  }
  .head-accordion .phases {
    width: 57%;
    order: 2;
  }
}

.pipeline-accordion .kt-accordion-panel {
  overflow: visible;
}
.pipeline-accordion .pipeline {
  position: relative;
  background-color: white;
}
.pipeline-accordion .pipeline .top {
  padding: 15px 10px;
  position: relative;
  cursor: pointer !important;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top {
    padding: 20px 15px;
  }
}
@media (min-width: 1025px) {
  .pipeline-accordion .pipeline .top {
    padding: 30px 20px;
  }
}
.pipeline-accordion .pipeline .top .width {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width {
    width: calc(100% - 40px);
  }
}
.pipeline-accordion .pipeline .top .width .col1 {
  width: 18%;
  order: 0;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .col1 {
    width: 18%;
  }
}
.pipeline-accordion .pipeline .top .width .col2 {
  width: 100%;
  position: relative;
  order: 2;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .col2 {
    width: 25%;
    order: 1;
  }
}
.pipeline-accordion .pipeline .top .width .col2 .indication {
  padding-top: 10px;
  width: 100%;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .col2 .indication {
    position: absolute;
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1025px) {
  .pipeline-accordion .pipeline .top .width .col2 .indication {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases {
  width: 70%;
  order: 1;
  display: flex;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases {
    width: 82%;
    order: 2;
  }
}
.pipeline-accordion .pipeline .top .width .phases .col3,
.pipeline-accordion .pipeline .top .width .phases .col4,
.pipeline-accordion .pipeline .top .width .phases .col5,
.pipeline-accordion .pipeline .top .width .phases .col6,
.pipeline-accordion .pipeline .top .width .phases .col7 {
  width: 25%;
  height: 100%;
}
.pipeline-accordion .pipeline .top .width .phases {
  position: relative;
}
.pipeline-accordion .pipeline .top .width .phases:before {
  content: "";
  background: linear-gradient(90deg, #00344d 0%, #00344d 50%, #00344d 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 10px);
  height: 10px;
  left: 10px;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases:before {
    width: calc(100% - 40px);
    height: 20px;
    left: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases div {
  position: relative;
}
.pipeline-accordion .pipeline .top .width .phases div:not(.col3):after {
  content: "";
  height: 10px;
  width: 3px;
  top: 0;
  position: absolute;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases div:not(.col3):after {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases.phase3 > div:nth-child(n+6):before {
  background-color: white;
  height: 10px;
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  content: "";
  opacity: 0.9;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases.phase3 > div:nth-child(n+6):before {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases.phase2 > div:nth-child(n+5):before {
  background-color: white;
  height: 10px;
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  content: "";
  opacity: 0.9;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases.phase2 > div:nth-child(n+5):before {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases.phase1 > div:nth-child(n+4):before {
  background-color: white;
  height: 10px;
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  content: "";
  opacity: 0.9;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases.phase1 > div:nth-child(n+4):before {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases.pre > div:nth-child(n+3):before {
  background-color: white;
  height: 10px;
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  content: "";
  opacity: 0.9;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases.pre > div:nth-child(n+3):before {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases.discovery > div:nth-child(n+2):before {
  background-color: white;
  height: 10px;
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  content: "";
  opacity: 0.9;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases.discovery > div:nth-child(n+2):before {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .width .phases.none > div:nth-child(n+1):before {
  background-color: white;
  height: 10px;
  top: 0;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  content: "";
  opacity: 0.9;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .width .phases.none > div:nth-child(n+1):before {
    height: 20px;
  }
}
.pipeline-accordion .pipeline .top .open {
  position: absolute;
  transform: scale(0.6);
  width: 40px;
  height: 40px;
  color: white;
  background-color: #00344d;
  border-radius: 50%;
  right: 5px;
  top: 45%;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .top .open {
    transform: translateY(-50%) scale(0.8);
    right: 20px;
    top: 50%;
  }
}
@media (min-width: 1025px) {
  .pipeline-accordion .pipeline .top .open {
    transform: translateY(-50%) scale(1);
  }
}
.pipeline-accordion .pipeline .top .open:before, .pipeline-accordion .pipeline .top .open:after {
  content: "";
  position: absolute;
  transition: all ease-in-out 0.1333333333s;
  width: 20px;
  height: 2px;
  background: white;
  left: 10px;
  top: 18px;
  transition: all ease-in-out 0.2s;
}
.pipeline-accordion .pipeline .top .open:before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
}
.pipeline-accordion .pipeline .top.open .open:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.pipeline-accordion .pipeline .content {
  padding: 0 10px 20px;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .content {
    padding: 15px 30px;
  }
}
@media (min-width: 1025px) {
  .pipeline-accordion .pipeline .content {
    padding: 20px 40px;
  }
}
.pipeline-accordion .pipeline .content ul {
  padding: 0;
  margin-top: 10px;
}
.pipeline-accordion .pipeline .content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  list-style: none;
}
.pipeline-accordion .pipeline .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 0;
  background: linear-gradient(90deg, #00344d 60%, #00344d);
}
.pipeline-accordion .pipeline .bottom {
  background-color: #dfdfdf;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .bottom {
    font-size: 18px;
    padding: 30px 50px;
  }
}
.pipeline-accordion .pipeline .bottom ul {
  padding: 0;
  margin-top: 10px;
}
.pipeline-accordion .pipeline .bottom ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  list-style: none;
}
.pipeline-accordion .pipeline .bottom ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 0;
  background: linear-gradient(90deg, #00344d 60%, #00344d);
}
.pipeline-accordion .pipeline h3 {
  color: #00344d;
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
  font-weight: 600;
  text-transform: none;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline h3 {
    font-size: 15px;
  }
}
@media (min-width: 1025px) {
  .pipeline-accordion .pipeline h3 {
    font-size: 18px;
  }
}
.pipeline-accordion .pipeline .indication {
  color: #00344d;
  font-size: 12px;
}
@media (min-width: 769px) {
  .pipeline-accordion .pipeline .indication {
    font-size: 13px;
  }
}
@media (min-width: 1025px) {
  .pipeline-accordion .pipeline .indication {
    font-size: 16px;
  }
}
.pipeline-accordion .pipeline.no-desc .accordion-bottom {
  display: none;
}

.pipeline-accordion {
  border-bottom: 1px solid #e6e7e8;
}
.pipeline-accordion .kt-accordion-panel {
  overflow: visible !important;
  display: block !important;
}
.pipeline-accordion .kt-accordion-panel.kt-accordion-panel-hidden .content,
.pipeline-accordion .kt-accordion-panel.kt-accordion-panel-hidden .bottom {
  overflow: hidden;
  display: none;
}
.pipeline-accordion > .pipeline:nth-child(odd) .top,
.pipeline-accordion > .pipeline:nth-child(odd) .top .width .phases.pre > div:nth-child(n+2):before {
  background-color: white !important;
}
.pipeline-accordion > .pipeline:nth-child(even) .top,
.pipeline-accordion > .pipeline:nth-child(even) .top .width .phases.pre > div:nth-child(n+2):before {
  background-color: white;
}
.pipeline-accordion .pipeline .top .phases.phase2 > div:before {
  background-color: white !important;
}
.pipeline-accordion .no-desc {
  pointer-events: none !important;
  cursor: default !important;
}
.pipeline-accordion .no-desc .kt-blocks-accordion-icon-trigger {
  opacity: 0;
  pointer-events: none;
}
.pipeline-accordion .no-desc .top .open {
  opacity: 0;
}
.pipeline-accordion .kt-blocks-accordion-header {
  height: 100px;
}

.pike-delivery {
  color: white;
  position: relative;
  margin-bottom: 3rem;
  background-color: #00344d;
  padding: 30px 40px;
  text-align: center;
}
@media (min-width: 769px) {
  .pike-delivery {
    float: right;
    max-width: 30rem;
    margin-left: 5rem;
    margin-bottom: 0;
  }
}
.pike-delivery:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("./img/custom/logo-white.svg");
  z-index: 1;
  opacity: 0.03;
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
}
.pike-delivery p:first-child {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  margin-bottom: 5rem;
  z-index: 3;
}
.pike-delivery p:first-child:after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  width: 15rem;
  background-color: #00344d;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.pike-delivery p:last-child {
  font-size: 16px;
  z-index: 3;
  position: relative;
}

.chart {
  background-color: white;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
.chart h3 {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 3rem;
  color: #00344d;
}

.page-id-416 main > .container {
  position: relative;
  overflow: hidden;
}

.icon-and-text {
  text-align: left;
}
.icon-and-text .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  -ms-flex-align: center;
  margin-bottom: 3rem;
  overflow: hidden;
}
.icon-and-text .icon {
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 50%;
  border: 2.5px solid #00344d;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
}
.icon-and-text .icon img {
  max-width: 60%;
  max-height: 60%;
}
.icon-and-text .title {
  position: relative;
}
.icon-and-text .title h3 {
  font-size: 2.8rem;
  font-weight: 400;
  padding-left: 5.5rem;
  margin-bottom: 0;
  z-index: 2;
  display: inline-block;
}
.icon-and-text .title h3:before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 50%;
  width: 2.5rem;
  height: 2px;
  background-color: black;
  transform: translateY(-50%);
  z-index: -1;
}

.icons-row > div > * {
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  .icons-row > div > * {
    margin-bottom: 5rem;
  }
}
.icons-row > div > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .icons-row > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .icons-row > div > .text-icon {
    width: calc(33% - 3rem);
  }
  .icons-row > div > * {
    margin-bottom: 0rem;
  }
}

@media (min-width: 501px) {
  .stats-row > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.stats-row > div > div {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 501px) {
  .stats-row > div > div {
    width: calc(50% - 3rem);
    margin-bottom: 0rem;
  }
}

.lines-home {
  width: 100%;
  height: 100%;
  background-image: url(./img/custom/bg.jpg);
  background-position: center;
  background-size: cover;
  position: absolute;
  overflow: hidden;
  z-index: -1;
}
.lines-home p {
  display: none;
}
.lines-home .line1 {
  z-index: 1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/custom/line1.png);
  background-size: cover;
  background-position: center;
}
.lines-home .line2 {
  z-index: 2;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/custom/line2.png);
  background-size: cover;
  background-position: center;
}

.pipeline:nth-child(3) .col3 {
  width: 21% !important;
}
.pipeline:nth-child(3) .col4,
.pipeline:nth-child(3) .col5,
.pipeline:nth-child(3) .col6,
.pipeline:nth-child(3) .col7 {
  width: 29% !important;
}

.pipeline:nth-child(4) .col3 {
  width: 19% !important;
}
.pipeline:nth-child(4) .col4,
.pipeline:nth-child(4) .col5,
.pipeline:nth-child(4) .col6,
.pipeline:nth-child(4) .col7 {
  width: 32% !important;
}

.arrow-after {
  position: relative;
}
.arrow-after:after {
  content: "";
  background: url(../../themes/brighterir-gutenberg-framework/img/custom/right-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  bottom: 50%;
  right: -15px;
  width: 40px;
  height: 40px;
  position: absolute;
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ultp-block-column-3 .ultp-block-item {
    width: 33.3%;
    display: inline-flex;
  }
  .ultp-block-column-2 .ultp-block-item {
    width: 50%;
    display: inline-flex;
    padding: 20px;
  }
  .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;
  }
  main {
    min-height: auto;
    overflow: hidden;
  }
  .logo svg,
  .logo a {
    height: 115px !important;
  }
  .slick-dots li button {
    padding: 0;
  }
  footer {
    overflow: hidden;
  }
  .kt-row-column-wrap {
    min-height: auto !important;
  }
  .cta {
    box-shadow: 1px 1px 14px -3px black !important;
  }
}
.page-id-359 .kt-inner-tab-2 .pos {
  display: none !important;
}

.slick-dots li button {
  padding: 0;
}

.nav-links a {
  display: flex;
  align-items: center;
}
.nav-links a svg {
  margin-right: 10px;
}

.video-popup a {
  max-height: inherit !important;
}

.clear {
  clear: both;
}

.shadow {
  -webkit-box-shadow: 1px 1px 14px -3px #999;
  box-shadow: 1px 1px 14px -3px #999;
}

footer ul.menu li {
  display: inline;
  padding-right: 10px;
}

.page-id-389 table tr th:first-child {
  width: 45%;
}

.border-image img {
  border: 1px solid #ccc;
}

.severe-influenza-graphic .kt-inside-inner-col {
  min-height: auto;
}

.severe-influenza-graphic h3 {
  font-size: 32px;
  line-height: 1em;
  height: 20px !important;
  font-family: calibri;
  font-weight: bold;
}

.severe-influenza-graphic p {
  font-size: 17px !important;
  line-height: 1em;
  height: 20px;
  padding: 0 5px;
}

/* This CSS is breaking Governance Accordian at mobile
@media screen and (max-width: 767px) {
.kt-tabs-wrap .wp-block-kadence-tab[role="tabpanel"] {
    display: block;
}
*/
.kt-tabs-accordion-title.kt-tab-title-inactive .kt-tab-title {
  border-color: #eeeeee !important;
  color: #ffffff !important;
  background: #0085d3 !important;
}

.is-type-video {
  margin-bottom: 0 !important;
}

iframe.embed-player.slide-media.vimeo {
  width: 1971px;
  height: 1309px;
}

.cta.reason-to-invest .cta-content h3:after {
  content: "...";
  display: block;
  text-align: right;
}

.eq-height .kadence-column_3b3f58-79,
.eq-height .kadence-column_3b3f58-79 > .kt-inside-inner-col {
  display: flex;
  flex-direction: column;
  flex: 1 !important;
}

.eq-height .kadence-column_3b3f58-79 > .kt-inside-inner-col > .btn {
  margin-top: auto;
}

#team a,
a:hover {
  color: #0085d3 !important;
}

/* This CSS is breaking Governance Accordian at mobile
.wp-block-kadence-tab[aria-hidden='true'] {
    display: none!important;
}
*/
.wp-block-kadence-tabs ul.kt-tabs-title-list li {
  width: auto !important;
}

.date_published {
  font-size: 19px;
}

.file_name {
  font-size: 19px;
}

.file_type {
  font-size: 19px;
}

.wp-block-table {
  font-size: 19px !important;
}

.kt-title-text {
  text-transform: none !important;
}

.pos {
  text-transform: none !important;
  font-size: 19px !important;
}

.ultp-block-1f0c1c .ultp-block-items-wrap .ultp-block-item .ultp-block-title a {
  font-family: "campton-light" !important;
  color: #003176 !important;
}

.cta-content h3 {
  font-family: "campton-light", sans-serif !important;
}

.ultp-block-c7883a.wp-block-ultimate-post-post-grid-1 .ultp-block-row.ultp-block-items-wrap {
  grid-template-columns: repeat(2, 1fr);
}

.ultp-block-c7883a .ultp-block-row {
  grid-gap: 40px;
}

.ultp-block-c7883a .ultp-heading-wrap .ultp-heading-inner {
  font-size: 20px;
}

.ultp-block-c7883a .ultp-heading-wrap {
  margin-top: 0;
  margin-bottom: 30px;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-item .ultp-block-title,
.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-item .ultp-block-title a {
  font-size: 24px;
  line-height: 30px !important;
  letter-spacing: 0px;
}

.ultp-block-c7883a .ultp-block-content .ultp-block-title {
  padding: 10px 0px 5px 0px;
}

.ultp-block-c7883a .ultp-block-excerpt,
.ultp-block-c7883a .ultp-block-excerpt p {
  font-size: 14px;
  line-height: 26px !important;
}

.ultp-block-c7883a .ultp-block-excerpt {
  padding: 10px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a {
  font-size: 12px;
  line-height: 20px !important;
  letter-spacing: 1px;
}

.ultp-block-c7883a .ultp-category-grid {
  margin: 20px 0px 5px 20px;
}

.ultp-block-c7883a .ultp-block-meta span,
.ultp-block-c7883a .ultp-block-item .ultp-block-meta span a {
  font-size: 12px;
  line-height: 20px !important;
}

.ultp-block-c7883a .ultp-block-meta span {
  margin-right: 15px;
}

.ultp-block-c7883a .ultp-block-meta span {
  padding-left: 15px;
}

.rtl .ultp-block-c7883a .ultp-block-meta span {
  margin-right: 0;
  margin-left: 15px;
}

.rtl .ultp-block-c7883a .ultp-block-meta span {
  padding-left: 0;
  padding-right: 15px;
}

.ultp-block-c7883a .ultp-block-meta {
  margin: 5px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-meta {
  padding: 5px 0px 5px 0px;
}

.ultp-block-c7883a .ultp-block-content-wrap {
  border-radius: 0px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-content-wrap:hover {
  border-radius: 0px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-content,
.ultp-block-c7883a.wp-block-ultimate-post-post-grid-1 .ultp-layout2 .ultp-block-content,
.ultp-block-c7883a.wp-block-ultimate-post-post-grid-1 .ultp-layout3 .ultp-block-content {
  padding: 20px 40px 40px 40px;
}

.ultp-block-c7883a .ultp-block-content-wrap {
  padding: 0px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-image {
  filter: grayscale(0%);
}

.ultp-block-c7883a .ultp-block-item:hover .ultp-block-image {
  filter: grayscale(0%);
}

.ultp-block-c7883a .ultp-block-item .ultp-block-image {
  margin-bottom: 15px;
}

.ultp-block-c7883a .ultp-loadmore,
.ultp-block-c7883a .ultp-next-prev-wrap ul,
.ultp-block-c7883a .ultp-pagination {
  text-align: center;
}

.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a,
.ultp-block-c7883a .ultp-loadmore .ultp-loadmore-action {
  font-size: 14px;
  line-height: 20px !important;
}

.ultp-block-c7883a .ultp-pagination li a,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a,
.ultp-block-c7883a .ultp-loadmore-action {
  border-radius: 2px 2px 2px 2px;
}

.ultp-block-c7883a .ultp-pagination li.pagination-active a,
.ultp-block-c7883a .ultp-pagination li a:hover,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a:hover,
.ultp-block-c7883a .ultp-loadmore-action:hover {
  border-radius: 2px 2px 2px 2px;
}

.ultp-block-c7883a .ultp-pagination li a,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a,
.ultp-block-c7883a .ultp-loadmore-action {
  padding: 15px 30px 15px 30px;
}

.ultp-block-c7883a .ultp-pagination,
.ultp-block-c7883a .ultp-loadmore {
  margin: 30px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-wrapper {
  margin: 0px 0px 0px 0px;
}

.ultp-block-c7883a .ultp-block-wrapper {
  padding: 0px 0px 0px 0px;
}

@media (max-width: 992px) {
  .ultp-block-c7883a .ultp-heading-wrap {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .ultp-block-c7883a.wp-block-ultimate-post-post-grid-1 .ultp-block-row.ultp-block-items-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ultp-block-c7883a .ultp-block-content-wrap {
  height: 100%;
}

.ultp-block-c7883a .ultp-heading-inner,
.ultp-block-c7883a .ultp-sub-heading-inner {
  text-align: left;
}

.ultp-block-c7883a .ultp-heading-wrap .ultp-heading-inner {
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.ultp-block-c7883a .ultp-heading-wrap .ultp-heading-inner span {
  color: #0e1523;
}

.ultp-block-c7883a .ultp-heading-inner:after {
  background-color: #0e1523;
}

.ultp-block-c7883a .ultp-heading-inner:before {
  background-color: #e5e5e5;
}

.ultp-block-c7883a .ultp-heading-inner:before,
.ultp-block-c7883a .ultp-heading-inner:after {
  height: 3px;
}

.ultp-block-c7883a .ultp-block-content .ultp-block-title a {
  color: #0e1523;
}

.ultp-block-c7883a .ultp-block-content .ultp-block-title a:hover {
  color: rgb(0, 133, 211);
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-item .ultp-block-title,
.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-item .ultp-block-title a {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
}

.ultp-block-c7883a .ultp-block-excerpt {
  color: #777;
}

.ultp-block-c7883a .ultp-block-excerpt,
.ultp-block-c7883a .ultp-block-excerpt p {
  text-decoration: none;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-item .ultp-category-grid a {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.ultp-block-c7883a .ultp-block-meta span,
.ultp-block-c7883a .ultp-block-item .ultp-block-meta span a {
  text-transform: capitalize;
  text-decoration: none;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-meta span {
  color: #989898;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-meta span svg {
  fill: #989898;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-meta span a {
  color: #989898;
}

.ultp-block-c7883a .ultp-block-meta-dot span:after {
  background: #989898;
}

.ultp-block-c7883a .ultp-block-meta span:after {
  color: #989898;
}

.ultp-block-c7883a .ultp-block-items-wrap .ultp-block-meta span a:hover {
  color: #000;
}

.ultp-block-c7883a .ultp-block-content {
  text-align: center;
}

.ultp-block-c7883a .ultp-block-meta {
  justify-content: center;
}

.ultp-block-c7883a .ultp-block-content-wrap {
  background: rgb(250, 250, 250);
}

.ultp-block-c7883a .ultp-block-content-wrap {
  box-shadow: 0px 0px 15px -10px rgb(0, 0, 0);
}

.ultp-block-c7883a .ultp-block-content-wrap:hover {
  box-shadow: 0px 1px 1px 0px rgb(231, 231, 231);
}

.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a,
.ultp-block-c7883a .ultp-loadmore .ultp-loadmore-action {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a,
.ultp-block-c7883a .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action {
  color: #fff;
}

.ultp-block-c7883a .ultp-next-prev-wrap ul li a svg {
  fill: #fff;
}

.ultp-block-c7883a .ultp-pagination li a svg,
.ultp-block-c7883a .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action svg {
  fill: #fff;
}

.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a,
.ultp-block-c7883a .ultp-loadmore .ultp-loadmore-action {
  background-image: none;
  background-color: #0e1523;
}

.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li.pagination-active a,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a:hover,
.ultp-block-c7883a .ultp-block-wrapper .ultp-loadmore-action:hover {
  color: rgb(0, 0, 0);
}

.ultp-block-c7883a .ultp-pagination li a:hover svg {
  fill: rgb(0, 0, 0);
}

.ultp-block-c7883a .ultp-next-prev-wrap ul li a:hover svg,
.ultp-block-c7883a .ultp-block-wrapper .ultp-loadmore .ultp-loadmore-action:hover svg {
  fill: rgb(0, 0, 0);
}

@media (min-width: 768px) {
  .ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a:hover {
    color: rgb(0, 0, 0);
  }
}
.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a:hover,
.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li.pagination-active a,
.ultp-block-c7883a .ultp-pagination-wrap .ultp-pagination li a:focus,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a:hover,
.ultp-block-c7883a .ultp-loadmore-action:hover {
  background-image: none;
  background-color: rgb(255, 255, 255);
}

.ultp-block-c7883a .ultp-pagination li a:hover,
.ultp-block-c7883a .ultp-pagination li.pagination-active a,
.ultp-block-c7883a .ultp-next-prev-wrap ul li a:hover,
.ultp-block-c7883a .ultp-loadmore-action:hover {
  box-shadow: 1px 1px 1px 1px #009fd4;
}

.ultp-block-c7883a .ultp-loading .ultp-loading-blocks div {
  --loading-block-color: #000;
}

@media (max-width: 767px) {
  #kt-adv-heading_0122a3-b3,
  #kt-adv-heading_0122a3-b3 .wp-block-kadence-advancedheading,
  .wp-block-kadence-advancedheading.kt-adv-heading_0122a3-b3[data-kb-block=kb-adv-heading_0122a3-b3],
  .kadence-advanced-heading-wrapper .kt-adv-heading_0122a3-b3[data-kb-block=kb-adv-heading_0122a3-b3],
  .wp-block-kadence-advancedheading.kt-adv-heading_fe1f33-fe[data-kb-block=kb-adv-heading_fe1f33-fe],
  .wp-block-kadence-advancedheading.kt-adv-heading_d8f1fe-22[data-kb-block=kb-adv-heading_d8f1fe-22],
  .wp-block-kadence-advancedheading.kt-adv-heading_93df92-c7[data-kb-block=kb-adv-heading_93df92-c7],
  .wp-block-kadence-advancedheading.kt-adv-heading_b02dd9-bb[data-kb-block=kb-adv-heading_b02dd9-bb] {
    font-size: 2rem;
    text-align: left !important;
    /* Browsers not below */
    transform: rotate(-90deg) !important;
    /* Safari */
    -webkit-transform: rotate(-90deg) !important;
    /* Firefox */
    -moz-transform: rotate(-90deg) !important;
    /* Opera */
    -o-transform: rotate(-90deg) !important;
    /* IE */
    -ms-transform: rotate(-90deg) !important;
    width: 70px;
  }
  .pipeline-accordion .pipeline .top .width .phases {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pipeline-accordion .pipeline .top .width .col1 {
    width: 100%;
    padding: 20px 0px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .pipeline-accordion .pipeline .top .open {
    position: absolute;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    width: 40px;
    height: 40px;
    color: white;
    background-color: #0085d3;
    border-radius: 50%;
    right: 5px;
    top: 10%;
  }
  #kt-layout-id_c5ae08-16 > .kt-row-column-wrap {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .pipeline-accordion .pipeline .top .width .phases:before {
    left: 0px !important;
  }
  .arrow-after:after {
    display: none !important;
  }
}
.footer-columns .col:nth-child(1) > a,
.footer-columns .col:nth-child(3) > a {
  display: block;
}

/* Fix for Events table */
@media (min-width: 769px) {
  .financial-calendar .event p strong {
    width: calc(50% - 140px);
  }
}
#rns_widget_investors_2 {
  color: #ffffff !important;
}

#rns_widget_investors_2 a {
  color: #ffffff !important;
}

.scroll-box {
  max-height: 240px;
  overflow-y: scroll;
}

.ultp-image-block .ultp-image-button.ultp-image-button-bottomRight {
  justify-content: flex-end;
  text-align: right;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}

.ultp-image-block .ultp-image-button {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 2;
}

.page-id-359 .kt-inner-tab-2 .pos {
  display: block !important;
}

.reason-to-invest-last {
  margin: 0 !important;
}

.page-id-5477 .inner-banner,
.parent-pageid-162 .inner-banner,
.page-id-162 .inner-banner {
  margin-bottom: 0px;
}

.presentation-banner {
  padding: 15px 0;
  margin-bottom: 60px;
}

.presentation-banner h3 {
  margin-bottom: 0px;
  width: 100%;
  text-align: center;
}

.media-button {
  margin-bottom: 0;
}

.page-id-9507 .wp-block-quote p,
.page-id-9507 .wp-block-quote .wp-block-columns {
  margin-bottom: 0.5em;
}

@media (max-width: 768px) {
  .page-id-9507 .wp-block-quote .wp-block-columns {
    flex-direction: column-reverse;
  }
  .media-button > .wp-block-column {
    margin-bottom: 0;
  }
  .page-id-9507 .wp-block-quote p,
  .page-id-9507 .wp-block-quote .wp-block-columns {
    margin-bottom: 0.5em;
  }
}
.m0 {
  margin: 0 !important;
}

.p0 {
  padding: 0 !important;
}

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

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

.pt0 {
  margin-top: 0rem !important;
}

.pb0 {
  margin-bottom: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn.full-width {
  width: 100%;
}

@media (min-width: 768px) {
  .reorder {
    order: -1 !important;
  }
}
@media (max-width: 767px) {
  .pipeline {
    overflow-x: scroll;
  }
  .pipeline > div {
    width: 730px;
  }
  .pipeline .kt-row-column-wrap.kt-has-3-columns {
    grid-template-columns: minmax(0, 30%) minmax(0, 45%) minmax(0, 25%) !important;
  }
}
.content li a {
  color: #0d5daa;
}

.content li a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .page-id-10219 .inner-banner {
    min-height: 350px;
    height: 350px;
    margin-top: 100px;
  }
}
.ultp-block-4b66fc .ultp-image-block-wrapper {
  text-align: left !important;
}

.kb-row-layout-id5042_8cb643-36 {
  background-image: url("https://wp-poolbeg-pharma-2021.s3.eu-west-2.amazonaws.com/media/2023/12/MANAGEMENT-TEAM-TRACK-RECORD.jpg") !important;
}

.ultp-category-in a {
  color: #0072bc !important;
}

.ultp-image-block-wrapper .ultp-image-button a {
  background-color: #0072bc !important;
  color: #fff !important;
}
.ultp-image-block-wrapper .ultp-image-button a:hover {
  background-color: rgb(0, 83.0744680851, 137) !important;
  color: #fff !important;
}

.presentation-banner h1,
.presentation-banner h2,
.presentation-banner h3,
.presentation-banner a {
  color: #fff !important;
  margin: 0 !important;
}
.presentation-banner a {
  color: #7ed3f7 !important;
}

/* -------------------------------------------
***** Packages *****
------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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;
}

.main-slider {
  width: 100%;
  height: 80vh;
  min-height: 390px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s ease;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .main-slider {
    min-height: 450px;
  }
}
@media (min-width: 1441px) {
  .main-slider {
    min-height: 700px;
    height: 75vh;
  }
}
.main-slider .slick-slide {
  height: 80vh;
  min-height: 390px;
  position: relative;
}
@media (min-width: 1025px) {
  .main-slider .slick-slide {
    min-height: 450px;
  }
}
@media (min-width: 1441px) {
  .main-slider .slick-slide {
    min-height: 700px;
    height: 75vh;
  }
}
.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: rgba(0, 0, 0, 0.3);
}
.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;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  text-align: center;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption {
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption {
    padding: 0 60px;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .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 {
    padding: 30px;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption.has-background h2,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption.has-background p {
  color: #00344d;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption p {
  color: white;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1,
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2 {
  font-family: "campton-light", sans-serif;
  margin: 0;
  position: relative;
  font-size: 4rem;
  text-align: left;
}
@media (max-width: 768px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h1,
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption h2 {
    font-size: 2.7rem;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption p {
  max-width: 100%;
  padding-top: 2rem;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 1025px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption p {
    max-width: 80%;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 501px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons {
    flex-wrap: wrap;
    justify-content: unset;
    align-content: center;
    flex-direction: row-reverse;
    flex: auto;
  }
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons .btn-content {
  padding: 20px;
  background-color: #00344d;
  color: white;
  text-align: left;
  font-family: "campton-light", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons .btn-content .banner-title {
  font-family: "calibri", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons .btn-content .banner-date {
  font-family: "calibri", sans-serif;
  font-size: 14px;
  font-weight: 100;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons .icon {
  padding: 50px 50px 0 50px;
  background-color: #00344d;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons .icon svg {
  width: 60px;
}
.main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons a {
  display: flex;
  align-self: flex-start;
  margin-right: 0;
  justify-content: center;
  margin-bottom: 15px;
  flex-direction: row;
}
@media (min-width: 501px) {
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons a {
    margin-right: 10px;
  }
  .main-slider .slick-slide .banner-caption-wrapper .wrap .banner-caption .banner-caption-buttons a:last-child {
    margin-right: 0;
  }
}
.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 {
  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 {
  animation: slideIn 2.4s cubic-bezier(0.4, 0.29, 0.01, 1);
}
.main-slider .slick-slide.slick-active .caption {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.7s cubic-bezier(0.32, 0.34, 0, 1.62) 0.6s;
}
.main-slider .slick-slide.youtube iframe {
  transform: scale(1.2);
}
.main-slider .slick-arrow {
  position: absolute;
  cursor: pointer;
  bottom: 50%;
  top: 58%;
  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: 20px;
  transform: translate(0, -100%) rotate(180deg);
}
.main-slider .slick-arrow.slick-next {
  right: 20px;
  transform: translate(0, -100%);
}
@media (max-width: 768px) {
  .main-slider .slick-arrow {
    display: none !important;
  }
}
.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-right: 8px;
}
.main-slider .slick-dots li button {
  width: 15px;
  height: 16px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #ffffff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #ffffff;
  background-color: unset;
  transition: all 0.3s ease;
}
.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: white;
  opacity: 1;
  background: white;
}

.home .container {
  position: relative;
}

.pagingInfo {
  position: absolute;
  top: -50px;
  z-index: 99999;
  left: 50%;
  right: 50%;
  margin: 0 auto;
  color: white;
}

/* -------------------------------------------
***** INNER BANNERS *****
------------------------------------------- */
.inner-banner {
  margin-bottom: 0;
  position: relative;
  width: 100%;
  opacity: 1;
  transition: all 1.2s ease;
  overflow: hidden;
  min-height: 450px;
  height: 450px;
  margin-bottom: 80px;
}
@media (min-width: 1025px) {
  .inner-banner {
    height: 480px;
  }
}
.inner-banner .banner-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
}
.inner-banner .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  opacity: 0.8;
}
.inner-banner .wrap {
  height: 100%;
}
.inner-banner .wrap .banner-caption-internal {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.inner-banner .wrap .banner-caption-internal .page-title {
  color: white;
  margin-top: auto;
  padding-left: 0rem;
  margin-bottom: 20px;
  font-family: "campton-light", sans-serif;
  font-size: 40px;
  text-transform: unset;
  z-index: 1;
}

/* -------------------------------------------
***** Includes *****
------------------------------------------- */
.btn,
.pum .buttons button,
.pum .buttons a,
.gform_wrapper button {
  overflow: hidden;
  text-align: center;
  padding: 12px 30px;
  background: transparent;
  border: 3px solid white;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "calibri", sans-serif;
  font-weight: bold;
  line-height: normal;
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  font-weight: 700;
  min-width: 180px;
  width: fit-content;
  color: white;
  transition: all 0.3s ease-in-out;
}
.btn svg,
.btn span,
.pum .buttons button svg,
.pum .buttons a svg,
.gform_wrapper button svg,
.pum .buttons button span,
.pum .buttons a span,
.gform_wrapper button span {
  z-index: 2;
  position: relative;
  color: white;
}
.btn svg path,
.btn span path,
.pum .buttons button svg path,
.pum .buttons a svg path,
.gform_wrapper button svg path,
.pum .buttons button span path,
.pum .buttons a span path,
.gform_wrapper button span path {
  fill: white;
}
.btn:hover, .btn:active, .btn:focus,
.pum .buttons button:hover,
.pum .buttons a:hover,
.gform_wrapper button:hover,
.pum .buttons button:active,
.pum .buttons a:active,
.gform_wrapper button:active,
.pum .buttons button:focus,
.pum .buttons a:focus,
.gform_wrapper button:focus {
  background: white;
  border-color: white;
  color: #0072bc;
}
.btn:hover svg path,
.btn:hover span path, .btn:active svg path,
.btn:active span path, .btn:focus svg path,
.btn:focus span path,
.pum .buttons button:hover svg path,
.pum .buttons a:hover svg path,
.gform_wrapper button:hover svg path,
.pum .buttons button:hover span path,
.pum .buttons a:hover span path,
.gform_wrapper button:hover span path,
.pum .buttons button:active svg path,
.pum .buttons a:active svg path,
.gform_wrapper button:active svg path,
.pum .buttons button:active span path,
.pum .buttons a:active span path,
.gform_wrapper button:active span path,
.pum .buttons button:focus svg path,
.pum .buttons a:focus svg path,
.gform_wrapper button:focus svg path,
.pum .buttons button:focus span path,
.pum .buttons a:focus span path,
.gform_wrapper button:focus span path {
  color: #0072bc;
  fill: #0072bc;
}
.btn.btn-primary, .btn.is-style-btn-primary,
.pum .buttons button,
.pum .buttons a,
.gform_wrapper button {
  border-color: #0072bc;
  background: #0072bc;
  color: white;
}
.btn.btn-primary path, .btn.is-style-btn-primary path,
.pum .buttons button path,
.pum .buttons a path,
.gform_wrapper button path {
  fill: #0072bc;
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.is-style-btn-primary:hover, .btn.is-style-btn-primary:active, .btn.is-style-btn-primary:focus,
.pum .buttons button:hover,
.pum .buttons a:hover,
.gform_wrapper button:hover,
.pum .buttons button:active,
.pum .buttons a:active,
.gform_wrapper button:active,
.pum .buttons button:focus,
.pum .buttons a:focus,
.gform_wrapper button:focus {
  border-color: #0072bc;
  background: white;
  color: #0072bc;
}
.btn.btn-primary:hover svg,
.btn.btn-primary:hover span, .btn.btn-primary:active svg,
.btn.btn-primary:active span, .btn.btn-primary:focus svg,
.btn.btn-primary:focus span, .btn.is-style-btn-primary:hover svg,
.btn.is-style-btn-primary:hover span, .btn.is-style-btn-primary:active svg,
.btn.is-style-btn-primary:active span, .btn.is-style-btn-primary:focus svg,
.btn.is-style-btn-primary:focus span,
.pum .buttons button:hover svg,
.pum .buttons a:hover svg,
.gform_wrapper button:hover svg,
.pum .buttons button:hover span,
.pum .buttons a:hover span,
.gform_wrapper button:hover span,
.pum .buttons button:active svg,
.pum .buttons a:active svg,
.gform_wrapper button:active svg,
.pum .buttons button:active span,
.pum .buttons a:active span,
.gform_wrapper button:active span,
.pum .buttons button:focus svg,
.pum .buttons a:focus svg,
.gform_wrapper button:focus svg,
.pum .buttons button:focus span,
.pum .buttons a:focus span,
.gform_wrapper button:focus span {
  color: #0072bc;
}
.btn.btn-primary:hover svg path,
.btn.btn-primary:hover span path, .btn.btn-primary:active svg path,
.btn.btn-primary:active span path, .btn.btn-primary:focus svg path,
.btn.btn-primary:focus span path, .btn.is-style-btn-primary:hover svg path,
.btn.is-style-btn-primary:hover span path, .btn.is-style-btn-primary:active svg path,
.btn.is-style-btn-primary:active span path, .btn.is-style-btn-primary:focus svg path,
.btn.is-style-btn-primary:focus span path,
.pum .buttons button:hover svg path,
.pum .buttons a:hover svg path,
.gform_wrapper button:hover svg path,
.pum .buttons button:hover span path,
.pum .buttons a:hover span path,
.gform_wrapper button:hover span path,
.pum .buttons button:active svg path,
.pum .buttons a:active svg path,
.gform_wrapper button:active svg path,
.pum .buttons button:active span path,
.pum .buttons a:active span path,
.gform_wrapper button:active span path,
.pum .buttons button:focus svg path,
.pum .buttons a:focus svg path,
.gform_wrapper button:focus svg path,
.pum .buttons button:focus span path,
.pum .buttons a:focus span path,
.gform_wrapper button:focus span path {
  fill: #0072bc;
}
.btn.btn-secondary, .btn.is-style-btn-secondary,
.pum .buttons button.btn-secondary,
.pum .buttons a.btn-secondary,
.gform_wrapper button.btn-secondary,
.pum .buttons button.is-style-btn-secondary,
.pum .buttons a.is-style-btn-secondary,
.gform_wrapper button.is-style-btn-secondary {
  border-color: #00344d;
  color: white;
  background: #00344d;
}
.btn.btn-secondary path, .btn.is-style-btn-secondary path,
.pum .buttons button.btn-secondary path,
.pum .buttons a.btn-secondary path,
.gform_wrapper button.btn-secondary path,
.pum .buttons button.is-style-btn-secondary path,
.pum .buttons a.is-style-btn-secondary path,
.gform_wrapper button.is-style-btn-secondary path {
  fill: #00344d;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus, .btn.is-style-btn-secondary:hover, .btn.is-style-btn-secondary:active, .btn.is-style-btn-secondary:focus,
.pum .buttons button.btn-secondary:hover,
.pum .buttons a.btn-secondary:hover,
.gform_wrapper button.btn-secondary:hover,
.pum .buttons button.btn-secondary:active,
.pum .buttons a.btn-secondary:active,
.gform_wrapper button.btn-secondary:active,
.pum .buttons button.btn-secondary:focus,
.pum .buttons a.btn-secondary:focus,
.gform_wrapper button.btn-secondary:focus,
.pum .buttons button.is-style-btn-secondary:hover,
.pum .buttons a.is-style-btn-secondary:hover,
.gform_wrapper button.is-style-btn-secondary:hover,
.pum .buttons button.is-style-btn-secondary:active,
.pum .buttons a.is-style-btn-secondary:active,
.gform_wrapper button.is-style-btn-secondary:active,
.pum .buttons button.is-style-btn-secondary:focus,
.pum .buttons a.is-style-btn-secondary:focus,
.gform_wrapper button.is-style-btn-secondary:focus {
  background: white;
  border-color: #00344d;
  color: #00344d;
}
.btn.btn-secondary:hover svg,
.btn.btn-secondary:hover span, .btn.btn-secondary:active svg,
.btn.btn-secondary:active span, .btn.btn-secondary:focus svg,
.btn.btn-secondary:focus span, .btn.is-style-btn-secondary:hover svg,
.btn.is-style-btn-secondary:hover span, .btn.is-style-btn-secondary:active svg,
.btn.is-style-btn-secondary:active span, .btn.is-style-btn-secondary:focus svg,
.btn.is-style-btn-secondary:focus span,
.pum .buttons button.btn-secondary:hover svg,
.pum .buttons a.btn-secondary:hover svg,
.gform_wrapper button.btn-secondary:hover svg,
.pum .buttons button.btn-secondary:hover span,
.pum .buttons a.btn-secondary:hover span,
.gform_wrapper button.btn-secondary:hover span,
.pum .buttons button.btn-secondary:active svg,
.pum .buttons a.btn-secondary:active svg,
.gform_wrapper button.btn-secondary:active svg,
.pum .buttons button.btn-secondary:active span,
.pum .buttons a.btn-secondary:active span,
.gform_wrapper button.btn-secondary:active span,
.pum .buttons button.btn-secondary:focus svg,
.pum .buttons a.btn-secondary:focus svg,
.gform_wrapper button.btn-secondary:focus svg,
.pum .buttons button.btn-secondary:focus span,
.pum .buttons a.btn-secondary:focus span,
.gform_wrapper button.btn-secondary:focus span,
.pum .buttons button.is-style-btn-secondary:hover svg,
.pum .buttons a.is-style-btn-secondary:hover svg,
.gform_wrapper button.is-style-btn-secondary:hover svg,
.pum .buttons button.is-style-btn-secondary:hover span,
.pum .buttons a.is-style-btn-secondary:hover span,
.gform_wrapper button.is-style-btn-secondary:hover span,
.pum .buttons button.is-style-btn-secondary:active svg,
.pum .buttons a.is-style-btn-secondary:active svg,
.gform_wrapper button.is-style-btn-secondary:active svg,
.pum .buttons button.is-style-btn-secondary:active span,
.pum .buttons a.is-style-btn-secondary:active span,
.gform_wrapper button.is-style-btn-secondary:active span,
.pum .buttons button.is-style-btn-secondary:focus svg,
.pum .buttons a.is-style-btn-secondary:focus svg,
.gform_wrapper button.is-style-btn-secondary:focus svg,
.pum .buttons button.is-style-btn-secondary:focus span,
.pum .buttons a.is-style-btn-secondary:focus span,
.gform_wrapper button.is-style-btn-secondary:focus span {
  color: #00344d;
}
.btn.btn-secondary:hover svg path,
.btn.btn-secondary:hover span path, .btn.btn-secondary:active svg path,
.btn.btn-secondary:active span path, .btn.btn-secondary:focus svg path,
.btn.btn-secondary:focus span path, .btn.is-style-btn-secondary:hover svg path,
.btn.is-style-btn-secondary:hover span path, .btn.is-style-btn-secondary:active svg path,
.btn.is-style-btn-secondary:active span path, .btn.is-style-btn-secondary:focus svg path,
.btn.is-style-btn-secondary:focus span path,
.pum .buttons button.btn-secondary:hover svg path,
.pum .buttons a.btn-secondary:hover svg path,
.gform_wrapper button.btn-secondary:hover svg path,
.pum .buttons button.btn-secondary:hover span path,
.pum .buttons a.btn-secondary:hover span path,
.gform_wrapper button.btn-secondary:hover span path,
.pum .buttons button.btn-secondary:active svg path,
.pum .buttons a.btn-secondary:active svg path,
.gform_wrapper button.btn-secondary:active svg path,
.pum .buttons button.btn-secondary:active span path,
.pum .buttons a.btn-secondary:active span path,
.gform_wrapper button.btn-secondary:active span path,
.pum .buttons button.btn-secondary:focus svg path,
.pum .buttons a.btn-secondary:focus svg path,
.gform_wrapper button.btn-secondary:focus svg path,
.pum .buttons button.btn-secondary:focus span path,
.pum .buttons a.btn-secondary:focus span path,
.gform_wrapper button.btn-secondary:focus span path,
.pum .buttons button.is-style-btn-secondary:hover svg path,
.pum .buttons a.is-style-btn-secondary:hover svg path,
.gform_wrapper button.is-style-btn-secondary:hover svg path,
.pum .buttons button.is-style-btn-secondary:hover span path,
.pum .buttons a.is-style-btn-secondary:hover span path,
.gform_wrapper button.is-style-btn-secondary:hover span path,
.pum .buttons button.is-style-btn-secondary:active svg path,
.pum .buttons a.is-style-btn-secondary:active svg path,
.gform_wrapper button.is-style-btn-secondary:active svg path,
.pum .buttons button.is-style-btn-secondary:active span path,
.pum .buttons a.is-style-btn-secondary:active span path,
.gform_wrapper button.is-style-btn-secondary:active span path,
.pum .buttons button.is-style-btn-secondary:focus svg path,
.pum .buttons a.is-style-btn-secondary:focus svg path,
.gform_wrapper button.is-style-btn-secondary:focus svg path,
.pum .buttons button.is-style-btn-secondary:focus span path,
.pum .buttons a.is-style-btn-secondary:focus span path,
.gform_wrapper button.is-style-btn-secondary:focus span path {
  fill: #00344d;
}
.btn.full-width,
.pum .buttons button.full-width,
.pum .buttons a.full-width,
.gform_wrapper button.full-width {
  display: block;
}
.btn.center,
.pum .buttons button.center,
.pum .buttons a.center,
.gform_wrapper button.center {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}

/* block : cta */
.cta {
  box-shadow: 0 0 24px -8px black;
}

.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;
  position: relative;
}
.cta-content:after {
  content: "";
  position: absolute;
  right: 0%;
  left: 0;
  /* top: 0; */
  bottom: 40px;
  background: url(../../themes/brighterir-gutenberg-framework/img/custom/plus-sign.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  width: 45px;
  height: 45px;
  z-index: 99;
}
.cta-content.open:after {
  background: url(../../themes/brighterir-gutenberg-framework/img/custom/minus-sign.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-content h3 {
  font-size: 2.7rem;
  margin: -10px 0 30px 0;
  color: #00344d;
  font-family: "campton-bold", sans-serif;
}

.cta-content *:last-child {
  margin-bottom: 0;
}

@media (max-width: 799px) {
  .cta-content:before {
    height: 6px;
    top: 0;
    left: 30px;
    right: 30px;
  }
}
.cta.horis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cta.horis .cta-bg {
  width: 40%;
  order: 1;
}

.cta.horis .cta-content {
  width: 60%;
  padding: 40px 30px 40px 30px;
  order: 2;
}

.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;
}

.hidden-content {
  padding: 45px 45px 20px;
  background-color: #e6e7e8;
  display: none;
}

/* 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 {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 1025px) {
  .image-cta .wrap {
    align-items: flex-start;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .image-cta .wrap {
    height: 2px;
  }
}
.image-cta .wrap .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 {
    width: 60%;
  }
}
.image-cta .wrap .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 {
  margin-top: 0;
}
.image-cta .wrap .image-cta-content-wrapper h2 {
  font-family: "campton-light", sans-serif;
  color: #00344d;
  margin-bottom: 0;
  padding: 15px 20px;
}
@media (min-width: 769px) {
  .image-cta .wrap .image-cta-content-wrapper h2 {
    padding: 5px 20px;
  }
}
.image-cta .wrap .image-cta-content-wrapper p {
  color: white;
  font-weight: 600;
  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 {
    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;
}

.is-style-intro {
  font-size: 2.1rem;
  color: #00344d;
  font-weight: 600;
  margin-bottom: 40px;
}
@media (min-width: 1025px) {
  .is-style-intro {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 50px;
  }
}

.is-style-feature {
  color: #00344d;
  font-weight: 600;
  position: relative;
  font-size: 24px;
}

/* block : posts */
.excerpt {
  margin: 0 0 50px 0;
}

.excerpt h3 {
  font-size: 22px;
  margin-top: 0;
  font-family: "Helvetica-Bold";
}

.excerpt h3 a {
  font-weight: 600;
  color: var(--secondary);
}

.excerpt h3 a:hover,
.excerpt h3 a:active,
.excerpt h3 a:focus {
  color: var(--primary);
}

.excerpt p {
  margin: 0;
}

.excerpt p.meta {
  font-family: var(--secondaryFont);
  margin-bottom: 20px;
  color: #be1e2d;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.excerpt .btn-sm {
  font-family: var(--secondaryFont);
  margin-top: 25px;
  color: #ffffff;
  color: #be1e2d;
}

.excerpt .btn-sm:hover,
.excerpt .btn-sm:hover:active,
.excerpt .btn-sm:hover:focus {
  color: var(--secondary);
}

.posts.col .excerpt,
.boxed .posts .excerpt {
  padding: 20px;
  background: var(--lightgrey);
  background: -moz-linear-gradient(top, rgb(239, 239, 239) 0%, rgb(249, 249, 249) 100%);
  background: -webkit-linear-gradient(top, rgb(239, 239, 239) 0%, rgb(249, 249, 249) 100%);
  background: linear-gradient(to bottom, rgb(239, 239, 239) 0%, rgb(249, 249, 249) 100%);
  border-top: 2px solid var(--primary);
}

@media (min-width: 900px) {
  .posts.col {
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
  }
  .posts.col .excerpt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: calc(50% - 50px);
    margin-left: 50px;
    padding: 30px;
  }
  .posts.col .excerpt > * {
    width: 100%;
  }
  .posts.col .excerpt p {
    margin-bottom: 25px;
  }
  .posts.col .excerpt p.meta {
    margin-bottom: 20px;
  }
  .posts.col .excerpt .btn-sm {
    margin-top: auto;
  }
}
@media (min-width: 1300px) {
  .posts.col .excerpt {
    width: calc(33.33% - 50px);
  }
  .boxed .posts .excerpt {
    padding: 40px 70px;
  }
}
/* block : grid */
.team-member-grid {
  background: transparent;
  position: relative;
}
@media (min-width: 501px) {
  .team-member-grid {
    width: 31.6%;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
    vertical-align: top;
    min-width: auto;
    margin: 0;
    padding: 0;
    margin: 0 2% 40px 0;
  }
  .team-member-grid:nth-child(3n+5) {
    margin-right: 0;
  }
}
.team-member-grid.open {
  border-bottom: 3px solid #00344d;
}
.team-member-grid .image {
  display: block;
  position: relative;
  overflow: hidden;
  margin: auto;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.team-member-grid .image img {
  width: 100%;
  margin: 0;
}
.team-member-grid.open .name:after {
  background: url(../../themes/brighterir-gutenberg-framework/img/custom/icon_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.team-member-grid .name {
  padding: 15px 0;
  text-align: left;
  position: relative;
}
.team-member-grid .name:after {
  content: "";
  position: absolute;
  right: 0%;
  top: -25px;
  background: url(../../themes/brighterir-gutenberg-framework/img/custom/icon-up.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  width: 25px;
  height: 25px;
  z-index: 99;
}
.team-member-grid .name h3 {
  font-size: 2.2rem;
  margin: 0 0 4px 0;
  color: #00344d;
  font-weight: 100;
  font-family: "campton-light", sans-serif;
  display: inline;
  padding-right: 10px;
  padding-top: 10px;
}
.team-member-grid .name a {
  padding-left: 10px;
  border-left: 2px solid #00344d;
}
.team-member-grid .name p {
  display: block;
  font-size: 1.5rem;
  margin: 0;
  color: #00344d;
  font-weight: 100;
  font-family: "campton-light", sans-serif;
  text-transform: uppercase;
  padding-top: 10px;
}
.team-member-grid .name p + p {
  margin-top: 5px;
}

.bio {
  display: none;
  background-color: #ffffff;
  margin-bottom: 50px;
  position: relative;
  float: left;
  width: calc(100% - 10px);
  overflow: hidden;
  color: #58595b;
}

/* block : team list */
.team-member {
  margin: 0 0 50px 0;
}
@media (min-width: 501px) {
  .team-member .team-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 30px -20px;
  }
}

.team-member .head h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.team-member .head span {
  display: block;
  padding: 25px 20px;
  background: -moz-linear-gradient(-45deg, var(--lightgrey) 0%, rgb(235, 226, 242) 100%);
  background: -webkit-linear-gradient(-45deg, var(--lightgrey) 0%, rgb(235, 226, 242) 100%);
  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: 100%;
    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: 100%;
    float: left;
  }
}
@media (min-width: 1000px) {
  .bio-photo {
    width: 300px;
  }
  .bio-body {
    width: 100%;
  }
}
.stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats .stats-svg {
  padding: 20px 0;
}
.stats .active-stats,
.stats .inactive-stats {
  text-align: center;
}
.stats .active-stats span,
.stats .inactive-stats span {
  display: block;
  font-size: 38px;
  font-weight: 700;
  padding-bottom: 5px;
}
.stats.is-style-primary .active-stats {
  color: #00344d;
}
.stats.is-style-secondary .active-stats {
  color: #00344d;
}

.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 #ffffff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #ffffff;
  background-color: unset;
  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: white;
  opacity: 1;
  background: white;
}

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 {
  font-size: 2.8rem !important;
  border-radius: 0px 0px 0px 0px;
  border-width: 0px 0px 0px 0px;
  padding: 20px 20px !important;
  margin-top: 14px;
  background: #00344d;
  font-family: "campton-light", sans-serif;
  color: white;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger:before, .wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger:after {
  background: white;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active {
  background: #e6e7e8;
  border-top: 1px solid #e6e7e8;
  padding-top: 10px !important;
  line-height: 1.5;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-title {
  padding-top: 20px !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active .kt-accordion-panel-inner {
  background: #e6e7e8;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner {
  border: 0;
  padding: 20px;
}
@media (min-width: 769px) {
  .wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner {
    padding: 40px 20px;
  }
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-active {
  background: #fff;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-active .kt-accordion-panel-inner {
  background: #fff;
  border-bottom: 1px solid #e6e7e8;
}

.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 {
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 3px solid #00344d !important;
  border-top: 3px solid transparent !important;
  display: block !important;
  padding: 0.5em 0 !important;
  text-align: center !important;
  color: #00344d !important;
  font-family: "campton-light", sans-serif !important;
  text-decoration: none !important;
  padding: 10px 20px !important;
  border-radius: 0 !important;
  width: 100%;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
    width: auto;
  }
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title, .wp-block-kadence-tabs ul.kt-tabs-title-list li:hover a.kt-tab-title {
  background-color: transparent !important;
  border-top-color: #00344d !important;
  border-bottom-color: #ffffff !important;
  color: #00344d !important;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title span, .wp-block-kadence-tabs ul.kt-tabs-title-list li:hover a.kt-tab-title span {
  color: #00344d !important;
}
.wp-block-kadence-tabs div.kt-tabs-content-wrap .wp-block-kadence-tab {
  border: 0;
  padding: 0;
}

ul.kt-tabs-title-list {
  position: relative;
}
ul.kt-tabs-title-list:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #00344d;
  position: absolute;
  bottom: 0;
  right: 0;
}

.kt-tabs-layout-vtabs > .kt-tabs-title-list {
  float: left;
  width: 24% !important;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-right: 45px !important;
}

.kt-tabs-layout-vtabs ul.kt-tabs-title-list {
  position: relative;
}
.kt-tabs-layout-vtabs ul.kt-tabs-title-list:after {
  content: none;
}
.kt-tabs-layout-vtabs ul.kt-tabs-title-list li a.kt-tab-title {
  border-left: 3px solid #00344d !important;
  border-right: 3px solid transparent !important;
  border-bottom: none !important;
  border-top: none !important;
}
.kt-tabs-layout-vtabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title {
  border-left: 3px solid #ffffff !important;
  border-right: 3px solid #00344d !important;
  border-bottom-color: #ffffff !important;
}
.kt-tabs-layout-vtabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title span {
  color: #00344d !important;
}

.kt-tab-inner-content {
  padding: 20px 20px 40px 20px !important;
}

.counter {
  text-align: center;
  padding: 20px 0;
}
.counter span {
  font-size: 5.2rem;
  font-weight: 600;
  color: #00344d;
  line-height: 5.4rem;
}
.counter p {
  color: #00344d;
  font-weight: 600;
  padding-top: 10px;
  font-size: 21px;
  margin-bottom: 0;
}

/* block : History */
.history .year-block .year {
  font-weight: 600;
  font-family: "campton-light", sans-serif;
  font-size: 1.8rem;
  background-color: #00344d;
  color: white;
  display: block;
  padding: 5px;
  width: 150px;
  text-align: center;
}
@media (min-width: 769px) {
  .history .year-block .year {
    margin: 0 auto;
  }
}
.history .year-block .events {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.history .year-block .events:before {
  content: "";
  height: 100%;
  position: absolute;
  width: 2px;
  background-color: #00344d;
  top: 0;
  left: 50%;
}
@media (max-width: 768px) {
  .history .year-block .events:before {
    left: 74px;
  }
}
.history .year-block .events .event-block {
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  width: 50%;
  padding: 40px 100px 40px 40px;
  align-self: flex-end;
  text-align: left;
}
.history .year-block .events .event-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 54, 118, 0.1);
  bottom: 0;
  left: -20px;
}
@media (min-width: 769px) {
  .history .year-block .events .event-block.odd {
    padding: 40px 40px 40px 100px;
    align-self: flex-start;
    text-align: right;
  }
  .history .year-block .events .event-block.odd:before {
    top: 0;
    left: 0;
  }
}
@media (max-width: 768px) {
  .history .year-block .events .event-block {
    width: calc(100% - 74px);
  }
}
.history .year-block .events .event-block:last-of-type {
  margin-bottom: 0;
}

.content-box {
  position: relative;
  background-size: cover;
  background-position: center;
}
.content-box .content-box-overlay {
  background: black;
  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-item a,
.latest-document-item h3 {
  font-size: 2.6rem;
  color: #00344d;
  font-weight: 400;
  margin-bottom: 0;
}
.latest-document-item span {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #58595b;
}

.video-popup a {
  display: block;
  position: relative;
  max-height: 400px;
  min-height: 365px;
  transition: all 0.3s ease-in-out;
}
.video-popup a svg,
.video-popup a path {
  fill: #00344d;
  transition: all 0.3s ease-in-out;
}
.video-popup a g {
  stroke: #00344d;
  transition: all 0.3s ease-in-out;
}
.video-popup a .play-btn {
  display: block;
  width: 82px;
  position: relative;
  -webkit-transition: background 0.2s ease-in-out;
  -moz-transition: background 0.2s ease-in-out;
  -ms-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  margin-right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-popup a .content {
  position: absolute;
  background-color: rgba(1, 50, 116, 0.95);
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  display: flex;
  font-family: "calibri", sans-serif;
}
.video-popup a .content .title-content .date {
  color: #00344d;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 10px;
}
.video-popup a .content .title-content .title {
  color: white;
  font-size: 20px;
  font-weight: bold;
}
.video-popup:hover svg,
.video-popup:hover path {
  fill: #ffffff;
  transition: all 0.3s ease-in-out;
}
.video-popup:hover g {
  stroke: #ffffff;
  transition: all 0.3s ease-in-out;
}

.financial-calendar {
  margin: 0 0 5rem 0;
  border-bottom: 1px solid #00344d;
}
.financial-calendar .event {
  padding: 10px 20px;
  border-bottom: 1px solid rgba(118, 118, 118, 0.2);
}
.financial-calendar .event:last-child {
  border-bottom: none;
}
.financial-calendar .event.head {
  background: #00344d;
}
.financial-calendar .event.head .event-title {
  color: #00344d;
  font-weight: 600;
  font-family: "campton-light", sans-serif;
}
@media (max-width: 768px) {
  .financial-calendar .event.head .event-title {
    display: none;
  }
}
.financial-calendar .event p {
  margin: 0;
}
.financial-calendar .event p .meta {
  display: block;
}
.financial-calendar .event p .meta.sm {
  font-size: 1.5rem;
}
.financial-calendar .event p strong {
  display: block;
}
.financial-calendar .event p strong .title {
  display: block;
  font-weight: 600;
}
.financial-calendar .event p em {
  display: block;
  font-size: 1.6rem;
  font-style: normal;
}
.financial-calendar .event:last-child {
  border: none;
}
.financial-calendar .event .event-links {
  margin-top: 1rem;
  padding-left: 30px;
  position: relative;
}
.financial-calendar .event .event-links svg {
  position: absolute;
  left: 0;
}
.financial-calendar .event .event-links svg g {
  fill: #00344d;
}
.financial-calendar .event .event-links a {
  font-size: 1.4rem;
  margin: 0 0 0 0.6rem;
}
.financial-calendar .event .event-info {
  font-size: 1.6rem;
  padding-top: 1.2rem;
}

@media (min-width: 769px) {
  .financial-calendar .event p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
    align-items: center;
    color: #00344d;
  }
  .financial-calendar .event p .meta {
    width: 180px;
  }
  .financial-calendar .event p .meta.sm span {
    display: block;
  }
  .financial-calendar .event p a {
    width: 220px;
  }
  .financial-calendar .event p strong {
    width: calc(100% - 400px);
  }
  .financial-calendar .event .event-info {
    padding-top: 1.5rem;
    padding-left: 130px;
  }
  .financial-calendar.upcoming .event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
  }
  .financial-calendar.upcoming .event p {
    width: calc(100% - 130px);
  }
  .financial-calendar.upcoming .event .event-links {
    width: 130px;
    margin-top: -1px;
    display: flex;
    align-items: center;
  }
  .financial-calendar.upcoming .event .event-info p {
    width: 100%;
  }
}
.video-library-select {
  margin-top: 20px;
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.video-library-select p.message {
  margin: 0;
  padding: 5px;
  font-style: italic;
}
.video-library-select legend {
  font-family: "campton-light", sans-serif;
  color: #00344d;
  font-size: 2rem;
  display: inline-block;
  float: left;
  padding-right: 2rem;
}
.video-library-select .media-type-label {
  display: inline-block;
  position: relative;
  padding: 0 15px 0 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.video-library-select .media-type-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.video-library-select .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.video-library-select .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.video-library-select .media-type-label:hover input ~ .checkmark {
  background-color: #ccc;
}
.video-library-select .media-type-label input:checked ~ .checkmark {
  background-color: #00344d;
}
.video-library-select .media-type-label input:checked ~ .checkmark:after {
  display: block;
}

.video-library-tabs {
  margin: 20px 0 0 0;
  padding: 0;
  border-bottom: 3px solid #00344d;
}
.video-library-tabs .video-library-tab {
  display: inline-block;
  margin-bottom: -3px;
}
.video-library-tabs .video-library-tab span {
  padding: 5px 20px;
  font-size: 20px;
  display: block;
}
.video-library-tabs .video-library-tab.video-library-tab-inactive {
  cursor: pointer;
  color: #58595b;
}
.video-library-tabs .video-library-tab.video-library-tab-inactive:hover {
  border-top: 3px solid #00344d;
}
.video-library-tabs .video-library-tab.video-library-tab-active {
  color: #00344d;
  border-bottom: 3px solid white;
  border-top: 3px solid #00344d;
}

#video-library-list tr {
  border-bottom: 1px solid #ddd;
}
#video-library-list td {
  padding: 1.8rem 0.7em;
  min-width: 88px;
}

.video_library_list__active {
  display: block;
}

.video_library_list__inactive {
  display: none;
}

.video_library__media_list {
  display: flex;
  flex-wrap: wrap;
}
.video_library__media_list .media-popup {
  width: 48%;
  margin: 1rem 1% 1.5rem 1%;
  height: auto;
}
.video_library__media_list .media-popup.small {
  width: 31.3%;
  min-width: 150px;
}
.video_library__media_list .media-popup.small .video_library_single {
  height: 205px;
}
.video_library__media_list .media-popup.small .content .date {
  font-size: 1.8rem;
}
.video_library__media_list .media-popup.small .content .title {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .video_library__media_list .media-popup {
    width: 100%;
  }
  .video_library__media_list .media-popup.small {
    width: 100%;
  }
  .video_library__media_list .media-popup.small .content .title {
    font-size: 1.8rem;
  }
}
.video_library__media_list .media-popup .video_library_single {
  width: 100%;
  height: 350px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.video_library__media_list .media-popup .video_library_single:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 52, 77, 0.2);
  -webkit-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
.video_library__media_list .media-popup .video_library_single svg {
  position: absolute;
  left: calc(50% - 30px);
  top: calc(50% - 30px);
  margin: 0 auto;
  transition: all 0.3s ease-in;
}
.video_library__media_list .media-popup .video_library_single:hover:before {
  transition: background 0.3s ease-in;
  background-color: rgba(0, 52, 77, 0.4);
}
.video_library__media_list .media-popup .video_library_single:hover svg {
  transform: scale(1.1);
  transition: all 0.3s ease-in;
}
.video_library__media_list .media-popup .content {
  background: #00344d;
  margin-top: -7px;
  padding: 15px;
  font-family: "campton-light", sans-serif;
}
.video_library__media_list .media-popup .content .date {
  color: #00344d;
  margin-bottom: 0;
}
.video_library__media_list .media-popup .content a {
  color: white;
  font-weight: 100;
}
.video_library__media_list .media-popup .content .title {
  font-size: 2rem;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  .video_library__media_list .media-popup .content {
    min-height: 125px;
  }
}

.cta.reason-to-invest {
  -webkit-box-shadow: 0 0 24px -8px #000;
  box-shadow: 0 0 24px -8px #000;
  width: 23%;
  background: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  vertical-align: top;
  min-width: auto;
  margin: 0;
  padding: 0;
  margin: 0 2% 0 0;
}
.cta.reason-to-invest .cta-bg {
  display: block;
  min-height: 200px;
}
.cta.reason-to-invest .cta-content {
  padding: 37px 20px 25px;
  min-height: 130px;
}
.cta.reason-to-invest .cta-content:after {
  content: none;
}
.cta.reason-to-invest .cta-content h3 {
  font-family: "campton-light", sans-serif;
  font-size: 2rem;
}
.cta.reason-to-invest .cta-content.open {
  background-color: #00344d;
}
.cta.reason-to-invest .cta-content.open h3 {
  color: #ffffff;
}
.cta.reason-to-invest:last-child, .cta.reason-to-invest:last-of-type {
  margin-right: 0 !important;
}

#cta-block_60f1974e946da {
  margin-right: 0 !important;
}

@media (max-width: 799px) {
  .cta.reason-to-invest {
    width: 47%;
    margin-bottom: 20px;
  }
  .cta.reason-to-invest .cta-content {
    min-height: unset;
  }
}
@media (max-width: 600px) {
  .cta.reason-to-invest {
    width: 100%;
    margin-bottom: 20px;
  }
}
.reason-to-invest.hidden-content {
  padding: 45px 45px 20px;
  background-color: #e6e7e8;
  display: none;
  margin-top: 10px;
  margin-bottom: 40px;
  position: relative;
  float: left;
  width: calc(100% - 10px);
  overflow: hidden;
}
.reason-to-invest.hidden-content p {
  color: #00344d;
  font-size: 22px;
}

.content-carousel.slick-slider {
  position: relative;
}
.content-carousel.slick-slider .slick-prev,
.content-carousel.slick-slider .slick-next {
  position: absolute;
  color: #00344d;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top: 50%;
  font-size: 3rem;
  transform: translateY(-50%);
  z-index: 1;
  border: 0;
  background: transparent;
}
.content-carousel.slick-slider .slick-next {
  right: -1em;
}
.content-carousel.slick-slider .slick-prev {
  left: -1em;
}

.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;
}

.layout p + .bir-block,
.layout p + .wp-block-group,
.layout p + .wp-block-kadence-rowlayout,
.layout p + .wp-block-kadence-accordion,
.layout p + .wp-block-kadence-tabs,
.layout p + .wp-block-columns,
.layout p + .wp-block-archives,
.layout p + .wp-block-image,
.layout p + .wp-block-quote,
.layout p + .wp-block-embed,
.layout p + table {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 1025px) {
  .layout p + .bir-block,
  .layout p + .wp-block-group,
  .layout p + .wp-block-kadence-rowlayout,
  .layout p + .wp-block-kadence-accordion,
  .layout p + .wp-block-kadence-tabs,
  .layout p + .wp-block-columns,
  .layout p + .wp-block-archives,
  .layout p + .wp-block-image,
  .layout p + .wp-block-quote,
  .layout p + .wp-block-embed,
  .layout p + table {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

@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;
  }
}
