/* Table of Content ================================================== #Font-Face #Site Styles #Media Queries */
/* #Font-Face ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('../fonts/jeko/stylesheet.css');
/*@import url('../fonts/gt-super/stylesheet.css');*/

/* #Site Styles ================================================== */
:root {
    --location-color: var(--pure-info-color);
    --blue-100: #171D2D;
    --blue-30: #B5BAC9;
    --blue-10: #F0F1F4;
    --red-100: #9D2001;
    --pure-dark-color: #4F5661;
    --pure-white-color: #fff;
    --pure-black-color: #000;
    --pure-light-color: #fff;
    --pure-border-color: #e4e4e7;
    --pure-intro-color: #648e89;
    --pure-slate-color: #bcbcc0;
    --pure-alt-color: #3f3f46;
    --pure-sec-color: var(--blue-100);
    --pure-info-color: #9D2001;
    --pure-green-color: #adab9a;
    --pure-hover-color: #575540;
}

/* ### general ### */
html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
//color: var(--pure-dark-color);
    color: var(--pure-sec-color);
}

body {
    background: var(--pure-white-color);
    overflow-x: clip;
}

body.scroll-hidden {
    overflow: hidden;
}

section {
    scroll-margin-top: 100px;
}

input,
select,
textarea {
    /*margin-bottom: 0 !important;*/
    /*padding: 10px 28px !important;*/
    /*width: 100% !important;*/
    /*height: 40px !important;*/
    /*font-family: 'Poppins', sans-serif;*/
    /*font-size: 13px !important;*/
    /*color: var(--pure-black-color) !important;*/
    /*border: 0 !important;*/
    /*background-color: var(--pure-light-color) !important;*/
    /*box-shadow: none !important;*/
}

textarea {
    min-height: 100px;
}

input::placeholder,
textarea::placeholder {
    color: var(--pure-alt-color);
}

input:focus,
textarea:focus {
    border: 0;
    box-shadow: none;
}

input[type='radio'],
input[type='checkbox'] {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 15px !important;
    height: 15px !important;
    border: 1px solid var(--pure-sec-color) !important;
    border-radius: 1px !important;
    background-color: transparent !important;
    -webkit-appearance: none;
}

input[type='radio']:checked:before,
input[type='checkbox']:checked:before {
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 1px;
    background-color: var(--pure-sec-color);
    content: '';
}

img {
    display: block;
    max-width: 100%;
    border: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

a:not([href]) {
    cursor: auto;
}

a[next-venue-open] {
    cursor: pointer;
}

p {
    margin-bottom: 20px;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    color: var(--blue-100);
    text-transform: uppercase;
}

.h1,
h1 {
    font-size: 4rem;
    font-weight: 500;
    text-transform: uppercase;
}

.h2,
h2 {
    font-size: 3.625rem;
}

.h3,
h3 {
    font-size: 2.625rem;
}

.h4,
h4 {
    font-size: 2.375rem;
}

.h5,
h5 {
    font-size: 2rem;
}

.h6,
h6 {
    font-size: 1.375rem;
}

/* ### global classes ### */
.clear {
    visibility: hidden;
    clear: both;
    height: 0;
    line-height: 0;
}

.grid-container {
    max-width: 1070px;
}

.grid-container-xl {
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    max-width: 1420px;
}

.link {
    font-size: 2.375rem;
    line-height: 120%;
    color: var(--pure-info-color);
    transition: all 0.3s;
}

.link i {
    margin-top: -7px;
    margin-left: 3px;
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    transition: all 0.3s;
}

.link:hover {
    color: var(--pure-info-color);
}

.link:hover i {
    margin-left: 10px;
}

.holder {
    display: flex;
    flex-wrap: wrap;
}

.button {
    padding: 10px 22px;
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pure-white-color);
    border: 0;
    border-radius: 0;
    background-color: var(--pure-info-color);
    transition: all 0.3s;
}

.button:focus,
.button:hover {
    text-decoration: none;
    color: var(--pure-white-color);
    background-color: var(--pure-alt-color);
}

.button:disabled {
    color: var(--pure-slate-color);
    background-color: var(--pure-border-color);
}

.button.secondary {
    color: var(--blue-100);
    border: 1px solid var(--pure-dark-color);
    background-color: transparent;
}

.button.secondary:focus,
.button.secondary:hover {
    color: var(--blue-100);
    border: 1px solid var(--pure-dark-color);
    background-color: var(--pure-border-color);
}

.button.secondary:disabled {
    color: var(--pure-white-color);
    border: 1px solid var(--pure-border-color);
    background-color: var(--pure-border-color);
}

.button.success {
    color: var(--pure-white-color);
    background-color: rgba(18, 18, 18, 0.9);
    mix-blend-mode: overlay;
}

.button.success:hover {
    text-decoration: underline;
    color: var(--pure-white-color);
    background-color: rgba(18, 18, 18, 0.9);
    mix-blend-mode: overlay;
}

.button.success:focus {
    text-decoration: underline;
    color: var(--pure-white-color);
    background-color: rgba(18, 18, 18, 0.2);
}

.button.success:disabled {
    color: var(--pure-slate-color);
    background-color: var(--pure-border-color);
    mix-blend-mode: unset;
}

.button.hollow {
    color: var(--pure-white-color);
    background-color: rgba(18, 18, 18, 0.25);
    mix-blend-mode: multiply;
}

.button.hollow:hover {
    background-color: rgba(18, 18, 18, 0.3);
}

.button.hollow:focus {
    background-color: rgba(18, 18, 18, 0.4);
}

.button.hollow:disabled {
    color: var(--pure-slate-color);
    background-color: var(--pure-border-color);
    mix-blend-mode: multiply;
}

.button.outline {
    color: var(--pure-white-color);
    border: 1px solid var(--pure-white-color);
    background-color: transparent;
}

.button.outline:focus {
    color: var(--pure-white-color);
    border: 1px solid var(--pure-dark-color);
    background-color: var(--pure-dark-color);
}

.button.outline:hover {
    color: var(--pure-white-color);
    border: 1px solid var(--pure-alt-color);
    background-color: var(--pure-alt-color);
}

.button.outline:disabled {
    color: var(--pure-slate-color);
    border: 1px solid var(--pure-border-color);
    background-color: var(--pure-border-color);
}

a.button.arrow {
    padding: 15px 84px 15px 22px;
    position: relative;

    &::after {
        content: '';
        /* In de website moet de url /assets/templates/images/icon-arrow.svg zijn*/
        background-image: url("/assets/templates/images/icon-arrow.svg");
        width: 40px;
        height: 16px;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translate(0px, -50%);
    }

    &:hover {
        padding-right: 94px;
        background-color: var(--red-100);
        color: var(--pure-white-color);
        border-color: var(--red-100);

        &::after {
            background-image: url("/assets/templates/images/icon-arrow-white.svg");
        }
    }

    &.white {
        &::after {
            background-image: url("/assets/templates/images/icon-arrow-white.svg");
        }
    }
}

/* ### wrapper ### */
#wrapper {
    padding-top: 106px;
    position: relative;
    display: block;
    width: 100%;
    min-height: 100%;
}

/* ### main container ### */
#mainCntr {
    width: 100%;
}

/* ### header container ### */
#headerCntr {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    background-color: var(--pure-white-color);
    transition: all 0.3s;
    padding: .5em 0;
    height: 106px;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 2px 8px 0 rgba(121, 132, 149, 0.15);

    .mobile-logo {
        display: none;
        transition: all .2s ease-in;

        @media (width <= 1024px) {
            display: block;
        }
    }
    @media (width <= 1024px) {
        .desktop-logo {
            display: none;
        }
    }


    &.trans-hidden {
        transform: translateY(-100%);
        opacity: 0;
    }

    &.scrolling-active {
        .logo {
            .desktop-logo {
            //display: none;
            }

            .mobile-logo {
            //display: block;
                width: 80px;

                @media (width >= 1024px) {
                    top: 7px;
                }
            }
        }
        .menuBox ul > li {
            span::after {
                bottom: -42px;
            }
        }

        .right {
            top: 0;
        }
    }

    .mobile-menu {
        padding: 0 40px 80px 40px;
        display: none;

        button {
            display: block;
            width: 100%;
            padding: 11px 23px;
            margin-top: 48px;
        }

        .contact-details {
            margin-top: 97px;

            img {
                width: 98px;
                margin-bottom: 30px;
            }

            .heading {
                font-weight: 500;
                line-height: 1.4;
                color: var(--blue-100);
                font-size: 1.5rem;
                margin-bottom: 8px;
            }

            address {
                margin-bottom: 61px;
                font-style: normal;
                line-height: 2;
                color: var(--pure-sec-color);
            }

            ul.settings {
                margin-bottom: 44px;

                li {
                    line-height: 2.9;

                    a {
                        color: var(--pure-sec-color);
                        font-size: 1rem;
                        text-transform: none;
                        letter-spacing: 0;

                        i {
                            width: 26px;
                            font-size: 1.15rem;
                            top: -1px;
                            position: relative;
                            left: -2px;
                            margin-left: 12px;
                        }
                    }
                }
            }

            .social-media {
                display: flex;
                flex-wrap: wrap;
                margin-left: -2px;

                > li {
                    margin-right: 31px;

                    a {
                        font-size: 2.2rem;
                        color: var(--pure-sec-color);
                        transition: all 0.3s;

                        i {
                            color: #8F817B;
                        }

                        &:hover {
                            color: var(--location-color);
                            background-color: unset;
                        }
                    }
                }
            }

            .settings {
                li {
                    a {
                        color: var(--pure-sec-color);

                        i {
                            color: var(--pure-sec-color);
                        }
                    }
                }
            }
        }
    }

    &.active {
        /*background-color: #F5F3F3;*/

        .logo {
            opacity: 0;
            visibility: hidden;
        }
    }

    @media (width <= 640px) {
        &.scrolling-active {
            .desktop-logo {
                display: none;
                opacity: 0;
                transition: all .2s ease-in;
                transform: scale(0);
            }

            .mobile-logo {
                display: block;
                opacity: 1;
                position: static;
                padding-block: 16px;
            }

            .logo {
                margin-top: 0;
            }
        }
    }
}

#headerCntr:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: none;
    width: 100%;
    height: 100%;
    background-color: var(--pure-light-color);
    content: '';
}

#headerCntr .holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#headerCntr .left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    padding-right: 20px;
}

#headerCntr .logo {
    position: relative;
    z-index: 4;
    margin-top: -13px;

    img {
        top: 25px;
        position: relative;

        @media (width <= 768px) {
            top: 35px;
        }
    }
}

#headerCntr .right {
    width: 30%;
    position: relative;
}

#headerCntr .right ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

#headerCntr .tel {
    margin-right: 40px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--pure-sec-color);
    transition: all 0.3s;
}

#headerCntr .tel i {
    margin-top: -5px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

#headerCntr .tel i img {
    display: inline-block;
}

#headerCntr .tel:hover {
    color: var(--pure-info-color);
}

#headerCntr .button {
    margin-bottom: 0;
    padding: 8px 23px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    background-color: var(--pure-info-color);
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    line-height: 1.5;
    border: 1px solid var(--pure-info-color);
}

#headerCntr .button:hover,
#headerCntr .button:focus {
    /*opacity: 0.8;*/
    color: var(--pure-info-color);
    background-color: var(--pure-white-color);
}

#headerCntr.inner .tel:hover {
    color: var(--pure-green-color);
}

#headerCntr.inner .menuBox ul > li:after {
    background-color: var(--pure-green-color);
}

#headerCntr.inner .menuBox ul > li > a:hover {
    color: var(--pure-green-color);
}

#headerCntr.inner .button {
    color: var(--pure-sec-color);
    background-color: var(--pure-green-color);
}

#headerCntr.inner .button:hover {
    text-decoration: underline;
    color: var(--pure-white-color);
    background-color: var(--pure-green-color);
}

#headerCntr.inner .left {
    width: 62%;
}

#headerCntr.inner .right {
    width: 38%;
}

/* ### menu box ### */
.menuBox {
    padding-left: 72px;
}

.menuBox ul {
    margin-left: 0;
}

.menuBox ul > li {
    margin-right: 35px;
    padding-top: 18px;
    padding-bottom: 18px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;

    &.active a {
        position: relative;

        /*&:after {*/
        /*    position: absolute;*/
        /*    content: '';*/
        /*    bottom: -40px;*/
        /*    left: 0;*/
        /*    width: 100%;*/
        /*    height: 4px;*/
        /*    background: var(--pure-info-color);*/
        /*}*/
    }
}

.menuBox ul > li span {
    position: relative;

    &::after {
        position: absolute;
        bottom: -43px;
        left: 0;
        width: 0;
        height: 4px;
        background-color: var(--pure-info-color);
        transition: all 0.3s;
        content: '';
    }


    @media (width < 1024px) {
        &::after {
            bottom: -8px;
        }
    }
}

.menuBox ul > li:hover span::after,
.menuBox ul > li.active span::after {
    width: 100%;
}

.menuBox ul > li:hover ul {
    opacity: 1;
    visibility: visible;
}

.menuBox ul > li:last-child {
    margin-right: 0;
}

.menuBox ul > li > a {
    font-weight: 400;
    color: var(--pure-sec-color);
    transition: all 0.3s;
    text-transform: uppercase;
}

.menuBox ul > li > a i {
    margin-left: 5px;
    display: none;
    color: var(--pure-sec-color);
}

.menuBox ul > li > a:hover,
.menuBox ul > li.active > a {
    color: var(--pure-info-color);
}

.menuBox ul > li > ul {
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 150px;
    background-color: var(--pure-white-color);
    transition: all 0.3s;
}

.menuBox ul > li > ul > li {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
}

.menuBox ul > li > ul > li:after {
    display: none;
}

.menuBox ul.d-hidden {
    display: none;
}

/* ### mobileMenu ### */
.mobileMenu {
    padding-right: 30px;
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 15;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--pure-sec-color);
    border-radius: 0;
    transform: translateY(-50%);
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.mobileMenu em {
    font-style: normal;
}

.mobileMenu samp {
    display: none;
    font-family: 'Poppins', sans-serif;
}

.mobileMenu span {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 25px;
    height: 1px;
    border-radius: 0;
    background: var(--red-100);
    transform: translateX(-50%) translateY(-50%);
    transition: 0.2s;
}

.mobileMenu span:before,
.mobileMenu span:after {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 0;
    background-color: var(--red-100);
    transition-duration: 0.2s, 0.2s;
    content: '';
}

.mobileMenu span:before {
    top: -8px;
}

.mobileMenu span:after {
    bottom: -8px;
}

.mobileMenu:hover {
    color: var(--pure-sec-color);
}

.mobileMenu.active span {
    background: none;
}

.mobileMenu.active span{
    right: 0;
}

.mobileMenu.active span:before,
.mobileMenu.active span:after {
    transition-delay: 0s, 0.2s;
}

.mobileMenu.active span:before {
    top: 0;
    transform: rotate(45deg);
}

.mobileMenu.active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobileMenu.active em {
    display: none;
}

.mobileMenu.active samp {
    display: block;
}

/* ### content container ### */
#contentCntr {
    width: 100%;
}

/* ### hero box ### */
.heroBox {
    /* height: 694px; */
}

.heroBox img {
    width: 100%;
    max-height: 694px;
    height: 694px;
    object-fit: cover;
    object-position: center;
    min-height: 320px;

    @media (width <= 768px) {
        height: 300px;
    }
}

/* ### banner box ### */
.bannerBox {
    margin-bottom: 67px;
    padding-top: 50px;
}

.bannerBox img {
    width: 100%;
}

.swiper-pagination {
    position: relative;
    top: 5px !important;

    .swiper-pagination-bullet-active {
        background: #75645D;
    }
}

/* ### location box ### */
.locationBox {
    padding-block: 92px 70px;
    position: relative;
    background-color: var(--blue-100);

    &.has-locations {
        padding-block: 77px 92px;
        background-color: var(--pure-white-color);

        h2.h1 {
            font-size: 3rem;
            margin-bottom: 51px;
            line-height: 120%;
            color: var(--blue-100);

            + .paragraph {
                font-size: 1rem;
                color: var(--blue-100);
                padding-left: 178px;
                font-weight: 400;

                p {
                    line-height: 1.8;
                }
            }
        }

        .content {
            margin-bottom: 0;
        }
    }

    &.text-only {
        background-color: var(--pure-white-color);
        padding-block: 77px 92px;

        @media only screen and (max-width: 640px) {
            padding-block: 0 80px;
        }

        .h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--blue-100);
            font-weight: 600;

            @media only screen and (max-width: 640px) {
                font-size: 2rem;
            }
        }

        .h2 {
            color: var(--red-100);
            margin-bottom: 0;
            letter-spacing: .5px;
        }

        div.paragraph {
            font-size: 1rem;
            color: var(--blue-100);
            padding-left: 178px;
            margin-top: 51px;

            @media only screen and (max-width: 640px) {
                margin-top: 14px;
                padding-left: 0;
            }

            p {
                line-height: 1.8;
                margin-bottom: 0;
            }
        }
    }

    .button {
        margin-bottom: 0;
        margin-top: 16px;
        padding: 11px 23px;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: #fff;
        /* background-color: var(--pure-info-color); */
        cursor: pointer;
        border-radius: 8px;
        text-transform: uppercase;
        line-height: 1.5;
        border: 1px solid var(--pure-info-color);

        &:hover,
        &:focus {
            color: var(--pure-info-color);
            background-color: var(--pure-white-color);
        }
    }
}

.locationBox .content {
    /*margin-bottom: 100px;*/
    position: relative;
    z-index: 2;
    /*max-width: 870px;*/
}

.locationBox h2,
.locationBox h1 {
    color: var(--pure-white-color);
    line-height: 120%;
    margin-bottom: 17px;
    letter-spacing: 1px;

    @media only screen and (max-width: 640px) {
        font-size: 2.25rem;
    }
}

.locationBox .h2 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 66px;
    color: var(--blue-30);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 120%;
}

.locationBox h3,
.locationBox .h3 {
    margin-bottom: 29px;
    font-weight: 300;
    color: var(--pure-sec-color);

    +.paragraph {
        margin-top: 40px;
    }
}

.locationBox .paragraph {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 180%;
    color: var(--pure-white-color);
    padding-left: 348px;
    /* max-width: 950px; */
    letter-spacing: 0.5px;

    p {
        line-height: 1.8;
        margin-bottom: 0;
    }
}

.locationBox .holder .swiper-wrapper {
    /*margin: 0 -5px;*/
    position: relative;
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr 1fr;*/
    /*gap: 16px;*/
}

.locationBox .column {
    /*padding: 0 5px;*/
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
}

.locationBox.inner .card-location.active,
.locationBox.inner .card-location:hover {
    background-color: var(--pure-green-color);
}

.locationBox.inner .card-location:hover .button {
    color: var(--pure-white-color);
    border: 1px solid rgba(18, 18, 18, 0.9);
    background-color: rgba(18, 18, 18, 0.9);
    mix-blend-mode: overlay;
}

