@font-face {
    font-family: 'Namdhinggo';
    src: url('/app/fonts/Namdhinggo-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Namdhinggo';
    src: url('/app/fonts/Namdhinggo-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Namdhinggo';
    src: url('/app/fonts/Namdhinggo-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Namdhinggo';
    src: url('/app/fonts/Namdhinggo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Namdhinggo';
    src: url('/app/fonts/Namdhinggo-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


/** ROOT STYLE CONFIGURATIONS
 ******************************************************/
:root {

    /* RGB Raw values */
    --app-background-rgb: 224, 232, 226;
    --app-content-background-rgb: 224, 232, 226;
    --primary-gold-rgb: 42,63,63;
    --dark-gold-rgb: 168,131,54;
    --sky-blue-rgb: 213, 243, 245;
    --light-sand-rgb: 254, 239, 147;
    --dark-sand-rgb: 254, 225, 147;
    --bright-pink-rgb: 255, 107, 113;
    --brown-medium-rgb: 44, 38, 38;
    --brown-dark-rgb: 30, 27, 27;
    --ivy-rgb: 237,219,168;
    --ivy-light-rgb: 252,249,238;

    --green-mid-rgb: 173,192,184;

    --heading-colour-rgb: 42,63,63;
    --font-colour-rgb: 32,33,31;
    --font-colour-dark-rgb: 229,223,213;
    --link-color-rgb: 137, 87, 0;
    --button-color-rgb: 211,189,143;

    /* Colour pallet */
    --app-background: rgb(var(--app-background-rgb));
    --app-content-background: rgb(var(--app-content-background-rgb));
    --primary-gold: rgb(var(--primary-gold-rgb));
    --dark-gold: rgb(var(--dark-gold-rgb));
    --sky-blue: rgb(var(--sky-blue-rgb));
    --light-sand: rgb(var(--light-sand-rgb));
    --dark-sand: rgb(var(--dark-sand-rgb));
    --bright-pink: rgb(var(--bright-pink-rgb));
    --brown-medium: rgb(var(--brown-medium-rgb));
    --brown-dark: rgb(var(--brown-dark-rgb));
    --ivy: rgb(var(--ivy-rgb));
    --ivy-light: rgb(var(--ivy-light-rgb));

    --green-mid: rgb(var(--green-mid-rgb));

    --heading-colour: rgb(var(--heading-colour-rgb));
    --font-colour: rgb(var(--font-colour-rgb));
    --font-colour-dark: rgb(var(--font-colour-dark-rgb));
    --link-color: rgb(var(--link-color-rgb));

    /* Web fonts */
    --heading-font-family: 'Namdhinggo', sans-serif;
    --primary-font-family: 'amster', sans-serif;

    /* default size and spacing */
    --cms-bar-buffer: 0px;
    --header-height: 90px;
    --page-gutter: 10px;
    --page-hero-buffer: 100px;
    --device-height: 100vh;
    --device-height: 100lvh;
}
@media only screen and (min-width: 768px) {
    :root {
        --header-height: 150px;
        /*     --page-gutter: 3vw; */
        --page-hero-buffer: 160px;
    }
}

/** DEFAULT STYLES
 ******************************************************/
.grecaptcha-badge {
    visibility: hidden;
}
* {
    margin: 0;
    padding: 0;
    color: var(--font-colour);
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font-family);
    font-weight: 100;
    font-size: 1.25em;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-gold);
    font-family: var(--heading-font-family);
    line-height: 1.2em;
    font-weight: 100;
}
h1 {
    font-size: 14vw;
}
@media only screen and (min-width: 768px) {
    h1 {
        font-size: 6vw;
    }
}

h3 {
    font-size: 2.5rem;
    font-size: min(10vw, 2.5rem);
    margin-bottom: 15px;
}
p {
    padding: 10px 0;
    line-height: 1.6em;
}
p.small,
.small_p p {
    font-size: 1rem;
}
img {
    display: block;
}
a, a * {
    text-decoration: none;
    color: var(--primary-gold);
}
a.button,
.button {
    display: inline-block;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: var(--heading-font-family);
    transition: all .2s ease-in-out;
    letter-spacing: 0.3rem;
    font-size: 1rem;
    font-weight: 100;
    border: 1px solid var(--primary-gold);
    white-space: nowrap;
}
a.button span,
.button span {
    color: #ffffff;
}
a.button:hover,
.button:hover {
    background: var(--primary-gold);
    color: #ffffff;
}

.link_group {
    padding: var(--page-gutter);
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Namdhinggo', serif;
    font-size:  1.5em;
}

.close_x {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 18px;
    height: 18px;
    opacity: 0.5;
    transition: all 0.2s ease-in, font-size 0.3s ease-in;
    padding-top: 18px;
    font-size: 0px;
}
.close_x:hover {
    opacity: 1;
    font-size: 0px;
}
.close_x:before,
.close_x:after {
    position: absolute;
    top: 0;
    left: 8px;
    content: ' ';
    height: 19px;
    width: 2px;
    border-radius: 5px;
    background-color: var(--primary-gold);
    transition: transform 0.4s ease-in-out;
}
.close_x:before {
    transform: rotate(45deg);
}
.close_x:after {
    transform: rotate(-45deg);
}
.close_x:hover:before {
    transform: rotate(135deg);
}
.close_x:hover:after {
    transform: rotate(-135deg);
}
@media (min-width: 768px) {
    .close_x {
        right: 15px;
        top: 15px;
        width: 32px;
        height: 32px;
        padding-top: 32px;
    }
    .close_x:hover {
        font-size: 12px;
    }
    .close_x:before,
    .close_x:after {
        left: 15px;
        height: 33px;
    }
}

p a {
    text-decoration: underline;
}
.align_center {
    text-align: center;
    text-wrap: balance;
}

.texture {
    background-color: var(--app-background);
    position: fixed;
    top: -200px;
    bottom: -200px;
    left: -200px;
    right: -200px;
    z-index: -1;
}
.square_img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
}
.square_img::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}
.square_img img,
.square_img video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .hide_on_mobile {
        display: none !important;
    }
}
@media only screen and (min-width: 768px) {
    .hide_on_desktop {
        display: none !important;
    }
}

/** MODAL
 ********************************/
#modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 10002;
    left: 0;
    top: 0;
    width: 0%;
    height: 0%;
    padding: 1rem;
    overflow: hidden;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    transition:
            width 0.1s linear 0.5s,
            height 0.1s linear 0.5s,
            opacity .4s ease-in-out;
}
#modal.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity .4s ease-in-out;
}
#modal_content {
    background: var(--app-background);
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}
#modal_content .button {
    background: var(--primary-gold);
}

