/* Scss Document */
/*
========================
ANIMATIONS
========================
*/
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  animation-name: fadeOut;
  -o-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

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

/* Scss Document */
/*
======================
MAIN CSS RESETS
======================
*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, figure, figcaption, footer, header, hgroup, nav, section, video, audio, summary {
  display: block;
}

html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, cite, code, dfn, em, img, ol, ul, li,
fieldset, form, label, textarea, textfield, caption,
article, aside, figure, figcaption, footer, header, nav, section, summary, audio, video, summary {
  margin: 0;
  padding: 0;
  border: 0;
}

html,
body {
  font-size: 16px;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

body {
  position: relative;
  opacity: 1;
  -webkit-transition: 0.7s opacity;
  -moz-transition: 0.7s opacity;
  transition: 0.7s opacity;
}
body.fade-out {
  opacity: 0;
}

.page-wrap {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.page-wrap.menu-open {
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  transform: scale(0.95);
}

.page-container {
  padding: 0 20px 20px 20px;
  min-height: 600px;
}

/* Change colour of text/background in highlighted text */
::-moz-selection {
  color: #ffffff;
  text-shadow: none;
  background-color: #0064AA;
}

::selection {
  color: #ffffff;
  text-shadow: none;
  background-color: #0064AA;
}

:focus {
  outline: none;
}

img {
  vertical-align: top;
  border: none;
  max-width: 100%;
  height: auto;
}
img.alignleft {
  float: left;
  margin-right: 30px;
}
img.alignright {
  float: right;
  margin-left: 30px;
}
img.aligncenter {
  margin-bottom: 30px;
  margin: 0 auto 30px auto;
}

ul:after,
.clearfix:after {
  content: "";
  height: 0;
  display: block;
  visibility: hidden;
  clear: both;
}

ol li,
ul li {
  list-style-position: inside;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

input[type=button],
input[type=submit],
input[type=tel],
input[type=email],
input[type=text],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h1, h2, h3, h4, h5 {
  margin-bottom: 20px;
}

.textwidget p:last-child {
  margin: 0;
}

.hidden {
  opacity: 0;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  transition: 1s all;
}

.visible {
  opacity: 1;
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  transition: 1s all;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cover {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  background-position: center center;
}

.clear {
  display: block;
  width: 100%;
  clear: both;
  height: 0;
}

/************************************************************************************************
										 * Grid
 ************************************************************************************************/
.item-overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
}

.site-content {
  position: relative;
}

.site-content > section {
  margin-bottom: 50px;
  margin-top: 50px;
  position: relative;
}
.site-content > section.padding-row, .site-content > section .cover-bg, .site-content > section .cta-item.color-block {
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 50px;
  padding-top: 50px;
}
@media (min-width: 800px) {
  .site-content > section {
    margin-bottom: 100px;
    margin-top: 100px;
  }
  .site-content > section.padding-row, .site-content > section .cover-bg, .site-content > section .cta-item.color-block {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .site-content > section {
    margin-bottom: 150px;
    margin-top: 150px;
  }
  .site-content > section.padding-row, .site-content > section .cover-bg, .site-content > section .cta-item.color-block {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 150px;
    padding-top: 150px;
  }
}
.site-content > section.full-width.block-video {
  margin: 0 !important;
}

.no-border {
  border: 0 !important;
}

.bb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 551px) {
  .bb-container {
    padding: 0;
  }
}

.full-width {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

.row.full-width-column {
  margin-left: 0;
  margin-right: 0;
}

.max-left-column, .max-middle-column {
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}

.max-middle-column {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.hori-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hori-list > li, .hori-list > div, .hori-list > a {
  display: inline-block;
}
.hori-list > li:before, .hori-list > div:before, .hori-list > a:before {
  display: none;
}

.row {
  margin-left: -30px;
  margin-right: -30px;
}

ul.row {
  list-style: none;
  width: 100%;
}

.relative {
  position: relative;
}

/************************************************************************************************
										 * Alignment
 ************************************************************************************************/
.left-align {
  text-align: center;
}

.center-align {
  text-align: center;
}

.right-align {
  text-align: center;
}

.fl-right, .fl-left {
  float: none;
  margin-left: 0;
  margin-right: 0;
}

/************************************************************************************************
										 * Padding Bottoms
 ************************************************************************************************/
.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.padding-bottom-5 {
  padding-bottom: 5px !important;
}

.padding-bottom-10 {
  padding-bottom: 5px !important;
}

.padding-bottom-20 {
  padding-bottom: 10px !important;
}

.padding-bottom-25 {
  padding-bottom: 12px !important;
}

.padding-bottom-30 {
  padding-bottom: 15px !important;
}

.padding-bottom-35 {
  padding-bottom: 17px !important;
}

.padding-bottom-40 {
  padding-bottom: 20px !important;
}

.padding-bottom-50 {
  padding-bottom: 25px !important;
}

.padding-bottom-60 {
  padding-bottom: 60px !important;
}

/************************************************************************************************
										 * Table Cell
 ************************************************************************************************/
.table-cell {
  float: none;
  vertical-align: middle;
}

/************************************************************************************************
										 * Flex
 ************************************************************************************************/
/****** Markup to get you started (it can be used in conjunction with other classes such as columns etc.)

LEFT AND RIGHT ALIGNED & MIDDLE VERTICALLY ALIGNED HEADER ELEMENTS
<div class="flex-header">
	<div class="flex-header--left">Left aligns</div>
	<div class="flex-header--right">Right aligned nav</div>
</div>

MIDDLE & CENTER ALIGN ITEM WITH ANOTHER ITEM
<div class="flex-middle">
	<div class="flex-middle--item">I'm in the middle!</div>
</div>

SAME HEIGHT ITEMS WITHIN A ROW
<div class="flex-same-height">
	<div class="flex-same-height--item">Item 1</div>
	<div class="flex-same-height--item">Item 2</div>
	<div class="flex-same-height--item">Item 3</div>
</div>

*******/
.flex-header--left, .flex-header--right, .flex-middle--item, .flex-middle--left, .flex-middle--right {
  display: inline-block;
}

.flex-header, .flex-middle, .flex-same-height {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.flex-header {
  align-items: center;
}

.flex-middle--item {
  margin: auto;
}

.flex-middle--left {
  margin: auto auto auto 0;
}

.flex-middle--right {
  margin: auto 0 auto auto;
}

.flex-header--right {
  margin-left: auto;
}

.flex-same-height--item {
  flex-grow: 1;
}

@media (min-width: 800px) {
  .flex-fixed-fluid {
    display: flex;
  }
  .flex--fixed {
    width: 400px;
  }
  .flex--fluid {
    flex: 1;
  }
}
body.ie11 .flex-same-height {
  display: block !important;
  font-size: 0;
}
@media (min-width: 800px) {
  body.ie11 .flex-same-height--item {
    flex-grow: 0;
    display: inline-block;
  }
}

/************************************************************************************************
										 * Self Clearing Goodness
 ************************************************************************************************/
.gform_page_footer:after,
.container:after,
.row:after,
.u-cf,
ul.row > li,
.footer-bottom:after {
  content: "";
  display: table;
  clear: both;
}

/************************************************************************************************
										 * Media Queries - Bigger than mobile
 ************************************************************************************************/
@media (min-width: 1000px) {
  .table {
    display: table;
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .table-row {
    display: table-row;
  }
  .table-cell {
    display: table-cell;
    padding: 0 20px;
  }
  .padding-bottom-0 {
    padding-bottom: 0 !important;
  }
  .padding-bottom-5 {
    padding-bottom: 5px !important;
  }
  .padding-bottom-10 {
    padding-bottom: 10px !important;
  }
  .padding-bottom-20 {
    padding-bottom: 20px !important;
  }
  .padding-bottom-25 {
    padding-bottom: 25px !important;
  }
  .padding-bottom-30 {
    padding-bottom: 30px !important;
  }
  .padding-bottom-35 {
    padding-bottom: 35px !important;
  }
  .padding-bottom-40 {
    padding-bottom: 40px !important;
  }
  .padding-bottom-50 {
    padding-bottom: 50px !important;
  }
  .padding-bottom-60 {
    padding-bottom: 60px !important;
  }
  .left-align {
    text-align: left;
  }
  .right-align {
    text-align: right;
  }
  .fl-left {
    float: left;
    margin-right: 20px;
  }
  .fl-right {
    float: right;
  }
  .hori-list {
    margin: 0;
    padding: 0;
  }
  .hori-list > div, .hori-list > li, .hori-list > a {
    display: inline-block;
    float: none;
    vertical-align: middle;
  }
  .one.column,
  .one.columns {
    width: 8.3333333333%;
  }
  .one.column.max-width,
  .one.columns.max-width {
    max-width: 116.6666666667px;
  }
  .two.columns {
    width: 16.6666666667%;
  }
  .two.columns.max-width {
    max-width: 233.3333333333px;
  }
  .three.columns {
    width: 25%;
  }
  .three.columns.max-width {
    max-width: 350px;
  }
  .four.columns {
    width: 33.3333333333%;
  }
  .four.columns.max-width {
    max-width: 466.6666666667px;
  }
  .five.columns {
    width: 41.6666666667%;
  }
  .five.columns.max-width {
    max-width: 583.3333333333px;
  }
  .six.columns {
    width: 50%;
  }
  .six.columns.max-width {
    max-width: 700px;
  }
  .seven.columns {
    width: 58.3333333333%;
  }
  .seven.columns.max-width {
    max-width: 816.6666666667px;
  }
  .eight.columns {
    width: 66.6666666667%;
  }
  .eight.columns.max-width {
    max-width: 933.3333333333px;
  }
  .nine.columns {
    width: 75%;
  }
  .nine.columns.max-width {
    max-width: 1050px;
  }
  .ten.columns {
    width: 83.3333333333%;
  }
  .ten.columns.max-width {
    max-width: 1166.6666666667px;
  }
  .eleven.columns {
    width: 91.6666666667%;
  }
  .eleven.columns.max-width {
    max-width: 1283.3333333333px;
  }
  .twelve.columns {
    width: 100%;
  }
  .one-fifth.column {
    width: 20%;
  }
  .two-fifths.columns {
    width: 40%;
  }
  .three-fifths.columns {
    width: 60%;
  }
  .one-third.column {
    width: 33.3333333333%;
  }
  .two-thirds.column {
    width: 66.6666666667%;
  }
  .one-half.column {
    width: 50%;
  }
  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.3333333333%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 16.6666666667%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 25%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 33.3333333333%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 41.6666666667%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 50%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 58.3333333333%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 66.6666666667%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 75%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 83.3333333333%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 91.6666666667%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 33.3333333333%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 66.6666666667%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 50%;
  }
  .columns.max-width,
  .column.max-width {
    width: 100%;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("../sass/icomoon/fonts/icomoon.eot?fox21i");
  src: url("../sass/icomoon/fonts/icomoon.eot?fox21i#iefix") format("embedded-opentype"), url("../sass/icomoon/fonts/icomoon.ttf?fox21i") format("truetype"), url("../sass/icomoon/fonts/icomoon.woff?fox21i") format("woff"), url("../sass/icomoon/fonts/icomoon.svg?fox21i#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play:before {
  content: "\e909";
}

.icon-chevron-right:before {
  content: "\e907";
}

.icon-chevron-left:before {
  content: "\e908";
}

.icon-envelope:before {
  content: "\e900";
}

.icon-facebook:before {
  content: "\e901";
}

.icon-flickr:before {
  content: "\e902";
}

.icon-instagram:before {
  content: "\e903";
}

.icon-location-arrow:before {
  content: "\e904";
}

.icon-phone:before {
  content: "\e905";
}

.icon-search:before {
  content: "\e906";
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.bb-hamburger {
  padding: 18px 0 15px 0;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.bb-hamburger:hover {
  background: transparent;
}

.bb-hamburger-box {
  width: 34px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.bb-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.bb-hamburger-inner, .bb-hamburger-inner::before, .bb-hamburger-inner::after {
  width: 34px;
  height: 2px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.bb-hamburger-inner::before, .bb-hamburger-inner::after {
  content: "";
  display: block;
}

.bb-hamburger-inner::before {
  top: -10px;
}

.bb-hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.bb-hamburger--3dx .bb-hamburger-box {
  perspective: 80px;
}

.bb-hamburger--3dx .bb-hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dx .bb-hamburger-inner::before, .bb-hamburger--3dx .bb-hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dx.swipe-open .bb-hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}

.bb-hamburger--3dx.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--3dx.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.bb-hamburger--3dx-r .bb-hamburger-box {
  perspective: 80px;
}

.bb-hamburger--3dx-r .bb-hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dx-r .bb-hamburger-inner::before, .bb-hamburger--3dx-r .bb-hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dx-r.swipe-open .bb-hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}

.bb-hamburger--3dx-r.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--3dx-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.bb-hamburger--3dy .bb-hamburger-box {
  perspective: 80px;
}

.bb-hamburger--3dy .bb-hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dy .bb-hamburger-inner::before, .bb-hamburger--3dy .bb-hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dy.swipe-open .bb-hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}

.bb-hamburger--3dy.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--3dy.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.bb-hamburger--3dy-r .bb-hamburger-box {
  perspective: 80px;
}

.bb-hamburger--3dy-r .bb-hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dy-r .bb-hamburger-inner::before, .bb-hamburger--3dy-r .bb-hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dy-r.swipe-open .bb-hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}

.bb-hamburger--3dy-r.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--3dy-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.bb-hamburger--3dxy .bb-hamburger-box {
  perspective: 80px;
}

.bb-hamburger--3dxy .bb-hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dxy .bb-hamburger-inner::before, .bb-hamburger--3dxy .bb-hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dxy.swipe-open .bb-hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg);
}

.bb-hamburger--3dxy.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--3dxy.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.bb-hamburger--3dxy-r .bb-hamburger-box {
  perspective: 80px;
}

.bb-hamburger--3dxy-r .bb-hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dxy-r .bb-hamburger-inner::before, .bb-hamburger--3dxy-r .bb-hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bb-hamburger--3dxy-r.swipe-open .bb-hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.bb-hamburger--3dxy-r.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--3dxy-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.bb-hamburger--arrow.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.bb-hamburger--arrow.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.bb-hamburger--arrow-r.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.bb-hamburger--arrow-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.bb-hamburger--arrowalt .bb-hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bb-hamburger--arrowalt .bb-hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bb-hamburger--arrowalt.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.bb-hamburger--arrowalt.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.bb-hamburger--arrowalt-r .bb-hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bb-hamburger--arrowalt-r .bb-hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bb-hamburger--arrowalt-r.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.bb-hamburger--arrowalt-r.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.bb-hamburger--arrowturn.swipe-open .bb-hamburger-inner {
  transform: rotate(-180deg);
}

.bb-hamburger--arrowturn.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.bb-hamburger--arrowturn.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.bb-hamburger--arrowturn-r.swipe-open .bb-hamburger-inner {
  transform: rotate(-180deg);
}

.bb-hamburger--arrowturn-r.swipe-open .bb-hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.bb-hamburger--arrowturn-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.bb-hamburger--boring .bb-hamburger-inner, .bb-hamburger--boring .bb-hamburger-inner::before, .bb-hamburger--boring .bb-hamburger-inner::after {
  transition-property: none;
}

.bb-hamburger--boring.swipe-open .bb-hamburger-inner {
  transform: rotate(45deg);
}

.bb-hamburger--boring.swipe-open .bb-hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.bb-hamburger--boring.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.bb-hamburger--collapse .bb-hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--collapse .bb-hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.bb-hamburger--collapse .bb-hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--collapse.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--collapse.swipe-open .bb-hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.bb-hamburger--collapse.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.bb-hamburger--collapse-r .bb-hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--collapse-r .bb-hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.bb-hamburger--collapse-r .bb-hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--collapse-r.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--collapse-r.swipe-open .bb-hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.bb-hamburger--collapse-r.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.bb-hamburger--elastic .bb-hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bb-hamburger--elastic .bb-hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.bb-hamburger--elastic .bb-hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bb-hamburger--elastic.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.bb-hamburger--elastic.swipe-open .bb-hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.bb-hamburger--elastic.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.bb-hamburger--elastic-r .bb-hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bb-hamburger--elastic-r .bb-hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.bb-hamburger--elastic-r .bb-hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bb-hamburger--elastic-r.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.bb-hamburger--elastic-r.swipe-open .bb-hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.bb-hamburger--elastic-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.bb-hamburger--emphatic {
  overflow: hidden;
}

.bb-hamburger--emphatic .bb-hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.bb-hamburger--emphatic .bb-hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.bb-hamburger--emphatic .bb-hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.bb-hamburger--emphatic.swipe-open .bb-hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}

.bb-hamburger--emphatic.swipe-open .bb-hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.bb-hamburger--emphatic.swipe-open .bb-hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.bb-hamburger--emphatic-r {
  overflow: hidden;
}

.bb-hamburger--emphatic-r .bb-hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.bb-hamburger--emphatic-r .bb-hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.bb-hamburger--emphatic-r .bb-hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.bb-hamburger--emphatic-r.swipe-open .bb-hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}

.bb-hamburger--emphatic-r.swipe-open .bb-hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.bb-hamburger--emphatic-r.swipe-open .bb-hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.bb-hamburger--minus .bb-hamburger-inner::before, .bb-hamburger--minus .bb-hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.bb-hamburger--minus.swipe-open .bb-hamburger-inner::before, .bb-hamburger--minus.swipe-open .bb-hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.bb-hamburger--minus.swipe-open .bb-hamburger-inner::before {
  top: 0;
}

.bb-hamburger--minus.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.bb-hamburger--slider .bb-hamburger-inner {
  top: 2px;
}

.bb-hamburger--slider .bb-hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.bb-hamburger--slider .bb-hamburger-inner::after {
  top: 20px;
}

.bb-hamburger--slider.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--slider.swipe-open .bb-hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.bb-hamburger--slider.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.bb-hamburger--slider-r .bb-hamburger-inner {
  top: 2px;
}

.bb-hamburger--slider-r .bb-hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.bb-hamburger--slider-r .bb-hamburger-inner::after {
  top: 20px;
}

.bb-hamburger--slider-r.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.bb-hamburger--slider-r.swipe-open .bb-hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.bb-hamburger--slider-r.swipe-open .bb-hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.bb-hamburger--spin .bb-hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spin .bb-hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.bb-hamburger--spin .bb-hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spin.swipe-open .bb-hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--spin.swipe-open .bb-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.bb-hamburger--spin.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.bb-hamburger--spin-r .bb-hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spin-r .bb-hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.bb-hamburger--spin-r .bb-hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spin-r.swipe-open .bb-hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--spin-r.swipe-open .bb-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.bb-hamburger--spin-r.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.bb-hamburger--spring .bb-hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.bb-hamburger--spring .bb-hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spring .bb-hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spring.swipe-open .bb-hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}

.bb-hamburger--spring.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.bb-hamburger--spring.swipe-open .bb-hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.bb-hamburger--spring-r .bb-hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spring-r .bb-hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.bb-hamburger--spring-r .bb-hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--spring-r.swipe-open .bb-hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--spring-r.swipe-open .bb-hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.bb-hamburger--spring-r.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.bb-hamburger--stand .bb-hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.bb-hamburger--stand .bb-hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--stand .bb-hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--stand.swipe-open .bb-hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.bb-hamburger--stand.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--stand.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.bb-hamburger--stand-r .bb-hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.bb-hamburger--stand-r .bb-hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--stand-r .bb-hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--stand-r.swipe-open .bb-hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.bb-hamburger--stand-r.swipe-open .bb-hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--stand-r.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.bb-hamburger--squeeze .bb-hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--squeeze .bb-hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.bb-hamburger--squeeze .bb-hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.bb-hamburger--squeeze.swipe-open .bb-hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.bb-hamburger--squeeze.swipe-open .bb-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.bb-hamburger--squeeze.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.bb-hamburger--vortex .bb-hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.bb-hamburger--vortex .bb-hamburger-inner::before, .bb-hamburger--vortex .bb-hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.bb-hamburger--vortex .bb-hamburger-inner::before {
  transition-property: top, opacity;
}

.bb-hamburger--vortex .bb-hamburger-inner::after {
  transition-property: bottom, transform;
}

.bb-hamburger--vortex.swipe-open .bb-hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.bb-hamburger--vortex.swipe-open .bb-hamburger-inner::before, .bb-hamburger--vortex.swipe-open .bb-hamburger-inner::after {
  transition-delay: 0s;
}

.bb-hamburger--vortex.swipe-open .bb-hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.bb-hamburger--vortex.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.bb-hamburger--vortex-r .bb-hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.bb-hamburger--vortex-r .bb-hamburger-inner::before, .bb-hamburger--vortex-r .bb-hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.bb-hamburger--vortex-r .bb-hamburger-inner::before {
  transition-property: top, opacity;
}

.bb-hamburger--vortex-r .bb-hamburger-inner::after {
  transition-property: bottom, transform;
}

.bb-hamburger--vortex-r.swipe-open .bb-hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.bb-hamburger--vortex-r.swipe-open .bb-hamburger-inner::before, .bb-hamburger--vortex-r.swipe-open .bb-hamburger-inner::after {
  transition-delay: 0s;
}

.bb-hamburger--vortex-r.swipe-open .bb-hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.bb-hamburger--vortex-r.swipe-open .bb-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.custom-lightbox {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}
.custom-lightbox.scroll-pane {
  overflow-x: hidden;
  overflow-y: scroll;
}
.custom-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  box-sizing: border-box;
  background-color: white;
  cursor: auto;
  margin: auto;
  padding: 30px;
  position: relative;
}
.lightbox-content .scroll-pane {
  height: 78%;
  padding: 0 20px;
  margin: 0 0 20px -20px;
}
.lightbox-content .title {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #ddd;
}
.lightbox-content .close-icon {
  color: black;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 30px;
  top: 30px;
}
.lightbox-content .close-icon:hover {
  color: red;
}

