/* ------------------------------------  */
/* ---------- SITE FRAMEWORK ----------  */
/* ------------------------------------  */

@import 'variables.php';
html { scroll-behavior: smooth; overflow-x: hidden; overflow-y: scroll; }
body { font-family: "EB Garamond", serif; font-optical-sizing: auto; font-size: 1rem; line-height: 1.4; background: var(--siteBackground); overflow: hidden; }
:is(.site-header, .content_wrap, .site-footer) * { box-sizing: border-box; }
.content-div { min-height: 600px; }
.ui-autocomplete { z-index: 10001 !important; }

/* DISPLAY CLASSES */
.full-width-fix { width: 100vw !important; max-width: 100vw !important; position: relative !important; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.hidden { display: none; }
.hideImportant { display: none !important; }

/* SITE FORMS */
input::placeholder { font-family: inherit; }
textarea { font-family: inherit; }
select { width: 100%; border: 1px solid #DBDBDB; height: 50px; padding: 0 10px; appearance: none; -webkit-appearance: none; -moz-appearance: none; background: url(../images/chevron-down-black.svg) no-repeat 98% center #fff; }
input[type=text], input[type=date], input[type=tel], input[type=number], input[type=email], input[type=password], textarea { width: 100%; height: 50px; background-color: #fff; border: 1px solid #DBDBDB; padding: 0 10px; box-sizing: border-box; font-size: 1rem; color: #000; transition: 0.2s ease-in-out all; }
textarea { height: 100px; }
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }
:is(input, select, textarea).input-error { border-color: #a30e0e !important; }
.site-form-field { padding: 10px 0; }
.site-form-label { font-size: 1rem; color: #3B3B3D; padding: 5px 0; }

.form-group{margin-bottom: 10px;}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 { display: block; color: var(--headingsColour); margin: 0; padding: 0; line-height: 1.4; font-weight: 400; }
h1 { font-size: 3.25rem; }
h2 { font-size: 2.875rem;}
h3 { font-size: 2.625rem;}
h4 { font-size: 2.375rem; }
h5 { font-size: 2rem;}
h6 { font-size: 1.5rem; }
p { padding: 5px 0 20px 0; font-size: 1rem; color: var(--textColour); line-height: 1.4;}
a {text-decoration: none;}
.content_wrap p a:not([class]){color: #98651D; text-decoration: underline;}
a:focus-visible {color: #000; outline: 1px solid #000; }
ul { list-style-position: outside; padding: 5px 0 20px 20px; color: var(--textColour); list-style-type: disc; }
ul li { padding: 0 0 15px 0; line-height: 20px; }
ol { list-style-position: outside; padding: 5px 0 20px 20px; color: var(--textColour); list-style-type: decimal; }
ol li { padding: 0 0 5px 0; }
hr { color: #D8D8D8; background: #D8D8D8; height: 1px; border: 0; margin-bottom: 20px; position: relative; }

/* Button Classes */
.button-primary { display: inline-flex; align-items: center; justify-content: center; padding: 0px 25px; margin:0; line-height: 1; height: 68px; 
    background: var(--mainColour); text-align: center; color: #fff; text-decoration: none; transition: 0.2s ease-in all; font-size: 1.125rem; font-weight:bold; text-decoration: none; text-transform: uppercase; border-radius: 5px;}
.button-primary:hover { background: #7E1B29; color: #fff; text-decoration: none; }
.button-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 0px 25px; margin: 0; line-height: 1; height: 68px; 
    background: var(--secondaryColour); text-align: center; color: #000; text-decoration: none; transition: 0.2s ease-in all; font-size: 1.125rem; 
    font-weight: bold; text-decoration: none; border-radius: 5px; text-transform: uppercase;}
.button-secondary:hover { background: #FFCD6B; color: #000; text-decoration: none; }

a.skiptocontent {position: absolute; top: 0; left: 0; opacity: 0; width: 1px; height: 1px; } 
a.skiptocontent:focus, a.skiptocontent:active {display: flex; align-items: center; justify-content: center; height: 30px; padding: 0 20px; border: 1px solid #000; background: #f9dc4a; color: #000; font-size: .875rem; font-weight: bold; opacity: 1; width: auto; z-index: 10000; }

.empty-loader:empty { display: flex; align-items: center; justify-content: center; padding: 5px; }
.empty-loader:empty:after { content: ''; width: 20px; height: 20px; border: 2px solid #fff; border-color: var(--mainColour) transparent transparent; border-radius: 50%; animation: spin 1s infinite; }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*Sticky Header*/
body.site_body.sticky .AB-parent~.site-header { top: 50px; }
body.site_body.sticky .site-header{position: fixed; left: 0; top:0; width: 100%;}
body.site_body.sticky .header-wrap{ height: 150px;}
body.site_body.sticky .content_wrap{margin-top: 150px;}

/*Transparent*/
body.site_body[data-header-type=transparent] .header-wrap{background: none; position: absolute; left: 0; top: 0; width: 100%;}
body.site_body[data-header-type=transparent] .content_wrap{margin: 0;}
body.site_body[data-header-type=transparent].sticky .header-wrap{background: var(--headerColour);}

/*Logo Changes*/
.standard-logo{display: block;}
.transparent-logo{display: none;}
body.site_body[data-header-type=transparent] .transparent-logo{display: block;}
body.site_body[data-header-type=transparent] .standard-logo{display: none;}
body.site_body[data-header-type=transparent].sticky .transparent-logo{display: none;}
body.site_body[data-header-type=transparent].sticky .standard-logo{display: block;}

/*Header*/
header.site-header { position: relative; z-index: 1000; }
.header-wrap { background: var(--headerColour); height: 200px; transition:ease-in-out all .3s; }
.header-wrap>div { display: flex; align-items: center; justify-content: center; height: 100%; gap: 40px; padding: 0 15px; position:relative; }
.logo { padding: 30px 0; height: 100%; display: flex; align-items: center; }
.logo a{display: flex; height: 100%; align-items: center;}
.logo img { max-height: 100%; max-width: 100%; width: auto; height: auto; }

.menu-toggle {height: 68px; width: 80px; background: var(--mainColour); display: flex; align-items: center; border-radius: 5px;
    justify-content: center; z-index: 2000; position: relative; } 
.menu-toggle>div {display: flex; align-items: center; flex-direction: column; justify-content: center; height: 32px; transition: ease-in-out all .3s;
    width: 32px; gap: 7px; position: relative; } 
.menu-toggle>div::before, .menu-toggle>div::after {content: ""; height: 3px; width: 32px; background: #fff; border-radius: 6px; flex-shrink: 0; } 
.menu-toggle>div>div {height: 3px; width: 32px; background: #fff; border-radius: 6px; flex-shrink: 0; } 
.menu-toggle.active > div{transform: rotate(90deg);}

/*Menu*/
.menu-wrap{position: absolute; left: 10px; top: 50%; transform: translateY(-50%);}
.main-menu-wrap{width: 430px; background: var(--mainColour); padding: 70px 25px 20px 25px; position: absolute; left: 0; display: flex; flex-direction: column;
    top:0; border-radius: 5px; opacity: 0; z-index: -1; visibility: hidden; transition: ease-in-out all .3s; transform: translateY(-10px);}
.main-menu-wrap.open{opacity: 1; visibility: visible; z-index: 1000; transform: translateY(0);}
.main-menu{padding: 0; list-style: none; margin: 0; display: flex; flex-direction: column;}
.main-menu li{list-style: none; padding: 0; display: flex; flex-direction: column; align-items: flex-start;}
.main-menu li a{color: #fff; font-size: 1.125rem; padding: 10px 0;}
.main-menu li a:hover{text-decoration: underline; color: #FFE8BA;}
.main-menu li ul{list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column;}
.main-menu li ul li a{padding-left: 10px; font-size: 1rem;}

/*Overlay*/
.overlay { background: rgba(0, 0, 0, .4); position: fixed; top: 0; height: 100vh; width: 100%; left: 0; z-index: -1; 
    visibility: hidden; opacity: 0; transition: ease-in-out all .4s; }
.overlay.hover { visibility: visible; opacity: 1; z-index: 999; }

/*-- FOOTER WRAP --*/
.footer-wrap { background: var(--footerColour); padding: 30px 0;}
.footer-wrap > div { display: flex; align-items: flex-start;  }
.footer-col { flex: 1; }
.footer-col-title { color: #fff; font-weight: bold; font-size: 1.375rem; display: flex; flex-direction: column; padding: 0; 
    margin: 0 0 20px; line-height: 30px; gap: 10px; }
.footer-col .footer-col-title:after { content: ''; width: 34px; height: 3px; background: var(--secondaryColour); }

.footer-contact { font-size: .875rem; display: flex; flex-direction: column; gap: 15px; }
.footer-contact .location { display: flex; align-items: flex-start; line-height: 26px; }
.footer-contact .location:before { content: ''; width: 25px; height: 30px; background: url(../images/pin.svg) no-repeat left center; }
.footer-contact * { color: #fff; }
.footer-contact a { display: flex; align-items: center; }
.footer-contact a:hover { color: #fff; }
.footer-contact a.call:before { content: ''; width: 25px; height: 30px; background: url(../images/call.svg) no-repeat left center; }
.footer-contact a.mail { text-decoration: underline; }
.footer-contact a.mail:before { content: ''; width: 25px; height: 30px; background: url(../images/mail.svg) no-repeat left center; }

.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.footer-menu>li { padding: 0; margin: 0; }
.footer-menu>li>a { color: #fff; transition: ease-in-out all .3s; font-size: .875rem; text-decoration: none; }
.footer-menu>li>a:hover{color: #FFE8BA; text-decoration: underline;}
.footer-menu ul { display: none; }

.footer-last{display: flex; flex-direction: column; gap: 30px; align-items: center;}
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social>a { display: block; width: 30px; height: 30px; transition:ease-in-out all .3s; }
.footer-social>a:hover{transform: translateY(-5px);}
.footer-social>a.fb { background: url(../images/facebook.svg) no-repeat center; background-size: contain; }
.footer-social>a.ig { background: url(../images/instagram.svg) no-repeat center; background-size: contain; }
.footer-social>a.tw { background: url(../images/twitter.svg) no-repeat center; background-size: contain; }
.footer-social>a.li { background: url(../images/linkedin.svg) no-repeat center; background-size: contain; }
.footer-social>a.yt { background: url(../images/youtube.svg) no-repeat center; background-size: contain; }
.footer-social>a.tk { background: url(../images/tiktok.svg) no-repeat center; background-size: contain; }

/*-- BYLINE --*/
.byline-wrap { background: var(--bylineColour); padding:25px 0; }
.byline-wrap > div { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.byline-menu { display: flex; align-items: center; justify-content: center; list-style: none; padding: 0; margin: 0; }
.byline-menu>li { padding: 0 10px; font-size: 1rem; border-right: 1px solid #fff; }
.byline-menu>li:last-child { border: 0; }
.byline-menu>li>a { color: #fff; text-decoration: none; transition: ease-in-out all .3s;}
.byline-menu>li>a:hover{color: #FFE8BA; text-decoration: underline;}
.byline-wrap > div > a{ color: #fff; font-size: 0.75rem; text-decoration: none; }

.byline-hotels{display: flex; align-items: center; gap:50px; margin-bottom: 20px;}

/*Pop Up*/
.pop-overlay { position: absolute; z-index: 10000; top: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.74); opacity: 0; display: flex; justify-content: center; }
.pop-overlay>div>a { position: absolute; width: 30px; height: 30px; background: url(../images/close.svg) no-repeat center; z-index: 5; top: 5px; right: 5px; }
.pop-overlay>div { background: #fff; position: absolute; background: #fff; padding: 20px; margin: 10px; max-width: 600px; min-width: 300px; flex: 0 0 auto; font-size: 1rem; line-height: 26px; border-radius: 5px; }
.pop-overlay.pop-image>div { max-width: 100vw; max-height: 100vh; }
.pop-overlay.pop-image>div img { max-width: 100%; max-height: 100%; }
.pop-buttons { display: flex; margin: 10px 0; align-items: center; justify-content: space-between; }

/* -- TEXT MODULE -- */
.text_module_wrap { position: relative; }
.text_module_container { position: relative; z-index: 1; }
.text_module_before { position: absolute; left: calc(-1140px / 2); width: 100vw; top: 0; height: 100%; z-index: -1; }
.text_module_after { position: absolute; width: 100vw; top: 0; height: 100%; z-index: -1; }

/* -- SPACING MODULE -- */
.spacing_module { display: flex; align-items: center; justify-content: center; background: transparent; position: relative; z-index: 1; transition: 0.2s ease-in-out all; }
.spacing_module span { opacity: 0; text-align: center; font-size: 1.5rem; font-weight: bold; transition: 0.2s ease-in-out all; }
.spacing_module.admin_logged:hover { background: #efefef; }
.spacing_module.admin_logged:hover span { opacity: 1; }

/*Fullscreen Gallery*/
.flexslider { height: auto; position: relative; }
.flexslider:not(.full-width-fix) .flex-direction-nav { display: none; }
.flex-viewport { height: 100% !important; }
.flexslider .slides { list-style: none; margin: 0; padding: 0; overflow: hidden; }
.flexslider .slides>li { display: none; -webkit-backface-visibility: hidden; position: relative; margin: 0; padding: 0; width: 100%; background-size: cover; background-repeat: no-repeat; background-position: center; height: 100%; min-height: 100px; }
.flexslider .slides { height: 100%; }
.flexslider .slides>li.flex-active-slide { display: flex !important; flex-direction: column }
.flexslider .slides>li>a { display: block; height: 100%; }
.flexslider .slides>li>img, .flexslider .slides>li>a>img { width: 100%; display: block; z-index: 4; }
.flexslider .slides:after { content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
html[xmlns] .flexslider .slides { display: block; }
* html .flexslider .slides { height: 1%; }
.no-js .flexslider .slides>li:first-child { display: block; }
.flexSliderContainer.arrow { position: relative; }
.flexSliderContainer.arrow .flexslider { margin-bottom: -30px; }
.flexSliderContainer.arrow .slides>li, .flexSliderContainer.arrow .slides>li>a { clip-path: polygon(0 calc(100% - 30px), calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0); -webkit-clip-path: polygon(0 calc(100% - 30px), calc(50% - 30px) calc(100% - 30px), calc(50% - 1px) 100%, calc(50% + 1px) 100%, calc(50% + 30px) calc(100% - 30px), 100% calc(100% - 30px), 100% 0, 0 0); }
.flexSliderContainer.parallax .slides>li { background-attachment: fixed; }
.flex-caption { display: flex; flex-direction: column; height: 100%; margin: 0 auto; gap: 30px; z-index: 100; }
.flex-caption>div { display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; height: auto; }
.flex-caption>div.background { background: rgba(0, 0, 0, .6); padding: 20px 40px; }
.flex-caption:empty { display: none; }
.flex-caption.halign-right { align-items: flex-end; }
.flex-caption.halign-left { align-items: flex-start; }
.flex-caption.halign-center { align-items: center; }
.flex-caption.valign-top { justify-content: flex-start; }
.flex-caption.valign-center { justify-content: center; }
.flex-caption.valign-bottom { justify-content: flex-end; padding-bottom: 40px; }

.flexslider li.fg-overlay::before{content: ""; height: 100%; width: 100%; position: absolute; inset: 0; background: rgba(0, 0, 0, .6); z-index: 20;}
.flexslider li > iframe { height: 60vw; min-height: 1200px; min-width: 1920px; width: 100vw; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 9; pointer-events: none; }

/*Fullscreen gallery paging buttons*/
.flex-control-paging { position: absolute; bottom: 20px; display: flex; left: calc(50% - 800px); width: 1600px; align-items: center; gap: 8px; justify-content: center; z-index: 60; list-style: none; display: flex; align-items: center; justify-content: center; margin: 0; padding: 0 15px; }
.flex-control-paging>li { padding: 0; margin: 0; font-size: 0; display: flex; align-items: center; justify-content: center; }
.flex-control-paging>li>a { width: 16px; height: 16px; box-sizing: border-box; border: 1px solid var(--mainColour); background: #fff; transition: ease-in-out all .3s; border-radius: 50%; }
.flex-control-paging>li>a.flex-active { background: var(--mainColour); }

/*Fullscreen gallery arrows*/
.flex-direction-nav { position: absolute; top: 50%; margin: 0; padding: 0; width: 100%; list-style: none; }
.flex-direction-nav li { position: absolute; z-index: 10; top: calc(50% - 30px); width: 40px; height: 60px; cursor: pointer; transition: ease-in-out all .3s; padding: 0; left: 20px; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; }
.flex-direction-nav li a { font-size: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.flex-direction-nav li a:after { content: ""; height: 15px; width: 15px; transform: rotate(45deg); border: solid #fff; border-width: 0 0 3px 3px; margin-left: 5px; }
.flex-direction-nav li.flex-nav-next { right: 20px; transform: rotate(180deg); left: initial; }
.flex-direction-nav li:hover { background: rgba(0, 0, 0, .8); }

/*Contact Form*/
.contact-form { background: #fff; border: 1px solid #B47D30; padding: 20px; margin: 20px 0;}
.contact-form .cf_header { color: #000; font-weight: 700; display: flex; align-items: center; gap: 10px; font-size: 1.375rem; margin-bottom: 10px; }
.contact-form .cf-input { line-height: 30px; padding-bottom: 10px; }
.contact-form .cf-select { line-height: 30px; padding-bottom: 10px; display: inline-block; width: 100%; }
.contact-form .cf-text { font-size: 1rem; color: var(--textColour); font-weight: 500; line-height: 26px; margin-bottom: 10px; }
.contact-form :is(label, legend) { width: 100%; color: var(--textColour); font-size: 1rem; margin: 0; line-height: 26px; margin-bottom: 5px; }
.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=date], .contact-form textarea, .contact-form select { width: 100%; height: 42px; font-size: .875rem; border: 1px solid #D2D0D0; box-sizing: border-box; padding: 0 10px; transition: ease-in-out all .5s; color: var(--textColour); }
.contact-form :is(input[type=text], .contact-form input[type=email], .contact-form input[type=date], .contact-form textarea):focus { border-color: var(--mainColour); }
.contact-form select option { color: #000; }
.contact-form label span, .contact-form legend span, .contact-form .denotes span { color: #DC0D37; font-size: 1rem; }
.contact-form textarea { resize: none; height: 130px; font-family: inherit; }
.contact-form :is(.cf-radiobox, .cf-checkbox) { padding-bottom: 10px; }
.contact-form :is(.cf-radiobox, .cf-checkbox)>span { display: flex; align-items: center; color: var(--textColour); font-size: .875rem; }
.contact-form :is(.cf-radiobox input[type=radio], .cf-checkbox input[type=checkbox]) { margin-right: 10px; accent-color: var(--textColour); }
.contact-form .cf-validation { text-align: center; height: 0; padding: 10px 0; box-sizing: border-box; font-size: 1rem; color: red; font-weight: bold; transition: all .2s ease-in-out; }
.contact_form_footer { display: flex; justify-content: space-between; }
.contact-form .cf-buttons { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.contact-form .cf-buttons .denotes { color: var(--textColour); font-size: .75rem; }
.contact-form .cf-buttons a.cf-reset { display: none; }
.contact-form .cf-buttons .cf-submit{padding:  0 50px;}

/*Layout Block Module*/
.block-layout-module { display: flex; flex-direction: column; background: #FFFFFF; }
.block-layout-module .layout-block { margin: 0; display: flex; }
.block-layout-module .layout-image { width: 50%; position: relative; z-index: 5; display: flex; align-items: center; justify-content: flex-end; }
.block-layout-module .layout-image img { max-width: 100%; width: auto; height: auto; }
.block-layout-module .layout-content { width: 50%; display: flex; position: relative; }
.block-layout-module .layout-inner { width: 800px; padding: 30px 20px; display: flex; flex-direction: column; align-items: flex-start; position: relative; gap: 25px; z-index: 10; justify-content: center; }
.block-layout-module .layout-heading { display: flex; flex-direction: column; gap: 10px; }
.block-layout-module .layout-heading * { font-size: 2.375rem; position: relative; display: flex; font-weight: bold; color: #000000; align-items: flex-start; margin: 0; }
.block-layout-module .layout-text * { font-size: 1rem; color: var(--textColour); margin: 0;}

/*Layout Button*/
.block-layout-module .layout-block { display: flex; align-items: center; }
.block-layout-module .layout-buttons{display: flex; gap:10px; flex-wrap: wrap;}
.block-layout-module .layout-buttons>a { font-size: 1.063rem; font-weight: bold; padding: 16px 20px; position: relative; transition: ease-in-out all .3s; line-height: 20px; }
.block-layout-module .layout-buttons>a.layout-link { color: #fff; background: #005B5E; }
.block-layout-module .layout-buttons>a.layout-link:hover { background: #218F91; }

/*Layout Position*/
.block-layout-module .layout-pos-left { flex-direction: row-reverse; }
.block-layout-module .layout-pos-left .layout-image { justify-content: flex-start; }
.block-layout-module .layout-pos-left .layout-content { justify-content: flex-end; }
.block-layout-module .layout-pos-right{background: #FFF4DE; }
.block-layout-module .layout-pos-right .layout-content { justify-content: flex-start; }

/*Hotels Module*/
.hotels-module{padding: 20px 0;}
.hotels-module > div{padding: 0 15px; z-index: 10; position: relative; display: flex; gap:20px; flex-wrap:wrap; }
.hb-heading{display: flex; width: 100%; align-items: center; gap: 15px; font-size:3.25rem;}
.hb-heading::before{content: ""; height: 50px; width: 65px; background: url(../images/logo-gold.svg) center no-repeat; flex-shrink: 0;}
.hb-left{width: calc(75% - 10px); }
.hb-right{width: calc(25% - 10px); }
.hb-hotels{display: flex; flex-direction: column; gap:10px;}
.hb-hotel{border-radius: 10px; border: 1px solid #F4F4F4; overflow: hidden; background: #FFF; display: flex; transition: ease-in-out all .3s;}
.hb-hotel.active{background: #FFF7E6;}
.hb-hotel .hb-image{background-size: cover; background-repeat: no-repeat; background-position: center; width: 400px; flex-shrink: 0;}
.hb-hotel .hb-description{flex-grow: 1; padding: 20px; display: flex; flex-direction: column; gap:10px;}
.hb-hotels.hb-header{display: flex; flex-direction: column;}
.hb-hotels .hb-header > .hb-title{color: #000; font-weight: bold; font-size: 1.75rem;}
.hb-hotels .hb-header > a.hb-title:hover{text-decoration: underline;}
.hb-hotel .hb-description > p{padding: 0; margin: 0;}
.hb-address{color: #000; display: flex; align-items: flex-start; gap:10px;}
.hb-address::before{content: ""; height: 17px; width: 12px; flex-shrink: 0; background: url(../images/pin-red.svg) center no-repeat; text-decoration: underline;}
.hb-stars{display: flex; align-items: center; gap: 5px;}
.hb-star{height: 16px; width: 16px; background: url(../images/star.svg) center no-repeat;}
.hb-footer{display: flex; gap:30px; justify-content: space-between; align-items: flex-start; margin-top: auto;}
.hb-footer .hb-buttons{display: flex; flex-shrink: 0; gap:10px; align-items: center;}
.hb-buttons .button-primary{height: 45px; font-size: 1rem;}
.hb-buttons .hb-explore{text-decoration: underline; font-weight: bold; color: var(--textColour);}
.hb-amenities{display: flex; gap:10px; align-items: flex-start; flex-wrap: wrap;}
.hb-amenities .hb-amenity{font-size: 0.813rem; display: flex; gap:5px;}
.hb-amenities .hb-amenity-icon {height: 20px; width: 20px; background-size: contain; background-repeat: no-repeat; background-position: center;}

.hotels-map-wrap{background: #fff; border-radius: 10px; border: 1px solid #F4F4F4; padding: 20px 10px; display: flex; flex-direction: column; gap:10px;}
.hotels-map-wrap span{font-size: 1.5rem; color: #000;}
.hotels-map .gm-style-iw {padding: 10px !important; border-radius: 0 !important; box-shadow: none !important; background: #FFF7E6 !important; width: 275px;}
.hotels-map .gm-style-iw .gm-style-iw-d{padding: 0 !important; overflow: initial !important;}
.hotels-map .gm-style-iw-chr{position: absolute; right: 0; top: 0;}
.hotels-map .gm-ui-hover-effect{height: 30px !important; width: 30px !important; display: flex !important; align-items: center; justify-content: center;}
.hotels-map .gm-ui-hover-effect span{margin: 0 !important;}
.hotels-map .gm-ui-hover-effect:focus-visible{outline: 1px solid #000;}
.hotel-card{text-align: center; display: flex; flex-direction: column; gap:10px; font-family: "EB Garamond", serif;}
.hotel-card > strong{font-size: 1.125rem; color: #000; text-align: center; font-weight: bold; text-transform: capitalize;}
.hotel-card .map-address{font-size: 0.75rem;}
.hotel-card .map-buttons{display: flex; align-items: center; gap:10px; justify-content: center;}
.hotel-card .map-button-book{font-weight: bold; background: var(--mainColour); font-size: 0.75rem; color: #fff; line-height: 30px; border-radius: 5px; padding: 0 10px;}
.hotel-card .map-button-explore{color: #000; font-weight: bold; text-decoration: underline; font-size: 0.875rem;}

/*Rooms Module*/
.rooms-module{padding: 20px 0; display: flex; flex-direction: column; gap:20px;}
.rb-heading{display: flex; width: 100%; }
.rb-heading span{flex-direction: column; gap: 10px; font-size:2rem; font-weight: bold; color: #000; display: flex;}
.rb-heading span::after{content: ""; height: 3px; width:30px; border-radius:5px; background:var(--secondaryColour); }
.rb-rooms{display: flex; width: 1200px; flex-direction: column; gap:10px;}
.rb-room{width: 100%; border-radius: 10px; border: 1px solid #AD7C00; overflow: hidden; background: #FFF; display: flex;}
.rb-room .rb-image{background-size: cover; background-repeat: no-repeat; background-position: center; height: 250px; width: 400px; flex-shrink: 0;}
.rb-room .rb-description{flex-grow: 1; padding: 20px; display: flex; flex-direction: column; gap:10px;}
.rb-room .rb-title{font-size: 1.75rem; color: #000; font-weight: bold;}
.rb-room .rb-description > p{padding: 0; margin: 0;}
.rb-footer{display: flex; gap:30px; justify-content: space-between; align-items: flex-start; margin-top: auto;}
.rb-footer .rb-buttons{display: flex; flex-shrink: 0; gap:10px; align-items: center;}
.rb-buttons .button-primary{height: 45px; font-size: 1rem;}
.rb-amenities{display: flex; gap:10px; align-items: flex-start; flex-wrap: wrap;}
.rb-amenities .rb-amenity{font-size: 0.813rem; display: flex; gap:3px; align-items: center;}
.rb-amenities .rb-amenity::before{content: ""; height: 8px; width: 11px; background: url(../images/check.svg) center no-repeat;}

/*Icon Block Module*/
.icon-block-module{padding: 20px 0; display: flex; flex-direction: column; gap:20px;}
.ic-heading{flex-direction: column; gap: 10px; font-size:2rem; font-weight: bold; color: #000; display: flex;}
.ic-heading::after{content: ""; height: 3px; width:30px; border-radius:5px; background:var(--secondaryColour); }
.ic-blocks{display: flex; flex-wrap: wrap; gap: 10px;}
.ic-blocks .ic-block{display: flex; gap: 5px; align-items: center; flex-shrink: 0; padding: 14px 10px; border: 1px solid #D5D5D5; border-radius: 5px;}
.ic-blocks .ic-block .ic-title{font-size: 1.125rem; color: #000;}
.ic-blocks .ic-block .ic-icon{ height:30px; width:30px; background-size:contain; background-repeat:no-repeat; background-position:center; }

/*Tiled Gallery*/
.tiled-gallery{padding: 20px 0;}
.tiled-gallery .tg-images {display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 228px); gap: 20px; position: relative; }
.tiled-gallery .tg-image{position: relative; border-radius: 5px; overflow:hidden;}
.tiled-gallery .tg-image:hover{cursor: pointer;}
.tiled-gallery .tg-image img {width: 100%; height: 100%; object-fit: cover; display: block;  }
.tiled-gallery .tg-image:focus-visible{outline: 1px solid #000;}
.tiled-gallery .tg-image:nth-child(1) {grid-column: 1 / 3; grid-row: 1 / 3; }
.tiled-gallery .tg-image:nth-child(2) {grid-column: 3 / 4; grid-row: 1 / 2; }
.tiled-gallery .tg-image:nth-child(3) {grid-column: 3 / 4; grid-row: 2 / 3; }
.tiled-gallery .tg-image:nth-child(4) {grid-column: 3 / 4; grid-row: 3 / 4; }
.tiled-gallery .tg-image:nth-child(5) {grid-column: 2 / 3; grid-row: 3 / 4; }
.tiled-gallery .tg-image:nth-child(6) {grid-column: 1 / 2; grid-row: 3 / 4; }
/*.tiled-gallery .tg-image:nth-child(n+7) {grid-column: auto; grid-row: auto; }*/
.tiled-gallery .tg-image:nth-child(n+7) {display: none;}
.tiled-gallery-counter{position: absolute; inset: 0; background: rgba(0, 0, 0, .6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.125rem;}


.tiled-gallery-lightbox-wrap{position: fixed; background: rgba(0, 0, 0, .8); inset: 0; z-index: 3000; display: none;}
.tiled-gallery-lightbox-inner{height: 100%; width: 100%; display: flex; align-items: center; justify-content: center;}
.tiled-gallery-lightbox{display: flex; align-items: center; justify-content: center;gap:20px; flex-direction: column; width: 1200px; background: #fff; padding: 40px 60px;
    position: relative; max-height: 95%; overflow-y: scroll;}
.tg-lightbox-images-wrap{width: 100%; position: relative;}
.tg-lightbox-images{height: 600px; width: 100%;}
.tg-lightbox-image{display: flex; align-items: center; width: 100%; justify-content: center;}
.tg-lightbox-image img{width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px;}
.tg-thumbnail-images{height: 100px; width: 100%; flex-shrink: 0;}
.tg-thumbnail-image{width: 100%; display: flex; align-items: center; justify-content: center;}
.tg-thumbnail-image img{width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 5px;  opacity: 0.5; transition: ease-in-out all .3s;}
.tg-thumbnail-image.swiper-slide-thumb-active img{opacity: 1;}

.tg-gal-arrow{height: 60px; width: 40px; position: absolute; right: -50px; top: calc(50% - 30px);}
.tg-gal-arrow::after{content: ""; height: 14px; width: 14px; border: solid #000; border-width: 3px 3px 0 0; transform: rotate(45deg); position: absolute; right: 15px; 
    top: calc(50% - 5px);}
.tg-gal-prev{right: initial; left: -50px; transform: rotate(180deg);}
.tg-gal-close{color: #000; font-size: 1.125rem; display: flex; align-items: center; gap:5px; position: absolute; right: 20px; top:10px; }
.tg-gal-close::before{content: ""; height: 24px; width: 24px; flex-shrink: 0; background: url(../images/lightbox-close.svg) center no-repeat; background-size: contain; }

.tiled-gallery-responsive{padding: 20px 0;}
.tiled-gallery-responsive-inner{position: relative;}
.tiled-gallery-responsive .tg-images > div{align-items: center;}
.tiled-gallery-responsive .tg-image{display: flex; align-items: center; justify-content: center;}
.tiled-gallery-responsive .tg-image img{max-width: 100%;}
.tg-res-next {right: 0; height: 32px; width: 22px; background: rgba(255, 255, 255, .5); z-index: 10;  top: calc(50% - 16px);}
.tg-res-next::after{height: 10px; width: 10px; border-width: 2px 2px 0 0; right: 9px;}
.tg-res-prev{right: initial; left: 0px; transform: rotate(180deg); z-index: 10; height: 32px; width: 22px; background: rgba(255, 255, 255, .5); top: calc(50% - 16px);}
.tg-res-prev::after{height: 10px; width: 10px; border-width: 2px 2px 0 0; right: 9px;}


/*System edit controls*/
.AB-editContentContainer { display: flex; align-items: flex-end; }
.AB-editing .__contentbox { z-index: 3000; }

@media (min-width:1600px) {
    .container { max-width: 1560px; }
}

@media (min-width:992px){
    .footer-menu-wrap{display: block !important;}
    .hotels-map-container{display: block !important;}
    .hotels-map-wrap span{pointer-events: none;}
}

/*---------LARGE DESKTOP < 1199px---------*/
@media (min-width:1200px) {
    .mobile:not(.desktop-large), .tablet:not(.desktop-large), .desktop:not(.desktop-large) { display: none !important; }
    .content_wrap { min-height: 600px; }
}

/*---------DESKTOP < 1199px---------*/
@media (min-width:992px) and (max-width:1199px) {
    .mobile:not(.desktop), .tablet:not(.desktop), .desktop-large:not(.desktop) { display: none !important; }
    
    /*Footer*/
    .footer-last img{max-width: 300px;}
    .byline-hotels{width: 100%; gap:initial; justify-content: space-between;}

    .block-layout-module .layout-inner { width: 100%; }
    .block-layout-module .layout-image { align-items: flex-start; }

    /*Hotels Module*/
    .hb-hotel .hb-image{width: 250px; height: 230px;}
    .hotels-module > div{}
    .hb-hotels .hb-header > span{font-size: 1.5rem;}
    .hb-address, .hb-hotel .hb-description > p{font-size: 0.875rem;}
    .hb-footer{flex-direction: column; gap:10px;}
    .hb-buttons .button-primary{padding: 0 10px; font-size: 0.875rem;}
    .hb-left{width: calc(65% - 10px);}
    .hb-right{width: calc(35% - 10px);}

    /*Room Module*/
    .rb-rooms{width: 100%;}

    /*Tiled Gallery*/
    .tiled-gallery .tg-images{grid-template-rows: repeat(3, 170px);}

}

/*---------Tablet & Mobile---------*/
@media (max-width:991px) {

    .button-primary, .button-secondary{font-size: 1rem; height: 54px; padding: 0 15px;}

    /* ----- SITE HEADER ----- */
    .top-wrap>div, .header-wrap>div { width: 100%; max-width: none; }

    /* ----- MODULES ----- */

    /* -- Fullscreen Gallery -- */
    div.fullscreen-fade .arrows.prev { right: initial; left: 0; }
    div.fullscreen-fade .arrows.next { left: initial; right: 0; }

    /*Hotel Module*/
    .hotels-module{padding: 30px 0;}
    .hotels-module .hb-heading{order: 1;}
    .hb-left{order:3; width: 100%;}
    .hb-right{order:2; width: 100%;}
    .hb-heading{flex-direction: column; align-items: center; justify-content: center; text-align: center; gap:5px; font-size: 2.625rem;}
    .hotels-map-container{display: none;}
    .hotels-map-wrap > span{text-align: center; display: flex; align-items: center; justify-content: center; gap:10px; font-size: 1.125rem;}
    .hotels-map-wrap > span::before{content: ""; flex-shrink: 0; height: 35px; width: 25px; background: url(../images/map-pin.svg) center no-repeat; background-size: contain;}
    .hb-hotel{flex-direction: column;}
    .hb-hotel .hb-image{width: 100%; height: 240px;}
    .hb-hotel .hb-description{padding: 10px;}
    .hb-footer{flex-direction: column; gap:10px;}
    .hb-footer .hb-buttons{gap:20px;}
    .hotel-card .map-button-book {padding: 0 5px;}

     /*Room Module*/
    .rb-rooms{width: 100%; }
    .rb-room{flex-direction: column;}
    .rb-room .rb-image{width: 100%; height: 240px;}
    .rb-footer{flex-direction: column; gap:15px;}
    .rb-room .rb-description{padding: 10px;}


}

/*---------TABLET < 959px---------*/
@media (min-width:768px) and (max-width:991px) {
    .mobile:not(.tablet), .desktop:not(.tablet), .desktop-large:not(.tablet) { display: none !important; }
    .tablet-hidden { display: none !important; }

    /*Footer*/
    .footer-wrap > div{flex-wrap: wrap;}
    .footer-col{flex: initial; width: calc(100%/3);}
    .footer-last{width: 100%; margin-top: 20px;}

    /*Text Module*/
    .text_module_before { left: calc(-768px / 2); }

    /*Layout Block*/
    .block-layout-module .layout-inner { width: 100%; padding: 0 20px 30px; }
    .block-layout-module .layout-block { align-items: flex-start; }
    .block-layout-module .layout-buttons>a.layout-link { background: #018185; }

    /*Hotel Module*/
    .hb-hotels{flex-direction: row; flex-wrap: wrap;}
    .hb-hotel{width: calc(50% - 5px);}

    /*Room Module*/
    .rb-heading span{font-size: 1.5rem;}
    .rb-rooms{flex-wrap: wrap; flex-direction: row;}
    .rb-room{width: calc(50% - 5px);}

    /*Icon Module*/
    .ic-heading{font-size: 1.5rem;}
    .ic-blocks .ic-block .ic-icon{height: 20px; width: 20px;}
    .ic-blocks .ic-block .ic-title{font-size: 0.875rem;}


}
@media (max-width:767px) {
    .tablet:not(.mobile), .desktop:not(.mobile), .desktop-large:not(.mobile), .mobile-hidden { display: none !important; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.625rem; }
    h3 { font-size: 2.375rem; }
    h4 { font-size: 2.125rem; }
    h5 { font-size: 1.75rem; }
    h6 { font-size: 1.25rem; }
    p { font-size: .875rem; padding: 5px 0 15px 0; }
    img { max-width: 100%; vertical-align: middle; }

    body.site_body.sticky .header-wrap{ height: 100px;}
    body.site_body.sticky .content_wrap{margin-top: 100px;}
    body.site_body[data-header-type=transparent] .content_wrap{margin: 0;}

    /*Header*/
    .header-wrap{height: 100px;}
    .logo img{max-width: 170px;}
    .main-menu-wrap .menu-close{color: #fff; text-decoration: underline; font-size: 0.875rem; margin-left: auto; padding: 10px 0;}

    .menu-toggle{height: 35px; width: 40px;}
    .menu-toggle>div{gap:5px;}
    .menu-toggle>div::before, .menu-toggle>div::after{width: 24px; height: 2px;}
    .menu-toggle>div>div{width: 24px; height: 2px;}
    .main-menu-wrap{width: 100vw; left: -10px; top: -33px; border-radius: 0; padding: 70px 20px 20px 20px;}

    .main-menu{max-height: 80vh; overflow-y: scroll;}

    /*Footer*/
    .footer-wrap > div{flex-direction: column;}
    .footer-col{flex: initial; width: 100%;}
    .footer-intro{margin-bottom: 20px;}
    .footer-last{margin-top: 40px;}
    .footer-col-title{font-size: 1.125rem;}
    .footer-menu-section{border-top: 1px solid #4C010C;}
    .footer-menu-section:nth-child(3){border-bottom: 1px solid #4C010C;}
    .footer-menu-section .footer-col-title{margin: 0; position: relative; height: 60px;  justify-content: center;}
    .footer-menu-section .footer-col-title::after{content:""; position: absolute; right: 10px; top: 22px; background: none; height: 10px; 
        width: 10px; transform: rotate(45deg); border: solid #fff; border-width: 0 2px 2px 0; transition: ease-in-out all .3s;}
    .footer-menu-wrap{display: none; margin-bottom: 20px;}
    .footer-menu-section.active .footer-col-title::after{transform: rotate(225deg); top: 27px;}
    .byline-menu>li>a{font-size: 0.875rem;}

    /*Fullscreen Gallery*/
    .full-width-fix .flex-caption.halign-center { left: calc(50% - 150px); right: initial; width: 300px; max-width: 100%; }
    .full-width-fix .flex-caption.halign-left { left: calc(50% - 150px); right: initial; width: 300px; max-width: 100%; }
    .full-width-fix .flex-caption.halign-right { left: calc(50% - 150px); right: initial; width: 300px; max-width: 100%; }
    .flex-control-paging { left: 0; width: 100%; padding: 0 10px; }
    .flex-caption>div.background { padding: 20px; }
    .flex-direction-nav li { width: 21px; height: 32px; top: calc(50% - 16px); }
    .flex-direction-nav li a::after { width: 10px; height: 10px; }
    .flex-direction-nav li.flex-nav-prev { left: 0; }
    .flex-direction-nav li.flex-nav-next { right: 0; }

    /*Contact Form*/
    .contact-form { padding: 20px 10px; }
    .contact-form .cf_header { font-size: 1.5rem; }
    .contact-form .cf-text { font-size: .875rem; margin-bottom: 10px; }
    .contact-form :is(label, legend) { font-size: .875rem; }

    /*Text Module*/
    .text_module_before { left: calc(-320px / 2); }

    /*Layout Module*/
    .block-layout-module { gap: 0; }
    .block-layout-module .layout-block { flex-direction: column; padding: 0; gap: 24px; }
    .block-layout-module :is(.layout-image, .layout-content) { width: 100%; }
    .block-layout-module .layout-image { justify-content: center !important; }
    .block-layout-module .layout-inner { width: 100%; padding: 0 10px 24px; }
    .block-layout-module .layout-heading * { font-size: 1.375rem; line-height: 22px; padding: 0; }
    .block-layout-module .layout-text * { font-size: .875rem; line-height: 22px; padding: 0; margin: 0; }
    .block-layout-module .layout-buttons>a.layout-link { background: #018185; }

    /*Icon Module*/
    .ic-blocks{flex-wrap: initial; overflow-x: scroll;}
    .ic-heading{font-size: 1.5rem;}
    .ic-blocks .ic-block .ic-icon{height: 20px; width: 20px;}
    .ic-blocks .ic-block .ic-title{font-size: 0.875rem;}
}
