@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

svg {
  shape-rendering: geometricPrecision;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.sr-only,
.screen-reader-text,
.screen-reader-response {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@font-face {
  font-family: "FiraSans";
  font-weight: 400;
  src: url("../assets/fonts/FiraSans-Regular.ttf") format("truetype"), local("FiraSans-Regular");
}
@font-face {
  font-family: "FiraSans";
  font-weight: 400;
  font-style: italic;
  src: url("../assets/fonts/FiraSans-Italic.ttf") format("truetype"), local("FiraSans-Italic");
}
@font-face {
  font-family: "FiraSans";
  font-weight: 700;
  src: url("../assets/fonts/FiraSans-Bold.ttf") format("truetype"), local("FiraSans-Bold");
}
@font-face {
  font-family: "FiraSans";
  font-weight: 700;
  font-style: italic;
  src: url("../assets/fonts/FiraSans-BoldItalic.ttf") format("truetype"), local("FiraSans-BoldItalic");
}
html {
  font-family: "FiraSans", Helvetica, sans-serif;
  font-style: italic;
  color: #666666;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

* ~ p {
  margin: 1rem 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #2799d5;
}

p a {
  text-decoration: underline;
  color: #2799d5;
}
p a:hover {
  color: #012c5f;
}

ul {
  list-style-position: outside;
  list-style: disc;
  font-size: 1rem;
  margin: 0 0 1.5rem 1.5rem;
  line-height: 1.5;
}

ol {
  list-style-position: outside;
  margin: 0 0 1.5rem 1.5rem;
  line-height: 1.5;
}

* ~ ul,
* ~ ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.5rem;
  font-weight: 700;
}

* ~ h1,
* ~ h2,
* ~ h3,
* ~ h4,
* ~ h5,
* ~ h6 {
  margin: 1.5rem 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.8rem;
}

h6 {
  font-size: 0.6rem;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

img.alignright,
figure.alignright {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 700px) {
  img.alignright,
  figure.alignright {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
  }
}

img.alignleft,
figure.alignleft {
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 700px) {
  img.alignleft,
  figure.alignleft {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
  }
}

img.alignleft + p,
figure.alignleft + p {
  margin-top: 0;
}

.icon {
  vertical-align: top;
  display: inline-block;
  height: 1em;
  width: 1em;
}
.icon svg {
  height: 1em;
  width: 1em;
  fill: currentColor;
}

.button {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 1rem;
  background: #c50047;
  padding: 0.35rem 0.5rem 0.35rem 1.1rem;
  transition: all 200ms ease-out;
}
.button:after {
  display: inline-block;
  font-size: 1rem;
  margin-left: 1rem;
  height: 1.2em;
  opacity: 0;
  max-width: 0;
  transform: translateY(-0.2rem) translateX(-2rem);
  transition: all 200ms ease-out;
}
@supports ((-webkit-mask-size: cover) or (mask-size: cover)) {
  .button:after {
    content: "";
    display: inline-block;
    mask: url("../assets/icons/arrow-right.svg");
    -webkit-mask: url("../assets/icons/arrow-right.svg");
    mask-size: cover;
    -webkit-mask-size: cover;
    background: currentColor;
    height: 1em;
    width: 1em;
  }
}
.button.-right-slant {
  padding: 0.35rem 0 0.35rem 1.1rem;
}
.button.-right-slant:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background: #c50047;
  height: 3.2rem;
  width: 1.664rem;
  transition: all 200ms ease-out;
  clip-path: polygon(0 0, 100% 0, 0% 100%);
}
.button.-blue {
  background: #012c5f;
}
.button.-blue:before {
  background: #012c5f;
}
.button.-small {
  font-size: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.button.-small.-right-slant {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.button.-small.-right-slant:before {
  height: 2.9rem;
  width: 1.508rem;
}
.button.-small:after {
  transform: translateX(-2rem);
}
.button.-small:hover:after {
  transform: translateX(0);
}
.button:not(.button-no-arrow):hover, .button:not(.button-no-arrow):focus {
  color: #ffffff;
  background: #e180a3;
  padding-right: 1rem;
  transition: all 200ms ease-out;
}
.button:not(.button-no-arrow):hover.-right-slant, .button:not(.button-no-arrow):focus.-right-slant {
  padding-right: 0.75rem;
}
.button:not(.button-no-arrow):hover:before, .button:not(.button-no-arrow):focus:before {
  transition: all 200ms ease-out;
  background: #e180a3;
}
.button:not(.button-no-arrow):hover:after, .button:not(.button-no-arrow):focus:after {
  opacity: 1;
  max-width: 3rem;
  transform: translateY(-0.2rem) translateX(0);
  transition: all 200ms ease-out;
}
.button:not(.button-no-arrow):hover.-blue, .button:not(.button-no-arrow):focus.-blue {
  background: #92cdea;
}
.button:not(.button-no-arrow):hover.-blue:before, .button:not(.button-no-arrow):focus.-blue:before {
  transition: all 200ms ease-out;
  background: #92cdea;
}
.button.button-no-arrow:hover, .button.button-no-arrow:focus {
  color: #ffffff;
  background: #e180a3;
  transition: all 200ms ease-out;
}
.button.button-no-arrow:hover:before, .button.button-no-arrow:focus:before {
  transition: all 200ms ease-out;
  background: #e180a3;
}
.button.button-no-arrow:hover.-blue, .button.button-no-arrow:focus.-blue {
  background: #92cdea;
}
.button.button-no-arrow:hover.-blue:before, .button.button-no-arrow:focus.-blue:before {
  transition: all 200ms ease-out;
  background: #92cdea;
}

.button-group {
  display: flex;
}
.button-group > * {
  margin-right: 0.5rem;
}

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

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  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.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;
}

.grecaptcha-badge {
  visibility: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-wrap {
  padding: 0 6%;
}

.header__branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
}
@media only screen and (max-width: 700px) {
  .header__branding {
    height: 5rem;
  }
}
@media only screen and (max-width: 500px) {
  .header__branding {
    height: 4rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  margin-left: 6%;
  height: 80%;
  flex-shrink: 0;
  width: clamp(8rem, 40%, 21rem);
}

.header__logo-image {
  width: 100%;
}

.header__contact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #c50047;
  height: 100%;
  width: 22rem;
  max-width: 40%;
}
@media only screen and (min-width: 1400px) {
  .header__contact {
    width: 25%;
  }
}
@media only screen and (max-width: 900px) {
  .header__contact {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (max-width: 900px) {
  .header__contact {
    justify-content: flex-end;
  }
}

.header__angle {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-99.5%);
  background: #c50047;
  height: 7rem;
  width: 3.64rem;
  transition: all 100ms ease;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
}
@media only screen and (max-width: 700px) {
  .header__angle {
    height: 5rem;
    width: 2.6rem;
  }
}
@media only screen and (max-width: 500px) {
  .header__angle {
    height: 4rem;
    width: 2.08rem;
  }
}

.header__contact-title {
  text-transform: uppercase;
  color: #e180a3;
  font-size: 1.35rem;
  text-align: right;
  margin: 0 6vw 0 0;
  line-height: 1;
}
@media only screen and (max-width: 900px) {
  .header__contact-title {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 900px) {
  .header__contact-title {
    display: none;
  }
}

.header__contact-number {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
  margin: 0 6vw 0 0;
  line-height: 1;
}
@media only screen and (max-width: 800px) {
  .header__contact-number {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 900px) {
  .header__contact-number {
    margin: 0;
  }
}
.header__contact-number .icon {
  margin-right: 0.5rem;
  color: #e180a3;
}
@media only screen and (max-width: 700px) {
  .header__contact-number .icon {
    color: #ffffff;
  }
}
@media only screen and (max-width: 900px) {
  .header__contact-number .text {
    font-size: 1.7rem;
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 800px) {
  .header__contact-number .text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 720px) {
  .header__contact-number .text {
    display: none;
  }
}
.header__contact-number:hover {
  color: #92cdea;
}

.header__hamburger {
  display: none;
  align-items: center;
  margin-right: 1rem;
}
@media only screen and (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }
}
@media only screen and (max-width: 900px) {
  .header__hamburger {
    margin-right: 0.5rem;
  }
}
.header__hamburger .hamburger-inner,
.header__hamburger .hamburger-inner:before,
.header__hamburger .hamburger-inner:after, .header__hamburger.is-active .hamburger-inner, .header__hamburger.is-active .hamburger-inner:before, .header__hamburger.is-active .hamburger-inner:after {
  background: #ffffff;
}

.header__nav {
  background: #2799d5;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  min-height: 1rem;
  padding: 0 calc(6% - 1rem);
}

.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
}
@media only screen and (max-width: 900px) {
  .header__menu {
    display: block;
    opacity: 0;
    height: 0;
    pointer-events: none;
  }
  .header__menu.is-active {
    opacity: 1;
    height: auto;
    pointer-events: initial;
    font-size: 1.35rem;
    max-width: 100%;
    padding: 0.6rem 0;
  }
}
.header__menu .menu-item {
  position: relative;
  display: block;
}
.header__menu .menu-item a {
  display: block;
  padding: 0.6rem 1rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  font-family: "myriad-pro", Helvetica, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1200px) {
  .header__menu .menu-item a {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 1100px) {
  .header__menu .menu-item a {
    font-size: 1.1rem;
    padding: 0.6rem;
  }
}
@media only screen and (max-width: 900px) {
  .header__menu .menu-item a {
    padding: 0.6rem 1.5rem;
  }
  .header__menu .menu-item a:hover {
    color: #012c5f;
    background: #92cdea;
  }
}
.header__menu .menu-item.menu-item-has-children > a .icon {
  margin-left: 0.5rem;
  transform: scale(1.25);
}
@media only screen and (max-width: 900px) {
  .header__menu .menu-item.menu-item-has-children > a .icon {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  .header__menu .menu-item:hover > a {
    color: #012c5f;
    background: #92cdea;
  }
  .header__menu .menu-item:hover.menu-item-has-children .icon {
    transform: scale(1.25) scaleY(-100%);
  }
  .header__menu .menu-item:hover.menu-item-has-children .sub-menu {
    visibility: visible;
    pointer-events: initial;
    transform: translateY(100%) scaleY(1);
    transition: transform 200ms ease;
  }
}
.header__menu .menu-item .sub-menu {
  display: block;
  position: relative;
  visibility: visible;
  background: #2799d5;
  list-style: none;
  z-index: 10;
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .header__menu .menu-item .sub-menu {
    pointer-events: none;
    visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 150%;
    transform-origin: top center;
    transform: translateY(100%) scaleY(0);
    transition: transform 200ms ease;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
  }
}

.footer {
  margin-top: auto;
  position: relative;
  background: #012c5f;
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right top;
  color: #ffffff;
  padding: 2rem 6%;
}
@media only screen and (max-width: 950px) {
  .footer {
    background-size: cover;
  }
}

.footer__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(1, 44, 95) 50%, rgba(1, 44, 95, 0.3) 100%);
}
@media only screen and (max-width: 900px) {
  .footer__overlay {
    background: linear-gradient(90deg, rgb(1, 44, 95) 40%, rgba(1, 44, 95, 0.3) 100%);
  }
}
@media only screen and (max-width: 500px) {
  .footer__overlay {
    background: linear-gradient(90deg, rgb(1, 44, 95) 20%, rgba(1, 44, 95, 0.3) 100%);
  }
}

.footer__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 4rem;
}
.footer__content h2 {
  margin-bottom: 0.5rem;
  color: #2799d5;
  font-size: 1.3rem;
}
@media only screen and (max-width: 500px) {
  .footer__content {
    display: block;
  }
}

@media only screen and (max-width: 500px) {
  .footer__opening-times {
    margin-bottom: 1.5rem;
  }
}
.footer__opening-times ul {
  list-style: none;
  margin: 0;
}
.footer__opening-times li {
  display: flex;
  justify-content: space-between;
  width: 11rem;
}
.footer__opening-times li span {
  text-align: right;
}

.footer__contact-details {
  text-align: right;
  margin-left: auto;
}
.footer__contact-details h2 {
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 400px) {
  .footer__contact-details {
    text-align: left;
    margin-left: 0;
  }
}

.footer__contact-link {
  display: block;
  font-weight: 700;
}
.footer__contact-link .icon {
  vertical-align: text-top;
  margin-right: 0.5rem;
}

.footer__social-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  font-size: 2rem;
  gap: 1rem;
  margin: 0;
}
@media only screen and (max-width: 400px) {
  .footer__social-links {
    justify-content: flex-start;
  }
}

.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
.footer__row p {
  font-size: 0.8rem;
  margin: 0;
}
.footer__row a {
  color: #e180a3;
  text-decoration: none;
}
.footer__row a:hover {
  color: #92cdea;
}

.page__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 800px) {
  .page__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.page__wrap {
  padding: 3rem 6%;
}

.page__content {
  font-size: 1.1rem;
}
.page__content p,
.page__content ul,
.page__content ol {
  font-size: 1.1rem;
}
.page__content img {
  width: 100%;
}

.alignright {
  float: right;
}

.has-sidebar {
  display: flex;
}
.has-sidebar > :nth-child(1) {
  padding-right: 2rem;
}
@media only screen and (max-width: 1100px) {
  .has-sidebar > :nth-child(1) {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .has-sidebar {
    display: block;
  }
}

.sidebar {
  width: 22rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 1100px) {
  .sidebar {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: -0.75rem;
  }
}
@media only screen and (max-width: 850px) {
  .sidebar {
    display: block;
    margin: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .sidebar__column {
    width: calc(50% - 1.5rem);
    flex-shrink: 0;
    margin: 0.75rem;
  }
}
@media only screen and (max-width: 850px) {
  .sidebar__column {
    width: 100%;
    margin: 0;
  }
}

.sidebar__booking-form {
  background: #c50047;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar__booking-form iframe {
  max-width: 500px;
}
@media only screen and (max-width: 850px) {
  .sidebar__booking-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.sidebar__booking-title {
  color: #ffffff;
}

.sidebar__section {
  background: #eeeeee;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar__section .checklist {
  list-style: none;
  margin-left: 2rem;
}
.sidebar__section .checklist li:before {
  content: "✓";
  color: #2799d5;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  margin-left: -2.1rem;
}

.sidebar__menu {
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sidebar__menu a {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  background: #c50047;
  transition: all 100ms ease;
  padding: 0.35rem 1.1rem;
}
.sidebar__menu a:hover {
  color: #ffffff;
  background: #e180a3;
  transition: all 100ms ease;
}
.sidebar__menu a:hover:after {
  transition: all 100ms ease;
  background: #e180a3;
}

.sidebar__section-title {
  color: #666666;
}

.posts__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -1.5rem;
}

.post {
  width: calc(33.33% - 3rem);
  margin: 1.5rem;
  flex-shrink: 0;
  background: #eeeeee;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1150px) {
  .post {
    width: calc(50% - 3rem);
  }
}
@media only screen and (max-width: 900px) {
  .post {
    width: calc(100% - 3rem);
  }
}

.post-image {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 12rem;
  width: 100%;
}

.post-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.post-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #2799d5;
}

.post-button {
  margin: auto 0 0;
}

.posts__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 2rem;
  font-size: 1.2rem;
}
.posts__pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid #666666;
  height: 2rem;
  width: 2rem;
  margin: 0 0.25rem;
}
.posts__pagination .page-numbers:hover {
  background: #92cdea;
  color: #ffffff;
}
.posts__pagination .page-numbers .icon {
  font-size: 1.5rem;
}
.posts__pagination .page-numbers.current {
  background: #2799d5;
  color: #ffffff;
}

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

.article__banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20rem;
  border-bottom: 3px solid white;
  box-shadow: 0 6px #c50047;
}

.article__banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #012c5f;
  opacity: 0.7;
}

.article__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.article__date {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #666666;
  background: #ffffff;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.article__content {
  width: 100ch;
  max-width: 88%;
  margin: 2rem auto;
  font-size: 1.1rem;
  padding: 2rem 0;
}
.article__content p,
.article__content ul,
.article__content ol {
  font-size: 1.1rem;
}
.article__content img {
  width: 100%;
}

.article__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 2rem 0 4rem;
}
.article__nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #666666;
  height: 2rem;
  padding: 0 0.75rem;
  margin: 0 0.5rem;
}
.article__nav a:hover {
  background: #92cdea;
  color: #ffffff;
}
.article__nav a:nth-child(1) {
  padding-left: 0.25rem;
}
.article__nav a:nth-last-child(1) {
  padding-right: 0.25rem;
}
.article__nav a .icon {
  font-size: 1.5rem;
}