/* ### card-location ### */
.card-location {
    position: relative;
    z-index: 2;
    /*display: block;*/
    height: 100%;
    background-color: var(--pure-white-color);
    transition: all 0.3s;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #E1E3E9;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;

    .image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.card-location .image img {
    /*width: 100%;*/
}

.card-location .text {
    padding: 32px 23px 0 23px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-location h4,
.card-location .h4 {
    margin-bottom: 1px;
    color: var(--pure-info-color);

    + p {
        color: var(--pure-sec-color);
        margin-bottom: 34px;
    }
}

.card-location h5,
.card-location .h5 {
    margin-bottom: 20px;
    color: var(--pure-sec-color);
}

.card-location p {
    line-height: 1.8;
    color: var(--pure-sec-color);
    margin-top: 15px;
}

.card-location .btn {
    width: 100%;
    margin-top: auto;
}

.card-location .button {
    margin-bottom: 0;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    border-radius: 8px;
    border: 1px solid var(--pure-info-color);
    color: var(--pure-info-color);

    &:hover, &:focus {
        background-color: var(--pure-info-color) !important;
        border-color: var(--pure-info-color);
        color: #fff;
    }
}

.card-location .button i {
    margin-top: -5px;
    display: inline-block;
    font-size: 24px;
    vertical-align: middle;
}

.card-location:hover .button {
    background-color: transparent;
}

.card-location.green:hover .button {
    color: var(--pure-white-color);
    background-color: rgba(18, 18, 18, 0.9);
    mix-blend-mode: overlay;
}

/* ### facilities box ### */
.facilitiesBox {
    margin-bottom: 75px;
    padding-top: 75px;
    overflow: hidden;
}

.facilitiesBox .wrap {
    margin: 0 auto;
    position: relative;
    max-width: 1440px;
}

.facilitiesBox .link {
    margin-bottom: 12px;
}

.facilitiesBox h3,
.facilitiesBox .h3 {
    margin-bottom: 88px;
    font-weight: 300;
}

.facilitiesBox .holder {
    margin: 0 -5px;
}

.facilitiesBox .column {
    margin-bottom: 20px;
    padding: 0 5px;
    width: 50%;
}

.facilitiesBox .slick-list {
    margin: 0 -5px;
}

.facilitiesBox .slide {
    padding: 0 5px;
}

.facilitiesBox .slick-arrow {
    margin-top: -182px;
    position: absolute;
    top: 50%;
    z-index: 3;
    opacity: 1;
    width: 64px;
    height: 64px;
    font-size: 30px;
    color: var(--pure-info-color);
    border: 0;
    border-radius: 50%;
    background-color: var(--pure-white-color);
    cursor: pointer;
}

.facilitiesBox .slick-arrow.slick-disabled {
    opacity: 0;
}

.facilitiesBox .next-arrow {
    right: 44px;
}

.facilitiesBox .prev-arrow {
    left: 44px;
}

.facilitiesBox .btn .button {
    margin-bottom: 0;
    padding: 12px 26px;
}

.facilitiesBox.inner {
    margin-bottom: 75px;
    padding-top: 0;
}

.facilitiesBox.inner-1 {
    margin-bottom: 0;
    padding-top: 0;
}

.facilitiesBox.inner-2 {
    margin-bottom: 28px;
    padding-top: 0;
}

/* ### card-facilities ### */
.card-facilities .image {
    position: relative;
}

.card-facilities .image:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    content: '';
}

.card-facilities .image img {
    width: 100%;
}

.card-facilities .play-video {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: 2.813rem;
    color: #fff;
    border-radius: 50%;
    background-color: #8F817B;
    border: 3px solid #fff;
}

.card-facilities .title {
    padding: 20px 15px 27px 110px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.card-facilities .title h2,
.card-facilities .title .h2,
.card-facilities .title h3,
.card-facilities .title .h3 {
    font-size: 2.375rem;
    line-height: 1;
    color: var(--pure-white-color);
}

.card-facilities .content {
    padding: 30px 20px;
}

.card-facilities .text {
    margin: 0 auto;
    max-width: 491px;
}

.card-facilities h6,
.card-facilities .h6 {
    margin-bottom: 14px;
    font-weight: 500;
}

.card-facilities ul {
    margin-bottom: 34px;
    display: flex;
    flex-wrap: wrap;
}

.card-facilities ul > li {
    margin-bottom: 10px;
    padding-left: 42px;
    position: relative;
    width: 50%;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #71717a;
}

.card-facilities ul > li i {
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 24px;
    color: var(--location-color);
}

.card-facilities p {
    line-height: 1.8;
    color: #71717a;
    min-height: 100px;
}

.card-facilities .button {
    margin-bottom: 0;
    padding: 10px;
    font-size: 16px;
}

/* ### video box ### */
.videoBox {
    /*margin-bottom: 75px;*/
    background-color: var(--pure-light-color);
    padding: 1em 0;

    &.variant {
        .wrap {
            padding-top: 0;
            padding-bottom: 566px;

            @media only screen and (max-width: 1024px) {
                padding-top: 340px;
            }

            @media only screen and (max-width: 640px) {
                padding-bottom: 0;
                display: flex;
                flex-direction: column;
                overflow-x: clip;
                padding-top: 0;
            }
        }


        .video-item-1 {
            margin-left: -152px;
            bottom: 51px;
            top: auto;

            @media only screen and (max-width: 640px) {
                max-width: 100%;
            //width: 269px;
                position: relative;
            //left: calc(100vw - 269px);
                top: unset;
                bottom: unset;
                margin-left: 0;
                left: 30px;
                width: calc(100% - 60px);
            }
        }

        .video-item-2 {
            top: 36%;
            left: 7%;
            transform: translateY(-26%);

            @media only screen and (max-width: 640px) {
                position: relative;
                max-width: 100%;
                transform: translateY(0);
                width: 260px;
                top: -60px;
                z-index: 2;
            }
        }

        .video-item-3 {
            top: 16%;
            right: 0;
            transform: translateY(-31%);

            @media only screen and (max-width: 640px) {
                position: unset;
                max-width: 40%;
                transform: translateY(0);
                order: 4;
                margin-inline: 24px;
            }
        }
    }
}

.videoBox .wrap {
    margin: 0 auto;
    padding-top: 566px; /*459px;*/
    position: relative;
    max-width: 1440px;
}

.videoBox .image {
    position: relative;
}

.item {
    border-radius: 24px;
    overflow: hidden;
}

.videoBox .video-item-1 {
    margin-left: -88px; /*-170px;*/
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
}

.videoBox .video-item-2 {
    position: absolute;
    top: 37%;
    left: 0;
    transform: translateY(-28%); /*translateY(-43%)*/
    z-index: 2;
}

.videoBox .video-item-3 {
    position: absolute;
    top: 66%;
    right: -5.5%;
    z-index: 2;
    transform: translateY(-30%);
}

.videoBox .title {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.videoBox .title h2,
.videoBox .title .h2 {
    font-size: 4.25rem;
    line-height: 1;
    text-align: left;
    color: var(--pure-white-color);
}

.videoBox .since {
    margin-bottom: 38px;
    font-size: 15rem;
    line-height: 1;
    color: #F5F3F3;
}

.videoBox .sub-title {
    padding: 21px 15px 20px 31px;
    font-size: 1.5rem;
    text-align: left;
    color: var(--pure-sec-color);
}

.videoBox .play-video {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: 2.813rem;
    color: #fff;
    border-radius: 50%;
    background-color: #8F817B;
    border: 3px solid #fff;

    i {
        &::before {
            content: '';
            width: 32px;
            height: 32px;
            display: block;
            background-image: url('/assets/templates/images/play-btn.svg');
            filter: brightness(0) invert(1);
        }
    }
}

.videoBox .button {
    margin-bottom: 0;
    padding: 11px 23px;
}

.videoBox.inner {
    margin-bottom: 0;
    margin-top: 75px;
}

.videoBox.inner-1 {
    margin-bottom: 43px;
    padding-top: 5em;
}

.videoBox.inner-1 + .careBox {
    margin: 100px 0;
}

.videoBox.with-slider .wrap {
    padding-top: 0;
}

.videoBox.with-slider .video-item-1 {
    margin-left: 0;
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    max-width: none;
}

.videoBox.with-slider .video-item-2 {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: none;
}

.videoBox.with-slider .video-item-3 {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    transform: none;
    max-width: none;
}

.videoBox.with-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    opacity: 1;
    width: 64px;
    height: 64px;
    font-size: 30px;
    color: var(--pure-info-color);
    border: 0;
    border-radius: 50%;
    background-color: var(--pure-white-color);
    cursor: pointer;
    translate: 0 -50%;
}

.videoBox.with-slider .slick-arrow.slick-disabled {
    opacity: 0;
}

.videoBox.with-slider .next-arrow {
    right: 44px;
}

.videoBox.with-slider .prev-arrow {
    left: 44px;
}

.videoBox.with-slider .slick-slide .image {
    margin: 0 10px;
}

.videoBox.with-slider .slick-slide .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.videoBox.with-slider .button {
    margin-top: 40px;
}

.videoBox.with-slider .slick-track {
    display: flex;
    align-items: center;
}

.videoBox.with-slider .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.videoBox.with-slider .slick-dots {
    gap: 8px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: -57px;
    width: 92%;
}

.videoBox.with-slider .slick-dots li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto;
}

.videoBox.with-slider .slick-dots li.slick-active button {
    background-color: var(--pure-info-color);
}

.videoBox.with-slider .slick-dots button {
    background-color: #fff;
    border: 1px solid var(--pure-info-color);
    border-radius: 0;
    box-sizing: border-box;
    height: 8px;
    margin: 0;
    opacity: 1;
    width: 40px;
    color: transparent;
    cursor: pointer;
}

.mfp-iframe-holder .mfp-close {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: var(--pure-info-color);
    color: var(--pure-info-color);
    border: 3px solid #fff;
    opacity: 1;
    top: -75px;
    right: -30px;
}

.mfp-iframe-holder .mfp-close::before {
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mfp-iframe-holder .mfp-close::after {
    content: 'X';
    font-size: 1rem;
    font-weight: 700;
    color: white;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 31%;
    left: 45%;
    transform: translate(-50%, -50%);
}

/* ### inspire box ### */
.inspireBox {
    padding-bottom: 120px;
    padding-top: 102px;
    background-color: var(--blue-10);
}

.inspireBox .link {
    margin-bottom: 11px;
    font-size: 3rem;
    display: block;
    text-transform: uppercase;
    color: var(--blue-100);
    font-weight: 500;
    letter-spacing: 1px;
}

.inspireBox h3,
.inspireBox .h3 {
    margin-bottom: 62px;
    font-size: 2.5rem;
    color: var(--location-color);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-weight: 400;
}

.inspireBox .holder {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 1fr 1fr 1fr */
    gap: 104px;
}

.inspireBox .column {
    position: relative;
}

.inspireBox .btn .button {
    padding: 12px 20px;
    min-width: 267px;
}

.inspireBox.inner .holder {
    margin-bottom: 50px;
}

/* ### card-inspire ### */
.card-inspire {
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;

    @media only screen and (min-width: 640px) {
        min-height: 550px;
    }

    .image {
        border-radius: 16px;
        overflow: hidden;

        img {
            width: 100%;
        }
    }

    h6, .h6 {
        font-size: 2.375rem;
        color: var(--pure-info-color);
        margin-bottom: 1px;
    }

    .subtitle {
        font-family: 'Poppins', sans-serif;
        color: var(--location-color);
        font-size: 1rem;
        padding-bottom: 13px;
        display: block;
    }
}

.card-inspire .text {
    padding: 46px 0 49px 0;

    @media only screen and (min-width: 640px) {
        flex: 1;
    }

    h3 {
        color: var(--blue-100);
        text-transform: none;
        font-size: 2rem;
        line-height: 120%;
        font-weight: 400;
        letter-spacing: .2px;
        margin-bottom: 17px;
    }
}

.card-inspire p {
    margin-bottom: 0; /*48px;*/
    line-height: 1.8;
    color: var(--pure-sec-color);
}

.card-inspire .button {
    margin-bottom: 0;
    font-size: 16px;
    border: 1px solid var(--blue-100);
    position: relative;
    transition: padding-right ease-in-out 0.3s;
    align-self: baseline;
    border-radius: 8px;
    padding: 15px 84px 15px 22px;

    &::after {
        content: '';
        /* In de website moet de url /assets/templates/images/icon-arrow.svg zijn*/
        background-image: url("/assets/templates/images/icon-arrow.svg");
        width: 40px;
        height: 16px;
        position: absolute;
        right: 22px;
    }

    &:hover {
        padding-right: 94px;
        background-color: unset;
    }
}

/* ### view box ### */
.viewBox {
    padding-top: 41px;
    padding-bottom: 41px;
    background-color: var(--location-color);
}

.viewBox .holder {
    justify-content: space-between;
}

.viewBox h5,
.viewBox .h5 {
    margin-bottom: 0;
    font-weight: 300;
}

.viewBox .button {
    margin-bottom: 0;
    padding: 11px 25px;
    font-size: 16px;
}

.viewBox.inner {
    margin-bottom: 30px;
    background-color: var(--pure-green-color);
}

/* ### review box ### */
.reviewBox {
    padding-top: 105px;
    padding-bottom: 135px;
    position: relative;
    overflow: hidden;
    background-color: #FDFBF7;
}

.reviewBox .left {
    padding-right: 65px;
    position: relative;
    z-index: 1;
    width: 58%;
    /*max-height: 610px;*/
    max-width: 517px;
}

.reviewBox .right {
    margin-right: -200px;
    padding-left: 11px;
    position: relative;
    z-index: 1;
    width: calc(42% + 200px);
}

.reviewBox .text {
    position: relative;
    z-index: 1;
}

.reviewBox .link {
    margin-bottom: 6px;
}

.reviewBox h2,
.reviewBox .h2 {
    font-size: 2.5rem;
    color: var(--pure-info-color);
    margin-bottom: 9px;
}

.reviewBox h3,
.reviewBox .h3 {
    margin-bottom: 39px;
    font-weight: 300;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--pure-sec-color);
}

.reviewBox h3 span,
.reviewBox .h3 span {
    display: block;
}

.reviewBox .paragraph p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.reviewBox .view {
    margin-bottom: 17px;
    display: block;
    font-size: 1.375rem;
    font-weight: 500;
}

.reviewBox .button {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 64px;
    font-size: 16px;
    border: 0;
    position: relative;
    transition: padding-right ease-in-out 0.3s;
    align-self: baseline;

    &::after {
        content: '';
        /* In de website moet de url /assets/templates/images/icon-arrow.svg zijn*/
        background-image: url("/assets/templates/images/icon-arrow.svg");
        width: 40px;
        height: 16px;
        position: absolute;
        right: 0;
    }

    &:hover {
        padding-right: 84px;
        border: unset;
        background-color: unset;
    }
}

.reviewBox .number {
    position: absolute;
    right: -123px;
    bottom: -107px;
    font-size: 36.25rem;
    line-height: 1;
    color: var(--pure-light-color);
}

.reviewBox .slick-list {
    margin: 0 -270px 0 0;
}

.reviewBox .slide {
    padding: 0 0;
}

.reviewBox .slick-arrow {
    position: absolute;
    top: 52%;
    z-index: 3;
    opacity: 0;
    width: 64px;
    height: 64px;
    font-size: 30px;
    color: var(--pure-info-color);
    border: 0;
    border-radius: 50%;
    background-color: var(--pure-white-color);
    transform: translateY(-50%);
    cursor: pointer;
    transition: opacity .2s ease-in;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
}

.reviewBox .slick-arrow.slick-disabled {
    opacity: 0;
}

.reviewBox .js-review-slider:hover .slick-arrow:not(.slick-disabled) {
    opacity: 1;
}

.reviewBox .next-arrow {
    right: -149px;

    &::after {
        content: '';
        background-image: url("/assets/templates/images/icon-arrow-right.svg");
        width: 32px;
        height: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
    }
}

.reviewBox .prev-arrow {
    left: 33px;

    &::after {
        content: '';
        background-image: url("/assets/templates/images/icon-arrow-left.svg");
        width: 32px;
        height: 16px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
    }
}

.reviewBox.inner {
//padding-block: 75px;
}

.reviewBox.inner:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #fafafa;
    border-style: solid;
    border-width: 385px 0 385px 345px;
    content: '';
}

.reviewBox.inner .card-review .content {
    padding: 112px 20px 20px;
    top: 0;
    bottom: auto;
}

.reviewBox.inner .card-review:after {
    display: none;
}

.reviewBox.inner .text .button {
    padding: 10px 15px;
    height: 38px;
}

.reviewBox.inner .text .button i {
    margin-top: -2px;
    margin-left: 5px;
    display: inline-block;
    font-size: 1.5rem;
    vertical-align: middle;
}

.js-review-slider .card-review img {
    border-radius: 24px;
}

.js-review-slider .slick-dots {
    position: absolute;
    display: flex;
    gap: 16px;
    bottom: -52px;
    left: 162px;

    @media only screen and (max-width: 640px) {
        left: 50%;
        transform: translateX(-50%);
    }

    li {
        button {
            background-color: #E1E3E9;
            width: 20px;
            height: 20px;
            border-radius: 20px;
            color: transparent;
            cursor: pointer;
        }

        &.slick-active {
            button {
                background-color: var(--pure-info-color);
            }
        }
    }
}

/* ### card-review ### */
.card-review {
    position: relative;
    display: block;
    height: 100%;
}

.card-review:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    content: '';
}

.card-review img {
//width: 100%;
}

.card-review .content {
    padding: 20px 20px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.card-review ul {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-review ul > li {
    margin-right: 11px;
    font-size: 24px;
    color: var(--location-color);
}

.card-review ul > li:last-child {
    margin-right: 0;
}

.card-review .heading {
    margin-bottom: 26px;
    font-size: 2.375rem;
    line-height: 1.1;
    color: var(--pure-white-color);
}

.card-review .button {
    margin-bottom: 0;
    padding: 9px 21px 10px;
    height: 38px;
    font-size: 16px;
}

.card-review .button i {
    margin-left: 5px;
    display: inline-block;
}

/* ### intro box ### */
.introBox {
    padding-block: 75px;
    position: relative;
}

.introBox .content {
    position: relative;
    z-index: 2;
    max-width: 870px;
}

.introBox h1,
.introBox .h1 {
    margin-bottom: 2px;
}

.introBox h2,
.introBox .h2 {
    margin-bottom: 29px;
    font-weight: 300;
}

.introBox .paragraph {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--pure-sec-color);
}

.introBox .paragraph p {
    line-height: 1.4;
}

.introBox .btn {
    padding-top: 50px;
}

.introBox .button {
    margin-bottom: 0;
    padding: 12px 15px;
    height: 38px;
    letter-spacing: 1.5px;
}

.introBox .button i {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.introBox.inner {
    padding-bottom: 50px;
}

.introBox.inner .paragraph {
    font-size: 1.5rem;
    font-weight: 400;
}

.introBox.inner .paragraph p {
    line-height: 1.75;
}

/* ### text box ### */
.textBox {
    margin-bottom: 75px;
    padding-top: 43px;
}

.textBox .text {
    max-width: 870px;
}

.textBox h6,
.textBox .h6,
.textBox h2 {
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.45;
}

.textBox p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.textBox.inner {
    margin-bottom: 75px;
}

.textBox ul li {
    list-style-type: disc;
    margin-left: 40px;
}

.textBox ul li:last-of-type {
    margin-bottom: 30px;
}

.textBox ol li {
    list-style: decimal;
    margin-left: 13px;
}

/* ### care box ### */
.careBox {
    margin-bottom: 100px;
}

.careBox .cell {
    position: relative;
}

.careBox .button {
    position: absolute;
    bottom: 0;
    left: 0;
}

.careBox .reserve {
    flex-direction: row-reverse;
}

.careBox .reserve .image img {
    margin-left: 0;
}

.careBox .text {
    padding-top: 7px;
}

.careBox .link {
    margin-bottom: 7px;
}

.careBox h3,
.careBox .h3 {
    margin-bottom: 13px;
    font-weight: 300;
    line-height: 1.4;
}

.careBox h3 span,
.careBox .h3 span {
    display: block;
}

.careBox p {
    font-size: 24px;
    line-height: 1.8;
}

.careBox .image img {
    margin-left: auto;
}

.careBox .button {
    margin-bottom: 0;
    padding: 12px 22px;
}

.careBox.inner {
    margin-bottom: 75px;
}

.careBox.inner .grid-x {
    padding-block: 75px;
}

.careBox.inner .grid-x:last-child {
    margin-bottom: 0;
}

/* ### event box ### */
.eventBox {
    background-color: #F4F4F5;
    padding-block: 50px;
    margin-bottom: 75px;
}

.eventBox .card-facilities {
    margin: 0 auto;
    max-width: 716px;
}

.eventBox .card-facilities .button {
    min-width: 122px;
}

/* ### access box ### */
.accessBox {
    padding-block: 75px;
    overflow: hidden;
}

.accessBox .left {
    padding-top: 6px;
    width: 58%;
}

.accessBox .right {
    margin-right: -200px;
    position: relative;
    width: calc(42% + 200px);
}

.accessBox .link {
    margin-bottom: 40px;
}

.accessBox .wrap {
    margin-bottom: 36px;
    display: flex;
    flex-wrap: wrap;
}

.accessBox .add {
    padding-right: 50px;
}

.accessBox .add:last-child {
    padding-right: 0;
}

.accessBox h6,
.accessBox .h6 {
    margin-bottom: 5px;
    font-weight: 500;
}

.accessBox address {
    margin-bottom: 0;
    font-style: normal;
    line-height: 1.8;
}

.accessBox .info {
    margin-bottom: 44px;
}

.accessBox ul > li {
    line-height: 1.8;
}

.accessBox ul > li > a {
    color: var(--pure-sec-color);
    transition: all 0.3s;
}

.accessBox ul > li > a:hover {
    color: var(--pure-info-color);
}

.accessBox p {
    max-width: 400px;
    line-height: 1.8;
}

.accessBox .button {
    margin-right: 20px;
    margin-bottom: 0;
    padding: 10px 17px;
    height: 38px;
}

.accessBox .button i {
    margin-left: 5px;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

.accessBox .button:last-child {
    margin-right: 0;
}

.accessBox #map {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ### copy box ### */
.card-map {
    position: absolute;
    top: -25%;
    z-index: 1;
    transform: translate(-53%, -61%);
}

.card-map .bg {
    margin-bottom: 24px;
    position: relative;
    border: 2px solid var(--pure-white-color);
    background-color: var(--location-color);
}

.card-map .bg:before,
.card-map .bg:after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateX(-50%);
    content: '';
}

.card-map .bg:before {
    z-index: 1;
    border-color: var(--location-color) transparent transparent;
    border-width: 22px 14px 0;
}

.card-map .bg:after {
    bottom: -24px;
    border-color: #fff transparent transparent;
    border-width: 24px 16px 0;
}

.card-map .image img {
    width: auto;
    min-height: auto;
    object-fit: unset;
}

.card-map .text {
    padding: 16px 15px 14px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--pure-sec-color);
}

.card-map .marker {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    color: var(--pure-white-color);
    border: 1px solid var(--pure-white-color);
    border-radius: 50px;
    background-color: var(--location-color);
}

/* ### castle box ### */
.castleBox {
    margin-bottom: 100px;
}

.castleBox .title {
    max-width: 690px;
}

.castleBox h3,
.castleBox .h3 {
    margin-bottom: 51px;
    font-weight: 300;
    line-height: 1.4;
}

.castleBox .holder {
    margin: 0 -5px;
}

.castleBox .column {
    margin-bottom: 10px;
    padding: 0 5px;
    width: 33.33%;
}

.castleBox .card-location:hover {
    background-color: #fafafa;
}

/* ### register box ### */
.registerBox {
    padding-bottom: 75px;
    position: relative;
    overflow: hidden;
}

.registerBox .holder {
    position: relative;
    z-index: 1;
}

.registerBox .left {
    width: 40%;
}

.registerBox .right {
    padding-top: 47px;
    padding-left: 23px;
    width: 60%;
    margin-top: auto;
}

.registerBox .card-location {
    max-width: 340px;
}

.registerBox .link {
    margin-bottom: 10px;
}

.registerBox h5,
.registerBox .h5 {
    margin-bottom: 15px;
    font-weight: 300;
}

.registerBox p {
    margin-bottom: 36px;
    margin-top: 10px;
    line-height: 1.8;
}

.registerBox .form-field {
    margin-bottom: 30px;
}

.registerBox .form-input {
    height: 48px !important;
}

.registerBox .sub-title {
    margin-bottom: 5px;
    display: block;
    font-size: 16px;
}

.registerBox .wrap {
    display: flex;
    flex-wrap: wrap;
}

.registerBox .check {
    margin-right: 27px;
    padding-left: 30px;
    position: relative;
}

.registerBox .check:last-child {
    margin-right: 0;
}

.registerBox .check input {
    position: absolute;
    top: 5px;
    left: 0;
}

.registerBox .check span {
    display: block;
    font-size: 13px;
    color: #072125;
}

.registerBox .submit {
    padding-top: 12px;
    text-align: right;
}

.registerBox .submit .button {
    margin-bottom: 0;
    padding: 12px 14px 11px;
}

.registerBox .submit .button i {
    margin-left: 5px;
    display: inline-block;
}

.registerBox .shape-1 {
    position: absolute;
    bottom: 51px;
    left: 0;
    opacity: 0.2;
}

.registerBox .shape-2 {
    position: absolute;
    bottom: 0;
    left: 144px;
    opacity: 0.5;
}

/* ### gallery box ### */
.galleryBox .link {
    margin-bottom: 6px;
}

.galleryBox h3,
.galleryBox .h3 {
    margin-bottom: 82px;
    font-weight: 300;
    line-height: 1.4;
}

.instagram-feed-wrapper {
    align-items: flex-start;
    background-color: #f4f4f5;
    display: flex;
    flex-wrap: wrap
}

.instagram-feed-wrapper .insta-item {
    flex: 0 0 25%;
    height: 380px;
    overflow: hidden;
    position: relative
}

.instagram-feed-wrapper .insta-item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.instagram-feed-wrapper .insta-item:hover .overlay-text {
    top: 0
}

.instagram-feed-wrapper .insta-item .overlay-text {
    align-items: center;
    background-color: var(--location-color);
    color: #fff;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 0 24px;
    position: absolute;
    text-align: center;
    top: 100%;
    transition: top .2s ease-in
}

.instagram-feed-wrapper .insta-item .overlay-text p {
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    color: black;
    display: -webkit-box;
    font-size: 1rem;
    line-height: 1.8125;
    margin-bottom: 0;
    overflow: hidden
}

.instagram-feed-wrapper .insta-item .overlay-text p b {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 1.7777777778;
    margin-bottom: .5rem
}

.instagram-feed-wrapper .insta-item .overlay-text p a {
    color: inherit;
}

.instagram-feed-wrapper .insta-item .overlay-text p a:hover {
    text-decoration: underline
}

/* ### map box ### */
.mapBox {
    margin-bottom: 249px;
    padding-top: 93px;
}

.mapBox .left {
    width: 58%;
}

.mapBox .map {
    position: relative;
    max-width: 515px;
    background-color: rgba(95, 130, 162, 0.6);
}

.mapBox .map iframe {
    opacity: 0.6;
    width: 100%;
    height: 523px;
}

.mapBox .text {
    padding: 30px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    max-width: 250px;
}

.mapBox .text h6,
.mapBox .text .h6 {
    margin-bottom: 0;
    line-height: 1.4;
}

.mapBox .right {
    padding-top: 7px;
    padding-left: 24px;
    width: 42%;
}

.mapBox .link {
    margin-bottom: 43px;
}

.mapBox .item {
    margin-bottom: 67px;
}

.mapBox .item:last-child {
    margin-bottom: 0;
}

.mapBox h6,
.mapBox .h6 {
    margin-bottom: 5px;
    font-weight: 500;
}

.mapBox p {
    margin-bottom: 34px;
    line-height: 1.8;
}

.mapBox .button {
    margin-bottom: 0;
    padding: 10px 17px;
    height: 38px;
}

.mapBox .button i {
    margin-left: 5px;
    display: inline-block;
    font-size: 20px;
    vertical-align: middle;
}

/* ### contact box ### */
.contactBox {
    padding-top: 112px;
    padding-bottom: 112px;
    position: relative;
}

.contactBox .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contactBox .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contactBox.inner input {
    height: 48px !important;
}

.contactBox.inner .submit .button {
    height: 48px;
    color: var(--pure-sec-color);
    background-color: var(--pure-light-color);
}

.contactBox.inner .submit .button i {
    color: var(--location-color);
}

/* ### card-contact ### */
.card-contact {
    padding: 49px 46px 56px 48px;
    position: relative;
    z-index: 2;
    background-color: var(--pure-white-color);
    display: flex;
    gap: 48px;
    border-radius: 8px;
    justify-content: space-between;
}

.card-contact .heading {
    margin-bottom: 26px;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*align-items: center;*/
    max-width: 432px;
}

.card-contact .heading h4,
.card-contact .heading .h4 {
    margin-bottom: 15px;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 500;

    @media (width <= 768px) {
        font-size: 1.75rem;
    }
}

.card-contact .heading h5,
.card-contact .heading .h5 {
    margin-bottom: 0;
    font-weight: 300;
}

.card-contact .heading span {
    font-weight: 300;
    line-height: 1;
    font-size: 1.625rem;
    color: var(--location-color);
}

.card-contact .heading p {
    margin-top: 35px;
    color: var(--pure-sec-color);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;

    a {
        text-decoration: underline;
        color: var(--pure-sec-color);

        &:hover, &:focus {
            color: var(--location-color);
        }
    }

}

.card-contact .holder {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}

.card-contact .item {
    padding: 0 5px;
    display: flex;
    gap: 20px;
    flex-direction: column;
}


.card-contact form {
    width: 100%;
    max-width: 464px;
    margin-top: 10px;
}

.card-contact .form-group {
    background-color: var(--blue-10);
    border-radius: 8px;
    padding: 14px 24px;
    width: 100%;

    &:not(:last-child) {
        margin-bottom: 20px;
    }

    input, [type="text"], [type="email"], textarea {
        background-color: transparent;
        padding: 0;
        border: unset;
        box-shadow: unset;
        margin: 0;
        font-size: .875rem;
        line-height: 1.4;
        color: #75645D;
        height: unset;

        &::placeholder {
            font-size: .875rem;
            line-height: 1.4;
            color: #75645D;
        }
    }

    textarea {
        min-height: 68px;
    }
}

.card-contact .form-group:last-child {
    margin-bottom: 0;
}

.card-contact .form-group.radio-buttons {
    background: transparent;
    padding: 0;
}

.card-contact .form-group.radio-buttons > label{
    color: var(--location-color);
}

.card-contact .form-group.radio-buttons .wrap {
    display: flex;
    gap: 25px;
}

.card-contact .form-group.radio-buttons .check {
    padding-left: 25px;
    position: relative;
}

.card-contact .form-group.radio-buttons .check  input[type='radio'] {
    position: absolute;
    top: 5px;
    left: 0;
}

.card-contact .form-group.radio-buttons .check span {
    color: var(--pure-sec-color);
    display: inline-block;
    font-size: .875rem;
}

.card-contact .submit {
    align-self: flex-end;
    margin-top: 33px;
}

.card-contact .submit .button {
    margin-bottom: 0;
    padding: 14px 24px 14px;
    border-radius: 8px;
    color: var(--blue-100);
    background-color: white;
    border: 1px solid var(--blue-100);
    font-size: 1rem;

    &:hover, &:focus {
        color: white;
        background-color: var(--blue-100);

        i {
            color: var(--pure-white-color);
        }
    }

    @media (width <= 768px) {
        width: 100%;
    }
}

.card-contact .submit .button i {
    margin-left: 12px;
    display: inline-block;
    color: var(--pure-info-color);
}

/* ### footer container ### */
#footerCntr {
    overflow: hidden;
    width: 100%;
    background-color: var(--blue-10);
}

