/* 
Theme Name: IMAGO
Version: 1.0
Author: PIXONAUTS Studio
Author URI: https://pixonauts.com/
*/

@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins/Poppins-Light.ttf) format('truetype');
    font-weight: 300;
    font-style: normal
}
@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins/Poppins-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins/Poppins-Italic.ttf) format('truetype');
    font-weight: 400;
    font-style: italic
}
@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins/Poppins-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal
}
@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins/Poppins-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal
}
@font-face {
    font-family: "Poppins";
    src: url(fonts/Poppins/Poppins-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal
}
@font-face {
    font-family: "EB Garamond";
    src: url(fonts/EB_Garamond/EBGaramond-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: "EB Garamond";
    src: url(fonts/EB_Garamond/EBGaramond-Italic.ttf) format('truetype');
    font-weight: 400;
    font-style: italic
}
@font-face {
    font-family: "EB Garamond";
    src: url(fonts/EB_Garamond/EBGaramond-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal
}
@font-face {
    font-family: "EB Garamond";
    src: url(fonts/EB_Garamond/EBGaramond-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal
}
@font-face {
    font-family: "EB Garamond";
    src: url(fonts/EB_Garamond/EBGaramond-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal
}
@font-face {
    font-family: "Roboto Mono";
    src: url(fonts/Roboto_mono/RobotoMono-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal
}

* {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    font-kerning: none;
    -webkit-text-rendering: optimizeSpeed;
    text-rendering: optimizeSpeed;
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
    -webkit-focus-ring-color: rgba(0, 0, 0, 0);
}

body,
html {
    width: 100%;
    min-height: 100%;
}
@media only screen and (min-width:712px) and (orientation:portrait) {
    html {
        font-size: 1.125rem
    }
}
@media only screen and (min-width:992px) {
    html {
        font-size: 1.125rem
    }
}
@media only screen and (min-width:1600px) {
    html {
        font-size: 1.1875rem
    }
}

body {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #0A2F24;
    background-color: #E5D9C4;
    position: relative;
    overflow: hidden;
    overflow-y: scroll;
}
body.lightbox-open,
body.noscroll {
    overflow: hidden
}

::selection {
    opacity: 1;
    color: #fff;
    background: #0A2F24;
}
::-moz-selection {
    opacity: 1;
    color: #fff;
    background: #0A2F24;
}

@media only screen and (orientation:landscape) {
    .d-landscape {
        display: block
    }
    .d-portrait {
        display: none
    }
}
@media only screen and (orientation:portrait) {
    .d-landscape {
        display: none
    }
    .d-portrait {
        display: block
    }
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
    top: 0;
}

.oh {
    overflow: hidden;
}

.smaller-text {
    font-size: .875rem;
}

.text-meta {
    font-size: .75rem;
    font-family: 'Roboto Mono', monospace;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 160%;
}

.aspect-21-9 {
    position: relative;
    display: block;
    padding-top: 42.86%;
}

.aspect-16-9 {
    position: relative;
    display: block;
    padding-top: 56.25%;
}

.aspect-3-2 {
    position: relative;
    display: block;
    padding-top: 66.666%;
}

.aspect-4-3 {
    position: relative;
    display: block;
    padding-top: 75%;
}

.aspect-6-5 {
    position: relative;
    display: block;
    padding-top: 83.333%;
}

.aspect-1-1 {
    position: relative;
    display: block;
    padding-top: 100%;
}
.aspect-3-4 {
    position: relative;
    display: block;
    padding-top: 133.333%;
}
@media only screen and (min-width:992px) {
    .aspect-lg-21-9 {
        padding-top: 42.86%!important;
    }
    .aspect-lg-16-9 {
        padding-top: 56.25%!important;
    }
    .aspect-lg-3-2 {
        padding-top: 66.666%!important;
    }
    .aspect-lg-4-3 {
        padding-top: 75%!important;
    }
    .aspect-lg-6-5 {
        padding-top: 83.333%!important;
    }
    .aspect-lg-1-1 {
        padding-top: 100%!important;
    }
    .aspect-lg-3-4 {
        padding-top: 133.333%!important;
    }
}

.line {
    background-color: #c6a15b;
    perspective-origin: 50%;
    transform-origin: 50%;
    width: 100%;
    height: 1px;
}

.bg-dark {
    background-color: #0A2F24!important;
    color: #fff!important;
}
.bg-norm {
    background-color: #E5D9C4!important
}
.bg-light {
    background-color: #f6f1e8!important;
}
.text-color-muted {
    color: #395049;
}
.text-size-large {
    font-size: 120%;
}

.row-s {
    margin-right: -5px;
    margin-left: -5px;
}
.row-s>[class*=col-] {
    padding-left: 5px;
    padding-right: 5px
}
.row-s.mb {
    margin-bottom: 10px
}
.row-s.mt {
    margin-top: 10px
}

.pt {
    padding-top: 30px;
}
.pb {
    padding-bottom: 30px;
}
.mt {
    margin-top: 30px;
}
.mb {
    margin-bottom: 30px;
}
.mt-sg {
    margin-top: 2rem;
}
@media only screen and (min-width:712px) {
    .mt-sg {
        margin-top: 3rem;
    }
}

.container-p,
.container-px {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}
.container-px {
    padding: 0 15px;
}

@media only screen and (min-width:712px) and (orientation:portrait) {
    .container-fluid,
    .container {
        padding-left: 30px!important;
        padding-right: 30px!important
    }
    .container-p {
        padding: 30px;
    }
    .container-px {
        padding: 0 30px;
    }
}
@media only screen and (min-width:992px) {
    .container-fluid,
    .container {
        padding-left: 30px!important;
        padding-right: 30px!important
    }
    .container-p {
        padding: 30px;
    }
    .container-px {
        padding: 0 30px;
    }
    .container {
        max-width: none;
    }
    .row-l {
        margin-right: -30px;
        margin-left: -30px;
    }
    .row-l>[class*=col-] {
        padding-left: 30px;
        padding-right: 30px
    }
    .row-s {
        margin-right: -10px;
        margin-left: -10px;
    }
    .row-s>[class*=col-] {
        padding-left: 10px;
        padding-right: 10px
    }
    .row-s.mb {
        margin-bottom: 20px
    }
    .row-s.mt {
        margin-top: 20px
    }
    .lg-sticky {
        position: sticky!important;
        top: 0;
    }
}
@media only screen and (min-width:1199px) {
    .container-fluid {
        padding-left: 60px!important;
        padding-right: 60px!important
    }
    .container {
        max-width: 1120px;
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
    .container-p {
        padding: 60px;
    }
    .container-px {
        padding: 0 60px;
    }
    .pt {
        padding-top: 60px;
    }
    .pb {
        padding-bottom: 60px;
    }
    .mt {
        margin-top: 60px;
    }
    .mb {
        margin-bottom: 60px;
    }
    .pl {
        padding-left: 60px;
    }
    .pr {
        padding-right: 60px;
    }
    .row-xl {
        margin-right: -30px;
        margin-left: -30px;
    }
    .row-xl>[class*=col-] {
        padding-left: 30px;
        padding-right: 30px
    }
    .ml-md-mi {
        margin-left: -60px;
    }
    .mr-md-mi {
        margin-right: -60px;
    }
    .maxw-xl-80 {
        max-width: 80%!important;
    }
}
@media only screen and (min-width:1439px) {
    .container {
        max-width: 1200px;
    }
    .col-xxl-1 {
        -ms-flex:0 0 8.333333%;
        flex:0 0 8.333333%;
        max-width:8.333333%
    }
    .col-xxl-2 {
        -ms-flex:0 0 16.666667%;
        flex:0 0 16.666667%;
        max-width:16.666667%
    }
    .col-xxl-3 {
        -ms-flex:0 0 25%;
        flex:0 0 25%;
        max-width:25%
    }
    .col-xxl-4 {
        -ms-flex: 0 0 33.333334%;
        flex: 0 0 33.333334%;
        max-width: 33.333334%;
    }
    .col-xxl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xxl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xxl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-xxl-8 {
        -ms-flex:0 0 66.666667%;
        flex:0 0 66.666667%;
        max-width:66.666667%
    }
    .col-xxl-9 {
        -ms-flex:0 0 75%;
        flex:0 0 75%;
        max-width:75%
    }
    .col-xxl-10 {
        -ms-flex:0 0 83.333333%;
        flex:0 0 83.333333%;
        max-width:83.333333%
    }
    .col-xxl-11 {
        -ms-flex:0 0 91.666667%;
        flex:0 0 91.666667%;
        max-width:91.666667%
    }
    .col-xxl-12 {
        -ms-flex:0 0 100%;
        flex:0 0 100%;
        max-width:100%
    }
    .d-xxl-block {
        display: block!important;
    }
    .d-xxl-none {
        display: none!important;
    }
    .d-xxl-flex {
        display:-ms-flexbox!important;
        display: flex!important;
    }
    .page-content .container-fluid {
        max-width: 100rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 6rem!important;
        padding-right: 6rem!important
    }
    .container-p {
        padding: 6rem;
    }
    .container-px {
        padding: 0 6rem;
    }
}
@media only screen and (min-width:1800px) {
    .container {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }
}

h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6 {
    font-family: "EB Garamond", serif;
    line-height: 1.2;
    font-weight: 400;
    color: inherit;
    margin-bottom: 1rem;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
h1,.h1 {
    font-size: 2.25rem;
}
h2,.h2 {
    font-size: 2rem;
}
h3,.h3 {
    font-size: 1.75rem;
}
h4,.h4 {
    font-size: 1.5rem;
}
h5,.h5 {
    font-size: 1.375rem;
}
h6,.h6 {
    font-size: 1.25rem;
}
.hero-heading {
    font-size: 2rem;
}
.hero-heading span {
    display: block;
    color: #fff;
}
.entry-title {
    line-height: 1.2;
    hyphens: auto;
    hyphenate-limit-chars: 14 3 4;
}

@media only screen and (min-width:712px) and (orientation:portrait) {
    h1,.h1 {
        font-size: 2.5rem;
    }
    h2,.h2 {
        font-size: 2.25rem;
    }
    h3,.h3 {
        font-size: 2rem;
    }
    h4,.h4 {
        font-size: 1.75rem;
    }
    h5,.h5 {
        font-size: 1.5rem;
    }
    .hero-heading {
        font-size: 2.5rem;
    }
}
@media only screen and (min-width:992px) {
    h1,.h1 {
        font-size: 2.5rem;
    }
    h2,.h2 {
        font-size: 2.25rem;
    }
    h3,.h3 {
        font-size: 2rem;
    }
    h4,.h4 {
        font-size: 1.75rem;
    }
    h5,.h5 {
        font-size: 1.5rem;
    }
    .hero-heading {
        font-size: 2.5rem;
    }
}
@media only screen and (min-width:1439px) {
    h2,.h2 {
        font-size: 2.375rem;
    }
    h3,.h3 {
        font-size: 2rem;
    }
}
@media only screen and (min-width:1600px) {
    h1,.h1,
    .hero-heading {
        font-size: 2.75rem;
    }
    h2,.h2 {
        font-size: 2.5rem;
    }
    h3,.h3 {
        font-size: 2.25rem;
    }
}

.sr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}

.wpcf7cf_steps-dots {
    display: none!important;
}
.wpcf7cf_multistep .step-title {
    font-size: .875rem
}
@media only screen and (min-width:992px) {
    .wpcf7cf_steps-dots {
        display: flex!important;
    }
}

.form-control,
.form-control-lg {
    font-size: .9375rem;
}

.form-control:focus {
    color: #0A2F24;
    background-color: #fff;
    border-color: #0A2F24;
    outline: 0;
    box-shadow: 0 0 0 .2rem #f4f8f8;
}

.form-control::-webkit-input-placeholder {
    color: #0A2F24;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #0A2F24;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #0A2F24;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #0A2F24;
    opacity: 1
}

.form-control::placeholder {
    color: #0A2F24;
    opacity: 1
}

.wpcf7-form *,
.wpcf7-form ::after,
.wpcf7-form ::before {
    box-sizing: border-box
}
.wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0 0 .3rem 0;
}
.wpcf7-textarea {
    height: 200px;
}
.form-check {
    position: relative;
    display: block;
    padding-left: 25px
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    color: #000;
}

.wpcf7-form-control-wrap {
    position: relative;
}
.form-check .wpcf7-list-item {
    position: relative;
    vertical-align: top;
    margin: 0;
}
.form-check .wpcf7-form-control-wrap {
    position: absolute;
    top: 0;
    left: 0;
}
.form-check-input {
    position: absolute;
    top: 0;
    left: 0;
    margin: 3px;
}
.form-check-label {
    position: relative;
    display: inline-block;
    text-align: left;
    vertical-align: top;
    margin: 0!important;
}
@media only screen and (min-width:712px) and (orientation:portrait) {
    .form-check-input {
        top: 1px;
    }
}
@media only screen and (min-width:992px) {
    .form-check-input {
        top: 3px;
    }
}

p.lead {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 400;
}

p.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

p:last-of-type {
    margin-bottom: 0;
}
.ctx p:last-of-type {
    margin-bottom: 1rem;
}

.ctx ul,
.ctx-2 ul {
    margin: 0 0 1rem;
    padding: 0 0 0 1rem;
}
.ctx ol,
.ctx-2 ol {
    margin: 0 0 1rem;
    padding: 0 0 0 1.75rem;
}

p + ul,
p + ol {
    margin-top: 1rem!important;
}

.biglist ul li,
.biglist ol li {
    margin-bottom: 1rem!important
}

.list {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}
.list-item {
    grid-column-gap: .5rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

b, strong {
    font-weight: 600;
}

.smart-hyphens {
    hyphens: auto;
}

@media only screen and (min-width:992px) {
    .column-2 {
        column-count: 2;
        column-gap: 60px;
    }
    .column-2 p,
    .column-2 ul {
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid;
        break-inside: avoid;
    }
    p.lead {
        font-size: 1.5rem;
    }
}
@media only screen and (min-width:1199px) {
    .small-text p {
        font-size: .875rem
    }
}

.wpcf7cf_prev,
.wpcf7cf_next {
    color: #fff;
    background-color: #bf053c;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 1px solid #bf053c;
}
@media only screen and (max-width:479px) {
    .wpcf7cf_prev,
    .wpcf7cf_next {
        padding: .5rem;
        font-size: .875rem;
    }
}
.wpcf7cf_prev:hover,
.wpcf7cf_next:hover {
    color:#fff;
    background-color:#003b77;
    border-color:#003b77
}
.wpcf7cf_prev.focus,.wpcf7cf_prev:focus,
.wpcf7cf_next.focus,.wpcf7cf_next:focus {
    color:#fff;
    background-color:#003b77;
    border-color:#003b77;
    box-shadow:0 0 0 .2rem rgba(38,143,255,.5)
}
.wpcf7cf_step_controls .disabled {
    opacity: 0!important;
}

@media only screen and (min-width:992px) {
    .column-2 {
        column-count: 2;
        column-gap: 60px;
    }
    .column-2 p,
    .column-2 ul {
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid;
        break-inside: avoid;
    }
}

.smart-hyphens {
    hyphens: auto;
}

figure {
    margin: 0;
}

.table td, .table th {
    padding: 0 0 .75rem;
    border-top: 0;
}
.table td.summary-table-first-col {
    padding-right: .75rem;
}

.highlight {
    color: red;
}
.hideMe {
    display: none;
}

@media only screen and (min-width:576px) {
    .w-sm-auto {
        width: auto!important;
    }
}
@media only screen and (min-width:711px) {
    .w-md-auto {
        width: auto!important;
    }
}
@media only screen and (min-width:992px) {
    .w-lg-auto {
        width: auto!important;
    }
}
@media only screen and (min-width:1199px) {
    .w-xl-auto {
        width: auto!important;
    }
}

.nowrap {
    white-space: nowrap;
}

img {
    max-width: 100%;
}

.img-overlay {
    z-index: 1;
    background-color: #c6a15b;
    opacity: .1;
    position: absolute;
    inset: 0%;
}

figure img {
    width: 100%;
    height: auto
}

.img-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.img-wrap img {
    position: relative;
    width: 100%;
    height: auto;
    transition: transform .9s;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1
}
.no-touchevents a:hover .img-wrap img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.entry-content .wp-video {
    display: block;
    margin: 0 auto 1rem;
}
.yt-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}
.media-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.media-wrapper.abs {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}
.media-wrapper.fh {
    height: 50vh;
    min-height: 360px;
}
@media only screen and (min-width:992px) {
    .media-wrapper.fh {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
    .media-wrapper.fh.left {
        left: 0;
        right: unset;
    }
}
.media-wrapper video {
    width: 100%;
    height: auto;
}
.media-wrapper .img,
.media-wrapper .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}
.play-video {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    -webkit-transition: transform .3s;
    transition: transform .3s;
}
.no-touchevents .play-video:hover {
    -webkit-transform: scale(1.25);
    transform: scale(1.25)
}
.play-video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 85px;
    height: 85px;
}
.play-video-border {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 3px solid #fff!important;
}
.play-video-badge .playicon {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.play-video-badge .playicon svg {
    width: 20px;
    height: 20px;
}

.video-overlay {
    width: 100%;
    height: 100%;
    background-color: #0A2F24;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: -webkit-transform 0.5s ease-in-out .3s;
    transition: transform 0.5s ease-in-out .3s;
}
.video-overlay.video-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.5s ease-in-out 0s;
    transition: transform 0.5s ease-in-out 0s;
}

.video-overlay .video-holder {
    position: absolute;
    overflow: hidden;
    background-color: #0A2F24;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in 0s;
    transition: opacity 0.3s ease-in 0s;
}
.video-overlay.video-active .video-holder {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in .7s;
    transition: opacity 0.3s ease-in .7s;
}

.video-overlay .video-holder .fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.video-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    z-index: 50;
    cursor: pointer;
    background: rgba(0,17,46,.15);
}

.video-close::after,
.video-close::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 20px;
    width: 2px;
    height: 30px;
    background-color: #fff;
    z-index: 10;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s cubic-bezier(0.16, 0.01, 0.77, 1);
    transition: all .3s cubic-bezier(0.16, 0.01, 0.77, 1);
}

.video-close::before {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.video-close:hover::after {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.video-close:hover::before {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media only screen and (min-width: 992px) {
    .play-video-badge {
        width: 120px;
        height: 120px;
    }
    .play-video-badge .playicon svg {
        width: 25px;
        height: 25px;
    }
    .video-close {
        top: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
    }
    .video-close::after,
    .video-close::before {
        top: 5px;
        left: 30px;
        height: 50px;
    }
}

.badge {
    width: 40px;
    height: 40px;
    border: 1px solid #c6a15b;
    border-radius: 50%;
    background-color: #f4f8f8;
    color: #0A2F24;
    text-align: center;
    justify-content: center;
    align-items: center;
    line-height: 100%;
    transition: background-color .2s,border .2s;
    display: flex;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: cover;
    z-index: 0;
}
.bg-image.bg-top {
    background-position: top center;
}
img.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}
.full-img {
    width: 100%;
}
.full-height {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}
.cover-lg-img {
    width: 100%;
    height: auto;
}
@media only screen and (min-width:992px) {
    .lg-full-height {
        min-height: 100vh!important;
        min-height: calc(var(--vh, 1vh) * 100)!important;
    }
    .cover-lg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;';
    }
}

.text-outline {
    font-feature-settings: none;
    font-variant-ligatures: none;
    -webkit-text-stroke-color: currentColor;
    -webkit-text-stroke-width: 1.5px;
    font-style: italic;
    -webkit-text-fill-color: transparent;
}

a {
    color: #0A2F24;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
a:hover {
    color: #0A2F24;
    text-decoration: none;
}
a:focus, a.focus, button:focus, button.focus {
  outline: 0;
}
.ctx a:not(.gallery-item a):not(.post-image-link) {
    color: #0A2F24;
    border-bottom: 1px solid #0A2F24;
}
.ctx a:not(.gallery-item a):hover,
.ctx a:not(.post-image-link):hover {
    color: #0A2F24;
    border-bottom-color: transparent;
}
.ctx-2 a {
    color: #007bff;
}
.ctx-2 a:hover {
    color: #0056b3;
}
.button-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: inline-flex;
}
.button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    font-weight: 400;
    padding: .5rem 1.25rem;
    border-radius: 8px;
    text-align: center;
    color: #fff!important;
    background-color: #0A2F24;
    border: 1px solid #0A2F24;
}
.button.inverse {
    border-color: #fff;
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}
.button.outline {
    color: #0A2F24!important;
    background-color: transparent;
    border: 1px solid #0A2F24;
}
.button.white {
    color: #0A2F24!important;
    background-color: #fff;
    border: 1px solid #fff;
}
.button.white.outline {
    color: #fff!important;
    background-color: transparent;
    border: 1px solid #fff;
}
.button-text {
    position: relative;
    font-size: .875rem;
    letter-spacing: 0.03em;
    line-height: 24px;
    overflow: hidden;
    width: auto;
    transition: transform .2s ease-out
}
.button-text.w-icon {
    padding-right: 25px;
}
.button-text.w-icon::after {
    font-family: 'fontello';
    font-size: 95%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
}
.button-text.read::after {
    content: '\e810';
}
.button-text.download::after {
    content: '\e801';
}
.button-text span {
    position: relative;
    display: inline-block;
    -webkit-transition: -webkit-transform .2s;
    transition: transform .2s;
    width: auto;
    text-align: center;
    transform-origin: 100% 0%
}
.button-text span::before {
    position: absolute;
    width: auto;
    top: 100%;
    left: 0;
    content: attr(data-hover)
}
.button:hover .button-text span,
a:hover .button-text span {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transform-origin: 0% 0%
}

.button-wrap-text {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    line-height: 120%;
    text-decoration: none;
    display: inline-block;
    position: relative;
    max-width: 100%;
}
.button-text-inner {
    font-size: .875rem;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    overflow: hidden;
}
.button-text-line {
    height: 1px;
    background-color: #0A2F24;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: .3s ease;
}
.button-wrap-text:hover .button-text-line {
    width: 0;
}
@media only screen and (min-width:712px) and (orientation:portrait) {
    .button-text-inner {
        font-size: .75rem;
    }
}
@media only screen and (min-width:992px) {
    .button-text-inner {
        font-size: .75rem;
    }
}

.link_wrap {
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #0A2F24;
}
.link_wrap .link_text {
    display: inline-block;
    vertical-align: top;
    padding: 0 0 0 35px;
    position: relative;
    color: #0A2F24;
    text-decoration: none;
}
.link_wrap .link_text > .text {
    display: block;
    line-height: 1.4;
    animation: ctaArrowTextStart .45s cubic-bezier(.23,.46,.4,1) forwards;
}
.link_wrap:hover .link_text > .text {
    animation: ctaArrowTextEnd .45s cubic-bezier(.23, .46, .4, 1) forwards
}
.link_wrap .link_text svg {
    position: absolute;
    left: 20px;
    top: .7rem;
    width: 6px;
    stroke: #0A2F24;
    animation: ctaArrowSVGStart .45s cubic-bezier(.23,.46,.4,1) forwards;
}
.link_wrap:hover .link_text svg {
    animation: ctaArrowSVGEnd .45s cubic-bezier(.23, .46, .4, 1) forwards
}
.link_wrap .link_text svg polyline {
    stroke: #0A2F24;
    stroke-dashoffset: 140px;
    stroke-dasharray: 140px;
    animation:ctaArrowEnd .45s cubic-bezier(.23,.46,.4,1) forwards
}
.link_wrap:hover .link_text svg polyline {
    animation: ctaArrowStart .45s ease .25s forwards
}
.link_wrap.fuar .link_text svg polyline {
    animation: none;
    stroke-dashoffset: 0;
    stroke-dasharray: 0;
}
.link_wrap.fuar:hover .link_text svg polyline {
    animation: ctaArrowStart2 .8s ease forwards
}
.link_wrap .link_text .line {
    height: 1px;
    width: 20px;
    position: absolute;
    content: '';
    left: 0;
    display: block;
    top: .7rem;
    transform-origin: left;
    background-color: #0A2F24;
    transform: translateY(calc(-50% + .5px)) translateZ(0);
    animation: ctaArrowLineStart .45s cubic-bezier(.23,.46,.4,1) forwards;
}
.link_wrap:hover .link_text .line {
    animation: ctaArrowLineEnd .45s cubic-bezier(.23, .46, .4, 1) forwards
}
.link_wrap.white,
.link_wrap.white .link_text {
    color: #fff;
}
.link_wrap.wb.white .link_text {
    border-color: #fff!important;
}
.link_wrap.white .link_text svg,
.link_wrap.white .link_text svg polyline {
    stroke: #fff;
}
.link_wrap.white .link_text .line {
    background-color: #fff;
}


@keyframes ctaArrowTextStart {
    0% {
        transform:translateX(3px) translateZ(0)
    }
    100% {
        transform:translateX(0) translateZ(0)
    }
}
@keyframes ctaArrowTextEnd {
    0% {
        transform:translateX(0) translateZ(0)
    }
    100% {
        transform:translateX(3px) translateZ(0)
    }
}
@keyframes ctaArrowSVGStart {
    0% {
        transform:translateY(calc(-50% + .5px)) translateX(0) translateZ(0)
    }
    100% {
        transform:translateY(calc(-50% + .5px)) translateX(-3px) translateZ(0)
    }
}
@keyframes ctaArrowSVGEnd {
    0% {
        transform:translateY(calc(-50% + .5px)) translateX(-3px) translateZ(0)
    }
    100% {
        transform:translateY(calc(-50% + .5px)) translateX(0) translateZ(0)
    }
}
@keyframes ctaArrowLineStart {
    0% {
        transform-origin:left;
        transform:scaleX(1.2) translateY(calc(-50% + .5px)) translateZ(0)
    }
    100% {
        transform:scaleX(1) translateY(calc(-50% + .5px)) translateZ(0)
    }
}
@keyframes ctaArrowLineEnd {
    0% {
        transform-origin:right;
        transform:scaleX(1) translateY(calc(-50% + .5px)) translateZ(0)
    }
    50% {
        transform-origin:right;
        transform:scaleX(0) translateY(calc(-50% + .5px)) translateZ(0)
    }
    51% {
        transform-origin:left
    }
    100% {
        transform:scaleX(1.2) translateY(calc(-50% + .5px)) translateZ(0);
        transform-origin:left
    }
}
@keyframes ctaArrowStart {
    0% {
        stroke-dashoffset:140px;
        stroke-dasharray:140px
    }
    100% {
        stroke-dasharray:140px;
        stroke-dashoffset:10px
    }
}
@keyframes ctaArrowEnd {
    0% {
        stroke-dashoffset:10px;
        stroke-dasharray:150px 150px
    }
    40% {
        opacity:1
    }
    100% {
        opacity:0;
        stroke-dashoffset:-53px;
        stroke-dasharray:1px 150px
    }
}
@keyframes ctaArrowStart2 {
    0% {
        stroke-dashoffset:0;
        stroke-dasharray:0
    }
    50% {
        stroke-dashoffset:140px;
        stroke-dasharray:140px
    }
    100% {
        stroke-dasharray:140px;
        stroke-dashoffset:10px
    }
}

.pswp__bg {
    background: rgba(0,0,0,0.7);
}

.alignleft {
    float: left
}
.wp-caption.alignleft {
    max-width: 50%;
    margin: 8px 20px 10px 0;
}

.alignright {
    float: right
}
.wp-caption.alignright {
    max-width: 50%;
    margin: 8px 0 10px 20px;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto
}

img.alignleft {
    margin: 8px 25px 15px 0;
    max-width: 50%;
    height: auto
}

img.alignright {
    margin: 8px 0 15px 25px;
    max-width: 50%;
    height: auto
}

img.aligncenter {
    height: auto;
    margin: 10px auto;
    clear: both;
    display: block
}

img.alignnone {
    height: auto;
    margin: 10px 0;
}

.wp-caption-text {
    font-size: 12px;
    margin: 10px 0!important
}

@media only screen and (max-width:480px) {
    img.alignleft,
    img.alignright {
        margin: 0 0 1rem;
        width: 100%;
        max-width: 100%;
    }
}

.gallery {
    margin: 1rem 0!important
}
.gallery-item {
    margin: 0!important;
    position: relative;
    overflow: hidden;
}
.gallery-item a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.gallery-item a::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.gallery-item a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%!important;
    max-width: none!important;
    height: 100%!important;
    border-color: #fff!important;
    object-position: center;
    object-fit: cover;
}

.label,
.label-inverse {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 75%;
    letter-spacing: .5px;
    padding: 6px 10px;
    border-radius: 6px;    
}
.label {
    color: #0A2F24;
    background-color: #fff;
    border: 1px solid #c6a15b;
}
.label-inverse {
    color: #fff;
    background-color: rgba(255,255,255,.1);
    border: 1px solid rgba(255, 255, 255, .1);
}

.has-animation {
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
} 
.has-animation.image_clip_right {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
}
.has-animation.image_clip_left {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
}
.has-animation.image_clip_right.animated {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}
.has-animation.image_clip_left.animated {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
} 
.has-animation.fade-up {
    opacity: 0;
    transform: translateY(60px)
}
.has-animation.fade-up.animated {
    opacity: 1;
    transform: translateY(0)
}
.has-animation.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
}
.has-animation.fade-in-left-big {
    opacity: 0;
    transform: translateX(-800px);
}
.has-animation.fade-in-left.animated,
.has-animation.fade-in-left-big.animated {
    opacity: 1;
    transform: translateX(0)
}
.has-animation.fade-in-right {
    opacity: 0;
    transform: translateX(800px)
}
.has-animation.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0)
}
.has-animation.has-scale {
    opacity: 0;
    transform: translateY(0) scale(1.05);
    transform-origin: 50% 0;
    will-change: transform
}
.has-animation.has-scale-vertical {
    opacity: 0;
    transform: translateY(0) scaleY(1.1);
    transform-origin: 50% 0;
    will-change: transform
}
.has-animation.has-scale-vertical.animated {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}
.has-animation.has-cover {
    opacity: 1;
    transform: translateY(0);
    overflow: hidden
}
.has-animation.has-cover::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    -webkit-transition: .6s cubic-bezier(.54, .49, .2, 1.01);
    -o-transition: .6s cubic-bezier(.54, .49, .2, 1.01);
    transition: .6s cubic-bezier(.54, .49, .2, 1.01)
}
.has-animation.has-cover.animated::after {
    width: 0
}
.has-animation.has-cover img {
    display: block;
    margin: 0 auto;
    opacity: 1;
    transform: scale(1.05);
    -webkit-transition: .6s cubic-bezier(.54, .49, .2, 1.01);
    -o-transition: .6s cubic-bezier(.54, .49, .2, 1.01);
    transition: .6s cubic-bezier(.54, .49, .2, 1.01)
}
.has-animation.has-cover.animated img {
    opacity: 1;
    transform: scale(1)
}