@media (min-width: 800px) {
  .custom-lightbox {
    display: flex;
    transform: translate3d(0, 0, 0);
  }
  .custom-lightbox.scroll-pane {
    overflow-x: unset;
    overflow-y: unset;
  }
  .custom-lightbox .scroll-pane {
    height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .lightbox-content {
    border-radius: 4px;
    height: auto;
    max-width: 800px;
    min-width: 400px;
  }
}
.video-lightbox {
  display: flex;
  transform: translate3d(0, 0, 0);
}
.video-lightbox .lightbox-content {
  background: none;
  max-width: 1100px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.video-lightbox .gform_ajax_spinner {
  border-left: 4px solid white;
  display: none;
  margin-top: -15px;
  top: 50%;
}
.video-lightbox.active .gform_ajax_spinner {
  display: block;
}

/************************************************************************************************
                     * Search Lightbox
 ************************************************************************************************/
.search-lightbox-btn {
  cursor: pointer;
}

.search-lightbox .lightbox-content {
  left: 50%;
  top: 50%;
  opacity: 0;
  max-width: 600px;
  padding: 20px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  transform: translate3d(-50%, 100%, 0);
  width: 100%;
}
.search-lightbox.active .lightbox-content {
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
}
.search-lightbox #searchform {
  position: relative;
}
.search-lightbox .widget-title, .search-lightbox .screen-reader-text {
  display: none;
}
.search-lightbox #s {
  background-color: transparent;
  border: none;
  color: black;
  font-size: 24px;
  height: auto;
  padding: 0 60px 0 15px;
}
.search-lightbox #s::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.search-lightbox #searchsubmit {
  background-color: transparent;
  border: none;
  color: black;
  position: absolute;
  top: 50%;
  right: 0;
  padding: 5px 12px;
  font-size: 25px;
  transform: translate3d(0, -50%, 0);
}

/************************************************************************************************
										 * SLICK OVERRIDES
 ************************************************************************************************/
