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

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

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

img {
  border: 0;
}

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

ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  text-decoration: none;
}

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

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

.group:after {
  content: "";
  display: table;
  clear: both;
}

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

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

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

.wrap {
  max-width: 1420px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.wrap.large-wrap {
  max-width: 1420px;
}
.wrap.full-width {
  max-width: none;
  margin-left: 50px;
  margin-right: 50px;
}
.wrap:not(.full-width) {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1024px) {
  .wrap:not(.full-width) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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

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

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

.m0 {
  margin: 0 !important;
}

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

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

.p0 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a {
  display: inline-block;
  color: #ba8568;
  font-weight: 500;
}

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

a:hover,
a:active,
a:focus {
  color: rgb(201.9954545455, 161.2818181818, 139.0045454545);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: #010101;
}
h1.heading-brown, h2.heading-brown, h3.heading-brown, h4.heading-brown, h5.heading-brown, h6.heading-brown {
  color: #ba8568;
}

h2 {
  font-size: 3.4rem;
  text-transform: uppercase;
  color: #ba8568;
}
.home h2, .page-id-181 h2 {
  color: #010101;
}

h3 {
  font-size: 2.8rem;
  text-transform: uppercase;
  color: #ba8568;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin: 0 0 20px 0;
  padding: 0;
}

ul, ol {
  padding: 0 0 0 25px;
  margin: 0 0 30px 0;
}
ul li, ol li {
  list-style: disc;
  margin-bottom: 10px;
}
ul li ul, ol li ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
ul li ul li, ol li ul li {
  list-style: circle;
}

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

blockquote {
  padding: 4rem;
  margin: 0 0 2rem 0;
  background: linear-gradient(#CCA57E, #DABE90);
  position: relative;
  color: white;
  font-style: italic;
  font-weight: 500;
}
@media (min-width: 1025px) {
  blockquote {
    padding: 4rem;
  }
}
blockquote:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
blockquote > * {
  position: relative;
  z-index: 2;
}
cite {
  display: block;
  font-size: 2.6rem;
  font-weight: 500;
  color: #010101;
  text-align: right;
  font-style: italic;
  margin-top: 1rem;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.page-title {
  text-transform: uppercase;
  color: #010101;
  font-size: 3.8rem;
  font-weight: 400;
  margin-bottom: 4rem;
}
@media (min-width: 1025px) {
  .page-title {
    font-size: 4.2rem;
    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 fadeInLeftShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5rem, 0, 0);
    transform: translate3d(-5rem, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-5rem, 0, 0);
    transform: translate3d(-5rem, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftShort {
  -webkit-animation-name: fadeInLeftShort;
  animation-name: fadeInLeftShort;
}

@-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 fadeInRightShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5rem, 0, 0);
    transform: translate3d(5rem, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(5rem, 0, 0);
    transform: translate3d(5rem, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightShort {
  -webkit-animation-name: fadeInRightShort;
  animation-name: fadeInRightShort;
}

@-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 fadeInUpShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 5rem, 0);
    transform: translate3d(0, 5rem, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 5rem, 0);
    transform: translate3d(0, 5rem, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpShort {
  -webkit-animation-name: fadeInUpShort;
  animation-name: fadeInUpShort;
}

@-webkit-keyframes fadeInDownShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -5rem, 0);
    transform: translate3d(0, -5rem, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownShort {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -5rem, 0);
    transform: translate3d(0, -5rem, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownShort {
  -webkit-animation-name: fadeInDownShort;
  animation-name: fadeInDownShort;
}

@-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-100ms {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}

.animated.delay-200ms {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}

.animated.delay-300ms {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}

.animated.delay-400ms {
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}

.animated.delay-500ms {
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}

.animated.delay-600ms {
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

.animated.delay-700ms {
  -webkit-animation-delay: 700ms;
  animation-delay: 700ms;
}

.animated.delay-800ms {
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}

.animated.delay-900ms {
  -webkit-animation-delay: 900ms;
  animation-delay: 900ms;
}

.animated.delay-1000ms {
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}

.animated.delay-1100ms {
  -webkit-animation-delay: 1100ms;
  animation-delay: 1100ms;
}

.animated.delay-1200ms {
  -webkit-animation-delay: 1200ms;
  animation-delay: 1200ms;
}

.animated.delay-1300ms {
  -webkit-animation-delay: 1300ms;
  animation-delay: 1300ms;
}

.animated.delay-1400ms {
  -webkit-animation-delay: 1400ms;
  animation-delay: 1400ms;
}

.animated.delay-1500ms {
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms;
}

.animated.delay-1600ms {
  -webkit-animation-delay: 1600ms;
  animation-delay: 1600ms;
}

.animated.delay-1700ms {
  -webkit-animation-delay: 1700ms;
  animation-delay: 1700ms;
}

.animated.delay-1800ms {
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms;
}

.animated.delay-1900ms {
  -webkit-animation-delay: 1900ms;
  animation-delay: 1900ms;
}

.animated.delay-2000ms {
  -webkit-animation-delay: 2000ms;
  animation-delay: 2000ms;
}

.animated.delay-2100ms {
  -webkit-animation-delay: 2100ms;
  animation-delay: 2100ms;
}

.animated.delay-2200ms {
  -webkit-animation-delay: 2200ms;
  animation-delay: 2200ms;
}

.animated.delay-2300ms {
  -webkit-animation-delay: 2300ms;
  animation-delay: 2300ms;
}

.animated.delay-2400ms {
  -webkit-animation-delay: 2400ms;
  animation-delay: 2400ms;
}

.animated.delay-2500ms {
  -webkit-animation-delay: 2500ms;
  animation-delay: 2500ms;
}

.animated.delay-2600ms {
  -webkit-animation-delay: 2600ms;
  animation-delay: 2600ms;
}

.animated.delay-2700ms {
  -webkit-animation-delay: 2700ms;
  animation-delay: 2700ms;
}

.animated.delay-2800ms {
  -webkit-animation-delay: 2800ms;
  animation-delay: 2800ms;
}

.animated.delay-2900ms {
  -webkit-animation-delay: 2900ms;
  animation-delay: 2900ms;
}

.animated.delay-3000ms {
  -webkit-animation-delay: 3000ms;
  animation-delay: 3000ms;
}

.animated.delay-3100ms {
  -webkit-animation-delay: 3100ms;
  animation-delay: 3100ms;
}

.animated.delay-3200ms {
  -webkit-animation-delay: 3200ms;
  animation-delay: 3200ms;
}

.animated.delay-3300ms {
  -webkit-animation-delay: 3300ms;
  animation-delay: 3300ms;
}

.animated.delay-3400ms {
  -webkit-animation-delay: 3400ms;
  animation-delay: 3400ms;
}

.animated.delay-3500ms {
  -webkit-animation-delay: 3500ms;
  animation-delay: 3500ms;
}

.animated.delay-3600ms {
  -webkit-animation-delay: 3600ms;
  animation-delay: 3600ms;
}

.animated.delay-3700ms {
  -webkit-animation-delay: 3700ms;
  animation-delay: 3700ms;
}

.animated.delay-3800ms {
  -webkit-animation-delay: 3800ms;
  animation-delay: 3800ms;
}

.animated.delay-3900ms {
  -webkit-animation-delay: 3900ms;
  animation-delay: 3900ms;
}

.animated.delay-4000ms {
  -webkit-animation-delay: 4000ms;
  animation-delay: 4000ms;
}

.animated.delay-4100ms {
  -webkit-animation-delay: 4100ms;
  animation-delay: 4100ms;
}

.animated.delay-4200ms {
  -webkit-animation-delay: 4200ms;
  animation-delay: 4200ms;
}

.animated.delay-4300ms {
  -webkit-animation-delay: 4300ms;
  animation-delay: 4300ms;
}

.animated.delay-4400ms {
  -webkit-animation-delay: 4400ms;
  animation-delay: 4400ms;
}

.animated.delay-4500ms {
  -webkit-animation-delay: 4500ms;
  animation-delay: 4500ms;
}

.animated.delay-4600ms {
  -webkit-animation-delay: 4600ms;
  animation-delay: 4600ms;
}

.animated.delay-4700ms {
  -webkit-animation-delay: 4700ms;
  animation-delay: 4700ms;
}

.animated.delay-4800ms {
  -webkit-animation-delay: 4800ms;
  animation-delay: 4800ms;
}

.animated.delay-4900ms {
  -webkit-animation-delay: 4900ms;
  animation-delay: 4900ms;
}

.animated.delay-5000ms {
  -webkit-animation-delay: 5000ms;
  animation-delay: 5000ms;
}

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

@media (max-width: 768px) {
  .delay-100ms, .delay-200ms, .delay-300ms, .delay-400ms, .delay-500ms, .delay-600ms, .delay-700ms {
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
  }
}
.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;
  }
}
.hidden-animated {
  visibility: hidden;
  opacity: 0;
}

html {
  background: white;
  overflow-x: hidden;
  font-size: 55%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
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: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 300;
  color: #010101;
  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;
}

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

/*!
 * Font Awesome Free 5.10.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

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

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

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

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

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

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

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

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

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

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

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

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

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

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

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

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

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

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

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

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

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

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

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

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

.fa-paw:before {
  content: "\f1b0";
}

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

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

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

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

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

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

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

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

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

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

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

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

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

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

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

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

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

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

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

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

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

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

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

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

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

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

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

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

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

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

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

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

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

.fa-stopwatch:before {
  content: "\f2f2";
}

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

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

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

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

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

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

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

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

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

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

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

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

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

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

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

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

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

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

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

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

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

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

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

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

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("fonts/fontawesome/fa-brands-400.eot");
  src: url("fonts/fontawesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("fonts/fontawesome/fa-brands-400.woff") format("woff"), url("fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("fonts/fontawesome/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("fonts/fontawesome/fa-regular-400.eot");
  src: url("fonts/fontawesome/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-regular-400.woff2") format("woff2"), url("fonts/fontawesome/fa-regular-400.woff") format("woff"), url("fonts/fontawesome/fa-regular-400.ttf") format("truetype"), url("fonts/fontawesome/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("fonts/fontawesome/fa-solid-900.eot");
  src: url("fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("fonts/fontawesome/fa-solid-900.woff") format("woff"), url("fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* -------------------------------------------
***** Header *****
------------------------------------------- */
header {
  background: white;
  position: fixed;
  z-index: 10;
  width: 100%;
  transition: all 0.4s ease;
  top: 0;
  left: 0;
  padding-top: 5px;
}
header:before {
  content: "";
  width: 100%;
  left: 0;
  height: 5px;
  background: #dabf90;
  position: absolute;
  top: 0;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
}
header .wrap:before {
  content: "";
  width: 70%;
  left: 0;
  height: 5px;
  background: #010101;
  position: absolute;
  top: 0;
}
@media (min-width: 1025px) {
  header .wrap:before {
    width: 35%;
  }
}
@media (min-width: 1921px) {
  header .wrap:before {
    width: 40%;
  }
}
header.sticky {
  background: white;
  transition: all 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1025px) {
  header.sticky {
    padding: 0;
  }
}
header.sticky .logo {
  transition: all 0.2s;
  background: none;
  width: 130px;
  height: 100%;
  padding: 15px 0;
}
@media (min-width: 1025px) {
  header.sticky .logo {
    padding: 15px 0;
    width: 160px;
  }
}
header.sticky .logo a {
  padding: 0;
  background: none;
}
header.sticky .logo img,
header.sticky .logo svg {
  transition: all 0.2s;
  width: 100%;
  height: auto;
  max-height: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header.sticky .logo img,
  header.sticky .logo svg {
    height: 40px;
  }
}
@media (min-width: 1025px) {
  .home header.sticky .logo img,
  .home header.sticky .logo svg {
    display: block;
  }
}
header.sticky .header-right .burger-menu {
  background: none;
}
header.sticky .header-right .burger-menu span {
  background: #010101;
}
header.sticky .header-right nav.header-nav:not(.mmenu-active) > ul {
  padding-bottom: 0 !important;
}
header.sticky .header-right nav.header-nav:not(.mmenu-active) > ul > li {
  padding: 25px 8px;
}
@media (min-width: 1441px) {
  header.sticky .header-right nav.header-nav:not(.mmenu-active) > ul > li {
    padding: 30px 8px;
  }
}
@media (min-width: 1441px) and (min-width: 1441px) {
  header.sticky .header-right nav.header-nav:not(.mmenu-active) > ul > li {
    padding: 0;
  }
  header.sticky .header-right nav.header-nav:not(.mmenu-active) > ul > li a {
    padding: 30px 10px;
  }
}
header.sticky .header-right nav.header-nav:not(.mmenu-active) > ul > li.menu-item-has-children > a:after {
  bottom: -25px;
}
@media (max-width: 1024px) {
  header.hamb-open {
    background: #FBF9F4;
    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;
    background-color: #FBF9F4;
    z-index: 3;
  }
  header.hamb-open .logo {
    width: 130px;
    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: #010101;
  }
}
header .logo {
  transition: all 0.2s;
  background: none;
  width: 200px;
  height: 100%;
  margin-bottom: 0;
  padding: 10px 0;
  line-height: 1;
  position: relative;
}
@media (min-width: 769px) {
  header .logo {
    width: 240px;
  }
}
@media (min-width: 1025px) {
  header .logo {
    width: 200px;
    padding: 15px 0;
  }
}
@media (min-width: 1441px) {
  header .logo {
    width: 250px;
  }
}
header .logo a {
  padding: 0;
  background: none;
  display: block;
}
header .logo a img,
header .logo a svg {
  transition: all 0.3s;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .logo a img,
  header .logo a svg {
    height: 38px;
  }
}
header .logo img,
header .logo svg {
  width: 100%;
}
header .logo img path,
header .logo svg path {
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
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;
}
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;
}
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: #010101;
  font-family: "Montserrat", sans-serif;
  transition: all 0.4s ease;
  font-size: 16px;
}
@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: 30px 8px;
    background: linear-gradient(transparent, transparent 90%);
    transition: all 0.1s ease-in-out;
  }
}
@media (min-width: 1025px) and (min-width: 1441px) {
  header .header-right nav.header-nav > ul > li {
    padding: 0;
  }
  header .header-right nav.header-nav > ul > li a {
    padding: 30px 10px;
  }
}
@media (min-width: 1025px) {
  header .header-right nav.header-nav > ul > li.menu-item-has-children > a {
    position: relative;
  }
  header .header-right nav.header-nav > ul > li.menu-item-has-children > a:after {
    position: absolute;
    bottom: -30px;
    height: 6px;
    width: calc(100% + 20px);
    content: "";
    transition: all 0.1s ease-in-out;
    opacity: 0;
    left: -10px;
    pointer-events: none;
    background: #FBF9F4;
  }
  header .header-right nav.header-nav > ul > li.current-page-parent > a, header .header-right nav.header-nav > ul > li.current-menu-item > a {
    color: #ba8568;
    border-bottom: none;
  }
  header .header-right nav.header-nav > ul > li:last-child {
    margin-right: -8px;
  }
}
@media (min-width: 1025px) and (min-width: 1441px) {
  header .header-right nav.header-nav > ul > li:last-child {
    margin-right: -10px;
  }
}
@media (min-width: 1025px) {
  header .header-right nav.header-nav > ul > li:hover {
    background: linear-gradient(rgba(218, 191, 144, 0.5), transparent 90%);
  }
  header .header-right nav.header-nav > ul > li:hover.menu-item-has-children > a:after {
    opacity: 1;
  }
  header .header-right nav.header-nav > ul > li:hover.menu-item-has-children li.dropdown-image .header-image .image-bg {
    width: 70%;
  }
  header .header-right nav.header-nav > ul > li:hover.menu-item-has-children li.dropdown-image .header-image ul.sub-menu {
    width: 30%;
  }
  header .header-right nav.header-nav > ul > li:hover.menu-item-has-children li.dropdown-image .header-image ul.sub-menu li {
    width: 100%;
  }
  header .header-right nav.header-nav > ul > li:hover > ul {
    display: block;
    flex-direction: column;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all 0.4s ease;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image {
    max-width: 1420px;
    padding: 3rem 2rem;
    margin-left: auto;
    margin-right: auto;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image {
    display: flex;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image .image-bg {
    width: 30%;
    background-size: cover;
    min-height: 330px;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image ul.sub-menu {
    width: 70%;
    padding-left: 3rem;
    margin-left: 3rem;
    border-left: 1px solid #ba8568;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image ul.sub-menu li {
    width: 33.3%;
    text-align: left;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image ul.sub-menu li a {
    padding: 8px 0;
    padding-right: 10px;
    font-size: 16px;
    font-weight: 300;
    color: #010101;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image ul.sub-menu li a:hover {
    color: #ba8568;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image .header-image ul.sub-menu li.current-menu-item a {
    color: #ba8568;
    font-weight: 400;
  }
  header .header-right nav.header-nav > ul > li:hover > ul li.dropdown-image.col-2 .header-image ul.sub-menu li {
    width: 50%;
  }
  header .header-right nav.header-nav > ul > li:hover > ul ul {
    left: 0;
    position: relative;
    background: #FBF9F4;
  }
  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: #FBF9F4;
    display: none;
    margin-bottom: 0;
    margin: 0;
    padding: 0;
    transition: all 0.4s ease-in-out;
  }
  header .header-right nav.header-nav > ul > li ul li {
    border: 0;
    border-top: none;
    position: relative;
    margin: 0;
    padding: 0;
  }
  header .header-right nav.header-nav > ul > li ul li a {
    color: #010101;
    font-size: 18px;
    padding: 15px 20px;
    border-bottom: none;
    text-shadow: none;
  }
  header .header-right nav.header-nav > ul > li ul li header .header-right nav.header-nav > ul > li ul li.current-menu-parent > a {
    background: none;
    color: white;
  }
  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: #8A8D8F;
  }
  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: #FBF9F4;
  }
  header .header-right nav.header-nav.full-width {
    width: 100%;
  }
  header .header-right nav.header-nav.full-width > ul {
    min-width: 100%;
    padding: 20px 30px;
  }
}
@media (max-width: 1024px) and (max-width: 500px) {
  header .header-right nav.header-nav.full-width > ul {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  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: 50%;
    transform: translateY(-50%) rotate(180deg);
    color: white;
  }
  header .header-right nav.header-nav.collapsed > ul li.menu-item-has-children > a.submenu-visible:before {
    transform: translateY(-50%);
  }
  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% - 8rem);
  }
  header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children > a:before {
    right: -4rem;
    pointer-events: none;
    text-align: center;
    width: 4rem;
    height: 100%;
    background-image: url("img/custom/arrow-black.svg");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
  }
  header .header-right nav.header-nav.not-clickable > ul > li.menu-item-has-children > a:after {
    right: -8rem;
    pointer-events: none;
    content: "";
    text-align: center;
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
  }
  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;
  }
  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: 0px;
    padding-top: 5px;
  }
  header .header-right nav.header-nav > ul li {
    padding: 0;
    width: 100%;
    position: relative;
  }
  header .header-right nav.header-nav > ul li:after {
    content: "";
    position: absolute;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background-color: #5C5C5C;
    opacity: 0.25;
    bottom: 0;
  }
  header .header-right nav.header-nav > ul li:last-child:after {
    display: none;
  }
  header .header-right nav.header-nav > ul li a {
    padding: 10px 30px;
    font-size: 18px;
    padding-right: 20px;
    color: #010101;
    white-space: nowrap;
  }
  header .header-right nav.header-nav > ul li.current-menu-item > a {
    background: white;
    color: #ba8568;
    opacity: 1 !important;
    padding: 10px 40px;
  }
  header .header-right nav.header-nav > ul li.current-menu-item > a:before {
    background: white;
  }
  header .header-right nav.header-nav > ul li.current-menu-item > a:after {
    background: white;
  }
  header .header-right nav.header-nav > ul li.current-page-parent > ul {
    display: block !important;
  }
  header .header-right nav.header-nav > ul li.current-page-parent > a:before {
    transform: translateY(-50);
  }
  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: 50px;
    padding-right: 50px;
    line-height: inherit;
    border: 0;
    font-size: 17px;
    color: #ba8568;
    opacity: 1 !important;
  }
  header .header-right nav.header-nav > ul li ul li.current-menu-item a {
    padding-left: 50px;
    padding-right: 50px;
    line-height: inherit;
  }
}
header .header-right .burger-menu {
  padding: 10px;
  z-index: 9999;
  position: relative;
  width: 28px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -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: 3px;
  width: 100%;
  background: #010101;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -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: 8px;
}
header .header-right .burger-menu span:nth-child(4) {
  top: 16px;
}
header .header-right .burger-menu[menu-mobile=active] span {
  background: #010101;
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(1) {
  top: 7px;
  width: 0%;
  left: 50%;
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .header-right .burger-menu[menu-mobile=active] span:nth-child(4) {
  top: 7px;
  width: 0%;
  left: 50%;
}

/* -------------------------------------------
***** Footer *****
------------------------------------------- */
footer {
  background: #dabf90;
  margin-top: 4rem;
  position: relative;
}
@media (min-width: 1025px) {
  footer {
    margin-top: 5rem;
    padding-bottom: 5rem;
  }
  footer:after {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5rem;
    background-color: white;
  }
}
footer:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
}
footer > * {
  position: relative;
  z-index: 2;
}
footer a {
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  color: white;
}
footer a:hover {
  color: #D7C6E6;
}
footer a:hover path {
  fill: #D7C6E6;
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
footer .sub-footer {
  padding: 4rem 0;
}
@media (min-width: 501px) {
  footer .sub-footer {
    padding: 6rem 0;
  }
}
footer .sub-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}
footer .sub-footer .wrap > .col:nth-child(1) {
  width: 100%;
}
@media (max-width: 1024px) {
  footer .sub-footer .wrap > .col:nth-child(1) {
    order: 3;
  }
  footer .sub-footer .wrap > .col:nth-child(2) {
    order: 1;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
  footer .sub-footer .wrap > .col:nth-child(3) {
    order: 2;
    margin-top: 2rem;
  }
  footer .sub-footer .wrap > *:nth-child(4) {
    order: 0;
  }
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap {
    flex-direction: row;
    align-items: center;
  }
  footer .sub-footer .wrap > .col:nth-child(1) {
    width: 50%;
    margin-bottom: 2rem;
  }
  footer .sub-footer .wrap > .col:nth-child(2) {
    width: 50%;
    margin-bottom: 2rem;
  }
  footer .sub-footer .wrap > .col:nth-child(3) {
    width: 70%;
  }
  footer .sub-footer .wrap > *:nth-child(4) {
    width: 30%;
  }
}
footer .sub-footer .wrap .copyright {
  font-size: 1.6rem;
}
footer .sub-footer .wrap p {
  font-weight: 500;
  color: white;
  margin-bottom: 0;
}
footer .sub-footer .wrap .social-wrapper {
  float: left;
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap .social-wrapper {
    float: right;
  }
}
footer .sub-footer .wrap .social-wrapper ul {
  padding: 0;
  margin: 0;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap .social-wrapper ul {
    justify-content: flex-end;
  }
}
footer .sub-footer .wrap .social-wrapper ul li {
  padding-left: 0;
}
footer .sub-footer .wrap .social-wrapper ul li:last-child {
  padding-right: 0;
}
footer .sub-footer .wrap .social-wrapper ul li a {
  width: 4rem;
  height: 4rem;
  background: white;
  position: relative;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  color: black;
}
footer .sub-footer .wrap .social-wrapper ul li a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.2s ease-in-out;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 2.2rem;
}
footer .sub-footer .wrap .social-wrapper ul li a:hover {
  background: #010101;
}
footer .sub-footer .wrap .social-wrapper ul li a:hover i {
  color: white;
}
footer .sub-footer .wrap ul {
  margin-bottom: 0;
  padding: 0;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap ul {
    flex-wrap: nowrap;
  }
}
footer .sub-footer .wrap ul li {
  list-style: none;
  margin-bottom: 0;
  width: auto;
  padding-right: 20px;
  white-space: nowrap;
  margin-top: 10px;
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap ul li {
    margin-top: 0;
    padding: 0 20px;
  }
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap ul li:last-child {
    padding-right: 0;
  }
}
@media (min-width: 1025px) {
  footer .sub-footer .wrap ul li:first-child {
    padding-left: 0;
  }
}
footer .sub-footer .wrap ul li a {
  color: white;
  font-size: 1.6rem;
  font-weight: 400;
}
footer .sub-footer .wrap ul li a:hover {
  color: #ba8568;
}
footer .sub-footer .wrap .credit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 0px;
}
@media (min-width: 769px) {
  footer .sub-footer .wrap .credit {
    font-size: 1.8rem;
    text-align: right;
    margin-top: 0;
  }
}
footer .sub-footer .wrap .credit a {
  color: white;
  font-weight: 400;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}