/** BACKGROUND COLOURS
 ********************************/
.bak_green-mid {
    background:  var(--green-mid);
}

/** PAGE HEADER
 ********************************/
.page_header {
    display: flex;
    padding: 10px;
    position: relative;
    z-index: 100;
}
@media only screen and (min-width: 440px) {
    /*  .page_header {
          justify-content: center;
      }

     */
}


/** LOGO SCALE & ANIMATIONS
 ***********************************/
#logo_head,
.route__home #logo_head {
    display: none;
}
[class^='route__']:not(.route__home) #logo_head {
    display: flex;
    width: min(60%, calc(var(--header-height) - 20px));
    position: relative;
    align-self: center;
    height: 0;
    overflow: hidden;
    padding-bottom: min(60%, calc(var(--header-height) - 20px));
}
[class^='route__'] #logo_head a {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    /*padding: 10px;*/
    justify-content: center;
    align-items: self-start;
    margin-top: 10px;
    /* background-color: var(--ivy); */
}

.feature_image {
    display: flex;
    justify-content: center;
}
.feature_image img {
    object-fit: cover;
}


/** LANGUAGE SELECTOR
 ***********************************/
.nav_lang_wrap {
    position: relative;
}
.lang_picker,
.lang_option {
    background: var(--bright-pink);
    border-radius: 5px;
    color: #fff;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    display: none; /** HIDDEN UNTIL TRANSLATIONS MADE */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
}
.lang_options {
    position: absolute;
    display: flex;
    top: 100%;
    left: 0;
    background: var(--bright-pink);
    border-radius: 5px;
    padding: 0 5px;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    transform: translateY(0);
}
.lang_options.active {
    height: auto;
    opacity: 1;
    transform: translateY(10px);
}