.vehicle__wrap {
  margin: 0 auto;
  padding: 1rem 6%;
}

.vehicle__row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
@media only screen and (max-width: 800px) {
  .vehicle__row {
    display: block;
  }
}
.vehicle__row.-align-start {
  align-items: flex-start;
}
.vehicle__row.-align-center {
  align-items: center;
}
.vehicle__row.-space-between {
  justify-content: space-between;
}

.vehicle__gallery {
  width: 40%;
  flex-shrink: 0;
}
@media only screen and (max-width: 800px) {
  .vehicle__gallery {
    width: 100%;
  }
}

.vehicle__image {
  width: 100%;
}

.vehicle__thumbnails {
  margin-top: 0.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.vehicle__thumbnail {
  width: 33.33%;
  height: 0;
  padding-bottom: 26.66%;
  bottom: none;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: all 200ms ease-out;
}
.vehicle__thumbnail:hover, .vehicle__thumbnail:focus {
  opacity: 0.5;
  transition: all 200ms ease-out;
}
.vehicle__thumbnail.is-active {
  opacity: 0.5;
}

.vehicle__title {
  font-size: 2.5rem;
  margin-bottom: 0;
  line-height: 1;
}

.vehicle__price {
  font-size: 1.5rem;
  color: #666666;
  font-weight: 400;
  width: 70%;
  padding-bottom: 1rem;
  border-bottom: 3px solid #c50047;
}
.vehicle__price span {
  font-size: 2rem;
  color: #2799d5;
  font-weight: 700;
}

.vehicle__description p, .vehicle__description ul, .vehicle__description ol {
  font-size: 1.1rem;
}
.vehicle__description ul, .vehicle__description ol {
  margin: 1rem 0 1rem 1.5rem;
}

.vehicle__book-now-link {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.vehicle__table-wrap {
  width: calc(50% - 1rem);
  flex-shrink: 0;
  padding: 1.5rem;
  background: #eeeeee;
}
@media only screen and (max-width: 600px) {
  .vehicle__table-wrap {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.vehicle__table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  font-size: 1rem;
}
.vehicle__table th, .vehicle__table td {
  padding: 0.5rem 0;
}
.vehicle__table td {
  font-weight: 700;
}
.vehicle__table tr {
  border-bottom: 2px solid #989898;
}
.vehicle__table tr:nth-last-child(1) {
  border-bottom: none;
}

.vehicle__terms {
  width: calc(50% - 1rem);
  flex-shrink: 0;
  background: #eeeeee;
  padding: 1.5rem;
  font-size: 1.1rem;
}
@media only screen and (max-width: 600px) {
  .vehicle__terms {
    width: 100%;
  }
}

.vehicle__enquiry-form {
  width: calc(50% - 1rem);
  flex-shrink: 0;
  background: #c50047;
  padding: 1.5rem;
  font-size: 1.1rem;
  color: #ffffff;
}
.vehicle__enquiry-form label {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: block;
}
.vehicle__enquiry-form input[type=text],
.vehicle__enquiry-form input[type=email],
.vehicle__enquiry-form input[type=tel],
.vehicle__enquiry-form input[type=date],
.vehicle__enquiry-form textarea {
  padding: 0.5rem;
  width: 100%;
}
.vehicle__enquiry-form input[type=date] {
  padding: 0.55rem 0.5rem;
}
.vehicle__enquiry-form input[type=submit] {
  background: #e180a3;
  margin: 0;
}
.vehicle__enquiry-form input[type=submit]:hover {
  background: #92cdea;
}
.vehicle__enquiry-form .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 0;
}
.vehicle__enquiry-form .wpcf7-form.sent .wpcf7-response-output,
.vehicle__enquiry-form .wpcf7-form.invalid .wpcf7-response-output {
  background: #e180a3;
  border: 2px solid #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
}
.vehicle__enquiry-form .wpcf7-form.sent .wpcf7-response-output {
  background: #92cdea;
  color: #2e2e2e;
}
@media only screen and (max-width: 600px) {
  .vehicle__enquiry-form {
    width: 100%;
  }
}
.vehicle__enquiry-form.full-width {
  width: 100%;
  margin-bottom: 1rem;
}
.vehicle__enquiry-form.full-width textarea {
  height: 12.4rem;
}
.vehicle__enquiry-form.full-width input[type=submit] {
  width: 100%;
}
.vehicle__enquiry-form.full-width p {
  margin-bottom: 0;
}

.vehicles__filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 800px) {
  .vehicles__filter {
    margin-bottom: 1rem;
  }
}
.vehicles__filter ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  gap: 1rem;
  margin-left: 0;
}
.vehicles__filter li {
  display: inline-block;
}
.vehicles__filter a {
  display: block;
  background: #eeeeee;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.vehicles__filter a:hover {
  background: #2799d5;
  color: #ffffff;
}
.vehicles__filter a.is-active {
  background: #2799d5;
  color: #ffffff;
}