footer .sub-footer .wrap .credit a span {
  transition: all 0.2 ease-in-out;
}
footer .sub-footer .wrap .credit a:hover {
  opacity: 1;
  color: white;
}
footer .sub-footer .wrap .credit a:hover span {
  color: #ffd341;
}

.no-sidebar {
  margin-top: 4rem;
}
@media (min-width: 1025px) {
  .no-sidebar {
    margin-top: 6rem;
  }
}

.sidebar-enabled {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 4rem;
}
@media (min-width: 1025px) {
  .sidebar-enabled {
    margin-top: 6rem;
    flex-direction: row-reverse;
    position: relative;
  }
}
@media (min-width: 1025px) {
  .sidebar-enabled .content {
    float: right;
    width: calc(100% - 320px);
  }
}
.sidebar-enabled .sidebar-container-float {
  margin-top: 40px;
}
.sidebar-enabled .sidebar-container-float.careers-sidebar {
  width: 25%;
}
@media (max-width: 1024px) {
  .sidebar-enabled .sidebar-container-float.careers-sidebar {
    width: 100%;
  }
}
.sidebar-enabled .sidebar-container-float .sidebar {
  width: 100%;
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .sidebar-enabled .sidebar-container-float .sidebar {
    position: relative !important;
    top: 0 !important;
    opacity: 1 !important;
  }
}
@media (min-width: 1025px) {
  .sidebar-enabled .sidebar-container-float .sidebar {
    width: 240px;
    transition: opacity 0.2s ease-in-out;
  }
}
@media (min-width: 1025px) {
  .sidebar-enabled .sidebar-container-float {
    width: 20%;
    margin-top: 0;
    margin-right: 80px;
    min-height: 510px;
    max-width: 30%;
    left: 0;
    top: 0;
    position: relative;
  }
}
.sidebar-enabled .sidebar-container-float .sidebar-widget > h3 {
  margin-bottom: 30px;
  color: #ba8568;
  font-size: 1.6rem;
  padding: 10px 20px;
  display: none;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget > h3 a {
  color: #ba8568;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget {
  margin-bottom: 50px;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget:last-child {
  margin-bottom: 0;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu {
  margin-bottom: 0;
  margin: 0;
  padding: 0 2.5rem;
  background-color: rgba(1, 1, 1, 0.05);
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li {
  list-style: none;
  margin: 0;
  border-bottom: 1px solid rgba(1, 1, 1, 0.15);
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li:last-child {
  border-bottom: 0;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li.current-menu-item {
  position: relative;
  z-index: 1;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li.current-menu-item:first-child:before {
  border-top: 1px solid rgba(1, 1, 1, 0.15);
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li.current-menu-item:last-child:before {
  border-bottom: 1px solid rgba(1, 1, 1, 0.15);
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li.current-menu-item:before {
  content: "";
  position: absolute;
  left: -2.5rem;
  background-color: white;
  z-index: -1;
  width: calc(100% + 5rem);
  height: 100%;
  top: 0;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li.current-menu-item a {
  color: #ba8568;
  font-weight: 500;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li a {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #010101;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  padding: 1rem 0;
}
.sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li a:hover, .sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li a:active, .sidebar-enabled .sidebar-container-float .sidebar-widget .widget ul.menu li a:focus {
  color: #ba8568;
}

/* --- 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;
}
main table thead tr, main table tfoot tr, main .tablepress thead tr, main .tablepress tfoot tr {
  border-bottom: 2px solid #ba8568;
}
main table thead th, main table tfoot th, main .tablepress thead th, main .tablepress tfoot th {
  font-weight: 600;
  font-size: 12px;
  background: none;
  color: #010101;
  border-bottom: 0px;
}
main table thead th, main .tablepress thead th {
  text-align: left;
  padding: 8px 16px;
  color: #010101;
  white-space: nowrap;
  font-weight: 600;
}
main table thead th:first-child, main .tablepress thead th:first-child {
  padding-left: 8px;
}
main table thead th:last-child, main .tablepress thead th:last-child {
  padding-right: 8px;
}
main table tbody, main .tablepress tbody {
  border-bottom: 1px solid #ba8568;
}
main table tbody tr td, main .tablepress tbody tr td {
  vertical-align: middle;
  padding: 10px 16px;
}
main table tbody tr td:first-child, main .tablepress tbody tr td:first-child {
  padding-left: 8px;
}
main table tbody tr td:last-child, main .tablepress tbody tr td:last-child {
  padding-right: 8px;
}
main table tbody tr td.download, main table tbody tr td.qa, main table tbody tr td.report, main table tbody tr td.release, main table tbody tr td.webcast, main .tablepress tbody tr td.download, main .tablepress tbody tr td.qa, main .tablepress tbody tr td.report, main .tablepress tbody tr td.release, main .tablepress tbody tr td.webcast {
  width: 1rem;
  text-align: center;
}
main table tbody tr td.download a i.fas, main table tbody tr td.qa a i.fas, main table tbody tr td.report a i.fas, main table tbody tr td.release a i.fas, main table tbody tr td.webcast a i.fas, main .tablepress tbody tr td.download a i.fas, main .tablepress tbody tr td.qa a i.fas, main .tablepress tbody tr td.report a i.fas, main .tablepress tbody tr td.release a i.fas, main .tablepress tbody tr td.webcast a i.fas {
  font-size: 1.4rem;
}
main table tbody tr td.download a i.far, main table tbody tr td.qa a i.far, main table tbody tr td.report a i.far, main table tbody tr td.release a i.far, main table tbody tr td.webcast a i.far, main .tablepress tbody tr td.download a i.far, main .tablepress tbody tr td.qa a i.far, main .tablepress tbody tr td.report a i.far, main .tablepress tbody tr td.release a i.far, main .tablepress tbody tr td.webcast a i.far {
  font-size: 1.6rem;
}
main table tbody tr td.file_name span, main .tablepress tbody tr td.file_name span {
  font-weight: 300;
  margin-left: 10px;
}
main table tbody tr th, main .tablepress tbody tr th {
  font-weight: 500;
}
main table tbody tr:nth-child(odd), main .tablepress tbody tr:nth-child(odd) {
  background-color: rgba(218, 191, 144, 0.0509803922);
}
main table tfoot th, main .tablepress tfoot th {
  background: none;
}

/* -------------------------------------------
***** GRAVITY FORM STYLING *****
------------------------------------------- */
.gform_confirmation_wrapper {
  padding: 1.2rem 2.5rem;
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 500;
  border: 0px;
  border-radius: 0px;
  line-height: 1.3;
  color: white;
  background: #82C201;
}

.gform_wrapper form .gform_body .gform_fields {
  margin: 0;
  padding: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
}
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label {
  margin-bottom: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label .validation_error,
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label .validation_message {
  transform: translateY(0%);
}
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label:last-child .validation_error,
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label:last-child .validation_message {
  left: auto;
  right: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label .name_first {
  padding-right: 0 !important;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_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 .gform_fields .gfield.hidden_label > label {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button),
.gform_wrapper form .gform_body .gform_fields .gfield textarea,
.gform_wrapper form .gform_body .gform_fields .gfield select {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  -webkit-appearance: none;
  border: 0;
  padding: 15px;
  background: rgba(1, 1, 1, 0.1);
  overflow: hidden;
  color: #010101;
}
.gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button) option,
.gform_wrapper form .gform_body .gform_fields .gfield textarea option,
.gform_wrapper form .gform_body .gform_fields .gfield select option {
  font-family: Helvetica;
  font-weight: 400;
  font-style: normal;
}
.gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button)::-webkit-input-placeholder,
.gform_wrapper form .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder,
.gform_wrapper form .gform_body .gform_fields .gfield select::-webkit-input-placeholder { /* Edge */
  color: #010101;
}
.gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button):-ms-input-placeholder,
.gform_wrapper form .gform_body .gform_fields .gfield textarea:-ms-input-placeholder,
.gform_wrapper form .gform_body .gform_fields .gfield select:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #010101;
}
.gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button)::placeholder,
.gform_wrapper form .gform_body .gform_fields .gfield textarea::placeholder,
.gform_wrapper form .gform_body .gform_fields .gfield select::placeholder {
  color: #010101;
}
.gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button):active, .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button):focus,
.gform_wrapper form .gform_body .gform_fields .gfield textarea:active,
.gform_wrapper form .gform_body .gform_fields .gfield textarea:focus,
.gform_wrapper form .gform_body .gform_fields .gfield select:active,
.gform_wrapper form .gform_body .gform_fields .gfield select:focus {
  outline: none;
  border-color: #ccc;
}
.gform_wrapper form .gform_body .gform_fields .gfield select {
  background-image: url("//wp-hsh-coldstores-2021.s3.eu-west-2.amazonaws.com/media/2021/09/08101928/dropdown.svg");
  background-size: 14px;
  background-position: center right 14px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio {
  display: flex;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox li,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio li {
  align-items: center;
  display: flex;
  margin-right: 20px;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox li label,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio li label {
  margin-bottom: 0;
  margin-left: 10px;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox input[type=checkbox] {
  -webkit-appearance: checkbox;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio input[type=radio] {
  -webkit-appearance: radio;
}
.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_consent {
  display: flex;
  align-items: center;
}
.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_consent label {
  margin-bottom: 0;
  padding-left: 10px;
  text-transform: none;
  font-size: 1.4rem;
}
.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_consent input {
  width: 20px;
  height: 20px;
  margin-left: 0;
  -webkit-appearance: checkbox;
}
.gform_wrapper form .gform_body .gform_fields .gfield .ginput_container_consent .gfield_required {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield .ginput_recaptcha iframe {
  border: 0;
  background: none;
  padding: 0;
  border-radius: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield .validation_error,
.gform_wrapper form .gform_body .gform_fields .gfield .validation_message {
  color: #ef7e6a;
  background: none;
  padding: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_required {
  font-weight: 500;
  font-style: normal;
  color: #e54e36;
}
.gform_wrapper form .gform_footer {
  margin-top: 0 !important;
}
.gform_wrapper form .gform_footer button {
  padding: 0;
  border: 0;
  margin-top: 0rem;
  margin-right: 0rem;
  background: #ba8568;
  color: white;
  padding: 1.6rem 2.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
}
.gform_wrapper form .gform_footer button:hover {
  background: #dabf90;
  cursor: pointer;
}
.gform_wrapper .gform_validation_errors {
  background: #e54e36 !important;
  color: white;
  padding: 1rem 1.6rem !important;
  border-radius: 0 !important;
  border: 0px !important;
}
.gform_wrapper .gform_validation_errors > h2 {
  color: white !important;
}
.gform_wrapper .gform_validation_errors > h2 span {
  display: none !important;
}
.gform_wrapper .validation_error,
.gform_wrapper .validation_message {
  color: white !important;
  background-color: #e54e36 !important;
  padding: 0.1rem 0.5rem !important;
  border: 0 !important;
  position: absolute;
  left: 0;
  top: 100%;
  width: auto !important;
  transform: translateY(-100%);
  font-size: 1.2rem !important;
  text-transform: uppercase;
  font-weight: 600;
}
.gform_wrapper .validation_error:first-child,
.gform_wrapper .validation_message:first-child {
  right: 0;
  left: auto;
}

/*
	Custom Login
	Description: Style the WordPress Login page
*/
html body.login {
  min-height: 600px;
  display: flex;
  box-sizing: border-box;
  background: #ba8568;
  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;
}
html .login #login_error {
  margin: 0 20px 20px !important;
  background: tomato !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #login_error a {
  color: #fff;
}
html .login p.message {
  margin: 0 20px 20px;
  background: #86d81b !important;
  color: #fff;
  box-shadow: none !important;
  border: none;
}
html .login #nav {
  color: #010101 !important;
  float: right;
  margin: 0;
  padding: 0 20px 20px 0;
  opacity: 0.7;
}
html .login #nav a {
  color: #010101 !important;
  text-decoration: none !important;
}
html .login #nav a:hover {
  color: #010101 !important;
  text-decoration: underline !important;
}
html .login #login {
  margin: auto;
  background: #fff;
  padding: 0;
  min-width: 425px !important;
  overflow: hidden;
  border-radius: 0px;
  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: #010101 !important;
  text-decoration: none;
}
html .login #backtoblog a:hover {
  color: #010101 !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: #010101;
  position: relative;
  content: "";
  display: block;
}
html .login form input[type=text],
html .login form input[type=password] {
  background: rgba(1, 1, 1, 0.1);
  border: none;
  border-bottom: 1px solid #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #010101;
  padding: 10px 20px;
  margin-top: 5px;
  font-size: 16px;
  border-radius: 0;
}
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: #fff;
  text-decoration: none;
  border-radius: 0;
  background: #ba8568;
  border: none;
  cursor: pointer;
  text-shadow: none;
  margin-top: 15px;
  height: auto;
  box-shadow: none !important;
  border-radius: 0px;
}
html .login form p.submit #wp-submit:hover {
  background: rgb(193.9977272727, 147.1409090909, 121.5022727273);
}
html .login .button.wp-hide-pw {
  top: 15%;
}
html .login #login_error, html .login .message, html .login .success {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 !important;
}
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: #ba8568;
  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 {
  float: right;
}
.social-wrapper ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  margin-right: 20px;
}
.social-wrapper ul li {
  padding: 0 8px;
  list-style: none;
  margin-bottom: 0;
}
.social-wrapper ul li a {
  font-size: 21px;
  color: #ba8568;
  transition-duration: 0.3s;
}
.social-wrapper ul li a:hover {
  color: #dabf90;
  transition-duration: 0.3s;
}

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

@media (max-width: 768px) {
  .moove-gdpr-cookie-notice {
    text-align: center;
  }
  .moove-gdpr-button-holder .mgbutton {
    margin: auto !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .moove-gdpr-info-bar-content {
    display: flex !important;
  }
  .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    margin-top: 0 !important;
  }
  .gdpr-icon.moovegdpr-arrow-close:before,
  .gdpr-icon.moovegdpr-arrow-close:after {
    margin: auto;
    left: 0;
    right: 0;
  }
}
/* -------------------------------------------
***** Custom *****
------------------------------------------- */
::-moz-selection {
  background-color: #ba8568;
  color: white;
}

::selection {
  background-color: #ba8568;
  color: white;
}

@media (min-width: 501px) {
  body main > .container, body footer, header {
    margin-left: 5rem;
    margin-right: 5rem;
    width: calc(100% - 10rem);
  }
}

@media (min-width: 1025px) {
  body footer {
    overflow: hidden;
  }
}

.intro-home {
  padding: 4rem 4rem 5rem;
}
@media (min-width: 1025px) {
  .intro-home {
    padding: 4rem 0 5rem;
  }
}
.intro-home p.is-style-intro {
  font-size: 2.4rem;
  font-weight: 400;
  color: #010101;
  max-width: 964px;
  margin-left: auto;
  margin-right: auto;
}
.intro-home p.is-style-intro:last-child {
  margin-bottom: 0;
}

.investors-home {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.investors-home .col-3 {
  margin-left: -50px;
  width: calc(100% + 50px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.investors-home .col-3 > .column {
  width: 100%;
  margin-bottom: 3rem;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .investors-home .col-3 > .column {
    margin-bottom: 0;
    width: calc(33.33% - 50px);
  }
}
@media (max-width: 1024px) {
  .investors-home .col-3 > .column {
    width: calc(100% - 50px);
    margin-bottom: 5rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investors-home .col-3 > .column {
    display: block;
  }
}
.investors-home .col-3 > .column > *:last-child {
  margin-bottom: 0 !important;
}
.investors-home .col-3 > .column.share-price {
  padding: 3rem;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background: linear-gradient(45deg, #C89E79, #DABF90);
}
.investors-home .col-3 > .column.share-price > * {
  width: 100%;
}

.ctas-home {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .ctas-home .wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.ctas-home .col-2 {
  margin-left: -80px;
  width: calc(100% + 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ctas-home .col-2 > .column {
  width: 100%;
  margin-bottom: 3rem;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .ctas-home .col-2 > .column {
    margin-bottom: 0;
    width: calc(50% - 80px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ctas-home .col-2 > .column {
    display: block;
  }
}
.ctas-home .col-2 > .column > *:last-child {
  margin-bottom: 0;
}

.news-home {
  margin-top: 2rem;
}
@media (min-width: 1025px) {
  .news-home {
    margin-top: 8rem;
  }
}
.news-home h2 {
  margin-bottom: 4rem;
}

.investors-intro {
  margin-left: -80px;
  width: calc(100% + 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.investors-intro > .column {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.investors-intro > .column:first-child {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .investors-intro > .column:first-child {
    margin-bottom: 0;
    width: calc(100% - (80px + 310px));
  }
}
.investors-intro > .column:last-child {
  width: 100%;
}
@media (min-width: 769px) {
  .investors-intro > .column:last-child {
    width: calc(310px - 80px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investors-intro > .column {
    display: block;
  }
}
.investors-intro > .column > *:last-child {
  margin-bottom: 0;
}

.investors-row {
  margin-top: 6rem;
  margin-left: -80px;
  width: calc(100% + 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.investors-row > .column {
  width: 100%;
  margin-bottom: 2rem;
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.investors-row > .column:last-child {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .investors-row > .column {
    margin-bottom: 0;
    width: calc(50% - 80px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investors-row > .column {
    display: block;
  }
}
.investors-row > .column > *:nth-last-child(2) {
  margin-bottom: 2rem;
}
.investors-row > .column > *:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.investors-row .image-cta h2 {
  font-size: 2.4rem;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .investors-row .image-cta {
    margin-left: 0rem;
    width: 100%;
  }
}

.next-event {
  padding: 2rem 3rem;
  background: rgba(218, 191, 144, 0.5);
  position: relative;
}
.next-event .text {
  padding-right: 4rem;
  position: relative;
}
.next-event .text .date {
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #ba8568;
  font-weight: 500;
}
.next-event .text .link {
  position: absolute;
  right: 0;
  width: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.advisers-row {
  margin-left: -40px;
  width: calc(100% + 40px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.advisers-row > .column {
  width: 100%;
  margin-left: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  border: 1px solid rgba(1, 1, 1, 0.2);
}
@media (min-width: 600px) {
  .advisers-row > .column {
    width: calc(50% - 40px);
  }
}
@media (min-width: 1200px) {
  .advisers-row > .column {
    width: calc(33.33% - 40px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .advisers-row > .column {
    display: block;
  }
}
.advisers-row > .column > * {
  margin-bottom: 2rem;
}
.advisers-row > .column > *:last-child {
  margin-bottom: 0;
}
.advisers-row > .column img {
  height: 4rem !important;
  width: auto;
  object-position: left center;
  object-fit: contain;
}
@media (max-width: 768px) {
  .advisers-row > .column img {
    height: auto !important;
    width: 14rem;
  }
}
.advisers-row > .column h2 {
  font-size: 1.6rem;
  color: #ba8568;
  font-weight: 500;
}

.single p.meta {
  margin-bottom: 1.4rem;
  line-height: 1;
}
.single p.meta .date {
  font-family: "Montserrat", sans-serif;
  color: #010101;
  font-weight: 400;
  font-size: 1.2rem;
  margin-left: 2rem;
}
.single p.meta .cat {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  color: #ba8568;
}
.single .iframe-container {
  display: block;
  width: 100%;
  position: relative;
}
.single .iframe-container:after {
  display: block;
  content: "";
  padding-bottom: 56%;
  width: 100%;
}
.single .iframe-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.single .postnav {
  margin-top: 4rem;
}
.single .postnav .nav-links {
  display: flex;
  justify-content: flex-end;
}
.single .postnav .nav-links > * {
  width: 50%;
}
.single .postnav .nav-links > *:before {
  border-bottom: 1px solid rgba(1, 1, 1, 0.5);
  display: block;
  font-size: 1.4rem;
  color: #ba8568;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.single .postnav .nav-links > *:first-child {
  padding-right: 2rem;
}
.single .postnav .nav-links > *:first-child:before {
  content: "PREV";
  color: #010101;
}
.single .postnav .nav-links > *:last-child {
  text-align: right;
  padding-left: 2rem;
}
.single .postnav .nav-links > *:last-child:first-child {
  width: 100%;
  padding-left: 0;
}
.single .postnav .nav-links > *:last-child:before {
  content: "NEXT";
  color: #010101;
}

@media (max-width: 1024px) {
  .col-image {
    display: flex;
    flex-direction: column;
  }
}
.col-image .image-bg {
  width: 100%;
  margin-bottom: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .col-image .image-bg {
    float: right;
    width: 33.33%;
    margin-left: 2rem;
  }
}
.col-image .image-bg:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 52%;
}

.born-row {
  margin-left: -80px;
  width: calc(100% + 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.born-row > .column {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.born-row > .column:first-child {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .born-row > .column:first-child {
    margin-bottom: 0;
    width: calc(100% - (80px + 310px));
  }
}
.born-row > .column.bg-pattern {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  background: #010101;
  padding: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .born-row > .column.bg-pattern {
    margin-bottom: 0;
    width: calc(310px - 80px);
  }
}
@media (max-width: 768px) {
  .born-row > .column.bg-pattern {
    margin-left: 100px;
    margin-right: 20px;
  }
}
.born-row > .column.bg-pattern:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.born-row > .column.bg-pattern > * {
  position: relative;
  z-index: 2;
  color: white;
}
.born-row > .column.bg-pattern h2 {
  font-size: 5rem;
  white-space: nowrap;
  margin-bottom: 0.3rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .born-row > .column.bg-pattern h2 {
    font-size: 7rem;
    margin-bottom: 0.5rem;
  }
}
.born-row > .column.bg-pattern p {
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 500;
}
@media (min-width: 769px) {
  .born-row > .column.bg-pattern p {
    font-size: 2rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .born-row > .column {
    display: block;
  }
}
.born-row > .column > *:last-child {
  margin-bottom: 0;
}

.plc-row {
  margin-left: -80px;
  width: calc(100% + 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.plc-row > .column {
  margin-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.plc-row > .column:first-child {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 769px) {
  .plc-row > .column:first-child {
    margin-bottom: 0;
    width: calc(100% - (80px + 310px));
  }
}
.plc-row > .column.bg-pattern {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  background: linear-gradient(#CCA57E, #DABE90);
  padding: 2.5rem 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .plc-row > .column.bg-pattern {
    margin-bottom: 0;
    width: calc(310px - 80px);
  }
}
@media (max-width: 768px) {
  .plc-row > .column.bg-pattern {
    margin-left: 100px;
    margin-right: 20px;
  }
}
.plc-row > .column.bg-pattern:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.plc-row > .column.bg-pattern > * {
  position: relative;
  z-index: 2;
  color: #010101;
}
.plc-row > .column.bg-pattern h2 {
  font-size: 5rem;
  white-space: nowrap;
  margin-bottom: 0.3rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .plc-row > .column.bg-pattern h2 {
    font-size: 7rem;
    margin-bottom: 0.5rem;
  }
}
.plc-row > .column.bg-pattern p {
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 500;
}
@media (min-width: 769px) {
  .plc-row > .column.bg-pattern p {
    font-size: 2rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .plc-row > .column {
    display: block;
  }
}
.plc-row > .column > *:last-child {
  margin-bottom: 0;
}

.inline-row {
  margin-left: -50px;
  width: calc(100% + 50px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.inline-row > .column {
  width: 100%;
  margin-bottom: 2rem;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 769px) {
  .inline-row > .column {
    margin-bottom: 0;
  }
  .inline-row > .column:first-child {
    width: calc(33.33% - 50px);
  }
  .inline-row > .column:last-child {
    width: calc(66.66% - 50px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .inline-row > .column {
    display: block;
  }
}
.inline-row > .column > *:nth-last-child(2) {
  margin-bottom: 2rem;
}
.inline-row > .column > *:last-child {
  margin-bottom: 0;
}
.inline-row > .column.line-col {
  padding: 2rem 0;
  border-top: 3px solid #ba8568;
  border-bottom: 3px solid #ba8568;
  font-size: 2rem;
  font-weight: 500;
  color: #dabf90;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .inline-row > .column.line-col {
    padding: 0;
    padding-right: 2.5rem;
    border-top: 0;
    border-bottom: 0;
    border-right: 5px solid #ba8568;
    font-size: 2.2rem;
  }
}
.inline-row.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .inline-row.reverse.mb3 {
    margin-bottom: 0 !important;
  }
  .inline-row.reverse.mb3.small {
    display: flex;
    flex-direction: column-reverse;
    margin-left: 0;
    width: 100%;
  }
  .inline-row.reverse.mb3.small .column {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 769px) {
  .inline-row.reverse > .column.line-col {
    border-left: 5px solid #ba8568;
    padding-left: 2.5rem;
    padding-right: 0;
    border-right: 0;
  }
}
.inline-row.small > .column.line-col {
  font-size: 1.8rem;
  line-height: 1.4;
}

.wp-block-page-list {
  padding-left: 0;
  padding-right: 0;
}
.wp-block-page-list li, .wp-block-page-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-page-list a {
  padding: 8px 0;
}
.wp-block-page-list ul {
  padding-left: 30px;
}
.wp-block-page-list ul li {
  display: inline-block;
}
.wp-block-page-list ul li a {
  padding-right: 25px;
  color: #010101;
}
.wp-block-page-list ul li a:hover {
  color: #ba8568;
}

@media (max-width: 768px) {
  .full-width-mobile {
    position: relative;
  }
}

.investment-case {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .investment-case {
    margin-bottom: 5rem;
  }
}
.investment-case:last-child {
  margin-bottom: 0;
}
.investment-case .circle {
  width: 7rem;
  height: 7rem;
  position: relative;
  background: red;
  border-radius: 50%;
  background: #ba8568;
  line-height: 7rem;
  text-align: center;
  font-size: 3rem;
  color: white;
  font-weight: 500;
}
@media (max-width: 768px) {
  .investment-case .circle {
    width: 5rem;
    height: 5rem;
    font-size: 2.2rem;
    line-height: 5rem;
  }
}
.investment-case .text {
  width: calc(100% - 5rem);
  padding-left: 6rem;
  position: relative;
}
@media (min-width: 769px) {
  .investment-case .text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 3rem;
    height: 100%;
    width: 1px;
    background: #010101;
    opacity: 0.1;
  }
}
@media (max-width: 768px) {
  .investment-case .text {
    width: 100%;
    margin-left: -5.5rem;
    padding-left: 0;
  }
}
.investment-case .text h2 {
  text-transform: none;
  font-size: 3rem;
  font-weight: 400;
  max-width: 55rem;
}
@media (max-width: 768px) {
  .investment-case .text h2 {
    font-size: 2.2rem;
    padding-left: 7rem;
  }
}
.investment-case .text ul {
  padding-left: 0;
}
.investment-case .text ul:last-child {
  margin-bottom: 0;
}
.investment-case .text ul li {
  list-style: none;
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .investment-case .text ul li {
    padding-left: 7rem;
  }
}
.investment-case .text ul li:last-child {
  margin-bottom: 0;
}
.investment-case .text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 1.2rem;
  height: 0.8rem;
  background-image: url("img/custom/arrow-cream.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .investment-case .text ul li:before {
    width: 6rem;
    height: 1rem;
  }
}
.investment-case .text .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1025px) {
  .investment-case .text .row {
    margin-left: -50px;
    width: calc(100% + 50px);
  }
}
.investment-case .text .row > .column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.investment-case .text .row > .column:first-child {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 1025px) {
  .investment-case .text .row > .column:first-child {
    margin-bottom: 0;
    width: calc(100% - (50px + 300px));
  }
}
.investment-case .text .row > .column.bg-pattern {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  padding: 2.5rem 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .investment-case .text .row > .column.bg-pattern {
    margin-bottom: 0;
    width: calc(300px - 50px);
  }
}
@media (max-width: 768px) {
  .investment-case .text .row > .column.bg-pattern {
    display: inline-block;
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
  .investment-case .text .row > .column.bg-pattern:last-child {
    margin-bottom: 0;
  }
}
.investment-case .text .row > .column.bg-pattern:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.investment-case .text .row > .column.bg-pattern.light {
  background: linear-gradient(#CCA57E, #DABE90);
}
.investment-case .text .row > .column.bg-pattern.dark {
  background: rgb(59.0272727273, 38.3090909091, 26.9727272727);
}
.investment-case .text .row > .column.bg-pattern.dark h2, .investment-case .text .row > .column.bg-pattern.dark p {
  color: white;
}
.investment-case .text .row > .column.bg-pattern.image {
  background: transparent;
  padding: 0;
}
.investment-case .text .row > .column.bg-pattern.image:before {
  display: none;
}
.investment-case .text .row > .column.bg-pattern > * {
  position: relative;
  z-index: 2;
  color: #010101;
}
.investment-case .text .row > .column.bg-pattern h2 {
  font-size: 5rem;
  white-space: nowrap;
  margin-bottom: 0.5rem;
  line-height: 1;
  padding-left: 0;
  font-weight: 300;
}
@media (min-width: 769px) {
  .investment-case .text .row > .column.bg-pattern h2 {
    font-size: 6rem;
    margin-bottom: 0.5rem;
  }
}
.investment-case .text .row > .column.bg-pattern p {
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 400;
}
@media (min-width: 769px) {
  .investment-case .text .row > .column.bg-pattern p {
    font-size: 1.8rem;
  }
}
@media (min-width: 769px) {
  .investment-case .text .row > .column {
    margin-left: 50px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .investment-case .text .row > .column {
    display: block;
  }
}
.investment-case .text .row > .column > *:last-child {
  margin-bottom: 0;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li:before {
  display: none;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton {
  font-weight: 600 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-reject-btn {
  background-color: rgba(255, 255, 255, 0.4);
  padding-left: 20px;
  padding-right: 20px;
}

.moove-gdpr-cookie-notice {
  font-weight: 400;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .moove-gdpr-info-bar-content {
    display: flex !important;
  }
  .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    margin-top: 0 !important;
  }
  .gdpr-icon.moovegdpr-arrow-close:before,
  .gdpr-icon.moovegdpr-arrow-close:after {
    margin: auto;
    left: 0;
    right: 0;
  }
}
.internal-pages-links {
  margin-top: 5rem !important;
  margin-left: -10px;
  width: calc(100% + 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -10px;
}
.internal-pages-links > .column {
  width: 100%;
  margin-bottom: 10px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 769px) {
  .internal-pages-links > .column {
    width: calc(33.33% - 10px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .internal-pages-links > .column {
    display: block;
  }
}
.internal-pages-links > .column.bg-pattern {
  position: relative;
  padding: 1rem 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 1025px) {
  .internal-pages-links > .column.bg-pattern {
    min-height: 15rem;
  }
}
.internal-pages-links > .column.bg-pattern:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.internal-pages-links > .column.bg-pattern a.btn {
  border-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.internal-pages-links > .column.bg-pattern a.btn span {
  white-space: normal;
}
.internal-pages-links > .column.bg-pattern a.btn span:first-child {
  width: calc(100% - 1.8rem);
  padding-right: 1rem;
  font-size: 2rem;
  font-weight: 300;
}
@media (min-width: 1025px) {
  .internal-pages-links > .column.bg-pattern a.btn span:first-child {
    width: calc(100% - 2.3rem);
    font-size: 2rem;
  }
}
@media (min-width: 1441px) {
  .internal-pages-links > .column.bg-pattern a.btn span:first-child {
    font-size: 2.6rem;
  }
}
.internal-pages-links > .column.bg-pattern a.btn span.arrow {
  width: 1.8rem;
  height: 3rem;
}
@media (min-width: 1025px) {
  .internal-pages-links > .column.bg-pattern a.btn span.arrow {
    width: 2rem;
    height: 3.2rem;
  }
}
@media (min-width: 1441px) {
  .internal-pages-links > .column.bg-pattern a.btn span.arrow {
    width: 2.3rem;
    height: 3.6rem;
  }
}
.internal-pages-links > .column.bg-pattern p {
  color: white;
  font-size: 2.2rem;
  text-align: left;
  flex: unset;
}
.internal-pages-links > .column.bg-pattern p:last-child {
  margin-bottom: 0;
  padding: 0 2rem;
}
.internal-pages-links > .column.bg-pattern:nth-child(odd) {
  background: linear-gradient(#CCA57E, #DABE90);
}
.internal-pages-links > .column.bg-pattern:nth-child(odd) a.btn {
  background: transparent;
  border: 0;
}
.internal-pages-links > .column.bg-pattern:nth-child(odd) a.btn:hover {
  background: linear-gradient(112deg, rgba(186, 133, 104, 0.0980392157), rgba(29, 29, 27, 0.5019607843));
  background-color: transparent;
  border-color: transparent;
}
.internal-pages-links > .column.bg-pattern:nth-child(odd) a.btn:hover span {
  color: white;
}
.internal-pages-links > .column.bg-pattern:nth-child(odd) a.btn:hover span.arrow {
  background-image: url("img/custom/arrow-white.svg");
}
.internal-pages-links > .column.bg-pattern:nth-child(even) {
  background: rgb(59.0272727273, 38.3090909091, 26.9727272727);
}
.internal-pages-links > .column.bg-pattern:nth-child(even) a.btn {
  color: white;
  background: transparent;
  border: 0;
}
.internal-pages-links > .column.bg-pattern:nth-child(even) a.btn:hover {
  background: linear-gradient(112deg, rgba(186, 133, 104, 0.1019607843), rgba(186, 133, 104, 0.5019607843));
  background-color: transparent;
  border-color: transparent;
}
.internal-pages-links > .column.bg-pattern:nth-child(even) a.btn:hover span {
  color: white;
}
.internal-pages-links > .column.bg-pattern:nth-child(even) a.btn:hover span.arrow {
  background-image: url("img/custom/arrow-white.svg");
}
.internal-pages-links > .column.bg-pattern > * {
  position: relative;
  z-index: 2;
  flex: 1;
}
.internal-pages-links > .column.bg-image {
  background-size: cover;
  background-position: top center;
}
@media (max-width: 768px) {
  .internal-pages-links > .column.bg-image {
    display: none;
  }
}

.line-sep-col {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -1rem;
  margin-bottom: -1rem;
}
@media (min-width: 769px) {
  .line-sep-col {
    margin-left: -1.5rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1441px) {
  .line-sep-col {
    margin-left: -3rem;
    margin-bottom: 0;
  }
}
.line-sep-col > .column {
  width: auto;
  margin-bottom: 2rem;
  border-right: 2px solid #dabf90;
  padding: 0 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.line-sep-col > .column:last-child {
  border-right: 0;
}
.line-sep-col > .column:first-child:last-child {
  width: auto;
}
.line-sep-col > .column:first-child:last-child p {
  text-align: left;
}
.line-sep-col > .column p {
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 769px) {
  .line-sep-col > .column {
    padding: 0 1.5rem;
    margin-bottom: 0;
    width: auto;
  }
}
@media (min-width: 1441px) {
  .line-sep-col > .column {
    padding: 0 3rem;
  }
  .line-sep-col > .column p {
    font-size: 2rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .line-sep-col > .column {
    display: block;
  }
}
.line-sep-col > .column > *:last-child {
  margin-bottom: 0;
}

.responsabilities-row {
  margin-left: -50px;
  width: calc(100% + 50px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.responsabilities-row > .column {
  width: 100%;
  margin-bottom: 2rem;
  margin-left: 50px;
  display: block;
}
@media (min-width: 769px) {
  .responsabilities-row > .column {
    margin-bottom: 0;
    width: calc(66.66% - 50px);
  }
  .responsabilities-row > .column:last-child {
    width: calc(33.33% - 50px);
  }
}
.responsabilities-row > .column:last-child {
  margin-bottom: 0;
}
.responsabilities-row > .column > *:last-child {
  margin-bottom: 0;
}
.responsabilities-row > .column.bg-image {
  background-size: cover;
  background-position: top center;
  display: block;
}
.responsabilities-row > .column.bg-image:after {
  content: "";
  display: block;
  padding-bottom: 60%;
}

ul.arrow-ul {
  padding-left: 0;
}
ul.arrow-ul:last-child {
  margin-bottom: 0;
}
ul.arrow-ul li {
  list-style: none;
  padding-left: 2.5rem;
  position: relative;
}
ul.arrow-ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 1.2rem;
  height: 0.8rem;
  background-image: url("img/custom/arrow-cream.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
ul.arrow-ul li ul {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
ul.arrow-ul li ul li:before {
  background-image: url("img/custom/arrow-black.svg");
  transform: rotate(90deg);
}

.business-model-row {
  margin-left: -50px;
  width: calc(100% + 50px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 5rem !important;
}
.business-model-row:last-child {
  margin-bottom: 0;
}
.business-model-row > .column {
  width: 100%;
  margin-bottom: 2rem;
  margin-left: 50px;
}
@media (min-width: 769px) {
  .business-model-row > .column {
    margin-bottom: 0;
    width: calc(60% - 50px);
  }
  .business-model-row > .column:last-child {
    width: calc(40% - 50px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .business-model-row > .column {
    display: block;
  }
}
.business-model-row > .column:last-child {
  margin-bottom: 0;
}
.business-model-row > .column > *:last-child {
  margin-bottom: 0;
}
.business-model-row > .column.bg-image {
  background-size: cover;
  background-position: top center;
  display: block;
}
.business-model-row > .column.bg-image:after {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.business-model-row.reverse {
  flex-direction: row-reverse;
}

.widget .bg-pattern {
  position: relative;
  padding: 2.5rem 1rem;
  align-items: center;
  text-align: center;
  background: rgb(59.0272727273, 38.3090909091, 26.9727272727);
}
.widget .bg-pattern:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.widget .bg-pattern p {
  text-align: center;
  color: white;
}
.widget .bg-pattern > * {
  position: relative;
  z-index: 2;
}
.widget .bg-pattern > *:last-child {
  margin-bottom: 0;
}

.careers .career {
  margin-bottom: 4rem;
  width: 100%;
}
@media (min-width: 769px) {
  .careers .career {
    display: flex;
  }
}
.careers .career:last-child {
  margin-bottom: 0;
}
.careers .career .details {
  position: relative;
  padding: 2.5rem 2.5rem;
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  text-align: left;
  width: 100%;
  color: white;
}
@media (min-width: 769px) {
  .careers .career .details {
    width: 60%;
    min-height: 30rem;
    padding: 2.5rem 4rem;
  }
}
@media (min-width: 1025px) {
  .careers .career .details {
    padding: 3rem 5rem;
  }
}
.careers .career .details:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.careers .career .details h3 a {
  color: white;
}
.careers .career .details > * {
  position: relative;
  z-index: 2;
}
.careers .career .details > *:last-child {
  margin-top: auto;
}
.careers .career:nth-child(even) .details {
  background: linear-gradient(#CCA57E, #DABE90);
}
.careers .career:nth-child(even) .details h3 a {
  color: #010101;
}
.careers .career:nth-child(even) .details .flex-info {
  margin-bottom: 2rem;
}
.careers .career:nth-child(even) .details .flex-info .box {
  display: flex;
}
.careers .career:nth-child(even) .details .flex-info .box span {
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .careers .career:nth-child(even) .details .flex-info .box span {
    font-size: 1.5rem;
  }
}
.careers .career:nth-child(even) .details .flex-info .box span:first-child {
  color: #010101;
  width: 170px;
}
@media (max-width: 768px) {
  .careers .career:nth-child(even) .details .flex-info .box span:first-child {
    width: 110px;
  }
}
.careers .career:nth-child(even) .details a.btn {
  border-color: #010101;
}
.careers .career:nth-child(even) .details a.btn span {
  color: #010101;
}
.careers .career:nth-child(even) .details a.btn span.arrow {
  background-image: url("img/custom/arrow-black-right.svg");
}
.careers .career:nth-child(even) .details a.btn:hover {
  background-color: #010101;
}
.careers .career:nth-child(even) .details a.btn:hover span {
  color: white;
}
.careers .career:nth-child(even) .details a.btn:hover span.arrow {
  background-image: url("img/custom/arrow-white.svg");
}
.careers .career:nth-child(odd) .details {
  background: rgb(59.0272727273, 38.3090909091, 26.9727272727);
}
.careers .career:nth-child(odd) .details h3 a {
  color: white;
}
.careers .career:nth-child(odd) .details .flex-info {
  margin-bottom: 2rem;
}
.careers .career:nth-child(odd) .details .flex-info .box {
  display: flex;
}
.careers .career:nth-child(odd) .details .flex-info .box span {
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .careers .career:nth-child(odd) .details .flex-info .box span {
    font-size: 1.5rem;
  }
}
.careers .career:nth-child(odd) .details .flex-info .box span:first-child {
  color: white;
  width: 170px;
}
@media (max-width: 768px) {
  .careers .career:nth-child(odd) .details .flex-info .box span:first-child {
    width: 110px;
  }
}
.careers .career:nth-child(odd) .details .flex-info .box span:last-child {
  color: #dabf90;
}
.careers .career .left {
  position: relative;
}
@media (min-width: 769px) {
  .careers .career .left {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .careers .career .left {
    display: block;
    width: 100%;
  }
  .careers .career .left:after {
    content: "";
    display: block;
    padding-bottom: 60%;
  }
}
.careers .career .left div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
}

.single-careers .flex-info {
  margin-bottom: 3rem;
}
.single-careers .flex-info .box {
  display: flex;
}
.single-careers .flex-info .box span {
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .single-careers .flex-info .box span {
    font-size: 2rem;
  }
}
.single-careers .flex-info .box span:first-child {
  color: #010101;
  width: 135px;
}
@media (min-width: 769px) {
  .single-careers .flex-info .box span:first-child {
    width: 170px;
  }
}
.single-careers .flex-info .box span:last-child {
  color: #ba8568;
}
.single-careers .widget-careers .bg-pattern {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.shareholder-circulars .date_published {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .shareholder-circulars thead th {
    display: none;
  }
  .shareholder-circulars tbody {
    display: block;
  }
  .shareholder-circulars tbody tr {
    display: block;
    padding: 10px;
  }
  .shareholder-circulars tbody tr td {
    display: block;
    padding: 0 !important;
  }
}

.result-centre-table .kt-tabs-accordion-title {
  margin-bottom: 5px;
}
.result-centre-table .kt-tabs-accordion-title a {
  color: #ba8568;
  background-color: #dabf90;
  border: 0;
}
.result-centre-table .kt-tabs-accordion-title.kt-tab-title-active a {
  background-color: #ba8568;
}
@media (max-width: 768px) {
  .result-centre-table .document-table thead th {
    display: none;
  }
  .result-centre-table .document-table tbody {
    display: block;
  }
  .result-centre-table .document-table tbody tr {
    display: block;
    padding: 10px;
  }
  .result-centre-table .document-table tbody tr td {
    display: block;
    padding: 0;
    width: auto;
  }
  .result-centre-table .document-table tbody tr td.file_name {
    font-weight: 500;
    font-size: 1.8rem;
  }
  .result-centre-table .document-table tbody tr td.download {
    display: inline-block;
    float: left;
  }
  .result-centre-table .document-table tbody tr td.download a {
    margin-right: 0.8rem;
  }
  .result-centre-table .document-table tbody tr td.download a:before {
    content: "Presentation";
  }
  .result-centre-table .document-table tbody tr td.download a i {
    display: none;
  }
  .result-centre-table .document-table tbody tr td.qa {
    display: inline-block;
    float: left;
  }
  .result-centre-table .document-table tbody tr td.qa a {
    margin-right: 0.8rem;
  }
  .result-centre-table .document-table tbody tr td.qa a:before {
    content: "Q&A";
  }
  .result-centre-table .document-table tbody tr td.qa a i {
    display: none;
  }
  .result-centre-table .document-table tbody tr td.webcast {
    display: inline-block;
    float: left;
  }
  .result-centre-table .document-table tbody tr td.webcast a {
    margin-right: 0.8rem;
  }
  .result-centre-table .document-table tbody tr td.webcast a:before {
    content: "Webcast";
  }
  .result-centre-table .document-table tbody tr td.webcast a i {
    display: none;
  }
  .result-centre-table .document-table tbody tr td.report {
    display: inline-block;
    float: left;
  }
  .result-centre-table .document-table tbody tr td.report a {
    margin-right: 0.8rem;
  }
  .result-centre-table .document-table tbody tr td.report a:before {
    content: "Report";
  }
  .result-centre-table .document-table tbody tr td.report a i {
    display: none;
  }
  .result-centre-table .document-table tbody tr td.release {
    display: inline-block;
    float: left;
  }
  .result-centre-table .document-table tbody tr td.release a {
    margin-right: 0.8rem;
  }
  .result-centre-table .document-table tbody tr td.release a:before {
    content: "Press Release";
  }
  .result-centre-table .document-table tbody tr td.release a i {
    display: none;
  }
  .result-centre-table .document-table tbody tr td:last-child {
    float: none;
  }
}

@media (max-width: 768px) {
  .documents.document-table thead th {
    display: none;
  }
  .documents.document-table tbody {
    display: block;
  }
  .documents.document-table tbody tr {
    display: block;
    padding: 10px;
  }
  .documents.document-table tbody tr td {
    display: block;
    padding: 0;
    width: auto;
  }
  .documents.document-table tbody tr td.file_name {
    font-weight: 500;
    font-size: 1.8rem;
    display: inline-block;
    width: calc(100% - 2rem);
  }
  .documents.document-table tbody tr td.download {
    display: inline-block;
    float: right;
    width: 1.2rem;
  }
  .documents.document-table tbody tr td.download a {
    margin-right: 0.8rem;
  }
  .documents.document-table tbody tr td:last-child {
    float: none;
  }
}

@media (min-width: 769px) {
  .events-table td.calendar, .events-table td.link {
    width: 4rem;
  }
}
.events-table td.date {
  width: 230px;
}
@media (max-width: 768px) {
  .events-table table thead th {
    display: none;
  }
  .events-table table tbody {
    display: block;
  }
  .events-table table tbody tr {
    display: block;
    padding: 10px;
  }
  .events-table table tbody tr td {
    display: block;
    padding: 0 !important;
    width: auto;
  }
  .events-table table tbody tr td.title {
    font-weight: 500;
    font-size: 1.8rem;
    display: block;
  }
  .events-table table tbody tr td.link {
    display: inline-block;
    font-size: 1.6rem;
  }
  .events-table table tbody tr td.link a {
    margin-right: 0.8rem;
  }
  .events-table table tbody tr td.gcal {
    display: inline-block;
    font-size: 1.6rem;
  }
  .events-table table tbody tr td.gcal:before {
    content: "Add to";
  }
  .events-table table tbody tr td.gcal a {
    margin-right: 0.3rem;
  }
  .events-table table tbody tr td.gcal a:before {
    content: "Google";
  }
  .events-table table tbody tr td.gcal a i {
    display: none;
  }
  .events-table table tbody tr td.ical {
    display: inline-block;
    font-size: 1.6rem;
  }
  .events-table table tbody tr td.ical:before {
    content: "or";
  }
  .events-table table tbody tr td.ical a:before {
    content: "Calendar";
  }
  .events-table table tbody tr td.ical a i {
    display: none;
  }
  .events-table table tbody tr td:last-child {
    float: none;
  }
}
@media (max-width: 768px) {
  .events-table.past-events-table td.calendar {
    display: none !important;
  }
  .events-table.past-events-table td.title {
    display: inline-block;
    width: calc(100% - 2rem);
  }
  .events-table.past-events-table td.link {
    float: right !important;
    width: 1.2rem;
    display: inline-block !important;
  }
  .events-table.past-events-table td.link a {
    display: block;
  }
  .events-table.past-events-table td.link a:after {
    display: block;
  }
}

@media (max-width: 768px) {
  .shareholder-table-mobile table {
    display: block;
    width: 100%;
  }
  .shareholder-table-mobile table thead {
    display: block;
  }
  .shareholder-table-mobile table thead th:last-child {
    display: none;
  }
  .shareholder-table-mobile table thead tr {
    display: block;
    padding: 6px 10px;
  }
  .shareholder-table-mobile table thead tr th {
    display: block;
    width: 100%;
    padding: 0;
  }
  .shareholder-table-mobile table thead tr th:not(:first-child) {
    font-weight: 300;
  }
  .shareholder-table-mobile table tbody {
    display: block;
    width: 100%;
  }
  .shareholder-table-mobile table tbody tr {
    display: block;
    padding: 10px;
    width: 100%;
  }
  .shareholder-table-mobile table tbody tr td {
    display: block;
    padding: 0 !important;
    width: auto;
  }
  .shareholder-table-mobile table tbody tr td:first-child {
    display: block;
    width: 100%;
    font-weight: 500;
    padding-right: 10px !important;
  }
  .shareholder-table-mobile table tbody tr td:not(:first-child) {
    display: inline-block;
    width: auto;
    font-size: 1.6rem;
  }
  .shareholder-table-mobile table tbody tr td:not(:first-child):last-child {
    margin-left: 15px;
  }
}

@media (min-width: 769px) {
  .contact-row {
    display: flex;
    width: 100%;
  }
  .contact-row .column:first-child {
    padding-right: 2rem;
    width: 33%;
  }
  .contact-row .column:last-child {
    padding-left: 2rem;
    width: 66%;
  }
}
.contact-row .gform_wrapper form .gform_body .gform_fields {
  grid-row-gap: 20px;
}
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button),
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield textarea,
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield select {
  background: rgba(218, 191, 144, 0.1);
}
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield input:not([type=checkbox]):not([type=radio]):not(button)::placeholder,
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield textarea::placeholder,
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield select::placeholder {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: rgba(1, 1, 1, 0.66);
}
.contact-row .gform_wrapper form .gform_body .gform_fields .gfield .ginput_complex span {
  padding-right: 0 !important;
}

.wp-block-table thead {
  border-bottom: 2px solid #ba8568;
}
.wp-block-table thead tr th {
  border: 0px;
}
.wp-block-table tbody tr td {
  border: 0px;
  padding: 10px 16px;
}

/* -------------------------------------------
***** 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 *****
------------------------------------------- */
.home-banner {
  display: block;
  position: relative;
}
.home-banner:before {
  content: "";
  height: 40rem;
  width: 100vw;
  left: 0px;
  background: linear-gradient(rgba(218, 191, 144, 0.4), white);
  z-index: -1;
  position: absolute;
  top: 80%;
}
.home-banner .item {
  overflow: hidden;
}
.home-banner .item:hover .image {
  transform: scale(1.04);
}
.home-banner .item .image {
  transition: all 0.2s ease-in-out;
}
.home-banner a {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 620px;
}
@media (min-width: 501px) {
  .home-banner a {
    height: auto;
    width: calc(100% - 10rem);
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media (max-width: 400px) {
  .home-banner a {
    height: 500px;
  }
}
.home-banner a:after {
  content: "";
  display: block;
}
@media (min-width: 501px) {
  .home-banner a:after {
    padding-bottom: 40%;
  }
}
.home-banner a > * {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transform: all 0.2s ease-in-out;
}
@media (min-width: 501px) {
  .home-banner a > *.mobile {
    display: none;
  }
}
@media (max-width: 500px) {
  .home-banner a > *.desktop {
    display: none;
  }
}

/* -------------------------------------------
***** INNER BANNERS *****
------------------------------------------- */
.inner-banner {
  margin-bottom: 0;
  position: relative;
  width: 100%;
  opacity: 1;
  transition: all 1.2s ease;
  overflow: hidden;
  display: block;
  width: 100%;
}
@media (min-width: 1025px) {
  .inner-banner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.inner-banner > * {
  position: relative;
  width: 100%;
  display: block;
  height: 520px;
}
@media (min-width: 1025px) {
  .inner-banner > * {
    height: auto;
  }
  .inner-banner > *:after {
    content: "";
    display: block;
    padding-bottom: 30%;
  }
}
.inner-banner .banner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center 17%;
  transition: all 0.8s ease;
}
@media (max-width: 768px) {
  .inner-banner .banner-image {
    background-position: 80% center;
  }
}
.inner-banner .banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0;
}

/* -------------------------------------------
***** Includes *****
------------------------------------------- */
.btn {
  overflow: hidden;
  text-align: center;
  padding: 1.4rem 2rem;
  color: white;
  background: transparent;
  border: 2px solid white;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  position: relative;
  font-weight: 500;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.btn span {
  white-space: nowrap;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.btn span:first-child {
  margin-right: 0.6rem;
}
.btn span.arrow {
  width: 1.6rem;
  height: 1.2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  background-image: url("img/custom/arrow-white.svg");
}
@media (max-width: 768px) {
  .btn span.arrow {
    margin-left: auto;
  }
}
.btn:not([class^=is-style-]):hover, .btn:not([class^=is-style-]):active, .btn:not([class^=is-style-]):focus {
  background: white;
  border-color: white;
}
.btn:not([class^=is-style-]):hover span:not(.arrow), .btn:not([class^=is-style-]):active span:not(.arrow), .btn:not([class^=is-style-]):focus span:not(.arrow) {
  color: #ba8568;
}
@supports (-webkit-overflow-scrolling: touch) {
  .btn:not([class^=is-style-]):hover span:not(.arrow), .btn:not([class^=is-style-]):active span:not(.arrow), .btn:not([class^=is-style-]):focus span:not(.arrow) {
    color: white;
  }
}
.btn:not([class^=is-style-]):hover span.arrow, .btn:not([class^=is-style-]):active span.arrow, .btn:not([class^=is-style-]):focus span.arrow {
  background-image: url("img/custom/arrow-brown.svg");
}
@supports (-webkit-overflow-scrolling: touch) {
  .btn:not([class^=is-style-]):hover span.arrow, .btn:not([class^=is-style-]):active span.arrow, .btn:not([class^=is-style-]):focus span.arrow {
    background-image: url("img/custom/arrow-white.svg");
  }
}
.btn.btn-primary, .btn.is-style-btn-primary {
  border-color: #ba8568;
}
.btn.btn-primary span:not(.arrow), .btn.is-style-btn-primary span:not(.arrow) {
  color: #ba8568;
}
.btn.btn-primary span.arrow, .btn.is-style-btn-primary span.arrow {
  background-image: url("img/custom/arrow-brown.svg");
}
.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 {
  background: #ba8568;
  border-color: #ba8568;
}
.btn.btn-primary:hover span:not(.arrow), .btn.btn-primary:active span:not(.arrow), .btn.btn-primary:focus span:not(.arrow), .btn.is-style-btn-primary:hover span:not(.arrow), .btn.is-style-btn-primary:active span:not(.arrow), .btn.is-style-btn-primary:focus span:not(.arrow) {
  color: white;
}
@supports (-webkit-overflow-scrolling: touch) {
  .btn.btn-primary:hover span:not(.arrow), .btn.btn-primary:active span:not(.arrow), .btn.btn-primary:focus span:not(.arrow), .btn.is-style-btn-primary:hover span:not(.arrow), .btn.is-style-btn-primary:active span:not(.arrow), .btn.is-style-btn-primary:focus span:not(.arrow) {
    color: #ba8568;
  }
}
.btn.btn-primary:hover span.arrow, .btn.btn-primary:active span.arrow, .btn.btn-primary:focus span.arrow, .btn.is-style-btn-primary:hover span.arrow, .btn.is-style-btn-primary:active span.arrow, .btn.is-style-btn-primary:focus span.arrow {
  background-image: url("img/custom/arrow-white.svg");
}
@supports (-webkit-overflow-scrolling: touch) {
  .btn.btn-primary:hover span.arrow, .btn.btn-primary:active span.arrow, .btn.btn-primary:focus span.arrow, .btn.is-style-btn-primary:hover span.arrow, .btn.is-style-btn-primary:active span.arrow, .btn.is-style-btn-primary:focus span.arrow {
    background-image: url("img/custom/arrow-brown.svg");
  }
}
.btn.btn-secondary, .btn.is-style-btn-secondary {
  border-color: #dabf90;
  color: #dabf90;
}
.btn.btn-secondary span:not(.arrow), .btn.is-style-btn-secondary span:not(.arrow) {
  color: #dabf90;
}
.btn.btn-secondary span.arrow, .btn.is-style-btn-secondary span.arrow {
  background-image: url("img/custom/arrow-cream.svg");
}
.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 {
  background: #dabf90;
  border-color: #dabf90;
}
.btn.btn-secondary:hover span:not(.arrow), .btn.btn-secondary:active span:not(.arrow), .btn.btn-secondary:focus span:not(.arrow), .btn.is-style-btn-secondary:hover span:not(.arrow), .btn.is-style-btn-secondary:active span:not(.arrow), .btn.is-style-btn-secondary:focus span:not(.arrow) {
  color: white;
}
@supports (-webkit-overflow-scrolling: touch) {
  .btn.btn-secondary:hover span:not(.arrow), .btn.btn-secondary:active span:not(.arrow), .btn.btn-secondary:focus span:not(.arrow), .btn.is-style-btn-secondary:hover span:not(.arrow), .btn.is-style-btn-secondary:active span:not(.arrow), .btn.is-style-btn-secondary:focus span:not(.arrow) {
    color: #dabf90;
  }
}
.btn.btn-secondary:hover span.arrow, .btn.btn-secondary:active span.arrow, .btn.btn-secondary:focus span.arrow, .btn.is-style-btn-secondary:hover span.arrow, .btn.is-style-btn-secondary:active span.arrow, .btn.is-style-btn-secondary:focus span.arrow {
  background-image: url("img/custom/arrow-white.svg");
}
@supports (-webkit-overflow-scrolling: touch) {
  .btn.btn-secondary:hover span.arrow, .btn.btn-secondary:active span.arrow, .btn.btn-secondary:focus span.arrow, .btn.is-style-btn-secondary:hover span.arrow, .btn.is-style-btn-secondary:active span.arrow, .btn.is-style-btn-secondary:focus span.arrow {
    background-image: url("img/custom/arrow-cream.svg");
  }
}
.btn.full-width {
  display: block;
}
.btn.center {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
}

/* block : cta */
.cta-row {
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .cta-row {
    margin-bottom: 4rem;
  }
  .cta-row.wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 1025px) {
  .cta-row {
    display: flex;
  }
}
.cta-row > * {
  width: 100%;
}
@media (min-width: 1025px) {
  .cta-row > * {
    width: 50%;
  }
}
.cta-row > *.text {
  padding-right: 2rem;
  background-size: cover;
  background-position: center;
  padding: 3rem 5rem;
}
.cta-row > *.text h2, .cta-row > *.text p {
  color: white;
}
.cta-row > *.text h2, .cta-row > *.text .cta-content {
  margin-bottom: 4rem;
}
.cta-row > *.text p {
  font-weight: 400;
  font-size: 2rem;
}
.cta-row > *.text p:last-child {
  margin-bottom: 0;
}
.cta-row > *.image {
  background-size: cover;
  background-position: top center;
}
.cta-row.large-wrap > *.text {
  padding: 3rem 4rem;
  background: linear-gradient(45deg, #C89E79, #DABF90);
}
@media (min-width: 1025px) {
  .cta-row.large-wrap > *.text {
    padding: 5rem 7rem;
  }
}
@media (max-width: 1024px) {
  .cta-row.large-wrap > *.image {
    width: 100%;
    display: block;
  }
  .cta-row.large-wrap > *.image:after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 50%;
  }
}

/* block : iframe */
iframe {
  border: 0;
  width: 100%;
  overflow: hidden !important;
}

.image-cta {
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position: center;
  position: relative;
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.image-cta.smaller {
  height: 500px;
}
.image-cta .image-bg {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}
@supports (-webkit-overflow-scrolling: touch) {
  .image-cta {
    background-attachment: unset !important;
  }
}
.image-cta:after {
  content: "";
  display: block;
  padding-bottom: 130%;
}
@media (min-width: 501px) {
  .image-cta:after {
    content: "";
    display: block;
    padding-bottom: 130%;
  }
}
.image-cta .image-cta-content-wrapper {
  position: absolute;
  bottom: 3rem;
  width: calc(100% - 8rem);
  left: 4rem;
  z-index: 3;
  padding: 1.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease-in-out;
}
@media (min-width: 769px) {
  .image-cta .image-cta-content-wrapper {
    width: calc(100% - 6rem);
    left: 3rem;
  }
}
.image-cta .image-cta-content-wrapper h2 {
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  .image-cta .image-cta-content-wrapper h2 {
    font-size: 1.8rem;
  }
}
.image-cta .image-cta-content-wrapper h2 img {
  width: 25px;
  max-height: 25px;
  margin-left: 0.5rem;
  object-position: center;
}
.image-cta:hover .image-bg {
  transform: scale(1.04);
}
.image-cta:hover .image-cta-content-wrapper {
  background-color: #dabf90;
}

.is-style-intro {
  font-size: 1.9rem;
  color: #010101;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .is-style-intro {
    font-size: 2rem;
  }
}

.is-style-feature {
  background: #ba8568;
  padding: 20px;
  color: white;
  font-weight: 400;
  position: relative;
}

/* block : posts */
.excerpt {
  margin: 0 0 30px 0;
}
@media (min-width: 769px) {
  .excerpt {
    margin: 0 0 50px 0;
    border-bottom: 1px solid #dabf90;
  }
}

.excerpt .preview {
  background-size: cover;
  background-position: top center;
  display: block;
  width: 100%;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.excerpt .preview:after {
  content: "";
  display: block;
  padding-bottom: 54%;
}
.excerpt .preview .image-bg {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
}
.excerpt .preview:hover .image-bg {
  transform: scale(1.04);
}

.excerpt h3 {
  font-size: 2.2rem;
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
  text-transform: none;
}

.excerpt h3 a {
  font-weight: 400;
  transition: all 0.2s ease-in-out;
  color: #010101;
}

.excerpt h3 a:hover,
.excerpt h3 a:active,
.excerpt h3 a:focus {
  color: #ba8568;
}

.excerpt p {
  margin: 0;
}

.excerpt p.meta {
  margin-bottom: 5px;
  color: #ba8568;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.excerpt p.meta span {
  color: #010101;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 5px;
}

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

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

@media (min-width: 769px) {
  .posts.col {
    display: flex;
    flex-wrap: wrap;
    margin-left: -50px;
  }
  .posts.col .excerpt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-left: 50px;
  }
  .posts.col .excerpt > * {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .posts.col .excerpt {
    width: calc(33.33% - 50px);
  }
}
/* block : grid */
.team-member-grid {
  width: 100%;
  cursor: pointer;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 769px) {
  .team-member-grid {
    font-size: 17px;
    margin: 0 0 10px 10px;
    width: calc(33.33% - 10px);
  }
}
@media (max-width: 768px) {
  .team-member-grid {
    margin-bottom: 0px;
  }
}
@media (min-width: 600px) {
  .team-member-grid {
    width: calc(33.33% - 40px);
    cursor: pointer;
    margin: 0 0 20px 40px;
  }
}
.team-member-grid:before {
  content: "";
  position: absolute;
  right: -1rem;
  top: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  background: #dabf90;
  opacity: 0;
}
@media (max-width: 768px) {
  .team-member-grid:before {
    background: #EDDFC9;
  }
}
@media (max-width: 600px) {
  .team-member-grid:before {
    left: -7rem;
    width: calc(130% + 2rem);
    background: #EDDFC9;
  }
}
.team-member-grid.active:before {
  opacity: 0.5;
}
@media (max-width: 768px) {
  .team-member-grid.active:before {
    opacity: 1;
  }
}
.team-member-grid.not-active {
  opacity: 0.4;
}
.team-member-grid > a {
  display: block;
}
.team-member-grid .photo {
  background-color: white;
  width: 100%;
  margin: 0;
  overflow: hidden;
  margin-bottom: 0rem;
  width: 100%;
  position: relative;
  position: relative;
  display: block;
  background-size: cover;
  background-position: top center;
}
.team-member-grid .photo:after {
  display: block;
  padding-bottom: 120%;
  content: "";
}
.team-member-grid .name {
  padding: 1.5rem 0rem;
  padding-right: 2rem;
  padding-bottom: 0.5rem;
  flex: 1;
  position: relative;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .team-member-grid .name {
    display: block;
  }
}
.team-member-grid .name:after {
  content: "";
  font-family: FontAwesesome;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 1.4rem;
  z-index: 3;
  height: 0.9rem;
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("//wp-sosandar-2021.s3.eu-west-2.amazonaws.com/media/2021/11/arrow-cream-team.svg");
}
.team-member-grid .name h3 {
  margin: 0;
  color: #010101;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  text-transform: none;
  font-weight: 400;
  position: relative;
  z-index: 3;
}
@media (min-width: 1441px) {
  .team-member-grid .name h3 {
    font-size: 2.6rem;
  }
}
.team-member-grid .name p {
  display: block;
  font-size: 1.6rem;
  margin: 0;
  position: relative;
  z-index: 3;
  color: white;
  color: #ba8568;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
}
@media (min-width: 501px) {
  .team-member-grid .name p {
    font-size: 14px;
  }
}
@media (min-width: 1441px) {
  .team-member-grid .name p {
    font-size: 16px;
  }
}
.team-member-grid .name p + p {
  margin-top: 0px;
}
.team-member-grid.active .img-cont img {
  opacity: 1;
}
.team-member-grid.active .name {
  background: transparent;
}
.team-member-grid.active .name h3 {
  color: #010101;
}
.team-member-grid.active .name p {
  color: #ba8568;
}
.team-member-grid.active .name:after {
  opacity: 1;
  transform: rotate(-180deg);
}
.team-member-grid.active .name:before {
  top: 100%;
}
.team-bio {
  padding: 3rem;
  margin-bottom: 2rem;
  width: 100%;
  background-color: rgba(218, 191, 144, 0.5);
}
.team-bio .tab-content {
  margin-right: 0.2rem;
  position: relative;
}
.team-bio .tab-content h3 {
  margin: 0;
  text-transform: inherit;
  padding-right: 6rem;
}
.team-bio .tab-content p.pos {
  color: #ba8568;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.team-bio .tab-content p:last-child {
  margin-bottom: 0;
}
.team-bio .tab-content ul {
  padding-left: 20px;
}
.team-bio .tab-content ul li {
  list-style: none;
}
.team-bio .tab-content ul li:before {
  content: "■";
  color: #dabf90;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-left: -20px;
}
.team-bio .tab-content .bio {
  width: calc(100% - 1rem);
}

@media (max-width: 768px) {
  .team-bio {
    width: 100vw;
    margin-left: -7rem;
    padding: 2rem 3rem;
  }
}
@media (max-width: 500px) {
  .team-bio {
    margin-left: -3rem;
  }
}
@media (min-width: 600px) {
  .team-accordion-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 10px -10px;
    justify-content: flex-start;
  }
  .team-accordion-row .team-member-grid {
    order: 0;
  }
  .team-accordion-row .team-bio {
    order: 1;
    margin-left: 10px;
  }
  .team-accordion-row .team-bio.active {
    order: 2;
  }
}
/* 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: calc(100% - 330px);
    margin: -74px 0 0 auto;
  }
}
@media (min-width: 1300px) {
  .team-member .head span {
    padding: 45px 50px;
  }
}
/* bio lightbox */
.bio.fancybox-content {
  width: 90%;
  max-width: 900px;
}

.bio-photo img {
  width: 100%;
  margin: 0;
}

.bio-name {
  margin: 0 0 24px 0;
  padding-top: 15px;
  border-top: 5px solid var(--primary);
}

.bio-name h3 {
  font-size: 22px;
  margin: 0 0 4px 0;
}

.bio-name p {
  display: block;
  font-size: 16px;
  margin: 0;
  color: var(--secondary);
}

.bio-name p + p {
  margin-top: 5px;
}

bio-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .bio-photo {
    width: 240px;
    float: left;
  }
  .bio-body {
    width: calc(100% - 240px);
    float: left;
    padding-left: 20px;
  }
}
@media (min-width: 1000px) {
  .bio-photo {
    width: 300px;
  }
  .bio-body {
    width: calc(100% - 300px);
    padding-left: 30px;
  }
}
.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: #ba8568;
}
.stats.is-style-secondary .active-stats {
  color: #dabf90;
}
.stats.is-style-green .active-stats {
  color: #82C201;
}

.image-slider ul.slick-slider {
  margin: 0;
  padding: 0;
}
.image-slider ul.slick-slider .slick-list li {
  width: 100%;
  height: 250px;
}
@media (min-width: 769px) {
  .image-slider ul.slick-slider .slick-list li {
    height: 300px;
  }
}
@media (min-width: 1025px) {
  .image-slider ul.slick-slider .slick-list li {
    height: 400px;
  }
}
.image-slider ul.slick-slider .slick-dots {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: 10px;
}
.image-slider ul.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
}
.image-slider ul.slick-slider .slick-dots li button {
  width: 15px;
  height: 18px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #fff;
  text-indent: -99999px;
  vertical-align: middle;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}
.image-slider ul.slick-slider .slick-dots li button:focus {
  outline: none;
}
.image-slider ul.slick-slider .slick-dots li button:hover {
  opacity: 1;
}
.image-slider ul.slick-slider .slick-dots li.slick-active button {
  border-color: 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 {
  font-family: "Montserrat", sans-serif;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header {
  font-size: 1.8rem;
  border-radius: 0px 0px 0px 0px;
  border-width: 0px 0px 0px 0px;
  padding: 12px 20px;
  margin-top: 10px;
  background: #fbfbfb;
  color: #ba8568;
  font-family: "Montserrat", sans-serif;
  cursor: pointer !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header .kt-blocks-accordion-icon-trigger {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  background-image: url("img/custom/accordion.svg");
  display: inline-block;
  transition: all 0.2s ease-in-out;
  transform: rotate(0deg);
}
.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 {
  display: none !important;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header:hover {
  background: rgb(238.25, 238.25, 238.25);
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active {
  background: transparent;
  color: #010101;
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-blocks-accordion-header.kt-accordion-panel-active .kt-blocks-accordion-icon-trigger {
  transform: rotate(45deg);
}
.wp-block-kadence-accordion .kt-accordion-inner-wrap .wp-block-kadence-pane .kt-accordion-panel-inner {
  border: 0;
  padding: 20px;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
}
.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 2px -1px 0;
    width: auto;
  }
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 0;
  width: 100%;
  border: 1px solid #dabf90;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #dabf90;
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title span {
  color: white !important;
  margin-right: 0 !important;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover {
  background-color: transparent;
  border-color: #ba8568;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li a.kt-tab-title:hover span {
  color: #ba8568 !important;
}
@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 {
  border-color: #ba8568;
  color: white;
  text-transform: uppercase;
  background-color: #ba8568;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title span {
  color: #ba8568 !important;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title:hover {
  background-color: #ba8568;
  border-color: #ba8568;
}
.wp-block-kadence-tabs ul.kt-tabs-title-list li.kt-tab-title-active a.kt-tab-title:hover span {
  color: white !important;
}
.wp-block-kadence-tabs div.kt-tabs-content-wrap .wp-block-kadence-tab {
  border: 0;
  padding: 0;
}

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

/* block : History */
.history {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .history {
    padding: 0rem 2rem;
  }
}
.history:before {
  content: "";
  height: 100%;
  position: absolute;
  width: 1px;
  border-left: 1px dashed rgba(1, 1, 1, 0.5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}
@media (max-width: 768px) {
  .history:before {
    left: 28px;
  }
}
.history:after {
  content: "";
  height: 100%;
  position: absolute;
  width: 80px;
  background: #EFE3CD;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .history:after {
    left: 28px;
  }
}
.history .year-block:first-child {
  padding-top: 0;
}
.history .year-block:first-child:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1px;
  transform: translateX(-50%) translateY(-100%);
  height: 50px;
  width: 80px;
  background-image: url("//wp-sosandar-2021.s3.eu-west-2.amazonaws.com/media/2021/11/timeline-top.svg");
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .history .year-block:first-child:before {
    left: 28px;
  }
}
.history .year-block .year {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  z-index: 5;
  color: #ba8568;
  display: block;
  text-align: center;
  padding: 5px 0;
  left: -25px;
  position: relative;
  background: #EFE3CD;
  min-width: 50px;
}
@media (max-width: 768px) {
  .history .year-block .year {
    left: -15px;
  }
}
.history .year-block .year .line {
  width: 4rem;
  height: 2px;
  background-color: #ba8568;
  display: block;
  margin: 0 auto;
}
.history .year-block .events {
  padding: 20px 0;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .history .year-block .events {
    padding: 0;
  }
}
.history .year-block .events .event-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .history .year-block .events .event-row {
    margin: 20px 0;
    flex-direction: column;
  }
}
.history .year-block .events .event-row.no-image {
  margin: 50px 0;
}
@media (max-width: 768px) {
  .history .year-block .events .event-row.no-image {
    margin: 0;
    flex-direction: column;
  }
}
.history .year-block .events .event-row.no-image .event-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .history .year-block .events .event-row.no-image .event-block {
    height: auto;
    margin: 0;
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .history .year-block .events .event-row.even {
    flex-direction: column-reverse;
  }
}
.history .year-block .events .event-row.with-image .event-block {
  height: 300px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .history .year-block .events .event-row.with-image .event-block {
    height: 150px;
  }
  .history .year-block .events .event-row.with-image .event-block.image {
    height: 280px;
    width: 85% !important;
    margin-left: 15%;
    align-self: flex-start;
  }
  .history .year-block .events .event-row.with-image .event-block.text-holder {
    height: auto;
    padding: 20px 0;
  }
}
.history .year-block .events .event-row.even.no-image {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .history .year-block .events .event-row.even.no-image {
    height: auto;
    margin: 20px 0;
  }
}
.history .year-block .events .event-row.odd.with-image .image {
  margin-right: auto;
  margin-left: 10%;
}
@media (max-width: 768px) {
  .history .year-block .events .event-row.odd.with-image .image {
    height: 280px;
    width: 85% !important;
    margin-left: 15%;
    align-self: flex-end;
  }
}
.history .year-block .events:first-child {
  padding-top: 0;
}
.history .year-block .events .image {
  display: block;
  width: 40% !important;
  max-width: 500px;
  position: relative;
  margin-bottom: 1rem;
  height: 300px;
  margin-top: 0;
  margin-right: 10%;
}
.history .year-block .events .image.even:after {
  display: block;
  content: "";
  padding-bottom: 60%;
}
.history .year-block .events .image > .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.history .year-block .events .event-block {
  font-weight: 500;
  color: #ba8568;
  font-weight: 400;
  font-size: 2rem;
  position: relative;
  width: 50%;
  align-self: flex-end;
  text-align: left;
}
@media (min-width: 1441px) {
  .history .year-block .events .event-block {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .history .year-block .events .event-block {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .history .year-block .events .event-block {
    width: 100%;
  }
}
.history .year-block .events .event-block .month {
  width: 6rem;
  height: 6rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
  background: #ba8568;
  font-size: 1.8rem;
  font-weight: 400;
  border-radius: 50%;
  line-height: 6rem;
  z-index: 9999;
  margin: 0 15px;
}
.history .year-block .events .event-block.logo .text, .history .year-block .events .event-block.photoo .text {
  color: #010101;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
  text-align: left;
}
@media (min-width: 1441px) {
  .history .year-block .events .event-block.logo .text, .history .year-block .events .event-block.photoo .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .history .year-block .events .event-block.logo .text, .history .year-block .events .event-block.photoo .text {
    font-size: 1.6rem;
  }
}
.history .year-block .events .event-block.logo .text .absolute, .history .year-block .events .event-block.photoo .text .absolute {
  width: 100%;
  top: 0;
}
@media (min-width: 769px) {
  .history .year-block .events .event-block.logo .text .absolute, .history .year-block .events .event-block.photoo .text .absolute {
    position: absolute;
  }
}
.history .year-block .events .event-block.logo .month, .history .year-block .events .event-block.logo .year, .history .year-block .events .event-block.photoo .month, .history .year-block .events .event-block.photoo .year {
  z-index: 5;
}
.history .year-block .events .event-block.logo .month.mobile, .history .year-block .events .event-block.logo .year.mobile, .history .year-block .events .event-block.photoo .month.mobile, .history .year-block .events .event-block.photoo .year.mobile {
  display: none;
}
.history .year-block .events .event-block.logo .month.desktop, .history .year-block .events .event-block.logo .year.desktop, .history .year-block .events .event-block.photoo .month.desktop, .history .year-block .events .event-block.photoo .year.desktop {
  display: block;
}
@media (max-width: 768px) {
  .history .year-block .events .event-block.logo .month.desktop, .history .year-block .events .event-block.logo .year.desktop, .history .year-block .events .event-block.photoo .month.desktop, .history .year-block .events .event-block.photoo .year.desktop {
    display: none;
  }
  .history .year-block .events .event-block.logo .month.mobile, .history .year-block .events .event-block.logo .year.mobile, .history .year-block .events .event-block.photoo .month.mobile, .history .year-block .events .event-block.photoo .year.mobile {
    display: block;
  }
}
.history .year-block .events .event-block.logo .image, .history .year-block .events .event-block.photoo .image {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.history .year-block .events .event-block.logo .image:after, .history .year-block .events .event-block.photoo .image:after {
  display: block;
  content: "";
  padding-bottom: 60%;
}
.history .year-block .events .event-block.logo .image > .bg, .history .year-block .events .event-block.photoo .image > .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.history .year-block .events .event-block.logo.logo, .history .year-block .events .event-block.photoo.logo {
  position: relative;
}
.history .year-block .events .event-block.logo.logo .image, .history .year-block .events .event-block.photoo.logo .image {
  background-color: rgba(1, 1, 1, 0.1);
}
.history .year-block .events .event-block.logo.logo .image > .bg, .history .year-block .events .event-block.photoo.logo .image > .bg {
  background-size: 40%;
  background-repeat: no-repeat;
}
.history .year-block .events .event-block.even {
  padding: 0;
  align-self: flex-end;
  text-align: left;
}
.history .year-block .events .event-block.even.with-image {
  margin-top: -140px;
}
.history .year-block .events .event-block.even .text {
  padding-left: 15px;
  border-left: 1px solid rgba(1, 1, 1, 0.1);
  flex: 1;
}
.history .year-block .events .event-block.odd {
  padding: 0;
  align-self: flex-start;
  text-align: right;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .history .year-block .events .event-block.odd {
    flex-direction: row;
    text-align: left;
  }
}
.history .year-block .events .event-block.odd.with-image {
  margin-top: 120px;
}
.history .year-block .events .event-block.odd .text {
  padding-right: 15px;
  border-right: 1px solid rgba(1, 1, 1, 0.1);
  flex: 1;
}
@media (max-width: 768px) {
  .history .year-block .events .event-block.odd .text {
    padding-right: 0;
    padding-left: 15px;
    border-left: 1px solid rgba(1, 1, 1, 0.1);
    border-right: 0px;
  }
}
.history .year-block .events .event-block.odd .year {
  right: -25px;
  left: initial;
  min-width: 50px;
}
@media (max-width: 768px) {
  .history .year-block .events .event-block.odd .year {
    left: -15px;
    right: initial;
  }
}
.history .year-block .events .event-block:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .history .year-block .events .event-block.odd .month {
    background: #ba8568;
  }
}

.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: #007D7D;
  font-weight: 400;
  margin-bottom: 0;
}
.latest-document-item span {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #829AB1;
}

.is-style-grey-bg {
  background: #FAF9F6;
}

.row.bir-block {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
}
.row.bir-block .row-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 1025px) {
  .row.bir-block.alignfull {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (min-width: 769px) {
  .document-table thead th.date_published {
    width: 180px;
    max-width: 180px;
  }
  .document-table thead th.file_name {
    width: 250px;
    max-width: 250px;
  }
  .document-table tbody tr td.date_published {
    width: 180px;
    max-width: 180px;
  }
  .document-table tbody tr td.file_name {
    width: 250px;
    max-width: 250px;
  }
  .document-table tbody tr td a {
    padding: 10px;
  }
}

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