/** NAVIGATION
 ***********************************/

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    right: 0;
    padding: 0;
    max-height: var(--header-height);
    z-index: 10001;
    /*   mix-blend-mode: difference; */
}
.nav_item_wrap {
    cursor: pointer;
    font-size: 1.6rem;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: calc(var(--cms-bar-buffer) + 20px);
    left: 20px;
}
.nav_ham_wrap {
    right: 0px;
    left: auto;
    border-radius: 4px 0 0 4px;
    background: var(--app-background);
    border-right: 0;
}
.nav_ham_text {
    padding-left: 10px;
    text-transform: uppercase;
    font-family: var(--heading-font-family);
}
.nav_item_wrap .nav_icon {

    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nav_item_wrap .nav_icon .line {
    fill:none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #000;
    stroke-width:5.5;
    stroke-linecap:round;
}
.nav_item_wrap.home_icon_wrap {
    margin-top: 5px;
    margin-left: 10px;
}
.nav_item_wrap .nav_icon.nav_ham .top {
    stroke-dasharray: 40 82;
}
.nav_item_wrap .nav_icon.nav_ham .bottom {
    stroke-dasharray: 40 82;
}
.nav_item_wrap .nav_icon.nav_ham.open .top {
    stroke-dasharray: 14 82;
    stroke-dashoffset: -72px;
}
.nav_item_wrap .nav_icon.nav_ham.open .bottom {
    stroke-dasharray: 14 82;
    stroke-dashoffset: -72px;
}
.nav_item_wrap.reserve_button_wrap {
    flex: 1;
    font-size: 16px;
}
.nav_item_wrap.reserve_button .widget-form--button {
    max-width: none;
    width: 100%;
}
.router_link {
    position: relative;
}
.router_link:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.nav_drawer {
    position: fixed;
    width: 100%;
    height: var(--device-height);
    top: 0;
    right: -100%;
    bottom: -100px;
    padding-top: 90px;
    background: var(--app-background);
    z-index: 10000;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
    overflow-y: auto;
}
.nav_drawer.open {
    transform: translate(-100%, 0px);
}
.nav_drawer .nav_drawer_section {
    margin: 2em;
    color: var(--font-colour-dark);
}
.nav_drawer_section h3 {
    padding: 10px 15px;
}
.nav_drawer .nav_drawer_section .section_items .nav_item {
    text-decoration: none;
    display: block;
    padding: 12px 0;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    color: var(--font-colour);
    text-align: center;

}
.nav_drawer .nav_drawer_section .section_items .nav_item:hover {
    transform: translateX(7px);
}
@media only screen and (min-width: 768px) {
    .nav_drawer {
        max-width: 540px;
        right: -600px;
        padding-top: calc(var(--cms-bar-buffer) + 90px);
    }
    /*
    .nav_drawer:before {
        content: '';
        display: block;
        height: calc(var(--cms-bar-buffer) + 90px);
        width: 100%;
        background: var(--bright-pink);
        position: sticky;
        top: 0;
    }

     */
    .nav_drawer.open {
        -moz-transform: translate(-550px, 0px);
        -o-transform: translate(-550px, 0px);
        -ms-transform: translate(-550px, 0px);
        -webkit-transform: translate(-550px, 0px);
        transform: translate(-550px, 0px);
    }
    .nav_drawer .nav_drawer_section {
        margin: 0 30px;
        max-width: 440px;
    }
}

/** PAGE ROUTE WRAPPERS
 ***************************/
.route {
    overflow: hidden;
    position: absolute;
    top: 100000px;
    height: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.route::-webkit-scrollbar {
    display: none;
}
.route.active {
    top: calc(var(--cms-bar-buffer));
    height: auto;
    width: 100%;
  /*  overflow-y: scroll; */
    opacity: 1;
}
@media only screen and (min-width: 768px) {
    .route {
        text-align: left;
    }
}

/** PAGEE HERO
 ****************************/
.page_hero {
    position: relative;
}
.page_hero .hero_content {
    padding: 90px var(--page-gutter);
    padding-bottom: 80px;
}
.page_hero.centered .hero_content {
    text-align: center;
    text-wrap: balance;
}
.page_hero .page_hero_seascape {
    position: relative;
    z-index: 1;
}
.page_hero .page_hero_seascape img {
    width: 100%;
}
@media only screen and (min-width: 440px) {
    .page_hero .hero_content {
        padding-top: 110px;
    }
}
@media only screen and (min-width: 768px) {
    .page_hero .hero_content {
        padding-top: 200px;
    }
}

/** ROUTE SECTIONS
 ****************************/
.section {
    padding: 50px var(--page-gutter);
    position: relative;
}
.section.full_height {
    height: calc(100vh - var(--cms-bar-buffer));
    padding: 50px var(--page-gutter);
}
.section .contained_section.border_inner {
    --gutter-buffer : 10px;
    padding-left: calc(2 * var(--gutter-buffer));
    padding-right: calc(2 * var(--gutter-buffer));
}
.border_inner .section_title {
    transform: translateY(calc(-3 * var(--gutter-buffer)));
    display: inline-block;
    background: var(--green-mid);
    padding: 0 calc(2 * var(--page-gutter));
    font-size: 4rem;
}
.section .contained_section.border_inner::before {
    content: '';
    display: block;
    position: absolute;
    top: calc(6 * var(--gutter-buffer));
    left: var(--gutter-buffer);
    right: var(--gutter-buffer);
    bottom: calc(4 * var(--gutter-buffer));
    border: 1px solid var(--primary-gold);
}


.section .section_image {
    overflow: hidden;
}
.section.blue {
    background: var(--sky-blue);
}

.center_block {
    margin: auto;
}
@media only screen and (min-width: 768px) {
    .section .contained_section.border_inner {
        --gutter-buffer : 20px;
    }
    .section .contained_section.border_inner::before {
        top: calc(4 * var(--gutter-buffer));
        max-width: 1150px;
        margin: auto;
    }
    .section {
        display: flex;
        flex: 1;
        justify-content: space-between;
        align-items: center;
        padding: 100px var(--page-gutter);
    }
    .section .contained_section {
        display: flex;
        flex: 1;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    .section.align_top,
    .section.align_top .contained_section {
        align-items: start;
    }
    .section.reverse {
        flex-direction: row-reverse;
    }
    .section.wrap {
        flex-wrap: wrap;
    }
    .section .section_image {
        max-width: 70vh;
    }
    .left_block,
    .right_block {
        width: 45%;
    }
    .full_block {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .stack_mt {
        margin-top: 50px;
    }
}

/** CTA BOOKING BUTTOn
 ****************************/
#appointment_cta.cta_button_wrapper {
    position: fixed;
    z-index: 10000;
    right: 20px;
    left: 0px;
    /* top: calc(var(--cms-bar-buffer) + 20px); */
    bottom: 20px;
    margin-left: 20px;
}
#appointment_cta.cta_button_wrapper .button {
    width: min(100%, 500px);
    text-align: center;
    background: var(--primary-gold);
    color: #fff;
    margin: -1px 0 0 0;
    font-size: clamp(8px, 3vw, 1rem);
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (min-width: 569px) {
    #appointment_cta.cta_button_wrapper {
        left: unset;
        right: 75px;
        top: calc(var(--cms-bar-buffer) + 20px);
        bottom: unset;
    }
}
@media only screen and (min-width: 768px) {
    #appointment_cta.cta_button_wrapper {
        right: 150px;
    }
}

#home_hero_wrapper {
    position: relative;
    height: calc(50svh - var(--cms-bar-buffer));
}
/*
#home_hero_wrapper .home_hero_content {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 1;
    mix-blend-mode: multiply;
}

 */