#pageloader {
    background: #0A2F24;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4900
}
.loader-item {
    position: absolute;
    width: 44px;
    height: 44px;
    font-size: 44px;
    line-height: 44px;
    margin: -22px 0 0 -22px;
    top: 50%;
    left: 50%;
    text-align: center;
    color: #fff
}

.overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    left: 0;
    top: 70px;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 500;
    -webkit-transition: all .5s;
    transition: all .5s
}
body.menu-open .overlay {
    visibility: visible;
    opacity: 1;
}

.u-header {
    position: relative;
    width: 100%;
    z-index: 1200;
    overflow: visible;
    border-bottom: 1px solid;
    border-color: rgba(12,30,33,.15);
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.home .u-header {
    border-color: transparent;
}
.u-header-wrapper {
    height: 70px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.u-header .logo {
    position: relative;
    display: block;
    height: 100%;
    padding: 10px 0;
    z-index: 10;
}
.u-header .logo div {
    display: block;
    height: 100%;
    width: auto;
}
.u-header .logo div span.name {
    display: block;
    vertical-align: bottom;
    font-family: "EB Garamond", serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}
.u-header .logo div span.description {
    display: block;
    vertical-align: top;
    line-height: 1;
    font-size: 12px;
    margin-top: 5px;
}
.u-header .logo .dark-logo {
    display: flex;
    align-items: center;
}
.u-header .logo .white-logo {
    display: none;
    color: #fff;
}
.home .u-header .logo .dark-logo {
    display: none;
}
.home .u-header .logo .white-logo {
    display: flex;
    align-items: center;
}
.u-header .logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}
.u-header .button {
	margin-left: .75rem;
}
.home .u-header .button {
    border-color: #fff;
    background-color: #ffffff0d;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}
#main-nav .navbar-nav > .nav-item {
    margin-left: 1.5rem;
}
#main-nav .navbar-nav > .nav-item:first-child {
    margin-left: 1rem;
}
#main-nav .navbar-nav .nav-link {
    letter-spacing: 0.03em;
    opacity: 1;
    font-size: .875rem;
    font-weight: 400;
    padding: 10px 0;
}
.home #main-nav .navbar-nav .nav-link {
    color: #fff;
}
#mobile-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
    overflow-y: scroll;
    display: none;
    pointer-events: none;
    z-index: 1000;
}
body.menu-open #mobile-menu {
    display: block;
}
.mobile-menu-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    display: block;
    overflow: hidden;
    padding: 1.5rem 0;
    background-color: #0d1f21;
    opacity: 0;
    pointer-events: all;
    -webkit-transform: -webkit-translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity .3s ease-in-out, -webkit-transform .5s ease;
    transition: opacity .3s ease-in-out, transform .5s ease;
}
.mobile-menu-wrapper.open {
    opacity: 1;
    -webkit-transform: -webkit-translateY(0);
    transform: translateY(0);
}
.mobile-menu-nav {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    display: flex;
}
.mobile-menu-nav-link {
    width: 100%;
    letter-spacing: 0.03em;
    justify-content: space-between;
    align-items: center;
    line-height: 160%;
    text-decoration: none;
    display: flex;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    color: #fff;
  }