.vehicles__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: -1rem;
}

.vehicles__item {
  width: calc(33.33% - 2rem);
  margin: 1rem;
  flex-shrink: 0;
  background: #eeeeee;
  min-height: 20rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1200px) {
  .vehicles__item {
    width: calc(50% - 2rem);
  }
}
@media only screen and (max-width: 800px) {
  .vehicles__item {
    width: calc(100% - 2rem);
  }
}
.vehicles__item:hover .vehicles__item-image {
  transform: scale(1.05);
  transition: transform 200ms ease-out;
}

.vehicles__item-image-wrap {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 70%;
}

.vehicles__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  transition: transform 200ms ease-out;
}

.vehicles__item-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #2799d5;
}

.vehicles__item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.vehicles__item-details .vehicles__item-icons {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 1.3rem;
}
.vehicles__item-details .vehicles__item-icons span {
  margin-right: 1rem;
}
.vehicles__item-details .vehicles__item-icons .icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  color: #2799d5;
}
.vehicles__item-details .vehicles__item-rate {
  margin: 0;
}

.vehicles__item-button {
  margin-top: 1rem;
  margin-bottom: 0;
}
.vehicles__item-rate {
  margin-bottom: 0;
  font-size: 1.2rem;
}
.vehicles__item-rate span {
  color: #2799d5;
  font-weight: 700;
}

