/*
Theme Name: Flisvos Royal Hotel 2024
Theme URI: https://www.flisvosroyalhotel.com/
Version: 1.0
Author: WebOlution
Author URI: http://www.webolution.gr
Tags: Nafplion hotels, Tolon hotels, rooms and suites, Nafplion accommodation, Tolon accommodation, Nafplion restaurants, Tolon restaurants
*/
/* General variables
------------------------------------------------------*/ 
:root {
    --theme-color: #666F68;
    --theme-color-alt: #009CB4;
    --theme-bg-color: #F8F4F3;
    --theme-main-bg-color: #F9F9F9;
    --theme-header-height: 97px;
    --theme-outer-padding: 80px;
    --theme-section-padding-y: 180px;
    --theme-header-transition-duration: .5s;
    --theme-header-transition-delay: 0s;
    --theme-header-full-margin-top: 40px;
}
/* Basic styles
------------------------------------------------------*/ 
:root {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background-color: var(--theme-main-bg-color);
}
a {
    text-decoration: none;
    color: unset;
    transition: opacity .2s ease-out;
}
/*a:hover {
    opacity: .7;
}*/
img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    vertical-align: middle;
    transition: opacity 0.5s linear;
}
/* Animations
-----------------------------------------------------*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fadeIn, .fadeOut, .fadeInUp, .fadeInDown, .fadeInShorter, .fadeOutShorter, .fadeInUpShorter, .fadeInDownShorter {
    visibility: hidden;
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn.show {
    -webkit-animation: fadeIn 0.8s forwards;
    animation: fadeIn 0.8s forwards;
}
.fadeInShorter.show {
    -webkit-animation: fadeIn 0.5s forwards;
    animation: fadeIn 0.5s forwards;
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut.show {
    -webkit-animation: fadeOut 1s forwards;
    animation: fadeOut 1s forwards;
}
.fadeOutShorter.show {
    -webkit-animation: fadeOut 0.5s forwards;
    animation: fadeOut 0.5s forwards;
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 80px, 0);
        transform: translate3d(0, 80px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 80px, 0);
        transform: translate3d(0, 80px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp.show {
    animation: fadeInUp 2s forwards;
}
.fadeInUpShorter.show {
    animation: fadeInUp 1s forwards;
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -80px, 0);
        transform: translate3d(0, -80px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -80px, 0);
        transform: translate3d(0, -80px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown.show {
    animation: fadeInDown 2s forwards;
}
.fadeInDownShorter.show {
    animation: fadeInDown 1s forwards;
}
@keyframes revealImage {
    from {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }
    to {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    }
}
.revealImage.show {
    animation: revealImage 1.5s forwards;
}
@keyframes revealImageRight {
    from {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    to {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
}
.revealImageRight.show {
    animation: revealImageRight 1.5s forwards;
}
@keyframes revealImageTop {
    from {
        clip-path: polygon(100% 0, 0 0, 0 0, 100% 0);
    }
    to {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
}
.revealImageTop.show {
    animation: revealImageTop 1.5s forwards;
}
.show {
    visibility: visible;
}
/* Styles
------------------------------------------------------*/
body {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-style: normal;
    color: var(--theme-color);
}
.nav-enabled, .nav-enabled body, .nav-enabled #wrapper {
    overflow: hidden;
}
.nav-enabled body {
    width: 100%;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    width: 115px;
    border-top: 1px solid var(--theme-color-alt);
    margin: 25px 0;
    padding: 0;
}
.container {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}
.row {
    display: flex;
}
.hero {
    height: 100svh;
}
.normal-header .hero {
    height: calc(100svh - var(--theme-header-height) - var(--theme-outer-padding));
}
.hero .container {
    max-width: 100%;
    height: 100%;
    position: relative;
    margin: 0 var(--theme-outer-padding);
}
.hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.hero .video {
    position: relative;
    overflow: hidden;
    background: #000;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hero .video, .hero video {
    width: 100%;
    height: 100%;
}
.hero video {
    object-fit: cover;
    object-position: center;
    display: block;
}
.video:after, .video-wide:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }
    25% {
        transform: none;
    }
    50% {
        opacity: 1;
    }
}
.spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--theme-color);
    animation: spin 1s linear infinite;
    z-index: 1;
}
.status {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 68px;
    height: 68px;
    background-color: #fff;
    opacity: 0;
    z-index: 1;
}
.status.playing {
    -webkit-mask: url("images/play_button.svg") center / contain no-repeat;
    mask: url("images/play_button.svg") center / contain no-repeat;
    animation: 0.5s linear spinner-grow;
}
.status.pause {
    -webkit-mask: url("images/pause_button.svg") center / contain no-repeat;
    mask: url("images/pause_button.svg") center / contain no-repeat;
    animation: 0.5s linear spinner-grow;
}
#mouse {
    background: url("images/mouse-icon.svg") center / contain no-repeat;
    display: block;
    min-width: 20px;
    min-height: 32px;
    position: absolute;
    bottom: 41px;
    margin: 0 auto;
    left: 0;
    right: 0;
    cursor: pointer;
    width: fit-content;
    border: none;
    transition: opacity .2s ease-in-out, bottom .2s ease-in-out;
}
#mouse:hover {
    opacity: .7;
    bottom: 45px;
}
#sections {
    position: relative;
}
.main-section {
    position: relative;
}
.main-section .container {
    display: flex;
    justify-content: space-between;
}
.main-section .column {
    position: relative;
}
.text-content > *:first-child {
    margin-top: 0 !important;
}
.text-content > *:last-child {
    margin-bottom: 0 !important;
}
h1, .section-02 .row.upper > .title, .section-05 .row.upper > .title, .section-10 .discover .title {
    font-size: 60px;
    font-weight: 200;
    line-height: 72px;
    margin: 60px 0;
}
h2, .section-02 h3, .slider-centered-item, .section-14 .offer .offer-price strong {
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
h3, .section-08 .column.left .title, .section-08 .column.left h2, .section-09 .text-content .title, .section-09 .text-content h2, .section-10 .column.left .title, .section-11 .text-content h1, .section-13 .title, .section-15 h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
}
h4, .section-08 .column.right h3, .section-08 .column.middle h3, .contact-section .column.left .text-content > p, .find-on-maps, .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, #main-footer .row.upper .column.second .half > p {
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
}
h1 > strong, h2 > strong, h3 > strong, h4 > strong {
    color: var(--theme-color-alt);
}
h1 > strong, .section-02 .row.upper > .title > strong, .section-05 .row.upper > .title > strong {
    font-weight: 200;
}
h2 > strong, h3 > strong {
    font-weight: 300;
}
h1:after, .section-02 .row.upper > .title:after, .section-05 .row.upper > .title:after, .section-08 .column.left .title:after, .section-08 .column.left h2:after, .section-10 .column.left .title:after, .section-13 .page-details:after {
    content: "";
    width: 114px;
    height: 6px;
    background: var(--theme-color-alt);
    display: block;
    position: absolute;
    margin-top: 20px;
}
p, #main-footer .find-on-maps, .text-content.default-list > ul li, .text-content.default-list > ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin: 25px 0;
}
.smaller, .text-content.default-list {
    margin-top: 20px;
}
.text-content.default-list > ul li, .text-content.default-list > ol li {
    margin: 12px 0;
}
p sup {
    font-size: 10px;
}
.text-content.with-link a, .more {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    opacity: 1 !important;
    margin: 40px 0;
    padding: 15px 0 15px 50px;
    width: fit-content;
}
.text-content.with-link a:before, .more:before {
    content: "";
    background: url("images/ellipse.svg") center / contain no-repeat;
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: -50px;
    transition: width .2s ease-in-out, height .2s ease-in-out;
    z-index: -1;
}
.text-content.with-link a:hover:before, .more:hover:before {
    width: 70px;
    height: 70px;
}
@media (pointer: fine) {
    ::-webkit-scrollbar {
        width: 15px;
        height: 15px;
    }
    ::-webkit-scrollbar-track {
        display: none;
    }
    ::-webkit-scrollbar-thumb {
        border-radius: 10rem;
        background: #666F6860;
        background-clip: padding-box !important;
        border: 4px solid rgba(0, 0, 0, 0);
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #666F6880;
    }
    ::-webkit-scrollbar-thumb:active {
        background: #666F6899;
    }
}
.main-section .text-content:not(.default-list) ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-section .text-content:not(.default-list) ul > li {
    display: flex;
    align-items: center;
}
.main-section .text-content:not(.default-list) ul > li:not(:first-child) {
    margin-top: 20px;
}
.main-section .text-content:not(.default-list) ul > li:before {
    content: "";
    background: url("images/check.svg") center / contain no-repeat;
    min-height: 10px;
    min-width: 13px;
    margin-right: 18px;
    margin-top: 7px;
    margin-bottom: auto;
}
.anchor {
    position: relative;
    scroll-margin-top: var(--theme-header-height);
}
.slider, .slider-centered {
    cursor: grab;
}
@media screen and (max-width: 1920px) {
    #main-header .container, .hero .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 1740px) {
    #main-footer .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 1480px) {
    .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 1250px) {
    h1, .section-02 .row.upper > .title, .section-05 .row.upper > .title, .section-10 .discover .title {
        font-size: 50px;
        line-height: 60px;
        margin: 50px 0;
    }
}
@media screen and (max-width: 1080px) {
    :root {
        --theme-section-padding-y: 90px;
        --theme-outer-padding: 40px;
    }
    h2, .section-02 h3, .slider-centered-item, .section-14 .offer .offer-price strong {
        font-size: 30px;
    }
    h3, .section-08 .column.left .title, .section-08 .column.left h2, .section-09 .text-content .title, .section-09 .text-content h2, .section-10 .column.left .title, .section-11 .text-content h1, .section-13 .title, .section-15 h2 {
        font-size: 40px;
        line-height: 45px;
    }
}
@media screen and (max-width: 768px) {
    :root {
        --theme-section-padding-y: var(--theme-outer-padding);
    }
    h1, .section-02 .row.upper > .title, .section-05 .row.upper > .title, .section-10 .discover .title {
        font-size: 45px;
        line-height: 50px;
    }
}
@media screen and (max-width: 640px) {
    h4, .section-08 .column.right h3, .section-08 .column.middle h3, .contact-section .column.left .text-content > p, .find-on-maps, .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, #main-footer .row.upper .column.second .half > p {
        font-size: 21px;
        line-height: 34px;
    }
}
@media screen and (max-width: 576px) {
    h1, .section-02 .row.upper > .title, .section-05 .row.upper > .title, .section-10 .discover .title {
        font-size: 35px;
        line-height: 35px;
    }
    h1:after, .section-02 .row.upper > .title:after, .section-05 .row.upper > .title:after, .section-08 .column.left .title:after, .section-08 .column.left h2:after, .section-10 .column.left .title:after, .section-13 .page-details:after {
        height: 4px;
        margin-top: 18px;
    }
    h3, .section-08 .column.left .title, .section-08 .column.left h2, .section-09 .text-content .title, .section-09 .text-content h2, .section-10 .column.left .title, .section-11 .text-content h1, .section-13 .title, .section-15 h2 {
        font-size: 32px;
        line-height: 35px;
    }
    p, #main-footer .find-on-maps, .text-content.default-list > ul li, .text-content.default-list > ol li {
        margin: 20px 0;
    }
}
@media screen and (max-width: 420px) {
    :root {
        --theme-outer-padding: 25px;
        --theme-section-padding-y: calc(var(--theme-outer-padding) + 10px);
    }
    h1, .section-02 .row.upper > .title, .section-05 .row.upper > .title, .section-10 .discover .title {
        font-size: 35px;
        line-height: 40px;
    }
    h2, .section-02 h3, .slider-centered-item, .section-14 .offer .offer-price strong {
        font-size: 25px;
        line-height: 30px;
    }
    .btn {
        font-size: 15px !important;
        padding: 8px 18px !important;
        height: 40px !important;
    }
    .text-content.with-link a, .more {
        font-size: 13px;
    }
}
@media screen and (max-width: 400px) {
    .btn {
        font-size: 14px !important;
        padding: 8px 14px !important;
        height: 36px !important;
    }
}
/* Slider
------------------------------------------------------*/
.slider {
    display: flex;
}
.slider-wrapper, .slider-track, .slider {
    overflow: unset !important;
}
.slider-wrapper {
    clip-path: inset(-100vw -100vw -100vw 0);
}
@media screen and (min-width: 1601px) {
    .slider-wrapper.alt .slider-arrows {
        display: none;
    }
}
.slider-arrows {
    position: absolute;
    right: 10.25%;
    top: -80px;
    display: flex;
    gap: 15px;
}
.slider-arrow {
    border: none;
    border-radius: 0;
    cursor: pointer;
    opacity: .8;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 15px;
    background: url("images/arrow-right.svg") no-repeat center / contain;
    transition: opacity .2s ease-out, visibility .2s ease-out;
}
.slider-arrow:hover {
    opacity: .5;
}
.slider-arrow.left {
    background: url("images/arrow-left.svg") no-repeat center / contain;
}
.slider .slide {
    opacity: 1 !important;
    position: relative;
    width: 555px;
}
.slider .slide .slide-photo {
    position: relative;
    aspect-ratio: 37 / 24;
    width: 100%;
    max-width: inherit;
    height: auto;
}
.slider .slide .slide-photo .hover-text, .section-04 .container > .column .hover-text {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 300;
    margin: auto;
    width: fit-content;
    height: fit-content;
    text-transform: uppercase;
    color: #fff;
    visibility: hidden;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
    opacity: 0;
}
.slider .slide .slide-photo:before {
    content: "";
    background: #009CB433;
    width: 100%;
    height: 100%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
    z-index: 1;
    left: 0;
    top: 0;
}
.slider .slide .slide-photo:after, .section-04 .container > .column:after {
    content: "";
    background: url("images/explore.svg") center / contain no-repeat;
    width: 109px;
    height: 96px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.slider .slide:hover .slide-photo:after, .slider .slide:hover .slide-photo:before, .slider .slide:hover .slide-photo .hover-text, .section-04 .container > .column:hover .hover-text, .section-04 .container > .column:hover:after {
    visibility: visible;
    opacity: 1;
}
.slider .slide .slide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter .2s ease-in-out;
}
.slider .slide:hover .slide-photo img {
    filter: brightness(0.8);
}
.slider .slide:not(:last-child) {
    margin-right: 8.5px;
}
.slider .slide:not(:first-child) {
    margin-left: 8.5px;
}
.slide .slide-title {
    line-height: 1.1;
    margin: 20px 0 5px;
}
.slide .slide-subtitle {
    margin: -5px 0 0;
}
@media screen and (max-width: 576px) {
    .slider .slide .slide-photo:after, .section-04 .container > .column:after {
        width: 92px;
    }
    .slider .slide .slide-photo .hover-text, .section-04 .container > .column .hover-text {
        font-size: 12px;
    }
}
/* Slider Centered
------------------------------------------------------*/
.slider-centered-section {
    z-index: 1;
/*    max-width: 1920px;
    margin-left:auto;
    margin-right: auto;*/
}
.slider-centered .slide-centered {
    aspect-ratio: 39 / 25;
    opacity: 1 !important;
    max-height: 725px;
    position: relative;
    overflow: hidden;
}
.slider-centered .slide-centered img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide-centered:not(.glide__slide--active) {
    opacity: .3 !important;
    pointer-events: none;
}
.slider-centered-item {
    position: absolute;
    bottom: 30px;
    right: 25.5%;
    width: fit-content;
    color: #fff;
    line-height: 1;
    letter-spacing: -3px;
}
@media screen and (max-width: 1500px) {
    .slider-centered-item {
        right: 26%;
    }
}
@media screen and (max-width: 1080px) {
    .slider-centered-item {
        right: 18.5%;
    }
}
@media screen and (max-width: 768px) {
    .slider-centered-item {
        font-size: 25px;
        bottom: 20px;
    }
}
@media screen and (max-width: 576px) {
    .slider-centered-item {
        right: 20%;
    }
}
@media screen and (max-width: 420px) {
    .slider-centered-item {
        font-size: 20px;
        bottom: 15px;
        letter-spacing: -1px;
    }
}
/* Small Gallery
------------------------------------------------------*/
.small-gallery .small-slide {
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}
.small-gallery .small-slide img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.small-gallery-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 48px;
    width: 48px;
    border: none;
    background: url("images/arrow-down.svg") center / contain no-repeat;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: opacity .2s ease-in-out;
}
.small-gallery-arrow.glide__arrow--disabled {
    opacity: .05 !important;
    cursor: default;
}
.small-gallery-arrow:hover {
    opacity: .5;
}
.small-gallery-arrow.left {
    left: 20px;
    transform: rotate(90deg);
}
.small-gallery-arrow.right {
    right: 20px;
}
@media screen and (max-width: 880px) {
    .small-gallery .small-slide img {
        height: 100%;
    }
    .small-gallery .small-slide {
        aspect-ratio: 65 / 43;
    }
}
@media screen and (max-width: 576px) {
    .small-gallery-arrow.left {
        left: 10px;
    }
    .small-gallery-arrow {
        height: 30px;
        width: 30px;
    }
    .small-gallery-arrow.right {
        right: 10px;
    }
}
/* Header
------------------------------------------------------*/
#main-header {
    position: fixed;
    width: 100%;
    z-index: 2;
    color: #fff;
    transition: color var(--theme-header-transition-duration) ease-out, background var(--theme-header-transition-duration) ease-out;
}
.normal-header #main-header, .scrolled #main-header, .nav-enabled #main-header {
    color: var(--theme-color);
    top: 0;
}
.normal-header #main-header, .scrolled #main-header {
    background: var(--theme-main-bg-color);
}
#wrapper {
    overflow: hidden;
}
.normal-header #wrapper {
    margin-top: var(--theme-header-height);
}
#main-header:after {
    content: "";
    height: 228px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -2;
    background: linear-gradient(to top, #00000000 0%, rgb(0 0 0 / 70%) 100%);
}
.normal-header #main-header:after, .scrolled #main-header:after, .nav-enabled #main-header:after {
    content: none;
}
#main-header .container {
    max-width: 1760px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    height: var(--theme-header-height);
    transition: border-color var(--theme-header-transition-duration) ease-out;
}
.normal-header #main-header .container, .scrolled #main-header .container, .nav-enabled #main-header .container {
    border-color: transparent;
}
.logo {
    background-image: url("images/flisvos-logo-hr.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    min-width: 290px;
    min-height: 48px;
    text-indent: -9999px;
    overflow: hidden;
    transition: opacity .2s ease-out, background-image 0s ease-out;
}
.normal-header #main-header .logo, .scrolled #main-header .logo, .nav-enabled #main-header .logo {
    background-image: url("images/flisvos-logo-hr-alt.svg");
}
#main-header.delay-transitions .logo {
    transition-delay: calc(var(--theme-header-transition-duration) + .4s) !important;
}
.btn {
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.8px;
    padding: 12px 26px;
    height: 46px;
    background: var(--theme-color-alt);
    color: #fff;
    width: fit-content;
    border: none;
    text-align: center;
    font-family: "Source Sans 3", sans-serif;
    transition: opacity .2s ease-out, color var(--theme-header-transition-duration) ease-out, background var(--theme-header-transition-duration) ease-out !important;
}
.btn:hover {
    opacity: .7 !important;
    color: #fff;
}
#main-header .btn {
    min-height: 46px;
    color: var(--theme-color);
    background: #fff;
}
.normal-header #main-header .btn, .scrolled #main-header .btn, .nav-enabled #main-header .btn {
    background: var(--theme-color-alt);
    color: #fff;
}
#main-header .container .main-navigation {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 45px;
}
#main-header .container .main-navigation > li > a, .btn-alt, #main-header .container .language-chooser > li > a {
    font-size: 16px;
    font-weight: 600;
}
.normal-header #main-header .container .main-navigation > li.current-menu-item > a, .scrolled #main-header .container .main-navigation > li.current-menu-item > a, .nav-enabled #main-header .container .main-navigation > li.current-menu-item > a {
    color: var(--theme-color-alt);
}
.btn-alt {
    text-transform: uppercase;
    transition: opacity .2s ease-out, color var(--theme-header-transition-duration) ease-out;
}
.normal-header .btn-alt.blue, .scrolled .btn-alt.blue, .nav-enabled .btn-alt.blue {
    color: var(--theme-color-alt);
}
.header-right, .header-left {
    display: flex;
    align-items: center;
    gap: 28px;
}
#main-header .container .language-chooser-wrapper {
    position: relative;
    width: 45px;
    height: 22px;
}
#main-header .container .language-chooser {
    --number-of-children: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 22px;
    display: flex;
    flex-direction: column;
    transition: max-height .4s ease-out;
    position: absolute;
}
#main-header .container .language-chooser > li.active {
    padding-bottom: 3px;
    order: -1;
}
#main-header .container .language-chooser > li {
    padding-right: 5px;
    padding-left: 5px;
}
#main-header .container .language-chooser > li:not(.active) {
    padding-top: 3px;
    padding-bottom: 3px;
}
#main-header .container .language-chooser > li:not(.active) {
    background: var(--theme-main-bg-color);
    color: var(--theme-color);
}
#main-header .container .language-chooser:hover {
    max-height: calc((22px + 6px) * var(--number-of-children));
}
#main-header .container .language-chooser > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
#main-header .container .language-chooser > li.active > a:after {
    content: "";
    mask: url("images/arrow-down.svg") center / contain no-repeat;
    background-color: #fff;
    display: block;
    min-width: 16px;
    min-height: 16px;
    transition: background-color var(--theme-header-transition-duration) ease-out;
}
.normal-header #main-header .container .language-chooser > li.active > a:after, .scrolled #main-header .container .language-chooser > li.active > a:after, .nav-enabled #main-header .container .language-chooser > li.active > a:after {
    background-color: var(--theme-color);
}
#nav-button {
    display: none;
    align-items: center;
    cursor: pointer;
    gap: 30px;
    text-transform: uppercase;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: fit-content;
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 1001;
    position: relative;
    transform: scale(.7);
    margin: 0 -6px;
}
#nav-button .nav-button-icon {
    position: relative;
    width: 40px;
    height: 25px;
}
.burgermenu {
    border: none;
    background: none;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -12.5px;
    padding: 0;
    outline: none;
}
.burgermenu span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 2px solid white;
    transform: translateY(12px);
    transition: transform 0.6s ease, border-color var(--theme-header-transition-duration) ease;
}
.nav-enabled .burgermenu span {
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}
.normal-header .burgermenu span, .scrolled .burgermenu span, .nav-enabled .burgermenu span {
    border-color: var(--theme-color);
}
.burgermenu span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin-top: -2px;
    width: 100%;
    height: 2px;
    background: white;
    transform: translateY(-11px) rotate(0deg);
    transition: margin-top 0.6s ease, transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1.000), background var(--theme-header-transition-duration) ease;
}
.normal-header .burgermenu span:before, .scrolled .burgermenu span:before, .nav-enabled .burgermenu span:before {
    background: var(--theme-color);
}
.burgermenu span:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -2px;
    background: white;
    transform: translateY(11px) rotate(0deg);
    transition: margin-top 0.6s ease, transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1.000), background var(--theme-header-transition-duration) ease;
}
.normal-header .burgermenu span:after, .scrolled .burgermenu span:after, .nav-enabled .burgermenu span:after {
    background: var(--theme-color);
}
.nav-enabled .burgermenu span {
    border-color: transparent;
    transition: border-color var(--theme-header-transition-duration) ease;
}
.nav-enabled .burgermenu span:before {
    transform: translateY(0px) rotate(45deg);
    margin-top: 0;
}
.nav-enabled .burgermenu span:after {
    transform: translateY(0px) rotate(-45deg);
    margin-top: 0;
}
a, #nav-button {
    text-decoration: none;
    color: unset;
    transition: color .2s ease-out;
}
a:hover, #nav-button:hover {
    /*opacity: .6;*/
    color: var(--theme-color-alt);
}
#main-header:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 0;
    background: var(--theme-main-bg-color);
    z-index: -1;
    transition: height var(--theme-header-transition-duration) ease-out;
}
.nav-enabled #main-header:before {
    height: 100svh;
}
.header-full {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100vw;
    height: calc(100svh - var(--theme-header-height));
    transition: visibility var(--theme-header-transition-duration) ease-out, opacity var(--theme-header-transition-duration) ease-out;
    transition-delay: 0s;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8vh;
    overflow-y: scroll;
}
.nav-enabled .header-full {
    visibility: visible;
    opacity: 1;
    transition-delay: var(--theme-header-transition-duration);
}
#main-header .container .main-navigation > li > a {
    height: var(--theme-header-height);
    display: flex;
    align-items: center;
    justify-content: center;
}
#main-header .container .main-navigation .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: rgb(0 0 0 / 50%);
    color: #fff;
    transform: translateY(-10px);
    transition: transform .4s ease, opacity .5s ease, opacity .2s ease-out, color var(--theme-header-transition-duration) ease-out, background var(--theme-header-transition-duration) ease-out;
}
.normal-header #main-header .container .main-navigation .sub-menu, .scrolled #main-header .container .main-navigation .sub-menu {
    background: var(--theme-main-bg-color);
    color: var(--theme-color);
}
#main-header .container .main-navigation .sub-menu > li > a {
    padding: 8px 16px;
    display: block;
}
#main-header .container .main-navigation > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-full .main-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.header-full .main-navigation > li {
    position: relative;
    width: fit-content;
}
.header-full .main-navigation > li > a {
    font-size: 30px;
    position: relative;
    font-weight: 300;
    opacity: 1 !important;
    transition: color .2s ease-out;
    cursor: pointer;
}
.header-full .main-navigation > li.menu-item-has-children > a {
    margin-right: -20px;
}
.header-full .main-navigation > li.menu-item-has-children > a:after {
    content: "";
    position: relative;
    display: inline-block;
    mask: url("images/arrow-down.svg") center center no-repeat;
    background-color: var(--theme-color);
    background-size: contain;
    width: 10px;
    height: 10px;
    top: -2px;
    margin-left: 10px;
    right: 0;
    opacity: .5;
    cursor: pointer;
    transition: rotate .75s ease-out, opacity .2s ease-out, background-color .2s ease-out;
}
.header-full .main-navigation > li.menu-item-has-children.show > a:after {
    rotate: -180deg;
}
.header-full .main-navigation > li.menu-item-has-children > a:hover:after {
    background-color: var(--theme-color-alt);
}
.header-full .main-navigation .sub-menu > li > a {
    opacity: 1 !important;
    transition: color var(--theme-header-transition-duration) ease-out;
}
.header-full .main-navigation > li > a:hover, .header-full .main-navigation .sub-menu > li > a:hover {
    color: var(--theme-color-alt);
}
#main-header.delay-transitions, #main-header.delay-transitions:before, #main-header.delay-transitions .btn, #main-header.delay-transitions .container .language-chooser > li.active > a:after, #main-header.delay-transitions .btn-alt, #main-header.delay-transitions .burgermenu span, #main-header.delay-transitions .burgermenu span:before, #main-header.delay-transitions .burgermenu span:after {
    transition-delay: var(--theme-header-transition-duration) !important;
}
.header-full .main-navigation .sub-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: .7;
    height: 0;
    overflow: hidden;
    transition: height .75s ease-in-out;
    font-size: 18px;
}
.header-full-upper {
    height: fit-content;
    display: flex;
    align-items: center;
    padding-top: var(--theme-header-full-margin-top);
    margin: auto;
}
.header-full .language-chooser {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
}
.header-full .language-chooser > li > a {
    opacity: 1 !important;
    transition: color .2s ease-out;
}
.header-full .language-chooser > li > a:hover {
    color: var(--theme-color-alt)
}
.header-full .language-chooser > li.active > a {
    font-weight: 600;
}
.header-full .social-wrapper {
    text-align: center;
}
.header-full .social-wrapper .social {
    padding-bottom: 25px;
}
.header-full-lower {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
@media screen and (max-width: 1700px) {
    #main-header .container .main-navigation {
        gap: 30px;
    }
}
@media screen and (max-width: 1500px) {
    #main-header .container .main-navigation, .header-right, .header-left, #main-header .container {
        gap: 25px;
    }
    .logo {
        min-width: 245px;
    }
}
@media screen and (max-width: 1400px) {
    #main-header .container .header-center .main-navigation, .header-center, #main-header .container .header-right .language-chooser-wrapper {
        display: none;
    }
    #nav-button {
        display: flex;
    }
}
@media screen and (max-width: 768px) {
    #main-header .container .header-right .btn-alt {
        display: none;
    }
}
@media screen and (max-width: 576px) {
    :root {
        --theme-header-height: 75px;
    }
    .header-left {
        width: 100%;
        height: 100%;
    }
    #main-header .container {
        padding: 13px 0;
    }
    #main-header .btn {
        min-height: unset;
        height: unset !important;
        font-size: 15px !important;
        padding: 10px 20px !important;
        min-width: max-content;
    }
    .logo {
        min-width: unset;
        width: inherit;
        max-width: 245px;
        height: 100%;
    }
    #nav-button {
        transform: scale(.6);
        margin: 0 -8px;
    }
    .header-full .main-navigation {
        gap: 10px;
    }
    .header-full .main-navigation > li > a {
        font-size: 25px;
    }
    .header-full .main-navigation .sub-menu {
        font-size: 16px;
    }
    .header-full .social .icon {
        scale: 0.8;
        margin: 0 -3px;
    }
    .header-full .social {
        gap: 20px;
    }
}
@media screen and (max-width: 500px) {
    #main-header .btn {
        padding: 6px 12px !important;
    }
    #main-header .btn > span {
        display: none;
    }
}
@media screen and (max-width: 400px) {
    #main-header .container .main-navigation, .header-right, .header-left, #main-header .container {
        gap: 15px;
    }
    .header-full .main-navigation > li > a {
        font-size: 22px;
    }
}
/* Footer
------------------------------------------------------*/
#main-footer {
    background-color: #E8E0DE;
    position: relative;
    overflow: hidden;
}
#main-footer .container {
    max-width: 1580px;
}
#main-footer .row.upper {
    padding: 125px 0;
    align-items: center;
    justify-content: space-between;
}
#main-footer .row.upper .column.second {
    display: flex;
    gap: 90px;
}
#main-footer .row.lower {
    border-top: 1px solid #C8C3C2;
    padding: 20px 0;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.footer-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-navigation > li {
    display: flex;
}
.footer-navigation > li:not(:last-child):after {
    content: "|";
    margin-left: 5px;
}
.small-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.copyright a {
    font-weight: 500;
}
.footer-logo {
    background: url("images/flisvos-logo-hr-alt.svg") center / contain no-repeat;
    display: block;
    min-width: 426px;
    min-height: 71px;
    text-indent: -9999px;
    overflow: hidden;
    transition: opacity .2s ease-out;
}
#main-footer .find-on-maps {
    margin-top: 7px;
    margin-bottom: 0;
}
.find-on-maps {
    display: flex;
    gap: 12px;
}
#main-footer .row.upper .column.second .half > p > a, .find-on-maps, .contact-section .column.left .text-content a {
    opacity: 1 !important;
    transition: color .2s ease-out;
}
#main-footer .row.upper .column.second .half > p > a:hover, .find-on-maps:hover, .contact-section .column.left .text-content a:hover {
    color: var(--theme-color-alt);
}
.find-on-maps:before {
    content: "";
    mask: url("images/location.svg") center / contain no-repeat;
    background-color: var(--theme-color);
    min-width: 21px;
    min-height: 28px;
    display: flex;
    transition: background-color .2s ease-out;
}
#main-footer .find-on-maps:before {
    min-width: 16px;
    min-height: 22px;
}
.find-on-maps:hover:before {
    background-color: var(--theme-color-alt);
}
.find-on-maps > p {
    margin: 0;
}
.social {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 28px;
}
header .social {
    justify-content: center;
}
#main-footer .social {
    gap: 20px;
}
.social .icon {
    display: flex;
    background-color: var(--theme-color);
    text-indent: -9999px;
    overflow: hidden;
    transition: background-color .2s ease-out;
    opacity: 1 !important;
    min-height: 26px;
    min-width: 26px;
}
#main-footer .social .icon {
    min-height: 20px;
    min-width: 20px;
}
.social .icon:hover {
    background-color: var(--theme-color-alt);
}
.social .icon.facebook {
    mask: url("images/facebook.svg") center / contain no-repeat;
    min-width: 14px;
}
#main-footer .social .icon.facebook {
    min-width: 10px;
}
.social .icon.instagram {
    mask: url("images/instagram.svg") center / contain no-repeat;
    min-width: 24px;
}
#main-footer .social .icon.instagram {
    min-width: 18px;
}
.social .icon.youtube {
    mask: url("images/youtube.svg") center / contain no-repeat;
    min-width: 33px;
}
#main-footer .social .icon.youtube {
    min-width: 24px;
}
.social .icon.tripadvisor {
    mask: url("images/tripadvisor.svg") center / contain no-repeat;
    min-width: 34px;
}
#main-footer .social .icon.tripadvisor {
    min-width: 25px;
}
#main-footer .row.upper .column.second .half > p {
    margin: 0 !important;
}
@media screen and (max-width: 1080px) {
    #main-footer .row.upper {
        flex-direction: column;
        padding: 80px 0;
        gap: 80px;
    }
    #main-footer .row.lower {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    #main-footer .row.upper .column.second {
        text-align: center;
    }
    #main-footer .social {
        justify-content: center;
    }
    #main-footer .find-on-maps {
        justify-content: center;
    }
}
@media screen and (max-width: 640px) {
    #main-footer .row.upper .column.second {
        flex-direction: column;
        gap: var(--theme-outer-padding);
    }
    #main-footer .row.upper {
        padding: var(--theme-outer-padding) 0;
        gap: var(--theme-outer-padding);
    }
    .footer-logo {
        min-width: 350px;
        min-height: 58px;
    }
    .small-text {
        line-height: 18px;
        text-align: center;
    }
    #main-footer .row.lower {
        gap: 20px;
    }
    #main-footer .row.upper .column.first {
        width: 100%;
    }
}
@media screen and (max-width: 576px) {
    #main-footer .row.upper .column.first {
        width: 85%;
    }
}
@media screen and (max-width: 480px) {
    .footer-logo {
        min-width: unset;
        min-height: unset;
        width: 100%;
        height: 60px;
    }
}
@media screen and (max-width: 400px) {
    .footer-logo {
        min-width: unset;
        min-height: unset;
        width: 100%;
        height: 45px;
    }
}
/* Section 01
------------------------------------------------------*/
.section-01 {
    padding: var(--theme-section-padding-y) 0;
}
.section-01 .container {
    gap: 9.7%;
    position: relative;
}
.section-01 .column.left {
    width: 28.9393%;
}
.section-01 .container:before {
    content: "";
    -webkit-mask: url("images/flisvos-icon.svg") center / contain no-repeat;
    mask: url("images/flisvos-icon.svg") center / contain no-repeat;
    background-color: var(--theme-color);
    position: absolute;
    width: 385px;
    height: 465px;
    opacity: 0.08;
    top: -103px;
    left: -252px;
    z-index: -1;
}
.section-01 .column.right {
    width: 59.3939%;
    min-height: 645px;
}
.section-01 .column.right:before {
    content: "";
    background: var(--theme-bg-color);
    height: 352px;
    position: absolute;
    width: 100vw;
    margin-left: 6.7602%;
    left: 0;
    top: 133px;
    bottom: 0;
    z-index: -1;
}
.section-01 .column.right:after {
    content: "";
    background: url("images/jars.png") center / contain no-repeat;
    position: absolute;
    height: 538px;
    width: 280px;
    bottom: -205px;
    right: -255px;
    z-index: 1;
}
.section-01 .column.right .img-01 {
    position: absolute;
    top: 0;
    right: 0;
    aspect-ratio: 130 / 119;
    width: 82.85%;
    object-fit: cover;
    object-position: center;
}
.section-01 .column.right .img-02 {
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width: 1655px) {
    .section-01 .container {
        margin-left: calc(var(--theme-outer-padding)* 2);
        margin-right: calc(var(--theme-outer-padding)* 2);
    }
}
@media screen and (max-width: 1500px) {
    .section-01 .column.left {
        width: 32.9393%;
    }
    .section-01 .column.right {
        width: 55.3939%;
    }
}
@media screen and (max-width: 1350px) {
    .section-01 .column.left {
        width: 37.9393%;
    }
    .section-01 .column.right {
        width: 50.3939%;
    }
}
@media screen and (max-width: 1080px) {
    .section-01 .column.right:after {
        content: none;
    }
    .section-01 .container {
        flex-direction: column;
        align-items: center;
        gap: var(--theme-section-padding-y);
    }
    .section-01 .column {
        width: 100% !important;
    }
    .section-01 .column.left {
        max-width: 500px;
    }
    .section-01 .column.right .img-01 {
        bottom: 0;
        margin: auto;
    }
    .section-01 .column.right .img-02 {
        width: 40%;
        height: auto;
        max-width: 245px;
    }
}
@media screen and (max-width: 640px) {
    .section-01 .column.right .img-01 {
        max-height: 500px;
    }
    .section-01 .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 640px) {
    .section-01 .column.right .img-02 {
        width: 50%;
    }
    .section-01 .column.right {
        margin-top: calc(-1 * var(--theme-outer-padding));
    }
    .section-01 .column.right:before {
        height: 50%;
    }
}
@media screen and (max-width: 576px) {
    .section-01 .column.right {
        margin-top: calc(-2 * var(--theme-outer-padding));
        min-height: 550px;
    }
    .section-01 .column.right .img-01 {
        max-height: 400px;
    }
}
/* Section 02
------------------------------------------------------*/
.section-02 {
    padding-bottom: var(--theme-section-padding-y);
}
.section-02.alt {
    padding: 0;
}
.section-02 .container {
    margin-right: unset;
    max-width: 91.3541%;
    padding: 95px 0 0 135px;
    flex-direction: column;
    position: relative;
    z-index: 0;
}
.section-02 .container:before {
    content: "";
    background: var(--theme-bg-color);
    height: 66.5%;
    position: absolute;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: -1;
}
.section-02 .row.upper {
    max-width: 90.95%;
}
.section-02 .row.upper > .title {
    margin-top: 0;
    margin-bottom: 100px;
    margin-right: 80px;
}
.section-02 .row.lower {
    flex-direction: column;
}
.section-02 .row.lower > .more {
    margin-top: 60px;
    margin-bottom: 0;
}
@media screen and (min-width: 1921px) {
    .section-02 .container {
        margin-right: auto;
        max-width: 1760px;
    }
}
@media screen and (max-width: 1920px) {
    .section-02 .container {
        margin-left: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 1600px) {
    .section-02 .container {
        padding: 5.5% 0 0 8.35%;
    }
}
@media screen and (max-width: 1080px) {
    .section-02 .row.upper > .title {
        margin-bottom: 80px;
    }
    .section-02 .container:before {
        height: 62%;
    }
}
@media screen and (max-width: 768px) {
    .section-02 .row.upper > .title {
        margin-bottom: 70px;
    }
    .section-02 .container {
        padding: var(--theme-outer-padding) 0 0 var(--theme-outer-padding);
    }
    .section-02 .row.lower > .more {
        margin-top: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 576px) {
    .section-02 .row.upper > .title {
        margin-bottom: 60px;
        font-size: 30px;
        line-height: 30px;
    }
}
/* Section 03
------------------------------------------------------*/
.section-03 {
    clip-path: inset(0);
    max-height: 900px;
    width: 100%;
    aspect-ratio: 32 / 15;
    min-height: 500px;
}
.section-03 img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
}
@media screen and (max-width: 1080px) {
    .section-03 img {
        position: relative;
    }
}
/* Section 04
------------------------------------------------------*/
.section-04 {
    padding: var(--theme-section-padding-y) 0;
    overflow: hidden;
}
.section-04 .container {
    justify-content: center;
    gap: 7.3287%;
}
.section-04 .column .title {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0.35%, rgba(0, 0, 0, 0.40) 99.65%);
    aspect-ratio: 215 / 87;
    color: #fff;
    z-index: 1;
    padding: 20px;
}
.section-04 .container > .column {
    opacity: 1 !important;
    position: relative;
    overflow: hidden;
    aspect-ratio: 43 / 60;
    max-width: 430px;
}
.section-04 .container > .column > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.section-04 .container > .column:nth-child(odd) {
    margin-bottom: 150px;
}
.section-04 .container > .column:nth-child(even) {
    margin-top: 150px;
}
.section-04 .container > .column:before, .section-05 .container .column:before, .section-06 .container .column:before, .section-10 .discover:before, .section-12 .img-link:before, .slide-centered:before, .small-slide:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 156, 180, 0.2);
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
    z-index: 1;
    left: 0;
}
.section-04 .container > .column:hover:before, .section-05 .container .column:hover:before, .section-06 .container .column:hover:before, .section-10 .discover:hover:before, .section-12 .img-link:hover:before, .slide-centered:hover:before, .small-slide:hover:before {
    visibility: visible;
    opacity: 1;
}
.section-04 .container > .column img, .section-05 .column img, .section-06 .column img, .section-10 .discover img, .section-12 .img-link > img, .slide-centered > img, .small-slide > img {
    transition: scale .3s ease-in-out;
}
.section-04 .container > .column:hover img, .section-05 .container .column:hover img, .section-06 .container .column:hover img, .section-10 .discover:hover img, .section-12 .img-link:hover > img, .slide-centered:hover > img, .small-slide:hover > img {
    scale: 1.08;
}
.section-04 .container > .column:after {
    scale: 1.05;
    transition: opacity .3s ease-in-out, visibility .3s ease-in-out, scale .3s ease-in-out;
}
.section-04 .container > .column:hover:after {
    scale: 1;
}
@media screen and (max-width: 768px) {
    .section-04 .container > .column:nth-child(odd) {
        margin-bottom: 100px;
    }
    .section-04 .container > .column:nth-child(even) {
        margin-top: 100px;
    }
}
@media screen and (max-width: 576px) {
    .section-04 .container > .column:nth-child(odd) {
        margin-bottom: 0;
    }
    .section-04 .container > .column:nth-child(even) {
        margin-top: 0;
    }
    .section-04 .container {
        gap: var(--theme-outer-padding);
        flex-direction: column;
        align-items: center;
    }
    .section-04 .column .title {
        aspect-ratio: 215 / 75;
    }
}
/* Section 05
------------------------------------------------------*/
.section-05 {
    padding: var(--theme-section-padding-y) 0;
    background: var(--theme-bg-color);
}
.section-05 .container {
    max-width: 1440px;
    flex-direction: column;
}
.section-05 .row.upper > .title {
    margin: 0 0 150px;
}
.section-05 .row.lower {
    align-items: center;
    justify-content: center;
    gap: 2.75%;
}
.section-05 .column .title {
    position: absolute;
    margin: 0;
    bottom: 0;
    color: #fff;
    padding: 25px 30px;
    width: 90%;
    z-index: 1;
    line-height: 1;
    font-size: 45px;
}
.section-05 .row.lower > .column:nth-child(even) {
    margin-top: 45px;
}
.section-05 .row.lower > .column:nth-child(odd) {
    margin-bottom: 45px;
}
.section-05 .column {
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    aspect-ratio: 67 / 95;
    max-width: 335px;
}
.section-05 .column > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media screen and (max-width: 1600px) {
    .section-05 .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 1550px) {
    .section-05 .column .title {
        font-size: 35px;
        line-height: 40px;
        padding: 25px;
    }
}
@media screen and (max-width: 1080px) {
    .section-05 .row.lower {
        flex-wrap: wrap;
        column-gap: 45px;
    }
}
@media screen and (max-width: 850px) {
    .section-05 .column {
        width: calc(50% - 45px / 2);
    }
}
@media screen and (max-width: 768px) {
    .section-05 .column {
        width: calc(50% - 45px / 4);
    }
    .section-05 .row.lower {
        column-gap: calc(var(--theme-outer-padding) / 2);
    }
    .section-05 .row.lower > .column:nth-child(odd) {
        margin-bottom: calc(var(--theme-outer-padding) / 2);
    }
    .section-05 .row.lower > .column:nth-child(even) {
        margin-top: calc(var(--theme-outer-padding) / 2);
    }
    .section-05 .row.upper > .title {
        margin: 0 0 calc(var(--theme-outer-padding)* 2);
    }
}
@media screen and (max-width: 576px) {
    .section-05 .column {
        width: 100%;
        margin: 0 !important;
    }
    .section-05 .row.lower {
        gap: var(--theme-outer-padding);
    }
}
/* Section 06
------------------------------------------------------*/
.section-06 {
    padding: var(--theme-section-padding-y) 0;
    text-align: center;
}
.section-06 .container {
    flex-direction: column;
    gap: 45px;
}
.section-06 .row.upper {
    display: block;
}
.section-06 .row.upper > * {
    margin: 5px 0;
}
.section-06 .row.lower {
    justify-content: center;
    gap: 2.25%;
}
.section-06 .column {
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    aspect-ratio: 1 / 1;
    max-width: 210px;
}
.section-06 .column > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media screen and (max-width: 768px) {
    .section-06 .container {
        gap: var(--theme-section-padding-y);
    }
}
@media screen and (max-width: 680px) {
    .section-06 .row.lower {
        gap: 10px;
        width: 100%;
        flex-wrap: wrap;
    }
    .section-06 .column {
        width: calc(50% - 10px / 2);
    }
}
/* Section 07
------------------------------------------------------*/
.section-07 {
    padding: var(--theme-section-padding-y) 0;
}
.section-07 .container {
    flex-direction: column;
    gap: 160px;
}
.section-07 .row.upper > *, .section-07 .row.lower > * {
    display: flex;
    align-items: center;
}
.section-07 .row.upper {
    gap: 19%;
}
.section-07 .row.lower {
    gap: 22.25%;
}
.section-07 .row.upper .column.right {
    min-width: 51.5162%;
}
.section-07 .row.upper .column.right > img {
    width: 100%;
    aspect-ratio: 8 / 7;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.section-07 .row.lower .column.left {
    min-width: 27.2735%;
}
.section-07 .row.lower .column.left > img {
    width: 100%;
    aspect-ratio: 18 / 19;
    height: auto;
    object-fit: cover;
    object-position: center;
}
@media screen and (max-width: 1080px) {
    .section-07 .row.upper, .section-07 .row.lower, .section-07 .container {
        flex-direction: column;
        gap: var(--theme-outer-padding);
        align-items: center;
    }
    .section-07 .row.upper .column.left, .section-07 .row.lower .column.right {
        max-width: 500px;
    }
}
/* Section 08
------------------------------------------------------*/
.section-08 {
    padding: var(--theme-section-padding-y) 0;
    background-color: var(--theme-bg-color);
    z-index: 1;
}
/*.section-08 .container {
    align-items: center;
}*/
.section-08 .column.left, .section-08 .column.middle {
    width: 28.9393%;
}
.section-08 .column.left .title, .section-08 .column.left h2 {
    margin-top: 0;
}
.section-08 .column.right {
    width: 22.7272%;
}
@media screen and (max-width: 1080px) {
    .section-08 .container {
        gap: var(--theme-outer-padding);
        flex-direction: column;
    }
    .section-08 .column {
        width: 100% !important;
        max-width: 500px;
    }
}
/* Section 09
------------------------------------------------------*/
.section-09 {
    padding-top: var(--theme-section-padding-y);
    position: relative;
    overflow: hidden;
}
.section-09 .text-content {
    width: 100%;
}
.section-09 .text-content ul {
    border: 1px solid var(--theme-color-alt);
    padding: 80px !important;
    columns: 3;
    column-gap: 5%;
}
.section-09 .text-content .title, .section-09 .text-content h2 {
    width: fit-content;
    margin: 0 auto -52px;
    padding: 0 50px 25px;
    background: var(--theme-main-bg-color);
    position: relative;
}
@media screen and (max-width: 1080px) {
    .section-09 .text-content ul {
        columns: 2;
        padding: var(--theme-outer-padding) !important;
    }
    .section-09 .text-content .title, .section-09 .text-content h2 {
        margin: 0 auto -37px;
        padding: 0 50px 15px;
    }
}
@media screen and (max-width: 768px) {
    .section-09 .text-content ul {
        columns: 1;
    }
    .main-section .text-content:not(.default-list) ul > li:not(:first-child) {
        margin-top: 10px;
    }
}
@media screen and (max-width: 576px) {
    .section-09 .text-content .title, .section-09 .text-content h2 {
        padding: 0 25px 8px;
        margin: 0 auto -25px;
        font-size: 30px;
    }
}
/* Section 10
------------------------------------------------------*/
.section-10 {
    padding: var(--theme-section-padding-y) 0;
}
.section-10 .container {
    justify-content: center;
    gap: 9.5%;
    position: relative;
}
.section-10 .container:after {
    content: "";
    background: var(--theme-bg-color);
    margin: auto;
    height: 70%;
    max-height: 340px;
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 45px;
    top: 0;
    z-index: -1;
}
.section-10 .column.left {
    display: flex;
    align-items: center;
}
.section-10 .column.right {
    display: flex;
    gap: 55px;
}
.section-10 .discover {
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    aspect-ratio: 79 / 97;
    max-width: 395px;
}
.section-10 .discover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-10 .discover .title {
    margin: auto;
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    width: fit-content;
    height: fit-content;
    color: #fff;
    z-index: 1;
    padding: 20px;
    text-align: center;
}
.section-10 .column.left .title {
    margin-top: 0;
    margin-left: -200px;
}
.section-10 .column.right > .discover:nth-child(odd) {
    margin-bottom: 30px;
}
.section-10 .column.right > .discover:nth-child(even) {
    margin-top: 30px;
}
@media screen and (max-width: 1500px) {
    .section-10 .container {
        gap: 3.5%;
    }
    .section-10 .container:after {
        width: 90%;
    }
    .section-10 .column.left .title {
        margin-left: -100px;
    }
}
@media screen and (max-width: 1300px) {
    .section-10 .column.left .title {
        margin-left: -10px;
    }
    .section-10 .discover {
        width: 40%;
    }
    .section-10 .discover .title {
        font-size: 40px;
    }
}
@media screen and (max-width: 1080px) {
    .section-10 .column.left .title {
        margin-left: 20px;
    }
    .section-10 .column.right {
        gap: 7%;
    }
    .section-10 .container {
        flex-direction: column;
    }
    .section-10 .column.left .title {
        margin-bottom: 80px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .section-10 .column.left .title:after {
        left: 0;
        right: 0;
        margin: 20px auto auto;
    }
    .section-10 .column.right {
        justify-content: center;
    }
    .section-10 .container:after {
        width: 100%;
        left: 0;
    }
}
@media screen and (max-width: 768px) {
    .section-10 .column.left .title {
        margin-bottom: 55px;
    }
    .section-10 .column.right > .discover {
        margin: 0 !important;
        width: calc(100% - var(--theme-outer-padding)* 2);
    }
    .section-10 .column.right {
        flex-direction: column;
        gap: var(--theme-outer-padding);
        align-items: center;
    }
    .section-10 .container:after {
        max-height: unset;
        height: 90%;
    }
    .section-10 .discover .title {
        font-size: 38px;
        line-height: 35px;
    }
}
/* Section 11
------------------------------------------------------*/
.section-11 {
    padding-top: var(--theme-section-padding-y);
    padding-bottom: 150px;
}
.section-11.alt {
    padding-bottom: 100px;
}
.section-11 .container {
    justify-content: center;
    position: relative;
    text-align: center;
}
.section-11 .text-content h1:after {
    position: relative;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 45px;
}
@media screen and (max-width: 1080px) {
    .section-11 .text-content h1:after {
        margin-top: 25px;
    }
    .section-11, .section-11.alt {
        padding-bottom: var(--theme-section-padding-y);
    }
}
@media screen and (max-width: 768px) {
    .section-11, .section-11.alt {
        padding: calc(var(--theme-section-padding-y)* 2) 0;
    }
}
@media screen and (max-width: 576px) {
    .section-11, .section-11.alt {
        padding: calc(var(--theme-section-padding-y)* 1.5) 0;
    }
}
/* Section 12
------------------------------------------------------*/
.section-12.alt {
    padding-bottom: var(--theme-section-padding-y);
}
.section-12 .container {
    flex-direction: column;
    gap: var(--theme-section-padding-y);
}
.section-12 .row {
    gap: 6.75%;
    align-items: center;
}
.section-12 .buttons {
    display: flex;
    align-items: center;
    gap: 11.6%;
}
.section-12 .container > .row:nth-child(even) > .column.first {
    order: 1;
}
.section-12 .column.second .text-content .title, .section-12 .column.second .text-content h2 {
    margin: 0;
}
.section-12 .column.second .text-content .subtitle {
    margin-top: -2px;
    display: block;
}
.section-12 .column.second .text-content > hr {
    margin: 35px 0;
}
.section-12.alt .column.second .text-content > hr {
    margin: 15px 0 20px;
}
.section-12 .column.first {
    min-width: 49.2424%;
    width: 49.2424%;
}
.section-12 .column.first:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--theme-bg-color);
    position: absolute;
    z-index: -1;
    top: -50px;
    left: -50px;
}
.section-12 .container > .row:nth-child(even) > .column.first:before {
    left: unset;
    right: -50px;
}
.section-12 .img-link {
    position: relative;
    overflow: hidden;
    display: block;
    opacity: 1 !important;
}
.section-12 .img-link > img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}
@media screen and (max-width: 1080px) {
    .section-12 .column.first:before {
        top: -25px;
        left: -25px;
    }
}
@media screen and (max-width: 880px) {
    .section-12 .column.first:before {
        top: -25px;
        left: -25px;
    }
    .section-12 .row {
        gap: var(--theme-outer-padding);
        flex-direction: column;
    }
    .section-12 .row .column.second {
        max-width: 500px;
        overflow: hidden;
    }
    .section-12 .container > .row:nth-child(even) > .column.first {
        order: revert;
    }
    .section-12 .img-link {
        aspect-ratio: 65 / 43;
    }
    .section-12 .img-link > img {
        height: 100%;
    }
    .section-12 .column.first {
        min-width: unset;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .section-12 .column.second .text-content > hr {
        margin: 25px 0 !important;
    }
}
@media screen and (max-width: 576px) {
    .section-12 .column.second .text-content > hr {
        margin: 20px 0 !important;
    }
    .section-12 .column.second .text-content > p {
        margin: 20px 0;
    }
    .section-12 .buttons {
    gap: 9%;
}
    .section-12 .column.first:before {
        top: -15px;
        left: -15px;
    }    .section-12 .buttons .btn{
        font-size: 14px;
        padding: 8px 18px;
        height: 40px;
    }

}
@media screen and (max-width: 420px) {
    .section-12 .column.second .text-content .subtitle {
        margin-top: 2px !important;
    }
}
/* Section 13
------------------------------------------------------*/
.section-13 {
    padding: var(--theme-section-padding-y) 0;
}
.anchor.smaller .section-13 {
    padding-top: 90px;
}
.text-content.default-list h2, .contact-section.complaints h2 {
    line-height: 1.15;
    font-size: 33px;
}
.section-13.alt {
    padding-bottom: 0;
}
.smaller .section-13.alt {
    padding-bottom: var(--theme-section-padding-y);
}
.section-13 .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
}
.section-13:not(.alt) .container {
    max-width: 785px;
    margin: 0 auto;
}
.section-13.alt .container .text-content {
    columns: 2;
    column-gap: 5%;
    text-align: left;
}
.section-13 .title {
    margin: 0;
}
.section-13 .title:after {
    content: none;
}
.section-13 .page-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.section-13 .page-details .details {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.section-13 .page-details .details .guests:before {
    content: "";
    background: url("images/person.svg") center / contain no-repeat;
    min-width: 21px;
    min-height: 21px;
    display: inline-block;
}
.section-13 .page-details .details .size:before {
    content: "";
    background: url("images/size.svg") center / contain no-repeat;
    min-width: 24px;
    min-height: 24px;
    display: inline-block;
}
.section-13 .page-details .details .guests, .section-13 .page-details .details .size {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section-13 .btn {
    margin: auto;
    min-width: 195px;
}
.section-13 .page-details:after {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.text-content.room h3{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 15px;
        color: var(--theme-color-alt);
}
.text-content.room ul li{
    display: inline-block !important;
    padding-left: 20px;
    margin-right: 10px;
position: relative;
}
.text-content.room ul li:before{
    position: absolute;
    left: 0;
}
@media screen and (max-width: 880px) {
    .section-13:not(.alt) .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
    .section-13 .container {
        gap: var(--theme-outer-padding);
    }
    .section-13 .page-details .details {
        font-size: 20px;
    }
    .section-13 .page-details .details .guests:before {
        min-width: 18px;
        min-height: 18px;
    }
    .section-13 .page-details .details .size:before {
        min-width: 20px;
        min-height: 20px;
    }
    .section-13.alt .container .text-content {
        columns: 1;
    }
    .anchor.smaller .section-13 {
    padding-top: 40px !important;
}
}
/* Section 14
------------------------------------------------------*/
.section-14 .container {
    flex-direction: column;
    gap: 80px;
}
.section-14 .offer {
    background: var(--theme-bg-color);
    padding: 30px;
    display: flex;
    gap: 5.5%;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.section-14 .offer .offer-photo {
    object-fit: cover;
    object-position: center;
    max-width: 32%;
}
.section-14 .offer .offer-info > h2 {
    margin: 0;
}
.section-14 .offer .offer-info > hr {
    margin-top: 20px;
}
.section-14 .offer .offer-price {
    line-height: 1.1;
    text-align: center;
    margin-left: auto;
}
.section-14 .offer .offer-details > strong {
    color: var(--theme-color-alt);
    font-weight: 400;
}
.section-14 .offer .offer-button {
    white-space: nowrap;
    text-transform: none;
}
.section-14 .offer .offer-price strong {
    color: var(--theme-color-alt);
}
@media screen and (max-width: 1080px) {
    .section-14 .container {
        gap: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 880px) {
    .section-14 .offer {
        flex-direction: column;
        gap: 30px;
    }
    .section-14 .offer .offer-photo {
        max-width: 100%;
        width: 100%;
    }
    .section-14 .offer .offer-price {
        margin: 0 auto;
    }
    .section-14 .offer .offer-price > p {
        margin-top: 0;
    }
    .section-14 .offer .offer-info {
        width: 100%;
    }
}
/* Section 15
------------------------------------------------------*/
.section-15 {
    padding: var(--theme-section-padding-y) 0;
}
.section-15 .container {
    justify-content: center;
    align-items: center;
    gap: 10.5%;
}
.section-15 .column.left {
    min-width: 39.3939%;
}
.section-15 .column.left img {
    width: 100%;
    aspect-ratio: 52 / 37;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.section-15 .column.right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 30.8333%;
}
@media screen and (max-width: 1080px) {
    .section-15 .container {
        gap: 7.5%;
    }
}
@media screen and (max-width: 880px) {
    .section-15 .container {
        flex-direction: column;
        gap: var(--theme-outer-padding);
    }
    .section-15 .column.right {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 500px;
    }
}
/* Map
------------------------------------------------------*/
.map {
    width: 100%;
    max-height: 730px;
    min-height: 400px;
    aspect-ratio: 192 / 73;
}
/* Contact Section
------------------------------------------------------*/
.contact-section {
    padding-bottom: var(--theme-section-padding-y);
}
.contact-section .container {
    max-width: 1052px;
    justify-content: center;
    gap: 2%;
    margin-left: auto;
    margin-right: auto;
}
.contact-section .container > .column {
    width: 50%;
}
.contact-section .column.left {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.contact-section .column.left .text-content > p {
    margin: 15px 0;
}
.contact-section .column.left .text-content > p > a[href^="tel:"]:not(:first-child) {
    margin-left: 23px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea {
    background: none;
    border: none;
    border-bottom: 1px solid var(--theme-color-alt);
    padding-bottom: 10px;
    outline: none;
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
}
.contact-form textarea {
    resize: none;
    height: 200px;
}
.contact-section .form-group > label {
    position: absolute;
    text-indent: -9999px;
    overflow: hidden;
    width: 0;
}
.contact-button {
    min-width: 170px;
    text-transform: none;
    margin-top: 35px;
}
@media screen and (max-width: 1212px) {
    .contact-section .container {
        margin-left: var(--theme-outer-padding);
        margin-right: var(--theme-outer-padding);
    }
}
@media screen and (max-width: 880px) {
    .contact-section .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: calc(var(--theme-outer-padding)*2);
    }
    .contact-section .column.left {
        align-items: center;
    }
    .contact-button {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-section .container > .column {
        width: 100%;
        max-width: 500px;
    }
    .contact-section .container > .column > img {
        max-width: 100%;
    }
    .contact-section .column.left .social {
        margin: 0;
    }
}
@media screen and (max-width: 576px) {
    .contact-section .column.left {
        gap: var(--theme-outer-padding);
    }
}
/* =Complaints
------------------------------------------------------*/
.contact-section.complaints{
    margin-top: -130px;
}
.contact-section.complaints .container{
    max-width: 1380px;
    gap: 80px;
            padding-left: var(--theme-outer-padding);
        padding-right: var(--theme-outer-padding);
    margin-left: auto;
    margin-right: auto;
}
.contact-section.complaints .column.left .text-content > p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.contact-section.complaints .column.left .text-content li{
    line-height: 1.6;
    margin: 5px 0;
}
.contact-section.complaints .right h2{
    margin-top: 20px !important; 
}
/* =Contact Form 7 CSS
------------------------------------------------------*/
.wpcf7-not-valid-tip, .screen-reader-response {
    display: none !important;
}
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
    opacity: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
    opacity: 1;
    background: #004A01;
    color: #fff;
    padding: 6px 12px;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output, .wpcf7 form.spam .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    opacity: 1;
    background: #921013;
    color: #fff;
    padding: 6px 12px;
}
form.wpcf7-form input.wpcf7-not-valid, form.wpcf7-form select.wpcf7-not-valid, form.wpcf7-form textarea.wpcf7-not-valid {
    border-bottom: 2px solid #840002;
}
.wpcf7-form-control-wrap {
    position: relative;
}
.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #333;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 0 0 40px;
    position: absolute;
    left: 140px;
    top: 45px;
}
form.submitting .wpcf7-spinner {
    visibility: visible;
}
.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc; /* Light Gray 100 */
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
    .wpcf7-spinner::before {
        animation-name: blink;
        animation-duration: 2000ms;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes blink {
    from {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.wpcf7 input[type="file"] {
    cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
    cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
}
a.post-edit-link {
    background: #F00;
    color: #fff !important;
    font-size: 14px;
    float: right;
    padding: 8px 15px;
    display: inline-block;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1000;
}
.sbi_resized_image_data, #sbi_load {
    display: none !important;
}
/* =Cookies Popup
-----------------------------------------------*/
#cookie-law-info-bar {
    box-sizing: border-box;
    max-width: 325px !important;
    width: calc(100% - 24px) !important;
    bottom: 12px !important;
    right: 12px !important;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px !important;
}
#cookie-law-info-bar .small {
    animation: none;
    -webkit-animation: none;
}
#cookie-law-info-again {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: none;
    box-shadow: #ddd 2px 2px 10px 2px !important;
}
.cli-modal .cli-modal-dialog {
    font-size: 14px !important;
}
.cli-modal-body * {
    font-size: 14px !important;
}
#cookie-law-info-bar a {
    font-weight: 600 !important;
}
#cookie-law-info-bar a:hover {
    opacity: 0.8;
}
.wt-cli-cookie-bar-container * {
    font-size: 13px !important;
    font-weight: normal;
}
.cli-tab-container h4 {
    font-size: 16px !important;
}
.cli-bar-message {
    font-size: 13px !important;
    line-height: 1.3;
}
.wt-cli-element.cli_user_consent_state {
    margin-bottom: 1.5em;
}
h5.cli_cookie_category_single_hd {
    font-size: 1.171em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.wt-cli-element.cli_cookie_category_single {
    border: none;
}
.cli_cookie_category_single {
    margin-bottom: 1em;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5em;
}
table.cookielawinfo-classic * {
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    color: #767068 !important;
}
table.cookielawinfo-classic tr.cookielawinfo-row-cat-title th, table.cookielawinfo-classic thead tr th {
    font-size: 14px !important;
}
table.cookielawinfo-classic {
    margin-bottom: 2em;
    font-family: "Source Sans 3", sans-serif !important;
}
table.cookielawinfo-classic td {
    padding: 6px 9px !important;
}
table.cookielawinfo-classic th {
    padding: 6px 9px !important;
}
.cookielawinfo-column-1 {
    width: 25% !important;
}
.cookielawinfo-column-3 {
    width: 15% !important;
}
.cookielawinfo-column-4 {
    width: 60% !important;
}
.cookielawinfo-row-cat-table {
    margin-left: 0 !important;
}
@media only screen and (max-width: 420px) {
    table.cookielawinfo-classic * {
        font-size: 13px !important;
    }
    #cookie-law-info-bar {
        max-width: 100% !important;
    }
}

@media screen and (max-width:1680px) {
.anchor.smaller .section-13 {
    padding-top: 70px;
}
}
@media screen and (max-width:1080px) {
.contact-section.complaints {
    margin-top: -30px;
}
    .contact-section.complaints .container {
    gap: 50px;
        text-align: left;
    }
    .contact-section.complaints .container > .column{
        max-width: 100%; 
    }
    .text-content.default-list h2, .contact-section.complaints h2 {
        font-size: 27px;
    }
}

/* =Video hide for mobile - small tablet
-----------------------------------------------*/
@media screen and (max-width:1024px) {
    .hero .video video, .hero .video .spinner, .hero .video .status {
        display: none;
    }
}
@media (orientation: landscape) and (max-width:1024px) {
    .hero .video {
        background: url(images/tablet.jpg) center left 20% no-repeat;
        background-size: cover;
    }
}
@media (orientation: portrait) and (max-width:1024px) {
    .hero .video {
        background: url(images/mobile.jpg) center left 20% no-repeat;
        background-size: cover;
    }
}