.burger-menu {
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: -10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.burger-menu > div {
    position: relative;
    width: 30px;
    height: 32px;
}
.burger-menu b {
    -webkit-transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out, border-color .1s ease;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out, border-color .1s ease;
    position: absolute;
    display: block;
    width: 30px;
    height: 0;
    border-top: 2px solid #0A2F24
}
.home .burger-menu b {
    border-top-color: #ffffff
}
.burger-menu b:nth-child(1) {
    top: 5px;
    left: 0;
}
.burger-menu b:nth-child(2) {
    top: 15px;
    left: 0;
}
.burger-menu b:nth-child(3) {
    top: 25px;
    right: 0;
}
body.menu-open .burger-menu b:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
body.menu-open .burger-menu b:nth-child(2) {
    opacity: 0;
    width: 0;
}
body.menu-open .burger-menu b:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media only screen and (min-width:712px) and (orientation:portrait) {
    .u-header-wrapper {
        height: 80px;
    }
    .u-header .logo {
        padding: 15px 0;
    }
    .u-header .logo div span.name {
        font-size: 36px;
        margin-top: -3.5px;
    }
    .u-header .logo div span.description {
        font-size: 13px;
        margin-top: 5px;
    }
}

@media only screen and (min-width:992px) {
    #main-nav,
    #main-nav .navbar-nav,
    #main-nav .navbar-nav > .nav-item {
        position: static;
    }
    .u-header-wrapper {
        height: 80px;
    }
    #main-nav,
    #navbarCollapse,
    #main-nav .navbar-nav,
    #main-nav .navbar-nav > .nav-item {
        height: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
    #main-nav .navbar-nav .nav-link {
        height: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        position: relative;
    }
    .u-header .logo {
        padding: 15px 0;
    }
    .u-header .logo div span.name {
        font-size: 36px;
        margin-top: -3.5px;
    }
    .u-header .logo div span.description {
        font-size: 13px;
        margin-top: 5px;
    }
}
@media only screen and (min-width:1199px) {
    .u-header-wrapper {
        height: 90px;
    }
    .u-header .logo {
        padding: 17px 0;
    }
    .u-header .logo img {
        height: 56px;
    }
    .u-header .logo div span.name {
        font-size: 40px;
        margin-top: -2.5px;
    }
    .u-header .logo div span.description {
        font-size: 14px;
        margin-top: 5px;
    }
}
@media only screen and (min-width:1439px) {
    .burger-menu {
        display: none;
    }
}