.reviews__flex {
  display: flex;
}
@media only screen and (max-width: 850px) {
  .reviews__flex {
    display: block;
  }
}

.reviews__wrap {
  padding-right: 2rem;
}
@media only screen and (max-width: 850px) {
  .reviews__wrap {
    padding: 0;
  }
}

.reviews__list {
  list-style: none;
  margin-left: 0;
}

.review {
  width: 100%;
  margin: 0 0 1.5rem;
  background: #eeeeee;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-left: 5px solid #c50047;
}

.review__title {
  font-size: 1.5rem;
  color: #2799d5;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.review__quote {
  margin-left: 1.5rem;
}

.review-button {
  margin: 1rem 0 0;
  font-size: 1.2rem;
  padding: 0.25rem 1rem;
}
.review-button.-right-slant {
  transform: translateX(-1px);
}
.review-button.-right-slant:after {
  height: 2.5rem;
  width: 1.3rem;
}

.reviews__form {
  width: 20rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 850px) {
  .reviews__form {
    width: 100%;
  }
}
.reviews__form h2 {
  padding-bottom: 1rem;
  border-bottom: 3px solid #2799d5;
}

.reviews__form-wrap {
  padding: 1.5rem;
  background: #eeeeee;
}
.reviews__form-wrap .acf-fields > .acf-field {
  padding: 0;
  margin-bottom: 1rem;
}
.reviews__form-wrap input[type=text] {
  font-size: 1.2rem;
  padding: 0.5rem;
  height: 2rem;
  border: 2px solid #989898;
}
.reviews__form-wrap input[type=text]:focus {
  border: 2px solid #2799d5;
}
.reviews__form-wrap textarea {
  font-size: 1.2rem;
  padding: 0.5rem;
  resize: vertical;
  outline: none;
  border: 2px solid #989898;
}
.reviews__form-wrap textarea:focus {
  border: 2px solid #2799d5;
}