#footerCntr.inner {
    /*background-color: var(--pure-green-color);*/
}

/* ### footer box ### */
.footerBox {
    padding-top: 64px;
    padding-bottom: 35px;
    position: relative;

    .item {
        border-radius: 0;
    }
}

.footerBox .holder {
    /*margin-bottom: 23px;*/
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footerBox .footer-logo {
    width: 33%;
}

@media (width >= 768px) {
    .footerBox .footer-logo img {
        position: relative;
        top: -13px;
        left: -26px;
    }
}

.footerBox .email {
    padding-left: 9px;
    width: 67%;
    margin-top: 28px;
}

.footerBox .title {
    margin-bottom: 26px;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--blue-100);
}

.footerBox .form {
    padding: 0;
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 16px;
    /*background-color: var(--pure-white-color);*/

    @media (width <= 640px) {
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;

        button {
            width: auto;
            align-self: flex-start;

        }
    }
}

.footerBox input {
    border-radius: 8px;
    background-color: white;
    padding: 14px 24px;
    border: 1px solid var(--blue-30);
    box-shadow: unset;
    margin: 0;
    font-size: .875rem;
    line-height: 1.4;
    color: var(--pure-sec-color);
    height: unset;
    max-width: 315px;

    &:focus {
        border: 0;
        box-shadow: unset;
    }

    &::placeholder {
        font-size: .875rem;
        line-height: 1.4;
        color: var(--pure-sec-color);
    }
}

.footerBox button {
    margin-bottom: 0;
    padding: 14px 23px 14px;
    border-radius: 8px;
    border: 1px solid var(--red-100);
    font-size: 1rem;
    color: white;
    background-color: var(--red-100);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all ease-in-out 0.3s;

    i {
        margin-left: 12px;
    }

    &:hover, &:focus {
        color: var(--pure-sec-color);
        background-color: white;
    }
}

.footerBox button i {
    margin-left: 8px;
    display: inline-block;
}

.footerBox p {
    padding-block: 44px 11px;
    font-size: 1rem;

    span,
    strong {
        font-weight: 600;

        &:first-child {
            font-weight: 500;
        }
    }
}

.footerBox .item p {
    margin-bottom: 0;
}

.footerBox p a {
    position: relative;
    /*text-decoration: underline;*/
    color: inherit;
    transition: all 0.3s;

    &::after {
        content: '';
        position: absolute;
        width: 100%;
        background-color: var(--pure-info-color);
        height: 2px;
        bottom: 1px;
        left: 0;
        right: 0;
        transition: bottom ease-out 0.3s;
    }
}

.footerBox p a:hover {
    &::after {
        bottom: 0;
    }
}

.footerBox .wrap {
    display: flex;
    flex-wrap: wrap;
}

.footerBox .item {
    width: 33.33%;
}

.footerBox .heading {
    margin-bottom: 11px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--blue-100);
}

.footerBox address {
    margin-bottom: 24px;
    font-style: normal;
    line-height: 2;
}

.footerBox address a {
    color: var(--pure-sec-color);
}

.footerBox .social-media {
    display: flex;
    flex-wrap: wrap;
}

.footerBox .social-media > li {
    margin-right: 25px;
}

.footerBox .social-media > li:last-child {
    margin-right: 0;
}

.footerBox .social-media > li > a {
    font-size: 1.375rem;
    color: var(--pure-sec-color);
    transition: all 0.3s;
}

.footerBox .social-media > li > a:hover {
    color: var(--pure-intro-color);
}

.footerBox .info {
    padding-top: 9px;
    line-height: 1.8;
}

.footerBox .navigation {
    display: flex;
    flex-wrap: wrap;
}

.footerBox .nav {
    width: 50%;
}

.footerBox .nav > li {
    line-height: 2.6;
}