#main {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity .3s cubic-bezier(0, .85, .57, .97);
    transition: opacity .3s cubic-bezier(0, .85, .57, .97)
}
body.lightbox-open #main {
    opacity: .35
}
.page-content {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 70px);
    padding-top: 20px;
}
@media only screen and (max-width:991px) {
    .page-content {
        overflow: hidden;
    }
}
.home .page-content {
    padding-top: 0;
}
.sidebar-block {
    background-color: #eeeff0;
    padding: 20px 15px 30px;
    margin-bottom: 30px;
    position: relative;
    border-radius: 0 0 30px 0;
}
.sidebar-block p,
.sidebar-block ul li,
.sidebar-block ol li {
    font-size: 1rem;
}
.sidebar-block .block-title {
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: block;
    padding: 0 0 .25rem 0;
    border-bottom: 1px solid #bf053c;
    margin-bottom: 1rem;
}

@media only screen and (min-width:992px) {
    .page-content {
        min-height: calc(100vh - 80px);
    }
    .sidebar-block {
        padding: 25px 25px 35px;
        border-radius: 0 0 60px 0;
        margin-bottom: 40px;
    }
}
@media only screen and (min-width:1199px) {
    .page-content {
        min-height: calc(100vh - 90px);
    }
}

.hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #0A2F24;
    margin-top: -70px;
    padding-top: 90px;
    color: #bcbdbf;
}
@media only screen and (min-width:712px) and (orientation:portrait) {
    .hero {
        padding-top: 100px;
        margin-top: -80px;
    }
}
@media only screen and (min-width:992px) {
    .hero {
        padding-top: 0;
        margin-top: -80px;
    }
    .hero .row {
        padding-top: 35px;
    }
}
@media only screen and (min-width:1199px) {
    .hero {
        margin-top: -90px;
    }
    .hero .row {
        padding-top: 45px;
    }
}

#scrollBackgroundWrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    min-height: 360px;
}
.scrollBackgroundHolder {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.scrollBackgroundHolder:first-child {
    opacity: 1!important;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.slider-wrapper.fh {
    height: 50vh;
    min-height: 360px;
}
.slider-wrapper .slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 50% 15px 15px;
    color: #fff;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75) 0, rgba(0, 0, 0, .25) 50%, rgba(0, 0, 0, 0) 100%);
}
.slider-wrapper.fh .fade-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider-wrapper.fh .fade-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}
@media only screen and (min-width:712px) {
   .slider-wrapper .slider-overlay {
       padding: 50% 30px 30px;
    } 
}
@media only screen and (min-width:992px) {
    #scrollBackgroundWrapper {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
    .slider-wrapper.fh {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
    .slider-wrapper.fh.left {
        left: 0;
        right: unset;
    }
    .slider-wrapper.fh.lg-sticky {
        width: 100%;
    }
}
@media only screen and (min-width:1199px) {
    .slider-wrapper.fh {
        width: 41.666667%;
    }
}
@media only screen and (min-width:1600px) {
   .slider-wrapper .slider-overlay {
       padding: 50% 40px 40px;
    } 
}

.section {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    z-index: 1;
}
.section-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    flex-direction: column;
    display: grid;
}
.section-grid-right {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    flex-direction: column;
    display: flex;
}
.grid-card {
    position: relative;
    background-color: #fff;
    border: 1px solid #c6a15b;
    padding: 15px;
    margin-bottom: 1.5rem;
}
.grid-card:last-of-type {
    margin-bottom: 0;
}
@media only screen and (min-width:712px) {
    .grid-card {
        padding: 30px;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width:992px) {
    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-grid {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        flex-direction: row;
        grid-template-rows: auto;
        grid-template-columns: 200px 1fr;
    }
}
@media only screen and (min-width:1199px) {
    .section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .section-grid-right {
        grid-column-gap: 3rem;
        grid-row-gap: 3rem;
        display: grid;
    }
    .section-grid-right {
        grid-column-gap: 4rem;
        grid-row-gap: 4rem;
        flex-direction: row;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
        grid-area: span 1/span 1/span 1/span 1;
    }
    .grid-card {
        padding: 3rem;
        margin-bottom: 3rem;
    }
}


.accordion {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden
}
.accordion-item {
    border-bottom: 1px solid rgba(136,136,136,.35);
    padding-top: 20px;
    padding-bottom: 20px;
}
.accordion-title {
    cursor: pointer;
    padding-right: 50px;
    margin-bottom: 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.accordion-title span {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #c6a15b;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}
.accordion-title span::before {
    content: '';
    width: 2px;
    height: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -7px;
    margin-left: -1px;
    background: #141b25;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}
.accordion-title span::after {
    content: '';
    width: 14px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -7px;
    background: #141b25;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}
.accordion-title.active span::before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease
}
.accordion-content {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    display: none;
}
.accordion-content.open {
    display: block
}
@media only screen and (min-width:712px) {
    .accordion-title span::before {
        height: 16px;
        margin-top: -8px;
    }
    .accordion-title span::after {
        width: 16px;
        margin-left: -8px;
    }
}


.icon-box {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-left: 55px;
}
.icon-box img {
    position: absolute;
    top: 0;
    left: 0;
    height: 45px;
    width: auto;
}
.icon-title {
    font-family: "EB Garamond", serif;
    font-size: 1.25rem;
    padding: 5px 0 15px
}

@media only screen and (min-width:712px) {
    .icon-box {
        padding-left: 65px;
    }
    .icon-title {
        padding: 10px 0 20px
    }
    .icon-box img {
        height: 50px;
    }
}
@media only screen and (min-width:1199px) {
    .icon-box {
        padding-left: 75px;
    }
    .icon-box img {
        height: 60px;
    }
    .icon-title {
        padding: 13px 0 20px
    }
    .icon-box p {
        font-size: .875rem
    }
}
@media only screen and (min-width:1600px) {
    .icon-box {
        padding-left: 90px;
    }
    .icon-box img {
        height: 70px;
    }
    .icon-title {
        padding: 18px 0 30px
    }
}


.swiper-horizontal > .swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}
.swiper-pagination-bullet:only-child {
    visibility: hidden;
}
.swiper-pagination.white .swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    vertical-align: middle;
}
.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
}
.swiper-fade .swiper-slide img {
    opacity: 0;
}
.swiper-fade .swiper-slide.swiper-slide-active img {
    opacity: 1;
}

table,
table.vita {
    border-collapse: collapse;
    margin-top: 1rem
}
table td,
table.vita td {
    padding-bottom: .5rem;
    vertical-align: middle
}
table td:first-child,
table.vita td:first-child {
    font-weight: 600;
    line-height: 1;
}
@media (min-width:712px) {
    table td,
    table.vita td {
        padding-bottom: 1rem;
    }
    table td:first-child,
    table.vita td:first-child {
        padding-right: 1rem;
        text-align: right;
        white-space: nowrap
    }
}
@media (max-width:711px) {
    table,
    table.vita td {
        width: 100%;
        display: block
    }
    table td:first-child,
    table.vita td:first-child {
        padding-top: .5rem
    }
}

.author {
    page-break-inside: avoid
}

.author-image {
    width: 65px;
    margin-right: .5rem;
}
.author-grid .author-image {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto .5rem;
}
.author-image img {
    border: 1px solid #cdcdcd;
    border-radius: 50%;
}
.author-grid .author {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    border-radius: 8px;
}
@media only screen and (min-width: 1200px) {
    .author-grid .author {
        padding: 30px;
    }
}
.type-author,
.type-date {
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    line-height: 1.3
}
.type-author a {
    font-weight: 500
}

.post-container {
    margin-top: 0;
    margin-bottom: 60px;
}
.post-thumbnail {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 2rem;
}
.post-thumbnail img {
	display: block;
	margin: 0 auto;
    max-width: 100%;
    height: auto
}
.post-cat,
.post-meta {
    font-size: .9375rem;
}
.post-meta,
.post-meta a {
    color: #395049;
}
.post-meta a:hover {
    color: #0A2F24;
}
.posted-on,
.by {
    margin-right: 10px;
}
.posted-on::before,
.by::before,
.tags-links::before {
    font-family: 'fontello';
    margin-right: 7px;
}
.posted-on::before {
    content: '\e802';
}
.by::before {
    content: '\f2c0';
}
.tags-links::before {
    content: '\e803';
}
.share a {
    cursor: pointer;
    display: inline-block;
    margin: 0 .5rem 0 0;
    font-size: 1.5rem;
}
.share a.x-twitter {
    font-size: 1.25rem;
}

.news-navigation {
	position: relative;
	width: 100%;
    height: auto;
	padding-top: 1rem;
    overflow: hidden;
}

.news-navigation .news-back,
.news-navigation .news-prev,
.news-navigation .news-next {
    position: relative;
    float: left;
    min-height: 1px;
    white-space: nowrap;
    font-size: .875rem;
}
.news-navigation .news-back {
    text-align: center;
    width: 20%;
}
.news-navigation .news-prev {
    padding-right: 20px;
    width: 40%;
}
.news-navigation .news-next {
    width: 40%;
    text-align: right;
    padding-left: 20px;
}
.pagination {
    width: 100%;
    padding-bottom: 2rem;
}
.pagination .nav-links {
    width: 100%;
    display: block;
    position: relative;
    text-align: center;
}
.pagination .page-numbers {
    position: relative;
    display: inline-block;
    vertical-align: text-bottom;
    margin: 0;
    padding: 0 .25rem;
    color: #0A2F24;
    font-family: "EB Garamond", serif;
    font-size: 1.25rem;
    line-height: 1;
    border-bottom: none!important;
}
.pagination .page-numbers.current {
    font-weight: 600;
    text-decoration: underline;
}

blockquote {
    background-image: url(img/quote-icon.svg);
    background-position: 0 20px;
    background-size: 30px;
    background-repeat: no-repeat;
    padding: 3.5rem 0 1.5rem;
    margin-bottom: 0;
    font-size: 1.375rem;
    line-height: 1.4;
}
blockquote p {
    margin-bottom: 0!important;
}
@media only screen and (min-width:480px) {
    blockquote {
        background-position: 0 30px;
        padding: 1.5rem 0 2rem 3rem;
    }
}
@media only screen and (min-width:712px) {
    .post-container {
        margin-top: 10px;
        margin-bottom: 60px;
    }
    blockquote {
        padding: 1.5rem 0 2.5rem 3rem;
        font-size: 1.5rem;
    }
}
@media only screen and (min-width:992px) {
    .share {
        position: sticky;
        top: 15px;
    }
    .pagination {
        padding-bottom: 4rem;
    }
    .pagination .page-numbers {
        font-size: 1.375rem;
    }
    .news-navigation {
        padding-top: 2rem;
    }
    .post-container {
        margin-top: 10px;
        margin-bottom: 90px;
    }
    blockquote {
        background-position: 0 50px;
        padding: 2.5rem 0 3rem 3.5rem;
        font-size: 1.75rem;
    }
}


.error-404 {
    text-align: center;
}
.error-404 h1 {
    font-size: 100px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    text-shadow: 3px 3px 0 rgba(178,178,178,1),8px 8px 0 rgba(0,0,0,.15);
}
.error-404 h2 {
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 24px;
}
.error-404 .searchform {
    border: 3px dashed rgba(0,0,0,.05);
    padding: 15px;
    margin-top: 40px;
}
@media (min-width:768px) {
    .error-404 h1 {
        font-size: 200px;
        margin-bottom: 30px;
    }
    .error-404 h2 {
        line-height: 42px;
        font-size: 30px;
    }
    .error-404 .searchform {
        padding: 30px 90px;
        margin-top: 40px;
    }
}

.toggle-lightbox-wrapper {
    display: inline-block;
    position: relative;
}
.loader-wrapper {
    position: absolute;
    width: 100%;
    text-align: center;
    display: none;
    right: -130px;
    top: 0;
}
.ball-pulse>div {
    width: 15px;
    height: 15px;
    margin: 2px;
    display: inline-block
}

.ball-pulse>div {
    background-color: #363738;
    border-radius: 100%
}

@-webkit-keyframes scale {
    0%,
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    45% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: .7
    }
}

