/*
    Theme Name: ACASS
    Theme URI: http: //cultureinspired.com
    Description: ACASS theme by Culture Inspired.
    Version: 1.0.0
    Framework Version: 1.7.7 Beta
    Author: Culture Inspired
    Author URI: http: //cultureinspired.com
*/

/*** BASE ***/

/* Fonts */

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Bold.ttf') format('ttf'),
         url('./assets/fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-SemiBold.ttf') format('ttf'),
         url('./assets/fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Medium.ttf') format('ttf'),
         url('./assets/fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Regular.ttf') format('ttf'),
         url('./assets/fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Light.ttf') format('ttf'),
         url('./assets/fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins-Italic.ttf') format('ttf'),
         url('./assets/fonts/Poppins-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}


/* Brand Colors */

.bg-color-black {
    background: #050505;
}

.text-color-black {
    color: #050505;
}

.bg-color-nero-black {
    background: #272727;
}

.text-color-nero-black {
    color: #272727;
}

.bg-color-muted-black {
    background: #1d1d1d;
}

.text-color-muted-black {
    color: #1d1d1d;
}

.bg-color-dark-grey {
    background: #707070;
}

.text-color-dark-grey {
    color: #707070;
}

.bg-color-medium-grey {
    background: #7e7e7e;
}

.text-color-medium-grey {
    color: #7e7e7e;
}

.bg-color-grey {
    background: #7e7e7e;
}

.text-color-grey {
    color: #7e7e7e;
}

.bg-color-light-grey {
    background: #eaeaea;
}

.text-color-light-grey {
    color: #eaeaea;
}

.bg-color-white {
    background: #fff;
}

.text-color-white {
    color: #fff;
}

.bg-color-gold {
    background: #d6b997;
}

.text-color-gold {
    color: #d6b997;
}

.text-color-smoke {
    color: #989288;
}

.bg-color-smoke {
    background: #989288;
}

.text-color-brown {
    color: #443d38;
}

.bg-color-brown {
    background: #443d38;
}

.text-color-teal {
    color: #749285;
}

.bg-color-teal {
    background: #749285;
}


/* Global */

.otgs-development-site-front-end,
.grecaptcha-badge {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

@media screen and (min-width: 1326px) {
    body {
        font-size: 18px;
    }
}

@media screen and (min-width: 1600px) {
    body {
        font-size: 20px;
    }
}

@media screen and (min-width: 2300px) {
    body {
        /* font-size: 26px; */
    }
}

h1 {
    font-size: 3.5em;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 2.2em;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (min-width: 380px) {
    h2 {
        font-size: 2.4em;
    }
}

@media screen and (min-width: 600px) {
    h2 {
        font-size: 3em;
        line-height: 1.1;
    }
}

@media screen and (min-width: 1000px) {
    h2 {
        font-size: 2.4em;
    }
}

@media screen and (min-width: 1400px) {
    h2 {
        font-size: 3em;
    }
}

p {
    line-height: 1.6;
    color: #7e7e7e;
    font-weight: 300;
}

ul,
li,
article {
    box-sizing: border-box;
}

.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* Popup */

.popupShader {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    opacity: 0;
    background: rgba(0,0,0,0.35);
    -moz-transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.popup {
    position: fixed;
    width: max-content;
    width: 92%;
    height: max-content;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* border-radius: 12px; */
    z-index: 1002;
    /* opacity: 0; */
    /* background: var(--secondary);
    border: 1px solid var(--primary); */
    -moz-transition: opacity 0.5s linear;
    -webkit-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
    box-shadow: 0 0.15em 1em 0 rgba(0,0,0,0.3);
}

@media screen and (min-width: 720px) {
    .popup {
        width: max-content;
    }
}

.popup--opened {
    opacity: 1;
}

.popup--memorial {
    display: none;
    width: 100%;
    height: 100vh;
    min-height: 740px;
    max-width: initial;
    max-height: initial;
    bottom: initial;
}

.page-template-index .popup--memorial {
    display: block;
}

.popupContents {
    max-width: 720px;
    padding: 32px;
    box-sizing: border-box;
    /* opacity: 0; */
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media screen and (min-width: 1000px) {
    .popupContents {
        /* width: 960px; */
        min-width: 650px;
        width: max-content;
        padding: 48px 64px 27px 64px;
    }
}

.popupContents--memorial {
    width: 100%;
    height: 100%;
    max-width: initial;
    padding: 0;
    background-color: #000;
}

.popupContents p {
    margin: auto;
}

.popupContents__close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 18px;
    cursor: pointer;
}

@media screen and (min-width: 1000px) {
    .popupContents__close {
        top: 24px;
        right: 24px;
        width: 21px;
    }
}

.popupContents__memorial {
    position: relative;
    width: 82%;
    margin: auto;
    padding: 72px 0 0 0;
    text-align: center;
    color: #fff
}

@media screen and (min-width: 1000px) {
    .popupContents__memorial {
        padding: 128px 0 0 0;
    }
}

@media screen and (min-width: 1240px) {
    .popupContents__memorial {
        width: 40%;
        margin: 0;
        padding: 160px 0 0 10%;
    }
}

@media screen and (min-width: 1880px) {
    .popupContents__memorial {
        padding: 260px 0 0 10%;
    }
}

.popupContents__memorial span {
    display: block;
    font-size: 1.7em;
    font-weight: 700;
}

@media screen and (min-width: 1000px) {
    .popupContents__memorial span {
        font-size: 2.4em;
    }
}

.popupContents__memorial span:nth-of-type(1) {
    margin-bottom: 28px;
}

.popupContents__memorial span:nth-of-type(2) {
    margin-bottom: 2px;
}

.popupContents__memorial span:nth-of-type(3) {
    margin-bottom: 28px;
}

.popupContents__memorial span:nth-of-type(4) {
    margin-bottom: 32px;
}

.popupContents__memorialImage {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -15%;
    width: 65%;
    max-width: 445px;
}

@media screen and (min-width: 1000px) {
    .popupContents__memorialImage {
        right: -8%;
        max-width: 660px;
    }
}

@media screen and (min-width: 1240px) {
    .popupContents__memorialImage {
        bottom: 0;
        left: initial;
        right: 3%;
        width: 42%;
        max-width: 530px;
    }
}

@media screen and (min-width: 1400px) {
    .popupContents__memorialImage {
        width: 38%;
        max-width: 650px;
    }
}


/* Buttons */

.btn {
    position: relative;
    display: inline-block;
    margin: auto;
    border-radius: 32px;
    padding: 12px 42px;
    box-sizing: border-box;
    font-size: 0.92em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    opacity: 1 !important;
}

.btn--withIcon {
    display: flex;
    align-items: center;
}

.btn--withIcon:before {
    content: "";
    width: 28px;
    height: 28px;
    margin-right: 12px;
    background-image: url(./assets/svgs/icon_download_gold.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.btn--withIcon:hover:before {
    background-image: url(./assets/svgs/icon_download_black.svg);
}

.btn--shadowed {
    box-shadow: 0 0.2em 1em 0 rgba(0,0,0,0.08);
}

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

.btn--solidBlack {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}

.btn--solidBlack:hover {
    background: #303030;
    border: 2px solid #303030;
}

.btn--solidGold {
    background: #D6B997;
    border: 2px solid #FDE7CD;
    color: #000;
}

.btn--solidGold:hover {
    background: #FDE7CD;
    border: 2px solid #FDE7CD;
}

.btn--ghostBlack {
    border: 2px solid #000;
    color: #000;
}

.btn--ghostBlack:hover {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}

.btn--ghostWhite {
    border: 2px solid #fff;
    color: #fff;
}

/*
.btn--ghostWhite:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #303030;
}
*/

.btn--ghostWhite.heroContent__link--email:hover,
.btn--ghostWhite.heroContent__link--phone:hover,
.btn--ghostWhite.heroContent__link--book:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #272727;
}

.btn--ghostGold {
    border: 2px solid #D6B997;
    color: #D6B997;
}

/*
.btn--ghostGold:hover {
    background: #D6B997;
    border: 2px solid #D6B997;
    color: #272727;
}
*/

.btn--ghostGold.btn--withIcon:hover {
    background: #D6B997;
    border: 2px solid #D6B997;
    color: #272727;
}

.hvr-sweep-to-right {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #272727;
}

.hvr-sweep-to-right--ghostWhite:hover,
.hvr-sweep-to-right--ghostWhite:focus,
.hvr-sweep-to-right--ghostWhite:active {
    color: #272727;
}

.hvr-sweep-to-right--ghostBlack:hover,
.hvr-sweep-to-right--ghostBlack:focus,
.hvr-sweep-to-right--ghostBlack:active {
    color: #fff;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d6b997;
    border-radius: 32px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-sweep-to-right--ghostGold:before {
    background: #d6b997;
}

.hvr-sweep-to-right--ghostWhite:before {
    background: #fff;
}

.hvr-sweep-to-right--ghostBlack:before {
    background: #272727;
}

.btn--ghostWhiteAlt {
    border: 2px solid #fff;
    color: #d6b997;
}

/*
.btn--ghostWhiteAlt:hover {
    background: #fff;
    border: 2px solid #fff;
    color: #d6b997;
}
*/

/* Inputs */

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
input[type='number'],
textarea,
select {
    font-size: 0.92em;
    background: #1F1F1F;
    color: #fff;
    border: none;
    box-shadow: inset 0 0.2em 1em 0 rgb(0 0 0 / 32%);
    border-radius: 9px;
    padding: 12px;
}

@media screen and (min-width: 1000px) {
    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        text-indent: 1px;
        text-overflow: '';
        background-image: url('./assets/svgs/icon_down_arrow.svg');
        background-repeat: no-repeat;
        background-position: right 21px top 50%;
        background-size: 12px auto;
    }
}

input[type='submit'] {
    border-radius: 32px;
    padding: 12px 64px;
    box-sizing: border-box;
    font-size: 0.92em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    background: none;
    color: #d6b997;
    border: 1.5px solid #d6b997;
}

input[type='submit']:hover {
    color: #272727;
    background: #d6b997;
}

@media screen and (min-width: 600px) {
    input[type='submit'] {
        width: auto;
    }
}

input[type='tel']::-webkit-input-placeholder { /* WebKit browsers */
    color: #7e7e7e;
}

input[type='tel']::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #7e7e7e;
    opacity: 1;
}

input[type='number']::-webkit-input-placeholder { /* WebKit browsers */
    color: #7e7e7e;
}

input[type='number']::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #7e7e7e;
    opacity: 1;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #7e7e7e;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #7e7e7e;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #7e7e7e;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #7e7e7e;
}


/* Animations */

.state-pre-animated {
    opacity: 0 !important;
    transform: translateY(64px) !important;
    -moz-transition: opacity 1s ease-out, transform 1s ease-out;
    -webkit-transition: opacity 1s ease-out, transform 1s ease-out;
    -o-transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.state-pre-animated-alt {
    opacity: 0 !important;
    transform: translateX(-48px) !important;
    -moz-transition: opacity 1s ease-out, transform 1s ease-out;
    -webkit-transition: opacity 1s ease-out, transform 1s ease-out;
    -o-transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.state-pre-animated-multi-item {
    opacity: 0 !important;
    transform: translateY(64px) !important;
    -moz-transition: opacity 1s ease-out, transform 1s ease-out;
    -webkit-transition: opacity 1s ease-out, transform 1s ease-out;
    -o-transition: opacity 1s ease-out, transform 1s ease-out;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.pageContent__text.state-pre-animated-multi-item {
    transform: translateY(32px)
}

.state-animated {
    opacity: 1 !important;
    transform: translateY(0px) !important;
}

/* Push */
@-webkit-keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes hvr-push {
    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
    -webkit-animation-name: hvr-push;
    animation-name: hvr-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/* Utility & State Classes */

.ut-example {

}

.state-example {

}


/*** LAYOUTS ***/

/* The Footer */

.footer {
    width: 100%;
    scroll-margin-top: 117px;
}

@media screen and (min-width: 720px) {
    .footer {
        scroll-margin-top: 133px;
    }
}

.footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 88%;
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 64px;
}

@media screen and (min-width: 1326px) {
    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 100px;
        margin: 0 auto 100px auto;
    }
}

.footer__form {
    width: 100%;
    margin: auto auto 16px auto;
}

@media screen and (min-width: 1326px) {
    .footer__form {
        width: 45%;
        margin: 0 auto 0 0;
    }
}

.footer__formHeading {
    font-size: 2.8em;
    margin-top: 0;
    text-align: center;
}

.footer__formText {
    text-align: center;
    text-wrap: pretty;
    line-height: 1.4;
    margin-bottom: 48px;
}

.footer__menus {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: auto;
}

@media screen and (min-width: 1000px) {
    .footer__menus {
        flex-direction: row;
        justify-content: space-between;
        margin: 106px 0 0 auto;
    }
}

@media screen and (min-width: 1326px) {
    .footer__menus {
        width: 50%;
    }
}

.footer__menuItem {
    width: 100%;
    margin-bottom: 32px;
}

@media screen and (min-width: 1000px) {
    .footer__menuItem {
        width: 23%;
        margin-bottom: 64px;
    }
}

@media screen and (min-width: 1326px) {
    .footer__menuItem {
        width: 48%;
        margin-bottom: 64px;
    }
}

@media screen and (min-width: 1600px) {
    .footer__menuItem {
        width: 23%;
        margin-bottom: 64px;
    }
}

.footer__menuItem ul {
    list-style: none;
    padding: 0;
    margin: auto;
}

.footer__menuItem ul li {
    margin-bottom: 12px;
}

.footer__menuItem ul li:first-of-type {
    font-size: 1.15em;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__menuItem ul li:first-of-type a {
    color: #fff;
}

.footer__menuItem ul li:last-of-type {
    margin-bottom: 0;
}

.footer__menuItem ul li a {
    color: #7e7e7e;
    font-size: 0.88em;
    text-decoration: none;
}

.footerBottom {
}

.footerBottom__innerTop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 88%;
    max-width: 1920px;
    margin: auto;
    padding: 40px 0;
    border-bottom: 1.5px solid #7e7e7e;
}

@media screen and (min-width: 1326px) {
    .footerBottom__innerTop {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footerBottom__logo {
    width: 220px;
    margin: 0 0 48px 0;
}

@media screen and (min-width: 1326px) {
    .footerBottom__logo {
        width: 180px;
        margin: auto auto auto 0;
    }
}

@media screen and (min-width: 1400px) {
    .footerBottom__logo {
        width: 220px;
    }
}

.footerBottom__argus {
    width: 140px;
    margin: 0 0 28px 0;
}

@media screen and (min-width: 1326px) {
    .footerBottom__argus {
        width: 180px;
        margin: auto 48px auto auto;
    }
}

.footerBottom__iada {
    width: 140px;
    margin: 0 0 28px 0;
}

@media screen and (min-width: 1326px) {
    .footerBottom__iada {
        width: 200px;
        margin: auto 48px auto 0;
    }
}

.footerBottom__bao {
    width: 160px;
    margin: 0;
}

@media screen and (min-width: 1326px) {
    .footerBottom__bao {
        width: 200px;
        margin: auto 0;
    }
}

.footerBottom__innerBottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 88%;
    max-width: 1920px;
    margin: auto;
    padding: 28px 0;
}

@media screen and (min-width: 1326px) {
    .footerBottom__innerBottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #fff;
    font-size: 0.8em;
    text-align: center;
    margin-bottom: 28px;
}

@media screen and (min-width: 600px) {
    .copyright {
        text-align: left;
        margin-bottom: 0;
        padding-right: 32px;
    }
}

.footerSocials {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerSocials__item {
    width: 24px;
    margin-right: 21px;
}

.footerSocials__item:last-of-type {
    margin-right: 0;
}

.footerSocials__link {
}


/*** WORDPRESS TEMPLATE CONTENT ***/

/* The Loop */

.loopContent {

}

.loop {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

@media screen and (min-width: 600px) {
    .loop {
        flex-direction: row;
    }
}

.loop article.post {
    position: relative;
    width: 100%;  /* 1 column loop */
    box-shadow: 0 0.2em 1em 0 rgba(0,0,0,0.15);
}

@media screen and (min-width: 600px) {
    .loop article.post {
        width: 49%; /* 2 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 0% 2% 0%;
    }
}

@media screen and (min-width: 1000px) {
    .loop article.post {
        width: 32%; /* 3 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(3n+3) {
        margin: 0% 0% 2% 0%;
    }
}

@media screen and (min-width: 1160px) {
    .loop article.post {
        width: 23.5%; /* 4 column loop */
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(2n+2) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(3n+3) {
        margin: 0% 2% 2% 0%;
    }
    .loop article.post:nth-of-type(4n+4) {
        margin: 0% 0% 2% 0%;
    }
}

.postFeaturedImage {

}

.postFeaturedImage__link {
    display: block;
}

.postFeaturedImage__link img {
    width: 100%;
}

.loopInfo {

}

.loopInfo__title {

}

.loopInfo__title a {

}

.publishingInfo {

}

.publishingInfo__info {

}

.loopInfo__excerpt {

}

.post-categories {
    display: inline-block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.post-categories li {
    display: inline-block;
}

.pagination {
    float: right;
    clear: both;
}

.pagination > span,
.pagination > p,
.pagination > a {

}

.pagination > .current {

}


/* The Single Post */

.featImageContainer {
    margin: 0 0 24px 0;
}

.featImageContainer img {
    width: 100%;
}

.socialSharing {
    list-style-type: none;
    padding: 0;
    clear: both;
}

.socialSharing li {
    display: inline-block;
    width: 32px;
    margin: 0 7px 0 0;
}

.socialSharing li:last-of-type {
    margin: 0;
}

.postNavWrap {
    width: 100%;
    float: left;
}

.postNavWrap__item--left {
    float: left;
}

.postNavWrap__item--right {
    float: right;
}

.post-edit-link {
    float: left;
    clear: both;
}


/* Common Components */

.pageSection {
    position: relative;
    float: left;
    width: 100%;
}

.pageSection--hero {
    display: flex;
    flex-direction: column;
    min-height: 660px;
    height: calc(100vh - 100px);
    max-height: 844px;
    overflow: hidden;
    background: #000;
}

@media screen and (min-width: 1000px) {
    .pageSection--hero {
        height: 100vh;
        max-height: none;
    }
}

@media screen and (min-width: 1025px) {
    .pageSection--hero {
        min-height: 800px;
    }
}

@media screen and (min-width: 1140px) {
    .pageSection--hero {
        height: calc(100vh - 60px);
    }
}

.pageSection__backgroundImage--hero {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pageSection__backgroundImage--hero:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.pageSection__backgroundImage--homeHero:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39,39,39,0.5);
}

.pageSection__heroVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    top: 0;
    left: 0;
}

.pageSection__heroVideo--withText {
    position: relative;
    height: auto;
    max-height: calc(100dvh - 35px);
    object-fit: contain;
}

.backgroundShapeWrap {
    position: relative;
}

.backgroundShapeWrap:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 49px);
    bottom: -10vw;
    background: #050505;
}

@media screen and (min-width: 600px) {
    .backgroundShapeWrap:before {
        height: calc(100% - 99px);
    }
}

@media screen and (min-width: 1000px) {
    .backgroundShapeWrap:before {
        height: calc(100% - 149px);
    }
}

@media screen and (min-width: 1921px) {
    .backgroundShapeWrap:before {
        bottom: -7vw;
    }
}

.backgroundShape--whiteScoop {
    position: absolute;
    width: 100%;
    height: 128px;
    bottom: -1px;
    background-image: url('./assets/svgs/bg_shape_scoop_white.svg');
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: 1;
}

@media screen and (min-width: 1921px) {
    .backgroundShape--whiteScoop {
        height: 7vw;
    }
}

.backgroundShape--blackScoop {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 10vw;
    background-image: url(./assets/svgs/bg_shape_scoop_black.svg);
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

@media screen and (min-width: 600px) {
    .backgroundShape--blackScoop {
        height: 100px;
    }
}

@media screen and (min-width: 1000px) {
    .backgroundShape--blackScoop {
        height: 150px;
    }
}

@media screen and (min-width: 1921px) {
    .backgroundShape--blackScoop {
        height: 7vw;
    }
}

.heroContent {
    position: relative;
    max-width: 95%;
    margin: auto;
    text-align: center;
}

.heroContent__heading {
    font-size: 2.2em;
    margin: 0 auto 24px auto;
}

@media screen and (min-width: 380px) {
    .heroContent__heading {
        font-size: 2.4em;
    }
}

@media screen and (min-width: 600px) {
    .heroContent__heading {
        font-size: 3em;
    }
}

@media screen and (min-width: 1000px) {
    .heroContent__heading {
        font-size: 3.5em;
    }
}

@media screen and (max-width: 999px) {
    .heroContent__heading br {
        display: none;
    }
}

.heroContent__text {
    max-width: 750px;
    line-height: 1.6;
    margin: auto;
    text-wrap: pretty;
}

@media screen and (max-width: 999px) {
    .heroContent__text br {
        display: none;
    }
}

.heroContent__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heroContent__links--homeHero2025 {
    margin: 40px auto 24px auto;
}

@media screen and (min-width: 1000px) {
    .heroContent__links--homeHero2025 {
        flex-direction: row;
        align-items: stretch;
        margin: 40px auto 0 auto;
    }
}

.heroContent__link {
    margin-top: 32px;
}

.heroContent__link--homeHero2025 {
    margin: 0 auto 16px auto;
}

@media screen and (min-width: 1000px) {
    .heroContent__link--homeHero2025 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media screen and (min-width: 1140px) {
    .heroContent__link--homeHero2025 {
        height: auto;
    }
}

.pageContent {
    position: relative;
    width: 88%;
    margin: auto;
}

.pageContent--center {
    max-width: 1060px;
    margin: auto;
    text-align: left;
}

@media screen and (min-width: 600px) {
    .pageContent--center {
        text-align: center;
    }
}

.pageContent--magazineBlock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 88%;
    max-width: 1440px;
    margin: auto auto 72px auto;
}

@media screen and (min-width: 1000px) {
    .pageContent--magazineBlock {
        flex-direction: row;
        justify-content: space-between;
        margin: auto auto 64px auto;
    }
}

@media screen and (min-width: 1025px) {
    .pageContent--magazineBlock {
        margin: auto auto 140px auto;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent--magazineBlock {
        margin: auto;
    }
}

@media screen and (min-width: 1600px) {
    .pageContent--magazineBlock {
        width: 77%;
    }
}

.pageContent--noteworthyDistinctions {
    margin: 100px auto 64px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--noteworthyDistinctions {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--noteworthyDistinctions {
        margin: 240px auto 100px auto;
    }
}

.pageContent--contactCta {
    margin-bottom: 72px;
}

@media screen and (min-width: 1000px) {
    .pageContent--contactCta {
        margin-bottom: 150px;
    }
}

.pageContent__inner--magazineBlock {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .pageContent__inner--magazineBlock {
        width: 55%;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent__inner--magazineBlock {
        width: 50%;
    }
}

@media screen and (min-width: 1880px) {
    .pageContent__inner--magazineBlock {
        width: 45%;
    }
}

.pageContent__image--magazineBlock {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .pageContent__image--magazineBlock {
        width: calc(45% - 48px);
        margin-top: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent__image--magazineBlock {
        width: 45%;
    }
}

.pageContent__video {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

@media screen and (min-width: 1000px) {
    .pageContent__video {
        width: calc(45% - 48px);
        margin-top: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent__video {
        width: 45%;
    }
}

.pageContent--magazineBlockAlt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 88%;
    max-width: 1440px;
    margin: auto auto 72px auto;
}

@media screen and (min-width: 1000px) {
    .pageContent--magazineBlockAlt {
        flex-direction: row;
        justify-content: space-between;
        margin: auto auto 64px auto;
    }
}

@media screen and (min-width: 1025px) {
    .pageContent--magazineBlockAlt {
        margin: auto auto 140px auto;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent--magazineBlockAlt {
        margin: auto;
    }
}

@media screen and (min-width: 1600px) {
    .pageContent--magazineBlockAlt {
        width: 77%;
    }
}

@media screen and (max-width: 999px) {
    .pageContent__image--magazineBlockAlt {
        width: 100%;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent__image--magazineBlockAlt {
        width: calc(45% - 48px);
        margin-top: 0;
        margin-left: 0;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent__image--magazineBlockAlt {
        width: 45%;
    }
}

.pageContent__inner--magazineBlockAlt {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .pageContent__inner--magazineBlockAlt {
        width: 55%;
        margin-left: auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent__inner--magazineBlockAlt {
        width: 52%;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent__inner--magazineBlockAlt {
        width: 48%;
    }
}

@media screen and (min-width: 1880px) {
    .pageContent__inner--magazineBlockAlt {
        width: 45%;
    }
}

.pageContent__text li {
    color: #7e7e7e;
}

.pageContent__superTitle {

}

.pageContent__heading {
    margin: 0 0 24px 0;
}

@media screen and (min-width: 600px) {
    .pageContent__heading {
        margin: 0 0 40px 0;
    }
}

@media screen and (min-width: 1025px) {
    .pageContent__heading {
        margin: 0 0 24px 0;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent__heading {
        margin: 0 0 40px 0;
    }
}

@media screen and (max-width: 999px) {
    .pageContent__heading br {
        display: none;
    }
}

.pageContent__heading span {
    font-weight: inherit;
}

.pageContent__text {
    text-wrap: pretty;
}

@media screen and (max-width: 999px) {
    .pageContent__text br {
        display: none;
    }
}

.pageContent--magazineBlock .pageContent__text,
.pageContent--magazineBlockAlt .pageContent__text {
    margin-bottom: 40px;
}

@media screen and (min-width: 600px) {
    .pageContent--magazineBlock .pageContent__text,
    .pageContent--magazineBlockAlt .pageContent__text {
        margin-bottom: 64px;
    }
}

@media screen and (min-width: 1025px) {
    .pageContent--magazineBlock .pageContent__text,
    .pageContent--magazineBlockAlt .pageContent__text {
        margin-bottom: 1em;
    }
}

.pageContent__icon {
    margin-bottom: 48px;
}

.pageContent__link {
    margin-top: 24px;
}

.pageContent__image {
    border-radius: 12px;
}

.pageContent__image--contactCta {
    margin-top: 24px;
}

.pageContent__quoteIcon {
    width: 48px;
    margin: 0 24px 0 0;
}

@media screen and (min-width: 1000px) {
    .pageContent__quoteIcon {
        width: 64px;
    }
}

.pageContent__btns {
    display: flex;
    align-items: center;
}

.servicesFunnel {
    width: 88%;
    margin: 64px auto 0 auto;
}

@media screen and (min-width: 1000px) {
    .servicesFunnel {
        margin: 100px auto 0 auto;
    }
}

@media screen and (min-width: 1600px) {
    .servicesFunnel {
        width: 77%;
    }
}

.servicesFunnel__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.serviceFunnelItem {
    width: 100%;
    margin-bottom: 32px;
    opacity: 1 !important;
}

@media screen and (min-width: 1000px) {
    .serviceFunnelItem {
        width: 47%;
        margin-bottom: 6%;
    }
}

.serviceFunnelItem__link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 270px;
    text-decoration: none;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
}

@media screen and (min-width: 600px) {
    .serviceFunnelItem__link {
        height: 360px;
    }
}

@media screen and (min-width: 1000px) {
    .serviceFunnelItem__link {
        height: 520px;
    }
}

.serviceFunnelItem__image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -moz-transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.serviceFunnelItem:hover .serviceFunnelItem__image {
    transform: scale(1.1);
}

.serviceFunnelItem__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
}

.serviceFunnelItem__heading {
    position: relative;
    margin: auto auto 24px auto;
    line-height: 1.1;
}

@media screen and (min-width: 600px) {
    .serviceFunnelItem__heading {
        margin: auto auto 32px auto;
    }
}

.serviceFunnelItem__btn {
    max-width: calc(100% - 48px);
    margin: 0 auto auto auto;
}

.columnList {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    width: 88%;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

@media screen and (min-width: 1140px) {
    .columnList {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1600px) {
    .columnList {
        width: 66%;
    }
}

.columnList__btn {
    margin-top: 32px;
    text-align: center;
    z-index: 1;
}

@media screen and (min-width: 1000px) {
    .columnList__btn {
        margin-top: 72px;
    }
}

.columnListItem {
    width: 100%;
    margin-bottom: 48px;
}

.columnListItem:last-of-type {
    margin-bottom: 0;
}

@media screen and (min-width: 1140px) {
    .columnListItem {
        width: 28%;
        margin-bottom: 0;
    }
}

.columnListItem--boxed {
    width: 100%;
    min-height: 260px;
    border-radius: 16px;
    padding: 24px 32px;
    box-sizing: border-box;
    box-shadow: 0 0.2em 1em 0 rgb(0 0 0 / 8%);
}

@media screen and (min-width: 1140px) {
    .columnListItem--boxed {
        width: 30.5%;
        min-height: 440px;
        padding: 32px 24px;
    }
}

@media screen and (min-width: 1326px) {
    .columnListItem--boxed {
        padding: 32px 48px;
    }
}

.columnListItem--ghostBoxed {
    width: 100%;
    margin-bottom: 32px;
    align-self: self-start;
    border-radius: 16px;
    border: 1.5px solid #d6b997;
    padding: 32px 28px;
    box-sizing: border-box;
}

@media screen and (min-width: 1326px) {
    .columnListItem--ghostBoxed {
        width: 30%;
        margin-bottom: 0;
    }
}

.columnListItem__quoteIcon {
    width: 64px;
    margin: 0;
}

.columnListItem__quote {
    margin-bottom: 32px;
}

.columnListItem__name {
    font-size: 1.15em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.columnListItem__role {
    font-weight: 500;
}

.columnListItemBulletPoints {
    list-style: none;
    padding: 0;
    margin: 0;
}

.columnListItemBulletPoints__item {

}

.columnListItemBulletPoints__bulletPoint {
    position: relative;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
}

.columnListItemBulletPoints__bulletPoint:before {
    content: "";
    position: relative;
    min-width: 24px;
    height: 12px;
    margin-right: 12px;
    padding-top: 16px;
    background-image: url(./assets/svgs/icon_plane_gold.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.columnListItemBulletPoints__bulletPoint--whiteIcon:before {
    background-image: url('./assets/svgs/icon_plane_white.svg');
}

.columnListItem__heading {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
}

@media screen and (min-width: 600px) {
    .columnListItem__heading {
        font-size: 2.2em;
    }
}

@media screen and (min-width: 1000px) {
    .columnListItem__heading {
        font-size: 1.5em;
    }
}

@media screen and (min-width: 1140px) {
    .columnListItem__heading {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 1326px) {
    .columnListItem__heading {
        font-size: 1.5em;
    }
}

.columnListItem__heading span {
    font-weight: inherit;
}

.columnListItem__line {
    width: 60px;
    height: 10px;
    margin-bottom: 35px;
}

.noteworthyDistinctions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 66%;
    list-style: none;
    padding: 0;
    margin: 0 auto 48px auto;
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinctions {
        flex-direction: row;
        justify-content: space-around;
        width: 88%;
        margin: 0 auto 140px auto;
    }
}

@media screen and (min-width: 1600px) {
    .noteworthyDistinctions {
        width: 77%;
    }
}

@media screen and (min-width: 1880px) {
    .noteworthyDistinctions {
        width: 66%;
    }
}

.noteworthyDistinction {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinction {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinction {
        /* width: 25%; */
    }
}

.noteworthyDistinction__circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60vw;
    max-width: 350px;
    height: 60vw;
    max-height: 350px;
    border: 3px solid #ceb99b;
    border-radius: 100%;
}

@media screen and (min-width: 600px) {
    .noteworthyDistinction__circle {
        width: 50vw;
        height: 50vw;
    }
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinction__circle {
        width: 25vw;
        height: 25vw;
    }
}

@media screen and (min-width: 1600px) {
    .noteworthyDistinction__circle {
        width: 25vw;
        height: 25vw;
    }
}

@media screen and (min-width: 1880px) {
    .noteworthyDistinction__circle {
        width: 16vw;
        height: 16vw;
    }
}

.noteworthyDistinction__inner {

}

.noteworthyDistinction__value {
    display: block;
    font-size: 5em;
    line-height: 1;
    font-weight: 600;
}

.noteworthyDistinction__value sup {
    margin-left: -47px;
    margin-left: -13px;
    margin-right: 6px;
}

@media screen and (min-width: 600px) {
    .noteworthyDistinction__value {
        font-size: 6em;
    }
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinction__value {
        font-size: 4.5em;
    }
}

.noteworthyDistinction__value fig {
    display: inline-block;
    transform: scale(0.8);
}

.noteworthyDistinction__statistic {
    display: block;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
}

@media screen and (min-width: 600px) {
    .noteworthyDistinction__statistic {
        font-size: 1.4em;
    }
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinction__statistic {
        font-size: 1.1em;
    }
}

.noteworthyDistinction__text {
    line-height: 1.6;
}

@media screen and (min-width: 1000px) {
    .noteworthyDistinction__text {
        padding: 0 32px;
    }
}

.testimonialSlider {
    text-align: center;
    margin: 32px auto 100px auto;
}

@media screen and (min-width: 1000px) {
    .testimonialSlider {
        width: calc(77% + 184px);
        margin: 140px auto 240px auto;
    }
}

.testimonialSlideWrap {
    padding: 32px 6%;
}

@media screen and (min-width: 1000px) {
    .testimonialSlideWrap {
        padding: 48px 92px;
    }
}

.testimonialSlide {
    display: flex;
    flex-direction: column;
    text-align: left;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0.2em 1em 0 rgb(0 0 0 / 8%);
}

@media screen and (min-width: 1000px) {
    .testimonialSlide {
        flex-direction: row;
    }
}

.testimonialSlide__imageWrap {
    background: #EAEAEA;
}

@media screen and (min-width: 1000px) {
    .testimonialSlide__imageWrap {
        display: flex;
        align-self: stretch;
        width: 40%;
    }
}

@media screen and (min-width: 1326px) {
    .testimonialSlide__imageWrap {
        width: 20%;
    }
}

.testimonialSlide__image {
    width: calc(100% - 140px);
    padding: 48px 0;
}

@media screen and (min-width: 600px) {
    .testimonialSlide__image {
        max-width: 280px;
    }
}

@media screen and (min-width: 1000px) {
    .testimonialSlide__image {
        width: calc(100% - 64px);
        max-width: 100%;
        padding: 0;
    }
}

.testimonialSlide__inner {
    padding: 32px 24px;
}

@media screen and (min-width: 1000px) {
    .testimonialSlide__inner {
        padding: 75px 48px;
    }
}

@media screen and (min-width: 1000px) {
    .testimonialSlide__inner {
        width: 80%;
        padding: 75px 48px;
    }
}

.testimonialSlide__inner--lookingForCrewPositions {
    width: 100%;
}

.testimonialSlide__quoteContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (min-width: 1000px) {
    .testimonialSlide__quoteContainer {
        flex-direction: row;
    }
}

.testimonialSlide__quoteIcon {
    width: 48px;
    margin: 0 0 24px 0;
}

@media screen and (min-width: 1000px) {
    .testimonialSlide__quoteIcon {
        width: 64px;
        margin: 0 24px 0 0;
    }
}

.testimonialSlide__quoteText {
}

.testimonialSlide__quote {
    margin: -9px 0 24px 0;
    font-size: 0.92em;
}

.testimonialSlide__name {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.testimonialSlide__role {
    font-weight: 500;
}

.testimonialSlider__btn {
    margin-top: 16px;
}

@media screen and (min-width: 1000px) {
    .testimonialSlider__btn {
        margin-top: 32px;
    }
}

.testimonialSlide__heading {
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 32px 0;
}

@media screen and (min-width: 600px) {
    .testimonialSlide__heading {
        margin: 0 0 64px 0;
    }
}

.testimonialSlide__heading span {
    font-weight: inherit;
}

.linkedInBtn {
    display: block;
    width: 49px;
    height: 49px;
    border: 2px solid #D6B997;
    border-radius: 100%;
    margin-left: 16px;
    background-image: url(./assets/svgs/icon_linkedin_gold.svg);
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
}

.linkedInBtn:hover {
    background: #D6B997;
    background-image: url(./assets/svgs/icon_linkedin_white.svg);
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
}

.pageContent__btn--contactCta {
    margin: auto 0;
}

.pageContent__text--contactCta {
    margin-bottom: 42px;
}

.pageContent__name {
    display: block;
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.pageContent__role {
    margin: 0 0 32px 0;
    font-weight: 500;
}

.voyageurBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 88%;
    margin: 0 auto 32px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #272727;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock {
        height: 100%;
        min-height: 660px;
        flex-direction: row;
        align-items: stretch;
        margin: 100px auto 64px auto;
        background: none;
    }
}

@media screen and (min-width: 1921px) {
    .voyageurBlock {
        min-height: 880px;
    }
}

.voyageurBlock__imageWrap {
    width: 100%;
    top: 0;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__imageWrap {
        position: absolute;
        width: 100%;
        height: inherit;
    }
}

.voyageurBlock__image {
    position: relative;
    width: 100%;
    height: 160px;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__image {
        position: absolute;
        width: 100%;
        height: inherit;
    }
}

.voyageurBlock__image:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(39,39,39,0.33);
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__image:after {
        display: none;
    }
}

.voyageurBlock__headingWrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 1;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__headingWrap {
        transform: rotate(-90deg);
        left: -200px;
        right: initial;
        top: 29%;
        text-align: initial;
    }
}

@media screen and (min-width: 2300px) {
    .voyageurBlock__headingWrap {
        left: -260px;
    }
}

.voyageurBlock__heading {
    font-size: 2.4em;
}

@media screen and (min-width: 600px) {
    .voyageurBlock__heading {
        font-size: 3.5em;
    }
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__heading {
        position: relative;
        font-size: 5em;
    }
}

.voyageurBlock__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-right: 0;
    margin-left: auto;
    padding: 48px 32px;
    box-sizing: border-box;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__content {
        width: 50%;
        padding: 0 5%;
    }
}

@media screen and (min-width: 1600px) {
    .voyageurBlock__content {
        width: 50%;
        padding: 0 100px;
    }
}

.voyageurBlock__content:before {
    display: none;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39,39,39,0.74);
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__content:before {
        display: block;
    }
}

.voyageurBlock__title {
    position: relative;
    margin: auto;
    font-size: 1.6em;
    font-weight: 700;
    margin: auto auto 1em auto;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__title {
        margin: 48px auto 1em auto;
    }
}

@media screen and (min-width: 1600px) {
    .voyageurBlock__title {
        margin: auto auto 1em auto;
    }
}

.voyageurBlock__text {
    position: relative;
    margin: 0 auto 1em auto;
}

.voyageurBlock__link {
    margin: 24px auto auto 0;
}

@media screen and (min-width: 1000px) {
    .voyageurBlock__link {
        margin: 24px auto 48px 0;
    }
}

@media screen and (min-width: 1600px) {
    .voyageurBlock__link {
        margin: 24px auto auto 0;
    }
}

.colorBand--voyageur {
    position: absolute;
    width: 100%;
    height: 350px;
    top: 0;
    background: #050505;
}


/*** PAGES & CATEGORIES ***/

/* Home */

.pageSection--homeHero2025 {
    display: flex;
    flex-direction: column;
    min-height: 860px;
    /* height: calc(100vh - 100px); */
    /* max-height: 844px; */
    overflow: hidden;
    background: #000;
}

@media screen and (min-width: 600px) {
    .pageSection--homeHero2025 {
        min-height: initial;
    }
}

@media screen and (min-width: 1000px) {
    .pageSection--homeHero2025 {
        height: calc(100vh - 100px);
        min-height: 800px;
        max-height: none;
    }
}

@media screen and (min-width: 1140px) {
    .pageSection--homeHero2025 {
        height: calc(100vh - 60px);
    }
}

@media screen and (min-width: 1600px) {
    .pageSection--homeHero2025 {
        /* min-height: 100vh; */
    }
}

.pageSection--homeHero2025:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(39,39,39,0.3);
}

.videoModal {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 24;
    transform: translateY(-100%);
    -webkit-transition: transform 0.6s ease;
    -moz-transition: transform 0.6s ease;
    -ms-transition: transform 0.6s ease;
    -o-transition: transform 0.6s ease;
    transition: transform 0.6s ease;
}

.videoModal__close {
    position: absolute;
    width: 28px;
    top: 32px;
    right: 32px;
    cursor: pointer;
    -webkit-transition: transform 0.2s linear;
    -moz-transition: transform 0.2s linear;
    -ms-transition: transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    z-index: 1;
}

.videoModal__close:hover {
    transform: scale(0.7);
}

.videoModal__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.videoModal__video {
    position: absolute;
    width: 100%;
    background-position: center;
    background-size: contain;
    object-fit: cover;
    height: auto;
    max-height: 100%;
}

.compassInstrument {
    position: absolute;
    width: 360px;
    height: 360px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

@media screen and (min-width: 600px) {
    .compassInstrument {
        width: 500px;
        height: 500px;
    }
}

@media screen and (min-width: 1000px) {
    .compassInstrument {
        width: 600px;
        height: 600px;
    }
}

@media screen and (min-width: 1025px) {
    .compassInstrument {
        width: 400px;
        height: 400px;
    }
}

@media screen and (min-width: 1326px) {
    .compassInstrument {
        width: 500px;
        height: 500px;
    }
}

@media screen and (min-width: 1400px) {
    .compassInstrument {
        top: 48px;
    }
}

@media screen and (min-width: 1600px) {
    .compassInstrument {
        width: 600px;
        height: 600px;
    }
}

.compassInstrument2025 {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 120px;
    bottom: initial;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

@media screen and (min-width: 600px) {
    .compassInstrument2025 {
        width: 500px;
        height: 500px;
    }
}

@media screen and (min-width: 1000px) {
    .compassInstrument2025 {
        top: 0;
        bottom: 0;
        width: 600px;
        height: 600px;
    }
}

@media screen and (min-width: 1326px) {
    .compassInstrument2025 {
        width: 500px;
        height: 500px;
    }
}

.compassInstrument__gauge {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url('./assets/svgs/instrument_gauge.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.compassInstrument__dial {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url('./assets/svgs/instrument_dial.svg');
    background-image: url('./assets/svgs/instrument_dial_v2.svg');
    background-size: 440px;
    background-size: 73.33%;
    background-position-y: 18px;
    background-position-y: 4%;
    background-position-x: center;
    background-repeat: no-repeat;
}

.heroContent--homeHero {
    position: relative;
    margin: auto;
    top: 125px;
    z-index: 2;
}

@media screen and (min-width: 600px) {
    .heroContent--homeHero {
        top: 40px;
    }
}

@media screen and (min-width: 1000px) {
    .heroContent--homeHero {
        top: 48px;
    }
}

@media screen and (min-width: 1025px) {
    .heroContent--homeHero {
        top: 62px;
    }
}

@media screen and (min-width: 1400px) {
    .heroContent--homeHero {
        top: 72px;
    }
}

.heroContent--homeHero2025 {
    margin-top: 270px;
    top: 0;
}

@media screen and (min-width: 600px) {
    .heroContent--homeHero2025 {
        margin-top: 346px;
    }
}

@media screen and (min-width: 1000px) {
    .heroContent--homeHero2025 {
        margin: auto;
        top: 97px;
    }
}

.heroContent__heading--homeHero {
    font-size: 3.5em;
}

.heroContent__heading--homeHero sup {
    font-size: 21px;
    top: -1.2em;
    right: -0.3em;
}

@media screen and (min-width: 600px) {
    .heroContent__heading--homeHero sup {
        top: -2.1em;
    }
}

@media only screen and (min-device-width: 600px) and (max-device-width: 999px) {
    .heroContent__heading--homeHero {
        font-size: 3.2em;
    }
}

.heroContent__heading--homeHero2025 {
    font-size: 3.5em;
}

@media (min-width: 1000px) and (max-width: 1325px) {
    .heroContent__heading--homeHero2025 {
        font-size: 4.2em;
    }
}

.heroContent__heading--homeHero2025 sup {
    font-size: 21px;
    top: -1.2em;
    right: -0.3em;
}

@media screen and (min-width: 600px) {
    .heroContent__heading--homeHero2025 sup {
        top: -2.1em;
    }
}

@media only screen and (min-device-width: 600px) and (max-device-width: 999px) {
    .heroContent__heading--homeHero2025 {
        font-size: 3.2em;
    }
}

.heroContent__text--homeHero {
    width: 320px;
    margin: 140px auto auto auto;
}

@media screen and (min-width: 600px) {
    .heroContent__text--homeHero {
        width: 440px;
        margin: auto;
    }
}

@media screen and (min-width: 1025px) {
    .heroContent__text--homeHero {
        width: 355px;
    }
}

@media screen and (min-width: 1400px) {
    .heroContent__text--homeHero {
        width: 440px;
    }
}

.heroContent__text--homeHero2025 {
    width: 320px;
    margin: 120px auto auto auto;
}

@media screen and (min-width: 600px) {
    .heroContent__text--homeHero2025 {
        width: 440px;
        margin: auto;
    }
}

@media screen and (min-width: 1025px) {
    .heroContent__text--homeHero2025 {
        width: 355px;
    }
}

@media screen and (min-width: 1400px) {
    .heroContent__text--homeHero2025 {
        width: 440px;
    }
}

.pageContent--homeFoldFirst {
    margin: 72px auto 64px auto;
}

@media screen and (min-width: 1000px) {
    .pageContent--homeFoldFirst {
        margin: 140px auto 32px auto;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent--homeFoldFirst {
        margin: 140px auto 0 auto;
    }
}

.pageContent__images--homeFoldImageGroup {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .pageContent__images--homeFoldImageGroup {
        width: calc(45% - 48px);
    }
}

@media screen and (min-width: 1326px) {
    .pageContent__images--homeFoldImageGroup {
        width: 520px;
    }
}

.pageContent__video--homeFoldVideo {
    width: 100% !important;
    margin-bottom: 32px;
}

@media screen and (min-width: 1000px) {
    .pageContent__video--homeFoldVideo {
        margin-bottom: 55px;
    }
}

.pageContent__image--homeFoldImageGroupFirst {
    display: none;
}

@media screen and (min-width: 1326px) {
    .pageContent__image--homeFoldImageGroupFirst {
        display: block;
    }
}

@media screen and (min-width: 1880px) {
    .pageContent__images--homeFoldImageGroup {
        width: 650px;
    }
}

.pageContent__image--homeFoldImageGroupSecond {
    width: 100%;
}

@media (min-width: 1000px) and (max-width: 1325px) { /* For use with fold video only, remove if using original "first" image. */
    .pageContent__image--homeFoldImageGroupSecond {
        display: none;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent__image--homeFoldImageGroupSecond {
        position: absolute;
        width: 268px;
        top: calc(100% + 96px);
        margin-left: -108px;
        z-index: 1;
    }
}

@media screen and (min-width: 1600px) {
    .pageContent__image--homeFoldImageGroupSecond {
        margin-left: -96px;
    }
}

@media screen and (min-width: 1880px) {
    .pageContent__image--homeFoldImageGroupSecond {
        width: 404px;
    }
}

.pageContent__image--homeFoldImageGroupThird {
    position: absolute;
    display: none;
    width: 360px;
    top: calc(100% + 48px);
    right: -64px;
}

@media screen and (min-width: 1326px) {
    .pageContent__image--homeFoldImageGroupThird {
        display: block;
        top: calc(100% + 35px);
        right: -48px;
    }
}

@media screen and (min-width: 1600px) {
    .pageContent__image--homeFoldImageGroupThird {
        top: calc(100% + 48px);
        right: -64px;
    }
}

.illustration--homeFold {
    width: 1000px;
    top: 640px;
    margin: 0 0 32px 5%;
    z-index: -1;
}

@media screen and (min-width: 1326px) {
    .illustration--homeFold {
        width: 700px;
        margin: 64px 0 32px 5%;
    }
}

@media screen and (min-width: 1880px) {
    .illustration--homeFold {
        width: 1000px;
        margin: 0 0 32px 5%;
    }
}

.pageContent--homeFoldSecond {
    margin-bottom: 64px;
}

.pageSection__backgroundImage--homeValuePropositions {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .pageSection__backgroundImage--homeValuePropositions {
        margin-bottom: -32px;
    }
}

@media screen and (min-width: 1600px) {
    .pageSection__backgroundImage--homeValuePropositions {
        margin-bottom: -92px;
    }
}

@media screen and (min-width: 1880px) {
    .pageSection__backgroundImage--homeValuePropositions {
        margin-bottom: -200px;
    }
}

@media screen and (max-width: 999px) {
    .homeValuePropositions {
        margin-bottom: 140px;
    }
}

.pageContent--homeValuePropositionsFirst {

}

@media screen and (min-width: 1400px) {
    .pageContent--homeValuePropositionsFirst {
        margin-bottom: 180px;
    }
}

@media screen and (max-width: 999px) {
    .pageContent__image--homeValuePropositionsFirst {
        width: 100%;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent__image--homeValuePropositionsFirst {
        width: 42%;
    }
}

.pageContent--homeValuePropositionsSecond {
    flex-direction: column-reverse;
}

@media screen and (min-width: 1000px) {
    .pageContent--homeValuePropositionsSecond {
        flex-direction: row;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent--homeValuePropositionsSecond {
        margin-bottom: 180px;
    }
}

.pageContent--homeValuePropositionsThird {

}

@media screen and (min-width: 1025px) {
    .pageContent--homeValuePropositionsThird {
        margin-bottom: 180px;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--homeValuePropositionsThird {
        margin-bottom: 200px;
    }
}

@media screen and (min-width: 1600px) {
    .pageContent--homeValuePropositionsThird {
        margin-bottom: 260px;
    }
}

.pageContent--homeServicesFunnel {

}

.pageContent__heading--homeServicesFunnel {
    font-size: 2.8em;
}

@media screen and (min-width: 600px) {
    .pageContent__heading--homeServicesFunnel {
        font-size: 3.2em;
    }
}

@media screen and (max-width: 1139px) {
    .pageContent__text--homeServicesFunnel br {
        display: none;
    }
}

.colorBand--homeServicesFunnel {
    position: absolute;
    width: 100%;
    height: 480px;
    bottom: 0;
    background: #fff;
}

@media screen and (min-width: 600px) {
    .colorBand--homeServicesFunnel {
        height: 620px;
    }
}

@media screen and (min-width: 1000px) {
    .colorBand--homeServicesFunnel {
        height: 350px;
    }
}

.pageSection--homeNews {
    margin-top: 80px;
}

.pageContent--homeNews {
    width: 77%;
    margin: 320px auto 0 auto;
}

@media screen and (min-width: 600px) {
    .pageContent--homeNews {
        margin: 360px auto 0 auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--homeNews {
        width: 88%;
        margin: 320px auto 0 auto;
    }
}

@media screen and (min-width: 1600px) {
    .pageContent--homeNews {
        width: 77%;
    }
}

.newsAndEvents {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    width: 88%;
    margin: 0 auto 100px auto;
}

@media screen and (min-width: 1000px) {
    .newsAndEvents {
        width: 88%;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 auto 200px auto;
    }
}

@media screen and (min-width: 1600px) {
    .newsAndEvents {
        width: 77%;
    }
}

.newsAndEvents__item {
    width: 100%;
    margin-bottom: 32px;
    box-shadow: 0 0.2em 1em 0 rgba(0,0,0,0.08);
    border-radius: 16px;
    opacity: 1 !important;
}

@media screen and (min-width: 1000px) {
    .newsAndEvents__item {
        width: 30%;
        margin-bottom: 0;
    }
}

.illustration--homeNews {
    position: absolute;
    width: 500px;
    max-width: none;
    top: -112px;
}

@media screen and (min-width: 600px) {
    .illustration--homeNews {
        width: 700px;
        top: -160px;
        right: -200px;
    }
}

@media screen and (min-width: 800px) {
    .illustration--homeNews {
        width: 760px;
    }
}

@media screen and (min-width: 1400px) {
    .illustration--homeNews {
        width: auto;
        top: -140px;
    }
}


/* Consultatiive Aircraft Sales and Acquisitions */

.pageSection__backgroundImage--consultativeSalesAcquisitionsHero:after {
    background: rgba(0,0,0,0.4);
}

.pageContent--consultativeSalesAcquisitionsFold {
    margin: 72px auto 100px auto;
}

@media screen and (min-width: 600px) {
    .pageContent--consultativeSalesAcquisitionsFold {
        margin: 100px auto 200px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--consultativeSalesAcquisitionsFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--consultativeSalesAcquisitionsExperience {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--consultativeSalesAcquisitionsExperience {
        margin-bottom: 120px;
    }
}

.columnList--consultativeSalesAcquisitionsExperience {
    margin-bottom: 0;
}

.pageContent--consultativeSalesAcquisitionsBestInBiz {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--consultativeSalesAcquisitionsBestInBiz {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--consultativeSalesAcquisitionsBestInBiz {
        margin: 240px auto 100px auto;
    }
}


/* Careers */

.pageSection__backgroundImage--careersHero:after {
    background: rgba(0,0,0,0.4);
}

.pageContent--careersFold {
    margin: 72px auto 100px auto;
}

@media screen and (min-width: 600px) {
    .pageContent--careersFold {
        margin: 100px auto 140px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--careersFold {
        margin: 160px auto 200px auto;
    }
}

.pageSection__backgroundImage--careersFold {
    width: 100%;
}

.pageContent--careersCultureWorkEnvironment {
    margin: 0 auto 140px auto;
}

@media screen and (min-width: 1000px) {
    .pageContent--careersCultureWorkEnvironment {
        margin: 0 auto 240px auto;
    }
}

@media screen and (min-width: 600px) {
    .pageContent--careersCultureLifestyle {
        margin-bottom: 140px;
    }
}

@media screen and (max-width: 999px) {
    .pageContent--careersCultureLifestyle {
        flex-direction: column-reverse;
    }
    .pageContent__image--careersCultureLifestyle {
        margin-bottom: 32px;
    }
}

.careersFunnel {
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 64px auto;
}

@media screen and (min-width: 600px) {
    .careersFunnel {
        margin: 0 auto 100px auto;
    }
}

@media screen and (min-width: 1400px) {
    .careersFunnel {
        width: 66%;
    }
}

.careersFunnel__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

@media screen and (min-width: 1000px) {
    .careersFunnel__list {
        flex-direction: row;
        justify-content: space-between;
    }
}

.careersFunnelItem {
    width: 100%;
    margin-bottom: 64px;
}

@media screen and (min-width: 1000px) {
    .careersFunnelItem {
        width: 47%;
        margin-bottom: 6%;
    }
}

.careersFunnelItem__link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 320px;
    margin-bottom: 64px;
    text-decoration: none;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
}

@media screen and (min-width: 600px) {
    .careersFunnelItem__link {
        height: 520px;
    }
}

.careersFunnelItem__image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -moz-transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.careersFunnelItem:hover .careersFunnelItem__image {
    transform: scale(1.1);
}

.careersFunnelItem__image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
}

.careersFunnelItem__heading {
    position: relative;
    margin: auto auto 16px auto;
    line-height: 1.1;
}

.careersFunnelItem__textLink {
    position: relative;
    display: block;
    margin: 0 auto auto auto;
    font-weight: 700;
    text-decoration: underline;
    text-transform: uppercase;
}

.careersFunnelItem__text {
    text-align: center;
}

.pageContent--careersCompanyValues {
    margin: 100px auto 32px auto;
}

@media screen and (min-width: 600px) {
    .pageContent--careersCompanyValues {
        margin: 140px auto 80px auto;
    }
}

.companyValuesChart {
    position: relative;
}

.companyValuesChart__image {
    width: 92%;
    margin: auto;
}

@media screen and (min-width: 600px) {
    .companyValuesChart__image {
        width: 88%;
    }
}

@media screen and (min-width: 1400px) {
    .companyValuesChart__image {
        width: 66%;
    }
}

.pageSection__backgroundImage--careersCompanyValues {
    position: absolute;
    display: none;
    width: 1000px;
    bottom: -140px;
    right: -12%;
    z-index: -1;
}

@media screen and (min-width: 1000px) {
    .pageSection__backgroundImage--careersCompanyValues {
        display: block;
        width: 58vw;
        bottom: 0;
        right: -20%;
    }
}

@media screen and (min-width: 1400px) {
    .pageSection__backgroundImage--careersCompanyValues {
        width: 52vw;
        bottom: -110px;
        right: -10%;
    }
}

@media screen and (min-width: 1880px) {
    .pageSection__backgroundImage--careersCompanyValues {
        bottom: -140px;
        right: -12%;
    }
}

.pageContent--careersPerksBenefits {
    margin: 100px auto 64px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--careersPerksBenefits {
        margin: 140px auto 64px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--careersPerksBenefits {
        margin: 240px auto 100px auto;
    }
}

@media screen and (min-width: 1400px) {
    .pageContent--careersPerksBenefits {
        margin: 350px auto 100px auto;
    }
}

.companyPerksBenefits {
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 100px auto;
}

@media screen and (min-width: 1000px) {
    .companyPerksBenefits {
        width: 77%;
    }
}

@media screen and (min-width: 1400px) {
    .companyPerksBenefits {
        width: 66%;
        margin: 0 auto 200px auto;
    }
}

@media screen and (min-width: 1600px) {
    .companyPerksBenefits {
        width: 60%;
    }
}

.companyPerksBenefits__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
    padding: 0;
    margin: auto;
    list-style: none;
}

.companyPerksBenefitsItem {
    width: 30.5%;
    margin-bottom: 32px;
}

@media screen and (min-width: 1000px) {
    .companyPerksBenefitsItem {
        width: 33.33%;
        margin-bottom: 5%;
    }
}

.companyPerksBenefitsItem:last-of-type {
    margin-left: 34.7%;
}

@media screen and (min-width: 1000px) {
    .companyPerksBenefitsItem:last-of-type {
        margin-left: 33.34%;
    }
}

.companyPerksBenefitsItem__icon {
    width: 90%;
    margin: 0 auto 24px auto;
}

@media screen and (min-width: 600px) {
    .companyPerksBenefitsItem__icon {
        width: auto;
        max-width: 147px;
        margin: 0 auto 40px auto;
    }
}

.companyPerksBenefitsItem__title {
    font-size: 1em;
    font-weight: 600;
}

@media screen and (min-width: 600px) {
    .companyPerksBenefitsItem__title {
        font-size: 1.3em;
    }
}

.pageContent--careersMeetOurPeople {
    margin: 0 auto;
    text-align: center;
}

.testimonialSlider--careersMeetOurPeople {
    margin: 0 auto 100px auto;
}

@media screen and (min-width: 1000px) {
    .testimonialSlider--careersMeetOurPeople {
        margin: 0 auto 200px auto;
    }
}

@media screen and (max-width: 1139px) {
    .testimonialSlide-careersMeetOurPeople {
        flex-direction: column;
    }
}

.testimonialSlide__imageWrap--careersMeetOurPeople {
    width: 100%;
    height: 240px;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 600px) {
    .testimonialSlide__imageWrap--careersMeetOurPeople {
        height: 560px;
    }
}

@media screen and (min-width: 1140px) {
    .testimonialSlide__imageWrap--careersMeetOurPeople {
        height: auto;
    }
}

@media screen and (min-width: 1326px) {
    .testimonialSlide__imageWrap--careersMeetOurPeople {
        width: 40%;
        background-position: center;
    }
}


/* About */

.pageSection--aboutHero:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(39,39,39,0.2);
}

.heroContent--aboutHero {
    z-index: 2;
}

.pageContent--aboutFold {
    margin: 72px auto 100px auto;
}

@media screen and (min-width: 600px) {
    .pageContent--aboutFold {
        margin: 100px auto 140px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutFold {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aboutFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent__textWrap--aboutFold {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.pageContent__text--aboutFold {
    margin-top: 0;
}

.pageSection__backgroundImage--aboutFold {
    width: 100%;
}

.pageContent--aboutDivisions {
    margin-bottom: 140px;
}

@media screen and (min-width: 1326px) {
    .pageContent--aboutDivisions {
        margin-bottom: 240px;
    }
}

.pageContent--aboutDivisionsManagement {
    margin-bottom: 64px;
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutDivisionsManagement {
        margin-bottom: 100px;
    }
}

.pageSection__line--divisions {
    width: 70%;
    height: 1.5px;
    background: #d6b997;
    margin: 0 auto 64px auto;
}

@media screen and (min-width: 600px) {
    .pageSection__line--divisions {
        margin: 0 auto 80px auto;
    }
}

.divisionsTeamGrid {
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 100px auto;
}

@media screen and (min-width: 1000px) {
    .divisionsTeamGrid {
        width: 88%;
        margin: 0 auto 140px auto;
    }
}

@media screen and (min-width: 1326px) {
    .divisionsTeamGrid {
        width: 70%;
    }
}

.divisionsTeamGrid__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: auto;
}

.divisionsTeamGridItem {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

@media screen and (min-width: 1000px) {
    .divisionsTeamGridItem {
        width: 47%;
        margin-bottom: 8%;
    }
}

.divisionsTeamGridItem__contact {
    position: absolute;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -72px;
    text-align: center;
    background: #d6b997;
    border-radius: 50%;
    cursor: pointer;
    -moz-transition: bottom 0.3s ease-out;
    -webkit-transition: bottom 0.3s ease-out;
    -o-transition: bottom 0.3s ease-out;
    transition: bottom 0.3s ease-out;
}

@media screen and (min-width: 1000px) {
    .divisionsTeamGridItem__contact {
        bottom: 0;
    }
}

.divisionsTeamGridItem:hover .divisionsTeamGridItem__contact {
    bottom: -72px;
}

@media screen and (min-width: 1000px) {
    .divisionsTeamGridItem:hover .divisionsTeamGridItem__contact {
        bottom: -72px;
    }
}

.divisionsTeamGridItem__contact a {
    position: absolute;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    bottom: 32px;
    left: 0;
    right: 0;
    text-decoration: none;
}

.divisionsTeamGridItem__name {
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
}

.divisionsTeamGridItem__role {
    display: block;
    margin-bottom: 32px;
}

.divisionsTeamGridItem__imageWrap {
    position: relative;
    border-radius: 13px;
    padding-bottom: 100%;
    overflow: hidden;
}

.divisionsTeamGridItem__imageWrap:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgb(5 5 5 / 73%);
    opacity: 0;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.divisionsTeamGridItem:hover .divisionsTeamGridItem__imageWrap:after {
    opacity: 1;
}

.divisionsTeamGridItem__image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.divisionsTeamGridItem__bio {
    position: absolute;
    width: 88%;
    margin: auto;
    top: 45%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: left;
    z-index: 1;
    opacity: 0;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 1000px) {
    .divisionsTeamGridItem__bio {
        font-size: 0.92em;
    }
}

@media screen and (min-width: 1326px) {
    .divisionsTeamGridItem__bio {
        width: 70%;
        font-size: 1em;
    }
}

.divisionsTeamGridItem:hover .divisionsTeamGridItem__bio {
    opacity: 1;
}

.divisionsTeamGridItem__linkedin {
    position: absolute;
    display: table;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 1;
    opacity: 0;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

@media screen and (min-width: 1000px) {
    .divisionsTeamGridItem__linkedin {
        bottom: 64px;
    }
}

.divisionsTeamGridItem__linkedin img {
    width: 32px;
    height: 32px;
}

.divisionsTeamGridItem:hover .divisionsTeamGridItem__linkedin {
    opacity: 1;
}

.pageContent--aboutDivisionsSales {
    margin-bottom: 64px;
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutDivisionsSales {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 999px) {
    .divisionsTeamGridItem--sales {
        margin-bottom: 100px;
    }
}

.pageContent--aboutHowWeWork {
    margin: 100px auto;
    text-align: left;
}

@media screen and (min-width: 600px) {
    .pageContent--aboutHowWeWork {
        margin: 140px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutHowWeWork {
        margin: 140px auto 200px auto;
        text-align: center;
    }
}

.pageContent--aboutHowWeWorkFirst,
.pageContent--aboutHowWeWorkSecond,
.pageContent--aboutHowWeWorkThird {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--aboutHowWeWorkFirst,
    .pageContent--aboutHowWeWorkSecond,
    .pageContent--aboutHowWeWorkThird {
        margin-bottom: 140px;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutHowWeWorkFirst,
    .pageContent--aboutHowWeWorkSecond,
    .pageContent--aboutHowWeWorkThird {
        margin-bottom: 140px;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aboutHowWeWorkFirst,
    .pageContent--aboutHowWeWorkSecond,
    .pageContent--aboutHowWeWorkThird {
        margin-bottom: 200px;
    }
}

.pageContent--aboutHowWeWorkSecond {
    flex-direction: column-reverse;
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutHowWeWorkSecond {
        flex-direction: row;
    }
}

.pageContent--aboutHowWeWorkFourth {
    flex-direction: column-reverse;
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--aboutHowWeWorkFourth {
        margin-bottom: 140px;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutHowWeWorkFourth {
        flex-direction: row;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aboutHowWeWorkFourth {
        margin-bottom: 240px;
    }
}

.pageContent--aboutSafety {
    margin: 100px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--aboutSafety {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutSafety {
        margin: 240px auto 100px auto;
    }
}

.columnList--aboutSafety {
    width: 88%;
}

@media screen and (min-width: 600px) {
    .columnList--aboutSafety {
    }
}

@media screen and (min-width: 1000px) {
    .columnList--aboutSafety {
        width: 77%;
    }
}

@media screen and (min-width: 1600px) {
    .columnList--aboutSafety {
        width: 66%;
    }
}

.pageContent--aboutClientSuccess {
    margin: 100px auto 64px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--aboutClientSuccess {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aboutClientSuccess {
        margin: 200px auto 100px auto;
    }
}

.columnList--aboutClientSuccess {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .columnList--aboutClientSuccess {
        margin-bottom: 140px;
    }
}

@media screen and (min-width: 1000px) {
    .columnList--aboutClientSuccess {
        margin-bottom: 240px;
    }
}

.columnList--aboutClientSuccess {
    width: 88%;
}

@media screen and (min-width: 1000px) {
    .columnList--aboutClientSuccess {
        width: 77%;
    }
}

.pageContent__video--aboutClientSuccess {
    width: 88%;
    max-width: 960px;
    margin: -32px auto 92px auto;
    border-radius: 12px;
    overflow: hidden;
}


/* Aircraft for Sale and Acquisition */

.pageContent--aircraftForSale {
    margin: 72px auto 64px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--aircraftForSale {
        margin: 100px auto 64px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aircraftForSale {
        margin: 140px auto 64px auto;
    }
}

.aircraftFilter {
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 80px auto;
}

@media screen and (min-width: 1326px) {
    .aircraftFilter {
        width: 77%;
    }
}

.aircraftLoop {
    width: 88%;
    max-width: 1440px;
    min-height: 520px;
    margin: auto;
    list-style: none;
    padding: 0;
}

@media screen and (min-width: 1326px) {
    .aircraftLoop {
        width: 77%;
    }
}

.aircraftLoop--aircraftForSale {
    margin-bottom: 0px;
}

.post--aircraft {
    position: relative;
    width: 100%;
    margin-bottom: 110px;
    float: left;
}

@media screen and (min-width: 600px) {
    .post--aircraft {
        width: 48%; /* 2 column loop */
        margin: 0% 4% 110px 0%;
    }
    .post--aircraft:nth-of-type(2n+2) {
        margin: 0% 0% 110px 0%;
    }
}

@media screen and (min-width: 1326px) {
    .post--aircraft {
        width: 30%; /* 3 column loop */
        margin: 0% 4% 110px 0%;
    }
    .post--aircraft:nth-of-type(2n+2) {
        margin: 0% 4% 110px 0%;
    }
    .post--aircraft:nth-of-type(3n+3) {
        margin: 0% 0% 110px 0%;
    }
}

.aircraftLoop--aircraftForSale .post--aircraft.sold,
.aircraftLoop--aircraftForSale .post--aircraft.unlisted,
.aircraftLoop--aircraftWantedForAcquisition  .post--aircraft.unlisted {
    display: none;
}

@media screen and (max-width: 599px) {
    .post--aircraftSold {
        margin-bottom: 48px !important;
    }
}

@media screen and (max-width: 999px) {
    .post--aircraftSold {
        margin-bottom: 48px !important;
    }
}

.aircraftPostLink {
    display: block;
    text-decoration: none;
}

.aircraftPostLink__titleWrap {
    display: flex;
    flex-direction: column;
    min-height: 56px;
    margin-bottom: 16px;
}

.aircraftPostLink__title {
    width: 75%;
    font-size: 1.2em;
    font-weight: 600;
    margin: auto 0 0 0;
}

.aircraftPostLink__thumbnailWrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0.2em 1em 0 rgb(0 0 0 / 15%);
}

.aircraftPostLink__thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    padding-bottom: 65%;
    background: #fff;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    -moz-transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.aircraftPostLink__thumbnail:hover {
    transform: scale(1.1);
}

.aircraftPostLink__tab {
    position: absolute;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -60px;
    text-align: center;
    background: #d6b997;
    border-radius: 50%;
    cursor: pointer;
    -moz-transition: bottom 0.3s ease-out;
    -webkit-transition: bottom 0.3s ease-out;
    -o-transition: bottom 0.3s ease-out;
    transition: bottom 0.3s ease-out;
}

@media screen and (min-width: 1000px) {
    .aircraftPostLink__tab {
        width: 200px;
        height: 200px;
    }
}

@media screen and (min-width: 1025px) {
    .aircraftPostLink__tab {
        bottom: 0;
    }
    .post--aircraft:hover .aircraftPostLink__tab {
        bottom: -72px;
    }
}

.aircraftPostLink__tab span {
    position: absolute;
    display: block;
    font-size: 0.92em;
    font-weight: 700;
    text-transform: uppercase;
    bottom: 32px;
    left: 0;
    right: 0;
    text-decoration: none;
}

.pageContent--aircraftWantedForAcquisition {
    margin: 64px auto 64px auto;
    text-align: center;
}

.backgroundShape--listings {
    position: relative;
    top: 1px;
}

.pageContent--aircraftSold {
    margin: 72px auto 64px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--aircraftSold {
        margin: 100px auto 64px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aircraftSold {
        margin: 140px auto 64px auto;
    }
}

.soldOverlay {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,0.5);
}

.soldOverlay__lineTopLeft {
    position: absolute;
    width: 42%;
    height: 2px;
    background: #d6b997;
    top: 24%;
    left: 0;
    transform: rotate(32deg);
}

.soldOverlay__label {
    display: table;
    position: absolute;
    align-self: center;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.3em;
    font-weight: 700;
    text-transform: uppercase;
}

.soldOverlay__lineTopRight {
    position: absolute;
    width: 42%;
    height: 2px;
    background: #d6b997;
    bottom: 21%;
    right: 0;
    transform: rotate(-149deg);
}


/* Aircraft Management */

.pageContent--aircraftManagementFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--aircraftManagementFold {
        margin: 100px auto 200px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aircraftManagementFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--aircraftManagementValuePropositions {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--aircraftManagementValuePropositions {
        margin-bottom: 120px;
    }
}

.columnList--aircraftManagementPerks {
    margin-bottom: 0;
}

.pageContent--aircraftManagementPerks {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--aircraftManagementPerks {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--aircraftManagementPerks {
        margin: 240px auto 100px auto;
    }
}


/* Looking for Crew */

.pageSection__backgroundImage--lookingForCrewHero:after {
    background: rgba(0,0,0,0.4);
}

.pageContent--lookingForCrewFold {
    margin: 72px auto 100px auto;
}

@media screen and (min-width: 600px) {
    .pageContent--lookingForCrewFold {
        margin: 100px auto 200px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--lookingForCrewFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--lookingForCrewChallenges {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--lookingForCrewChallenges {
        margin-bottom: 120px;
    }
}

.pageContent__heading--lookingForCrewFold {
    font-size: 2.4em !important;
}

.columnList--lookingForCrewFindingCrew {
    margin-bottom: 0;
}

.pageContent--lookingForCrewFindingCrew {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--lookingForCrewFindingCrew {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--lookingForCrewFindingCrew {
        margin: 240px auto 100px auto;
    }
}


/* Looking for Crew Positions */

.pageSection__backgroundImage--lookingForCrewPositionsHero:after {
    background: rgba(0,0,0,0.5);
}

.pageContent--lookingForCrewPositionsFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--lookingForCrewPositionsFold {
        margin: 100px auto 200px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--lookingForCrewPositionsFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--lookingForCrewPositionsChallenges {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--lookingForCrewPositionsChallenges {
        margin-bottom: 120px;
    }
}

.columnList--lookingForCrewPositionsCareerPartner {
    margin-bottom: 0;
}

.pageContent--lookingForCrewPositionsCareerPartner {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--lookingForCrewPositionsCareerPartner {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--lookingForCrewPositionsCareerPartner {
        margin: 240px auto 100px auto;
    }
}


/* Charter without Compromise */

.pageSection__backgroundImage--charterWithoutCompromiseHero:after {
    background: rgba(0,0,0,0.5);
}

.heroContent__link--email {
    display: inline-flex;
    max-width: 92%;
    align-items: center;
}

.heroContent__link--email:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-image: url('./assets/svgs/icon_email_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.heroContent__link--email:hover:before {
    background-image: url('./assets/svgs/icon_email_black.svg');
}

.heroContent__link--phone {
    display: inline-flex;
    max-width: 92%;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.heroContent__link--phone:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-image: url('./assets/svgs/icon_phone_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.heroContent__link--phone span {
    text-decoration: underline;
    font-weight: inherit;
    padding-left: 0.6em;
}

.heroContent__link--book {
    display: inline-flex;
    max-width: 92%;
    align-items: center;
}

.heroContent__link--book:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-image: url('./assets/svgs/icon_plane_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.heroContent__link--book:hover:before {
    background-image: url('./assets/svgs/icon_plane_black.svg');
}

.pageContent--charterWithoutCompromiseFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--charterWithoutCompromiseFold {
        margin: 100px auto 120px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--charterWithoutCompromiseFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--charterWithoutCompromiseIdealExperience {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--charterWithoutCompromiseIdealExperience {
        margin-bottom: 120px;
    }
}

.columnList--charterWithoutCompromiseOptionsExcellence {
    margin-bottom: 0;
}

.pageContent--charterWithoutCompromiseOptionsExcellence {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--charterWithoutCompromiseOptionsExcellence {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--charterWithoutCompromiseOptionsExcellence {
        margin: 240px auto 100px auto;
    }
}


/* Leasing */

.pageContent--leasingFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--leasingFold {
        margin: 100px auto 120px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--leasingFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--leasingQualityConsultancy {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--leasingQualityConsultancy {
        margin-bottom: 120px;
    }
}

.columnList--leasingQualityConsultancy {
    margin-bottom: 0;
}

.pageContent--leasingWithConfidence {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--leasingWithConfidence {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--leasingWithConfidence {
        margin: 240px auto 100px auto;
    }
}

.pageContent--availableLeaseTypes {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--availableLeaseTypes {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--availableLeaseTypes {
        margin: 240px auto 100px auto;
    }
}


/* Ferry & Delivery */

.pageContent--ferryDeliveryFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--ferryDeliveryFold {
        margin: 100px auto 120px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--ferryDeliveryFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--ferryingComplexities {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--ferryingComplexities {
        margin-bottom: 120px;
    }
}

.columnList--ferryTurnKeySolution {
    margin-bottom: 0;
}

.pageContent--ferryTurnKeySolution {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--ferryTurnKeySolution {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--ferryTurnKeySolution {
        margin: 240px auto 100px auto;
    }
}


/* Entry Into Service */

.pageSection__backgroundImage--entryIntoServiceHero:after {
    background: rgba(0,0,0,0.35);
}

.pageContent--entryIntoServiceFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--entryIntoServiceFold {
        margin: 100px auto 120px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--entryIntoServiceFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--entryIntoServiceknowledgeExperience {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--entryIntoServiceknowledgeExperience {
        margin-bottom: 120px;
    }
}

.columnList--entryIntoServiceknowledgeExperience {
    margin-bottom: 0;
}

.pageContent--entryIntoServiceExperts {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--entryIntoServiceExperts {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--entryIntoServiceExperts {
        margin: 240px auto 100px auto;
    }
}


/* technical Consultancy */

.pageContent--technicalConsultancyFold {
    margin: 72px auto 100px auto;
}


@media screen and (min-width: 600px) {
    .pageContent--technicalConsultancyFold {
        margin: 100px auto 120px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--technicalConsultancyFold {
        margin: 160px auto 200px auto;
    }
}

.pageContent--technicalConsultancyMaintenanceComplexities {
    margin-bottom: 100px;
}

@media screen and (min-width: 600px) {
    .pageContent--technicalConsultancyMaintenanceComplexities {
        margin-bottom: 120px;
    }
}

.columnList--technicalConsultancy {
    margin-bottom: 0;
}

.pageContent--technicalConsultancy {
    margin: 100px auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--technicalConsultancy {
        margin: 140px auto 100px auto;
    }
}

@media screen and (min-width: 1000px) {
    .pageContent--technicalConsultancy {
        margin: 240px auto 100px auto;
    }
}


/* Aircraft for Sale and Acquisition (Post type) */

.aircraftSummary {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 88%;
    max-width: 1440px;
    margin: 140px auto 72px auto;
}

@media screen and (min-width: 600px) {
    .aircraftSummary {
        margin: 140px auto 140px auto;
    }
}

@media screen and (min-width: 1326px) {
    .aircraftSummary {
        flex-direction: row;
        justify-content: space-between;
        margin: 200px auto 140px auto;
    }
}

@media screen and (min-width: 1600px) {
    .aircraftSummary {
        width: 77%;
    }
}

.aircraftSummaryImages {
    width: 100%;
    margin: auto;
}

@media screen and (min-width: 1326px) {
    .aircraftSummaryImages {
        width: 48%;
        margin: auto 0 0 0;
    }
}

.aircraftSummaryImages__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

.aircraftSummaryImages__item {
    display: none;
    flex-basis: 32%;
    margin: 0% 4% 4% 0%;
    border-radius: 13px;
    overflow: hidden;
    float: left;
}

@media screen and (min-width: 1000px) {
    .aircraftSummaryImages__item {
        margin: 0% 2% 2% 0%;
    }
}

.aircraftSummaryImages__item:first-of-type {
    display: block;
    flex-basis: 100%;
    margin: 0 0 4% 0;
}

@media screen and (min-width: 1000px) {
    .aircraftSummaryImages__item:first-of-type {
        margin: 0 0 2% 0;
    }
}

.aircraftSummaryImages__item:nth-of-type(2),
.aircraftSummaryImages__item:nth-of-type(3) {
    display: block;
    flex-basis: 48%;
    margin-bottom: 0;
}

@media screen and (max-width: 999px) {
    .aircraftSummaryImages__item:nth-of-type(3n+3) {
        margin: 0% 0% 4% 0%;
    }
}

.aircraftSummaryImages__item:nth-of-type(3n+4) {
    margin: 0% 0% 4% 0%;
}

@media screen and (min-width: 1000px) {
    .aircraftSummaryImages__item:nth-of-type(2),
    .aircraftSummaryImages__item:nth-of-type(3) {
        flex-basis: 38%;
        margin-bottom: 0;
    }
    .aircraftSummaryImages__item:nth-of-type(3n+4) {
        margin: 0% 0% 2% 0%;
    }
}

.aircraftSummaryImages__link {
    overflow: hidden;
    display: block;
    height: 0;
    padding-bottom: 56.25%;
}

.aircraftSummaryImages__image {
    -moz-transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.aircraftSummaryImages__link:hover .aircraftSummaryImages__image {
    transform: scale(1.1);
}

.aircraftSummaryImages__cta {
    display: flex;
    flex-basis: 100%;
    justify-content: center;
    align-self: stretch;
    border: 1.5px solid #d6b997;
    border-radius: 13px;
    text-align: center;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    text-decoration: none;
}

@media screen and (min-width: 1000px) {
    .aircraftSummaryImages__cta {
        flex-basis: 19.56%;
        padding: 0;
    }
}

@media screen and (min-width: 1326px) {
    .aircraftSummaryImages__cta {
        flex-basis: 19.46%;
    }
}

@media screen and (min-width: 1840px) {
    .aircraftSummaryImages__cta {
        flex-basis: 19.56%;
    }
}

.aircraftSummaryImages__cta:hover {
    background: #d6b997;
}

.aircraftSummaryImages__cta span {
    display: block;
    margin: auto;
    font-weight: 700;
    text-transform: uppercase;
}

.aircraftSummaryImages__cta:hover span {
    color: #fff !important;
}

.aircraftSummaryImages__count {
    display: block;
    margin-top: 8px;
}

.aircraftGalleryGrid {
    display: none;
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 92px auto;
}

@media screen and (min-width: 1600px) {
    .aircraftGalleryGrid {
        width: 77%;
    }
}

.aircraftGalleryGrid__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: auto;
}

.aircraftGalleryGrid__item {
    width: 48%;
    margin: 0 4% 4% 0;
    float: left;
    overflow: hidden;
    border-radius: 13px;
}

@media screen and (max-width: 999px) {
    .aircraftGalleryGrid__item:nth-of-type(2n+2) {
        margin: 0% 0% 4% 0%;
    }
}

@media screen and (min-width: 1000px) {
    .aircraftGalleryGrid__item {
        width: 19.2%;
        margin: 0 1% 1% 0;
    }
    .aircraftGalleryGrid__item:nth-of-type(5n+5) {
        margin: 0% 0% 1% 0%;
    }
}

.aircraftGalleryGrid__link {
    display: block;
    height: 0;
    padding-bottom: 56.25%;
}

.aircraftGalleryGrid__image {
}

.aircraftGalleryGrid__image {
    -moz-transition: transform 0.3s ease-out;
    -webkit-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.aircraftGalleryGrid__link:hover .aircraftGalleryGrid__image {
    transform: scale(1.1);
}

.aircraftBasicInfo {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .aircraftBasicInfo {
        width: 48%;
    }
}

.aircraftBasicInfo__breadcrumb {
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 24px;
}

.aircraftBasicInfo__model {
    font-size: 2.2em;
    margin: 0 0 32px 0;
}

@media screen and (min-width: 380px) {
    .aircraftBasicInfo__model {
        font-size: 2.4em;
    }
}

@media screen and (min-width: 600px) {
    .aircraftBasicInfo__model {
        font-size: 3em;
    }
}

.aircraftBasicInfo__numbers {
    margin-bottom: 48px;
}

.aircraftBasicInfo__number {
    display: block;
}

.aircraftBasicInfo__number--registration {
    margin-bottom: 12px;
}

.aircraftBasicInfo__number--serial {
}

.aircraftBasicInfoCard {
    display: table;
    padding: 32px 48px;
    box-sizing: border-box;
    list-style: none;
    margin: auto 0 48px 0;
    box-shadow: 0 0.2em 1em 0 rgb(0 0 0 / 15%);
    border-radius: 16px;
}

@media screen and (min-width: 1326px) {
    .aircraftBasicInfoCard {
        margin-bottom: 0;
    }
}

.aircraftBasicInfoCard__item {
    display: flex;
    margin-bottom: 28px;
}

.aircraftBasicInfoCard__item:last-of-type {
    margin-bottom: 0;
}

.aircraftBasicInfoCard__link {
    display: flex;
    text-decoration: none;
}

.aircraftBasicInfoCard__link:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 16px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.aircraftBasicInfoCard__link--walkthrough {
}

.aircraftBasicInfoCard__link--walkthrough:before {
    background-image: url('./assets/svgs/icon_play_ghost_gold.svg');
}

.aircraftBasicInfoCard__link--contact {
}

.aircraftBasicInfoCard__link--contact:before {
    background-image: url('./assets/svgs/icon_phone_ghost_gold.svg');
}

.aircraftBasicInfoCard__link--specSheet {
}

.aircraftBasicInfoCard__link--specSheet:before {
    background-image: url('./assets/svgs/icon_download_gold.svg');
}

.aircraftBasicInfoCard__link span {
    position: relative;
}

.aircraftBasicInfoCard__link span:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1.5px;
    bottom: -5px;
    left: 1px;
    background: #272727;
    -moz-transition: width 0.3s ease-out;
    -webkit-transition: width 0.3s ease-out;
    -o-transition: width 0.3s ease-out;
    transition: width 0.3s ease-out;
}

.aircraftBasicInfoCard__link:hover span:before {
    width: 100%;
}

.aircraftDescription {
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 72px auto;
}

@media screen and (min-width: 1326px) {
    .aircraftDescription {
        margin: 0 auto 100px auto;
    }
}

@media screen and (min-width: 1600px) {
    .aircraftDescription {
        width: 77%;
    }
}

.aircraftDescription__label {
    font-size: 1.6em;
    font-weight: 600;
    text-transform: none;
    margin: 0 auto 28px auto;
}

.aircraftDescription__line {
    width: 100%;
    height: 2px;
    margin: 0 auto 32px auto;
}

.aircraftDescription__textWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.aircraftDescription__text {
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .aircraftDescription__text {
        width: 49%;
    }
}

.aircraftMoreInfo {
    display: flex;
    flex-direction: column;
    width: 88%;
    max-width: 1440px;
    margin: 48px auto;
    border-radius: 13px;
    overflow: hidden;
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfo {
        flex-direction: row;
        min-height: 860px;
        margin: 100px auto;
        border-radius: 25px;
    }
}

@media screen and (min-width: 1600px) {
    .aircraftMoreInfo {
        width: 77%;
    }
}

.aircraftMoreInfoFilter {
    display: none;
    width: 100%;
}

@media screen and (min-width: 1000px) {
    .aircraftMoreInfoFilter {
        display: block;
    }
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfoFilter {
        width: 30%;
    }
}

.aircraftMoreInfoFilter__inner {
    width: 100%;
    margin: 72px auto 0 auto;
}

@media screen and (min-width: 1000px) {
    .aircraftMoreInfoFilter__inner {
        width: calc(100% - 100px);
        margin: 72px auto 48px auto;
    }
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfoFilter__inner {
        margin: 72px auto 0 auto;
    }
}

.aircraftMoreInfoFilter__heading {
    font-size: 1.6em;
    font-weight: 600;
    text-transform: none;
    margin: 0 auto 32px auto;
}

.aircraftMoreInfoFilter__line {
    width: 100%;
    height: 1.5px;
    margin: 0 auto 32px auto;
}

.aircraftMoreInfoFilterList {
    width: calc(100% + 50px);
    list-style: none;
    padding: 0;
    margin: 0;
}

.aircraftMoreInfoFilterList__item {
    display: table;
    margin-bottom: 21px;
    text-transform: uppercase;
    font-weight: 500;
    box-sizing: border-box;
    padding: 6px 16px;
    cursor: pointer;
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfoFilterList__item {
        display: block;
        padding: 6px 0 6px 16px;
    }
}

.aircraftMoreInfoFilterList__item:hover,
.aircraftMoreInfoFilterList__item--active {
    background: #fff;
    border-radius: 16px;
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfoFilterList__item:hover,
    .aircraftMoreInfoFilterList__item--active {
        border-radius: 16px 0 0 16px;
    }
}

.aircraftMoreInfoFilterList__item span {
    font-weight: inherit;
}

.aircraftMoreInfoFilterList__item:hover span,
.aircraftMoreInfoFilterList__item--active span {
    color: #000;
}

.aircraftMoreInfoContent {
    width: 100%;
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfoContent {
        width: 70%;
    }
}

.aircraftMoreInfoContent__inner {
    padding: 32px 28px;
    box-sizing: border-box;
}

@media screen and (min-width: 1000px) {
    .aircraftMoreInfoContent__inner {
        padding: 72px 92px;
    }
}

@media screen and (min-width: 1326px) {
    .aircraftMoreInfoContent__inner {
        padding: 72px 100px;
    }
}

.aircraftMoreInfoContent__content {
    margin-bottom: 64px;
}

@media screen and (min-width: 1000px) {
    .aircraftMoreInfoContent__content {
        display: none;
    }
}

.aircraftMoreInfoContent__heading {
    font-size: 1.6em;
    font-weight: 600;
    text-transform: none;
    margin: 0 auto 32px auto;
}

.aircraftMoreInfoContent__line {
    width: 100%;
    height: 1.5px;
    margin: 0 auto 32px auto;
}

.aircraftMoreInfoContent__text {

}

.aircraftMoreInfoContent__text ul {
    list-style: circle;
    list-style-position: outside;
    padding: 0 0 0 1em;
    margin: 0;
}

.aircraftMoreInfoContent__text ul li {
    margin-bottom: 21px;
}


/* Aircraft for Charter */

.pageSection__backgroundImage--aircraftCharterHero:after {
    background: rgba(0,0,0,0.45);
}

.pageContent--acassFleet {
    margin: 72px auto 48px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--acassFleet {
        margin: 100px auto 64px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--acassFleet {
        margin: 140px auto 100px auto;
    }
}

.aircraftPostCharterSpecs {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.aircraftPostCharterSpecs__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.aircraftPostCharterSpecs__label {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
}

.aircraftPostCharterSpecs__label:before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.aircraftPostCharterSpecs__label--passengers:before {
    background-image: url(./assets/svgs/icon_passengers_gold.svg);
}

.aircraftPostCharterSpecs__label--range:before {
    background-image: url(./assets/svgs/icon_plane_gold.svg);
}

.aircraftPostCharterSpecs__label--luggage:before {
    background-image: url(./assets/svgs/icon_luggage_gold.svg);
}

.aircraftPostCharterSpecs__value {
    font-weight: 500;
}

.pageContent--aircraftAvailableForCharter {
    margin: 72px auto 64px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--aircraftAvailableForCharter {
        margin: 100px auto 64px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--aircraftAvailableForCharter {
        margin: 140px auto 64px auto;
    }
}

.aircraftFilter--aircraftAvailableForCharter .alm-filter-nav li a {
    padding-left: 32px;
    padding-right: 32px;
}

@media screen and (min-width: 1400px) {
    .aircraftLoop--aircraftAvailableForCharter {
        margin-bottom: 140px;
    }
}

@media screen and (max-width: 999px) {
    .post--aircraft.available-for-charter {
        margin-bottom: 32px;
    }
}


/* Aircraft for Charter (Post Type) */

.aircraftSummaryDescription {

}

.aircraftBasicInfo__numbers--charter {
    margin-bottom: 24px;
}

.aircraftSummaryDescription__label {
    font-size: 1.3em;
    font-weight: 600;
    text-transform: none;
    margin: 0 auto 28px auto;
}

.aircraftSummaryDescription__line {
    width: 100%;
    height: 2px;
    margin: 0 auto 32px auto;
}

.aircraftSummaryDescription__text {
    margin-bottom: 48px;
    font-size: 0.92em;
    line-height: 1.6;
}

.aircraftCharterInfo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 88%;
    max-width: 1440px;
    margin: 0 auto 100px auto;
}

@media screen and (min-width: 1600px) {
    .aircraftCharterInfo {
        width: 77%;
    }
}

.aircraftCharterInfo__content {
    flex-basis: 100%;
    margin-bottom: 48px;
}

@media screen and (min-width: 720px) {
    .aircraftCharterInfo__content {
        flex-basis: 48%;
        margin-bottom: 140px;
    }
}

.aircraftMoreInfoContent__image--interiorOverview {
    border: 1px solid #e7e7e7;
}


/* Legal */

.pageContent--legalFold {
    width: 88%;
    max-width: 1440px;
    margin: 100px auto;
}

@media screen and (min-width: 1000px) {
    .pageContent--legalFold {
        margin: 140px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--legalFold {
        width: 77%;
    }
}

.pageContent__text--legalFold li {
    margin-bottom: 12px;
}


/* Job Opportunities */

.jobPostingsBlock {
    width: 88%;
    max-width: 1440px;
    margin: 100px auto;
}

@media screen and (min-width: 1000px) {
    .jobPostingsBlock {
        margin: 140px auto;
    }
}

@media screen and (min-width: 1326px) {
    .jobPostingsBlock {
        width: 77%;
    }
}

.jobPostings {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.jobPost {
    margin-bottom: 92px;
}

.jobPostInfo {
}

.jobPostInfo__title {
    font-size: 2em;
    margin: 0 0 4px 0;
}

.jobPostInfo__subTitle {
    font-size: 1.2em;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.jobPostInfo__location {
    font-weight: 500;
}

.jobPostDescription__description {
    margin-bottom: 32px;
}

.jobPostDescription__link {
}

.noJobs {
    text-align: center;
}


/* Newsletter */

.pageSection--newsletterHero {
    min-height: 520px;
}

@media screen and (min-width: 1000px) {
    .pageSection--newsletterHero {
        height: 100vh;
    }
}

@media screen and (min-width: 1140px) {
    .pageSection--newsletterHero {
        height: calc(70vh - 60px);
        max-height: 600px;
		height: calc(85vh - 60px);
        max-height: 745px;
    }
}

.pageSection__backgroundImage--newsletterHero:after {
    background: rgba(0,0,0,0.15);
}

.heroContent__heading--newsletterHero {
    text-transform: none;
}

.heroContent__heading--newsletterHero span {
    display: block;
    font-weight: inherit;
    /* color: #272727; */
}

.heroContent__text--newsletterHero {
    max-width: 960px;
    font-size: 1.3em;
}

.newsletterFold__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 88%;
    max-width: 460px;
    margin: 64px auto 100px auto;
    list-style: none;
    padding: 0;
}

@media screen and (min-width: 1000px) {
    .newsletterFold__list {
        flex-direction: row;
        justify-content: space-between;
        max-width: 100%;
        margin: 120px auto 200px auto;
    }
}

@media screen and (min-width: 1600px) {
    .newsletterFold__list {
        width: 1366px;
    }
}

@media screen and (min-width: 2300px) {
    .newsletterFold__list {
        width: 1600px;
    }
}

.newsletterFold__item {
    width: 100%;
    margin-bottom: 48px;
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .newsletterFold__item {
        width: 30%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1600px) {
    .newsletterFold__item {
        width: 25%;
    }
}

.newsletterFold__link {
    display: block;
    text-decoration: none;
    color: #272727;
}

.newsletterFold__image {
    margin: 0 auto 32px auto;
    box-shadow: 0 0.2em 0.5em 0 rgb(0 0 0 / 50%);
}

.newsletterFold__image--third {
    /* padding: 16px;
    box-sizing: border-box; */
}

.newsletterFold__text {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none;
}

@media screen and (min-width: 720px) {
    .newsletterFold__text {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 1000px) {
    .newsletterFold__text {
        font-size: 1em;
    }
}

.newsletterFold__text strong {
    font-weight: 600;
}

.newsletterFold__name {
    font-size: 1em;
    text-transform: none;
    color: #272727;
    text-align: left;
    margin: 0 0 8px 0;
}

@media screen and (min-width: 720px) {
    .newsletterFold__name {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 1000px) {
    .newsletterFold__name {
        font-size: 1em;
    }
}

.newsletterFold__role {
    text-align: left;
    margin: 0 0 16px 0;
}

@media screen and (min-width: 720px) {
    .newsletterFold__role {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 1000px) {
    .newsletterFold__role {
        font-size: 1em;
    }
}

.newsletterFold__contactCardButtons {
    display: flex;
    align-items: center;
}

.newsletterFold__btn {
    margin: 0;
}

.linkedInBtn--newsletterFold {
}

body.page-template-page--newsletter .footer__inner {
    display: none;
}


/* Empty Leg Flights */

.pageContent--emptyLegsFlights {
    margin: 72px auto 48px auto;
    text-align: center;
}

@media screen and (min-width: 600px) {
    .pageContent--emptyLegsFlights {
        margin: 100px auto 64px auto;
    }
}

@media screen and (min-width: 1326px) {
    .pageContent--emptyLegsFlights {
        margin: 140px auto 100px auto;
    }
}

.emptyLegs {
    width: 77%;
    max-width: 590px;
    margin: 0 auto 72px auto;
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .emptyLegs {
        width: 88%;
        max-width: 100%;
        margin: 0 auto 140px auto;
    }
}

@media screen and (min-width: 1600px) {
    .emptyLegs {
        width: 77%;
    }
}

.emptyLegs__inner {
    border-radius: 12px;
    overflow: hidden;
    /* padding: 12px; */
    box-sizing: border-box;
    margin-bottom: 16px;
    text-align: left;
}

@media screen and (min-width: 1000px) {
    .emptyLegs__inner {
        box-shadow: 0 0.2em 1em 0 rgb(0 0 0 / 8%);
        margin-bottom: 80px;
    }
}

.emptyLegs__list {
    list-style: none;
    padding: 0;
    margin: auto;
}

.emptyLegs__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #707070;
    margin: 0 auto 32px auto;
}

@media screen and (min-width: 600px) {
    .emptyLegs__item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.emptyLegs__item:last-of-type {
    border-bottom: none;
}

@media screen and (min-width: 1000px) {
    .emptyLegs__item {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        padding: 0 28px;
        margin: 0 auto 32px auto;
        border-bottom: none;
    }
}

.emptyLegs__item:last-of-type {
}

.emptyLegs__item--header {
    display: none;
    background: #d6b997;
    padding: 18px 28px;
    border: none;
}

@media screen and (min-width: 1000px) {
    .emptyLegs__item--header {
        display: flex;
    }
}

.emptyLegs__label {
    /* width: 16.67%; */
    width: 14%;
    margin-right: 2.67%;
    font-weight: 500;
    /* text-align: center; */
    /* border-right: 1px solid #272727; */
}

@media screen and (min-width: 1000px) {
    .emptyLegs__label {
        width: 14%;
        margin-right: 2.67%;
    }
}

.emptyLegs__label:last-of-type {
    border-right: 0;
}

.emptyLegs__label--date {
}

.emptyLegs__label--departure {
}

.emptyLegs__label--arrival {
}

.emptyLegs__label--model {
}

.emptyLegs__label--number {
}

.emptyLegs__label--seats {
}

.emptyLegs__valueWrap {
    width: 100%;
    margin-bottom: 16px;
    box-sizing: border-box;
    /* text-align: center; */
}

@media screen and (min-width: 600px) {
    .emptyLegs__valueWrap {
        width: 48%;
    }
}

@media screen and (min-width: 1000px) {
    .emptyLegs__valueWrap {
        width: 16.67%;
        width: 14%;
        margin-right: 2.67%;
        margin-bottom: initial;
    }
}

.emptyLegs__valueWrap--date {
}

.emptyLegs__valueWrap--departure {
}

.emptyLegs__valueWrap--arrival {
}

.emptyLegs__valueWrap--model {
}

.emptyLegs__valueWrap--number {
}

.emptyLegs__valueWrap--seats {
}

.emptyLegs__value {
    color: #272727;  
}

.emptyLegs__labelMobile {display: block;font-weight: 500;margin-bottom: 5px;}

@media screen and (min-width: 1000px) {
    .emptyLegs__labelMobile {
        display: none;
    }
}

.emptyLegs__link {

}


/*** PLUGIN STYLING ***/

/* GDPR plugin */

#cookie-law-info-bar {
    padding-top: 24px;
    padding-bottom: 24px;
}

#wt-cli-cookie-banner {
    font-size: 18px;
}


/* Photoswipe Masonry Gallery by Web Design Gold Coast */

.pswp__top-bar,
.pswp__caption {
    background: transparent !important;
}

.pswp__bg {
    background: rgba(0,0,0,0.95) !important;
}

.psgal figure.msnry_item {
    display: none !important;
}

.psgal figure.msnry_item:first-of-type {
    display: block !important;
    width: 100%;
    height: 520px;
    padding: 0;
    opacity: 0;
}

.pswp__item {

}

.pswp__item.opaque {
    opacity: 1 !important;
    -moz-transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 600px) {
    .pswp__img {
        margin-top: 0;
    }
}

.pswp__zoom-wrap {
    z-index: 999;
}

.pswp__button {
    /* background-color: #fff !important; */
}

.pswp__share--download,
.pswp__button--share {
    display: none !important;
}

.pswp__caption__center {
    text-align: center;
    max-width: 92%;
    margin: 12px auto 10px auto;
    font-size: 15px;
    padding: 0;
    line-height: 20px;
    color: #fff;
}

.pswp__button--arrow--right:before {
    right: 120px;
    transform: scale(2);
    background-color: transparent !important;
}

.pswp__button--arrow--left:before {
    left: 120px;
    transform: scale(2);
    background-color: transparent !important;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
    opacity: 1 !important;
}


/* Contact Form 7 */

.mc4wp-checkbox input {
	margin-right: 8px;
}

.wpcf7 {
    width: 100%;
    margin: auto !important;
}

.wpcf7 form {
    width: 100%;
    float: left;
}

.wpcf7 label {
    width: 100%;
    display: block;
}

.wpcf7-checkbox .wpcf7-list-item {
    margin: 0;
}

.wpcf7-checkbox input {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.wpcf7-checkbox span {
    font-size: 0.92em;
    line-height: 1.4;
    padding-right: 24px;
    box-sizing: border-box;
    color: #fff;
}

.wpcf7 p {
    margin: 0;
}

.wpcf7 figure {
    width: 100%;
	margin-bottom: 24px;
    float: left;
}

.wpcf7 figure.wpcf7_field_phone_country {
    width: 49%;
}

.wpcf7 figure.wpcf7_field_phone_area {
    width: 49%;
}

.wpcf7 figure.wpcf7_field_phone {
    width: 100%;
}

.wpcf7 figure.wpcf7_field_phone_country {
    margin: 0 2% 0 0;
}

@media screen and (min-width: 600px) {
    .wpcf7 figure.wpcf7_field_first_name,
    .wpcf7 figure.wpcf7_field_last_name,
    .wpcf7 figure.wpcf7_field_departure_airport,
    .wpcf7 figure.wpcf7_field_destination,
    .wpcf7 figure.wpcf7_field_departure_date,
    .wpcf7 figure.wpcf7_field_departure_time,
    .wpcf7 figure.wpcf7_field_email_charter,
    .wpcf7 figure.wpcf7_field_company {
        width: 49%;
    }
    .wpcf7 figure.wpcf7_field_phone_country {
        width: 25%;
    }
    .wpcf7 figure.wpcf7_field_phone_area {
        width: 25%;
    }
    .wpcf7 figure.wpcf7_field_phone {
        width: 46%;
    }
    .wpcf7 figure.wpcf7_field_first_name,
    .wpcf7 figure.wpcf7_field_email,
    .wpcf7 figure.wpcf7_field_departure_airport,
    .wpcf7 figure.wpcf7_field_departure_date,
    .wpcf7 figure.wpcf7_field_email_charter {
        margin: 0 2% 24px 0;
    }
    .wpcf7 figure.wpcf7_field_phone_area,
    .wpcf7 figure.wpcf7_field_phone_country {
        margin: 0 2% 24px 0;
    }
}

.wpcf7 figure h4 {
    margin: 0 0 8px 0;
    color: #fff;
}

.wpcf7 figure h4 span {
    color: #d6b997;
    color: red;
}

.wpcf7 input[type='submit'] {
    float: right;
    margin-bottom: 21px;
}

.wpcf7 input[type="file"] {
    /* color: #fff; */
}

.wpcf7 .ajax-loader {
    /* display: none !important; */ /* disables the ajax spinner for CF7 */
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7 .wpcf7-response-output {
    width: 100%;
    margin: 0;
    padding: 12px !important;
    box-sizing: border-box;
    float: left;
    text-align: center;
    border-color: #fff !important;
    color: #fff;
}

.wpcf7 .wpcf7-mail-sent-ok {
    border: 2px solid #398f14;
    color: #398f14;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    display: block;
    width: 100%;
    margin: 12px 0 16px 7px;
    float: left;
    box-sizing: border-box;
    text-align: left;
    text-decoration: underline;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-aborted {
    display: block !important;
    width: 100%;
    float: left;
    color: red;
    border-color: red;
    box-sizing: border-box;
    text-align: center;
}

.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
    display: block !important;
    width: 100%;
    margin-bottom: 32px;
    float: left;
    box-sizing: border-box;
    text-align: center;
}

.wpcf7 ::-webkit-input-placeholder { /* WebKit browsers */
    color: #000;
}

.wpcf7 :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #000;
}

.wpcf7 ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #000;
}

.wpcf7 :-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #000;
}

.formSubmitButtons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    float: left;
}

@media screen and (min-width: 600px) {
    .formSubmitButtons {
        flex-direction: row;
        gap: 16px;
    }
}


/* Contact Form 7 Captcha */

.cf7sr-g-recaptcha {
    margin-bottom: 24px;
    clear: both;
}

@media screen and (min-width: 600px) {
    .cf7sr-g-recaptcha {
        float: left;
    }
}


/* Lightslider.js */

.lSSlideOuter {
    margin: auto;
    /* width: 80%; */
    /* padding: 8vw 0 8vw 0; */
}

.lslide {

}

.lSSlideOuter .lSPager.lSpg {
    display: block;
    position: relative;
    z-index: 1;
}

.lSAction {

}

.lSAction > .lSPrev {
    display: block;
    width: 40px;
    height: 40px;
    margin-top: -24px;
    background-image: url('./assets/svgs/icon_plane_arrow_left.svg');
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    opacity: 1 !important;
    background-color: #fff;
    border-radius: 100%;
}

.lSAction > .lSNext {
    display: block;
    width: 40px;
    height: 40px;
    margin-top: -24px;
    background-image: url('./assets/svgs/icon_plane_arrow_right.svg');
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    opacity: 1 !important;
    background-color: #fff;
    border-radius: 100%;
}

.lSSlideOuter .lSPager.lSpg > li {
    padding: 0 10px;
}

.lSSlideOuter .lSPager.lSpg > li a {
    width: 12px;
    height: 12px;
    background-color: #000;
}


.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #ccc;
}


/* Simple Responsive Lightbox by WPGrand */

.lg-outer .lg-thumb-outer {
    display: none;
    background: rgba(13, 10, 10, 0.7);
}

.lg-outer .lg-item, .lg-outer .lg-img-wrap {
    height: 93%;
    top: 4%;
}

.lg-progress-bar .lg-progress {
    background-color: #fff !important;
}

#lg-download {
    display: none !important;
}