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

@import 'variables.php';


@font-face {font-family: "Muintearas"; src: url("../font/Muintearas.woff")format("woff"); }
:root { --mainFont: "Manrope", sans-serif; --secondaryFont: "Muintearas"; }

html { scroll-behavior: smooth; overflow-x: hidden; overflow-y: scroll; }
body { font-family: var(--mainFont); font-size: .875rem; color:var(--textColour); line-height: 1.4; overflow: hidden; }
body.site_body{background: var(--siteBackground);}
body.site_body * { 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; }
select:focus-visible { outline: 1px solid #000; }

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: .875rem; color: var(--textColour); 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; }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 { display: block; color: var(--headingsColour); margin: 0; padding: 0 0 10px 0; line-height: 1.4; font-weight: 400; }
h1 { font-size: 3.125rem; }
h2 { font-size: 2.875rem; }
h3 { font-size: 2.625rem; }
h4 { font-size: 2.375rem; }
h5 { font-size: 1.875rem; }
h6 { font-size: 1.5rem; }
p { padding: 5px 0; font-size: 1rem; color: var(--textColour);  margin: 0; }
.content_wrap a:not([class]){text-decoration: underline;}
a { text-decoration: none; color: var(--linkColour); }
a:focus-visible { background-color: #f9dc4a; color: #000; outline: 1px solid #000; }
ul { list-style-position: outside; padding: 5px 0 20px 20px; font-size: 1rem; 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; font-size: 1rem; 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 20px; margin: 5px 5px 5px 0; line-height: 1; height: 50px; background: var(--mainColour); border: 1px solid var(--mainColour); text-align: center; color: #fff !important; text-decoration: none; transition: 0.2s ease-in all; font-size: 1.063rem; font-weight: bold; border-radius: 5px; text-decoration: none; }
.button-primary:hover { background: #5F237A; text-decoration: underline; }
.button-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 0px 20px; margin: 5px 5px 5px 0; line-height: 1; height: 50px; background: #fff; border: 1px solid var(--mainColour); text-align: center; color: var(--mainColour) !important; text-decoration: none; transition: 0.2s ease-in all; font-size: 1.063rem; font-weight: bold; border-radius: 5px; text-decoration: none; }
.button-secondary:hover { background: var(--mainColour); color: #fff !important; text-decoration: underline; }
.button-tertiary { display: inline-flex; align-items: center; justify-content: center; padding: 0px 20px; margin: 5px 5px 5px 0; line-height: 1; height: 50px; background: var(--tertiaryColour); border: 1px solid var(--tertiaryColour); text-align: center; color: var(--mainColour) !important; text-decoration: none; transition: 0.2s ease-in all; font-size: 1.063rem; font-weight: bold; border-radius: 5px; text-decoration: none; }
.button-tertiary:hover { background: var(--mainColour); border-color: var(--mainColour); color: #fff !important; text-decoration: underline; }

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*/
body.site_body.sticky .header-wrap{height: 90px; position: fixed; left: 0; top: :0; width: 100%;}
body.site_body.sticky .header-wrap .logo img{scale: .7;}
body.site_body.sticky .content_wrap{margin-top: 90px;}

.site-header{position: relative; z-index: 3000;}

/*-- HEADER WRAP --*/
.header-wrap { background: var(--headerColour); height: 142px; transition: ease-in-out .3s all;}
.header-wrap>div { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 40px; padding: 0 15px; position: relative;}
.header-wrap>div::before {content: ""; height: 140px; width: 228px; position: absolute; right: 100%; bottom: 0; background: url(../images/sun-header.svg) top center no-repeat; }
.header-wrap .logo { padding: 10px 0; height: 100%; display: flex; align-items: center; flex: 0 0 auto; }
.header-wrap .logo img { max-height: 100%; max-width: 100%; width: auto; height: auto; transition: ease-in-out all .3s;}

.header-right{display: flex; gap:20px; align-items: center;}

.header-wrap .header-button{ font-size: 1.125rem; color: var(--mainColour); display: flex; align-items: center; gap:5px; font-family: var(--secondaryFont);}
.header-wrap .header-button::before{content: ""; height: 15px; width: 15px; background: url(../images/store.svg) center no-repeat;}

/*-- MENU WRAP --*/
.menu-wrap { position: relative; height: 60px; flex-grow: 1;}
.menu-wrap>div { height: 100%; }
.menu-wrap>div>nav { display: flex; align-items: center; height: 100%; justify-content: center;}

/* Main Menu */
.menu-wrap .main-menu { display: flex; list-style: none; padding: 0; margin: 0; justify-content: center; align-items: center; height: 60px; gap: 50px;}
.menu-wrap .main-menu ul { list-style: none; padding: 0; margin: 0; }
.menu-wrap .main-menu>li { height: 100%; padding: 0; position: relative; display: flex; align-items: center; flex-direction: column;  justify-content: center; }
.menu-wrap .main-menu>li>a { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--headingColour); gap:5px;
    font-size: 1rem; width: 100%; text-decoration: none; transition: ease-in-out all .3s; text-transform: capitalize; position: relative;}
.menu-wrap .main-menu>li>a::before{content:""; background: var(--secondaryColour); height: 3px; width: 30px; position: absolute; bottom: 10px;
    left: 50%; transform: translateX(-50%); transition: ease-in-out all .3s; opacity: 0;}
.menu-wrap .main-menu>li.has-children>a::after{content: ""; height: 6px; width: 6px; border: solid var(--textColour); border-width: 0 1px 1px 0; transform: rotate(45deg);}
.menu-wrap .main-menu>li:hover>a:hover{color:var(--mainColour);}
.menu-wrap .main-menu>li:hover>a::before{opacity: 1;}

.menu-wrap .main-menu li a{font-size: 1rem; color: var(--textColour);}
.menu-wrap .main-menu li ul li{padding: 0;}
.menu-wrap .main-menu li ul li a:hover{text-decoration: underline; color: var(--mainColour);}
.menu-wrap .main-menu li ul { width: 360px; box-sizing: border-box; background: var(--background); position: absolute; border-radius: 5px;
    border: 1px solid transparent; left: 0; z-index: -1; top: 100%; opacity: 0; transition: 0.3s ease-in-out all; padding: 20px; display: flex; flex-direction: column; gap:15px;
    transform: translateY(10px); visibility: hidden;}
.menu-wrap .main-menu li ul.active { z-index: 10; opacity: 1; visibility: visible; transform: translateY(0); border-color: var(--border);}
.menu-wrap .main-menu>li:last-child>ul { left: initial; right: 0; }
.menu-wrap .main-menu>li:last-child>ul>li>ul { left: initial; right: 100%; }

/*Overlay*/
.overlay { background: rgba(0, 0, 0, .6); 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; }

/*CTA Buttons*/
.cta-buttons{height: 90px; background: #fff; border: #EBEBEB solid; border-width: 1px 0; padding: 15px 0;}
.cta-buttons > div{display: flex; align-items: center; height: 100%;}
.cta-button{display: flex; align-items: center; justify-content: center; gap:5px; height: 100%; flex: 1; border-right: 1px solid var(--border);}
.cta-button:first-child{border-left:1px solid var(--border);}
.cta-button a{color: var(--mainColour); font-weight: 800; display: flex; align-items: center; gap:5px; text-transform: capitalize; font-size:1.25rem; }
.cta-button a::before{content: ""; height: 29px; width:29px; background:url(../images/sun-footer.svg); background-size:contain; }

/*-- FOOTER WRAP --*/
.footer-wrap { background: var(--footerColour); }
.footer-container { display: flex; align-items: flex-start; padding: 30px 0; }
.footer-col { flex: 1; display: flex; flex-direction: column; gap:20px;}
.footer-col-title { color: #fff; font-weight: bold; font-size: 1.125rem; display: flex; flex-direction: column; padding: 0;  gap: 10px; }
.footer-col .footer-col-title:after { content: ''; width: 20px; height: 3px; background: var(--secondaryColour); border-radius: 50px; }
.footer-col:last-child .footer-col-title { margin: 40px 0 0px 0; }
.footer-contact { display: flex; flex-direction: column; gap: 20px; }
.footer-contact .location { display: flex; align-items: flex-start; line-height: 26px; }
.footer-contact .location:before { content: ''; width: 30px; height: 30px; background: url(../images/pin.svg) no-repeat left center; }
.footer-contact * { color: #fff; font-size: 1rem;}
.footer-contact a { display: flex; align-items: center; }
.footer-contact a:hover { color: #fff; }
.footer-contact a.call:before { content: ''; width: 30px; 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: 30px; height: 30px; background: url(../images/mail.svg) no-repeat left center; }

.footer-social { display: flex; align-items: center; gap: 15px;}
.footer-social>a { display: block; width: 26px; height: 26px; }
.footer-social>a.fb { background: url(../images/icon-fb.svg) no-repeat center; background-size: contain; }
.footer-social>a.ig { background: url(../images/icon-ig.svg) no-repeat center; background-size: contain; }
.footer-social>a.tw { background: url(../images/icon-x.svg) no-repeat center; background-size: contain; }
.footer-social>a.li { background: url(../images/icon-in.svg) no-repeat center; background-size: contain; }
.footer-social>a.yt { background: url(../images/icon-yt.svg) no-repeat center; background-size: contain; }
.footer-social>a.tk { background: url(../images/icon-tt.svg) no-repeat center; background-size: contain; }

.footer-outro{align-items: center;}
.footer-menu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 25px; }
.footer-menu>li { padding: 0; margin: 0; }
.footer-menu>li>a { color: #fff; font-size: 1rem; text-decoration: none; }
.footer-menu>li>a:hover{text-decoration: underline;}
.footer-menu ul { display: none; }

/*-- BYLINE --*/
.byline-wrap { background: var(--bylineColour); }
.byline-container { display: flex; flex-direction: column; align-items: center; padding: 30px 0; gap: 20px; }
.byline-menu { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; 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; }
.byline-container>a { color: #fff; text-decoration: none; font-size:0.75rem; }

.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: 1; }
.flex-caption>div { display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; height: auto; }
.flex-caption>div.background { background: rgba(110, 41, 141, .9); padding: 20px 40px; border-radius: 10px;}
.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; }

/*Fullscreen gallery paging buttons*/
.flex-control-paging { position: absolute; bottom: 20px; display: flex; left: calc(50% - 800px); width: 1600px; align-items: center; gap: 10px; 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: #ffffff; display: flex; align-items: center; justify-content: center; border-radius: 5px 0 0 5px;}
.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: 27px; width: 15px; background: url(../images/gallery-nav.svg) no-repeat center; }
.flex-direction-nav li.flex-nav-next { right: 20px; transform: rotate(180deg); left: initial;}

/*Contact Form*/
.contact-form { background: #fff; border: 1px solid #D5D5D5; padding: 20px; margin: 20px 0; border-radius: 3px; }
.contact-form .cf_header { color: var(--mainColour); font-weight: 700; display: flex; align-items: center; gap: 10px; font-size: 1.125rem; margin-bottom: 15px; }
.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); margin-bottom: 20px; font-weight:bold; }
.contact-form :is(label, legend) { width: 100%; color: var(--textColour); font-size: 1rem; margin: 0; font-weight: bold; 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: 50px; font-size: 1rem; border: 1px solid var(--border); box-sizing: border-box; padding: 0 10px; transition: ease-in-out all .5s; 
    color: var(--textColour); border-radius: 5px;}
.contact-form :is(input[type=text], .contact-form input[type=email], .contact-form input[type=date], .contact-form textarea):focus { border-color: #071b3a; }
.contact-form select option { color: var(--textColour); }
.contact-form label span, .denotes span { color: #DC0D37; font-size: .75rem; position: relative; top: -5px; }
.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: #071b3a; }
.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: .813rem; }
.contact-form .cf-buttons a.cf-reset { display: none; }

/*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 .layout-title { padding: 0; position: relative; display: flex; font-weight: bold; align-items: flex-start; margin: 0; }
.block-layout_module .layout-content .layout-text * { font-size: 1rem; color: #1D1D1D; margin: 0; line-height: 26px; }

/*Layout Button*/
.block-layout-module .layout-block { display: flex; align-items: center; }
.block-layout-module .layout-buttons { display: flex; align-items: center; gap: 10px; }

/*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 .layout-content { justify-content: flex-start; }

/*Info Cards Module*/
.info-cards-module{padding: 30px 0;}
.info-cards-module > div{padding: 0 15px; display: flex; flex-direction: column;}
.info-cards-module .ic-heading{width: 100%;}
.info-cards-module .ic-items{width: 100%; padding-bottom: 1px;}
.info-cards-module.ic-view-list .ic-items > div{flex-wrap: wrap; gap:20px;}
.info-cards-module.ic-view-list :is(.ic-gal-nav, .ic-gal-pagination){display: none;}
.info-cards-module .ic-item{border: 1px solid #EFECEC; border-radius: 10px; padding: 5px; background: #fff; display: flex; flex-direction: column; 
    gap:10px; height: auto !important;}

.info-cards-module .ic-heading {display: flex; align-items: center; position: relative}
.info-cards-module .ic-heading::before{content: ""; width: 50vw; height: calc(100% + 50px); background: var(--secondaryColour); position: absolute; right: 100%; top:0;}
.info-cards-module .ic-heading span{background: var(--secondaryColour); color: #fff; display: flex; align-items: center; font-weight: bold;
    justify-content: center; gap:15px; font-size: 2.875rem; padding: 20px 50px 20px 0; border-radius: 0 50px 0 0; position: relative;}
.info-cards-module .ic-heading span::before{content: ""; height: 42px; width:42px; background: url(../images/sun-white.svg) center no-repeat; flex-shrink: 0;}
.info-cards-module .ic-heading span::after{content: ""; height: 50px; width: 100%; background: var(--secondaryColour); position: absolute; top: 100%; right: 0;}

/*Per Row*/
.info-cards-module.ic-row-3 .ic-item{width: calc((100%/3) - 14px);}
.info-cards-module.ic-row-4 .ic-item{width: calc((100%/4) - 15px);}

.info-cards-module .ic-image{height: 184px; border-radius: 5px; background-size: auto; background-position: center; background-repeat: no-repeat}
.info-cards-module .ic-info{display: flex; flex-direction: column; align-items: center; text-align: center; gap:10px; padding: 0 10px 20px 10px; flex: 1;}
.info-cards-module .ic-title{font-size: 1.75rem; font-weight: bold; color: var(--textColour);}
.info-cards-module .ic-button{font-size: 1rem; display: flex; align-items: center; gap:5px; border-radius: 10px; margin-top: auto;} 
.info-cards-module .ic-button::after{content: ""; height: 6px; width: 6px; transform: rotate(45deg); border: solid #fff; border-width: 1px 1px 0 0; } 

/*Carousel*/
.info-cards-module .ic-wrapper{position: relative;}
.ic-gal-nav{height: 60px; width: 40px; position: absolute; top: calc(50% - 30px); }
.ic-gal-nav::after{content: ""; height: 14px; width: 14px; border: solid var(--mainColour); border-width: 0 0 3px 3px; transform: rotate(45deg); 
    position: absolute; top:22px; right: 11px;}
.ic-gal-prev{left: -50px;}
.ic-gal-next{transform: rotate(180deg); right: -50px;}

.ic-gal-pagination{display: flex; align-items: center; gap:15px; justify-content: center; margin-top: 20px;}
.ic-gal-pagination a{height: 16px; width: 16px; border-radius: 100%; border: 1px solid var(--mainColour); background: #fff; transition: ease-in-out all .3s; 
    margin:0 !important; opacity: 1;}
.ic-gal-pagination a.active{background: var(--mainColour);}

/*Layout Cards*/
.layout-cards-module{padding: 40px 0; position: relative; background: #B3E6E9;}
.layout-cards-module.featured{background: #fff; padding: 50px 0 100px 0;}
.layout-cards-module.featured::before{content: ""; background: #ffdfe2; height: 190px; width: 400px; border-radius: 50px 0 0 50px; position: absolute; right: 0;
    top: 80px; z-index: 1;}
.layout-cards-module.featured::after{content: ""; background: #e4d7e9; height: 170px; width: 400px; border-radius:  0 50px 50px 0; position: absolute; left: 0;
    bottom: 55px; z-index: 1;}
.layout-cards-module > div{display: flex; flex-direction: column; gap:30px;}
.layout-cards-module .lc-heading{width: 100%; position: relative; z-index: 100;}
.layout-cards-module .lc-heading span{display: flex; align-items: center; gap:10px; font-size: 2.875rem; font-weight: bold; color: var(--mainColour);}
.layout-cards-module .lc-heading span::before{content: ""; height: 42px; width: 42px; background: url(../images/sun-pink.svg) center no-repeat; background-size: contain;
    flex-shrink: 0;}
.layout-cards-module .lc-items{width: 100%; display: flex; gap:20px; position: relative; z-index: 100;}
.layout-cards-module .lc-item{border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; flex: 1; 
    border: 1px solid #EFECEC; background: #fff;}
.layout-cards-module .lc-image{height: 190px; flex-shrink: 0; background-size: cover; background-position: center; background-repeat: no-repeat; 
    background-color: #e1e1e1;}
.layout-cards-module .lc-info{padding: 15px; display: flex; flex-direction: column; align-items: flex-start; gap:10px; flex-grow: 1;}
.layout-cards-module .lc-title{font-size: 1.5rem; color: var(--textColour); font-weight: bold;}
.layout-cards-module .lc-button{margin-top: auto; display: flex; align-items: center; gap:5px;}
.layout-cards-module .lc-button::after{content: ""; height: 6px; width: 6px; transform: rotate(45deg); border: solid #fff; border-width: 1px 1px 0 0;}

/*Featured*/
.layout-cards-module.featured .lc-items{align-items: flex-start;}
.layout-cards-module .featured-left{width: 60%;}
.layout-cards-module .featured-left .lc-image{height: 440px;}
.layout-cards-module .featured-left .lc-title{font-size: 1.75rem;}
.layout-cards-module .featured-right{width: 40%; align-items: flex-start; display: flex; flex-direction: column; gap:15px;}
.layout-cards-module .featured-right .lc-item{width: 100%;}

/*Content Banner Module*/
.content-banner-module{}
.content-banner-module .cb-items{display: flex; flex-direction: column;}
.content-banner-module .cb-item{display: flex; flex-direction: column; border-radius: 10px; padding:20px 0 0 0; position: relative;}
.content-banner-module .cb-image{width: 100%; height: 620px; background-size: cover; background-position: center; background-repeat: no-repeat; border-radius: 10px;}
.content-banner-module .cb-info{background: var(--mainColour); padding: 30px 60px 30px 30px; position: absolute; top: 0; left: -20px; border-radius: 10px 0 50px 0;
    width: 500px; display: flex; flex-direction: column; align-items: flex-start; gap:10px;}
.content-banner-module .cb-info *{color: #fff;}
.content-banner-module .cb-subtitle{font-size: 1.375rem; font-weight: bold;}
.content-banner-module .cb-title{font-size: 3.375rem; font-weight: bold; line-height: 1;}
.content-banner-module .cb-description *{font-size: 1.375rem; padding: 0;}
.content-banner-module .cb-button{border-radius: 10px; display: flex; gap:5px; align-items: center;}
.content-banner-module .cb-button::after{content: ""; height: 6px; width: 6px; transform: rotate(45deg); border: solid var(--mainColour); border-width: 1px 1px 0 0;}

/*Loyalty Registration Form*/
.loyalty-form{padding: 20px 15px; border: 1px solid #D5D5D5; background: #ffffff; border-radius: 10px; margin: 20px 0; display: flex; flex-direction: column; gap:25px;}
.loyalty-form .loyalty-header{display: flex; flex-direction: column; gap:25px;}
.loyalty-form .loyalty-header span{font-size: 2.875rem; color: var(--mainColour); font-weight: bold; display: flex; flex-direction: column; gap:15px;}
.loyalty-form .loyalty-header span::after{content: ""; height: 3px; width: 30px; border-radius: 5px; background: var(--secondaryColour);}
.loyalty-form .loyalty-header p{font-size: 1.125rem; padding: 0; font-weight: bold; color: var(--mainColour);}
.loyalty-form form{display: flex; flex-direction: column; gap:15px;}
.loyalty-form .form-group{display: flex; flex-direction: column; gap:5px;}
.loyalty-form label{font-size: 1rem; font-weight: bold;}
.loyalty-form label span{color: var(--secondaryColour);}
.loyalty-form input{border-radius: 5px;}
.form-group-checkbox input{margin-top: 5px;}
.form-group-checkbox{display: flex; align-items: flex-start; gap:5px;}
.form-group-button{display: flex; align-items: center; justify-content: space-between; margin-top: 10px;}
.form-group-button p{font-size: 0.75rem; padding: 0;}
.form-group-button span{color: var(--secondaryColour);}

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

/*Animation*/
@keyframes shadow-pulse {
    0% { box-shadow: 0 0 0 0px rgba(0, 0, 0, .6); }
    100% { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
}

.sr-alert { position: fixed; left: 100%; }

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

@media (min-width:768px) {
    .footer-menu-wrap > nav{display: block !important;}
    .footer-menu-wrap > h4{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; }

    /*Header*/
    .menu-wrap .main-menu{gap:20px;}
    .menu-wrap .main-menu>li>a{font-size: 0.875rem;}
    .header-wrap>div{gap:20px;}

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

    /*Info Cards*/
    .info-cards-module .ic-heading span {font-size: 1.75rem;}
    .info-cards-module .ic-image{height: 160px;}
    .info-cards-module .ic-title{font-size: 1.5rem;}
    .ic-description *, .info-cards-module .ic-button{font-size: 0.875rem;}

    /*Layout Cards*/
    .layout-cards-module.standard .lc-items{gap:10px;}
    .layout-cards-module.standard .lc-image{height: 150px;}
    .layout-cards-module.standard .lc-info{padding: 10px;}

    /*Content Banner*/
    .content-banner-module .cb-info{padding: 20px 40px 20px 20px}
    .content-banner-module .cb-subtitle{font-size: 1.25rem;}
    .content-banner-module .cb-title{font-size: 3rem;}
    .content-banner-module .cb-description *{font-size: 1.25rem;}
    .content-banner-module .cb-image {height: 500px;}

}

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

    /* ----- SITE HEADER ----- */
    .header-wrap{height: 90px;}
    .header-wrap>div { width: 100%; max-width: none; }
    .header-wrap .logo img{max-width: 120px;}
    body.site_body.sticky .header-wrap .logo img{scale: 1;}

    /* -- HEADER WRAP -- */
    .menu-toggle{height: 23px; width: 30px; display: flex; align-items: center; justify-content: center; z-index: 2000; position: relative;}
    .menu-toggle > div{display: flex; align-items: center; flex-direction:column; justify-content: center; height:23px; width:30px; }
    .menu-toggle > div::before{content: ""; height: 3px; transition: ease-in-out all .3s; width: 30px; margin-bottom: 6px; background: var(--mainColour); border-radius: 6px; flex-shrink: 0;}
    .menu-toggle > div::after{content: ""; height: 3px; transition: ease-in-out all .3s; width: 30px; margin-top: 6px; background: var(--mainColour); border-radius: 6px; flex-shrink: 0;}
    .menu-toggle > div > div{height: 3px; transition: ease-in-out all .3s; width: 30px; background: var(--mainColour); border-radius: 6px; flex-shrink: 0;}
    .menu-toggle.active > div > div{opacity: 0;}
    .menu-toggle.active > div::before{ transform:rotate(45deg) translate(7px, 6px);}
    .menu-toggle.active > div::after{transform:rotate(-45deg) translate(7px, -6px);}

    /* ----- MOBILE MENU ----- */
    .responsive-menu-wrap{opacity: 0; z-index: -1; visibility: hidden; background: #fff; width: 100%; position: absolute; top: 100%; right: 0;
        transition: ease-in-out all .3s; height: initial; padding: 0; box-shadow: 0px 3px 6px #00000029;}
    .responsive-menu-wrap > div{max-width: 100%; padding: 0;}
    .responsive-menu-wrap.open{opacity: 1; z-index: 1000; visibility: visible;}

    .main-menu-wrap{height: calc(100vh - 90px); overflow: scroll;}

    .responsive-menu-wrap .main-menu-wrap > ul{list-style: none; padding: 0; margin: 0;}
    .responsive-menu-wrap .main-menu-wrap li{list-style: none; padding: 0; display: flex; flex-direction: column; position: relative; }
    .responsive-menu-wrap .main-menu-wrap li a{color: var(--textColour); font-size: 0.875rem; padding: 10px 20px; font-weight: 400; width: 100%;}
    .responsive-menu-wrap .main-menu-wrap > ul ul{padding: 0 0 10px 0;}
    .responsive-menu-wrap .main-menu-wrap > ul > li {border-bottom: 1px solid var(--border);}
    .responsive-menu-wrap .main-menu-wrap > ul > li > a{font-weight: bold; padding: 15px 10px; font-size: 1rem;}

    .responsive-menu-wrap .main-menu-wrap li ul li ul li a{padding: 10px 30px;}

    .responsive-menu-wrap .menu-footer{display: flex; align-items: center; justify-content: flex-end; padding:0 10px;}
    .responsive-menu-wrap .close-menu{display: flex; align-items: center; height: 50px; text-decoration: underline; color: #000; font-size: 0.75rem;}

    /*Footer*/
    .cta-buttons{padding: 0;  height: initial; }
    .cta-buttons > div{flex-wrap: wrap; max-width: 100%; padding: 0;}
    .cta-button{flex: initial; width: 50%;}
    .cta-button:first-child{border-left: 0; border-bottom: 1px solid var(--border);} 
    .cta-button:nth-child(2){border-bottom: 1px solid var(--border);} 
    .cta-button:last-child{border: 0;} 
    .cta-button a{font-size: 0.875rem; padding: 20px 0;}

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

    /* -- Fullscreen Gallery -- */
    .flex-direction-nav li { left: 0; }
    .flex-direction-nav li.flex-nav-next { right: 0; }

    /*Info Cards*/
    .info-cards-module .ic-image{height: 150px;}
    .info-cards-module .ic-title{font-size: 1.375rem;}
    .ic-description *{font-size: 0.875rem;}
    .info-cards-module .ic-button{font-size: 1rem;}
    .info-cards-module .ic-heading span {font-size: 1.375rem;}

    /*Layout Cards*/
    .layout-cards-module .lc-info{align-items: center; text-align: center;}
    .layout-cards-module .lc-heading span{font-size: 1.5rem;}
    .layout-cards-module .lc-heading span::before{height: 28px; width: 28px;}
    .layout-cards-module .lc-title{font-size: 1.25rem;}
    .layout-cards-module .lc-description *{font-size: 0.875rem;}

    /*Content Banner Module*/
    .content-banner-module .cb-item{border-radius: 0; padding:10px 0 0 0; background:var(--mainColour); width: 100vw !important; max-width: 100vw !important; position: relative !important; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; align-items:center; }
    .content-banner-module .cb-image{border-radius: 0;}
    .content-banner-module .cb-info{position: relative; top: initial; left: initial; width: 300px; border-radius: 0; text-align: center; align-items: center; padding: 25px 0;}
    .content-banner-module .cb-subtitle{font-size: 1rem;}
    .content-banner-module .cb-title{font-size: 1.75rem; line-height: 1.2;}
    .content-banner-module .cb-description *{font-size: 1rem;}
  
}

/*---------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; }

    /*Header*/
    .responsive-menu-wrap{width: 400px;}


    /*Footer*/
    .footer-wrap > div{flex-wrap: wrap; row-gap: 30px;}
    .footer-col{width: calc(100%/ 3); flex: initial;}
    .footer-outro{width: 100%;}

    /*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; }

    /*Layout Cards*/
    .layout-cards-module .featured-left .lc-image{height: 245px;}
    .layout-cards-module.featured::before, .layout-cards-module.featured::after{width: 100px;}
    .layout-cards-module .featured-right{gap:10px;}
    .layout-cards-module .lc-image{height: 136px;}
    .layout-cards-module .lc-items{gap:10px;}

    .layout-cards-module.standard .lc-items{gap:10px;}
    .layout-cards-module.standard .lc-image{height: 120px;}
    .layout-cards-module.standard .lc-info{padding: 10px;}

    /*Content Banner Module*/
    .content-banner-module .cb-image{height: 380px;}
}
@media (max-width:767px) {
    .tablet:not(.mobile), .desktop:not(.mobile), .desktop-large:not(.mobile), .mobile-hidden { display: none !important; }
    h1 { font-size: 2.875rem; }
    h2 { font-size: 2.625rem; }
    h3 { font-size: 2.375rem; }
    h4 { font-size: 2.125rem; }
    h5 { font-size: 1.625rem; }
    h6 { font-size: 1.25rem; }
    p { font-size: .875rem; padding: 5px 0 15px 0; }
    ul li, ol li{font-size: .875rem;}
    img { max-width: 100%; vertical-align: middle; }

    .button-primary, .button-secondary, .button-tertiary{font-size: 0.938rem; padding: 0 15px; height: 45px;}

    /*Header*/
    .header-wrap .header-button{flex-direction: column; font-size: 0.688rem;}

    /*Footer*/
    .footer-col { width: 100vw !important; max-width: 100vw !important; position: relative !important; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; border-top: 1px solid #7c399a; padding: 0 10px; }
    .footer-container { flex-direction: column; gap: 0; }
    .footer-menu-wrap{gap:0;}
    .footer-menu-wrap .footer-col-title { height: 60px; align-items: center; justify-content: space-between; flex-direction: row; margin: 0; }
    .footer-menu-wrap .footer-col-title:after { content: ''; width: 10px; height: 10px; background: url(../images/chevron-right-white.svg) no-repeat center; 
        background-size: contain; transform: rotate(90deg); }
    .footer-menu-wrap nav{ display: none; }
    .footer-col.active .footer-col-title:after { transform: rotate(-90deg); }

    .footer-intro{margin-bottom: 20px; border-top: 0;}
    .footer-outro{padding-top: 20px; }
    .footer-menu{gap:15px; margin: 0 0 20px 0;}

    /*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; }
    .flex-direction-nav li a:after { width: 8px; height: 14px; background-size: contain; }

    /*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; }
    .contact-form .cf-buttons { flex-direction: column; align-items: flex-start; gap: 10px; }
    .contact-form .cf-buttons a { margin-left: auto; }

    /*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; gap: 20px; }
    .block-layout-module .layout-heading h1 { font-size: 1.375rem; line-height: 22px; padding: 0; }
    .block-layout_module .layout-content .layout-text * { font-size: .875rem; line-height: 26px; padding: 0; margin: 0; }

    /*Info Cards*/
    .info-cards-module .ic-heading span{padding: 20px 20px 20px 0; border-radius: 0 20px 0 0; gap:5px;}
    .info-cards-module .ic-heading span::before{height: 28px; width: 28px; background-size: contain;}
    .info-cards-module .ic-heading::before{height: calc(100% + 40px);}
    .info-cards-module .ic-heading span::after{height: 40px;}
    .info-cards-module .ic-item{width: 100% !important;}

    /*Layout Cards*/
    .layout-cards-module.featured{padding: 30px 0 50px 0;}
    .layout-cards-module.featured::before, .layout-cards-module.featured::after{width: 75px;}
    .layout-cards-module .lc-items{flex-direction: column; gap:10px; align-items: center;}
    .layout-cards-module .featured-left, .layout-cards-module .featured-right{width: 100%;}
    .layout-cards-module .lc-image, .layout-cards-module .featured-left .lc-image{height: 185px;}
    .layout-cards-module .featured-left .lc-title{font-size: 1.25rem;}

    .layout-cards-module.standard .lc-item{width: 100%;}

     /*Content Banner Module*/
    .content-banner-module .cb-image{height: 160px;}

    /*Loyalty Forms*/
    .loyalty-form{padding: 15px 10px; gap:15px;}
    .loyalty-form .loyalty-header span{font-size: 1.25rem; gap:10px;}
    .loyalty-form .loyalty-header p{font-size: 1rem;}
    .loyalty-form label{font-size: 0.875rem;}
    .form-group-button{flex-direction: column; gap:10px; align-items: flex-start;}
}