.footerBox .nav > li > a {
    color: var(--pure-sec-color);
    transition: all 0.3s;/* Table of Content ================================================== #Font-Face #Site Styles #Media Queries */
    /* #Font-Face ================================================== */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('../fonts/jeko/stylesheet.css');
    @import url('../fonts/gt-super/stylesheet.css');

    /* #Site Styles ================================================== */
    :root {
        --location-color: var(--pure-info-color);
        --pure-dark-color: #4F5661;
        --pure-white-color: #fff;
        --pure-black-color: #000;
        --pure-light-color: #fff;
        --pure-border-color: #e4e4e7;
        --pure-intro-color: #648e89;
        --pure-slate-color: #bcbcc0;
        --pure-alt-color: #3f3f46;
        --pure-sec-color: #584B46;
        --pure-info-color: #75645D;
        --pure-green-color: #adab9a;
        --pure-hover-color: #575540;
    }

    /* ### general ### */
    html {
        scroll-behavior: smooth;
    }

    html,
    body {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        line-height: 1.5;
    //color: var(--pure-dark-color);
        color: var(--pure-sec-color);
    }

    body {
        background: var(--pure-white-color);
        overflow-x: clip;
    }

    body.scroll-hidden {
        overflow: hidden;
    }

    section {
        scroll-margin-top: 100px;
    }

    input,
    select,
    textarea {
        /*margin-bottom: 0 !important;*/
        /*padding: 10px 28px !important;*/
        /*width: 100% !important;*/
        /*height: 40px !important;*/
        /*font-family: 'Poppins', sans-serif;*/
        /*font-size: 13px !important;*/
        /*color: var(--pure-black-color) !important;*/
        /*border: 0 !important;*/
        /*background-color: var(--pure-light-color) !important;*/
        /*box-shadow: none !important;*/
    }

    textarea {
        min-height: 100px;
    }

    input::placeholder,
    textarea::placeholder {
        color: var(--pure-alt-color);
    }

    input:focus,
    textarea:focus {
        border: 0;
        box-shadow: none;
    }

    input[type='radio'],
    input[type='checkbox'] {
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 15px !important;
        height: 15px !important;
        border: 1px solid var(--pure-sec-color) !important;
        border-radius: 1px !important;
        background-color: transparent !important;
        -webkit-appearance: none;
    }

    input[type='radio']:checked:before,
    input[type='checkbox']:checked:before {
        display: block;
        width: 11px;
        height: 11px;
        border-radius: 1px;
        background-color: var(--pure-sec-color);
        content: '';
    }

    img {
        display: block;
        max-width: 100%;
        border: 0;
    }

    ul,
    li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    a {
        display: inline-block;
        text-decoration: none;
    }

    a:not([href]) {
        cursor: auto;
    }

    a[next-venue-open] {
        cursor: pointer;
    }

    p {
        margin-bottom: 20px;
    }

    .h1,
    h1,
    .h2,
    h2,
    .h3,
    h3,
    .h4,
    h4,
    .h5,
    h5,
    .h6,
    h6 {
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
        line-height: 1.1;
        color: var(--pure-sec-color);
    }

    .h1,
    h1 {
        font-size: 4.25rem;
        color: var(--pure-info-color);
    }

    .h2,
    h2 {
        font-size: 3.625rem;
    }

    .h3,
    h3 {
        font-size: 2.625rem;
    }

    .h4,
    h4 {
        font-size: 2.375rem;
        color: var(--pure-info-color);
    }

    .h5,
    h5 {
        font-size: 2rem;
    }

    .h6,
    h6 {
        font-size: 1.375rem;
    }

    /* ### global classes ### */
    .clear {
        visibility: hidden;
        clear: both;
        height: 0;
        line-height: 0;
    }

    .grid-container {
        max-width: 1070px;
    }

    .grid-container-xl {
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        max-width: 1420px;
    }

    .link {
        font-size: 2.375rem;
        line-height: 1.1;
        color: var(--pure-info-color);
        transition: all 0.3s;
    }

    .link i {
        margin-top: -7px;
        margin-left: 3px;
        display: inline-block;
        font-size: 16px;
        vertical-align: middle;
        transition: all 0.3s;
    }

    .link:hover {
        color: var(--pure-info-color);
    }

    .link:hover i {
        margin-left: 10px;
    }

    .holder {
        display: flex;
        flex-wrap: wrap;
    }

    .button {
        padding: 10px 22px;
        display: inline-block;
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--pure-white-color);
        border: 0;
        border-radius: 0;
        background-color: var(--pure-info-color);
        transition: all 0.3s;
    }

    .button:focus,
    .button:hover {
        text-decoration: none;
        color: var(--pure-white-color);
        background-color: var(--pure-alt-color);
    }

    .button:disabled {
        color: var(--pure-slate-color);
        background-color: var(--pure-border-color);
    }

    .button.secondary {
        color: var(--pure-dark-color);
        border: 1px solid var(--pure-dark-color);
        background-color: transparent;
    }

    .button.secondary:focus,
    .button.secondary:hover {
        color: var(--pure-dark-color);
        border: 1px solid var(--pure-dark-color);
        background-color: var(--pure-border-color);
    }

    .button.secondary:disabled {
        color: var(--pure-white-color);
        border: 1px solid var(--pure-border-color);
        background-color: var(--pure-border-color);
    }

    .button.success {
        color: var(--pure-white-color);
        background-color: rgba(18, 18, 18, 0.9);
        mix-blend-mode: overlay;
    }

    .button.success:hover {
        text-decoration: underline;
        color: var(--pure-white-color);
        background-color: rgba(18, 18, 18, 0.9);
        mix-blend-mode: overlay;
    }

    .button.success:focus {
        text-decoration: underline;
        color: var(--pure-white-color);
        background-color: rgba(18, 18, 18, 0.2);
    }

    .button.success:disabled {
        color: var(--pure-slate-color);
        background-color: var(--pure-border-color);
        mix-blend-mode: unset;
    }

    .button.hollow {
        color: var(--pure-white-color);
        background-color: rgba(18, 18, 18, 0.25);
        mix-blend-mode: multiply;
    }

    .button.hollow:hover {
        background-color: rgba(18, 18, 18, 0.3);
    }

    .button.hollow:focus {
        background-color: rgba(18, 18, 18, 0.4);
    }

    .button.hollow:disabled {
        color: var(--pure-slate-color);
        background-color: var(--pure-border-color);
        mix-blend-mode: multiply;
    }

    .button.outline {
        color: var(--pure-white-color);
        border: 1px solid var(--pure-white-color);
        background-color: transparent;
    }

    .button.outline:focus {
        color: var(--pure-white-color);
        border: 1px solid var(--pure-dark-color);
        background-color: var(--pure-dark-color);
    }

    .button.outline:hover {
        color: var(--pure-white-color);
        border: 1px solid var(--pure-alt-color);
        background-color: var(--pure-alt-color);
    }

    .button.outline:disabled {
        color: var(--pure-slate-color);
        border: 1px solid var(--pure-border-color);
        background-color: var(--pure-border-color);
    }

    /* ### wrapper ### */
    #wrapper {
        padding-top: 107px;
        position: relative;
        display: block;
        width: 100%;
        min-height: 100%;
    }

    /* ### main container ### */
    #mainCntr {
        width: 100%;
    }

    /* ### header container ### */
    #headerCntr {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        width: 100%;
        background-color: var(--pure-white-color);
        transition: all 0.3s;
        padding: .5em 0;
        max-height: 106px;
        opacity: 1;
        transform: translateY(0);

        .mobile-logo {
            display: none;
        }

        &.trans-hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        &.scrolling-active {
            .logo {
                .desktop-logo {
                    display: none;
                }

                .mobile-logo {
                    display: block;

                    @media (width >= 1024px) {
                        top: 7px;
                    }
                }
            }
            .menuBox ul > li {
                @media only screen and (min-width: 1024px) {
                    padding-top: 27px;
                    padding-bottom: 22px;

                    &.active a:after {
                        bottom: -30px;
                    }
                }

                span::after {
                    bottom: -32px;
                }
            }

            .right {
                top: 0;
            }
        }

        .mobile-menu {
            padding: 0 40px 80px 40px;
            display: none;

            button {
                display: block;
                width: 100%;
                padding: 11px 23px;
                margin-top: 48px;
            }

            .contact-details {
                margin-top: 97px;

                img {
                    width: 98px;
                    margin-bottom: 30px;
                }

                .heading {
                    font-weight: 500;
                    line-height: 1.4;
                    color: var(--pure-info-color);
                    font-size: 1.75rem;
                    margin-bottom: 8px;
                }

                address {
                    margin-bottom: 61px;
                    font-style: normal;
                    line-height: 2;
                    color: var(--pure-sec-color);
                }

                ul.settings {
                    margin-bottom: 44px;

                    li {
                        line-height: 2.9;

                        a {
                            color: var(--pure-sec-color);
                            font-size: 1rem;
                            text-transform: none;
                            letter-spacing: 0;

                            i {
                                width: 26px;
                                font-size: 1.15rem;
                                top: -1px;
                                position: relative;
                                left: -2px;
                                margin-left: 12px;
                            }
                        }
                    }
                }

                .social-media {
                    display: flex;
                    flex-wrap: wrap;
                    margin-left: -2px;

                    > li {
                        margin-right: 31px;

                        a {
                            font-size: 2.2rem;
                            color: var(--pure-sec-color);
                            transition: all 0.3s;

                            i {
                                color: #8F817B;
                            }

                            &:hover {
                                color: var(--location-color);
                                background-color: unset;
                            }
                        }
                    }
                }

                .settings {
                    li {
                        a {
                            color: var(--pure-sec-color);

                            i {
                                color: var(--pure-sec-color);
                            }
                        }
                    }
                }
            }
        }

        &.active {
            /*background-color: #F5F3F3;*/

            .logo {
                opacity: 0;
                visibility: hidden;
            }
        }

        @media (width <= 640px) {
            &.scrolling-active {
                .desktop-logo {
                    display: none;
                    opacity: 0;
                    transition: all .2s ease-in;
                    transform: scale(0);
                }

                .mobile-logo {
                    display: block;
                    opacity: 1;
                    position: static;
                    padding-block: 16px;
                }

                .logo {
                    margin-top: 0;
                }
            }
        }
    }

    #headerCntr:after {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        display: none;
        width: 100%;
        height: 100%;
        background-color: var(--pure-light-color);
        content: '';
    }

    #headerCntr .holder {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    #headerCntr .left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        width: 85%;
    }

    #headerCntr .logo {
        position: relative;
        z-index: 4;
        margin-top: -13px;

        img {
            top: 25px;
            position: relative;
        }
    }

    #headerCntr .right {
        width: 15%;
        top: -9px;
        position: relative;
    }

    #headerCntr .right ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
    }

    #headerCntr .tel {
        margin-right: 40px;
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--pure-sec-color);
        transition: all 0.3s;
    }

    #headerCntr .tel i {
        margin-top: -5px;
        margin-left: 5px;
        display: inline-block;
        vertical-align: middle;
    }

    #headerCntr .tel i img {
        display: inline-block;
    }

    #headerCntr .tel:hover {
        color: var(--pure-info-color);
    }

    #headerCntr .button {
        margin-bottom: 0;
        padding: 8px 23px;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: #fff;
        background-color: var(--pure-info-color);
        cursor: pointer;
        border-radius: 8px;
        text-transform: uppercase;
        line-height: 1.5;
        border: 1px solid var(--pure-info-color);
    }

    #headerCntr .button:hover,
    #headerCntr .button:focus {
        /*opacity: 0.8;*/
        color: var(--pure-info-color);
        background-color: var(--pure-white-color);
    }

    #headerCntr.inner .tel:hover {
        color: var(--pure-green-color);
    }

    #headerCntr.inner .menuBox ul > li:after {
        background-color: var(--pure-green-color);
    }

    #headerCntr.inner .menuBox ul > li > a:hover {
        color: var(--pure-green-color);
    }

    #headerCntr.inner .button {
        color: var(--pure-sec-color);
        background-color: var(--pure-green-color);
    }

    #headerCntr.inner .button:hover {
        text-decoration: underline;
        color: var(--pure-white-color);
        background-color: var(--pure-green-color);
    }

    #headerCntr.inner .left {
        width: 62%;
    }

    #headerCntr.inner .right {
        width: 38%;
    }

    /* ### menu box ### */
    .menuBox {
        padding-left: 72px;
    }

    .menuBox ul {
        margin-left: 0;
    }

    .menuBox ul > li {
        margin-right: 35px;
        padding-top: 18px;
        padding-bottom: 31px;
        position: relative;
        display: inline-block;
        letter-spacing: 1px;

        &.active a {
            position: relative;

            &:after {
                position: absolute;
                content: '';
                bottom: -40px;
                left: 0;
                width: 100%;
                height: 4px;
                background: var(--pure-info-color);
            }
        }
    }

    .menuBox ul > li span {
        position: relative;

        &::after {
            position: absolute;
            bottom: -41px;
            left: 0;
            width: 0;
            height: 4px;
            background-color: var(--pure-info-color);
            transition: all 0.3s;
            content: '';
        }


        @media (width < 1024px) {
            &::after {
                bottom: -8px;
            }
        }
    }

    .menuBox ul > li:hover span::after,
    .menuBox ul > li.active span::after {
        width: 100%;
    }

    .menuBox ul > li:hover ul {
        opacity: 1;
        visibility: visible;
    }

    .menuBox ul > li:last-child {
        margin-right: 0;
    }

    .menuBox ul > li > a {
        font-weight: 400;
        color: var(--pure-sec-color);
        transition: all 0.3s;
        text-transform: uppercase;
    }

    .menuBox ul > li > a i {
        margin-left: 5px;
        display: none;
        color: var(--pure-sec-color);
    }

    .menuBox ul > li > a:hover,
    .menuBox ul > li.active > a {
        color: var(--pure-info-color);
    }

    .menuBox ul > li > ul {
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        opacity: 0;
        visibility: hidden;
        width: 150px;
        background-color: var(--pure-white-color);
        transition: all 0.3s;
    }

    .menuBox ul > li > ul > li {
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        display: block;
    }

    .menuBox ul > li > ul > li:after {
        display: none;
    }

    .menuBox ul.d-hidden {
        display: none;
    }

    /* ### mobileMenu ### */
    .mobileMenu {
        padding-right: 30px;
        position: absolute;
        top: 50%;
        right: 20px;
        z-index: 15;
        display: none;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 20px;
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--pure-sec-color);
        border-radius: 0;
        transform: translateY(-50%);
        transition: all 0.3s;
        cursor: pointer;
        overflow: hidden;
    }

    .mobileMenu em {
        font-style: normal;
    }

    .mobileMenu samp {
        display: none;
        font-family: 'Poppins', sans-serif;
    }

    .mobileMenu span {
        position: absolute;
        top: 50%;
        right: 0;
        display: block;
        width: 25px;
        height: 1px;
        border-radius: 0;
        background: var(--pure-black-color);
        transform: translateX(-50%) translateY(-50%);
        transition: 0.2s;
    }

    .mobileMenu span:before,
    .mobileMenu span:after {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        border-radius: 0;
        background-color: var(--pure-black-color);
        transition-duration: 0.2s, 0.2s;
        content: '';
    }

    .mobileMenu span:before {
        top: -8px;
    }

    .mobileMenu span:after {
        bottom: -8px;
    }

    .mobileMenu:hover {
        color: var(--pure-sec-color);
    }

    .mobileMenu.active span {
        background: none;
    }

    .mobileMenu.active span{
        right: 15px;
    }

    .mobileMenu.active span:before,
    .mobileMenu.active span:after {
        transition-delay: 0s, 0.2s;
    }

    .mobileMenu.active span:before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobileMenu.active span:after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .mobileMenu.active em {
        display: none;
    }

    .mobileMenu.active samp {
        display: block;
    }

    /* ### content container ### */
    #contentCntr {
        width: 100%;
    }

    /* ### hero box ### */
    .heroBox {

    }

    .heroBox img {
        width: 100%;
        max-height: 620px;
        object-fit: cover;
        object-position: center;
        min-height: 320px;
    }

    /* ### banner box ### */
    .bannerBox {
        margin-bottom: 67px;
        padding-top: 50px;
    }

    .bannerBox img {
        width: 100%;
    }

    .swiper-pagination {
        position: relative;
        top: 5px !important;

        .swiper-pagination-bullet-active {
            background: #75645D;
        }
    }

    /* ### location box ### */
    .locationBox {
        padding-block: 125px 99px;
        position: relative;
        /*background-color: var(--pure-light-color);*/


        &.has-locations {
            padding-block: 77px 120px;

            h2.h1 {
                font-size: 4rem;
                margin-bottom: 45px;

                + .paragraph {
                    font-size: 1rem;

                    p {
                        line-height: 1.8;
                    }
                }
            }

            .content {
                margin-bottom: 50px;
            }
        }

        &.text-only {

            .h1 {
                font-size: 4rem;
                margin-bottom: 10px;
            }

            .h2 {

            }

            .paragraph {
                font-size: 1rem;

                p {
                    line-height: 1.8;
                }
            }
        }

        .button {
            margin-bottom: 0;
            margin-top: 16px;
            padding: 11px 23px;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            color: #fff;
            /* background-color: var(--pure-info-color); */
            cursor: pointer;
            border-radius: 8px;
            text-transform: uppercase;
            line-height: 1.5;
            border: 1px solid var(--pure-info-color);

            &:hover,
            &:focus {
                color: var(--pure-info-color);
                background-color: var(--pure-white-color);
            }
        }
    }

    .locationBox .content {
        /*margin-bottom: 100px;*/
        position: relative;
        z-index: 2;
        /*max-width: 870px;*/
    }

    .locationBox h2,
    .locationBox h1 {
        margin-bottom: 15px;

        @media only screen and (max-width: 640px) {
            font-size: 2.25rem;
        }
    }

    .locationBox .h2 {
        font-weight: 300;
        font-size: 3.5rem;
        margin-bottom: 51px;
        color: #8F817B;
    }

    .locationBox h3,
    .locationBox .h3 {
        margin-bottom: 29px;
        font-weight: 300;
        color: var(--pure-sec-color);

        +.paragraph {
            margin-top: 40px;
        }
    }

    .locationBox .paragraph {
        font-size: 1.5rem;
        font-weight: 300;
        line-height: 1.6;
        color: var(--pure-sec-color);
        padding-left: 176px;
        max-width: 950px;
    }

    .locationBox .holder .swiper-wrapper {
        /*margin: 0 -5px;*/
        position: relative;
        /*display: grid;*/
        /*grid-template-columns: 1fr 1fr 1fr;*/
        /*gap: 16px;*/
    }

    .locationBox .column {
        /*padding: 0 5px;*/
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .locationBox.inner .card-location.active,
    .locationBox.inner .card-location:hover {
        background-color: var(--pure-green-color);
    }

    .locationBox.inner .card-location:hover .button {
        color: var(--pure-white-color);
        border: 1px solid rgba(18, 18, 18, 0.9);
        background-color: rgba(18, 18, 18, 0.9);
        mix-blend-mode: overlay;
    }

    /* ### card-location ### */
    .card-location {
        position: relative;
        z-index: 2;
        /*display: block;*/
        height: 100%;
        background-color: var(--pure-white-color);
        transition: all 0.3s;
        padding: 40px 32px;
        border-radius: 16px;
        border: 1px solid #E1E3E9;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;

        .image {
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }

    .card-location .image img {
        /*width: 100%;*/
    }

    .card-location .text {
        padding: 32px 23px 0 23px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .card-location h4,
    .card-location .h4 {
        margin-bottom: 1px;
        color: var(--pure-info-color);

        + p {
            color: var(--pure-sec-color);
            margin-bottom: 34px;
        }
    }

    .card-location h5,
    .card-location .h5 {
        margin-bottom: 20px;
        color: var(--pure-sec-color);
    }

    .card-location p {
        line-height: 1.8;
        color: var(--pure-sec-color);
        margin-top: 15px;
    }

    .card-location .btn {
        width: 100%;
        margin-top: auto;
    }

    .card-location .button {
        margin-bottom: 0;
        font-size: 16px;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        border: 1px solid var(--pure-info-color);
        color: var(--pure-info-color);

        &:hover, &:focus {
            background-color: var(--pure-info-color) !important;
            border-color: var(--pure-info-color);
            color: #fff;
        }
    }

    .card-location .button i {
        margin-top: -5px;
        display: inline-block;
        font-size: 24px;
        vertical-align: middle;
    }

    .card-location:hover .button {
        background-color: transparent;
    }

    .card-location.green:hover .button {
        color: var(--pure-white-color);
        background-color: rgba(18, 18, 18, 0.9);
        mix-blend-mode: overlay;
    }

    /* ### facilities box ### */
    .facilitiesBox {
        margin-bottom: 75px;
        padding-top: 75px;
        overflow: hidden;
    }

    .facilitiesBox .wrap {
        margin: 0 auto;
        position: relative;
        max-width: 1440px;
    }

    .facilitiesBox .link {
        margin-bottom: 12px;
    }

    .facilitiesBox h3,
    .facilitiesBox .h3 {
        margin-bottom: 88px;
        font-weight: 300;
    }

    .facilitiesBox .holder {
        margin: 0 -5px;
    }

    .facilitiesBox .column {
        margin-bottom: 20px;
        padding: 0 5px;
        width: 50%;
    }

    .facilitiesBox .slick-list {
        margin: 0 -5px;
    }

    .facilitiesBox .slide {
        padding: 0 5px;
    }

    .facilitiesBox .slick-arrow {
        margin-top: -182px;
        position: absolute;
        top: 50%;
        z-index: 3;
        opacity: 1;
        width: 64px;
        height: 64px;
        font-size: 30px;
        color: var(--pure-info-color);
        border: 0;
        border-radius: 50%;
        background-color: var(--pure-white-color);
        cursor: pointer;
    }

    .facilitiesBox .slick-arrow.slick-disabled {
        opacity: 0;
    }

    .facilitiesBox .next-arrow {
        right: 44px;
    }

    .facilitiesBox .prev-arrow {
        left: 44px;
    }

    .facilitiesBox .btn .button {
        margin-bottom: 0;
        padding: 12px 26px;
    }

    .facilitiesBox.inner {
        margin-bottom: 75px;
        padding-top: 0;
    }

    .facilitiesBox.inner-1 {
        margin-bottom: 0;
        padding-top: 0;
    }

    .facilitiesBox.inner-2 {
        margin-bottom: 28px;
        padding-top: 0;
    }

    /* ### card-facilities ### */
    .card-facilities .image {
        position: relative;
    }

    .card-facilities .image:after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 20%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        content: '';
    }

    .card-facilities .image img {
        width: 100%;
    }

    .card-facilities .play-video {
        position: absolute;
        bottom: 30px;
        left: 30px;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        font-size: 2.813rem;
        color: #fff;
        border-radius: 50%;
        background-color: #8F817B;
        border: 3px solid #fff;
    }

    .card-facilities .title {
        padding: 20px 15px 27px 110px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
    }

    .card-facilities .title h2,
    .card-facilities .title .h2,
    .card-facilities .title h3,
    .card-facilities .title .h3 {
        font-size: 2.375rem;
        line-height: 1;
        color: var(--pure-white-color);
    }

    .card-facilities .content {
        padding: 30px 20px;
    }

    .card-facilities .text {
        margin: 0 auto;
        max-width: 491px;
    }

    .card-facilities h6,
    .card-facilities .h6 {
        margin-bottom: 14px;
        font-weight: 500;
    }

    .card-facilities ul {
        margin-bottom: 34px;
        display: flex;
        flex-wrap: wrap;
    }

    .card-facilities ul > li {
        margin-bottom: 10px;
        padding-left: 42px;
        position: relative;
        width: 50%;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        color: #71717a;
    }

    .card-facilities ul > li i {
        position: absolute;
        top: 1px;
        left: 0;
        font-size: 24px;
        color: var(--location-color);
    }

    .card-facilities p {
        line-height: 1.8;
        color: #71717a;
        min-height: 100px;
    }

    .card-facilities .button {
        margin-bottom: 0;
        padding: 10px;
        font-size: 16px;
    }

    /* ### video box ### */
    .videoBox {
        /*margin-bottom: 75px;*/
        background-color: var(--pure-light-color);
        padding: 1em 0;

        &.variant {
            .wrap {
                padding-top: 0;
                padding-bottom: 566px;

                @media only screen and (max-width: 1024px) {
                    padding-top: 340px;
                }

                @media only screen and (max-width: 640px) {
                    padding-bottom: 0;
                    display: flex;
                    flex-direction: column;
                    overflow-x: clip;
                    padding-top: 0;
                }
            }


            .video-item-1 {
                margin-left: -152px;
                bottom: 51px;
                top: auto;

                @media only screen and (max-width: 640px) {
                    max-width: 100%;
                //width: 269px;
                    position: relative;
                //left: calc(100vw - 269px);
                    top: unset;
                    bottom: unset;
                    margin-left: 0;
                    left: 30px;
                    width: calc(100% - 60px);
                }
            }

            .video-item-2 {
                top: 36%;
                left: 7%;
                transform: translateY(-26%);

                @media only screen and (max-width: 640px) {
                    position: relative;
                    max-width: 100%;
                    transform: translateY(0);
                    width: 260px;
                    top: -60px;
                    z-index: 2;
                }
            }

            .video-item-3 {
                top: 16%;
                right: 0;
                transform: translateY(-31%);

                @media only screen and (max-width: 640px) {
                    position: unset;
                    max-width: 40%;
                    transform: translateY(0);
                    order: 4;
                    margin-inline: 24px;
                }
            }
        }
    }

    .videoBox .wrap {
        margin: 0 auto;
        padding-top: 566px; /*459px;*/
        position: relative;
        max-width: 1440px;
    }

    .videoBox .image {
        position: relative;
    }

    .item {
        border-radius: 24px;
        overflow: hidden;
    }

    .videoBox .video-item-1 {
        margin-left: -88px; /*-170px;*/
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 1;
    }

    .videoBox .video-item-2 {
        position: absolute;
        top: 37%;
        left: 0;
        transform: translateY(-28%); /*translateY(-43%)*/
        z-index: 2;
    }

    .videoBox .video-item-3 {
        position: absolute;
        top: 66%;
        right: -5.5%;
        z-index: 2;
        transform: translateY(-30%);
    }

    .videoBox .title {
        padding: 30px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
    }

    .videoBox .title h2,
    .videoBox .title .h2 {
        font-size: 4.25rem;
        line-height: 1;
        text-align: left;
        color: var(--pure-white-color);
    }

    .videoBox .since {
        margin-bottom: 38px;
        font-size: 15rem;
        line-height: 1;
        color: #F5F3F3;
    }

    .videoBox .sub-title {
        padding: 21px 15px 20px 31px;
        font-size: 1.5rem;
        text-align: left;
        color: var(--pure-sec-color);
    }

    .videoBox .play-video {
        position: absolute;
        bottom: 30px;
        left: 30px;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        font-size: 2.813rem;
        color: #fff;
        border-radius: 50%;
        background-color: #8F817B;
        border: 3px solid #fff;

        i {
            &::before {
                content: '';
                width: 32px;
                height: 32px;
                display: block;
                background-image: url('/assets/templates/images/play-btn.svg');
                filter: brightness(0) invert(1);
            }
        }
    }

    .videoBox .button {
        margin-bottom: 0;
        padding: 11px 23px;
    }

    .videoBox.inner {
        margin-bottom: 0;
        margin-top: 75px;
    }

    .videoBox.inner-1 {
        margin-bottom: 43px;
        padding-top: 5em;
    }

    .videoBox.inner-1 + .careBox {
        margin: 100px 0;
    }

    .videoBox.with-slider .wrap {
        padding-top: 0;
    }

    .videoBox.with-slider .video-item-1 {
        margin-left: 0;
        position: relative;
        top: auto;
        left: auto;
        z-index: 1;
        max-width: none;
    }

    .videoBox.with-slider .video-item-2 {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: none;
    }

    .videoBox.with-slider .video-item-3 {
        position: relative;
        top: auto;
        right: auto;
        z-index: 2;
        transform: none;
        max-width: none;
    }

    .videoBox.with-slider .slick-arrow {
        position: absolute;
        top: 50%;
        z-index: 3;
        opacity: 1;
        width: 64px;
        height: 64px;
        font-size: 30px;
        color: var(--pure-info-color);
        border: 0;
        border-radius: 50%;
        background-color: var(--pure-white-color);
        cursor: pointer;
        translate: 0 -50%;
    }

    .videoBox.with-slider .slick-arrow.slick-disabled {
        opacity: 0;
    }

    .videoBox.with-slider .next-arrow {
        right: 44px;
    }

    .videoBox.with-slider .prev-arrow {
        left: 44px;
    }

    .videoBox.with-slider .slick-slide .image {
        margin: 0 10px;
    }

    .videoBox.with-slider .slick-slide .image img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .videoBox.with-slider .button {
        margin-top: 40px;
    }

    .videoBox.with-slider .slick-track {
        display: flex;
        align-items: center;
    }

    .videoBox.with-slider .slick-list {
        margin-left: -10px;
        margin-right: -10px;
    }

    .videoBox.with-slider .slick-dots {
        gap: 8px;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        pointer-events: none;
        position: absolute;
        right: 0;
        bottom: -57px;
        width: 92%;
    }

    .videoBox.with-slider .slick-dots li {
        display: inline-block;
        line-height: 1;
        list-style-type: none;
        margin: 0;
        pointer-events: auto;
    }

    .videoBox.with-slider .slick-dots li.slick-active button {
        background-color: var(--pure-info-color);
    }

    .videoBox.with-slider .slick-dots button {
        background-color: #fff;
        border: 1px solid var(--pure-info-color);
        border-radius: 0;
        box-sizing: border-box;
        height: 8px;
        margin: 0;
        opacity: 1;
        width: 40px;
        color: transparent;
        cursor: pointer;
    }

    .mfp-iframe-holder .mfp-close {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background-color: var(--pure-info-color);
        color: var(--pure-info-color);
        border: 3px solid #fff;
        opacity: 1;
        top: -75px;
        right: -30px;
    }

    .mfp-iframe-holder .mfp-close::before {
        content: '';
        width: 26px;
        height: 26px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mfp-iframe-holder .mfp-close::after {
        content: 'X';
        font-size: 1rem;
        font-weight: 700;
        color: white;
        height: 16px;
        width: 16px;
        position: absolute;
        top: 31%;
        left: 45%;
        transform: translate(-50%, -50%);
    }

    /* ### inspire box ### */
    .inspireBox {
        padding-bottom: 114px;
        padding-top: 106px;
        background-color: #FDFBF7;
    }

    .inspireBox .link {
        margin-bottom: 13px;
        font-size: 3rem;
        display: block;
    }

    .inspireBox h3,
    .inspireBox .h3 {
        margin-bottom: 67px;
        font-weight: 300;
        font-size: 2.5rem;
    }

    .inspireBox .holder {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 64px;
    }

    .inspireBox .column {
        position: relative;
    }

    .inspireBox .btn .button {
        padding: 12px 20px;
        min-width: 267px;
    }

    .inspireBox.inner .holder {
        margin-bottom: 50px;
    }

    /* ### card-inspire ### */
    .card-inspire {
        display: block;
        background-color: #FDFBF7;
        transition: all 0.3s;
        min-height: 550px;
        display: flex;
        flex-direction: column;
        height: 100%;

        .image {
            border-radius: 16px;
            overflow: hidden;

            img {
                width: 100%;
            }
        }

        h6, .h6 {
            font-size: 2.375rem;
            color: var(--pure-info-color);
            margin-bottom: 1px;
        }

        .subtitle {
            font-family: 'Poppins', sans-serif;
            color: #8F817B;
            font-size: 1.75rem;
            padding-bottom: 13px;
            display: block;
        }
    }

    .card-inspire .text {
        padding: 51px 0 43px 0;
        flex: 1;
    }

    .card-inspire p {
        margin-bottom: 0; /*48px;*/
        line-height: 1.8;
        color: var(--pure-sec-color);
    }

    .card-inspire .button {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 64px;
        font-size: 16px;
        border: 0;
        position: relative;
        transition: padding-right ease-in-out 0.3s;
        align-self: baseline;

        &::after {
            content: '';
            /* In de website moet de url /assets/templates/images/icon-arrow.svg zijn*/
            background-image: url("/assets/templates/images/icon-arrow.svg");
            width: 40px;
            height: 16px;
            position: absolute;
            right: 0;
            filter: brightness(0) saturate(100%) invert(52%) sepia(6%) saturate(642%) hue-rotate(335deg) brightness(99%) contrast(94%);
        }

        &:hover {
            padding-right: 84px;
            border: unset;
            background-color: unset;
        }
    }

    /* ### view box ### */
    .viewBox {
        padding-top: 41px;
        padding-bottom: 41px;
        background-color: var(--location-color);
    }

    .viewBox .holder {
        justify-content: space-between;
    }

    .viewBox h5,
    .viewBox .h5 {
        margin-bottom: 0;
        font-weight: 300;
    }

    .viewBox .button {
        margin-bottom: 0;
        padding: 11px 25px;
        font-size: 16px;
    }

    .viewBox.inner {
        margin-bottom: 30px;
        background-color: var(--pure-green-color);
    }

    /* ### review box ### */
    .reviewBox {
        padding-top: 105px;
        padding-bottom: 135px;
        position: relative;
        overflow: hidden;
        background-color: #FDFBF7;
    }

    .reviewBox .left {
        padding-right: 65px;
        position: relative;
        z-index: 1;
        width: 58%;
        /*max-height: 610px;*/
        max-width: 517px;
    }

    .reviewBox .right {
        margin-right: -200px;
        padding-left: 11px;
        position: relative;
        z-index: 1;
        width: calc(42% + 200px);
    }

    .reviewBox .text {
        position: relative;
        z-index: 1;
    }

    .reviewBox .link {
        margin-bottom: 6px;
    }

    .reviewBox h2,
    .reviewBox .h2 {
        font-size: 2.5rem;
        color: var(--pure-info-color);
        margin-bottom: 9px;
    }

    .reviewBox h3,
    .reviewBox .h3 {
        margin-bottom: 39px;
        font-weight: 300;
        font-size: 2rem;
        line-height: 1.4;
        color: var(--pure-sec-color);
    }

    .reviewBox h3 span,
    .reviewBox .h3 span {
        display: block;
    }

    .reviewBox .paragraph p {
        font-size: 1.25rem;
        line-height: 1.6;
    }

    .reviewBox .view {
        margin-bottom: 17px;
        display: block;
        font-size: 1.375rem;
        font-weight: 500;
    }

    .reviewBox .button {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 64px;
        font-size: 16px;
        border: 0;
        position: relative;
        transition: padding-right ease-in-out 0.3s;
        align-self: baseline;

        &::after {
            content: '';
            /* In de website moet de url /assets/templates/images/icon-arrow.svg zijn*/
            background-image: url("/assets/templates/images/icon-arrow.svg");
            width: 40px;
            height: 16px;
            position: absolute;
            right: 0;
        }

        &:hover {
            padding-right: 84px;
            border: unset;
            background-color: unset;
        }
    }

    .reviewBox .number {
        position: absolute;
        right: -123px;
        bottom: -107px;
        font-size: 36.25rem;
        line-height: 1;
        color: var(--pure-light-color);
    }

    .reviewBox .slick-list {
        margin: 0 -270px 0 0;
    }

    .reviewBox .slide {
        padding: 0 0;
    }

    .reviewBox .slick-arrow {
        position: absolute;
        top: 52%;
        z-index: 3;
        opacity: 0;
        width: 64px;
        height: 64px;
        font-size: 30px;
        color: var(--pure-info-color);
        border: 0;
        border-radius: 50%;
        background-color: var(--pure-white-color);
        transform: translateY(-50%);
        cursor: pointer;
        transition: opacity .2s ease-in;
        -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
        -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    }

    .reviewBox .slick-arrow.slick-disabled {
        opacity: 0;
    }

    .reviewBox .js-review-slider:hover .slick-arrow:not(.slick-disabled) {
        opacity: 1;
    }

    .reviewBox .next-arrow {
        right: -149px;

        &::after {
            content: '';
            background-image: url("/assets/templates/images/icon-arrow-right.svg");
            width: 32px;
            height: 16px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
        }
    }

    .reviewBox .prev-arrow {
        left: 33px;

        &::after {
            content: '';
            background-image: url("/assets/templates/images/icon-arrow-left.svg");
            width: 32px;
            height: 16px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
        }
    }

    .reviewBox.inner {
    //padding-block: 75px;
    }

    .reviewBox.inner:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-color: transparent transparent transparent #fafafa;
        border-style: solid;
        border-width: 385px 0 385px 345px;
        content: '';
    }

    .reviewBox.inner .card-review .content {
        padding: 112px 20px 20px;
        top: 0;
        bottom: auto;
    }

    .reviewBox.inner .card-review:after {
        display: none;
    }

    .reviewBox.inner .text .button {
        padding: 10px 15px;
        height: 38px;
    }

    .reviewBox.inner .text .button i {
        margin-top: -2px;
        margin-left: 5px;
        display: inline-block;
        font-size: 1.5rem;
        vertical-align: middle;
    }

    .js-review-slider .card-review img {
        border-radius: 24px;
    }

    .js-review-slider .slick-dots {
        position: absolute;
        display: flex;
        gap: 16px;
        bottom: -52px;
        left: 162px;

        @media only screen and (max-width: 640px) {
            left: 50%;
            transform: translateX(-50%);
        }

        li {
            button {
                background-color: #E1E3E9;
                width: 20px;
                height: 20px;
                border-radius: 20px;
                color: transparent;
                cursor: pointer;
            }

            &.slick-active {
                button {
                    background-color: var(--pure-info-color);
                }
            }
        }
    }

    /* ### card-review ### */
    .card-review {
        position: relative;
        display: block;
        height: 100%;
    }

    .card-review:after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
        content: '';
    }

    .card-review img {
    //width: 100%;
    }

    .card-review .content {
        padding: 20px 20px 40px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        text-align: center;
    }

    .card-review ul {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-review ul > li {
        margin-right: 11px;
        font-size: 24px;
        color: var(--location-color);
    }

    .card-review ul > li:last-child {
        margin-right: 0;
    }

    .card-review .heading {
        margin-bottom: 26px;
        font-size: 2.375rem;
        line-height: 1.1;
        color: var(--pure-white-color);
    }

    .card-review .button {
        margin-bottom: 0;
        padding: 9px 21px 10px;
        height: 38px;
        font-size: 16px;
    }

    .card-review .button i {
        margin-left: 5px;
        display: inline-block;
    }

    /* ### intro box ### */
    .introBox {
        padding-block: 75px;
        position: relative;
    }

    .introBox .content {
        position: relative;
        z-index: 2;
        max-width: 870px;
    }

    .introBox h1,
    .introBox .h1 {
        margin-bottom: 2px;
    }

    .introBox h2,
    .introBox .h2 {
        margin-bottom: 29px;
        font-weight: 300;
    }

    .introBox .paragraph {
        font-size: 2rem;
        font-weight: 300;
        line-height: 1.4;
        color: var(--pure-sec-color);
    }

    .introBox .paragraph p {
        line-height: 1.4;
    }

    .introBox .btn {
        padding-top: 50px;
    }

    .introBox .button {
        margin-bottom: 0;
        padding: 12px 15px;
        height: 38px;
        letter-spacing: 1.5px;
    }

    .introBox .button i {
        margin-left: 5px;
        display: inline-block;
        vertical-align: middle;
    }

    .introBox.inner {
        padding-bottom: 50px;
    }

    .introBox.inner .paragraph {
        font-size: 1.5rem;
        font-weight: 400;
    }

    .introBox.inner .paragraph p {
        line-height: 1.75;
    }

    /* ### text box ### */
    .textBox {
        margin-bottom: 75px;
        padding-top: 43px;
    }

    .textBox .text {
        max-width: 870px;
    }

    .textBox h6,
    .textBox .h6,
    .textBox h2 {
        margin-bottom: 30px;
        font-weight: 300;
        line-height: 1.45;
    }

    .textBox p {
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .textBox.inner {
        margin-bottom: 75px;
    }

    .textBox ul li {
        list-style-type: disc;
        margin-left: 40px;
    }

    .textBox ul li:last-of-type {
        margin-bottom: 30px;
    }

    .textBox ol li {
        list-style: decimal;
        margin-left: 13px;
    }

    /* ### care box ### */
    .careBox {
        margin-bottom: 100px;
    }

    .careBox .cell {
        position: relative;
    }

    .careBox .button {
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .careBox .reserve {
        flex-direction: row-reverse;
    }

    .careBox .reserve .image img {
        margin-left: 0;
    }

    .careBox .text {
        padding-top: 7px;
    }

    .careBox .link {
        margin-bottom: 7px;
    }

    .careBox h3,
    .careBox .h3 {
        margin-bottom: 13px;
        font-weight: 300;
        line-height: 1.4;
    }

    .careBox h3 span,
    .careBox .h3 span {
        display: block;
    }

    .careBox p {
        font-size: 24px;
        line-height: 1.8;
    }

    .careBox .image img {
        margin-left: auto;
    }

    .careBox .button {
        margin-bottom: 0;
        padding: 12px 22px;
    }

    .careBox.inner {
        margin-bottom: 75px;
    }

    .careBox.inner .grid-x {
        padding-block: 75px;
    }

    .careBox.inner .grid-x:last-child {
        margin-bottom: 0;
    }

    /* ### event box ### */
    .eventBox {
        background-color: #F4F4F5;
        padding-block: 50px;
        margin-bottom: 75px;
    }

    .eventBox .card-facilities {
        margin: 0 auto;
        max-width: 716px;
    }

    .eventBox .card-facilities .button {
        min-width: 122px;
    }

    /* ### access box ### */
    .accessBox {
        padding-block: 75px;
        overflow: hidden;
    }

    .accessBox .left {
        padding-top: 6px;
        width: 58%;
    }

    .accessBox .right {
        margin-right: -200px;
        position: relative;
        width: calc(42% + 200px);
    }

    .accessBox .link {
        margin-bottom: 40px;
    }

    .accessBox .wrap {
        margin-bottom: 36px;
        display: flex;
        flex-wrap: wrap;
    }

    .accessBox .add {
        padding-right: 50px;
    }

    .accessBox .add:last-child {
        padding-right: 0;
    }

    .accessBox h6,
    .accessBox .h6 {
        margin-bottom: 5px;
        font-weight: 500;
    }

    .accessBox address {
        margin-bottom: 0;
        font-style: normal;
        line-height: 1.8;
    }

    .accessBox .info {
        margin-bottom: 44px;
    }

    .accessBox ul > li {
        line-height: 1.8;
    }

    .accessBox ul > li > a {
        color: var(--pure-sec-color);
        transition: all 0.3s;
    }

    .accessBox ul > li > a:hover {
        color: var(--pure-info-color);
    }

    .accessBox p {
        max-width: 400px;
        line-height: 1.8;
    }

    .accessBox .button {
        margin-right: 20px;
        margin-bottom: 0;
        padding: 10px 17px;
        height: 38px;
    }

    .accessBox .button i {
        margin-left: 5px;
        display: inline-block;
        font-size: 20px;
        vertical-align: middle;
    }

    .accessBox .button:last-child {
        margin-right: 0;
    }

    .accessBox #map {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    /* ### copy box ### */
    .card-map {
        position: absolute;
        top: -25%;
        z-index: 1;
        transform: translate(-53%, -61%);
    }

    .card-map .bg {
        margin-bottom: 24px;
        position: relative;
        border: 2px solid var(--pure-white-color);
        background-color: var(--location-color);
    }

    .card-map .bg:before,
    .card-map .bg:after {
        position: absolute;
        bottom: -20px;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        transform: translateX(-50%);
        content: '';
    }

    .card-map .bg:before {
        z-index: 1;
        border-color: var(--location-color) transparent transparent;
        border-width: 22px 14px 0;
    }

    .card-map .bg:after {
        bottom: -24px;
        border-color: #fff transparent transparent;
        border-width: 24px 16px 0;
    }

    .card-map .image img {
        width: auto;
        min-height: auto;
        object-fit: unset;
    }

    .card-map .text {
        padding: 16px 15px 14px;
        font-size: 13px;
        line-height: 1.3;
        color: var(--pure-sec-color);
    }

    .card-map .marker {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        font-size: 20px;
        color: var(--pure-white-color);
        border: 1px solid var(--pure-white-color);
        border-radius: 50px;
        background-color: var(--location-color);
    }

    /* ### castle box ### */
    .castleBox {
        margin-bottom: 100px;
    }

    .castleBox .title {
        max-width: 690px;
    }

    .castleBox h3,
    .castleBox .h3 {
        margin-bottom: 51px;
        font-weight: 300;
        line-height: 1.4;
    }

    .castleBox .holder {
        margin: 0 -5px;
    }

    .castleBox .column {
        margin-bottom: 10px;
        padding: 0 5px;
        width: 33.33%;
    }

    .castleBox .card-location:hover {
        background-color: #fafafa;
    }

    /* ### register box ### */
    .registerBox {
        padding-bottom: 75px;
        position: relative;
        overflow: hidden;
    }

    .registerBox .holder {
        position: relative;
        z-index: 1;
    }

    .registerBox .left {
        width: 40%;
    }

    .registerBox .right {
        padding-top: 47px;
        padding-left: 23px;
        width: 60%;
        margin-top: auto;
    }

    .registerBox .card-location {
        max-width: 340px;
    }

    .registerBox .link {
        margin-bottom: 10px;
    }

    .registerBox h5,
    .registerBox .h5 {
        margin-bottom: 15px;
        font-weight: 300;
    }

    .registerBox p {
        margin-bottom: 36px;
        margin-top: 10px;
        line-height: 1.8;
    }

    .registerBox .form-field {
        margin-bottom: 30px;
    }

    .registerBox .form-input {
        height: 48px !important;
    }

    .registerBox .sub-title {
        margin-bottom: 5px;
        display: block;
        font-size: 16px;
    }

    .registerBox .wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .registerBox .check {
        margin-right: 27px;
        padding-left: 30px;
        position: relative;
    }

    .registerBox .check:last-child {
        margin-right: 0;
    }

    .registerBox .check input {
        position: absolute;
        top: 5px;
        left: 0;
    }

    .registerBox .check span {
        display: block;
        font-size: 13px;
        color: #072125;
    }

    .registerBox .submit {
        padding-top: 12px;
        text-align: right;
    }

    .registerBox .submit .button {
        margin-bottom: 0;
        padding: 12px 14px 11px;
    }

    .registerBox .submit .button i {
        margin-left: 5px;
        display: inline-block;
    }

    .registerBox .shape-1 {
        position: absolute;
        bottom: 51px;
        left: 0;
        opacity: 0.2;
    }

    .registerBox .shape-2 {
        position: absolute;
        bottom: 0;
        left: 144px;
        opacity: 0.5;
    }

    /* ### gallery box ### */
    .galleryBox .link {
        margin-bottom: 6px;
    }

    .galleryBox h3,
    .galleryBox .h3 {
        margin-bottom: 82px;
        font-weight: 300;
        line-height: 1.4;
    }

    .instagram-feed-wrapper {
        align-items: flex-start;
        background-color: #f4f4f5;
        display: flex;
        flex-wrap: wrap
    }

    .instagram-feed-wrapper .insta-item {
        flex: 0 0 25%;
        height: 380px;
        overflow: hidden;
        position: relative
    }

    .instagram-feed-wrapper .insta-item img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }

    .instagram-feed-wrapper .insta-item:hover .overlay-text {
        top: 0
    }

    .instagram-feed-wrapper .insta-item .overlay-text {
        align-items: center;
        background-color: var(--location-color);
        color: #fff;
        display: flex;
        height: 100%;
        justify-content: center;
        left: 0;
        padding: 0 24px;
        position: absolute;
        text-align: center;
        top: 100%;
        transition: top .2s ease-in
    }

    .instagram-feed-wrapper .insta-item .overlay-text p {
        -webkit-line-clamp: 9;
        -webkit-box-orient: vertical;
        color: black;
        display: -webkit-box;
        font-size: 1rem;
        line-height: 1.8125;
        margin-bottom: 0;
        overflow: hidden
    }

    .instagram-feed-wrapper .insta-item .overlay-text p b {
        font-size: 1.125rem;
        font-weight: 600;
        letter-spacing: .5px;
        line-height: 1.7777777778;
        margin-bottom: .5rem
    }

    .instagram-feed-wrapper .insta-item .overlay-text p a {
        color: inherit;
    }

    .instagram-feed-wrapper .insta-item .overlay-text p a:hover {
        text-decoration: underline
    }

    /* ### map box ### */
    .mapBox {
        margin-bottom: 249px;
        padding-top: 93px;
    }

    .mapBox .left {
        width: 58%;
    }

    .mapBox .map {
        position: relative;
        max-width: 515px;
        background-color: rgba(95, 130, 162, 0.6);
    }

    .mapBox .map iframe {
        opacity: 0.6;
        width: 100%;
        height: 523px;
    }

    .mapBox .text {
        padding: 30px 20px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        max-width: 250px;
    }

    .mapBox .text h6,
    .mapBox .text .h6 {
        margin-bottom: 0;
        line-height: 1.4;
    }

    .mapBox .right {
        padding-top: 7px;
        padding-left: 24px;
        width: 42%;
    }

    .mapBox .link {
        margin-bottom: 43px;
    }

    .mapBox .item {
        margin-bottom: 67px;
    }

    .mapBox .item:last-child {
        margin-bottom: 0;
    }

    .mapBox h6,
    .mapBox .h6 {
        margin-bottom: 5px;
        font-weight: 500;
    }

    .mapBox p {
        margin-bottom: 34px;
        line-height: 1.8;
    }

    .mapBox .button {
        margin-bottom: 0;
        padding: 10px 17px;
        height: 38px;
    }

    .mapBox .button i {
        margin-left: 5px;
        display: inline-block;
        font-size: 20px;
        vertical-align: middle;
    }

    /* ### contact box ### */
    .contactBox {
        padding-top: 112px;
        padding-bottom: 112px;
        position: relative;
    }

    .contactBox .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .contactBox .bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .contactBox.inner input {
        height: 48px !important;
    }

    .contactBox.inner .submit .button {
        height: 48px;
        color: var(--pure-sec-color);
        background-color: var(--pure-light-color);
    }

    .contactBox.inner .submit .button i {
        color: var(--location-color);
    }

    /* ### card-contact ### */
    .card-contact {
        padding: 49px 46px 56px 48px;
        position: relative;
        z-index: 2;
        background-color: var(--pure-white-color);
        display: flex;
        gap: 48px;
        border-radius: 8px;
        justify-content: space-between;
    }

    .card-contact .heading {
        margin-bottom: 26px;
        /*display: flex;*/
        /*flex-wrap: wrap;*/
        /*align-items: center;*/
        max-width: 432px;
    }

    .card-contact .heading h4,
    .card-contact .heading .h4 {
        margin-bottom: 15px;
        font-size: 2.25rem;
        line-height: 1.2;

        @media (width <= 768px) {
            font-size: 2rem;
        }
    }

    .card-contact .heading h5,
    .card-contact .heading .h5 {
        margin-bottom: 0;
        font-weight: 300;
    }

    .card-contact .heading span {
        font-weight: 300;
        line-height: 1;
        font-size: 1.625rem;
        color: #8F817B;
    }

    .card-contact .heading p {
        margin-top: 35px;
        color: var(--pure-sec-color);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.8;

        a {
            text-decoration: underline;
            color: var(--pure-sec-color);

            &:hover, &:focus {
                color: var(--location-color);
            }
        }

    }

    .card-contact .holder {
        margin: 0 -5px;
        display: flex;
        flex-wrap: wrap;
    }

    .card-contact .item {
        padding: 0 5px;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }


    .card-contact form {
        width: 100%;
        max-width: 464px;
        margin-top: 10px;
    }

    .card-contact .form-group {
        background-color: #F5F3F3;
        border-radius: 8px;
        padding: 14px 24px;
        width: 100%;

        &:not(:last-child) {
            margin-bottom: 20px;
        }

        input, [type="text"], [type="email"], textarea {
            background-color: transparent;
            padding: 0;
            border: unset;
            box-shadow: unset;
            margin: 0;
            font-size: .875rem;
            line-height: 1.4;
            color: #75645D;
            height: unset;

            &::placeholder {
                font-size: .875rem;
                line-height: 1.4;
                color: #75645D;
            }
        }

        textarea {
            min-height: 68px;
        }
    }

    .card-contact .form-group:last-child {
        margin-bottom: 0;
    }

    .card-contact .form-group.radio-buttons {
        background: transparent;
        padding: 0;
    }

    .card-contact .form-group.radio-buttons > label{
        color: var(--location-color);
    }

    .card-contact .form-group.radio-buttons .wrap {
        display: flex;
        gap: 25px;
    }

    .card-contact .form-group.radio-buttons .check {
        padding-left: 25px;
        position: relative;
    }

    .card-contact .form-group.radio-buttons .check  input[type='radio'] {
        position: absolute;
        top: 5px;
        left: 0;
    }

    .card-contact .form-group.radio-buttons .check span {
        color: var(--pure-sec-color);
        display: inline-block;
        font-size: .875rem;
    }

    .card-contact .submit {
        align-self: flex-end;
        margin-top: 33px;
    }

    .card-contact .submit .button {
        margin-bottom: 0;
        padding: 14px 24px 14px;
        border-radius: 8px;
        color: var(--pure-info-color);
        background-color: white;
        border: 1px solid var(--pure-info-color);
        font-size: 1rem;

        &:hover, &:focus {
            color: white;
            background-color: var(--pure-info-color);
        }

        @media (width <= 768px) {
            width: 100%;
        }
    }

    .card-contact .submit .button i {
        margin-left: 12px;
        display: inline-block;
    }

    /* ### footer container ### */
    #footerCntr {
        overflow: hidden;
        width: 100%;
        background-color: #F5F3F3;
    }

    #footerCntr.inner {
        /*background-color: var(--pure-green-color);*/
    }

    /* ### footer box ### */
    .footerBox {
        padding-top: 64px;
        padding-bottom: 35px;
        position: relative;

        .item {
            border-radius: 0;
        }
    }

    .footerBox .holder {
        /*margin-bottom: 23px;*/
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footerBox .footer-logo {
        width: 33%;
    }

    .footerBox .email {
        padding-left: 9px;
        width: 67%;
        margin-top: 28px;
    }

    .footerBox .title {
        margin-bottom: 26px;
        font-size: 2rem;
        line-height: 1;
        color: var(--pure-info-color);
    }

    .footerBox .form {
        padding: 0;
        display: flex;
        /*flex-wrap: wrap;*/
        gap: 16px;
        /*background-color: var(--pure-white-color);*/

        @media (width <= 640px) {
            flex-direction: column;
            justify-content: flex-start;
            gap: 20px;

            button {
                width: auto;
                align-self: flex-start;

            }
        }
    }

    .footerBox input {
        border-radius: 8px;
        background-color: white;
        padding: 14px 24px;
        border: 1px solid var(--blue-30);
        box-shadow: unset;
        margin: 0;
        font-size: .875rem;
        line-height: 1.4;
        color: var(--pure-sec-color);
        height: unset;
        max-width: 315px;

        &:focus {
            border: 0;
            box-shadow: unset;
        }

        &::placeholder {
            font-size: .875rem;
            line-height: 1.4;
            color: var(--pure-sec-color);
        }
    }

    .footerBox button {
        margin-bottom: 0;
        padding: 14px 23px 14px;
        border-radius: 8px;
        border: 1px solid var(--pure-sec-color);
        font-size: 1rem;
        color: white;
        background-color: var(--pure-sec-color);
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all ease-in-out 0.3s;

        i {
            margin-left: 12px;
        }

        &:hover, &:focus {
            color: var(--pure-sec-color);
            background-color: white;
        }
    }

    .footerBox button i {
        margin-left: 8px;
        display: inline-block;
    }

    .footerBox p {
        padding-block: 44px 11px;
        font-size: 1rem;

        span,
        strong {
            color: var(--pure-info-color);
            font-weight: 600;

            &:first-child {
                font-weight: 500;
            }
        }
    }

    .footerBox .item p {
        margin-bottom: 0;
    }

    .footerBox p a {
        position: relative;
        /*text-decoration: underline;*/
        color: inherit;
        transition: all 0.3s;

        &::after {
            content: '';
            position: absolute;
            width: 100%;
            background-color: var(--pure-info-color);
            height: 1px;
            bottom: 1px;
            left: 0;
            right: 0;
            transition: bottom ease-out 0.3s;
        }
    }

    .footerBox p a:hover {
        &::after {
            bottom: 0;
        }
    }

    .footerBox .wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .footerBox .item {
        width: 33.33%;
    }

    .footerBox .heading {
        margin-bottom: 11px;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.4;
        color: var(--pure-info-color);
    }

    .footerBox address {
        margin-bottom: 24px;
        font-style: normal;
        line-height: 2;
    }

    .footerBox address a {
        color: var(--pure-sec-color);
    }

    .footerBox .social-media {
        display: flex;
        flex-wrap: wrap;
    }

    .footerBox .social-media > li {
        margin-right: 25px;
    }

    .footerBox .social-media > li:last-child {
        margin-right: 0;
    }

    .footerBox .social-media > li > a {
        font-size: 1.375rem;
        color: var(--pure-sec-color);
        transition: all 0.3s;
    }

    .footerBox .social-media > li > a:hover {
        color: var(--pure-intro-color);
    }

    .footerBox .info {
        padding-top: 9px;
        line-height: 1.8;
    }

    .footerBox .navigation {
        display: flex;
        flex-wrap: wrap;
    }

    .footerBox .nav {
        width: 50%;
    }

    .footerBox .nav > li {
        line-height: 2.6;
    }

    .footerBox .nav > li > a {
        color: var(--pure-sec-color);
        transition: all 0.3s;
    }

    .footerBox .nav > li > a:hover {
        color: var(--pure-info-color);
    }

    .footerBox .item:nth-child(2) .gap {
        margin-left: 7px;
        /*border-left: 1px solid rgba(182, 207, 204, 0.8);*/
        /*mix-blend-mode: multiply;*/
    }

    .footerBox .item:last-child .gap {
        margin-left: 50px;
        padding-left: 50px;
        /*border-left: 1px solid rgba(182, 207, 204, 0.8);*/
        /*mix-blend-mode: multiply;*/
    }

    .footerBox .gap {
        padding-top: 17px;
        padding-bottom: 25px;
    }

    .footerBox .settings > li {
        line-height: 2.6;
    }

    .footerBox .settings > li > a {
        color: var(--pure-sec-color);
        transition: all 0.3s;
    }

    .footerBox .settings > li > a:hover {
        color: var(--location-color);
    }

    .footerBox .settings > li > a i {
        margin-right: 5px;
        display: inline-block;
        width: 26px;
    }

    .footerBox.inner .wrap {
        justify-content: space-between;
    }

    .footerBox.inner .item {
        width: auto;
    }

    .footerBox.inner .item:last-child .gap {
        border-left: 1px solid var(--pure-intro-color);
    }

    .footerBox.inner .social-media > li > a:hover {
        color: var(--pure-hover-color);
    }

    .footerBox.inner .nav > li > a:hover {
        color: var(--pure-hover-color);
    }

    .footerBox.inner .settings > li > a:hover {
        color: var(--pure-hover-color);
    }

    /* ### copyright box ### */
    .copyrightBox {
        padding-top: 18px;
        padding-bottom: 23px;
        position: relative;
        /*padding-inline: 40px;*/

        @media (width >= 640px) {
            .large-3 {
                ul {
                    display: none;
                }
            }
        }
    }

    .copyrightBox:before {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 1;
        width: 100%;
        height: 100%;
        background-color: var(--blue-100);
        content: '';
    }

    .copyrightBox ul {
        position: relative;
        z-index: 2;
        display: flex;
        flex-wrap: wrap;
    }

    .copyrightBox ul > li {
        margin-right: 31px;
        font-size: 0.813rem;
        color: #2f3339;
    }

    .copyrightBox ul > li:last-child {
        margin-right: 0;
    }

    .copyrightBox ul > li > a {
        color: #2f3339;
        transition: all 0.3s;
    }

    .copyrightBox ul > li > a:hover {
        color: var(--pure-sec-color);
    }

    .copyrightBox .dutch-logo {
        padding-left: 10px;
        position: relative;
        z-index: 2;
        left: -23px;
        top: 3px;
    }

    .copyrightBox.inner:before {
        background-color: var(--pure-green-color);
    }

    .copyrightBox.inner ul > li {
        color: var(--pure-hover-color);
    }

    .copyrightBox.inner ul > li > a {
        color: var(--pure-hover-color);
    }

    .copyrightBox.inner ul > li > a:hover {
        color: var(--pure-sec-color);
    }

    .smallContactBox {
        background-color: #C3D5EA;
        padding-block: 75px;
    }

    .smallContactBox form {
        column-count: 3;
    }

    .smallContactBox .submit .button {
        padding: 14px 14px 11px;
        color: var(--pure-sec-color);
        background-color: var(--pure-light-color);
    }

    .smallContactBox + .careBox {
        margin: 100px 0;
    }

    .title-with-text-box {
        padding-block: 120px 96px;

        @media only screen and (max-width: 640px) {
            padding-block: 60px 40px;
        }

        .column {
            width: 50%;

            @media only screen and (max-width: 640px) {
                width: 100%;
                padding-inline: 20px;
            }

            .content {
                padding-left: 8px;

                @media only screen and (max-width: 1024px) {
                    padding-left: 20px;
                }

                @media only screen and (max-width: 640px) {
                    padding-left: 0;
                }
            }
        }

        h2 {
            font-size: 2.5rem;
            color: var(--pure-info-color);
            margin-bottom: 9px;

            @media only screen and (max-width: 640px) {
                margin-bottom: 0;
            }
        }

        h3 {
            margin-bottom: 20px;
            font-weight: 300;
            font-size: 2rem;
            line-height: 1.4;
            color: var(--pure-sec-color);
        }

        p {
            line-height: 1.8;
            margin-bottom: 24px;
            font-weight: 300;

            a {
                position: relative;
                color: inherit;

                &:hover {
                    &::before {
                        bottom: 0;
                    }
                }

                &::before {
                    content: "";
                    background-color: var(--pure-info-color);
                    width: 100%;
                    height: 1px;
                    position: absolute;
                    left: 0;
                    bottom: 3px;
                    transition: bottom .2s ease-in;
                }
            }
        }

        &.small-subtitle {
            h3 {
                font-size: 1.6rem;
            }
        }

    }

    .image-text-box {
        padding-bottom: 100px;

        h2 {
            font-size: 2.5rem;
            color: var(--pure-info-color);
            margin-bottom: 44px;

            @media only screen and (max-width: 1024px) {
                margin-bottom: 20px;
            }
        }

        .column {
            width: 50%;
            margin-bottom: 20px;

            img {
                border-radius: 24px;
            }

            @media only screen and (max-width: 1024px) {

            }

            @media only screen and (max-width: 640px) {
                width: 100%;
                padding-inline: 20px;
            }

            &:nth-child(2) {
                .content {
                    padding-left: 8px;

                    @media only screen and (max-width: 1024px) {
                        padding-left: 20px;
                    }

                    @media only screen and (max-width: 640px) {
                        padding-left: 0;
                    }

                    p {
                        line-height: 1.8;
                        margin-bottom: 24px;
                        font-weight: 300;
                    }
                }
            }
        }

        .button {
            margin-bottom: 0;
            margin-top: 16px;
            padding: 11px 23px;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            color: #fff;
            background-color: var(--pure-info-color);
            cursor: pointer;
            border-radius: 8px;
            text-transform: uppercase;
            line-height: 1.5;
            border: 1px solid var(--pure-info-color);

            &:hover,
            &:focus {
                color: var(--pure-info-color);
                background-color: var(--pure-white-color);
            }
        }
    }

    /* #Media Queries ================================================== */
    @media only screen and (min-width: 1024px) and (max-width: 1950px) {
        .js-review-slider .card-review {
        //max-width: 790px;
        //max-height: 626px;
        }

        .js-review-slider .card-review:after {
            right: 176px;
            width: 55%;
            left: unset;
        }

        .js-review-slider .card-review img {
        //max-width: 1261px;
        //max-height: 626px;
        //object-fit: contain;
        }

        .reviewBox .prev-arrow {
        //border: 1px solid var(--pure-dark-color);
        }

        .reviewBox .card-review .heading {
            width: 50%;
            margin-left: 196px;
        }

        .reviewBox .button {
            bottom: -32px;
        }
    }

    @media only screen and (min-width: 1024px) and (max-width: 1430px) {
        .reviewBox .slick-list {
            margin: 0 -270px 0 -115px;
        }

        .reviewBox .prev-arrow {
            left: -10px;
        }

        .reviewBox .next-arrow {
            right: 70px;
        }
    }

    @media only screen and (min-width: 1024px) and (max-width: 1200px) {
        .reviewBox .slick-list {
            margin: 0 -270px 0 -155px;
        }

        .reviewBox .prev-arrow {
            left: -45px;
        }

        .reviewBox .next-arrow {
            right: -20px;
        }
    }

    @media only screen and (min-width: 1024px) and (max-width: 1100px) {
        .reviewBox .slick-list {
            margin: 0 -270px 0 -200px;
        }

        .reviewBox .prev-arrow {
            left: -84px;
        }

        .reviewBox .next-arrow {
            right: 15px;
        }
    }

    @media only screen and (max-width: 1439px) {
        .card-facilities .title {
            padding: 20px 15px 27px;
        }

        .reviewBox .right {
            margin-right: -100px;
            width: calc(42% + 100px);
        }

        .accessBox .right {
            margin-right: -200px;
            width: calc(42% + 200px);
        }

        .contactBox .bg:after {
            background-size: contain;
        }

        .careBox .button {
            position: unset;
            margin-top: 10px;
            margin-bottom: 40px;
        }

        .locationBox .h2 {
            font-size: 2rem;
            line-height: 1.4;
        }
    }

    @media only screen and (max-width: 1300px) {
        .videoBox .video-item-2 {
            max-width: 350px;
        }
    }

    @media only screen and (max-width: 1240px) {
        #headerCntr .left {
            width: 75%;
        }

        #headerCntr .right {
            width: 20%;
            top: 0;
        }

        #headerCntr .tel {
            margin-right: 20px;
        }

        #headerCntr .tel i {
            display: none;
        }
    }

    @media only screen and (min-width: 1200px) {
        .smallContactBox + .videoBox.inner-1 {
            padding: 4em 0 4.6em 0;
        }

        .videoBox.inner-1 {
            padding: 3.7em 0 0.1em 0;
        }
    }

    @media only screen and (max-width: 1200px) {
        #headerCntr.inner .left {
            width: 66%;
        }

        #headerCntr.inner .right {
            width: 34%;
        }

        .menuBox {
            padding-left: 30px;
        }

        .menuBox ul > li {
            margin-right: 20px;
        }

        .bannerBox {
            margin-bottom: 50px;
            padding-top: 50px;
        }

        .facilitiesBox.inner {
            margin-bottom: 75px;
            padding-top: 0;
        }

        .card-facilities .title {
            padding: 20px 15px;
            font-size: 2rem;
        }

        .videoBox .title {
            font-size: 3rem;
        }

        .videoBox .video-item-1 {
            max-width: 500px;
        }

        .videoBox .video-item-3 {
            max-width: 350px;
        }

        .videoBox .sub-title {
            font-size: 1rem;
        }

        .videoBox .since {
            font-size: 15rem;
        }

        .reviewBox .right {
            margin-right: 0;
            width: 42%;
        }

        .reviewBox .shape {
            top: 0;
        }

        .reviewBox.inner .card-review .content {
            padding: 50px 20px 20px;
        }

        .inspireBox.inner .holder {
            margin-bottom: 50px;
        }

        .textBox {
            margin-bottom: 75px;
        }

        .textBox.inner {
            margin-bottom: 50px;
        }

        .careBox {
            margin-bottom: 50px;
        }

        .careBox.inner .grid-x {
            margin-bottom: 50px;
        }

        .eventBox {
            margin-bottom: 50px;
        }

        .accessBox {
            margin-bottom: 75px;
            padding-top: 50px;
        }

        /* .accessBox.inner {
         padding-top: 140px;
    }
     */
        .castleBox {
            margin-bottom: 75px;
        }

        .registerBox .shape-2 {
            left: 50px;
            display: none;
        }

        .mapBox {
            margin-bottom: 75px;
            padding-top: 0;
        }

        .card-contact .form-group.radio-buttons .wrap {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
    }

    @media only screen and (min-width: 1025px) {
        .menuBox ul > li > ul {
            display: block !important;
            height: auto !important;
        }
    }

    @media only screen and (max-width: 1024px) {

        .h1,
        h1 {
            font-size: 3.125rem;
        }

        .h2,
        h2 {
            font-size: 2.625rem;
        }

        #headerCntr {
            padding-top: 8px;
            padding-bottom: 8px;
        }

        #headerCntr .logo {
            padding-left: 20px;
        }

        #headerCntr .left {
            width: auto;
        }

        #headerCntr.inner .left {
            width: auto;
        }

        #headerCntr .right {
            display: none;
        }

        #headerCntr.active:after {
            display: block;
            background-color: #F5F3F3;
        }

        #headerCntr .tel {
            margin-right: 0;
            padding: 13px 25px;
            display: inline-block;
            min-width: 212px;
            font-weight: 600;
            text-align: center;
            border: 1px solid var(--pure-white-color);
        }

        #headerCntr .tel:hover {
            background-color: var(--pure-white-color);
        }

        #headerCntr .button {
            display: inline-block;
            width: auto;
        }

        #headerCntr.inner .menuBox {
            padding-bottom: 315px;
        }

        #headerCntr.inner .menuBox ul > li > a i {
            color: var(--pure-green-color);
        }

        #headerCntr.inner .menuBox ul.d-hidden {
            background-color: var(--pure-green-color);
        }

        #headerCntr.inner .button {
            min-width: 213px;
            height: 56px;
            background-color: var(--pure-white-color);
        }

        #headerCntr.inner .button i {
            margin-top: -5px;
            margin-left: 20px;
            display: inline-block;
            vertical-align: middle;
        }

        .menuBox {
            padding-top: 99px;
            padding-bottom: 0; /*235px;*/
            padding-left: 0;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 15;
            opacity: 0;
            visibility: hidden;
            width: 100%;
            height: 100vh;
            background-color: var(--pure-light-color);
            transition: all 0.3s;
            overflow-y: scroll;
        }

        .menuBox.open {
            opacity: 1;
            visibility: visible;
            background-color: #F5F3F3;

            div.mobile-menu {
                display: block !important;
            }
        }

        .menuBox ul > li {
            margin-right: 0;
            padding: 0;
            display: block;

            &.active a:after {
                width: 35%;
                bottom: 20px;
                left: 40px
            }
        }

        .menuBox > ul > li > a {
            padding: 15px 40px;
            display: block;
            font-size: 1.125rem;
        }

        .menuBox ul > li > a:hover {
            /*background-color: var(--pure-white-color);*/
        }

        .menuBox ul > li > a i {
            display: inline-block;
            vertical-align: middle;
        }

        .menuBox ul > li > ul {
            padding: 0;
            position: unset;
            display: none;
            width: 100%;
            transition: unset;
        }

        .mobileMenu {
            display: flex;
        }

        .menuBox ul.d-hidden {
            padding: 15px 25px;
            position: fixed;
            bottom: 0;
            left: 0;
            display: block;
            width: 100%;
            background-color: var(--location-color);
        }

        .menuBox ul.d-hidden > li {
            margin-bottom: 20px;
        }

        .menuBox ul.d-hidden > li:after {
            display: none;
        }

        .menuBox ul.d-hidden > li:last-child {
            margin-bottom: 0;
        }

        .bannerBox {
            padding-top: 20px;
        }

        .locationBox {
            padding-top: 75px;
            padding-bottom: 75px;
        }

        .locationBox .content {
            margin-bottom: 80px;
        }

        .locationBox .paragraph {
            font-size: 1.5rem;
            padding-left: 0;
            margin-top: 32px;
            margin-bottom: 0;
        }

        .locationBox .column {
            margin-bottom: 10px;
            /*width: 50%;*/
        }

        .locationBox .column:last-child {
            /*margin-bottom: 0;*/
        }

        .locationBox .shape {
            display: none;
        }

        .facilitiesBox {
            margin-bottom: 50px;
            padding-top: 75px;
        }

        .facilitiesBox h3,
        .facilitiesBox .h3 {
            margin-bottom: 50px;
        }

        .facilitiesBox .slick-arrow {
            margin-top: -170px;
            width: 50px;
            height: 50px;
            font-size: 24px;
        }

        .facilitiesBox .next-arrow {
            right: 25px;
        }

        .facilitiesBox .prev-arrow {
            left: 25px;
        }

        .facilitiesBox .column {
            margin-bottom: 20px;
        }

        .card-facilities .content {
            padding: 30px 20px;
        }

        .card-facilities ul {
            margin-bottom: 20px;
        }

        .card-facilities ul > li {
            width: 100%;
        }

        .videoBox {
            padding-top: 40px;
            margin-bottom: 50px;
        }

        .videoBox .title h2 {
            font-size: 2rem;
        }

        .videoBox.with-slider .slick-dots {
            right: 20px;
            bottom: -27px;
        }

        .videoBox .wrap {
            padding-top: 340px;
        }

        .videoBox .video-item-1 {
            max-width: 400px;
        }

        .videoBox .video-item-2 {
            max-width: 250px;
        }

        .videoBox .video-item-3 {
            max-width: 250px;
            top: 72%;
        }

        .videoBox .sub-title {
            padding: 15px;
        }

        .videoBox .since {
            padding-left: 0;
            font-size: 10rem;
        }

        .videoBox.inner {
            margin-top: 50px;
        }

        .videoBox.inner-1 {
            margin-bottom: 0;
        }

        .inspireBox {
            margin-bottom: 100px;
        }

        .inspireBox h3,
        .inspireBox .h3 {
            margin-bottom: 40px;
        }

        .inspireBox.inner .holder {
            margin-bottom: 50px;
        }

        .inspireBox.no-gap {
            margin-bottom: 0;
        }

        .card-inspire .text {
            padding: 25px 15px;
        }

        .card-inspire h6,
        .card-inspire .h6 {
            font-size: 1.125rem;
        }

        .card-inspire p {
            margin-bottom: 25px;
        }

        .viewBox {
            text-align: center;
        }

        .viewBox .holder {
            justify-content: center;
        }

        .viewBox h5,
        .viewBox .h5 {
            margin-bottom: 20px;
            width: 100%;
        }

        .reviewBox {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        .reviewBox .paragraph {
            /* margin-bottom: 30px; */
            max-width: 100%;
        }

        .reviewBox .left {
            margin-bottom: 30px;
            padding-right: 0;
            width: 100%;
        }

        .reviewBox .right {
            padding-left: 0;
            width: 100%;
        }

        .reviewBox .slick-list {
            margin: 0 -15px;
        }

        .reviewBox .slick-arrow {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }

        .reviewBox .next-arrow {
            right: 20px;
        }

        .reviewBox .prev-arrow {
            left: 20px;
        }

        .reviewBox .number {
            right: -20px;
            font-size: 29rem;
        }

        .reviewBox.inner:after {
            display: none;
        }

        .introBox {
            padding-block: 50px;
        }

        .introBox .paragraph {
            font-size: 1.5rem;
        }

        .introBox .btn {
            padding-top: 40px;
        }

        .textBox {
            margin-bottom: 50px;
        }

        .careBox {
            margin-bottom: 100px;
        }

        .careBox.inner .grid-x {
            margin-bottom: 50px;
            padding: 0;
        }

        .careBox .text {
            margin-bottom: 40px;
        }

        .careBox p {
            /* margin-bottom: 30px; */
            font-size: 1.25rem;
        }

        .careBox .image img {
            margin-left: 0;
            width: 100%;
        }

        .careBox.inner {
            margin-bottom: 100px;
        }

        .accessBox {
            margin-bottom: 50px;
            padding-top: 50px
        }

        .accessBox .left {
            margin-bottom: 50px;
            padding-top: 0;
            width: 100%;
        }

        .accessBox .right {
            margin-right: 0;
            width: 100%;
        }

        .accessBox p {
            max-width: 100%;
        }

        /* .accessBox.inner {
         padding-top: 100px;
    }
     */
        .castleBox {
            margin-bottom: 50px;
        }

        .castleBox .column {
            width: 50%;
        }

        .galleryBox h3,
        .galleryBox .h3 {
            margin-bottom: 50px;
        }

        .card-facilities .play-video {
            bottom: 15px;
            left: 15px;
            width: 50px;
            height: 50px;
            font-size: 2rem;
        }

        /* .mapBox {
         margin-bottom: 100px;
    }
     */
        .contactBox {
            min-height: auto;
        }

        .contactBox.inner .card-contact .item {
            margin-bottom: 20px;
            width: 100%;
        }

        .contactBox.inner .card-contact .item:last-child {
            margin-bottom: 0;
        }

        .card-contact {
            padding: 30px;
        }

        .card-contact .heading span {
            padding-left: 0;
            display: block;
            width: 100%;
        }

        .footerBox .venue-logo {
            margin-left: 0;
            right: 15px;
            left: auto;
        }

        .footerBox .title {
            font-size: 2rem;
            line-height: 1.4;
        }

        .footerBox button {
            /*padding: 10px;*/
            width: 100%;
        }

        .footerBox address {
            font-size: 14px;
        }

        .footerBox .social-media > li > a {
            font-size: 1.25rem;
        }

        .footerBox .heading {
            font-size: 1.063rem;
        }

        .footerBox .navigation {
            justify-content: space-between;
        }

        .footerBox .nav {
            width: auto;
        }

        .footerBox .nav > li > a {
            font-size: 0.875rem;
        }

        .footerBox .settings > li > a {
            font-size: 0.875rem;
        }

        .footerBox .item:last-child .gap {
            margin-left: 25px;
            padding-left: 25px;
        }

        .footerBox.inner .item {
            width: 50%;
        }

        .footerBox.inner .navigation {
            width: 50%;
        }

        .footerBox.inner .item:last-child .gap {
            margin-left: 0;
        }

        .footerBox .info {
            font-size: 14px;
        }

        .copyrightBox {
            text-align: center;
        }

        .copyrightBox ul {
            margin-bottom: 10px;
            justify-content: center;
        }

        .instagram-feed-wrapper .insta-item {
            flex: 0 0 33.333333%
        }


        .reviewBox .button {
            /*position: unset;*/
            margin-top: 10px;
            margin-bottom: 40px;
        }
    }

    @media only screen and (min-width: 640px) {
        .videoBox.with-slider .slick-dots {
            display: none !important;
        }
    }

    @media only screen and (max-width: 640px) {
        .reviewBox .right {
            padding-inline: 35px;
        }

        .reviewBox .left {
            padding-inline: 20px;
        }

        section {
            scroll-margin-top: 50px;
        }

        .h1,
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }

        .h2,
        h2 {
            font-size: 2rem;
            line-height: 1.2;
        }

        .h3,
        h3 {
            font-size: 2rem;
            line-height: 1.2;
        }

        .h4,
        h4 {
            font-size: 1.875rem;
            line-height: 1.2;
        }

        .h5,
        h5 {
            font-size: 1.625rem;
            line-height: 1.2;
        }

        input,
        textarea {
            /*padding: 10px 15px !important;*/
        }

        .link {
            font-size: 1.875rem;
        }

        .locationBox {
            padding-top: 34px;
            padding-bottom: 40px;
        }

        .locationBox .content {
            margin-bottom: 0;
            margin-inline: 20px;
        }

        .videoBox + .locationBox {
            padding-bottom: 80px;

            .h1 {
                font-size: 3rem;
            }
        }

        .locationBox {
            &.has-locations {
                padding-top: 15px;

                h2.h1 {
                    font-size: 3rem;
                    line-height: 1.2;
                }
            }
        }

        .locationBox h3,
        .locationBox .h3 {
            margin-bottom: 32px;
            margin-top: 16px;
        }

        .locationBox .paragraph {
            font-size: 1rem;
            line-height: 1.8;
            margin-top: 25px;
        }

        .locationBox .h2 {
            margin-bottom: 15px;
            margin-top: 0;
        }

        .locationBox .column {
            width: 100%;

        }

        .locationBox .holder .swiper-wrapper {
            /*grid-template-columns: 1fr;*/
            /*padding-inline: 40px;*/
            /*margin-top: 50px;*/
        }

        .facilitiesBox {
            margin-bottom: 50px;
            padding-top: 80px;
        }

        .facilitiesBox h3,
        .facilitiesBox .h3 {
            margin-bottom: 30px;
        }

        .facilitiesBox .next-arrow {
            right: 15px;
        }

        .facilitiesBox .prev-arrow {
            left: 15px;
        }

        .facilitiesBox .column {
            width: 100%;
        }

        .facilitiesBox .btn {
            padding-top: 20px;
        }

        .footerBox .item:nth-child(2) .gap {
            margin-left: 0;
        }

        .facilitiesBox.inner {
            margin-bottom: 50px;
        }

        .card-facilities .text {
            max-width: 100%;
        }

        .card-facilities .title {
            font-size: 1.563rem;
        }

        .videoBox .wrap {
            padding-top: 0;
            display: flex;
            flex-direction: column;
            overflow-x: clip;
        }

        .videoBox .item {
            margin-bottom: 15px;
        }

        .videoBox .video-item-1 {
            margin-left: 0;
            max-width: 100%;
        //width: 269px;
            position: relative;
        //left: calc(100vw - 269px);
            top: unset;
            bottom: unset;
            left: 30px;
            width: calc(100% - 60px);
        }

        .videoBox .video-item-2 {
            position: relative;
            max-width: 100%;
            transform: translateY(0);
            width: 173px;
            top: -40px;
            z-index: 2;

            display: none;
        }

        .videoBox .video-item-3 {
            position: unset;
            max-width: 40%;
            transform: translateY(0);
            order: 4;
            margin-inline: 24px;
            margin-bottom: 0;
            display: none;
        }

        .js-text-scroll {
            display: none;
        }

        .videoBox .image img {
            width: 100%;
        }

        .videoBox .since {
            order: 3;
            white-space: nowrap;
            font-size: 6rem;
        }

        .videoBox.inner .since {
            display: none;

        }

        .videoBox.inner-1 {
            padding-top: 3em;
        }

        .smallContactBox + .videoBox.inner-1 {
            padding-bottom: 3em;
        }

        .videoBox.with-slider .prev-arrow,
        .videoBox.with-slider .next-arrow {
            display: none !important;
        }

        .inspireBox {
            padding-top: 64px;
            padding-bottom: 80px;
            padding-inline: 20px;
            margin-bottom: 0;

            .link {
                font-size: 2.5rem;
                margin-bottom: 12px;
                display: block;
                line-height: 1.2;
            }

            .h3 {
                margin-bottom: 64px;
                line-height: 1.4;
                font-size: 2rem;
            }

            .holder {
                grid-template-columns: 1fr;
                gap: 80px;
            }
        }

        .image-text-box {
            padding-bottom: 0;
        }

        .card-location .image img {
            width: 40%;
        }

        .card-inspire {
            .image {
                img {
                    width: 100%;
                }
            }

            .text {
                padding-block: 40px;
                padding-inline: 0;

                .h6 {
                    font-size: 2.375rem;
                }

                .subtitle {
                    font-size: 1.75rem;
                }

                p {
                    margin-bottom: 0;
                }
            }

            .button {
                margin-left: 0;
                padding-left: 0;
            }
        }

        .inspireBox .column {
            margin-bottom: 25px;
            width: 100%;
        }

        .inspireBox .column:last-child {
            margin-bottom: 0;
        }

        .inspireBox .btn {
            padding-top: 30px;
        }

        .inspireBox.inner .holder {
            margin-bottom: 10px;
        }

        .reviewBox {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .reviewBox .paragraph {
            font-size: 1.25rem;
        }

        .reviewBox .number {
            font-size: 25rem;
        }

        .reviewBox .view {
            font-size: 1rem;
        }

        .reviewBox.inner {
        //padding: 0;
        }

        .introBox {
            padding-top: 40px;
            padding-bottom: 70px;
        }

        .introBox h3,
        .introBox .h3 {
            margin-bottom: 20px;
        }

        .introBox.inner .paragraph,
        .introBox .paragraph {
            font-size: 1.25rem;
        }

        .introBox.inner .paragraph p {
            line-height: 1.4;
        }

        .introBox .btn {
            padding-top: 30px;
        }

        .textBox {
            margin-bottom: 70px;
        }

        .textBox.inner {
            padding-top: 0;
        }

        .careBox {
            margin-bottom: 70px;
        }

        .careBox p {
            font-size: 1rem;
        }

        .careBox.inner {
            margin-bottom: 80px;
        }

        .accessBox {
            margin-bottom: 0;
            /* padding: 0; */
        }

        /* .accessBox.inner {
         padding-top: 70px;
    }
     */
        .castleBox {
            margin-bottom: 50px;
        }

        .castleBox h3,
        .castleBox .h3 {
            margin-bottom: 30px;
        }

        .castleBox .column {
            width: 100%;
        }

        .accessBox .map iframe {
            height: 400px;
        }

        .registerBox {
            padding-bottom: 50px;
        }

        .registerBox .left {
            width: 100%;
        }

        .registerBox .right {
            padding-top: 50px;
            padding-left: 0;
            width: 100%;
        }

        .registerBox .card-location {
            max-width: 100%;
        }

        .registerBox .card-location .text {
            padding: 40px 20px 10px;
        }

        .galleryBox h3,
        .galleryBox .h3 {
            margin-bottom: 30px;
        }

        /* .mapBox {
         margin-bottom: 70px;
    }
     */
        .mapBox .left {
            margin-bottom: 40px;
            width: 100%;
        }

        .mapBox .right {
            padding-top: 0;
            padding-left: 0;
            width: 100%;
        }

        .mapBox .map {
            max-width: 100%;
        }

        .contactBox {
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .contactBox.inner .submit {
            padding-top: 20px;
            position: unset;
        }

        .contactBox.inner .submit .button {
            width: 100%;
        }

        .card-contact {
            flex-direction: column;
            gap: 42px;
            margin: 0 20px;

            .heading {
                margin-bottom: 0;

                p {
                    margin-top: 24px;
                    margin-bottom: 0;
                }
            }
        }

        .card-contact .form-group {
            margin-bottom: 20px;
        }

        .card-contact .item {
            margin-bottom: 20px;
        }

        .card-contact .item:last-child {
            margin-bottom: 0;
        }

        .card-contact .heading span {
            font-size: 1.25rem;
            line-height: 1.4;
        }

        .footerBox {
            padding-top: 60px;
            padding-inline: 20px;
        }

        .footerBox .navigation {
            flex-direction: column;
        }

        .footerBox .item {
            margin-bottom: 30px;
            width: 100%;
        }

        .footerBox .item:last-child {
            margin-bottom: 0;
        }

        .footerBox p {
            font-size: 0.875rem;
            padding-top: 24px;
        }

        .footerBox .nav {
            width: 50%;
        }

        .footerBox .wrap .item:first-child {
            order: 3;
            margin-bottom: 0;
            margin-top: 30px;
        }

        .footerBox .footer-logo {
            margin-bottom: 45px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .footerBox .email {
            padding-left: 0;
            width: 100%;
            margin-bottom: 60px;
        }

        .footerBox .gap {
            padding-top: 0;
            padding-bottom: 0;
        }

        .footerBox .item:last-child .gap {
            margin-left: 0;
            padding-left: 0;
            border-left: 0;
        }

        .footerBox.inner .item {
            width: 100%;
        }

        .footerBox.inner .navigation {
            width: 100%;
        }

        .footerBox.inner .item:last-child .gap {
            margin-left: 0;
            border-left: 0;
        }

        .footerBox .heading {
            font-size: 1.663rem;
        }

        .copyrightBox {
            padding-top: 64px;
            padding-bottom: 40px;

            .grid-container {
                padding-inline: 40px;
            }

            .large-3 {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;

                ul {
                    justify-content: flex-start;
                    margin-top: 32px;
                }

                .dutch-logo {
                    margin-top: 32px;
                    padding-left: 0;
                }
            }

            .large-9 {
                ul {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;

                    li {
                        margin-right: 0;
                        margin-bottom: 16px;

                        &:first-child {
                            display: none;
                        }
                    }

                }
            }
        }

        .videoBox {
            margin-bottom: 0;
            padding-top: 0;
        }

        .videoBox .play-video {
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            bottom: unset;
            left: unset;
        }
    }

    .instagram-feed-wrapper .insta-item {
        flex: 0 0 50%
    }

    .contactBox form {
        column-count: 1;
        position: unset;
    }

    .contactBox form div:nth-of-type(1) {
        position: unset;
    }

    .contactBox form div:nth-of-type(2) {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .contactBox .submit {
        float: none;
        /*margin-top: auto;*/
    }

    .smallContactBox form {
        column-count: 1;
    }


    @media only screen and (max-width: 480px) {
        .accessBox .button {
            margin-right: 0;
            margin-bottom: 20px;
            width: 100%;
        }

        .instagram-feed-wrapper .insta-item {
            flex: 0 0 100%
        }
    }


    dialog {
        width: 100vw;
        max-width: 960px;
        max-height: 90svh;
        height: 100vh;
        padding: 1em;
        border-radius: 24px;
        border: unset;
        /*position: relative;*/

        iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--location-color);
            opacity: 1;
            top: 30px;
            right: 30px;
            position: absolute;
        }
    }


    @media only screen and (min-width: 1024px) {
        .page-trouwen {
            .locationBox {
                padding-block: 109px 102px;
            }

            .videoBox.variant + .locationBox {
                padding-top: 46px;
            }
        }
    }

    .paragraph a:not(.button) {
        position: relative;
        color: inherit;

        &:hover {
            &::before {
                bottom: 0;
            }
        }

        &::before {
            content: "";
            background-color: var(--pure-info-color);
            width: 100%;
            height: 2px;
            position: absolute;
            left: 0;
            bottom: 3px;
            transition: bottom .2s ease-in;
        }
    }

    .footerBox {
        .hide-desktop {
            display: none;

            @media only screen and (max-width: 640px) {
                display: block;
            }
        }

        .hide-mobile {
            display: block;

            @media only screen and (max-width: 640px) {
                display: none;
            }
        }
    }

    body.template-reserveren {
        section.locationBox {
            padding-bottom: 50px;

            .paragraph {
                padding-left: 0;
                font-size: 1.25rem;
            }
        }
        section.reserveren {
            #oa_widget {
                font-family: 'Poppins', sans-serif !important;
                color: #584B46;

                @media (width <= 640px) {
                    margin-inline: 20px;
                    padding: 0;
                }
            }
            #oa_widget .datepicker-inline table tr td.day, #oa_widget .datepicker-inline table tr td.day.highlighted {
                background: #FDFBF7 !important;
                color: #584B46 !important;
            }
            #oa_widget .datepicker-inline table tr td.active, #oa_widget .datepicker-inline table tr td.highlighted.active, #oa_widget .datepicker-inline table tr td.day:hover, #oa_widget .datepicker-inline table tr td.highlighted:hover {
                background: #584B46 !important;
                color: #fff!important;
            }
            #oa_widget .datepicker-inline table tr td.disabled {
                background: #fff !important;
                color: #ccc !important;
            }
            #widget-select-time ul.oanl-times-list a.oanl-times-list-button, #widget-reschedule-time ul.oanl-times-list a.oanl-times-list-button {
                background: #584B46 !important;
                color: #fff !important;
            }
            #oa_widget a:not(.oanl-times-list-button), #oa_widget a:visited {
                color: #584B46 !important;
                text-decoration: underline;
            }
            #oa_widget .fld input,
            #oa_widget .fld textarea {
                background: #F5F3F3;
                color: #75645D;
                border: 0;
                box-shadow: none;
                border-radius: 8px;
            }
            #oa_widget .fld {
                border: 0;
                border-radius: 8px;
            }
            .frm-section-mailinglist p {
                display: flex;
                align-items: center;
                justify-content: flex-start;
            }
            #oa_widget .form-row button {
                background: var(--pure-info-color) !important;
                font-family: 'Poppins', sans-serif !important;
                padding: 8px 23px !important;
                font-size: 1rem !important;
                font-weight: 500;
                letter-spacing: 1px;
                text-transform: uppercase;
                line-height: 1.5;
                transition: background .3s ease-in;

                &:hover {
                    color: var(--pure-info-color) !important;
                    background: #fff !important;
                    border: 1px solid var(--pure-info-color) !important;
                }
            }
            #oa_widget input, #oa_widget textarea, #oa_widget select, #oa_widget button, .oanl-booking-widget input, .oanl-booking-widget textarea, .oanl-booking-widget select, .oanl-booking-widget button {
                font-family: 'Poppins', sans-serif !important;
            }
        }
        thead {
            background: #F5F3F3;
        }
    }

    .grecaptcha-badge {
        visibility: hidden;
        opacity: 0;
    }

    .js-location-mobile-slider,
    .inspireBox {
        .swiper-button {
            width: 50px;
            height: 50px;
            font-size: 24px;
            color: var(--pure-info-color);
            border: 0;
            border-radius: 50%;
            background-color: var(--pure-white-color);
            transform: translateY(-50%);
            cursor: pointer;
            transition: opacity .2s ease-in;
            -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);

            svg {
                display: none;
            }

            &.swiper-button-next {
                right: 30px;

                &::after {
                    content: '';
                    background-image: url("/assets/templates/images/icon-arrow-right.svg");
                    width: 32px;
                    height: 16px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
                }
            }

            &.swiper-button-prev {
                left: 30px;


                &::after {
                    content: '';
                    background-image: url("/assets/templates/images/icon-arrow-left.svg");
                    width: 32px;
                    height: 16px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
                }
            }
        }
    }

    .inspireBox {
        .slider-wrapper {
            position: relative;

            .js-inspire-mobile-slider {
            }
            .swiper-button {

                &.swiper-button-next {
                    right: -25px;
                    top: 200px;
                }

                &.swiper-button-prev {
                    left: -25px;
                    top: 200px;
                }
            }
        }
    }

}