.faqs__wrap {
  flex-grow: 1;
  padding-right: 2rem;
}
@media only screen and (max-width: 1100px) {
  .faqs__wrap {
    padding-right: 0;
  }
}

.faqs__list {
  list-style: none;
  margin: 0 0 1.5rem;
}

.faqs__item {
  width: 100%;
  margin: 0 auto 1.5rem;
  background: #eeeeee;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #c50047;
  cursor: pointer;
  transition: transform 200ms ease-out;
}
.faqs__item:hover {
  transform: scale(1.01);
  transition: transform 200ms ease-out;
}

.faqs__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: #2799d5;
  line-height: 1.2;
  margin: 0;
}
.faqs__question h2 {
  font-size: 1.5rem;
  margin: 0;
}
@media only screen and (max-width: 800px) {
  .faqs__question h2 {
    font-size: 1.2rem;
  }
}
.faqs__question .icon {
  font-size: 2rem;
  transition: transform 200ms ease;
}
.faqs__question.is-open .icon {
  transform: rotate(180deg);
  transition: transform 200ms ease;
}

.faqs__answer {
  margin-left: 1.5rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease-out;
}

.faqs__answer__inner {
  padding: 0 0 1rem;
}

.locations__item {
  width: calc(33.33% - 3rem);
  margin: 1rem 1.5rem;
  flex-shrink: 0;
  background: #eeeeee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #2799d5;
}
@media only screen and (max-width: 1150px) {
  .locations__item {
    width: calc(50% - 3rem);
  }
}
@media only screen and (max-width: 900px) {
  .locations__item {
    width: calc(100% - 3rem);
    margin: 0.5rem 1.5rem;
  }
  .locations__item:nth-child(1) {
    margin-top: 1.5rem;
  }
}