.slick-list, .slick-track {
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.slick-slide {
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  position: relative;
  outline: none !important;
}

button.slick-prev, button.slick-next {
  display: none !important;
  font-family: "icomoon" !important;
  background: none !important;
  box-shadow: none;
  border: 0;
  font-size: 0px;
  margin: 0;
  outline: 0 !important;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 50%;
  z-index: 1;
  transform: translate3d(0, -50%, 0);
}
button.slick-prev:before, button.slick-next:before {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 800px) {
  button.slick-prev:before, button.slick-next:before {
    font-size: 80px;
  }
}
button.slick-prev:hover, button.slick-next:hover {
  background: none;
}
button.slick-prev:hover:before, button.slick-next:hover:before {
  color: white;
}

.slick-prev {
  left: 0;
}
.slick-prev:before {
  content: "\e909";
}

.slick-next {
  right: 0;
}
.slick-next:before {
  content: "\e90b";
}

@media (min-width: 800px) {
  button.slick-prev, button.slick-next {
    display: block !important;
  }
}
.slick-dots {
  margin: 0;
  list-style: none;
  padding: 0;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 800px) {
  .slick-dots {
    bottom: 40px;
  }
}
.slick-dots li {
  line-height: 0;
  display: inline-block;
  margin: 0 10px;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots button {
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  font-size: 0;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}
.slick-dots button:hover {
  background-color: transparent;
}
.slick-dots .slick-active button {
  background-color: transparent;
}

.slider-row {
  margin-top: 50px;
  padding-bottom: 50px;
}
.slider-row:first-child {
  margin-top: 0;
}
.slider-row .slick-dots {
  bottom: 0;
}

/* 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;
  margin-left: auto;
  margin-right: auto;
}
.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;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  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;
}

body, .swipe-menu {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.swipe-open > h2, .swipe-open > ul, .swipe-footer {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.swipe-panel, .swipe-first-panel {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

body {
  position: relative;
}
body.swipe-open {
  overflow: hidden;
}

.swipe-menu {
  background-color: white;
  box-sizing: border-box;
  bottom: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  padding: 40px 25px;
  position: fixed;
  transform: translate3d(0, 0, 0);
  top: 0;
  visibility: hidden;
  width: 250px;
  z-index: 99999;
}
.swipe-menu .swipe-footer {
  width: 250px;
}
.swipe-menu.left-swipe {
  transform: translate3d(-250px, 0, 0);
}
.swipe-menu.right-swipe {
  right: 0;
  transform: translate3d(250px, 0, 0);
}
.swipe-menu.swipe-open.left-swipe {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.swipe-menu.swipe-open.left-swipe.previous-panel > h2, .swipe-menu.swipe-open.left-swipe.previous-panel > ul, .swipe-menu.swipe-open.left-swipe.previous-panel .swipe-footer {
  transform: translate3d(-62.5px, 0, 0);
}
.swipe-menu.swipe-open.right-swipe {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.swipe-menu ul {
  margin: 0;
  padding: 20px 0 20px;
}
.swipe-menu li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
}
.swipe-menu li:last-child:before {
  display: none;
}
.swipe-menu li a {
  color: black;
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  padding: 10px 0;
  text-transform: uppercase;
}
.swipe-menu .top-menu {
  border-top: 1px solid #dd0303;
}
.swipe-menu .top-menu li a {
  color: rgba(0, 0, 0, 0.8);
  display: block;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0;
}
.swipe-menu .swipe-prev-panel, .swipe-menu .swipe-next-panel {
  cursor: pointer;
  color: black;
  font-size: 22px;
  padding: 10px;
  position: absolute;
  right: -10px;
  transform: translate3d(0, -50%, 0);
  top: 50%;
}
.swipe-menu .swipe-prev-panel {
  left: -10px;
  right: auto;
  top: 50%;
}
.swipe-menu h2 {
  color: black;
  margin-bottom: 0;
  position: relative;
  font-size: 30px;
  text-align: center;
}
.swipe-menu h2 img {
  display: inline-block;
  max-width: 200px;
}
.swipe-menu .swipe-panel, .swipe-menu .swipe-first-panel {
  background: white;
  bottom: 0;
  box-sizing: border-box;
  min-height: 100%;
  padding: 40px 25px;
  position: absolute;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  top: 0;
  width: 250px;
  z-index: 100000;
  left: 250px;
}
.swipe-menu .swipe-panel.swipe-panel-open, .swipe-menu .swipe-first-panel.swipe-panel-open {
  left: 0;
}
.swipe-menu .swipe-panel.previous-panel, .swipe-menu .swipe-first-panel.previous-panel {
  left: 0;
  transform: translate3d(-62.5px, 0, 0);
}

.swipe-footer {
  box-sizing: border-box;
  background: #3C3C3C;
  bottom: 0;
  left: 0;
  max-width: 250px;
  padding: 40px 25px;
  width: 100%;
  position: fixed;
  z-index: 100001;
}
.swipe-footer .social-wrapper a {
  color: white;
}
.swipe-footer .social-wrapper a + a {
  margin-left: 15px;
}

.swipe-overlay {
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transform: translate3d(0, 0, 0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  z-index: 99998;
}
.swipe-overlay.swipe-open {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 800px) {
  .swipe-menu {
    width: 500px;
  }
  .swipe-menu .swipe-footer {
    width: 500px;
  }
  .swipe-menu.left-swipe {
    transform: translate3d(-500px, 0, 0);
  }
  .swipe-menu.right-swipe {
    transform: translate3d(500px, 0, 0);
  }
  .swipe-menu.swipe-open.left-swipe.previous-panel > h2, .swipe-menu.swipe-open.left-swipe.previous-panel > ul, .swipe-menu.swipe-open.left-swipe.previous-panel .swipe-footer {
    transform: translate3d(-125px, 0, 0);
  }
  .swipe-menu .swipe-panel, .swipe-menu .swipe-first-panel {
    width: 500px;
    left: 500px;
  }
  .swipe-menu .swipe-panel.previous-panel, .swipe-menu .swipe-first-panel.previous-panel {
    left: 0;
    transform: translate3d(-125px, 0, 0);
  }
  .swipe-footer {
    max-width: 500px;
  }
}
.banner-links {
  display: none !important;
}

.banner {
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  height: auto;
  padding: 30px 0;
  position: relative;
}
@media (min-width: 800px) {
  .banner {
    padding: 70px 0;
  }
}
.banner .bb-container {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  padding: 0 15px;
  position: relative;
  box-sizing: border-box;
  flex-direction: column !important;
  width: 100%;
}
.banner.banner-slider {
  height: 500px;
}
.banner .inline-cover {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.banner .banner-logo-title {
  font-size: 0;
}
.banner .banner-logo-title img {
  display: inline-block;
}
.banner .banner-title {
  color: white;
  font-size: 28px;
  margin-bottom: 0;
  position: relative;
}
.banner .banner-title:after {
  content: "";
  background-color: #dd0303;
  height: 3px;
  width: 25px;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translate3d(-50%, 0, 0);
}
.banner .banner-subtitle {
  font-family: "aptos", Helvetica, Arial, sans-serif;
  color: white;
  font-size: 20px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  text-transform: none;
}
.banner .button {
  font-size: 16px;
  margin: 5px 10px;
}
.banner .button:hover {
  background: white;
  border-color: white;
}
@media (min-width: 550px) {
  .banner.banner-slider {
    height: 600px;
  }
  .banner .banner-title {
    font-size: 33px;
  }
  .banner .banner-subtitle {
    font-size: 20px;
    margin-top: 30px;
  }
}
@media (min-width: 800px) {
  .banner.home {
    height: 100vh;
    min-height: 800px;
  }
  .banner.banner-slider {
    height: 100vh;
  }
  .banner .banner-title {
    font-size: 58px;
  }
  .banner .banner-subtitle {
    font-size: 22px;
  }
  .banner .banner-button-row {
    margin-top: 30px;
  }
  .banner .button {
    font-size: 18px;
  }
}
@media (min-width: 1000px) {
  .banner .banner-title {
    font-size: 73px;
  }
  .banner .banner-subtitle {
    font-size: 24px;
  }
  .banner .button {
    font-size: 19px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-title {
    font-size: 88px;
  }
  .banner .banner-button-row {
    margin-top: 50px;
  }
  .banner .button {
    font-size: 21px;
  }
}

.banner-heading {
  padding-bottom: 0;
  padding-top: 80px;
}
@media (min-width: 800px) {
  .banner-heading {
    padding-bottom: 80px;
  }
}
.banner-heading img {
  margin-bottom: 30px;
  max-width: 400px;
}
.banner-heading .button {
  color: white;
  display: inline-block;
  background-color: var(--color_trans__white);
  backdrop-filter: blur(2px);
  border: 1px solid white;
  padding: 8px 20px 11px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}
.banner-heading .button:hover {
  background-color: var(--color_primary__blue);
  border-color: var(--color_primary__blue);
}

.banner-slider {
  padding: 0;
}

.banner-slide {
  height: 100%;
  width: 100%;
}

.banner-wrapper {
  position: relative;
}

.hidden-video {
  display: none;
}

@media (min-width: 800px) {
  .home .banner {
    height: 100vh;
    min-height: 800px;
  }
}
body.page-template-page-contact p {
  font-size: 18px !important;
}
body.page-template-page-contact .basic-content .content-wrap {
  max-width: 1170px;
}
body.page-template-page-contact .large-text-content {
  display: none;
}
body.page-template-page-contact .banner-images {
  display: none !important;
}
body.page-template-page-contact .one-third, body.page-template-page-contact .two-thirds {
  margin: 0px !important;
  float: left;
}
@media (max-width: 960px) {
  body.page-template-page-contact .one-third, body.page-template-page-contact .two-thirds {
    width: 100% !important;
    float: left;
  }
}
body.page-template-page-contact span {
  color: #dd0303 !important;
}
body.page-template-page-contact a {
  color: #656565;
}
body.page-template-page-contact a:hover {
  color: #dd0303 !important;
}

iframe {
  width: 100% !important;
}

.form-section {
  max-width: 770px;
  margin: 0 auto;
}

.gfield input, .gfield textarea, .gfield select {
  border: 1px solid #DEDEDE !important;
  color: #3C3C3C !important;
  font-family: "Playfair Display", serif !important;
  font-size: 16px !important;
  margin-top: 15px !important;
  padding: 10px 15px !important;
}
.gfield input span, .gfield textarea span, .gfield select span {
  color: #dd0303 !important;
}

.gfield select {
  color: #3C3C3C !important;
}

form label {
  text-transform: none !important;
  display: inline !important;
}

form input[type=checkbox] {
  top: 0px !important;
}

form button, input[type=submit] {
  color: white !important;
  padding: 10px 30px !important;
  background-color: #dd0303 !important;
  font-size: 18px !important;
}

.addressicon:before {
  content: "\e904";
  font-family: "icomoon";
  font-size: 18px;
}

.notifications-bar {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #dd0303;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 10px 0;
}
.notifications-bar:hover .notifications-bar__track {
  animation-play-state: paused;
}

.notifications-bar__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: notifications-marquee 30s linear infinite;
}

.notifications-bar__group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
  min-width: 100vw;
}

.notifications-bar__item {
  display: inline-block;
}

.notifications-bar__sep {
  margin: 0 2rem;
  font-size: 18px;
}

.notifications-bar__link {
  margin-left: 0.5em;
  color: inherit;
  text-decoration: underline;
}

@keyframes notifications-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .notifications-bar__track {
    animation: none;
  }
}
body.home .notifications-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
body.home .main-header {
  top: 34px;
}

/* CARD GRID - added by blue bee */
.bb-container:has(> .cards-container) {
  max-width: 2500px;
  padding-inline: 0;
}

.card-grid {
  padding-top: 40px;
  padding-bottom: 40px;
}
.card-grid .section-heading {
  margin-bottom: 30px;
}
.card-grid .cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-grid .card {
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 320px;
  height: 50vh;
  display: flex;
}
@media (width < 768px) {
  .card-grid .card {
    height: 20vh;
  }
}
.card-grid .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card-grid .card-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-grid .card-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}
.card-grid .card-body {
  position: relative;
  z-index: 2;
  align-self: flex-end;
}
@media (width < 768px) {
  .card-grid .card-body {
    align-self: center;
  }
}
.card-grid .card-body {
  width: 100%;
  padding: 70px 40px;
  color: white;
}
.card-grid .card-body .card-title {
  color: white;
  margin-bottom: 10px;
  font-size: clamp(20px, 3vw + 0.1rem, 55px);
}
.card-grid .card-body .card-content {
  color: white;
  margin-bottom: 20px;
}
.card-grid .card-body .card-content p {
  color: white;
  text-transform: uppercase;
}
.card-grid .button {
  color: white;
  display: inline-block;
  margin-inline: auto;
  background-color: var(--color_trans__white);
  backdrop-filter: blur(2px);
  border: 1px solid white;
  padding: 8px 20px 11px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}
.card-grid .button:hover {
  background-color: var(--color_primary__blue);
  border-color: var(--color_primary__blue);
}
@media (min-width: 550px) {
  .card-grid .card {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 1000px) {
  .card-grid.cols-2 .card {
    width: calc((100% - 20px) / 2);
  }
  .card-grid.cols-3 .card {
    width: calc((100% - 40px) / 3);
  }
  .card-grid.cols-4 .card {
    width: calc((100% - 60px) / 4);
  }
}

/* OUR PROCESS - added by blue bee */
.process-steps {
  padding-top: 40px;
  padding-bottom: 40px;
}
.process-steps .process-header {
  margin-bottom: 40px;
}
.process-steps .process-header .process-heading {
  margin-bottom: 20px;
}
.process-steps .process-header .process-heading h2 {
  font-family: "Playfair Display", serif;
  color: var(--color_primary__blue);
  margin: 0;
}
.process-steps .process-header .process-intro p {
  font-family: "aptos", Helvetica, Arial, sans-serif;
  color: var(--color_primary__blue);
  margin: 0;
}
.process-steps .steps-container {
  display: flex;
  flex-wrap: wrap;
}
.process-steps .step {
  box-sizing: border-box;
  width: 100%;
  padding: 0 0 30px;
  border-left: 0;
}
.process-steps .step .step-number {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--color_primary__blue);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 10px;
}
.process-steps .step .step-title {
  font-family: "Playfair Display", serif;
  color: var(--color_primary__blue);
  font-size: 26px;
  margin: 0 0 24px;
}
.process-steps .step .step-content {
  font-family: "aptos", Helvetica, Arial, sans-serif;
  color: var(--color_primary__blue);
  font-size: 16px;
  margin-bottom: 12px;
}
.process-steps .step .step-content p {
  color: var(--color_primary__blue);
  margin: 0;
}
.process-steps .step .step-link {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--color_primary__red);
  text-decoration: underline;
}
.process-steps .step .step-link:hover {
  text-decoration: none;
}
@media (min-width: 550px) {
  .process-steps .step {
    width: 50%;
    padding: 0 30px 30px;
    border-left: 1px solid #e0e0e0;
  }
  .process-steps .step:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}
@media (min-width: 1000px) {
  .process-steps .step {
    padding: 0 30px 0;
    border-left: 1px solid #e0e0e0;
  }
  .process-steps .step:nth-child(odd) {
    border-left: 1px solid #e0e0e0;
    padding-left: 30px;
  }
  .process-steps .step:first-child {
    border-left: 0;
    padding-left: 0;
  }
  .process-steps .step .step-number {
    font-size: 90px;
  }
  .process-steps.cols-2 .step {
    width: 50%;
  }
  .process-steps.cols-3 .step {
    width: 33.3333333333%;
  }
  .process-steps.cols-4 .step {
    width: 25%;
  }
  .process-steps.cols-5 .step {
    width: 20%;
  }
  .process-steps.cols-6 .step {
    width: 16.6666666667%;
  }
  .process-steps .process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .process-steps .process-header .process-heading {
    width: 40%;
    margin-bottom: 0;
  }
  .process-steps .process-header .process-heading h2 {
    font-size: 55px;
  }
  .process-steps .process-header .process-intro {
    width: 50%;
  }
}