.footerBox .nav > li > a:hover {
    color: var(--pure-info-color);
}

.footerBox .item:nth-child(2) .gap {
    margin-left: 7px;
    /*border-left: 1px solid rgba(182, 207, 204, 0.8);*/
    /*mix-blend-mode: multiply;*/
}

.footerBox .item:last-child .gap {
    margin-left: 50px;
    padding-left: 50px;
    /*border-left: 1px solid rgba(182, 207, 204, 0.8);*/
    /*mix-blend-mode: multiply;*/
}

.footerBox .gap {
    padding-top: 17px;
    padding-bottom: 25px;
}

.footerBox .settings > li {
    line-height: 2.6;
}

.footerBox .settings > li > a {
    color: var(--pure-sec-color);
    transition: all 0.3s;
}

.footerBox .settings > li > a:hover {
    color: var(--location-color);
}

.footerBox .settings > li > a i {
    margin-right: 5px;
    display: inline-block;
    width: 26px;

    &::before {
        font-size: 19px;
    }
}

.footerBox.inner .wrap {
    justify-content: space-between;
}

.footerBox.inner .item {
    width: auto;
}

.footerBox.inner .item:last-child .gap {
    border-left: 1px solid var(--pure-intro-color);
}

.footerBox.inner .social-media > li > a:hover {
    color: var(--pure-hover-color);
}