#home_hero_wrapper .home_hero_content {
    /*margin: 10px;*/
    height: calc(50svh - var(--cms-bar-buffer) - 0px);
    background-position: top center;
    background-size: cover;
    align-items: center;
    position: relative;
    mix-blend-mode: multiply;
}
#home_hero_wrapper .home_hero_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display:  flex;
    justify-content:  center;
}
#home_hero_wrapper .home_hero_logo_container {
    position: absolute;
    width: 80%;
    max-width: 200px;
    top: 20px;
    transform: translateY(-80%);
}
#home_hero_wrapper .home_hero_lw {
    position : absolute;
    top      : 0;
    left     : 0;
    width    : 100%;
    filter   : invert(1);
}
/*
#home_hero_wrapper .home_hero_liliwen {
    padding-right: 30%;
}
*/
#home_hero_wrapper .home_hero_bridal {
    padding-left: 25%;
    padding-right: 25%;
}
#home_hero_wrapper .home_hero_img_r {
    position: absolute;
    top: 0;
    right: 0;
    width: 70vw;
    height: calc(48vh - var(--cms-bar-buffer));
    overflow: hidden;
}
#home_hero_wrapper .home_hero_img_l {
    position: absolute;
    bottom: 0;
    left: var(--page-gutter);
    transform: translateY(70%);
    width: 60vw;
    height: calc(48vh - var(--cms-bar-buffer));
    overflow: hidden;
}
#home_hero_wrapper .home_hero_img_r img,
#home_hero_wrapper .home_hero_img_l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0;
    transform: scale(1);
    transition: all 1.5s ease-in-out;
}
#home_hero_wrapper .home_hero_img_r.bws_is_visible img,
#home_hero_wrapper .home_hero_img_l.bws_is_visible img {
    opacity: 1;
    transform: scale(1.1);
    background-repeat: no-repeat;
}