.locations__item-link {
  display: block;
  padding: 1rem 1.5rem;
  margin: 0;
}

.locations__item-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
}

.section-text {
  padding: 3rem 6%;
  margin: 0 auto;
  max-width: 1400px;
}
@media only screen and (max-width: 500px) {
  .section-text {
    padding: 2rem 6%;
  }
}
.section-text p,
.section-text ul,
.section-text ol {
  font-size: 1.1rem;
}
.section-text .button {
  margin-top: 1rem;
}
.section-text.has-sidebar .section-text__content {
  padding-right: 2rem;
}
@media only screen and (max-width: 1100px) {
  .section-text.has-sidebar .section-text__content {
    padding-right: 0;
  }
}

.section-text__form {
  margin: 2rem 0;
  background: #c50047;
  padding: 1.5rem;
  width: 100%;
}
.section-text__form h2 {
  color: #ffffff;
}
.section-text__form p {
  margin: 0;
}
.section-text__form label {
  display: block;
  position: relative;
  font-weight: 700;
  color: #ffffff;
}
.section-text__form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.75rem 0.5rem;
  margin: 0.5rem 0;
}
.section-text__form textarea {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.75rem 0.5rem;
  margin: 0.5rem 0;
  height: 8.25rem;
}
.section-text__form input[type=submit] {
  background: #e180a3;
  padding: 0.6rem 1rem;
  margin-top: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}
.section-text__form input[type=submit]:hover {
  background: #2799d5;
}
.section-text__form .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 0;
}

.section-banner {
  position: relative;
  background: #012c5f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 20rem;
  padding: 3rem 0;
  border-bottom: 3px solid white;
  box-shadow: 0 6px #c50047;
  overflow: hidden;
}

.section-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 110%;
  width: 100%;
  object-fit: cover;
  /* @media only screen and (max-width: 1100px) {
      transform: translateX(-5%) translateY(0);
  } */
}

.section-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.section-banner__title {
  z-index: 2;
  color: #ffffff;
  font-size: 3.4rem;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1rem;
  max-width: 60%;
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 500px) {
  .section-banner__title {
    font-size: 2.5rem;
  }
}

.section-banner__sub-title {
  z-index: 2;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 1rem;
  width: 60rem;
  max-width: 90%;
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 500px) {
  .section-banner__sub-title {
    font-size: 1.5rem;
  }
}

.section-banner__message {
  z-index: 2;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem 0 0;
  width: 40rem;
  max-width: 90%;
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

.section-banner__button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.section-banner__button-group * {
  margin: 1rem;
}

.section-banner__link {
  z-index: 2;
}

.section-slideshow {
  position: relative;
  background: #012c5f;
}

.slideshow__arrow {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
}
.slideshow__arrow.right-arrow {
  left: auto;
  right: 1rem;
}
.slideshow__arrow .icon {
  color: #ffffff;
  font-size: 2rem;
}
@media only screen and (max-width: 800px) {
  .slideshow__arrow {
    display: none !important;
  }
}

.section-slideshow__slider {
  height: 100%;
}
.section-slideshow__slider .slick-track {
  display: flex !important;
}
.section-slideshow__slider .slick-slide {
  height: inherit !important;
}

.section-slideshow__slide {
  overflow: hidden;
  display: none;
}
.section-slideshow__slide:nth-child(1) {
  display: block;
}

.section-slideshow__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  transform: translateY(-15%);
}
@media only screen and (max-width: 1600px) {
  .section-slideshow__image {
    width: 80%;
    transform: translateY(-10%);
  }
}
@media only screen and (max-width: 1200px) {
  .section-slideshow__image {
    width: 100%;
  }
}
@media only screen and (max-width: 1100px) {
  .section-slideshow__image {
    display: none !important;
  }
}

.section-slideshow__slide-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: 80%;
  background-position: right;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1080px) {
  .section-slideshow__slide-inner {
    background-size: cover;
  }
}
@media only screen and (max-width: 800px) {
  .section-slideshow__slide-inner {
    background-position: center center;
  }
}

.section-slideshow__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #012c5f;
  background: linear-gradient(180deg, #012c5f 0%, #3d6b9d 100%);
  -webkit-mask-image: linear-gradient(90deg, black 32%, rgba(0, 0, 0, 0.5) 45%, transparent 50%);
          mask-image: linear-gradient(90deg, black 32%, rgba(0, 0, 0, 0.5) 45%, transparent 50%);
}
@media only screen and (max-width: 700px) {
  .section-slideshow__overlay {
    background: #012c5f;
    -webkit-mask-image: none;
            mask-image: none;
    opacity: 0.75;
  }
}

.section-slideshow__content {
  position: relative;
  z-index: 5;
  margin-left: 6%;
  max-width: 20rem;
  padding: 2rem 0;
}

.section-slideshow__title {
  color: #68b9e4;
  font-size: 3.4rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 500px) {
  .section-slideshow__title {
    font-size: 2.5rem;
  }
}