@keyframes scale {
    0%,
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    45% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: .7
    }
}

.ball-pulse>div:nth-child(1) {
    -webkit-animation: scale .75s -.24s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale .75s -.24s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.ball-pulse>div:nth-child(2) {
    -webkit-animation: scale .75s -.12s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale .75s -.12s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.ball-pulse>div:nth-child(3) {
    -webkit-animation: scale .75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
    animation: scale .75s 0s infinite cubic-bezier(.2, .68, .18, 1.08)
}

.ball-pulse>div {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

#lightbox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 19;
    -webkit-transition: all .7s cubic-bezier(.77, 0, .175, 1);
    transition: all .7s cubic-bezier(.77, 0, .175, 1)
}

body.lightbox-open #lightbox {
    left: 0;
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

#close-lightbox-trigger {
    position: fixed;
    top: 10px;
    right: 0;
    width: 48px;
    height: 40px;
    z-index: 15;
    cursor: pointer;
    display: none
}
@media only screen and (min-width:712px) {
    #close-lightbox-trigger {
        width: 60px;
        height: 60px;
    }
    #close-lightbox-trigger::after,
    #close-lightbox-trigger::before {
        left: 30px;
        height: 50px;
    }
}

#close-lightbox-trigger::after,
#close-lightbox-trigger::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 20px;
    width: 2px;
    height: 30px;
    background-color: #0A2F24;
    z-index: 10;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s cubic-bezier(0.16, 0.01, 0.77, 1);
    transition: all .3s cubic-bezier(0.16, 0.01, 0.77, 1);
}
#close-lightbox-trigger::before {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.no-touchevents #close-lightbox-trigger:hover::after {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}
.no-touchevents #close-lightbox-trigger:hover::before {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}