#home_hero_wrapper .home_hero_text p {
    font-size: min(2.15vw, 2rem);
}
@media only screen and (min-width: 768px) {
    #home_hero_wrapper,
    #home_hero_wrapper .home_hero_content {
        height: calc(100vh - var(--cms-bar-buffer));
    }
}
@media only screen and (max-width: 821px) {

    /* Call to action button */
    .cta_button_wrapper {
        position: relative;
    }
    .cta_button_wrapper .button {
        width: min(100%, 500px);
        text-align: center;
    }
}

/*

 */
#home_titles {
    padding-top: 100px;
    padding-bottom: 0;
}
#home_titles h1 {
    font-size: 9.5vw;
}

.feature_p_block_wrapper {
    font-size: 1.3rem;
}
.feature_p_content {
    position: relative;
    width: min(100%, 1200px);
    margin: auto;
    text-align: center;
}
@media only screen and (min-width: 550px) {
    #home_titles h1 {
        font-size: 7.5vw;
    }
    .feature_p_block_wrapper {
        font-size: 1.7rem;
    }
}
@media only screen and (min-width: 821px) {
    #home_titles h1 {
        font-size: 4vw;
    }
}

/*
Home Menus section
 */
#menus_section .contained_section.bws_animate  {
    transform: unset;
}
@media only screen and (min-width: 768px) {
    #menus_section .left_block {
        transform:  translateX(30px);
    }
}

/**
Feature Reel
 */
#home_feature_reel .section_image {
    margin: auto;
    overflow: hidden;
    max-width: 70vh;
    height: 90vh;
    border-radius: 2000px 2000px 0 0;
}

/**
Home Accommodation section
 */
@media only screen and (min-width: 768px) {
    #home_accommodation .left_block {
        width: 30%;
    }
    #home_accommodation .right_block {
        width: 60%;
    }
}
/*

 */