/* STATS CAROUSEL - added by blue bee */
.stats-carousel {
  background-color: var(--color_primary__blue);
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}
.stats-carousel .section-heading {
  margin-bottom: 40px;
  text-align: center;
}
.stats-carousel .section-heading .heading-container h2 {
  font-family: "Playfair Display", serif;
  color: white;
  margin: 0;
}
.stats-carousel .stats-slider {
  position: relative;
}
.stats-carousel .stat-item {
  box-sizing: border-box;
  text-align: center;
  padding: 0 20px;
}
.stats-carousel .stat-item .stat-figure {
  display: block;
  font-family: "Playfair Display", serif;
  color: white;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 24px;
}
.stats-carousel .stat-item .stat-caption {
  display: block;
  font-family: "Playfair Display", serif;
  color: white;
  font-size: 20px;
  margin-top: 12px;
}
.stats-carousel .owl-nav {
  translate: 0 0;
}
.stats-carousel .owl-nav .arrow-button i {
  color: white;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
}
.stats-carousel .owl-nav .fa-chevron-left::before {
  content: url("data:image/svg+xml,<svg width='26' height='17' viewBox='0 0 26 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10.0867 15.4057L4.31244 9.62748L26 9.62748L26 7.3732L4.31244 7.37319L10.0867 1.5943L8.49419 7.42586e-07L7.43094e-07 8.5L8.49419 17L10.0867 15.4057Z' fill='white'/></svg>") !important;
}
.stats-carousel .owl-nav .fa-chevron-right::before {
  content: url("data:image/svg+xml,<svg width='26' height='17' viewBox='0 0 26 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.9133 1.59429L21.6876 7.37252L0 7.37252L0 9.6268L21.6876 9.6268L15.9133 15.4057L17.5058 17L26 8.5L17.5058 0L15.9133 1.59429Z' fill='white'/></svg>") !important;
}
.stats-carousel .owl-nav .owl-prev,
.stats-carousel .owl-nav .owl-next {
  position: absolute;
  top: 100%;
  margin-top: 40px;
}
.stats-carousel .owl-nav .owl-prev .arrow-button > i:before,
.stats-carousel .owl-nav .owl-next .arrow-button > i:before {
  color: white;
}
.stats-carousel .owl-nav .owl-prev {
  left: 10px;
}
.stats-carousel .owl-nav .owl-next {
  right: 10px;
}
.stats-carousel .owl-nav.disabled {
  display: none;
}
.stats-carousel .owl-dots {
  text-align: center;
  margin-top: 40px;
}
.stats-carousel .owl-dots .owl-dot {
  display: inline-block;
}
.stats-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.stats-carousel .owl-dots .owl-dot.active span {
  background: white;
}
.stats-carousel .stat-item {
  border-right: 0;
}
@media (min-width: 768px) {
  .stats-carousel .section-heading .heading-container h2 {
    font-size: 55px;
  }
  .stats-carousel .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  .stats-carousel .stat-item .stat-figure {
    font-size: 90px;
  }
  .stats-carousel .stat-item .stat-caption {
    font-size: 26px;
  }
  .stats-carousel .owl-item:last-child .stat-item {
    border-right: 0;
  }
}

.youtube-player img,
.youtube-player-with-thumb img,
.icon-play {
  transition: all 0.2s ease-in-out;
}

.logo-wrapper {
  width: clamp(150px, 16vw, 300px);
}
.logo-wrapper img {
  width: 100%;
}

body.home .main-header {
  position: fixed;
}

.main-header {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: space-between;
  padding: clamp(15px, 2.1vw, 30px) clamp(15px, 2.1vw, 30px);
  top: 0;
  left: 0;
}
.main-header .menus-wrapper {
  align-items: center;
  display: inline-flex;
}
@media (min-width: 1200px) {
  .main-header .menus-wrapper {
    display: inline-block;
  }
}
.main-header .top-nav-wrapper {
  margin-right: clamp(15px, 2.1vw, 30px);
}
@media (min-width: 1200px) {
  .main-header .top-nav-wrapper {
    border-bottom: 2px solid rgba(191, 191, 191, 0.5);
    margin-right: 0;
    padding-bottom: 15px;
  }
}
.main-header .top-nav-wrapper > * + * {
  margin-left: 30px;
}
.main-header .top-nav-wrapper .social-wrapper {
  display: inline-block;
}
.main-header .top-nav-wrapper .social-wrapper a {
  color: #9f9f9f;
}
.main-header .top-nav-wrapper .social-wrapper a:hover {
  color: #dd0303;
}
.main-header .top-nav-wrapper .social-wrapper a + a {
  margin-left: 15px;
}
.main-header .top-nav-wrapper .search-lightbox-btn:hover {
  color: #dd0303;
}
.main-header .top-menu,
.main-header .main-menu {
  text-align: right;
}
.main-header .top-menu li,
.main-header .main-menu li {
  display: inline-block;
  margin-bottom: 0;
}
.main-header .top-menu li.current-menu-item a,
.main-header .main-menu li.current-menu-item a {
  color: #dd0303;
}
.main-header .top-menu .sub-menu,
.main-header .main-menu .sub-menu {
  box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  border-top: 2px solid #dd0303;
  background-color: white;
  padding: 20px;
  min-width: 300px;
  right: 0;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  top: calc(100% + 15px);
  transition: all 0.2s ease-in-out;
  z-index: 100;
  text-align: left;
}
.main-header .top-menu .sub-menu li,
.main-header .main-menu .sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
}
.main-header .top-menu .sub-menu li + li,
.main-header .main-menu .sub-menu li + li {
  margin-top: 10px;
}
.main-header .top-menu .sub-menu li a,
.main-header .main-menu .sub-menu li a {
  font-family: "aptos", Helvetica, Arial, sans-serif;
}
.main-header .top-menu li.menu-item-has-children,
.main-header .main-menu li.menu-item-has-children {
  position: relative;
}
.main-header .top-menu li.menu-item-has-children:hover > a,
.main-header .main-menu li.menu-item-has-children:hover > a {
  color: #dd0303;
}
.main-header .top-menu li.menu-item-has-children:hover > .sub-menu,
.main-header .main-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-header .search-lightbox-btn {
  display: inline-block;
}
.main-header .top-menu {
  display: inline-block;
  float: unset;
  max-width: unset;
  text-align: unset;
  width: auto;
}
.main-header .top-menu li + li {
  margin-left: 30px;
}
.main-header .top-menu li a {
  color: #9f9f9f;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}
.main-header .top-menu li a:hover {
  color: #dd0303;
}
.main-header .main-menu {
  opacity: 1;
  padding: 0;
  padding-top: 12px;
  position: static;
  visibility: visible;
  transform: unset;
}
.main-header .main-menu li + li {
  margin-left: 30px;
}
.main-header .main-menu li a {
  color: #3c3c3c;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  text-transform: uppercase;
}
.main-header .main-menu li a:hover {
  color: #dd0303;
}

#searchform input {
  margin: 0;
}

/************************************************************************************************
                     * Hamburger / Main Menu Switch
 ************************************************************************************************/