.section-slideshow__sub-title {
  color: #ffffff;
  font-size: 1.35rem;
  margin: 1rem 0 1.25rem;
}

.section-slideshow__line {
  position: relative;
  z-index: 2;
  stroke-width: 0.3;
  stroke: #ffffff;
  height: 27rem;
  width: 15rem;
  transform: translateX(-15%);
}
@media only screen and (max-width: 700px) {
  .section-slideshow__line {
    display: none;
  }
}

.section-slideshow__fade {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22rem;
  z-index: 2;
  opacity: 0.2;
}
@media only screen and (max-width: 1100px) {
  .section-slideshow__fade {
    width: 20rem;
  }
}
@media only screen and (max-width: 800px) {
  .section-slideshow__fade {
    display: none;
  }
}

.section-booking {
  position: relative;
  padding: 3rem 6%;
}
@media only screen and (max-width: 1000px) {
  .section-booking {
    padding: 0;
  }
}

.section-booking__background {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 22rem;
  background: #c50047;
  z-index: -1;
}
.section-booking__background svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  fill: #c50047;
  height: 100%;
}
@media only screen and (max-width: 1100px) {
  .section-booking__background {
    width: 20rem;
  }
}
@media only screen and (max-width: 1000px) {
  .section-booking__background {
    display: none;
  }
}

.section-booking__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media only screen and (max-width: 1000px) {
  .section-booking__inner {
    display: block;
  }
}

.section-booking__content {
  width: 60%;
}
@media only screen and (max-width: 1250px) {
  .section-booking__content {
    width: 50%;
  }
}
@media only screen and (max-width: 1000px) {
  .section-booking__content {
    width: 100%;
    padding: 2rem 6%;
  }
}

.section-booking__title {
  color: #c50047;
  font-size: 2.7rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
@media only screen and (max-width: 700px) {
  .section-booking__title {
    font-size: 2rem;
    text-align: center;
  }
}

.section-booking__sub-title {
  color: #989898;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 700px) {
  .section-booking__sub-title {
    text-align: center;
  }
}

.section-booking__form {
  width: 18rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-booking__form iframe {
  max-width: 500px;
}
@media only screen and (max-width: 1000px) {
  .section-booking__form {
    width: 100%;
    background: #c50047;
    padding: 2rem 6%;
  }
}

.section-booking__form-title {
  color: #ffffff;
  text-align: right;
}
@media only screen and (max-width: 1000px) {
  .section-booking__form-title {
    text-align: center;
  }
}

.section-links {
  background: #eeeeee;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 6% 5rem;
  gap: 1.5rem;
}
@media only screen and (max-width: 800px) {
  .section-links {
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .section-links {
    padding: 2rem 6% 1rem;
  }
}

.section-links__title {
  width: 100%;
  margin: 0;
  flex-shrink: 0;
  text-align: center;
  font-size: 1.75rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 500px) {
  .section-links__title {
    font-size: 1.5rem;
  }
}

.section-links__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
  width: calc(25% - 1.33rem);
  overflow: hidden;
}
.section-links__link:hover .section-links__link-title, .section-links__link:focus .section-links__link-title {
  transform: scale(1.2);
  transition: all 200ms ease-out;
}
.section-links__link:hover .section-links__link-overlay, .section-links__link:focus .section-links__link-overlay {
  border-width: 1.25rem;
  transition: all 200ms ease-out;
}
.section-links__link:active .section-links__link-overlay {
  border-width: 10rem;
  transition: all 200ms ease-out;
}
@media only screen and (max-width: 800px) {
  .section-links__link {
    width: 100%;
    height: 10rem;
    margin: 1rem 0;
  }
}

.section-links__link-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(2px);
}

.section-links__link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeee;
  opacity: 0.75;
  transition: all 200ms ease-out;
  border: 1.1rem solid #c50047;
}
.section-links__link-overlay.-pink {
  border-color: #c50047;
}
.section-links__link-overlay.-blue {
  border-color: #2799d5;
}
.section-links__link-overlay.-grey {
  border-color: #666666;
}

.section-links__link-title {
  margin: 0;
  z-index: 2;
  font-size: 1.8rem;
  transition: all 200ms ease-out;
  text-transform: uppercase;
  color: #c50047;
}
.section-links__link-title.-pink {
  color: #c50047;
}
.section-links__link-title.-blue {
  color: #2799d5;
}
.section-links__link-title.-grey {
  color: #666666;
}