#home_route .recognition_block_wrapper {
    background: var(--dark-sand);
}
.recognition_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(90%, 1200px);
    margin: auto;
    padding-top: 0;
    padding-bottom: 0;
}
.recognition_item {
    width: 40%;
    display: flex;
    height: auto;
    padding-bottom: 40px;
}
.recognition_item img {
    width: 100%;
    height: auto;
    align-self: center;
}
.recognition_item:nth-child(2) .bws_animate.bws_is_visible.pop_in {
    transition-delay: 0.1s;
}
.recognition_item:nth-child(3) .bws_animate.bws_is_visible.pop_in {
    transition-delay: 0.2s;
}
.recognition_item:nth-child(4) .bws_animate.bws_is_visible.pop_in {
    transition-delay: 0.3s;
}
@media only screen and (min-width: 575px) {
    .recognition_content {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .recognition_item {
        width: min(20%, 150px);
        padding-bottom: 0;
    }
}


/** Parralax images
 ******************************/
.bws_parallax-image {
    background-size: auto calc(1.2 * var(--device-height));
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 60vh;
    height: 60lvh;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
    .bws_parallax-image {
        background-size: auto 120vh;
        background-size: auto 120lvh;
    }
}
@media only screen and (min-width: 1000px) {
    .bws_parallax-image {
        background-size: cover;
        height: 70vh;
        height: 70lvh;
    }
}
/* CSS specific to non iOS devices */
@supports not (-webkit-touch-callout: none) {
    .bws_parallax-image {
        -webkit-background-attachment: fixed;
        background-attachment: fixed;
    }
}
/* CSS specific to iOS devices */
@supports (-webkit-touch-callout: none) {
    @media only screen and (max-width: 1023px) {
        .bws_parallax-image {
            -webkit-background-attachment: fixed;
            background-size: auto 80vh;
            background-size: auto 80lvh;
        }
    }
}

.no-webp .parallax_big_window {
    background-image: url('/app/images/PentreArmsBigWindow.jpg');
}
.webp .parallax_big_window {
    background-image: url('/app/images/PentreArmsBigWindow.webp');
}

/** HORIZONTAL SCROLLING
 ******************************************************/
.bws_h-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.bws_h-scroll-element {
    width: calc(100% - 4vw);
    transition: all 0.3s linear;
    text-align: center;
}
.bws_h-scroll-element.reverse {
    padding-left: 4vw;
}

/** ANIMATION CONFIGURATION
 ******************************************************/
/* Set initial states */
.bws_animate.fade_up,
.bws_animate.fade_left,
.bws_animate.fade_right {
    opacity: 0;
    transform: translate(0, 5px);
}
.bws_animate.fade_in {
    opacity: 0;
}
.bws_animate.pop_in {
    opacity: 0;
    transform: scale(0.1);
}
@media only screen and (min-width: 768px) {
    .bws_animate.fade_right {
        transform: translate(-5px, 0);
    }
    .bws_animate.fade_left {
        transform: translate(5px, 0);
    }
}
.bws_animate.scale_out {
    transform: scale(105%);
}

.bws_animate {
    transition: all 0.5s ease-in-out;
}

/* Set active states */
.bws_animate.bws_is_visible {
    transform: translate(0, 0);
    opacity: 1;
    transition-delay: 0.3s;
}
.bws_animate.bws_is_visible.long_delay {
    transition-delay: 1s;
}
.bws_animate.bws_is_visible.bws_rotating-image {
    transition-duration: 2s;
}
.bws_animate.bws_is_visible.scale_out {
    transition-delay: 0s;
    transition-duration: 1.5s;
}
.bws_animate.bws_is_visible.pop_in {
    transition-delay: 0s;
    transition-duration: 0.5s;
}



/****************************************************
 *
 *  Multi column
 *
 ****************************************************/
.multi_col {
    display: flex;
    flex-wrap: wrap;
}
.multi_col .col {
    padding: 0 2vw;
    margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
    .multi_col .col {
        flex: 1 1 0;
        margin-bottom: 0;
        width: 33%;
    }
}


/** ROUTE - APPOINTMENT
 *********************/
#my_bridal_appointment_wrapper {
    height: 1500px;
}
@media (min-width: 768px) {
    #my_bridal_appointment_wrapper {
        height: 800px;
    }
}
#appointment_form_wrapper {
    min-width: 85vw;
    height: calc(90vh - var(--cms-bar-buffer));
    overflow: auto;
    margin: -1.5rem;
    position:relative;
    padding-top: 40px;
}
@media (min-width: 768px) {
    #appointment_form_wrapper {
        padding-top: 70px;
    }
}


/** ROUTE - GALLERY
 *********************/
.insta_gallery_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: masonry;
    gap:5px;
}
.insta_gallery_wrapper img {
    width: 100%;
}


/** ROUTE - Contact Us
 *********************/
#contact_cards {
    justify-content: center;
}
#contact_cards .col {
    width: 100%;
}
.contact_card {
    height: max(150px, 100%);
    background: var(--green-mid);
    padding: 25px;
    display: flex;
}
.card_item {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.8rem;
    display: flex;
    justify-content: space-between;
}
.card_content {
    flex: 1;
    max-width: 300px;
}
.contact_card h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}
@media only screen and (min-width: 1000px) {
    #contact_cards .multi_col {
        width: min(1200px, 100%);
    }

    #contact_cards .col {
        width: 33%;
        justify-content: center;
    }
}
#contact_form_section,
.contact_form_section {
    align-items: start;
    flex-wrap: wrap;
    background: var(--green-mid);
}
@media only screen and (max-width: 1100px) {
    #contact_form_section .left_block,
    #contact_form_section .right_block {
        width: 100%;
        max-width: 900px;
    }
}
.contact_form_wrapper {
    background: var(--app-background);
    padding: 12px;
    margin: auto;
    max-width: 800px;
}
.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 12px;
    border: 1px solid var(--ivy);
}
@media only screen and (min-width: 550px) {
    .contact_form_wrapper,
    .contact_form {
        padding: 30px;
    }
}
.contact_form h3,
.contact_form p {
    text-align: center;
    text-wrap: balance;
}
.form_field_multi_col {
    display: flex;
    gap: 30px;
}
.form_field_wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.form_label {
    margin-bottom: 0.5rem;
}
.form_input {
    display: block;
    height: auto;
    min-height: 2.75rem;
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dedede;
    border-radius: 3px;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1.6;
    -o-object-fit: fill;
    object-fit: fill;
    outline: transparent;
}
.form_text_area {
    height: 300px;
}
.form_input:focus {
    border-style: dotted;
}
.form_button {
    border: none;
    padding: 10px;
    font-size: 1em;
    border-radius: 3px;
    margin-top: 20px;
    cursor: pointer;
    background: var(--primary-gold);
    color: #ffffff;
}
.contact_data_wrap {
    margin-bottom: 20px;
}
.contact_data_wrap p {
    padding: 0;
}
.contact_data_wrap a {
    text-decoration: none;
}