.lightbox-inner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
}

.lightbox-content {
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    min-height: 100%;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, .05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .05);
    padding: 40px 20px 20px;
    cursor: default;
}
@media only screen and (min-width:712px) {
    .lightbox-content {
        padding: 80px 40px 20px;
        width: 90%
    }
}
@media only screen and (min-width:992px) {
    .lightbox-content {
        width: 75%;
    }
}
@media only screen and (min-width:1280px) {
    .lightbox-content {
        padding: 80px 120px 40px 50px;
    }
}

.lightbox-content-inner {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity .3s .8s, transform .3s ease-out .8s;
    transition: opacity .3s .8s, transform .3s ease-out .8s;
}
body.lightbox-open .lightbox-content-inner {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 1.5rem 0;
    background: #0A2F24;
    color: #fff;
    font-size: .875rem;
    z-index: 2;
}
.btt {
    position: absolute;
    top: -2.5rem;
    left: 0;
    width: 100%;
    z-index: 1;
}
.btt .back-to-top {
    color: #0A2F24!important;
    font-size: .875rem;
    float: right;
}
.btt .back-to-top i{
    margin-left: .625rem
}
#footer p,
#footer ul li {
    font-size: .875rem;
}
#footer .copyright {
    font-size: .875rem;
    text-align: center
}
#footer a {
    color: #fff
}
#footer a:hover,
#footer a:focus {
    color: #fff;
    text-decoration: none
}
@media only screen and (min-width:992px) {
    #footer {
        padding: 2rem 0;
    }
    .btt {
        top: -3rem;
    }
    #footer .copyright {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: left;
    }
}

@media print {
    @page { size:A4;  margin: 10mm; }
    body {
        font-size: 12pt;
        font-family: Arial, sans-serif;
        -webkit-print-color-adjust:exact !important;
        print-color-adjust:exact !important;
    }
    .noPrint {
        display: none;
        height: 0!important;
        min-height: 0!important;
        overflow: hidden!important;
    }
    .page-content {
        padding: 30px 0 0!important;
    }
    
}