.section-contact {
  display: flex;
  justify-content: space-between;
  background: #c50047;
  color: #ffffff;
  padding: 3rem 6%;
}
@media only screen and (max-width: 900px) {
  .section-contact {
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .section-contact {
    padding: 2rem 6% 1rem;
  }
}

.section-contact__content {
  width: 20rem;
  flex-shrink: 0;
  font-weight: 700;
}
.section-contact__content .section-contact__contact-link {
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.section-contact__content .section-contact__contact-link .icon {
  margin-right: 0.5rem;
  color: #e180a3;
  font-size: 1.2rem;
}

.section-contact__social-links {
  display: flex;
  list-style: none;
  font-size: 2rem;
  gap: 1rem;
  margin: 0;
}
@media only screen and (max-width: 400px) {
  .section-contact__social-links {
    justify-content: flex-start;
  }
}

.section-contact__form p {
  margin: 0;
}
.section-contact__form label {
  font-weight: 700;
  position: relative;
  display: block;
}
.section-contact__form input {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.75rem 0.5rem;
  margin: 0.5rem 0;
}
.section-contact__form textarea {
  width: 100%;
  font-size: 1.1rem;
  padding: 0.75rem 0.5rem;
  margin: 0.5rem 0;
  height: 8.25rem;
}
.section-contact__form input[type=submit] {
  background: #e180a3;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}
.section-contact__form input[type=submit]:hover {
  background: #2799d5;
}
.section-contact__form .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 0;
}
.section-contact__form .wpcf7-form.sent .wpcf7-response-output,
.section-contact__form .wpcf7-form.invalid .wpcf7-response-output {
  background: #e180a3;
  border: 2px solid #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
}
.section-contact__form .wpcf7-form.sent .wpcf7-response-output {
  background: #92cdea;
  color: #2e2e2e;
}

.cf7-form-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -0.75rem;
}
@media only screen and (max-width: 600px) {
  .cf7-form-row {
    display: block;
  }
}

.cf7-form-column-1-2 {
  margin: 0.75rem;
  width: calc(50% - 1.5rem);
}
@media only screen and (max-width: 600px) {
  .cf7-form-column-1-2 {
    width: calc(100% - 1.5rem);
  }
}

.cf7-form-column-1-3 {
  margin: 0.75rem;
  width: calc(33.33% - 1.5rem);
}
@media only screen and (max-width: 600px) {
  .cf7-form-column-1-3 {
    width: 100%;
    margin: 0;
  }
}

.section-reviews {
  overflow: hidden;
  position: relative;
  padding: 3rem 6%;
  background: #ffffff;
  color: #ffffff;
}
@media only screen and (max-width: 500px) {
  .section-reviews {
    padding: 2rem 6%;
  }
}
.section-reviews .slick-track {
  display: flex !important;
}
.section-reviews .slick-slide {
  height: inherit !important;
}
.section-reviews .slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 2rem 0 4rem;
  list-style-type: none;
}
.section-reviews .slick-dots li {
  margin: 0 0.25rem;
}
.section-reviews .slick-dots button {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #92cdea;
  text-indent: -9999px;
  transition: all 100ms ease-out;
  cursor: pointer;
}
.section-reviews .slick-dots button:hover {
  background: #ffffff;
  transform: scale(1.2);
  transition: all 200ms ease-out;
}
.section-reviews .slick-dots li.slick-active button {
  background-color: #ffffff;
}

.section-reviews__inner {
  position: relative;
  background: #2799d5;
}

.section-reviews__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 0;
}
@media only screen and (max-width: 500px) {
  .section-reviews__content {
    padding: 2rem 1rem 0;
  }
}

.section-reviews__stars {
  margin: 0;
  font-size: 2rem;
  margin: 0 0.75rem;
  line-height: 1;
}

.section-reviews__quote {
  margin: 1rem 0;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
  width: 45rem;
  max-width: 90%;
}
@media only screen and (max-width: 500px) {
  .section-reviews__quote {
    font-size: 1.25rem;
  }
}

.section-reviews__source {
  margin: 0;
  line-height: 1;
  font-size: 1.1rem;
  color: #92cdea;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.section-reviews__line {
  position: absolute;
  z-index: 2;
  stroke-width: 0.5;
  stroke: #ffffff;
}
.section-reviews__line.-first {
  top: 0;
  height: 80%;
  left: 0;
}
@media only screen and (max-width: 1200px) {
  .section-reviews__line.-first {
    stroke-width: 1;
    height: 50%;
  }
}
@media only screen and (max-width: 850px) {
  .section-reviews__line.-first {
    stroke-width: 1.5;
    height: 20%;
  }
}
.section-reviews__line.-last {
  right: 4rem;
  bottom: 0;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .section-reviews__line.-last {
    stroke-width: 1;
    right: 0;
    height: 50%;
  }
}
@media only screen and (max-width: 850px) {
  .section-reviews__line.-last {
    stroke-width: 1.5;
    height: 20%;
  }
}

.section-post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 6%;
  background: #eeeeee;
}
@media only screen and (max-width: 500px) {
  .section-post {
    padding: 2rem 6%;
  }
}

.section-post__title {
  text-align: center;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 500px) {
  .section-post__title {
    margin-bottom: 1.5rem;
  }
}

.section-post__post {
  width: 70rem;
  max-width: 100%;
  background: #ffffff;
  display: flex;
}
@media only screen and (max-width: 800px) {
  .section-post__post {
    display: block;
  }
}

.section-post__post-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  flex-shrink: 0;
  width: 57%;
}
@media only screen and (max-width: 800px) {
  .section-post__post-image {
    height: 10rem;
    width: 100%;
  }
}

.section-post__post-content {
  flex-shrink: 0;
  width: 43%;
  padding: 2rem 1.5rem;
}
@media only screen and (max-width: 800px) {
  .section-post__post-content {
    width: 100%;
    padding: 1.5rem;
  }
}

.section-post__post-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #c50047;
  margin: 0;
}

.section-post__view-more {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 500px) {
  .section-post__view-more {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }
  .section-post__view-more.-right-slant {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}
/*# sourceMappingURL=main.css.map */