#contact_submit_result,
#contact_submit_result .result_msg {
    display: none;
}
#contact_submit_result.active {
    display: block;
    position: absolute;
    top: 0;
    padding: 40px 5vw;
    left: 0;
    background: var(--brown-medium);
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
#contact_submit_result .result_msg.active {
    display: block;
}

.section .section_image.contact_map {
    max-width: 500px;
}

/** ROUTE - DESIGNER COLLECTION
 *********************************/
.collection_gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.collection_splide {
    height: calc(100% - 100px);
    /* height: 100%; */
}
.collection_splide .splide__slide {
    margin-right: 40px;
    border: none !important;
}
.collection_splide .splide__track,
.collection_splide .splide__slide img {
    height: 100%;
}
.collection_splide .splide__pagination {
    bottom: -1em;
}
.splide__pagination__page {
    height: 2px;
    width: 10px;
    border-radius: 0;
    background: var(--primary-gold);
    opacity: 0.4;
}
.splide__pagination__page.is-active {
    background: var(--primary-gold);
    opacity: 1;
}
.collection_info {
    display: flex;
    margin-top: 12px;
}
.collection_info h4 {
    font-size: 5rem;
}
.collection_info .content {
    margin-left: 20px;
}
@media (max-width: 500px) {
    .collection_splide {
        height: calc(100% - 90px);
    }
    .collection_splide .splide__track,
    .collection_splide .splide__slide img {
        width: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        overflow: hidden;
    }
    .collection_splide .splide__slide {
        margin-right: 0px;
        width: 100%;
    }
}
@media (min-width: 500px) {
    #home_designers_splide {
        display : none;
    }
    .collection_splide .splide__slide {
        width: min(60%, 400px);
    }
}

/** ROUTE - FAQ's
 *********************************/
.faq_item {
    margin-bottom: 70px;
}
.faq_item p {
    font-size: 1rem;
}
@media only screen and (min-width : 768px) {
    #faq_section {
        justify-content: center;
    }
    .faq_items {
        padding-left: 5vw;
        padding-right: 5vw;
        max-width: 1200px;
    }
}


/** PAGE FOOTER
 ********************************/
/* Footer
--------------------------------------------- */
.pre_footer {
    background: linear-gradient(180deg, rgba(var(--font-colour-rgb),0) 0%, rgba(var(--font-colour-rgb),0) 66%, rgba(var(--font-colour-rgb),1) 67%, rgba(var(--font-colour-rgb),1) 100%);
}
.pre_footer img {
    width: 100%;
}
#page_footer {
    opacity: 0;
    transform: all 0.3s 2s ease-in-out;
}
#page_footer.bws_is_visible {
    opacity: 1;
}
#footer_content {
    background: var(--font-colour);
    padding: 30px 20px 10px;
    overflow: auto;
}

/* iPads ----------- */
@media only screen and (min-device-width : 768px) {
    #footer_content {
        padding: 30px 20px 30px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;

    }
}

#footer_content a {
    color: #fff;
    text-transform: uppercase;
    display: block;
    font-weight: bold;
    margin: 12px 0;
    letter-spacing: .15em;
}
#footer_content #social {
    text-align: center;
}
#footer_content #social a {
    display: inline-block;
    position: relative;
    margin: 10px;
    width: 50px;
    height: 50px;
}
#footer_content #social a img {
    max-width: 50px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .8;
    transition: all 0.1s ease-in;
}
#footer_content #social a:hover img {
    top: -3px;
    opacity: 1;
}
#footer_base {
    background: #3E1E10;
}
#footer_content .copyright {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 30px 0;
    font-size: 0.8rem;
    font-family: var(--heading-font-family);
    font-weight: 100;
    letter-spacing: .15rem;
}