@media (max-width: 1201px) {
  .main-header .main-menu,
  .main-header .top-menu,
  .main-header .social-wrapper {
    display: none !important;
  }
  .bb-hamburger {
    display: inline-block;
  }
}
.bb-hamburger {
  background: none;
  height: 35px;
  position: relative;
  width: 35px;
}
.bb-hamburger .bb-hamburger-box {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.bb-hamburger .bb-hamburger-inner,
.bb-hamburger .bb-hamburger-inner::before,
.bb-hamburger .bb-hamburger-inner::after {
  background: #3c3c3c;
  height: 3px;
}
.bb-hamburger:hover {
  background: none;
}
.bb-hamburger:hover .bb-hamburger-inner,
.bb-hamburger:hover .bb-hamburger-inner::before,
.bb-hamburger:hover .bb-hamburger-inner::after {
  background: #dd0303;
}

.youtube-player-with-thumb img,
.inline-cover img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.youtube-player-with-thumb.ie-fix,
.inline-cover.ie-fix {
  background-size: cover;
  background-position: center;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.youtube-player-with-thumb.ie-fix img,
.inline-cover.ie-fix img {
  opacity: 0;
}

.video-full,
.banner .youtube-player-with-thumb {
  height: 100%;
  left: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video-container {
  height: 0;
  left: auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  top: auto;
  width: auto;
}

.video-container iframe,
.video-full iframe,
.youtube-player iframe,
.youtube-player-with-thumb iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.video-full,
.banner .youtube-player-with-thumb {
  overflow: hidden;
}
.video-full iframe,
.banner .youtube-player-with-thumb iframe {
  left: 50%;
  top: 50%;
  height: 115%;
  transform: translate3d(-50%, -50%, 0);
  width: 115%;
}

.youtube-player,
.youtube-player-with-thumb {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  background: #000;
}
.youtube-player img,
.youtube-player-with-thumb img {
  display: block;
  margin: auto;
  opacity: 0.8;
  position: absolute;
  border: none;
  cursor: pointer;
}
.youtube-player:hover img,
.youtube-player-with-thumb:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}
.youtube-player .icon-play,
.youtube-player-with-thumb .icon-play {
  color: white;
  font-size: 40px;
  left: 50%;
  top: 50%;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
}
.youtube-player .icon-play:hover,
.youtube-player-with-thumb .icon-play:hover {
  transform: translate3d(-50%, -50%, 0) scale(1.1);
}

.page-container {
  padding-bottom: 0;
}

footer {
  background-color: #3c3c3c;
  padding-top: 50px !important;
  margin: 0 -20px 0 -20px;
  width: unset !important;
}
footer .footer-col {
  margin-bottom: 30px;
}
footer .menu-title,
footer h3 {
  color: white !important;
  font-size: 14px;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
footer p,
footer li,
footer a {
  color: white !important;
}
footer a:hover {
  color: #dd0303 !important;
}
footer .social-wrapper {
  margin-top: 30px;
}
footer .social-wrapper a + a {
  margin-left: 15px;
}
footer .footer-menu li {
  margin-bottom: 10px;
}
footer .contact-details li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
footer .contact-details li:before {
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "icomoon";
}
footer .contact-details .address:before {
  content: "\e904";
}
footer .contact-details .phone:before {
  content: "\e905";
}
footer .contact-details .email:before {
  content: "\e900";
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .copyright li {
  margin: 0;
}
footer .copyright li + li {
  margin-left: 15px;
}

.fa-chevron-left::before {
  content: url("data:image/svg+xml,<svg width='26' height='17' viewBox='0 0 26 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10.0867 15.4057L4.31244 9.62748L26 9.62748L26 7.3732L4.31244 7.37319L10.0867 1.5943L8.49419 7.42586e-07L7.43094e-07 8.5L8.49419 17L10.0867 15.4057Z' fill='currentColor'/></svg>") !important;
}

.fa-chevron-right::before {
  content: url("data:image/svg+xml,<svg width='26' height='17' viewBox='0 0 26 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.9133 1.59429L21.6876 7.37252L0 7.37252L0 9.6268L21.6876 9.6268L15.9133 15.4057L17.5058 17L26 8.5L17.5058 0L15.9133 1.59429Z' fill='currentColor'/></svg>") !important;
}

/* 
=================================
GENERAl
=================================
*/
:root {
  --color_primary__red: #dd0303;
  --color_primary__blue: #0d2033;
  --color_trans__white: rgba(255, 255, 255, 0.2);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  font-family: "Playfair Display", serif;
  color: #656565;
}

h1 {
  font-size: 40px;
  font-size: 2.5rem;
}

h2 {
  font-size: 32px;
  font-size: 2rem;
}

h3 {
  font-size: 25px;
  font-size: 1.5625rem;
}

li,
p {
  color: #656565;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 1.6;
}

a {
  outline: none;
  color: #656565;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.no-touchevents a:hover {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
a.scroll-down {
  text-transform: uppercase;
  color: #dd0303;
}
.no-touchevents a.scroll-down:hover {
  color: darkgrey;
}
a.scroll-down.scrolled {
  opacity: 0;
  pointer-events: none;
}

p.small {
  font-size: 0.75rem;
}
p a {
  color: #dd0303;
  display: inline-block;
}
.no-touchevents p a:hover {
  color: #656565;
}

hr {
  border: none;
  width: 40px;
  height: 3px;
  margin: 40px auto;
  background-color: #dd0303;
}

.one-third {
  width: 33.333333%;
}

.two-thirds {
  width: 66.666666%;
}

.container {
  width: 100%;
  max-width: 2500px;
  height: 100%;
  margin: 0 auto;
  padding: 0 70px;
  position: relative;
}

.iframe-wrapper {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}
.iframe-wrapper iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.column-wrap {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column-wrap:after {
  content: none;
}

header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  height: 50px;
  padding: 12px 20px;
  z-index: 100;
  background-color: #ffffff;
  -webkit-backface-visibility: hidden;
}
header .top-menu {
  width: 100%;
  max-width: 66.666666%;
  float: right;
  text-align: center;
}
header .top-menu ul {
  display: inline-block;
}
header .top-menu ul li {
  display: inline-block;
  margin: 0 20px 5px 20px;
}
header .top-menu ul li a {
  color: #656565;
  text-transform: uppercase;
  font-size: 13px;
  font-size: 0.8125rem;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.no-touchevents header .top-menu ul li a:hover {
  color: #dd0303;
}
header .header-right {
  position: fixed;
  top: 0;
  right: 0;
  height: 50px;
  z-index: 100;
  color: #dd0303;
  background-color: #ffffff;
  padding: 12px 20px;
}
header .header-right.scrolled {
  box-shadow: 2px 2px 12px -8px rgba(0, 0, 0, 0.75);
}
header .header-right .hamburger,
header .header-right .header-search {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
header .header-right .header-search a {
  color: #dd0303;
}
.no-touchevents header .header-right .header-search a:hover {
  color: #656565;
}

/*
=================================
HAMBURGER / FLYOUT MENU
=================================
*/
.hamburger {
  cursor: pointer;
  width: 20px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.hamburger.sticky {
  opacity: 1;
  visibility: visible;
}
.hamburger.active {
  opacity: 1 !important;
  visibility: visible !important;
}
.hamburger span {
  position: relative;
  top: 0;
  width: 100%;
  height: 2px;
  display: block;
  margin: 0 auto 3px auto;
  background-color: #dd0303;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, opacity 0.3s 0.3s ease-in-out, top 0.3s 0.3s ease-in-out;
  -moz-transition: -moz-transform 0.3s ease-in-out, opacity 0.3s 0.3s ease-in-out, top 0.3s 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s 0.3s ease-in-out, top 0.3s 0.3s ease-in-out;
}
.hamburger span.bottom {
  margin-bottom: 0;
}

/*
=================================
MAIN MENU
=================================
*/
.ie9 .main-menu .menu-wrap .menu-header,
.ie9 .main-menu .menu-wrap .menu-container {
  float: left;
}
.ie9 .main-menu .menu-wrap .menu-container .quick-links {
  position: static;
}

.social-menu ul li {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}
.social-menu ul li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  color: #dd0303;
  display: inline-block;
  background-color: #f0f0f0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.social-menu ul li a i {
  margin-top: 1px !important;
  font-size: 15px;
  font-size: 0.9375rem;
}
.no-touchevents .social-menu ul li a:hover {
  color: #ffffff;
  background-color: #dd0303;
}

/*
=================================
MAIN BANNER
=================================
*/
.main-banner {
  width: 100%;
  position: relative;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main-banner .banner-images {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main-banner .banner-images .slide-image,
.main-banner .banner-images .owl-item,
.main-banner .banner-images .owl-stage,
.main-banner .banner-images .owl-stage-outer {
  height: inherit;
  min-height: inherit;
}
.main-banner .banner-images .slide-image {
  width: 100%;
}
.main-banner .logo a {
  display: inline-block;
}
.main-banner.content-left {
  height: -moz-calc(100vh - 50px);
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px);
}
.main-banner.content-left .banner-content {
  width: 33.333333%;
  text-align: center;
  padding: 50px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.ie10 .main-banner.content-left .banner-content {
  display: block;
  padding-top: 60px;
}
.main-banner.content-left .banner-content .content-wrap {
  padding: 0 10%;
}
.main-banner.content-left .banner-content .logo {
  margin-bottom: 20px;
}
.main-banner.content-left .banner-images {
  height: inherit;
  width: 66.666666%;
}
.main-banner.content-left .banner-images .slide-image {
  margin-left: -0.5px;
}
.main-banner.content-top {
  height: -moz-calc(100vh - 50px);
  height: -webkit-calc(100vh - 50px);
  height: calc(100vh - 50px);
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main-banner.content-top.basic {
  height: auto;
}
.main-banner.content-top.basic .banner-images {
  display: none;
}
.page-template-page-contact .main-banner.content-top.basic {
  height: -moz-calc(100vh - 120px);
  height: -webkit-calc(100vh - 120px);
  height: calc(100vh - 120px);
}
.page-template-page-contact .main-banner.content-top.basic .banner-images {
  display: block;
}
.main-banner.content-top .banner-images {
  position: relative;
  width: 100%;
  overflow: hidden;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main-banner.content-top .banner-images .acf-map,
.main-banner.content-top .banner-images .slide-image {
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main-banner.content-top .banner-images .acf-map {
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.main-banner.content-top .banner-content {
  width: 100%;
  min-height: 185px;
  padding: 55px 0 55px;
  position: relative;
  text-align: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main-banner.content-top .banner-content .content-wrap {
  width: 100%;
  padding: 0 160px;
  margin: auto;
}
.main-banner.content-top .banner-content .content-wrap .logo {
  position: absolute;
  top: 0;
  left: 20px;
  max-width: 100px;
}
.main-banner.content-top .banner-content .content-wrap .logo img {
  width: 100%;
}
.main-banner.content-top .banner-content .content-wrap .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.main-banner.content-top .banner-content .content-wrap h1,
.main-banner.content-top .banner-content .content-wrap h2 {
  position: relative;
}
.main-banner.content-top .banner-content .content-wrap h1:after,
.main-banner.content-top .banner-content .content-wrap h2:after {
  content: "";
  width: 40px;
  height: 3px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #dd0303;
}
.main-banner.content-top .banner-links .links {
  width: 100%;
  max-width: 66.666666%;
}
.main-banner.content-top .banner-links .scroll-down {
  position: absolute;
  left: 50px;
  margin: auto;
}

.ie9 .content-top.main-banner .banner-images,
.ie9 .content-left.main-banner .banner-images {
  height: 650px;
  float: left;
}
.ie9 .content-top.main-banner .banner-content,
.ie9 .content-left.main-banner .banner-content {
  float: left;
}

.banner-links {
  width: 100%;
  height: 70px;
  text-align: center;
  background-color: #ffffff;
  padding: 12px 20px;
  z-index: 150;
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.single .banner-links .links {
  max-width: 100% !important;
}
.banner-links.bottom-reached {
  bottom: -70px;
}
.banner-links.scrolled {
  box-shadow: 2px 2px 15px -8px rgba(0, 0, 0, 0.75);
}
.banner-links nav {
  float: right;
}
.banner-links nav ul {
  vertical-align: middle;
}
.banner-links nav ul li {
  margin: 0 20px;
  display: inline-block;
}
.banner-links nav ul li a {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}
.no-touchevents .banner-links nav ul li a:hover {
  color: #dd0303;
}

/*
=================================
GENERAL + PAGE SECTIONS
=================================
*/
.two-col {
  width: 48%;
  float: left;
  margin: 0 4% 40px 0;
  clear: right;
}

.two-col.last {
  margin-right: 0;
  padding-right: 0;
}

.indented {
  clear: both;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.no-pad {
  padding: 0;
}

.table-wrap {
  width: 100%;
  margin-bottom: 40px;
}
.table-wrap table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.table-wrap table thead td {
  padding: 0 25px 25px 0;
  text-align: left;
  color: #656565;
  height: auto;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-size: 0.9375rem;
}
.table-wrap table th {
  text-align: left;
  color: #656565;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-size: 0.9375rem;
}
.table-wrap table tbody tr {
  vertical-align: top;
}
.table-wrap table tbody tr td {
  height: auto;
  text-align: left;
  padding: 0 25px 25px 0;
  color: #656565;
  line-height: 1.4;
}
.no-touchevents .table-wrap table tbody tr td a:hover {
  color: #dd0303;
}

.page-section {
  width: 100%;
  clear: both;
  padding: 50px 0;
}
.page-section ul,
.page-section ol {
  margin-bottom: 40px;
}
.page-section ul li,
.page-section ol li {
  font-size: 1rem;
  color: #656565;
  font-weight: normal;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
.page-section ul li > ul,
.page-section ol li > ul {
  margin: 10px 0;
}
.page-section ul li a,
.page-section ol li a {
  color: #656565;
  display: inline-block;
}
.no-touchevents .page-section ul li a:hover,
.no-touchevents .page-section ol li a:hover {
  color: #dd0303;
}
.page-section ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  top: 10px;
  left: 0px;
  background-color: #656565;
  border-radius: 50%;
}
.page-section ol {
  counter-reset: count-me;
}
.page-section ol li {
  list-style-type: none;
  counter-increment: count-me;
  position: relative;
  padding-left: 20px;
}
.page-section ol li:before {
  content: counter(count-me) ". ";
  position: absolute;
  left: 0;
  top: 0;
  color: #656565;
  font-size: 1rem;
}

.page-section.white-bg + .page-section.white-bg {
  padding-top: 0;
}

/*
=================================
BASIC CONTENT
=================================
*/
.basic-content .content-wrap {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.basic-content .content-wrap p img {
  margin: 20px 0;
}
.basic-content .content-wrap p a:after {
  content: none;
}

.main-banner + .basic-content {
  padding-top: 100px;
}

/*
=================================
FULL WIDTH IMAGE
=================================
*/
.full-width-image {
  min-height: 200px;
}
.full-width-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.full-width-image.full img {
  width: 100%;
}
.full-width-image.align-left, .full-width-image.align-right {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.full-width-image.align-left .container, .full-width-image.align-right .container {
  width: 75%;
  margin: 0;
  padding: 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.full-width-image.align-left {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.full-width-image.align-right {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

/*
=================================
LARGE TEXT
=================================
*/
.large-text-section {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.large-text-section .container {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.large-text-section .large-text {
  padding: 20px 0;
  text-align: center;
}
.large-text-section .large-text h2 {
  color: #e0e0e0;
  text-align: center;
  line-height: 1;
  font-size: 96px;
  font-size: 6rem;
}
.large-text-section.normal .large-text {
  max-width: 80%;
  margin: 0 auto;
}
.large-text-section.left-aligned .large-text, .large-text-section.right-aligned .large-text {
  max-width: 50%;
}
.large-text-section.left-aligned .container {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.large-text-section.right-aligned .container {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*
=================================
LARGE TEXT CONTENT
=================================
*/
.large-text-content {
  padding: 80px 0;
}
.large-text-content .content-wrap {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.large-text-content .content-wrap .section-heading {
  clear: both;
  text-align: center;
  padding: 0 10%;
  margin-bottom: 60px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.large-text-content .content-wrap .section-heading h3 {
  margin: 0;
  font-size: 40px;
  font-size: 2.5rem;
}
.large-text-content .content-wrap .column-wrap {
  width: 100%;
  padding: 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.large-text-content .content-wrap .column-wrap .col {
  width: 50%;
  min-height: 1px;
}
.large-text-content .content-wrap .column-wrap .large-text {
  text-align: center;
}
.large-text-content .content-wrap .column-wrap .large-text h1,
.large-text-content .content-wrap .column-wrap .large-text h2 {
  color: #e0e0e0;
  text-align: center;
  line-height: 1;
  font-size: 96px;
  font-size: 6rem;
}
.large-text-content .content-wrap .column-wrap .large-text .image {
  margin-top: 100px;
}
.large-text-content .content-wrap .column-wrap .section-content {
  text-align: left;
  padding: 0 10%;
}
.large-text-content .content-wrap .column-wrap .section-content hr {
  margin: 40px 0;
  text-align: left;
}
.large-text-content .content-wrap .column-wrap .section-content p a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .large-text-content .content-wrap .column-wrap .section-content p a.text-link:hover {
  color: #dd0303;
}
.large-text-content.large-right .content-wrap {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.large-text-content.large-right .content-wrap .section-heading {
  padding-left: 0;
}
.large-text-content.large-right .content-wrap .column-wrap {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.ie9 .large-text-content .content-wrap .column-wrap .col {
  width: 50%;
  float: left;
}

/*
=================================
OPEN DAYS - HOW TO APPLY BLOCKS
=================================
*/
.open-days-apply .content-wrap {
  background-color: #f0f0f0;
  box-shadow: inset 0 50px 0 0 #ffffff, inset 0 -50px 0 0 #ffffff;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.open-days-apply .content-wrap .block {
  width: 66.666666%;
  margin-bottom: 50px;
  clear: both;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.open-days-apply .content-wrap .block:nth-of-type(even) {
  margin-left: auto;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.open-days-apply .content-wrap .block:nth-of-type(even) .block-content {
  margin-top: 0;
  margin-bottom: 50px;
}
.open-days-apply .content-wrap .block:last-child {
  margin-bottom: 0;
}
.open-days-apply .content-wrap .block .block-image,
.open-days-apply .content-wrap .block .block-content {
  width: 50%;
}
.open-days-apply .content-wrap .block .block-image {
  position: relative;
}
.open-days-apply .content-wrap .block .block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.open-days-apply .content-wrap .block .block-content {
  margin-top: 50px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.open-days-apply .content-wrap .block .block-content .center-content {
  width: 100%;
  padding: 10% 20%;
  flex: 1 1 auto;
}
.open-days-apply .content-wrap .block .block-content .center-content h3 {
  font-size: 30px;
  font-size: 1.875rem;
}
.open-days-apply .content-wrap .block .block-content .center-content hr {
  margin: 40px 0;
  text-align: left;
}
.open-days-apply .content-wrap .block .block-content .center-content a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .open-days-apply .content-wrap .block .block-content .center-content a.text-link:hover {
  color: #dd0303;
}

.ie9 .open-days-apply .content-wrap .block .block-image,
.ie9 .open-days-apply .content-wrap .block .block-content {
  width: 50%;
  float: left;
  display: inline-block;
}

/*
=================================
STACKED BLOCKS
=================================
*/
.stacked-blocks {
  padding-bottom: 150px;
}
.stacked-blocks .content-wrap {
  position: relative;
  z-index: 10;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.stacked-blocks .content-wrap .block {
  width: 66.666666%;
  margin-bottom: 50px;
  clear: both;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.stacked-blocks .content-wrap .block:nth-of-type(odd) .block-content {
  padding: 12% 12% 5% 5%;
}
.stacked-blocks .content-wrap .block:nth-of-type(even) {
  margin-left: auto;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.stacked-blocks .content-wrap .block:nth-of-type(even) .block-content {
  margin-top: 0;
  margin-bottom: 50px;
  padding: 12% 5% 5% 12%;
}
.stacked-blocks .content-wrap .block:last-child {
  margin-bottom: 0;
}
.stacked-blocks .content-wrap .block .block-image,
.stacked-blocks .content-wrap .block .block-content {
  width: 50%;
}
.stacked-blocks .content-wrap .block .block-image {
  position: relative;
}
.stacked-blocks .content-wrap .block .block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.stacked-blocks .content-wrap .block .block-content {
  margin-top: 50px;
  padding: 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.stacked-blocks .content-wrap .block .block-content p {
  display: block;
  -webkit-line-clamp: none;
  line-clamp: none;
  -webkit-box-orient: initial;
  box-orient: initial;
  overflow: visible;
}
.stacked-blocks .content-wrap .block .block-content .center-content {
  width: 100%;
  flex: 1 1 auto;
}
.stacked-blocks .content-wrap .block .block-content .center-content h3 {
  font-size: 30px;
  font-size: 1.875rem;
}
.stacked-blocks .content-wrap .block .block-content .center-content hr {
  margin: 40px 0;
  text-align: left;
}
.stacked-blocks .content-wrap .block .block-content .center-content a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .stacked-blocks .content-wrap .block .block-content .center-content a.text-link:hover {
  color: #dd0303;
}
.stacked-blocks .grey-bg {
  position: absolute;
  top: 0;
  left: 20px;
  display: block;
  width: -moz-calc(50% - 20px);
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  height: 100%;
  background-color: #f0f0f0;
  box-shadow: inset 0 50px 0 0 #ffffff, inset 0 -50px 0 0 #ffffff;
}
.stacked-blocks .border-bg {
  position: absolute;
  bottom: -100px;
  right: 20px;
  top: 25%;
  width: -moz-calc(50% - 20px);
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  display: block;
  background-color: #ffffff;
  border: 12px solid #f0f0f0;
}

/*
=================================
BLOCKS
=================================
*/
.block {
  float: left;
  overflow: hidden;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ie10 .block {
  display: block;
}
.three-col .block {
  width: 30%;
  margin: 0 5% 5% 0;
}
.three-col .block:nth-of-type(3n + 3) {
  margin-right: 0;
}
.two-col .block {
  width: 48%;
  margin: 0 4% 4% 0;
}
.two-col .block:nth-of-type(2n + 2) {
  margin-right: 0;
}
.block a {
  width: 100%;
  display: block;
}
.block p a {
  display: inline-block;
}
.block p a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .block p a.text-link:hover {
  color: #dd0303;
}
.block span.link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.block .block-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.block .block-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.block .block-content {
  padding: 20px 30px;
}
.block .block-content p {
  color: #656565;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
}
.block .block-content h2,
.block .block-content h3,
.block .block-content h4,
.block .block-content h5 {
  color: #656565;
  text-transform: uppercase;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.no-touchevents .block:hover span.link {
  color: #dd0303;
}

.section-heading {
  margin-bottom: 50px;
}
.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-size: 40px;
  font-size: 2.5rem;
}

/*
=================================
LATEST EVENTS
=================================
*/
.event-block {
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}
.event-block .title {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.event-block .featured {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.event-block .featured .col {
  width: 50%;
  position: relative;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.event-block .featured .col.image-col img {
  width: 100%;
  height: 100%;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.event-block .featured .col.image-col .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  transition: 1s all;
}
.event-block .featured .col.image-col .overlay i {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  font-size: 1.875rem;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.event-block .featured .col.date-col {
  text-align: center;
  border: 12px solid #e0e0e0;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}
.event-block .featured .col.date-col:before, .event-block .featured .col.date-col:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  opacity: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.event-block .featured .col.date-col:before {
  top: -12px;
  left: -12px;
  border-top: 12px solid #dd0303;
  border-right: 12px solid #dd0303;
  -webkit-transition: height 0.25s ease 0.5s, width 0.25s ease 0.75s, opacity 0.1s ease 1s;
  -moz-transition: height 0.25s ease 0.5s, width 0.25s ease 0.75s, opacity 0.1s ease 1s;
  transition: height 0.25s ease 0.5s, width 0.25s ease 0.75s, opacity 0.1s ease 1s;
}
.event-block .featured .col.date-col:after {
  bottom: -12px;
  right: -12px;
  border-bottom: 12px solid #dd0303;
  border-left: 12px solid #dd0303;
  -webkit-transition: height 0.25s ease, width 0.25s ease 0.25s, opacity 0.1s ease 0.5s;
  -moz-transition: height 0.25s ease, width 0.25s ease 0.25s, opacity 0.1s ease 0.5s;
  transition: height 0.25s ease, width 0.25s ease 0.25s, opacity 0.1s ease 0.5s;
}
.event-block .featured .col.date-col p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-size: 0.875rem;
}
.event-block .featured .col.date-col p.large {
  line-height: 1.2;
  font-size: 58px;
  font-size: 3.625rem;
}
.no-touchevents .event-block:hover .title {
  color: #dd0303;
}
.no-touchevents .event-block:hover .featured .col.date-col:before {
  opacity: 1;
  height: 100%;
  width: -moz-calc(100% + 12px);
  width: -webkit-calc(100% + 12px);
  width: calc(100% + 12px);
  -webkit-transition: opacity 0.1s ease, width 0.25s ease, height 0.25s ease 0.25s;
  -moz-transition: opacity 0.1s ease, width 0.25s ease, height 0.25s ease 0.25s;
  transition: opacity 0.1s ease, width 0.25s ease, height 0.25s ease 0.25s;
}
.no-touchevents .event-block:hover .featured .col.date-col:after {
  opacity: 1;
  height: 100%;
  width: -moz-calc(100% + 12px);
  width: -webkit-calc(100% + 12px);
  width: calc(100% + 12px);
  -webkit-transition: opacity 0.1s ease 0.5s, width 0.25s ease 0.5s, height 0.25s ease 0.75s;
  -moz-transition: opacity 0.1s ease 0.5s, width 0.25s ease 0.5s, height 0.25s ease 0.75s;
  transition: opacity 0.1s ease 0.5s, width 0.25s ease 0.5s, height 0.25s ease 0.75s;
}
.no-touchevents .event-block:hover .featured .col.image-col .overlay {
  opacity: 1;
}
.no-touchevents .ie .event-block:hover .featured .col.date-col, .no-touchevents .edge .event-block:hover .featured .col.date-col {
  border-color: #dd0303;
}
.no-touchevents .ie .event-block:hover .featured .col.date-col:before, .no-touchevents .edge .event-block:hover .featured .col.date-col:before {
  content: none;
}
.no-touchevents .ie .event-block:hover .featured .col.date-col:after, .no-touchevents .edge .event-block:hover .featured .col.date-col:after {
  content: none;
}

.ie9 .event-block .featured .image-col,
.ie9 .event-block .featured .date-col {
  width: 50%;
  height: 250px;
  float: left;
}

.block-slider {
  position: relative;
}
.block-slider .arrow-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.block-slider .arrow-button.left {
  left: -50px;
}
.block-slider .arrow-button.right {
  right: -50px;
}
.block-slider .arrow-button i {
  color: #dd0303;
  font-weight: bold;
  font-size: 30px;
  font-size: 1.875rem;
}
.block-slider .owl-stage {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.block-slider .owl-stage .owl-item {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.block-slider .owl-nav .disabled .arrow-button {
  opacity: 0.4;
}
.block-slider .social-block,
.block-slider .event-block {
  width: 100%;
  margin: auto;
}
.block-slider .carousel-wrap.static {
  flex-grow: 1;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.block-slider .carousel-wrap.static .event-block {
  margin: 0 2% 2% 0;
  width: 33.333333%;
}
.block-slider .carousel-wrap.static .event-block:nth-of-type(3n + 3) {
  margin-right: 0;
}

/*
============================
SOCIAL SLIDER (NEWS)
============================
*/
.social-block {
  width: 100%;
  height: 100%;
  border: 12px solid #e0e0e0;
  overflow: hidden;
  flex: 1;
  position: relative;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.social-block a {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.social-block .block-image {
  height: 0;
  padding-bottom: 65%;
}
.no-object-fit .social-block .block-image {
  height: 300px;
  padding-bottom: 0;
}
.social-block .block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.social-block .block-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  transition: 1s all;
}
.social-block .block-image .overlay:after {
  content: "";
  height: 12px;
  width: 0px;
  display: block;
  background-color: #dd0303;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.social-block .block-image .overlay i {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  font-size: 1.875rem;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.social-block.no-image a {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.social-block.no-image .block-image {
  padding-bottom: 50px;
}
.social-block.no-image .block-image .overlay {
  display: none;
}
.no-touchevents .social-block.no-image:hover {
  opacity: 0.6;
}
.social-block .social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  text-align: center;
  background-color: #f0f0f0;
}
.social-block .social-icon i {
  position: relative;
  margin-top: 1px;
  color: #dd0303;
  line-height: 45px;
  text-decoration: inherit;
  text-rendering: auto;
  vertical-align: middle;
  display: block;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: -inline-flex;
  font-size: 27px;
  font-size: 1.6875rem;
}
.social-block .date {
  display: block;
  margin-bottom: 10px;
}
.social-block .block-content {
  padding-bottom: 60px;
}
.social-block .post-meta {
  width: 100%;
  padding: 20px 30px;
  height: 60px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.social-block .post-meta .likes,
.social-block .post-meta .comments,
.social-block .post-meta .retweets {
  display: inline-block;
}
.social-block .post-meta .likes .icon i,
.social-block .post-meta .comments .icon i,
.social-block .post-meta .retweets .icon i {
  vertical-align: middle;
  font-weight: 500;
  margin-right: 2px;
  font-size: 20px;
  font-size: 1.25rem;
}
.social-block .post-meta .likes .count,
.social-block .post-meta .comments .count,
.social-block .post-meta .retweets .count {
  vertical-align: top;
  font-weight: 600;
}
.social-block .post-meta .likes {
  margin-right: 10px;
}
.social-block .post-meta .retweets {
  margin-right: 10px;
}
.social-block .post-meta .retweets .icon i {
  font-size: 22px;
  font-size: 1.375rem;
}
.no-touchevents .social-block:hover .block-image .overlay {
  opacity: 1;
}
.no-touchevents .social-block:hover .block-image .overlay:after {
  width: 100%;
}
.ie .social-block, .edge .social-block {
  display: block;
}
.ie .social-block.no-image .block-image, .edge .social-block.no-image .block-image {
  height: 100px;
}

/*
============================
LINK-BLOCKS
============================
*/
.link-blocks .blocks-container {
  width: 100%;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.link-blocks .block .block-image {
  position: relative;
}
.link-blocks .block .block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.link-blocks .block .block-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  transition: 1s all;
}
.link-blocks .block .block-image .overlay:after {
  content: "";
  height: 12px;
  width: 0px;
  display: block;
  background-color: #dd0303;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.link-blocks .block .block-image .overlay i {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  font-size: 1.875rem;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.link-blocks .block .block-content {
  padding: 20px 0;
}
.link-blocks .block .block-content hr {
  margin: 40px 0;
  text-align: left;
}
.link-blocks .block .block-content .post-meta {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.link-blocks .block a {
  display: block;
  width: 100%;
}
.no-touchevents .link-blocks .block a:hover .link,
.no-touchevents .link-blocks .block a:hover h3 {
  color: #dd0303;
}
.no-touchevents .link-blocks .block a:hover .block-image .overlay {
  opacity: 1;
}
.no-touchevents .link-blocks .block a:hover .block-image .overlay:after {
  width: 100%;
}

/*
============================
IMAGE AND CONTENT BLOCKS
============================
*/
.image-content-blocks {
  position: relative;
  min-height: 65vh;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.image-content-blocks .col {
  position: relative;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.image-content-blocks .col.block-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.image-content-blocks .col.block-content {
  padding: 70px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.image-content-blocks .col.block-content .content-wrap {
  width: 100%;
  padding-right: 30px;
}
.image-content-blocks .col.block-content .content-wrap p a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .image-content-blocks .col.block-content .content-wrap p a.text-link:hover {
  color: #dd0303;
}
.image-content-blocks .col.block-content .content-wrap hr {
  margin: 40px 0;
  text-align: left;
}
.image-content-blocks.image-left {
  padding-right: 70px;
}
.image-content-blocks.image-right {
  padding-left: 70px;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.image-content-blocks.normal .col {
  width: 50%;
}
.image-content-blocks.border .col {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.image-content-blocks.border .block-image {
  z-index: 10;
  width: -moz-calc(50% + 70px);
  width: -webkit-calc(50% + 70px);
  width: calc(50% + 70px);
}
.image-content-blocks.border .block-content {
  z-index: 10;
  margin: 140px 0 100px 0;
  width: -moz-calc(50% - 70px);
  width: -webkit-calc(50% - 70px);
  width: calc(50% - 70px);
}
.image-content-blocks.border .background {
  position: absolute;
  top: 115px;
  right: 0;
  bottom: 50px;
  width: 70%;
  z-index: 5;
  border: 12px solid #e0e0e0;
  border-right: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.image-content-blocks.border.image-right .background {
  right: auto;
  left: 0;
  border: 12px solid #e0e0e0;
  border-left: 0;
}
.image-content-blocks.grey-bg .col {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.image-content-blocks.grey-bg .block-image {
  z-index: 10;
  margin-bottom: 70px;
  width: -moz-calc(50% + 70px);
  width: -webkit-calc(50% + 70px);
  width: calc(50% + 70px);
}
.image-content-blocks.grey-bg .block-content {
  z-index: 10;
  margin: 140px -70px 100px 0;
  background-color: #ffffff;
  width: -moz-calc(50% - 70px);
  width: -webkit-calc(50% - 70px);
  width: calc(50% - 70px);
}
.image-content-blocks.grey-bg .background {
  position: absolute;
  top: 115px;
  right: 0;
  bottom: 50px;
  width: 70%;
  z-index: 5;
  background-color: #e0e0e0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.image-content-blocks.grey-bg.image-right .background {
  right: auto;
  left: 0;
}

.ie9 .image-content-blocks {
  min-height: 550px;
  overflow: auto;
}
.ie9 .image-content-blocks .block-image,
.ie9 .image-content-blocks .block-content {
  width: 50%;
  height: 100%;
  float: left;
  margin: 0;
}
.ie9 .image-content-blocks .block-image {
  height: 550px;
}
.ie9 .image-content-blocks .background {
  border: 0 !important;
}

/*
=================================
FULL WIDTH GALLERY
=================================
*/
.full-width-gallery {
  position: relative;
}
.full-width-gallery .arrow-button {
  position: absolute;
  bottom: 0%;
  -webkit-transform: translate(0, 0%);
  -moz-transform: translate(0, 0%);
  transform: translate(0, 0%);
}
.full-width-gallery .arrow-button.left {
  left: 20px;
}
.full-width-gallery .arrow-button.right {
  right: 20px;
}
.full-width-gallery .arrow-button i {
  color: #ffffff;
  font-weight: bold;
  font-size: 30px;
  font-size: 1.875rem;
}
.full-width-gallery .owl-nav .disabled .arrow-button {
  opacity: 0;
}
.full-width-gallery .image-slider {
  z-index: 5;
}
.full-width-gallery:not(.has-slide-content) .image-slider .slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.full-width-gallery:not(.has-slide-content) .owl-dots {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.full-width-gallery:not(.has-slide-content) .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #a8a8a8;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}
.full-width-gallery:not(.has-slide-content) .owl-dots .owl-dot.active {
  background-color: #dd0303;
}
.full-width-gallery.has-slide-content {
  padding-top: 100px;
}
.full-width-gallery.has-slide-content:before {
  content: "";
  height: 120px;
  width: 70%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f0f0f0;
}
.full-width-gallery.has-slide-content .content-slider {
  width: 100%;
  max-width: 500px;
  margin: -200px 0 0 70px;
  position: relative;
  z-index: 50;
  padding: 50px;
  background-color: #e0e0e0;
}
.full-width-gallery.has-slide-content .content-slider .slide {
  padding-right: 35px;
}
.full-width-gallery.has-slide-content .content-slider hr {
  margin: 40px 0;
  text-align: left;
}
.full-width-gallery.has-slide-content .content-slider p a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .full-width-gallery.has-slide-content .content-slider p a.text-link:hover {
  color: #dd0303;
}
.full-width-gallery.has-slide-content .content-slider p a {
  color: #dd0303;
}
.full-width-gallery.has-slide-content .content-slider .controls {
  width: 100%;
  padding-top: 40px;
  vertical-align: middle;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.full-width-gallery.has-slide-content .content-slider .controls #dots {
  min-height: 1px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: -moz-calc(100% - 80px);
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
}
.full-width-gallery.has-slide-content .content-slider .controls #dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #a8a8a8;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px 0 0;
}
.full-width-gallery.has-slide-content .content-slider .controls #dots .owl-dot.active {
  background-color: #dd0303;
}
.full-width-gallery.has-slide-content .content-slider .controls #nav {
  width: 80px;
  height: 30px;
  position: relative;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.full-width-gallery.has-slide-content .content-slider .controls #nav .arrow {
  position: absolute;
  top: 50%;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.full-width-gallery.has-slide-content .content-slider .controls #nav .arrow.left {
  left: 0;
}
.full-width-gallery.has-slide-content .content-slider .controls #nav .arrow.right {
  right: 0;
}
.full-width-gallery.has-slide-content .content-slider .controls #nav .arrow i {
  font-size: 40px;
  font-size: 2.5rem;
  color: #dd0303;
  line-height: 1;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}
.no-touchevents .full-width-gallery.has-slide-content .content-slider .controls #nav .arrow:hover i {
  color: #656565;
}

/*
=================================
CALL TO ACTION
=================================
*/
.call-to-action {
  width: 100%;
  clear: both;
}
.call-to-action .content {
  width: 100%;
  padding: 50px;
  border: 12px solid #e0e0e0;
  text-align: center;
}
.call-to-action .content .content-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.call-to-action .content .content-wrap h3 {
  font-size: 30px;
  font-size: 1.875rem;
}
.call-to-action .content .content-wrap p a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .call-to-action .content .content-wrap p a.text-link:hover {
  color: #dd0303;
}
.call-to-action .content .content-wrap .col > *:last-child {
  margin-bottom: 0;
}
.call-to-action.two-col .content-wrap {
  max-width: 100%;
  padding: 0 50px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.call-to-action.two-col .content-wrap .col {
  width: 50%;
  float: left;
  position: relative;
  padding-right: 7%;
  border-right: 1px solid #e0e0e0;
}
.call-to-action.two-col .content-wrap .col.col-two {
  padding: 0 0 0 7%;
  border: none;
}
.call-to-action.two-col .content-wrap .col p:last-child {
  margin-bottom: 0;
}

/*
=============================
ACCORDION SECTION
=============================
*/
.accordion-section {
  width: 100%;
  clear: both;
}
.accordion-section .accordion {
  width: 100%;
  max-width: 70%;
}
.accordion-section .accordion .accordion-item {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.accordion-section .accordion .accordion-item .heading {
  padding: 20px 30px 20px 0;
  cursor: pointer;
  position: relative;
}
.accordion-section .accordion .accordion-item .heading h3 {
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.accordion-section .accordion .accordion-item .heading .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.accordion-section .accordion .accordion-item .heading .arrow i {
  font-weight: 600;
  color: #656565;
  font-size: 25px;
  font-size: 1.5625rem;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.no-touchevents .accordion-section .accordion .accordion-item .heading:hover h3 {
  color: #dd0303;
}
.no-touchevents .accordion-section .accordion .accordion-item .heading:hover .arrow i {
  color: #dd0303;
}
.accordion-section .accordion .accordion-item .content {
  display: none;
  padding-bottom: 20px;
}
.accordion-section .accordion .accordion-item .content > *:last-child {
  margin-bottom: 0;
}
.accordion-section .accordion .accordion-item.active .heading h3 {
  color: #dd0303;
}
.accordion-section .accordion .accordion-item.active .heading .arrow i {
  color: #dd0303;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*
=================================
HEADMASTERS NEWS
=================================
*/
.headmasters-news {
  width: 100%;
  clear: both;
}
.headmasters-news .column-wrap {
  width: 100%;
  padding: 80px 0;
  border: 12px solid #e0e0e0;
  text-align: left;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.headmasters-news .column-wrap .col {
  width: 50%;
  float: left;
  padding: 0 10%;
  position: relative;
}
.headmasters-news .column-wrap .col.letters-col:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #e0e0e0;
}
.headmasters-news .items {
  width: 100%;
  position: relative;
  padding: 20px 0;
}
.headmasters-news .items .item {
  position: relative;
  width: 100%;
}
.headmasters-news .items .item p,
.headmasters-news .items .item i {
  margin: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.headmasters-news .items .item:nth-of-type(odd) a {
  background-color: #cdcdcd;
}
.headmasters-news .items .item:nth-of-type(odd) a i,
.headmasters-news .items .item:nth-of-type(odd) a p {
  color: #ffffff;
}
.headmasters-news .items .item:nth-of-type(even) a {
  background-color: #ffffff;
}
.headmasters-news .items .item:nth-of-type(even) a i,
.headmasters-news .items .item:nth-of-type(even) a p {
  color: #656565;
}
.headmasters-news .items .item:first-of-type a {
  background-color: #656565;
}
.headmasters-news .items .item:first-of-type a i,
.headmasters-news .items .item:first-of-type a p {
  color: #ffffff;
}
.headmasters-news .items .item a {
  padding: 20px 45px 20px 20px;
  width: 100%;
  display: block;
  position: relative;
}
.headmasters-news .items .item a i {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 22px;
  font-size: 1.375rem;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.no-touchevents .headmasters-news .items .item a:hover {
  background-color: #dd0303;
}
.no-touchevents .headmasters-news .items .item a:hover i,
.no-touchevents .headmasters-news .items .item a:hover p {
  color: #ffffff;
}

/* NEWS AND ARTICLE TEMPLATES */
.page-template-headmasters-articles .headmasters-news,
.page-template-headmasters-letters .headmasters-news {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
.page-template-headmasters-articles .headmasters-news .column-wrap,
.page-template-headmasters-letters .headmasters-news .column-wrap {
  padding: 30px;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .posts-container,
.page-template-headmasters-letters .headmasters-news .column-wrap .posts-container {
  width: 100%;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items,
.page-template-headmasters-letters .headmasters-news .column-wrap .items {
  width: 100%;
  position: relative;
  padding: 20px 0;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item {
  position: relative;
  width: 100%;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 3) a,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 3) a {
  background-color: #cdcdcd;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 3) a i,
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 3) a p,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 3) a i,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 3) a p {
  color: #ffffff;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 2) a,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 2) a {
  background-color: #ffffff;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 2) a i,
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 2) a p,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 2) a i,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 2) a p {
  color: #656565;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 1) a,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 1) a {
  background-color: #656565;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 1) a i,
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item:nth-of-type(3n + 1) a p,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 1) a i,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item:nth-of-type(3n + 1) a p {
  color: #ffffff;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item a,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item a {
  padding: 20px 45px 20px 20px;
  width: 100%;
  display: block;
  position: relative;
}
.page-template-headmasters-articles .headmasters-news .column-wrap .items .item a i,
.page-template-headmasters-letters .headmasters-news .column-wrap .items .item a i {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 22px;
  font-size: 1.375rem;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.no-touchevents .page-template-headmasters-articles .headmasters-news .column-wrap .items .item a:hover,
.no-touchevents .page-template-headmasters-letters .headmasters-news .column-wrap .items .item a:hover {
  background-color: #dd0303;
}
.no-touchevents .page-template-headmasters-articles .headmasters-news .column-wrap .items .item a:hover i,
.no-touchevents .page-template-headmasters-articles .headmasters-news .column-wrap .items .item a:hover p,
.no-touchevents .page-template-headmasters-letters .headmasters-news .column-wrap .items .item a:hover i,
.no-touchevents .page-template-headmasters-letters .headmasters-news .column-wrap .items .item a:hover p {
  color: #ffffff;
}

/*
=================================
GOVERNORS & STAFF
=================================
*/
.four-col {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.four-col .block {
  width: 22%;
  margin: 0 4% 4% 0;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.four-col .block:nth-of-type(4n + 4) {
  margin-right: 0;
}

.governors-staff {
  width: 100%;
}
.governors-staff .container {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.governors-staff .container .section-heading {
  text-align: center;
  margin-bottom: 50px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.governors-staff .container .blocks-container {
  padding-top: 20px;
  width: 100%;
}
.governors-staff .container .blocks-container .block a {
  display: block;
  width: 100%;
  height: 100%;
}
.governors-staff .container .blocks-container .block .block-image {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 400px;
  overflow: hidden;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.governors-staff .container .blocks-container .block .block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.governors-staff .container .blocks-container .block .block-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.55);
  -webkit-transition: 1s all;
  -moz-transition: 1s all;
  transition: 1s all;
}
.governors-staff .container .blocks-container .block .block-image .overlay span {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.governors-staff .container .blocks-container .block .block-content {
  width: 100%;
  padding: 40px 0 20px 0;
}
.governors-staff .container .blocks-container .block .block-content h3 {
  margin-bottom: 10px;
}
.governors-staff .container .blocks-container .block .bio-modal {
  display: none;
  width: 100%;
  max-width: 650px;
}
.no-touchevents .governors-staff .container .blocks-container .block:hover .block-image .overlay {
  opacity: 1;
}

.bio-modal.fancybox-content {
  width: 100%;
  max-width: 650px;
  padding: 44px;
}

/*
=================================
NEWS / POSTS
=================================
*/
.news-posts {
  width: 100%;
  padding-top: 120px;
}
.news-posts .posts-wrap {
  width: 100%;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-posts .block {
  box-shadow: 0px 1px 10px -1px rgba(0, 0, 0, 0.2);
}
.news-posts .block .excerpt {
  padding: 20px;
  width: 100%;
}

.load-more-posts {
  width: 100%;
  clear: both;
  min-height: 80px;
  text-align: center;
  padding: 20px 0 0 0;
}
.load-more-posts a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .load-more-posts a.text-link:hover {
  color: #dd0303;
}
.load-more-posts .load {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  clear: both;
  display: inline-block;
  position: relative;
  text-indent: -9999em;
  border-top: 5px solid rgba(0, 0, 0, 0.1);
  border-right: 5px solid rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid rgba(0, 0, 0, 0.1);
  border-left: 5px solid #dd0303;
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -ms-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
}

.show-more-posts {
  display: block;
  padding: 30px 20px 0 20px;
  clear: both;
  height: 50px;
}
.show-more-posts a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents .show-more-posts a.text-link:hover {
  color: #dd0303;
}
.show-more-posts .load {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  clear: both;
  display: inline-block;
  position: relative;
  text-indent: -9999em;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
  border-right: 3px solid rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);
  border-left: 3px solid #dd0303;
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -ms-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
}
.show-more-posts a i {
  font-weight: 600;
  margin-left: 10px;
  font-size: 18px;
  font-size: 1.125rem;
}

/*
=================================
MAPS 
=================================
*/
.acf-map {
  position: relative;
  height: 500px;
  width: 100%;
  max-width: 500px;
}

/*
=================================
CONTACT PAGE
=================================
*/
.location-icon {
  margin-bottom: 20px;
  display: inline-block;
  clear: both;
}

.page-template-page-contact .contact-info h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1rem;
}
.page-template-page-contact .contact-info p strong {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  font-weight: 500;
}
.page-template-page-contact .contact-info p a {
  color: #dd0303;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: "aptos", Helvetica, Arial, sans-serif !important;
}
.no-touchevents .page-template-page-contact .contact-info p a:hover {
  color: #656565;
}

/*
=================================
SEARCH PAGE
=================================
*/
body.search .main-search-results {
  width: 100%;
}
body.search .main-search-results .search-result {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
body.search .main-search-results .search-result:last-of-type {
  border-bottom: none;
}
body.search .main-search-results .search-result .excerpt p a {
  color: #656565;
}
body.search .main-search-results .search-result .excerpt a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents body.search .main-search-results .search-result .excerpt a.text-link:hover {
  color: #dd0303;
}
body.search .main-search-results .search-result h3 a {
  color: #656565;
}
.no-touchevents body.search .main-search-results .search-result h3 a:hover {
  color: #dd0303;
}
body.search .search-form form {
  width: 100%;
}
body.search .search-form form input[type=text] {
  display: inline-block;
  max-width: 100%;
  float: left;
  width: -moz-calc(100% - 120px);
  width: -webkit-calc(100% - 120px);
  width: calc(100% - 120px);
}
body.search .search-form form input[type=submit] {
  width: 120px;
}
body.search .pagination {
  width: 100%;
  padding: 80px 0;
}
body.search .pagination a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents body.search .pagination a.text-link:hover {
  color: #dd0303;
}
body.search .pagination .prev {
  float: left;
}
body.search .pagination .next {
  float: right;
}

/*
=================================
FORM STYLES
=================================
*/
.form-section {
  padding-bottom: 100px;
}
.form-section .form {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.form-section .form .column-wrap {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.form-section .form .column-wrap .col {
  width: 31%;
}
.form-section .form .column-wrap .col textarea,
.form-section .form .column-wrap .col input[type=tel],
.form-section .form .column-wrap .col input[type=email],
.form-section .form .column-wrap .col input[type=number],
.form-section .form .column-wrap .col input[type=text],
.form-section .form .column-wrap .col input[type=password] {
  max-width: 100%;
}

form textarea,
form input[type=tel],
form input[type=email],
form input[type=number],
form input[type=text],
form input[type=password] {
  width: 100%;
  max-width: 70%;
  padding: 10px 10px 10px 0;
  font-size: 1rem;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid #e0e0e0;
}
form textarea:focus,
form input[type=tel]:focus,
form input[type=email]:focus,
form input[type=number]:focus,
form input[type=text]:focus,
form input[type=password]:focus {
  outline: none;
}
form label {
  color: #656565;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.01rem;
  margin-bottom: 5px;
  display: block;
}
form .select-wrap {
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  background: url(../../images/select-arrow.svg) no-repeat top 50% right 0;
}
form .select-wrap select {
  font-family: "aptos", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 3;
  cursor: pointer;
  width: 105%;
  height: 100%;
  padding: 16px;
  text-indent: 1px;
  text-overflow: "";
  border: none;
  margin-bottom: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
form textarea {
  resize: none;
  min-height: 350px;
  max-width: 100%;
  font-weight: 600;
  margin-top: 30px;
  padding: 10px;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  border: 1px solid #e0e0e0;
}
form textarea,
form .select-wrap,
form input[type=tel],
form input[type=email],
form input[type=number],
form input[type=text],
form input[type=password] {
  margin-bottom: 50px;
}
form input[type=checkbox] {
  cursor: pointer;
  position: relative;
  top: 4px;
}
form button,
form input[type=submit] {
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.no-touchevents form button:hover,
.no-touchevents form input[type=submit]:hover {
  color: #dd0303;
}
form .wpcf7-form-control-wrap {
  display: block;
}
form ::-webkit-input-placeholder {
  font-weight: 600;
}
form ::-moz-placeholder {
  font-weight: 600;
}
form :-ms-input-placeholder {
  font-weight: 600;
}
form :-moz-placeholder {
  font-weight: 600;
}
form .wpcf7-acceptance {
  margin-bottom: 50px;
  display: block;
}
form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
form .wpcf7-acceptance .wpcf7-list-item label input {
  vertical-align: top;
  margin: 1px 0 0 0;
}
form .checkbox {
  margin-bottom: 20px;
}
form .checkbox .wpcf7-form-control-wrap {
  float: left;
  display: inline-block;
}
form .checkbox .wpcf7-list-item {
  margin: 0 10px 20px 0;
}
form .checkbox .wpcf7-list-item label input[type=checkbox] {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: top;
  margin: 0 8px 5px 0;
  position: relative;
  top: 2px;
}
form .checkbox .wpcf7-list-item label span.wpcf7-list-item-label {
  display: inline-block;
  margin-left: 2%;
}
form {
  /* RESPONSE / ERRORS*/
}
form .ajax-loader,
form .ajax-loader:after {
  border-radius: 50%;
  width: 22px !important;
  height: 22px !important;
}
form .ajax-loader {
  clear: both;
  display: block;
  position: relative;
  left: 30px;
  top: -3px;
  background-image: none !important;
  text-indent: -9999em;
  border-top: 4px solid #f0f0f0 !important;
  border-right: 4px solid #f0f0f0 !important;
  border-bottom: 4px solid #f0f0f0 !important;
  border-left: 4px solid #ff0000 !important;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loading 1s infinite linear;
  -moz-animation: loading 1s infinite linear;
  -ms-animation: loading 1s infinite linear;
  -o-animation: loading 1s infinite linear;
  animation: loading 1s infinite linear;
}
form span.wpcf7-not-valid-tip {
  display: none;
}
form input[type=checkbox] + span.wpcf7-not-valid-tip {
  display: block;
  margin-bottom: 5px;
}
form div.wpcf7-response-output {
  margin: 30px 0;
  width: 100%;
  font-size: 1rem;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  border-radius: 0;
  text-align: center;
}
form textarea.wpcf7-not-valid,
form select.wpcf7-not-valid,
form form .select-wrap select.wpcf7-not-valid,
form input[type=tel].wpcf7-not-valid,
form input[type=email].wpcf7-not-valid,
form input[type=text].wpcf7-not-valid {
  color: #0d2240;
  opacity: 1;
  background-color: #ffd4d4;
  border-color: red;
}
form .invalid .focus-input {
  background-color: #ffd4d4;
}
form div.wpcf7-mail-sent-ng,
form div.wpcf7-validation-errors {
  border: 2px solid red;
  background-color: #ffd4d4;
  width: 100%;
  padding: 16px 20px;
  color: #ec6c6c;
  color: red;
}
form div.wpcf7-mail-sent-ok {
  padding: 20px;
  border: 2px solid #55d2a6;
  margin-bottom: 20px;
  position: relative;
  background-color: #f2fffa;
  color: #0d2240;
}

/*
=================================
BACK TO TOP
=================================
*/
a.back-to-top {
  color: #dd0303;
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  right: 40px;
  top: 50%;
  z-index: 100;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  box-shadow: 2px 2px 12px -8px rgba(0, 0, 0, 0.85);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
a.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
a.back-to-top i {
  position: relative;
  margin-top: 1px;
  color: #dd0303;
  line-height: 60px;
  text-decoration: inherit;
  text-rendering: auto;
  vertical-align: middle;
  display: block;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: -inline-flex;
  font-size: 18px;
  font-size: 1.125rem;
}

/*
=================================
FOOTER
=================================
*/
footer {
  width: 100%;
  clear: both;
  padding-top: 100px;
}
footer p a {
  color: #656565;
}
.no-touchevents footer p a:hover {
  color: #dd0303;
}
footer h2,
footer h3,
footer h4 {
  color: #dd0303;
}
footer P strong {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: uppercase;
}
footer .column-wrap {
  width: 100%;
  padding-bottom: 20px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .column-wrap .col {
  width: 50%;
  float: left;
  min-height: 1px;
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .column-wrap .col.left {
  padding-right: 10%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
footer .column-wrap .col.right {
  text-align: right;
  padding-left: 10%;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
footer .column-wrap .col .map {
  margin-bottom: 60px;
}
footer .column-wrap .col .site-logo {
  display: block;
  margin-bottom: 30px;
}
footer .column-wrap .col .table-wrap {
  max-width: 500px;
}
footer .social-menu {
  width: 100%;
  clear: both;
}
footer .social-menu ul {
  display: inline-block;
}
footer .social-menu ul li {
  margin: 0 5px;
}
footer .footer-bottom {
  width: 100%;
  background-color: #f0f0f0;
  min-height: 50px;
  padding: 20px 0;
}
footer .footer-bottom .column-wrap {
  padding: 0;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
footer .footer-bottom nav {
  width: 100%;
  margin-bottom: 10px;
}
footer .footer-bottom nav ul li {
  display: inline-block;
  margin: 0 10px 10px 10px;
}
footer .footer-bottom nav ul li:last-child {
  margin-right: 0;
}
footer .footer-bottom nav ul li a {
  text-transform: uppercase;
}
.no-touchevents footer .footer-bottom nav ul li a:hover {
  color: #dd0303;
}
footer .footer-bottom p {
  margin: 0;
}
footer .footer-bottom p.tagline {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  max-width: 320px;
  font-size: 15px;
  font-size: 0.9375rem;
}
footer .footer-bottom p.sign-off {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 0.875rem;
}

/*
===========================
INFO POPUP
===========================
*/
.fancybox-is-open .fancybox-bg {
  opacity: 0.6 !important;
}

.fancybox-slide--html {
  padding: 20px !important;
}

#info-modal {
  width: 100%;
  max-width: 820px;
  padding: 0;
}
#info-modal .fancybox-close-small {
  right: 30px;
  top: 30px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.no-touchevents #info-modal .fancybox-close-small:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}
#info-modal .column-wrap {
  display: block;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#info-modal .column-wrap .col {
  width: 50%;
}
#info-modal .column-wrap .col.modal-image {
  position: relative;
}
#info-modal .column-wrap .col.modal-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
#info-modal .column-wrap .col.modal-content {
  padding: 20px;
}
#info-modal .column-wrap .col.modal-content .content-wrap {
  height: 100%;
  padding: 80px 20px 50px 20px;
  border: 10px solid #e0e0e0;
  text-align: left;
}
#info-modal .column-wrap .col.modal-content .content-wrap p a.text-link {
  color: #656565;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
}
.no-touchevents #info-modal .column-wrap .col.modal-content .content-wrap p a.text-link:hover {
  color: #dd0303;
}
#info-modal .column-wrap .col.modal-content .content-wrap hr {
  margin: 30px 0;
}

/*
=======================
GDPR COOKIE
=======================
*/
#gdpr-cookie-message {
  position: fixed;
  right: 50px;
  top: 80px;
  width: 100%;
  max-width: 310px;
  background-color: #ffffff;
  padding: 30px 20px;
  z-index: 999;
  text-align: center;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
#gdpr-cookie-message h4 {
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-weight: 400;
}
#gdpr-cookie-message h5 {
  color: #000000;
  font-size: 0.813rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4rem;
  font-family: "aptos", Helvetica, Arial, sans-serif;
}
#gdpr-cookie-message p,
#gdpr-cookie-message li {
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
#gdpr-cookie-message ul {
  padding: 0;
}
#gdpr-cookie-message ul li {
  width: 50%;
  display: inline-block;
  margin-bottom: 8px;
}
#gdpr-cookie-message a {
  color: #dd0303;
  display: block;
  text-decoration: underline;
  font-size: 0.813rem;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.no-touch #gdpr-cookie-message a:hover {
  color: #000000;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#gdpr-cookie-message a:focus {
  outline: 0;
}
#gdpr-cookie-message button {
  padding: 12px 25px;
  min-width: 160px;
  width: 100%;
  display: inline-block;
  font-family: "aptos", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  font-size: 0.813rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.04rem;
  color: #dd0303;
  border: 1px solid #dd0303;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.no-touchevents #gdpr-cookie-message button:hover {
  color: #ffffff;
  background-color: #dd0303;
  border-color: #dd0303;
}
#gdpr-cookie-message button#gdpr-cookie-accept {
  color: #ffffff;
  margin-bottom: 0px;
  background-color: #dd0303;
  border: 1px solid #dd0303;
}
.no-touchevents #gdpr-cookie-message button#gdpr-cookie-accept:hover {
  color: #dd0303;
  background-color: #ffffff;
  border-color: #dd0303;
}
#gdpr-cookie-message input[type=checkbox] {
  position: relative;
  float: none;
  vertical-align: middle;
  cursor: pointer;
}
#gdpr-cookie-message #gdpr-cookie-types {
  text-align: left;
}
#gdpr-cookie-message #gdpr-cookie-types label {
  vertical-align: middle;
}
#gdpr-cookie-message #gdpr-cookie-types + p {
  margin: 10px 0 0 0;
}
#gdpr-cookie-message h5,
#gdpr-cookie-message #gdpr-cookie-advanced,
#gdpr-cookie-message #gdpr-cookie-types {
  display: none !important;
  visibility: hidden;
}

/*
=================================
IE NOTICE
=================================
*/
.ie10notice {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9993;
  width: 100%;
  max-width: 500px;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  padding: 22px 30px;
  background-color: #00aadd;
}
.ie10notice .container {
  padding: 0;
}
.ie10notice h3,
.ie10notice a {
  color: #ffffff;
  font-weight: bold;
}
.ie10notice img,
.ie10notice h3 {
  margin-bottom: 20px;
}
.ie10notice p {
  color: #ffffff;
  font-weight: normal;
}
.ie10notice strong {
  font-weight: 700;
}

/**
* Home Page Overrides
*/
@media (width > 768px) {
  .home .page-container {
    margin-top: 140px;
  }
  .home .card-grid .card {
    height: 80vh;
  }
}/*# sourceMappingURL=styles.css.map */