.footerBox.inner .nav > li > a:hover {
    color: var(--pure-hover-color);
}

.footerBox.inner .settings > li > a:hover {
    color: var(--pure-hover-color);
}

/* ### copyright box ### */
.copyrightBox {
    padding-top: 18px;
    padding-bottom: 23px;
    position: relative;
    /*padding-inline: 40px;*/

    @media (width >= 640px) {
        .large-3 {
            ul {
                display: none;
            }
        }
    }
}

.copyrightBox:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: var(--blue-100);
    content: '';
}

.copyrightBox ul {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
}

.copyrightBox ul > li {
    margin-right: 31px;
    font-size: 0.813rem;
    color: var(--pure-white-color);
}

.copyrightBox ul > li:last-child {
    margin-right: 0;
}

.copyrightBox ul > li > a {
    color: var(--pure-white-color);
    transition: all 0.3s;
}

.copyrightBox ul > li > a:hover {
    color: var(--location-color);
}

.copyrightBox .dutch-logo {
    padding-left: 10px;
    position: relative;
    z-index: 2;
    left: -23px;
    top: 3px;
}

.copyrightBox.inner:before {
    background-color: var(--pure-green-color);
}

.copyrightBox.inner ul > li {
    color: var(--pure-hover-color);
}

.copyrightBox.inner ul > li > a {
    color: var(--pure-hover-color);
}

.copyrightBox.inner ul > li > a:hover {
    color: var(--pure-sec-color);
}

.smallContactBox {
    background-color: #C3D5EA;
    padding-block: 75px;
}

.smallContactBox form {
    column-count: 3;
}

.smallContactBox .submit .button {
    padding: 14px 14px 11px;
    color: var(--pure-sec-color);
    background-color: var(--pure-light-color);
}

.smallContactBox + .careBox {
    margin: 100px 0;
}

.title-with-text-box {
    padding-block: 120px 96px;

    .holder {
        gap: 104px;

        @media only screen and (max-width: 640px) {
            gap: 20px;
            flex-direction: column;
        }
    }

    @media only screen and (max-width: 640px) {
        padding-block: 60px 40px;
    }

    .column {
        width: 50%;
        flex: 1;

        @media only screen and (max-width: 640px) {
            width: 100%;
            padding-inline: 20px;
        }
    }

    h2 {
        font-size: 2rem;
        color: var(--blue-100);
        margin-bottom: 9px;
        font-weight: 500;

        @media only screen and (max-width: 640px) {
            margin-bottom: 0;
        }
    }

    h3 {
        margin-bottom: 20px;
        font-weight: 300;
        font-size: 2rem;
        line-height: 1.2;
        color: var(--red-100);
    }

    p {
        line-height: 1.8;
        margin-bottom: 24px;
        font-weight: 300;

        a {
            position: relative;
            color: inherit;

            &:hover {
                &::before {
                    bottom: 0;
                }
            }

            &::before {
                content: "";
                background-color: var(--pure-info-color);
                width: 100%;
                height: 1px;
                position: absolute;
                left: 0;
                bottom: 3px;
                transition: bottom .2s ease-in;
            }
        }
    }

    &.small-subtitle {
        h3 {
            font-size: 1.6rem;
        }
    }

}

.image-text-box {
    padding-bottom: 100px;

    .holder {
        gap: 104px;

        @media only screen and (max-width: 640px) {
            gap: 20px;
            flex-direction: column;
        }
    }

    h2 {
        font-size: 2rem;
        color: var(--blue-100);
        margin-bottom: 44px;
        font-weight: 600;

        @media only screen and (max-width: 1024px) {
            margin-bottom: 20px;
        }
    }

    .column {
        width: 50%;
        margin-bottom: 20px;
        flex: 1;
        justify-content: center;
        display: flex;
        align-items: center;

        img {
            border-radius: 24px;
        }

        @media only screen and (max-width: 1024px) {

        }

        @media only screen and (max-width: 640px) {
            width: 100%;
            padding-inline: 20px;
        }

        &:nth-child(2) {
            .content {

                @media only screen and (max-width: 1024px) {
                    padding-left: 20px;
                }

                @media only screen and (max-width: 640px) {
                    padding-left: 0;
                }

                p {
                    line-height: 1.8;
                    margin-bottom: 24px;
                    font-weight: 400;
                    font-size: 1rem;
                }
            }
        }
    }

    .button {
        font-size: 16px;
        border: 1px solid var(--blue-100);
        position: relative;
        transition: padding-right ease-in-out 0.3s;
        align-self: baseline;
        border-radius: 8px;

        &:hover,
        &:focus {
            color: var(--pure-info-color);
            background-color: var(--pure-white-color);
        }
    }
}

/* #Media Queries ================================================== */
@media only screen and (min-width: 1024px) and (max-width: 1950px) {
    .js-review-slider .card-review {
    //max-width: 790px;
    //max-height: 626px;
    }

    .js-review-slider .card-review:after {
        right: 176px;
        width: 55%;
        left: unset;
    }

    .js-review-slider .card-review img {
    //max-width: 1261px;
    //max-height: 626px;
    //object-fit: contain;
    }

    .reviewBox .prev-arrow {
    //border: 1px solid var(--pure-dark-color);
    }

    .reviewBox .card-review .heading {
        width: 50%;
        margin-left: 196px;
    }

    .reviewBox .button {
        bottom: -32px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1430px) {
    .reviewBox .slick-list {
        margin: 0 -270px 0 -115px;
    }

    .reviewBox .prev-arrow {
        left: -10px;
    }

    .reviewBox .next-arrow {
        right: 70px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
    .reviewBox .slick-list {
        margin: 0 -270px 0 -155px;
    }

    .reviewBox .prev-arrow {
        left: -45px;
    }

    .reviewBox .next-arrow {
        right: -20px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1100px) {
    .reviewBox .slick-list {
        margin: 0 -270px 0 -200px;
    }

    .reviewBox .prev-arrow {
        left: -84px;
    }

    .reviewBox .next-arrow {
        right: 15px;
    }
}

@media only screen and (max-width: 1439px) {
    .card-facilities .title {
        padding: 20px 15px 27px;
    }

    .reviewBox .right {
        margin-right: -100px;
        width: calc(42% + 100px);
    }

    .accessBox .right {
        margin-right: -200px;
        width: calc(42% + 200px);
    }

    .contactBox .bg:after {
        background-size: contain;
    }

    .careBox .button {
        position: unset;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .locationBox .h2 {
        font-size: 3rem;
        line-height: 120%;
    }
}

@media only screen and (max-width: 1300px) {
    .videoBox .video-item-2 {
        max-width: 350px;
    }
}

@media only screen and (max-width: 1240px) {
    #headerCntr .left {
        width: 75%;
    }

    #headerCntr .right {
        width: 20%;
        top: 0;
    }

    #headerCntr .tel {
        margin-right: 20px;
    }

    #headerCntr .tel i {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .smallContactBox + .videoBox.inner-1 {
        padding: 4em 0 4.6em 0;
    }

    .videoBox.inner-1 {
        padding: 3.7em 0 0.1em 0;
    }
}

@media only screen and (max-width: 1200px) {
    #headerCntr.inner .left {
        width: 66%;
    }

    #headerCntr.inner .right {
        width: 34%;
    }

    .menuBox {
        padding-left: 30px;
    }

    .menuBox ul > li {
        margin-right: 20px;
    }

    .bannerBox {
        margin-bottom: 50px;
        padding-top: 50px;
    }

    .facilitiesBox.inner {
        margin-bottom: 75px;
        padding-top: 0;
    }

    .card-facilities .title {
        padding: 20px 15px;
        font-size: 2rem;
    }

    .videoBox .title {
        font-size: 3rem;
    }

    .videoBox .video-item-1 {
        max-width: 500px;
    }

    .videoBox .video-item-3 {
        max-width: 350px;
    }

    .videoBox .sub-title {
        font-size: 1rem;
    }

    .videoBox .since {
        font-size: 15rem;
    }

    .reviewBox .right {
        margin-right: 0;
        width: 42%;
    }

    .reviewBox .shape {
        top: 0;
    }

    .reviewBox.inner .card-review .content {
        padding: 50px 20px 20px;
    }

    .inspireBox.inner .holder {
        margin-bottom: 50px;
    }

    .textBox {
        margin-bottom: 75px;
    }

    .textBox.inner {
        margin-bottom: 50px;
    }

    .careBox {
        margin-bottom: 50px;
    }

    .careBox.inner .grid-x {
        margin-bottom: 50px;
    }

    .eventBox {
        margin-bottom: 50px;
    }

    .accessBox {
        margin-bottom: 75px;
        padding-top: 50px;
    }

    /* .accessBox.inner {
         padding-top: 140px;
    }
     */
    .castleBox {
        margin-bottom: 75px;
    }

    .registerBox .shape-2 {
        left: 50px;
        display: none;
    }

    .mapBox {
        margin-bottom: 75px;
        padding-top: 0;
    }

    .card-contact .form-group.radio-buttons .wrap {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

@media only screen and (min-width: 1025px) {
    .menuBox ul > li > ul {
        display: block !important;
        height: auto !important;
    }
}

@media only screen and (max-width: 1024px) {

    .h1,
    h1 {
        font-size: 3.125rem;
    }

    .h2,
    h2 {
        font-size: 2.625rem;
    }

    #headerCntr {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #headerCntr .logo {
        padding-left: 20px;
    }

    #headerCntr .left {
        width: auto;
    }

    #headerCntr.inner .left {
        width: auto;
    }

    #headerCntr .right {
        display: none;
    }

    #headerCntr.active:after {
        display: block;
        background-color: #F5F3F3;
    }

    #headerCntr .tel {
        margin-right: 0;
        padding: 13px 25px;
        display: inline-block;
        min-width: 212px;
        font-weight: 600;
        text-align: center;
        border: 1px solid var(--pure-white-color);
    }

    #headerCntr .tel:hover {
        background-color: var(--pure-white-color);
    }

    #headerCntr .button {
        display: inline-block;
        width: auto;
    }

    #headerCntr.inner .menuBox {
        padding-bottom: 315px;
    }

    #headerCntr.inner .menuBox ul > li > a i {
        color: var(--pure-green-color);
    }

    #headerCntr.inner .menuBox ul.d-hidden {
        background-color: var(--pure-green-color);
    }

    #headerCntr.inner .button {
        min-width: 213px;
        height: 56px;
        background-color: var(--pure-white-color);
    }

    #headerCntr.inner .button i {
        margin-top: -5px;
        margin-left: 20px;
        display: inline-block;
        vertical-align: middle;
    }

    .menuBox {
        padding-top: 99px;
        padding-bottom: 0; /*235px;*/
        padding-left: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 15;
        opacity: 0;
        visibility: hidden;
        width: 100%;
        height: 100vh;
        background-color: var(--pure-light-color);
        transition: all 0.3s;
        overflow-y: scroll;
    }

    .menuBox.open {
        opacity: 1;
        visibility: visible;
        background-color: #F5F3F3;

        div.mobile-menu {
            display: block !important;
        }
    }

    .menuBox ul > li {
        margin-right: 0;
        padding: 0;
        display: block;

        &.active a:after {
            width: 35%;
            bottom: 20px;
            left: 40px
        }
    }

    .menuBox > ul > li > a {
        padding: 15px 40px;
        display: block;
        font-size: 1.125rem;
    }

    .menuBox ul > li > a:hover {
        /*background-color: var(--pure-white-color);*/
    }

    .menuBox ul > li > a i {
        display: inline-block;
        vertical-align: middle;
    }

    .menuBox ul > li > ul {
        padding: 0;
        position: unset;
        display: none;
        width: 100%;
        transition: unset;
    }

    .mobileMenu {
        display: flex;
    }

    .menuBox ul.d-hidden {
        padding: 15px 25px;
        position: fixed;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        background-color: var(--location-color);
    }

    .menuBox ul.d-hidden > li {
        margin-bottom: 20px;
    }

    .menuBox ul.d-hidden > li:after {
        display: none;
    }

    .menuBox ul.d-hidden > li:last-child {
        margin-bottom: 0;
    }

    .bannerBox {
        padding-top: 20px;
    }

    .locationBox {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .locationBox .content {
        margin-bottom: 80px;
    }

    .locationBox .paragraph {
        font-size: 1.5rem;
        padding-left: 0;
        margin-top: 32px;
        margin-bottom: 0;
    }

    .locationBox .column {
        margin-bottom: 10px;
        /*width: 50%;*/
    }

    .locationBox .column:last-child {
        /*margin-bottom: 0;*/
    }

    .locationBox .shape {
        display: none;
    }

    .facilitiesBox {
        margin-bottom: 50px;
        padding-top: 75px;
    }

    .facilitiesBox h3,
    .facilitiesBox .h3 {
        margin-bottom: 50px;
    }

    .facilitiesBox .slick-arrow {
        margin-top: -170px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .facilitiesBox .next-arrow {
        right: 25px;
    }

    .facilitiesBox .prev-arrow {
        left: 25px;
    }

    .facilitiesBox .column {
        margin-bottom: 20px;
    }

    .card-facilities .content {
        padding: 30px 20px;
    }

    .card-facilities ul {
        margin-bottom: 20px;
    }

    .card-facilities ul > li {
        width: 100%;
    }

    .videoBox {
        padding-top: 40px;
        margin-bottom: 50px;
    }

    .videoBox .title h2 {
        font-size: 2rem;
    }

    .videoBox.with-slider .slick-dots {
        right: 20px;
        bottom: -27px;
    }

    .videoBox .wrap {
        padding-top: 340px;
    }

    .videoBox .video-item-1 {
        max-width: 400px;
    }

    .videoBox .video-item-2 {
        max-width: 250px;
    }

    .videoBox .video-item-3 {
        max-width: 250px;
        top: 72%;
    }

    .videoBox .sub-title {
        padding: 15px;
    }

    .videoBox .since {
        padding-left: 0;
        font-size: 10rem;
    }

    .videoBox.inner {
        margin-top: 50px;
    }

    .videoBox.inner-1 {
        margin-bottom: 0;
    }

    .inspireBox {
        margin-bottom: 100px;
    }

    .inspireBox h3,
    .inspireBox .h3 {
        margin-bottom: 40px;
    }

    .inspireBox.inner .holder {
        margin-bottom: 50px;
    }

    .inspireBox.no-gap {
        margin-bottom: 0;
    }

    .card-inspire .text {
        padding: 25px 15px;
    }

    .card-inspire h6,
    .card-inspire .h6 {
        font-size: 1.125rem;
    }

    .card-inspire p {
        margin-bottom: 25px;
    }

    .viewBox {
        text-align: center;
    }

    .viewBox .holder {
        justify-content: center;
    }

    .viewBox h5,
    .viewBox .h5 {
        margin-bottom: 20px;
        width: 100%;
    }

    .reviewBox {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .reviewBox .paragraph {
        /* margin-bottom: 30px; */
        max-width: 100%;
    }

    .reviewBox .left {
        margin-bottom: 30px;
        padding-right: 0;
        width: 100%;
    }

    .reviewBox .right {
        padding-left: 0;
        width: 100%;
    }

    .reviewBox .slick-list {
        margin: 0 -15px;
    }

    .reviewBox .slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .reviewBox .next-arrow {
        right: 20px;
    }

    .reviewBox .prev-arrow {
        left: 20px;
    }

    .reviewBox .number {
        right: -20px;
        font-size: 29rem;
    }

    .reviewBox.inner:after {
        display: none;
    }

    .introBox {
        padding-block: 50px;
    }

    .introBox .paragraph {
        font-size: 1.5rem;
    }

    .introBox .btn {
        padding-top: 40px;
    }

    .textBox {
        margin-bottom: 50px;
    }

    .careBox {
        margin-bottom: 100px;
    }

    .careBox.inner .grid-x {
        margin-bottom: 50px;
        padding: 0;
    }

    .careBox .text {
        margin-bottom: 40px;
    }

    .careBox p {
        /* margin-bottom: 30px; */
        font-size: 1.25rem;
    }

    .careBox .image img {
        margin-left: 0;
        width: 100%;
    }

    .careBox.inner {
        margin-bottom: 100px;
    }

    .accessBox {
        margin-bottom: 50px;
        padding-top: 50px
    }

    .accessBox .left {
        margin-bottom: 50px;
        padding-top: 0;
        width: 100%;
    }

    .accessBox .right {
        margin-right: 0;
        width: 100%;
    }

    .accessBox p {
        max-width: 100%;
    }

    /* .accessBox.inner {
         padding-top: 100px;
    }
     */
    .castleBox {
        margin-bottom: 50px;
    }

    .castleBox .column {
        width: 50%;
    }

    .galleryBox h3,
    .galleryBox .h3 {
        margin-bottom: 50px;
    }

    .card-facilities .play-video {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    /* .mapBox {
         margin-bottom: 100px;
    }
     */
    .contactBox {
        min-height: auto;
    }

    .contactBox.inner .card-contact .item {
        margin-bottom: 20px;
        width: 100%;
    }

    .contactBox.inner .card-contact .item:last-child {
        margin-bottom: 0;
    }

    .card-contact {
        padding: 24px;
    }

    .card-contact .heading span {
        padding-left: 0;
        display: block;
        width: 100%;
    }

    .footerBox .venue-logo {
        margin-left: 0;
        right: 15px;
        left: auto;
    }

    .footerBox .title {
        font-size: 2rem;
        line-height: 1.4;
    }

    .footerBox button {
        /*padding: 10px;*/
        width: 100%;
    }

    .footerBox address {
        font-size: 14px;
    }

    .footerBox .social-media > li > a {
        font-size: 1.25rem;
    }

    .footerBox .heading {
        font-size: 1.063rem;
    }

    .footerBox .navigation {
        justify-content: space-between;
    }

    .footerBox .nav {
        width: auto;
    }

    .footerBox .nav > li > a {
        font-size: 0.875rem;
    }

    .footerBox .settings > li > a {
        font-size: 0.875rem;
    }

    .footerBox .item:last-child .gap {
        margin-left: 25px;
        padding-left: 25px;
    }

    .footerBox.inner .item {
        width: 50%;
    }

    .footerBox.inner .navigation {
        width: 50%;
    }

    .footerBox.inner .item:last-child .gap {
        margin-left: 0;
    }

    .footerBox .info {
        font-size: 14px;
    }

    .copyrightBox {
        text-align: center;
    }

    .copyrightBox ul {
        margin-bottom: 10px;
        justify-content: center;
    }

    .instagram-feed-wrapper .insta-item {
        flex: 0 0 33.333333%
    }


    .reviewBox .button {
        /*position: unset;*/
        margin-top: 10px;
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 640px) {
    .videoBox.with-slider .slick-dots {
        display: none !important;
    }
}

@media only screen and (max-width: 640px) {
    .reviewBox .right {
        padding-inline: 35px;
    }

    .reviewBox .left {
        padding-inline: 20px;
    }

    section {
        scroll-margin-top: 50px;
    }

    .h1,
    h1 {
        font-size: 3.5rem;
        line-height: 1.2;
    }

    .h2,
    h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .h3,
    h3 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .h4,
    h4 {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .h5,
    h5 {
        font-size: 1.625rem;
        line-height: 1.2;
    }

    input,
    textarea {
        /*padding: 10px 15px !important;*/
    }

    .link {
        font-size: 1.875rem;
    }

    .locationBox {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .locationBox .content {
        margin-bottom: 0;
        margin-inline: 20px;
    }

    .videoBox + .locationBox {
        padding-bottom: 80px;

        .h1 {
            font-size: 3rem;
        }
    }

    .locationBox {
        &.has-locations {
            padding-top: 15px;

            h2.h1 {
                font-size: 3rem;
                line-height: 1.2;
            }
        }
    }

    .locationBox h3,
    .locationBox .h3 {
        margin-bottom: 32px;
        margin-top: 16px;
    }

    .locationBox .paragraph {
        font-size: 1.125rem;
        line-height: 1.8;
        margin-top: 25px;
    }

    .locationBox .h2 {
        margin-bottom: 15px;
        margin-top: 0;
        font-size: 1.5rem;
    }

    .locationBox .column {
        width: 100%;

    }

    .locationBox .holder .swiper-wrapper {
        /*grid-template-columns: 1fr;*/
        /*padding-inline: 40px;*/
        /*margin-top: 50px;*/
    }

    .facilitiesBox {
        margin-bottom: 50px;
        padding-top: 80px;
    }

    .facilitiesBox h3,
    .facilitiesBox .h3 {
        margin-bottom: 30px;
    }

    .facilitiesBox .next-arrow {
        right: 15px;
    }

    .facilitiesBox .prev-arrow {
        left: 15px;
    }

    .facilitiesBox .column {
        width: 100%;
    }

    .facilitiesBox .btn {
        padding-top: 20px;
    }

    .footerBox .item:nth-child(2) .gap {
        margin-left: 0;
    }

    .facilitiesBox.inner {
        margin-bottom: 50px;
    }

    .card-facilities .text {
        max-width: 100%;
    }

    .card-facilities .title {
        font-size: 1.563rem;
    }

    .videoBox .wrap {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        overflow-x: clip;
    }

    .videoBox .item {
        margin-bottom: 15px;
    }

    .videoBox .video-item-1 {
        margin-left: 0;
        max-width: 100%;
    //width: 269px;
        position: relative;
    //left: calc(100vw - 269px);
        top: unset;
        bottom: unset;
        left: 30px;
        width: calc(100% - 60px);
    }

    .videoBox .video-item-2 {
        position: relative;
        max-width: 100%;
        transform: translateY(0);
        width: 173px;
        top: -40px;
        z-index: 2;

        display: none;
    }

    .videoBox .video-item-3 {
        position: unset;
        max-width: 40%;
        transform: translateY(0);
        order: 4;
        margin-inline: 24px;
        margin-bottom: 0;
        display: none;
    }

    .js-text-scroll {
        display: none;
    }

    .videoBox .image img {
        width: 100%;
    }

    .videoBox .since {
        order: 3;
        white-space: nowrap;
        font-size: 6rem;
    }

    .videoBox.inner .since {
        display: none;

    }

    .videoBox.inner-1 {
        padding-top: 3em;
    }

    .smallContactBox + .videoBox.inner-1 {
        padding-bottom: 3em;
    }

    .videoBox.with-slider .prev-arrow,
    .videoBox.with-slider .next-arrow {
        display: none !important;
    }

    .inspireBox {
        padding-top: 64px;
        padding-bottom: 80px;
        padding-inline: 20px;
        margin-bottom: 0;

        .link {
            font-size: 2rem;
            margin-bottom: 12px;
            display: block;
            line-height: 1.2;
        }

        .h3 {
            margin-bottom: 64px;
            line-height: 1.2;
            font-size: 1.75rem;
            text-wrap-style: pretty;
        }

        .holder {
            grid-template-columns: 1fr;
            gap: 80px;
        }
    }

    .image-text-box {
        padding-bottom: 0;
    }

    .card-location .image img {
        width: 40%;
    }

    .card-inspire {
        .image {
            img {
                width: 100%;
            }
        }

        .text {
            padding-block: 40px;
            padding-inline: 0;

            .h6 {
                font-size: 1.5rem;
            }

            .subtitle {
                font-size: 1.75rem;
            }

            p {
                margin-bottom: 0;
            }
        }

        .button {
            /*margin-left: 0;*/
            /*padding-left: 0;*/
        }
    }

    .inspireBox .column {
        margin-bottom: 0;
        width: 100%;
    }

    .inspireBox .column:last-child {
        margin-bottom: 0;
    }

    .inspireBox .btn {
        padding-top: 30px;
    }

    .inspireBox.inner .holder {
        margin-bottom: 10px;
    }

    .reviewBox {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .reviewBox .paragraph {
        font-size: 1.25rem;
    }

    .reviewBox .number {
        font-size: 25rem;
    }

    .reviewBox .view {
        font-size: 1rem;
    }

    .reviewBox.inner {
    //padding: 0;
    }

    .introBox {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .introBox h3,
    .introBox .h3 {
        margin-bottom: 20px;
    }

    .introBox.inner .paragraph,
    .introBox .paragraph {
        font-size: 1.25rem;
    }

    .introBox.inner .paragraph p {
        line-height: 1.4;
    }

    .introBox .btn {
        padding-top: 30px;
    }

    .textBox {
        margin-bottom: 70px;
    }

    .textBox.inner {
        padding-top: 0;
    }

    .careBox {
        margin-bottom: 70px;
    }

    .careBox p {
        font-size: 1rem;
    }

    .careBox.inner {
        margin-bottom: 80px;
    }

    .accessBox {
        margin-bottom: 0;
        /* padding: 0; */
    }

    /* .accessBox.inner {
         padding-top: 70px;
    }
     */
    .castleBox {
        margin-bottom: 50px;
    }

    .castleBox h3,
    .castleBox .h3 {
        margin-bottom: 30px;
    }

    .castleBox .column {
        width: 100%;
    }

    .accessBox .map iframe {
        height: 400px;
    }

    .registerBox {
        padding-bottom: 50px;
    }

    .registerBox .left {
        width: 100%;
    }

    .registerBox .right {
        padding-top: 50px;
        padding-left: 0;
        width: 100%;
    }

    .registerBox .card-location {
        max-width: 100%;
    }

    .registerBox .card-location .text {
        padding: 40px 20px 10px;
    }

    .galleryBox h3,
    .galleryBox .h3 {
        margin-bottom: 30px;
    }

    /* .mapBox {
         margin-bottom: 70px;
    }
     */
    .mapBox .left {
        margin-bottom: 40px;
        width: 100%;
    }

    .mapBox .right {
        padding-top: 0;
        padding-left: 0;
        width: 100%;
    }

    .mapBox .map {
        max-width: 100%;
    }

    .contactBox {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contactBox.inner .submit {
        padding-top: 20px;
        position: unset;
    }

    .contactBox.inner .submit .button {
        width: 100%;
    }

    .card-contact {
        flex-direction: column;
        gap: 42px;
        margin: 0 14px;

        .heading {
            margin-bottom: 0;

            p {
                margin-top: 24px;
                margin-bottom: 0;
            }
        }
    }

    .card-contact .form-group {
        margin-bottom: 20px;
    }

    .card-contact .item {
        margin-bottom: 20px;
    }

    .card-contact .item:last-child {
        margin-bottom: 0;
    }

    .card-contact .heading span {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .footerBox {
        padding-top: 60px;
        padding-inline: 20px;
    }

    .footerBox .navigation {
        flex-direction: column;
    }

    .footerBox .item {
        margin-bottom: 30px;
        width: 100%;
    }

    .footerBox .item:last-child {
        margin-bottom: 0;
    }

    .footerBox p {
        font-size: 0.875rem;
        padding-top: 24px;
    }

    .footerBox .nav {
        width: 50%;
    }

    .footerBox .wrap .item:first-child {
        order: 3;
        margin-bottom: 0;
        margin-top: 30px;
    }

    .footerBox .footer-logo {
        margin-bottom: 45px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footerBox .email {
        padding-left: 0;
        width: 100%;
        margin-bottom: 60px;
    }

    .footerBox .gap {
        padding-top: 0;
        padding-bottom: 0;
    }

    .footerBox .item:last-child .gap {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .footerBox.inner .item {
        width: 100%;
    }

    .footerBox.inner .navigation {
        width: 100%;
    }

    .footerBox.inner .item:last-child .gap {
        margin-left: 0;
        border-left: 0;
    }

    .footerBox .heading {
        font-size: 1.663rem;
    }

    .copyrightBox {
        padding-top: 64px;
        padding-bottom: 40px;

        .grid-container {
            padding-inline: 40px;
        }

        .large-3 {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;

            ul {
                justify-content: flex-start;
                margin-top: 32px;
            }

            .dutch-logo {
                margin-top: 32px;
                padding-left: 0;
                left: 0;
                top: 0;
            }
        }

        .large-9 {
            ul {
                display: flex;
                flex-direction: column;
                align-items: flex-start;

                li {
                    margin-right: 0;
                    margin-bottom: 16px;

                    &:first-child {
                        display: none;
                    }
                }

            }
        }
    }

    .videoBox {
        margin-bottom: 0;
        padding-top: 0;
    }

    .videoBox .play-video {
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
        bottom: unset;
        left: unset;
    }
}

.instagram-feed-wrapper .insta-item {
    flex: 0 0 50%
}

.contactBox form {
    column-count: 1;
    position: unset;
}

.contactBox form div:nth-of-type(1) {
    position: unset;
}

.contactBox form div:nth-of-type(2) {
    margin-bottom: 20px;
    margin-top: 0;
}

.contactBox .submit {
    float: none;
    /*margin-top: auto;*/
}

.smallContactBox form {
    column-count: 1;
}


@media only screen and (max-width: 480px) {
    .accessBox .button {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .instagram-feed-wrapper .insta-item {
        flex: 0 0 100%
    }
}


dialog {
    width: 100vw;
    max-width: 960px;
    max-height: 90svh;
    height: 100vh;
    padding: 1em;
    border-radius: 24px;
    border: unset;
    /*position: relative;*/

    iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--location-color);
        opacity: 1;
        top: 30px;
        right: 30px;
        position: absolute;
    }
}


@media only screen and (min-width: 1024px) {
    .page-trouwen {
        .locationBox {
            padding-block: 109px 102px;
        }

        .videoBox.variant + .locationBox {
            padding-top: 46px;
        }
    }
}

.paragraph a:not(.button) {
    position: relative;
    color: inherit;

    &:hover {
        &::before {
            bottom: 0;
        }
    }

    &::before {
        content: "";
        background-color: var(--pure-info-color);
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: 3px;
        transition: bottom .2s ease-in;
    }
}

.footerBox {
    .hide-desktop {
        display: none;

        @media only screen and (max-width: 640px) {
            display: block;
        }
    }

    .hide-mobile {
        display: block;

        @media only screen and (max-width: 640px) {
            display: none;
        }
    }
}

body.template-reserveren {
    section.locationBox {
        padding-bottom: 50px;

        .paragraph {
            padding-left: 0;
            font-size: 1.25rem;
        }
    }
    section.reserveren {
        #oa_widget {
            font-family: 'Poppins', sans-serif !important;
            color: #584B46;

            @media (width <= 640px) {
                margin-inline: 20px;
                padding: 0;
            }
        }
        #oa_widget .datepicker-inline table tr td.day, #oa_widget .datepicker-inline table tr td.day.highlighted {
            background: #FDFBF7 !important;
            color: #584B46 !important;
        }
        #oa_widget .datepicker-inline table tr td.active, #oa_widget .datepicker-inline table tr td.highlighted.active, #oa_widget .datepicker-inline table tr td.day:hover, #oa_widget .datepicker-inline table tr td.highlighted:hover {
            background: #584B46 !important;
            color: #fff!important;
        }
        #oa_widget .datepicker-inline table tr td.disabled {
            background: #fff !important;
            color: #ccc !important;
        }
        #widget-select-time ul.oanl-times-list a.oanl-times-list-button, #widget-reschedule-time ul.oanl-times-list a.oanl-times-list-button {
            background: #584B46 !important;
            color: #fff !important;
        }
        #oa_widget a:not(.oanl-times-list-button), #oa_widget a:visited {
            color: #584B46 !important;
            text-decoration: underline;
        }
        #oa_widget .fld input,
        #oa_widget .fld textarea {
            background: #F5F3F3;
            color: #75645D;
            border: 0;
            box-shadow: none;
            border-radius: 8px;
        }
        #oa_widget .fld {
            border: 0;
            border-radius: 8px;
        }
        .frm-section-mailinglist p {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        #oa_widget .form-row button {
            background: var(--pure-info-color) !important;
            font-family: 'Poppins', sans-serif !important;
            padding: 8px 23px !important;
            font-size: 1rem !important;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1.5;
            transition: background .3s ease-in;

            &:hover {
                color: var(--pure-info-color) !important;
                background: #fff !important;
                border: 1px solid var(--pure-info-color) !important;
            }
        }
        #oa_widget input, #oa_widget textarea, #oa_widget select, #oa_widget button, .oanl-booking-widget input, .oanl-booking-widget textarea, .oanl-booking-widget select, .oanl-booking-widget button {
            font-family: 'Poppins', sans-serif !important;
        }
    }
    thead {
        background: #F5F3F3;
    }
}

.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}

.js-location-mobile-slider,
.inspireBox {
    .swiper-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        color: var(--pure-info-color);
        border: 0;
        border-radius: 50%;
        background-color: var(--pure-white-color);
        transform: translateY(-50%);
        cursor: pointer;
        transition: opacity .2s ease-in;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);

        svg {
            display: none;
        }

        &.swiper-button-next {
            right: 30px;

            &::after {
                content: '';
                background-image: url("/assets/templates/images/icon-arrow-right.svg");
                width: 32px;
                height: 16px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
            }
        }

        &.swiper-button-prev {
            left: 30px;


            &::after {
                content: '';
                background-image: url("/assets/templates/images/icon-arrow-left.svg");
                width: 32px;
                height: 16px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                filter: brightness(0) saturate(100%) invert(41%) sepia(9%) saturate(742%) hue-rotate(331deg) brightness(95%) contrast(89%);
            }
        }
    }
}

.inspireBox {
    .slider-wrapper {
        position: relative;

        .js-inspire-mobile-slider {
        }
        .swiper-button {

            &.swiper-button-next {
                right: -25px;
                top: 200px;
            }

            &.swiper-button-prev {
                left: -25px;
                top: 200px;
            }
        }
    }
}


.feature-block {
    padding: 51px 0;
    background: var(--blue-100);
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 57%, rgba(23, 29, 45, 1) 57%);

    @media only screen and (max-width: 640px) {
        padding: 30px 0;
        background: linear-gradient(180deg,rgba(23, 29, 45, 1) 250px, rgba(255, 255, 255, 1) 250px);

        &.reverse {
            background: linear-gradient(180deg,rgba(23, 29, 45, 1) 150px, rgba(255, 255, 255, 1) 150px);
        }
    }

}

.feature-inner {
    display: flex;
    gap: 104px;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;

    @media only screen and (max-width: 640px) {
        margin: 0 14px;
        gap: 3rem;
    }
}

.feature-block.reverse .feature-inner {
    flex-direction: row-reverse;

    @media only screen and (max-width: 640px) {
        flex-direction: column-reverse;

        .feature-col.text {
            flex-direction: column;
            gap: 3rem;

            p {
                margin-bottom: 0;
            }
        }
        .feature-col.images {
            margin-bottom: 30px;
        }
    }
}

.feature-col.images {
    gap: 24px;

    @media (min-width: 768px) {
        margin-left: -100px;
    }
}

@media (min-width: 768px) {
    .feature-block.reverse .feature-inner  {
        .feature-col.images {
            margin-left: 0;
        }
        .feature-col.text {
            margin-left: -100px;
        }
    }
}

.feature-col figure,
.feature-col img {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.feature-col.text {

    @media only screen and (max-width: 640px) {
        display: flex;
        flex-direction: column-reverse;
    }
    p {
        font-size: 2rem;
        line-height: 1.4;
        color: var(--location-color); /* pas aan aan je ontwerp */
        max-width: 390px;
        margin-top: 86px;
        margin-bottom: 0;

        @media only screen and (max-width: 640px) {
            margin-top: 0;
            margin-bottom: 3rem;
            font-size: 1.75rem;
        }
    }
}

.image-text-box + .title-with-text-box {
    padding-top: 21px;
    padding-bottom: 76px;

    @media only screen and (max-width: 640px) {
        padding-bottom: 40px;
    }
}

body.tekstpagina {
    .locationBox {
        background-color: #fff;
        
        h2, h1 {
            color: var(--blue-100);
        }
    }
}

p a {
    position: relative;
    /*text-decoration: underline;*/
    color: var(--blue-100);
    transition: all 0.3s;

    &::after {
        content: '';
        position: absolute;
        width: 100%;
        background-color: var(--red-100);
        height: 2px;
        bottom: 1px;
        left: 0;
        right: 0;
        transition: bottom ease-out 0.3s;
    }
}

p a:hover {
    color: var(--blue-100);
    &::after {
        bottom: 0;
    }
}