@import url(jquery-1.11.3-ui.css);
@import url(swipe.css);
@import url(mmenu.css);
@import url("https://use.typekit.net/uzy3kna.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* Brand Colours */
  --color-main: #830413;
  --color-main-100: #F3E6E7;
  --color-main-200: #DAB4B8;
  --color-main-300: #A84F5A;
  --color-main-500: #69030F;
  --color-main-600: #4F020B;
  --color-main-700: #340208;
  /* Accent Colours */
  --color-accent: #C5924E;
  --color-accent-100: #F9F4ED;
  --color-accent-200: #E8D3B8;
  --color-accent-300: #D6B383;
  --color-accent-500: #8A6637;
  --color-accent-600: #4F3A1F;
  --color-accent-700: #140F08;
    /* Neutral Colours */
  --color-neutral: #394253;
  --color-neutral-50: #F4F4F5;
  --color-neutral-100: #F9FBFC;
  --color-neutral-200: #F3F5F7;
  --color-neutral-300: #E5E7EB;
  --color-neutral-400: #D2D6D9;
  --color-neutral-500: #B0B5BF;
  --color-neutral-600: #6B717F;
  --color-neutral-700: #4C5564;
  --color-neutral-800: #1d0c0c;
  /* Alert Colours */
  --color-success: #14CE66;
  --color-success-100: #E7FBEF;
  --color-success-200: #C5F2DA;
  --color-success-300: #89E8B4;
  --color-success-500: #4EDA8D;
  --color-success-600: #2BD374;
  --color-success-700: #10B85D;
  --color-warning: #ffb52d;
  --color-warning-100: #FDF8EA;
  --color-warning-200: #FFEBCB;
  --color-warning-300: #FFDA97;
  --color-warning-500: #FEC562;
  --color-warning-600: #FCB940;
  --color-warning-700: #CA8E23;
  --color-danger: #FF313C;
  --color-danger-100: #FEE4E8;
  --color-danger-200: #FFBFC3;
  --color-danger-300: #FE8088;
  --color-danger-500: #FF4148;
  --color-danger-600: #FF1927;
  --color-danger-700: #E5000B;
  --color-alert: #3365FD;
  --color-alert-100: #E9F0FE;
  --color-alert-200: #CDDBFF;
  --color-alert-300: #98B3FE;
  --color-alert-500: #668CFF;
  --color-alert-600: #4775FE;
  --color-alert-700: #2E5CE5;
  /* Typography */
  --font-body: "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-accent: "montecarlo", sans-serif;
  /* Gap */
  --form-gap: 1.6rem;
  --gap-4: .4rem;
  --gap-8: .8rem;
  --gap-12: 1.2rem;
  --gap-16: 1.6rem;
  --gap-24: 2.4rem;
  --gap-32: 3.2rem;
  --gap-40: 4rem;
  --gap-48: 4.8rem;
  --gap-56: 5.6rem;
  --gap-64: 6.4rem;
  --gap-72: 7.2rem;
  --gap-80: 8rem;
  --gap-88: 8.8rem;
  --gap-96: 9.6rem;
  /* Shadows */
  --shadow-low: 0 0 .8rem hsla(0 0% 0% / .16);
  --shadow-medium:  0 0 1.6rem hsla(0 0% 0% / .16);
  --shadow-high:  0 0 3.2rem hsla(0 0% 0% / .16);
  /* Animations */
  --animate-fast: all 0.25s ease-in-out;
  --animate-medium: all 0.5s ease-in-out;
  --animate-slow: all 0.75s ease-in-out;
}

/* ---------- Table Of Contents ---------- */
/*
	0. Resets
	1. Generic Tags
  2. Fonts
  3. Structure
  4. Editable Content
  5. Desktop Header & Navigation
  6. Mobile Header & Navigation
  7. Footer
  8. Buttons
  9. Banner
  10. Inner Header
  11. Forms
  12. Messages
  13. Flex Column Structure
  14. Grid Column Structure
  15. Card & Box Base Styles 
  16. Base Strip Styles
  17. Animations
  18. Swipebox Styles
  19. Sub Page Menu
  20. Contact
  21. Contact Multi Location
  22. Map
  23. Social Media
  24. Toggler 
  25. Products
  26. Modal Styles
  27. FAQs
  28. Events
  29. Categories
  30. Pop Up
  31. Page Details
*/

/* ---------- 0. Resets ---------- */

/* ----- XHTML, HTML4, HTML5 Reset -----*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden !important;
  width: 100%;
}

#page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  /*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
  */
  display: block;
}

b,
strong {
  /*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
  */
  font-weight: bold;
}

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  /*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
  */
  -ms-interpolation-mode: bicubic;
}

li {
  /*
  For IE6 + IE7.
  */
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

sub,
sup,
small {
  font-size: 75%;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg {
  /*
  For IE9.
  */
  overflow: hidden;
}

pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap !important;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  width: 100%;
}

input[name="hp_comment_verification"] {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}

mark {
  background: var(--color-main);
  color: white;
}

/* ---------- 1. Generic Tags ---------- */

html {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  font-size: 100%;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

::-moz-selection {
  background: hsla(0 0% 0% / 0.75);
  color: white;
}

::selection {
  background: hsla(0 0% 0% / 0.75);
  color: white;
}
#page{
  background: var(--color-neutral-800);
}
body {
  background: var(--color-neutral-800);
  color: var(--color-neutral-700);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.4;
  padding: 0;
  margin: 0;
  overflow-x: hidden !important;
  width: 100%;
  overflow-x: hidden;
  text-shadow: none;
  -webkit-text-size-adjust: none;
}

hr {
  border: none;
  border-top: 2px solid hsla(0 0% 0% / .08);
  margin: 3.2rem auto;
}

a {
  color: var(--color-neutral);
}

a:hover {
  color: var(--color-main);
  text-decoration: none;
}

a[href^="x-apple-data-detectors:"] {
  color: inherit;
  text-decoration: inherit;
}

.clear {
  clear: both;
}

/* ---------- 2. Fonts ---------- */

body,
p,
ol li,
ul li,
pre,
input,
textarea,
select {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-neutral-700);
  font-family: var(--font-body);
}
.h0,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin: 0 0 2.4rem;
line-height: 1;
}
.h0,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
color: var(--color-neutral-800);
font-family: var(--font-heading);
font-weight: 700;
}
h5,
.h5,
h6,
.h6 {
font-family: var(--font-accent);
color: var(--color-main);
font-weight: 400;
margin: 0;
}
.h0{
font-size: clamp(5.6rem, 6.75vw, 9.6rem);
}
h1,
.h1 {
font-size: clamp(4rem, 4.5vw, 6.4rem);
}
h2,
.h2 {
font-size: clamp(3.2rem, 4vw, 5.6rem);
}
h3,
.h3 {
font-size: clamp(2.8rem, 3.4vw, 4.8rem);
}
h4,
.h4 {
font-size: clamp(2.4rem, 2.25vw, 4rem);
}
h5,
.h5 {
  font-size: clamp(3.2rem, 2.9vw, 4.4rem);
}
h6,
.h6 {
  font-size: clamp(2.8rem, 2.9vw, 4rem);
}
p {
  margin: 0 0 1.2rem;
}
pre{
  margin: 0 0 1.2rem;
}
ul {
  list-style: disc outside none;
  margin: 0 0 1.2rem 2rem;
}
ul li {
  padding: 0;
  margin: 0 0 .8rem;
}
ol{
  list-style: decimal outside none;
  margin: 0 0 1.2rem 2rem;
}
ol li {
  padding: 0;
  margin: 0 0 .8rem;
}

/* ---------- 3. Structure ---------- */

.content_container {
  width: 100%;
  background: white;
  padding: 9.6rem 4rem;
}
@media screen and (max-width: 1024px){
  .content_container{
    padding: 4.8rem 2.4rem;
  }
}

.content {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

/* ----- Content Widths ----- */
.content-xl{
  max-width: 160rem;
}
.content-l{
  max-width: 136rem;
}
.content-m{
  max-width: 102.4rem;
}
.content-s{
  max-width: 76.8rem;
}
.content-xs{
  max-width: 56rem;
}

/* ----- Text Alignment ----- */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-center img {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}

.align-center figcaption {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.align-right {
  text-align: right;
}

.align-right img {
  margin-left: auto;
}

.align-right figcaption {
  text-align: right;
  margin-left: auto;
}

.align-justify {
  text-align: justify;
}

.float-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
  max-width: 200px;
}

.float-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
  max-width: 200px;
}

.valign-top {
  align-items: start;
}

.valign-middle {
  align-items: center;
}

.valign-bottom {
  align-items: end;
}

.outset-right {
  position: relative;
  width: calc(100% + 24px);
  max-width: calc(100% + 24px);
  transform: translateX(24px) translate3d(0, 0, 0);
  left: calc(24px * -1);
}

.outset-left {
  width: calc(100% + 24px);
  max-width: calc(100% + 24px);
  transform: translateX(calc(24px * -1)) translate3d(0, 0, 0);
}

.outset-both {
  position: relative;
  width: calc(100% + 24px + 24px);
  max-width: calc(100% + 24px + 24px);
  transform: translateX(-50%) translate3d(0, 0, 0);
  left: 50%;
}

.center-list {
  justify-content: center;
}

/* Reduced Padding */
.reduced-padding{
  padding: 4.8rem 4rem;
}
@media screen and (max-width: 1024px) {
  .reduced-padding{
      padding: 2.4rem;
  }
}
/* ----- Subtitle Spacing -----*/
.subtitle-top :is(h5, .h5, h6, .h6) {
  margin: 0;
}

.subtitle-bottom :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4) {
  margin: 0;
}

/* ---------- 4. Editable Content ---------- */

.editable_content *:last-child {
  margin-bottom: 0;
}

.editable_content ul {
  list-style: disc outside none;
  margin: 0 0 1.6rem 2rem;
}

.editable_content ul li {
  padding: 0;
  margin: 0 0 .8rem;
}

.editable_content ol {
  list-style: decimal outside none;
  margin: 0 0 1.6rem 2rem;
}

.editable_content ol li {
  padding: 0;
  margin: 0 0 .8rem;
}

.editable_content figure {
  display: block;
}

.editable_content figure.float-left {
  float: left;
  margin: .8rem .8rem .8rem 0;
}

.editable_content figure.float-right {
  float: right;
  margin: .8rem 0 .8rem .8rem;
}

.editable_content figure.wrap-center {
  margin: .8rem auto;
}

.editable_content iframe,
.editable_content img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto !important;
}

.editable_content table {
  margin: 1.6rem 0;
  text-align: center;
  width: 100%;
  display: table;
}

.editable_content table tr th,
.editable_content table thead tr td {
  font-weight: bold;
  color: white;
  background: var(--color-main);
  padding: .8rem;
  border: 2px solid var(--color-main);
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.editable_content table tr td {
  border: 2px solid white;
  background: var(--color-neutral-50);
  padding: .8rem;
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .editable_content figure {
    margin: .8rem 0;
  }

  .editable_content figure.float-left,
  .editable_content figure.float-right {
    float: none;
  }

  .editable_content figure.wrap-center {
    margin: .8rem auto;
  }
}

/* ---------- 5. Desktop Header & Navigation ---------- */

/* ----- Top Header ----- */
.top-header {
  background: var(--color-neutral-50);
  border-bottom: 1px solid hsl(0 0% 80%);
  padding: .8rem 3.2rem;
}

.top-header .content {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-16);
  align-items: center;
}

.top-header .content .language {
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  gap: .8rem;
  margin-right: auto;
}

.top-header .content .language span {
  display: block;
}

.top-header .content .language span:first-of-type {
  padding-right: .8rem;
  border-right: 2px solid hsla(0 0% 0% / .1);
}

.top-header .content>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap-16);
}

.top-header .content>ul li {
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-neutral);
}

.top-header .content>ul li a {
  color: var(--color-neutral);
  text-decoration: none;
}

.top-header .content>ul li a:hover {
  color: var(--color-main);
}

.top-header .content .social_media ul {
  gap: calc(var(--gap-16) / 2);
}

.top-header .content .social_media ul li {
  margin: 0;
}

.top-header .content .social_media ul li a {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--color-neutral);
  color: var(--color-neutral-50);
}

.top-header .content .social_media ul li a:hover {
  background: var(--color-main);
}

.top-header .content .social_media ul li a i {
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .top-header {
    display: none;
  }
}

/* ----- Full Header ----- */
.full_header {
  display: none;
  background: white;
  width: 100%;
  z-index: 999;
  top: 0;
  position: sticky;
  padding: 0 3.2rem;
  box-shadow: var(--shadow-medium);
}

.jqueryslidemenu {
  width: 100%;
  max-width: 1264px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.jqueryslidemenu a.logo {
  width: 300px;
  display: block;
  margin: 0;
  padding: 0;
}

.jqueryslidemenu a.logo img {
  width: 100%;
  height: auto;
}

.jqueryslidemenu nav {
  width: calc(100% - 348px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.6rem;
}

.jqueryslidemenu ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: right;
  align-items: center;
}

.jqueryslidemenu ul li {
  position: relative;
  margin: 0;
}

.jqueryslidemenu ul li.mobile-item {
  display: none;
}

.jqueryslidemenu ul li a {
  width: 100%;
  padding: 10px;
  display: block;
  color: var(--color-neutral-800);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.jqueryslidemenu ul li a:hover,
.jqueryslidemenu ul li:hover a,
.jqueryslidemenu ul li.Selected a,
.jqueryslidemenu ul li:has(ul li.Selected) a,
.jqueryslidemenu ul li.Selected a:hover {
  color: white;
}

.jqueryslidemenu ul li a::after {
  content: "";
  background: var(--color-main);
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  transition: var(--animate-medium);
}

.jqueryslidemenu ul li a:hover::after,
.jqueryslidemenu ul li:hover a::after,
.jqueryslidemenu ul li.Selected a::after,
.jqueryslidemenu ul li:has(ul li.Selected) a::after,
.jqueryslidemenu ul li.Selected a:hover::after {
  width: 100%;
}

/* ----- FIRST DROP-DOWN LAYER ----- */
.jqueryslidemenu ul li ul {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  position: absolute;
  left: 0;
  display: block;
  visibility: hidden;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: none;
  width: 256px;
  background: var(--color-main);
}

.jqueryslidemenu ul li ul li {
  display: list-item;
  float: none;
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.jqueryslidemenu ul li ul li a {
  color: white;
  padding: 1.6rem;
  margin: 0;
  background: none;
}

.jqueryslidemenu ul li ul li a::after {
  display: none;
}

.jqueryslidemenu ul li:hover ul {
  visibility: visible;
}

.jqueryslidemenu ul li:hover ul li a {
  color: white;
  padding: 1.6rem;
  margin: 0;
  background: none;
}

.jqueryslidemenu ul li.Selected ul li a:hover,
.jqueryslidemenu ul li ul li a:hover {
  color: white;
  text-decoration: none;
  background: hsla(0 0% 0% / 0.1);
}

/* ----- SUB DROP-DOWN LAYERS AFTER 1ST ----- */
.jqueryslidemenu ul li ul li ul {
  top: 0;
  margin: -1px 0px 0px 2px;
}

@media (min-width: 1024px) {
  .full_header {
    display: inherit;
  }
}

/* ----- Cart Button ----- */
.jqueryslidemenu a.cart_button {
  position: absolute;
  bottom: -44px;
  right: 0;
  background: var(--color-main);
  color: white;
  padding: .8rem 1.6rem;
  border-radius: 0 0 .4rem .4rem;
  font-size: 2rem;
  text-decoration: none;
  transition: var(--animate-medium);
}

.jqueryslidemenu a.cart_button:hover {
  background: var(--color-neutral-800);
}

.jqueryslidemenu a.cart_button span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-9px, calc(-50% + 3px));
  width: 18px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--color-main);
  background: white;
  transition: var(--animate-medium);
}

.jqueryslidemenu a.cart_button:hover span {
  color: var(--color-neutral-800);
}

/* ---------- 6. Mobile Header & Navigation ---------- */

.mobile_header {
  background: linear-gradient(45deg, var(--color-main), var(--color-main-600));
  box-shadow: var(--shadow-medium);
  padding: .8rem 0;
  width: 100%;
  z-index: 999;
  position: sticky;
  display: inherit;
  top: 0;
}

@media (min-width: 1024px) {
  .mobile_header {
    display: none;
  }
}

.mobile_header .logo_area {
  padding: 0px 3rem;
  width: 100%;
}

.mobile_header .logo_area>a {
  width: 20rem;
  display: block;
  margin: 0 auto;
}

.mobile_header .logo_area img {
  width: 100%;
  height: auto;
}

.mobile_header a.menu-btn,
.mobile_header a.cart_link {
  color: white;
  left: .8rem;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 2.4rem;
}

.mobile_header a.cart_link {
  left: auto;
  right: .8rem;
}

#menu .mm-list a {
  color: #fff;
  font-weight: 600;
  padding: 1.6rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-transform: none;
}
#menu .mm-list li:last-child a{
  background: var(--color-accent);
}

.mm-ismenu {
  background: var(--color-main);
}

.mm-menu {
  color: hsl(0 0% 100%);
}

.mm-menu .mm-list>li:after {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list>li>a.mm-subclose {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.3);
}

.mm-menu .mm-list>li>a.mm-subopen:after,
.mm-menu .mm-list>li>a.mm-subclose:before {
  border-color: #fff;
}

.mm-menu .mm-list>li>a.mm-subopen:before {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu .mm-list>li.mm-selected>a:not(.mm-subopen),
.mm-menu .mm-list>li.mm-selected>span {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-list li.mm-label {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-vertical .mm-list li.mm-opened>a.mm-subopen,
.mm-menu.mm-vertical .mm-list li.mm-opened>ul {
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- 7. Footer ---------- */

footer {
  background: var(--color-neutral-800);
  margin-top: auto;
  padding: 4.8rem 3.2rem 1.6rem;
}

footer .content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.6rem 3.2rem;
  justify-content: space-between;
}

footer a.logo {
  width: 16rem;
  display: block;
}

footer a.logo img {
  width: 100%;
  height: auto;
}

footer .h4 {
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  margin: 0 0 .8rem;
}

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

footer ul li,
footer ul li a {
  color: white;
  font-size: 1.4rem;
}
footer ul li strong{
  display: block;
}

footer ul li a {
  text-decoration: none;
}

footer ul li a:hover {
  color: var(--color-accent-200);
}

footer .sitemap {
  width: 32rem;
}

footer .sitemap ul {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
}

footer .sitemap ul li {
  width: calc(50% - .8rem);
  margin: 0;
}

footer .footer-contact {
  width: 22rem;
}

footer .footer-social {
  width: 12rem;
}

footer .social_media ul {
  gap: calc(var(--gap-16) / 2);
  justify-content: flex-start;
}

footer .social_media ul li a {
  width: 2.8rem;
  height: 2.8rem;
}

footer .social_media ul li a {
  background: white;
  color: var(--color-neutral-800);
}

footer .social_media ul li a:hover {
  background: var(--color-accent);
  color: white;
}

footer .social_media ul li a i {
  font-size: 1.6rem;
}

footer p.signature {
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.2rem;
  line-height: 1.2;
  padding-top: 1.6rem;
  border-top: 2px solid hsla(0 0% 100% / .1);
  margin: 0;
}

footer p.signature a {
  color: white;
  text-decoration: none;
}

footer p.signature a:hover {
  color: var(--color-accent-200);
}

@media screen and (max-width: 1024px) {
  footer .content {
    flex-direction: column;
    align-items: center;
    gap: var(--gap-32);
    text-align: center;
  }

  footer .footer-social,
  footer .footer-contact,
  footer .sitemap,
  footer .sitemap ul li {
    width: 100%;
  }

  footer .social_media ul {
    justify-content: center;
  }
}

/* ---------- 8. Buttons ---------- */
/* Buttons */
.button,
.superbutton{
  background: var(--color-main);
  color: var(--color-main-100);
  line-height: 1;
  padding: .2rem 4rem 0;
  text-decoration: none;
  border-radius: 0.4rem;
  border: none;
  outline: none;
  height: 4rem;
  cursor: pointer;
  margin: 2.4rem 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--animate-medium);
}
.button:hover,
.superbutton:hover{
  background: var(--color-main-700);
  color: var(--color-main-100);
}
.superbutton:focus,
.superbutton:focus-within,
.superbutton:focus-visible,
.superbutton:target{
  box-shadow: var(--shadow-medium);
}
.superbutton.btn-sm{
  height: 3.2rem;
  padding-inline: 3.2rem;
}
.superbutton.btn-lg{
  height: 5.6rem;
  padding-inline: 5.6rem;
}
.btn-outline{
  border: 2px solid var(--color-main);
  background: none;
  color: var(--color-main);
}
.btn-outline:hover{
  background: var(--color-main);
  color: var(--color-main-100);
}
.btn-icon{
  gap: .8rem;
}
.btn-icon img{
  height: 1rem;
  filter: brightness(0) invert(1);
}
.btn-circle{
  border-radius: 4rem;
  border: 2px solid var(--color-main);
  background: none;
  color: var(--color-main);
  position: relative;
  z-index: 1;
  padding-left: 5.6rem;
  overflow: hidden;
}
.btn-circle:hover{
  background: none;
  color: var(--color-main-100);
}
.btn-circle::before{
  content: '';
  position: absolute;
  width: 3.2rem;
  height: auto;
  top: 50%;
  left: .2rem;
  background: var(--color-main);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  transform: translate(0, -50%);
  z-index: -1;
  transition: var(--animate-medium);
}
.btn-circle:hover::before{
  width: 200%;
  left: 0;
}
.btn-circle::after{
  content: '';
  position: absolute;
  width: 3.2rem;
  height: auto;
  top: 50%;
  left: .2rem;
  aspect-ratio: 1 / 1;
  transform: translate(0, -50%);
  background-image: url(../../assets/images/icon-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto .8rem;
  filter: brightness(0) invert(1);
}
.btn-circle-right{
  padding-inline: 4rem 5.6rem;
}
.btn-circle-right::after,
.btn-circle-right::before{
  left: auto;
  right: .2rem;
}
.btn-circle-right:hover::before{
  left: auto;
  right: 0;
}
.btn-box-icon{
  border: 2px solid var(--color-main);
  background: none;
  color: var(--color-main);
  padding-left: 7.2rem;
  position: relative;
  z-index: 1;
}
.btn-box-icon:hover{
  background: none;
}
.btn-box-icon::before{
  content: '';
  position: absolute;
  width: auto;
  aspect-ratio: 1 / 1;
  height: 100%;
  top: 0;
  left: 0;
  border-right: 2px solid var(--color-main);
  background-image: url(../../assets/images/icon-arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto .8rem;
  transition: var(--animate-medium);
}
.btn-box-icon:hover::before{
  filter: brightness(0) invert(1);
}
.btn-box-icon::after{
  content: '';
  width: 0;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-main);
  transition: var(--animate-medium);
  position: absolute;
  z-index: -1;
}
.btn-box-icon:hover::after{
  width: 100%;
}
.btn-box-icon-right{
  padding-inline: 4rem 7.2rem;
}
.btn-box-icon-right::before{
  border-right: none;
  border-left: 2px solid var(--color-main);
  left: auto;
  right: 0;
}
a.text-link {
  color: var(--color-main);
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  transition: var(--animate-fast);
}
a.text-link:hover {
  color: var(--color-main);
}
a.text-link::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: .2rem;
  background: var(--color-main);
  transition: var(--animate-fast);
}
a.text-link:hover::before {
  width: 4rem;
}
/* Hero Styles */
.banner-container-constrained{
  position: relative;
  height: 100svh;
  background: white;
}
.banner-container-constrained.colour{
  background: var(--color-main);
}
.banner-container-constrained.dark{
  background: var(--color-neutral-800);
}
.banner-container-constrained.light{
  background: var(--color-neutral-50);
}
ul.ms-banner-constrained{
  display: inline-flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
}
ul.ms-banner-constrained li{
  list-style: none;
  width: 100%;
  flex-shrink: 0;
  position: relative;
  margin: 0;
  opacity: 0;
}
.banner-container-constrained li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: white;
  opacity: .5;
}
.banner-container-constrained.light li:after{
  background: var(--color-neutral-100);
}
.banner-container-constrained.dark li:after{
  background: var(--color-neutral-800);
}
.banner-container-constrained.colour li:after{
  background: var(--color-main);
}
.banner-container-constrained .img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: none;
}
.banner-container-constrained .img-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.banner-container-constrained .banner-details{
  position: absolute;
  width: 100%;
  max-width: 126.4rem;
  padding-inline: 3.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.banner-container-constrained .banner-left .banner-details{
  justify-content: flex-start;
  text-align: left;
}
.banner-container-constrained .banner-right .banner-details{
  justify-content: flex-end;
  text-align: right;
}
.banner-container-constrained .banner-content{
  width: 100%;
  max-width: 64rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner-container-constrained .banner-left .banner-content{
  align-items: flex-start;
}
.banner-container-constrained .banner-right .banner-content{
  align-items: flex-end;
}
.banner-container-constrained .h6{
  margin: 0;
}
.banner-container-constrained .h0{
  margin: 0 0 2.4rem;
  line-height: 1.2;
}
.banner-container-constrained p{
  margin: 0 0 3.2rem;
  max-width: 42rem;
  width: 100%;
}
.banner-container-constrained .superbutton{
  margin-top: 0;
}
.banner-container-constrained.banner-bar li:after {
  display: none;
}
.banner-container-constrained.banner-bar .img-wrapper{
  width: 60%;
  left: 40%;
}
.banner-container-constrained.banner-bar .banner-right .img-wrapper{
  left: 0%;
}
.banner-container-constrained.banner-bar .img-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: white;
  opacity: .5;
}
.banner-container-constrained.banner-bar.light .img-wrapper:after{
  background: var(--color-neutral-100);
}
.banner-container-constrained.banner-bar.colour .img-wrapper:after{
  background: var(--color-main);
}
.banner-container-constrained.banner-bar.dark .img-wrapper:after{
  background: var(--color-neutral-800);
}
.banner-container-constrained.banner-bar .banner-details{
  justify-content: flex-start;
  text-align: left;
}
.banner-container-constrained.banner-bar .banner-right .banner-details {
  justify-content: flex-end;
  text-align: right;
}
.banner-container-constrained.banner-bar .banner-content{
  align-items: flex-start;
  max-width: 100%;
}
.banner-container-constrained.banner-bar .banner-right .banner-content{
  align-items: flex-end;
}
.banner-container-constrained.banner-bar .h6,
.banner-container-constrained.banner-bar .h0{
  max-width: 72rem;
}
.banner-container-constrained.banner-bar p{
  max-width: 100%;
  width: 40%;
  padding-right: 4rem;
}
.banner-container-constrained.banner-bar .banner-right p{
  padding-inline: 4rem 0;
}
.banner-container-constrained.banner-bar.banner-trans-bar .img-wrapper {
  width: 100%;
  left: 0;
}
.banner-container-constrained.banner-bar.banner-trans-bar .img-wrapper:before{
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: white;
  opacity: .32;
}
.banner-container-constrained.banner-bar.banner-trans-bar.light .img-wrapper:before{
  background: var(--color-neutral-100);
}
.banner-container-constrained.banner-bar.banner-trans-bar.colour .img-wrapper:before{
  background: var(--color-main);
}
.banner-container-constrained.banner-bar.banner-trans-bar.dark .img-wrapper:before{
  background: var(--color-neutral-800);
}
.banner-container-constrained.banner-bar.banner-trans-bar .banner-right .img-wrapper:before{
  left: auto;
  right: 0;
}
.banner-container-constrained.banner-box-content li:after{
  display: none;
}
.banner-container-constrained.banner-box-content .banner-content{
  max-width: 102.4rem;
  padding: 3.2rem;
  position: relative;
  z-index: 1;
}
.banner-container-constrained.banner-box-content .banner-content::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  opacity: .5;
}
.banner-container-constrained.banner-box-content.light .banner-content::after{
  background: var(--color-neutral-100);
}
.banner-container-constrained.banner-box-content.colour .banner-content::after{
  background: var(--color-main);
}
.banner-container-constrained.banner-box-content.dark .banner-content::after{
  background: var(--color-neutral-800);
}
.banner-container-constrained.banner-float li:after{
  display: none;
}
.banner-container-constrained.banner-float .img-wrapper {
  width: 40%;
  max-width: 48rem;
  height: calc(100% - 6.4rem);
  position: absolute;
  top: 3.2rem;
  left: 60%;
  z-index: 0;
}
.banner-container-constrained.banner-float .banner-right .img-wrapper{
  left: auto;
  right: 60%;
}
.banner-container-constrained.banner-float .banner-details{
  justify-content: flex-start;
  text-align: left;
}
.banner-container-constrained.banner-float .banner-right .banner-details {
  justify-content: flex-end;
  text-align: right;
}
.banner-container-constrained.banner-float .banner-content{
  width: 60%;
  padding-right: 8rem;
  align-items: flex-start;
}
.banner-container-constrained.banner-float .banner-right .banner-content {
  align-items: flex-end;
  padding-inline: 8rem 0;
}
.banner-container-constrained .banner-next,
.banner-container-constrained .banner-previous,
.banner-container-constrained .banner-pause {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  display: flex !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 4rem;
  height: 4rem;
  text-decoration: none;
  transition: var(--animate-medium);
  z-index: 2;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: var(--shadow-medium);
}
/*.banner-container-constrained.dark .banner-next,
.banner-container-constrained.dark .banner-previous,
.banner-container-constrained.dark .banner-pause,
.banner-container-constrained.colour .banner-next,
.banner-container-constrained.colour .banner-previous,
.banner-container-constrained.colour .banner-pause{
  border-top: 2px solid white;
  border-left: 2px solid white;
}*/
.banner-container-constrained .banner-next:hover,
.banner-container-constrained .banner-previous:hover,
.banner-container-constrained .banner-pause:hover{
  background: var(--color-neutral-800);
}
.banner-container-constrained.dark  .banner-next:hover,
.banner-container-constrained.dark  .banner-previous:hover,
.banner-container-constrained.dark  .banner-pause:hover,
.banner-container-constrained.colour  .banner-next:hover,
.banner-container-constrained.colour  .banner-previous:hover,
.banner-container-constrained.colour  .banner-pause:hover {
  background: white;
}
.banner-container-constrained .banner-previous {
  right: 6.4rem;
}
.banner-container-constrained .banner-pause {
  right: 10rem;
  color: var(--color-neutral-800);
}
.banner-container-constrained.dark .banner-pause,
.banner-container-constrained.colour .banner-pause{
  color: white;
}
.banner-container-constrained:hover .banner-next,
.banner-container-constrained:hover .banner-previous,
.banner-container-constrained:hover .banner-pause {
  opacity: 1;
  cursor: pointer;
}
.banner-container-constrained .banner-next svg,
.banner-container-constrained .banner-previous svg {
  width: auto;
  height: 2rem;
  fill: var(--color-neutral-800);
  transition: var(--animate-medium);
}
.banner-container-constrained.dark .banner-next svg,
.banner-container-constrained.dark .banner-previous svg,
.banner-container-constrained.colour .banner-next svg,
.banner-container-constrained.colour .banner-previous svg{
  fill: white;
}
.banner-container-constrained .banner-next svg {
  transform: rotate(180deg);
}
.banner-container-constrained .banner-next:hover svg,
.banner-container-constrained .banner-previous:hover svg {
  fill: white;
}
.banner-container-constrained.dark .banner-next:hover svg,
.banner-container-constrained.dark .banner-previous:hover svg,
.banner-container-constrained.colour .banner-next:hover svg,
.banner-container-constrained.colour .banner-previous:hover svg {
  fill: var(--color-neutral-800);
}
@media screen and (max-width: 1264px){
  .banner-container-constrained.banner-float .img-wrapper{
    left: auto;
    right: 3.2rem;
    width: calc(40% - 3.2rem);
  }
  .banner-container-constrained.banner-float .banner-right .img-wrapper {
    left: 3.2rem;
    right: auto;
    width: calc(40% - 3.2rem);
  }
}
@media screen and (max-width: 1024px){
  .banner-container-constrained{
    height: auto;
    background: var(--dark);
  }
  .banner-container-constrained li::after {
    display: none;
  }
  .banner-container-constrained .img-wrapper {
    position: initial;
    aspect-ratio: 1366 / 768;
    width: 100%;
    height: auto;
  }
  .banner-container-constrained.banner-bar .img-wrapper{
    width: 100%;
    position: relative;
    left: 0;
  }
  .banner-container-constrained .banner-details,
  .banner-container-constrained .banner-left .banner-details,
  .banner-container-constrained .banner-right .banner-details {
    position: initial;
    transform: none;
    padding: 4.8rem 3.2rem;
    justify-content: center;
    text-align: center;
  }
  .banner-container-constrained.banner-bar .banner-right .banner-details,
  .banner-container-constrained.banner-bar .banner-details{
    justify-content: center;
    text-align: center;
    padding-top: 0;
    margin-top: -6.5rem;
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
  }
  .banner-container-constrained.banner-bar p{
    padding: 0;
  }
  .banner-container-constrained.banner-box-content .banner-content::after,
  .banner-container-constrained.banner-bar.banner-trans-bar .img-wrapper:before{
    display: none;
  }
  .banner-container-constrained .banner-details .banner-content,
  .banner-container-constrained .banner-left .banner-details .banner-content,
  .banner-container-constrained .banner-right .banner-details .banner-content {
    width: 100%;
    align-items: center;
  }
  .banner-container-constrained.banner-float li{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3.2rem;
  }
  .banner-container-constrained.banner-float .banner-right .img-wrapper,
  .banner-container-constrained.banner-float .img-wrapper{
    position: initial;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .banner-container-constrained.banner-float .banner-right .banner-details,
  .banner-container-constrained.banner-float .banner-details{
    justify-content: center;
    text-align: center;
    padding: 3.2rem 0 0;
  }
  .banner-container-constrained.banner-float .banner-right .banner-content,
  .banner-container-constrained.banner-float .banner-content{
    padding: 0;
  }
  .banner-container-constrained .banner-next,
  .banner-container-constrained .banner-previous,
  .banner-container-constrained .banner-pause {
    display: none !important;
  }
}
/* ----- Banner pagination ----- */
.banner_pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 1rem;
  color: hsla(0 0% 100% / 0.3);
  z-index: 1;
}
.banner_pagination>div {
  margin: 0 .3rem;
  cursor: pointer;
}
.banner_pagination>div:hover {
  color: hsla(0 0% 100% / 0.6);
}
.banner_pagination>.active {
  color: white;
}
@media screen and (max-width: 1024px) {
  .banner_pagination {
    display: none;
  }
}

/* -------- 10. Inner Header ---------- */
.inner_header{
  width: 100%;
  height: 42svh;
  min-height: 24rem;
  background: url(/assets/images/layout/inner_header.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.inner_header::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-main-700);
  opacity: .64;
}
/* ---------- 11. Forms ---------- */
form{
  display: flex;
  gap: var(--gap-16);
  flex-wrap: wrap;
}
form .full_width{
  width: 100%;
}
form .half_width{
  width: calc(50% - calc(var(--form-gap) / 2));
}
form .third_width{
  width: calc(50% - calc(var(--form-gap) * 2 / 3));
}
fieldset{
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
}
label{
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-neutral-500);
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 1;
}
textarea,
input{
  background: white;
  border: 2px solid var(--color-neutral-200);
  border-radius: .4rem;
  width: 100%;
  padding: 2.8rem .8rem .8rem;
}
textarea:focus,
textarea:focus-within,
textarea:focus-visible,
textarea:target,
input:focus,
input:focus-within,
input:focus-visible,
input:target{
  outline: none;
  border-color: var(--color-main);
  box-shadow: var(--shadow-medium);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-neutral-700) !important;
  background: white !important;
  color: var(--color-neutral-700) !important;
  -webkit-box-shadow: 0 0 0px 40rem white inset !important;
}
.form_holder .message {
  margin: 0 0 1.6rem 0;
}
.form_holder .form_error {
  background: var(--color-danger);
  color: white;
  padding: 1.6rem;
  margin: 0 0 1.6rem;
}
form .form-terms {
  font-size: 1.2rem;
  line-height: 1.1;
  margin: 0;
  width: 100%;
  text-align: right;
}
/* Custom Form Checkbox */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 32px;
  color: var(--color-neutral);
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 2.4rem;
  display: flex;
  align-items: center;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: var(--color-neutral-100);
  border: 2px solid var(--color-neutral-200);
  border-radius: .4rem;
}
.checkbox-container:hover input ~ .checkmark {
  border-color: var(--color-main);
}
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Custom Form Radio Button */

/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 32px;
  color: var(--color-neutral);
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 2.4rem;
  display: flex;
  align-items: center;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: var(--color-neutral-100);
  border: 2px solid var(--color-neutral-200);
  border-radius: 50%;
}
.radio-container:hover input ~ .radio-checkmark {
  border-color: var(--color-main);
}
.radio-container input:checked ~ .radio-checkmark {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}
.radio-container .radio-checkmark:after {
  top: 6px;
  left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/* Custom Form Switch */
.radio-container.switch-container,
.checkbox-container.switch-container{
  padding-left: 5.6rem;
}
.radio-container.switch-container .radio-checkmark,
.checkbox-container.switch-container .checkmark{
  width: 4.8rem;
  border-radius: 1.2rem;
}
.radio-container.switch-container .radio-checkmark::after,
.checkbox-container.switch-container .checkmark:after {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border: none;
  background: var(--color-neutral-400);
  top: 1px;
  left: 1px;
  transform: none;
  border-radius: 50%;
  transition: var(--animate-fast);
}
.radio-container.switch-container:hover input ~ .radio-checkmark:after,
.checkbox-container:hover input ~ .checkmark:after{
  background: var(--color-main);
}
.radio-container.switch-container input:checked ~ .radio-checkmark:after,
.checkbox-container.switch-container input:checked ~ .checkmark:after{
  background: var(--color-main-100);
  left: calc(100% - 1.9rem);
}
/* ----- Placeholder  ------ */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--color-neutral-800);
  opacity: 0.5;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--color-neutral-800);
  opacity: 0.5;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--color-neutral-800);
  opacity: 0.5;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--color-neutral-800);
  opacity: 0.5;
}

/* ----- Validation ----- */
/* Validating Entries */
.form_holder input:not([type="submit"]):focus:valid,
.form_holder textarea:focus:valid,
.form_holder select:focus:valid {
  box-shadow: 0px 0px 5px var(--color-alert);
}

/* Invalidating Entries */
.form_holder input:not([type="submit"]):focus:invalid,
.form_holder textarea:focus:invalid,
.form_holder select:focus:invalid {
  box-shadow: 0px 0px 5px var(--color-danger);
}

/* ----- Date Picker ----- */
.ui-datepicker .ui-datepicker-header {
  border: none;
  border-radius: 0;
  background-image: none;
  background: var(--color-main);
}

#ui-datepicker-div {
  padding: 0;
  border: 3px solid var(--color-main);
  border-radius: 0 0 .8rem .8rem;
}

.ui-datepicker .ui-datepicker-title {
  color: white;
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
  background-color: transparent !important;
  background-image: none;
  border: none;
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background: transparent;
  width: 2rem;
  height: 2rem;
  transform: rotate(45deg);
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev span {
  transform: rotate(-135deg);
}

.ui-datepicker .ui-datepicker-next:hover span,
.ui-datepicker .ui-datepicker-prev:not(.ui-state-disabled):hover span {
  background: white;
}

.ui-datepicker .ui-datepicker-next span::after,
.ui-datepicker .ui-datepicker-prev span::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-5px, -3px);
}

.ui-datepicker .ui-datepicker-next:hover span::after,
.ui-datepicker .ui-datepicker-prev:not(.ui-state-disabled):hover span::after {
  border-color: var(--color-main);
}

.ui-datepicker table {
  margin: 0;
}

.ui-datepicker tbody tr td {
  border: 0;
  padding: 0;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
}

.ui-datepicker tbody tr td:last-child {
  border-right: none;
}

.ui-datepicker tbody tr:last-child td {
  border-bottom: none;
}

.ui-datepicker th {
  padding: 5px 0;
  background: var(--color-neutral-50);
  border-right: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
}

.ui-datepicker th:last-child {
  border-right: none
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: none;
}

table.ui-datepicker-calendar span {
  border: none !important;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.ui-state-highlight,
.ui-widget-content {
  font-family: var(--font-body);
}

.ui-datepicker .ui-datepicker-title {
  text-transform: capitalize;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  background-image: none;
  color: white;
  background-color: #d5d1d1;
}

.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover {
  color: var(--color-neutral);
  background: var(--color-neutral-50);
}

.ui-state-disabled span,
.ui-widget-content .ui-state-disabled span,
.ui-widget-header .ui-state-disabled span {
  color: var(--color-neutral);
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border-color: var(--color-main);
  background-image: none;
  background-color: hsl(0 0% 100%);
}

td.ui-datepicker-current-day a {
  background: var(--color-main) !important;
  color: hsl(0 0% 100%) !important;
}

td.ui-datepicker-current-day a:hover {
  background: var(--color-neutral-800) !important;
  color: hsl(0 0% 100%) !important;
}

td.ui-datepicker-days-cell-over.ui-datepicker-current-day.ui-datepicker-today a.ui-state-default.ui-state-highlight.ui-state-active {
  color: hsl(0 0% 20%) !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: none;
  background: var(--color-main);
  color: white;
}


/* Custom Form Select */
.custom-select {
  position: relative;
  font-family: Arial;
}
.custom-select select {
  display: none;
}
.select-selected {
  background-color: var(--color-main);
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
}
.select-selected.select-arrow-active:after {
  top: calc(50% - .2rem);
}
.select-items div,
.select-selected {
  color: white;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}
.select-selected{
  user-select: none;
  color: var(--color-neutral-700);
  background: white;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--color-neutral-200);
  padding: 2.8rem .8rem .8rem;
  border-radius: .4rem;
  cursor: pointer;
  transition: var(--animate-medium);
}
.select-selected.select-arrow-active{
  border-radius: 5px 5px 0 0;
}
.select-selected::after{
  width: .8rem;
  height: .8rem;
  top: calc(50% - 7px);
  right: 16px;
  transition: all .35s ease-in-out;
  transform: rotate(45deg);
}
.select-selected.select-arrow-active::after{
  transform: rotate(225deg);
  top: calc(50% - .2rem);
}
.select-items {
  position: absolute;
  background-color: var(--color-main);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* ----- Custom File Uploader ----- */
.resume {
  text-align: center;
  padding: 3.2rem 1.6rem;
  background: var(--color-neutral-50);
  border-bottom: 3px solid var(--color-main);
}

.resume input[type="file"] {
  display: none;
}

.resume label {
  cursor: pointer;
  color: hsla(0 0% 0% / .35)
}

/* ---------- 12. Messages ---------- */

div.message_wrapper {
  margin: 0 0 1.6rem;
}

.content h2.hide_message {
  display: none;
}

.content h2.message_positive {
  width: 100%;
  color: white !important;
  background: var(--color-success) !important;
  padding: 1.6rem;
}

.content h2.message_negative {
  width: 100%;
  color: white !important;
  background: var(--color-danger) !important;
  padding: 1.6rem;
}

.message_wrapper a.message_link {
  color: white !important;
  text-decoration: underline;
}

.message_wrapper a.message_link:hover {
  text-decoration: none;
}

/* ---------- 13. Flex Columns Structure ---------- */

/* Flex */
.flex{
  display: flex;
  flex-wrap: wrap;
  --flex-gap: var(--gap-16);
  gap: var(--flex-gap);
}
.flex > *{
  width: 100%;
}
.flex.flex-6 > *{
  width: calc(calc(100% / 6) - calc(var(--flex-gap) * 5 / 6));
}
.flex.flex-5 > *{
  width: calc(calc(100% / 5) - calc(var(--flex-gap) * 4 / 5));
}
.flex.flex-4 > *{
  width: calc(calc(100% / 4) - calc(var(--flex-gap) * 3 / 4));
}
.flex.flex-3 > *{
  width: calc(calc(100% / 3) - calc(var(--flex-gap) * 2 / 3));
}
.flex.flex-2 > *{
  width: calc(calc(100% / 2) - calc(var(--flex-gap) / 2));
}
@media screen and (max-width: 1024px){
  .flex.flex-6 > *,
  .flex.flex-5 > *{
    width: calc(calc(100% / 3) - calc(var(--flex-gap) * 2 / 3));
  }
  .flex.flex-4 > *,
  .flex.flex-3 > *{
    width: calc(calc(100% / 2) - calc(var(--flex-gap) / 2));
  }
  .flex.flex-2 > *{
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .flex.flex-6 > *,
  .flex.flex-5 > *{
    width: calc(calc(100% / 2) - calc(var(--flex-gap) / 2));
  }
  .flex.flex-3 > *{
    width: 100%;
  }
}
@media screen and (max-width: 320px){
  .flex.flex-4 > *{
    width: 100%;
  }
}

/* ---------- 14. Grid Column Structure ---------- */

/* Grid */
.grid{
  --grid-gap: var(--gap-16);
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(12, 1fr);
}
.col-1{
  grid-column: span 1;
}
.col-2{
  grid-column: span 2;
}
.col-3{
  grid-column: span 3;
}
.col-4{
  grid-column: span 4;
}
.col-5{
  grid-column: span 5;
}
.col-6{
  grid-column: span 6;
}
.col-7{
  grid-column: span 7;
}
.col-8{
  grid-column: span 8;
}
.col-9{
  grid-column: span 9;
}
.col-10{
  grid-column: span 10;
}
.col-11{
  grid-column: span 11;
}
.col-12{
  grid-column: span 12;
}
@media screen and (max-width: 1024px){
  .grid{
    grid-template-columns: repeat(8, 1fr);
  }
  .col-1{
    grid-column: span 1;
  }
  .col-2 {
    grid-column: span 2;
  }
  .col-3,
  .col-4 {
    grid-column: span 4;
  }
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11 {
    grid-column: span 8;
  }
}
@media screen and (max-width: 768px){
  .grid{
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-12);
  }
  .col-1{
    grid-column: span 1;
  }
  .col-2,
  .col-3 {
    grid-column: span 2;
  }

  .col-4 {
    grid-column: span 4;
  }
}
@media screen and (max-width: 520px){
  .col-1{
    grid-column: span 2;
  }
  .col-2,
  .col-3 {
    grid-column: span 4;
  }
}

/* ---------- 15. Card & Box Base Styles ---------- */

/* Card Styles */
.card img{
  width: 100%;
  height: auto;
}
.card .content-wrapper{
  padding-top: 1.6rem;
}
.card h3{
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}
.card h3 a{
  text-decoration: none;
}
.colour .card h3 a{
  color: white;
}
.colour .card h3 a:hover{
  color: var(--color-neutral-800);
}
.dark .card h3 a{
  color: white;
}
.dark .card h3 a:hover{
  color: var(--color-neutral-800);
}
.card a.button{
  margin: 0;
}
/* Shadow Card */
.shadow-card .card{
  background: white;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  border-radius: 1.6rem;
}
.light .shadow-card .card{
  background: white;
}
.colour .shadow-card .card{
  background: var(--color-main-500);
}
.dark .shadow-card .card{
  background: var(--color-neutral);
}
.shadow-card .card .content-wrapper{
  padding: 1.6rem;
}
/* Inline Card */
.inline-card .card{
  display: flex;
  border: 2px solid var(--color-neutral-100);
  overflow: hidden;
  border-radius: 1.6rem;
}
.inline-card .card .img-wrapper{
  width: 40%;
  height: 100%;
  border-right: 2px solid var(--color-neutral-100);
}
.light .inline-card .card{
  background: white;
  border-color: var(--color-neutral-200);
}
.inline-card .card .img-wrapper{
  border-color: var(--color-neutral-200);
}
.colour .inline-card .card,
.colour .inline-card .card .img-wrapper{
  border-color: var(--color-accent-300);
}
.dark .inline-card .card,
.dark .inline-card .card .img-wrapper{
  border-color: var(--color-neutral-600);
}
.inline-card .card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inline-card .card .content-wrapper{
  width: 60%;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.dark .inline-card .card h3 a:hover{
  color: var(--color-main);
}
/* .inline-card .card p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 640px){
  .inline-card .card{
    flex-direction: column;
  }
  .inline-card .card .img-wrapper{
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-right: none;
    border-bottom: 2px solid var(--color-neutral-300);
  }
  .inline-card .card .content-wrapper{
    width: 100%;
  }
} */
/* Icon Card */
.icon-card .card{
  background: white;
  position: relative;
  margin-top: 4rem;
  padding: 6.4rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-medium);
  border-radius: 1.6rem;
}
.light .icon-card .card{
  margin-top: 4rem;
  padding: 6.4rem 1.6rem 1.6rem;
  background: white;
}
.colour .icon-card .card{
  margin-top: 4rem;
  padding: 6.4rem 1.6rem 1.6rem;
  background: var(--color-main-500);
}
.dark .icon-card .card{
  margin-top: 4rem;
  padding: 6.4rem 1.6rem 1.6rem;
  background: var(--color-neutral);
}
.icon-card .card .img-wrapper{
  width: 9.6rem;
  height: 9.6rem;
  border-radius: 50%;
  position: absolute;
  top: -4.8rem;
  left: 50%;
  transform: translate(-50%, 0);
  border: 2px solid var(--color-main);
  overflow: hidden;
}
.colour .icon-card .card .img-wrapper,
.dark .icon-card .card .img-wrapper{
  border-color: white;
}
.icon-card .card .img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon-card .card .content-wrapper{
  padding: 0;
  text-align: center;
}
/* Box Styles */
.box-list .card{
  position: relative;
  overflow: hidden;
}
.box-list .card::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-neutral-800);
  opacity: .4;
  transition: var(--animate-medium);
  z-index: 0;
}
.box-list .img-wrapper{
  width: 100%;
  height: 100%;
}
.box-list .img-wrapper img{
  height: 100%;
  object-fit: cover;
}
.box-list .card:hover::after{
  opacity: .8;
}
.box-list .card .content-wrapper{
  padding: 0;
}
.box-list .card h3,
.box-list .card h3 a,
.box-list .card p{
  color: white;
}
.box-list .card h3{
  margin: 0;
}
.box-list .card h3 a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 1;
}
.box-list .card h3 a:hover{
  color: white;
}
.box-list .card p{
  display: none;
}
.box-list .card .button{
  display: none;
}
.animated-box-list .card{
  position: relative;
  overflow: hidden;
}
.animated-box-list .card::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-neutral-800);
  opacity: .4;
  transition: var(--animate-medium);
  z-index: 0;
}
.animated-box-list .card:hover::after{
  opacity: .8;
}
.animated-box-list .img-wrapper{
  width: 100%;
  height: 100%;
}
.animated-box-list .img-wrapper img{
  height: 100%;
  object-fit: cover;
}
.animated-box-list .card .content-wrapper{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 1;
}
.animated-box-list .card h3,
.animated-box-list .card h3 a,
.animated-box-list .card h3 a:hover,
.animated-box-list .card p{
  color: white;
}
.animated-box-list .card h3{
  margin: 0;
  transition: var(--animate-medium);
}
.animated-box-list .card:hover h3{
  margin: 0 0 1.2rem;
}
.animated-box-list .card p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 0;
  opacity: 0;
  margin: 0;
  transition: var(--animate-medium);
}
.animated-box-list .card:hover p{
  height: calc(1.6rem * 1.4 * 3);
  opacity: 1;
  margin: 0 0 1.2rem;
}
.animated-box-list .card .superbutton{
  height: 0;
  opacity: 0;
  padding-top: 0;
  margin-top: 0;
  background: white;
  color: var(--color-neutral);
}
.animated-box-list .card:hover .superbutton{
  height: 4rem;
  opacity: 1;
  padding-top: .2rem;
}
.animated-box-list .card .superbutton:hover{
  background: var(--color-main);
  color: white;
}
/* ---------- 16. Base Strip Styles ---------- */
/* Image Background */
.img-bg{
  position: relative;
  overflow: hidden;
}
.img-bg .img-wrapper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img-bg .img-wrapper::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  opacity: .64;
}
.img-bg .img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-bg .content{
  position: relative;
  z-index: 2;
}
.img-bg.colour .img-wrapper::after{
  background: var(--color-main);
}
.img-bg.dark .img-wrapper::after{
  background: var(--color-neutral-800);
}
/* Image Float */
.img-float .content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.img-float .img-wrapper{
  max-width: 40rem;
  width: 100%;
}
.img-float .img-wrapper img{
  width: 100%;
  height: auto;
}
.img-float .editable_content{
  width: calc(100% - 48rem);
}
.img-float.img-right .content{
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .img-float .content,
  .img-float.img-right .content{
    flex-direction: column;
    gap: 4rem;
  }
  .img-float .editable_content{
    width: 100%;
  }
}
/* Image Fade */
.img-fade{
  position: relative;
}
.img-fade .img-wrapper{
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.img-fade .img-wrapper::after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, transparent 0%, white 99%, white 100%);
}
.img-fade .img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-fade .content{
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.img-fade .editable_content{
  width: 60%;
}
.img-fade.img-right .img-wrapper{
  left: auto;
  right: 0;
}
.img-fade .img-wrapper::after{
  background: linear-gradient(to left, transparent 0%, white 99%, white 100%);
}
.img-fade.img-right .content{
  justify-content: flex-start;
}
.img-fade.colour .img-wrapper::after{
  background: linear-gradient(to right, transparent 0%, var(--color-main) 99%, var(--color-main) 100%);
}
.img-fade.img-right.colour .img-wrapper::after{
  background: linear-gradient(to left, transparent 0%, var(--color-main) 99%, var(--color-main) 100%);
}
.img-fade.dark .img-wrapper::after{
  background: linear-gradient(to right, transparent 0%, var(--color-neutral-800) 99%, var(--color-neutral-800) 100%);
}
.img-fade.img-right.dark .img-wrapper::after{
  background: linear-gradient(to left, transparent 0%, var(--color-neutral-800) 99%, var(--color-neutral-800) 100%);
}
@media screen and (max-width: 1024px){
  .img-fade{
    padding-top: 32rem; 
  }
  .img-fade .img-wrapper{
    width: 100%;
    height: 32rem;
  }
  .img-fade .editable_content{
    width: 100%;
  }
  .img-fade .img-wrapper::after,
  .img-fade .img-wrapper::after{
    background: linear-gradient(to bottom, transparent 0%, white 99%, white 100%);
  }
  .img-fade.colour .img-wrapper::after,
  .img-fade.img-right.colour .img-wrapper::after{
    background: linear-gradient(to bottom, transparent 0%, var(--color-main) 99%, var(--color-main) 100%);
  }
  .img-fade.dark .img-wrapper::after,
  .img-fade.img-right.dark .img-wrapper::after{
    background: linear-gradient(to bottom, transparent 0%, var(--color-neutral-800) 99%, var(--color-neutral-800) 100%);
  }
}
/* Strip List */
.strip-list-wrapper{
  padding: 0;
}
.strip-list-wrapper .strip-list{
  position: relative;
  padding: 9.6rem 3.2rem;
}
.strip-list:nth-of-type(2n){
  background: var(--color-neutral-50);
}
.colour .strip-list:nth-of-type(2n){
  background: var(--color-main-500);
}
.dark .strip-list:nth-of-type(2n){
  background: var(--color-neutral);
}
.strip-list .img-wrapper{
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.strip-list:nth-of-type(2n) .img-wrapper{
  left: auto;
  right: 0;
}
.strip-list .img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip-list .content{
  display: flex;
  justify-content: flex-end;
}
.strip-list:nth-of-type(2n) .content{
  justify-content: flex-start;
}
.strip-list .editable_content{
  width: calc(60% - 8rem);
}
@media screen and (max-width: 1024px){
  .strip-list-wrapper .strip-list{
    padding: 36.8rem 2.4rem 4.8rem;
  }
  .strip-list .img-wrapper{
    width: 100%;
    height: 32rem;
  }
  .strip-list .editable_content{
    width: 100%;
  }
}

/* ---------- 17. Animations ---------- */

.fadeFromLeft {
  opacity: 0;
  transform: translateX(-10rem);
  transition: 0.5s ease-in-out;
}

.fadeFromRight {
  opacity: 0;
  transform: translateX(10rem);
  transition: 0.5s ease-in-out;
}

.fadeFromTop {
  opacity: 0;
  transform: translateY(-10rem);
  transition: 0.5s ease-in-out;
}

.fadeFromBottom {
  opacity: 0;
  transform: translateY(10rem);
  transition: 0.5s ease-in-out;
}

.fadeFromLeft.show,
.fadeFromRight.show,
.fadeFromTop.show,
.fadeFromBottom.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 18. Swipebox Styles ---------- */

.swipebox_full a img {
  width: 100%;
  transition: var(--animate-medium);
}

.swipebox_full a img:hover {
  opacity: 0.5;
}

/* ---------- 19. Sub Page Menu ----------  */

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

ul.pages li a {
  background: var(--color-main);
  color: hsl(0 0% 100%);
  text-decoration: none;
  display: block;
  padding: 10px;
  text-align: center;
  font-weight: 700;
}

ul.pages li a:hover {
  background: var(--color-neutral-800);
}

/* ---------- 20. Contact ---------- */

ul.contact-list {
  list-style: none;
  margin: 0;
}

ul.contact-list li a {
  text-decoration: none;
}

ul.contact-list li a:hover {
  color: var(--color-main);
}
.dark ul.contact-list li a:hover,
.colour ul.contact-list li a:hover{
  color: var(--color-accent-200);
}

/* ---------- 21. Contact Multi Location ----------*/

.multi-loc {
  margin: 0 0 3.2rem;
}

.multi-loc iframe {
  aspect-ratio: 6 / 3.5;
  width: 100%;
  height: auto;
}

.multi-loc h2 {
  font-size: 2.2rem;
  padding: 0 0 .8rem;
  margin: 0 0 .8rem;
  border-bottom: 2px solid hsla(0 0% 0% / .1);
}

.multi-loc ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem var(--gap-16);
}

.multi-loc ul li {
  width: calc(50% - calc(var(--gap-16) / 2));
}

.multi-loc ul li.full-width {
  width: 100%;
}

.multi-loc strong {
  display: block;
  color: var(--color-neutral-800);
}

.multi-loc address {
  font-style: normal;
}

.multi-loc a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .multi-loc ul li {
    width: 100%;
  }
}

/* ---------- 22. Map ---------- */

.map-holder {
  height: 42rem;
  overflow: hidden;
}

.map-holder iframe {
  height: 100%;
  width: 100%;
}

/* ---------- 23. Social Media ---------- */

.social_media ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: var(--gap-16);
}

.social_media ul li {
  margin: 0;
  list-style: none;
}

.social_media ul li a {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  color: white;
  background: var(--color-main);
  border-radius: 50%;
  transition: var(--animate-medium);
}

.social_media ul li a:hover {
  background: var(--color-neutral-800);
}

.social_media ul li a i {
  font-size: 2.2rem;
  line-height: 1;
}

/* ---------- 24. Toggler ---------- */

h4.toggle,
h4.toggle.active.open {
  color: hsl(0 0% 20%);
  background: url(/assets/images/layout/toggle.png) no-repeat 10px 11px;
  padding: 8px 0 8px 35px;
  margin: 10;
  cursor: pointer;
}

h4.toggle.active,
h4.toggle.open {
  background-position: 10px -39px;
}

h4.toggle:hover,
h4.toggle.active.open:hover {
  background-position: 10px -39px;
}

div.toggler {
  border-top: none;
  margin: 0;
  overflow: hidden;
  padding: 0 0 0 24px;
}

div.toggler hr {
  border-top: 1px solid #f0f0f0;
}

div.toggler p {
  margin: 0 0 1.2rem;
  padding: 0;
}

.faq-wrapper .toggler ul,
.faq-wrapper .toggler ol {
  margin: 0 0 1.2rem 2rem;
}

div.toggler>*:last-child {
  margin-bottom: 0;
}

/* ---------- 25. Products ---------- */

/* ----- Search ----- */
form.search_form {
  display: flex;
  margin: 0 0 3.2rem;
}

form.search_form input.search_input {
  width: calc(100% - 16px);
  border-radius: .4rem 0 0 .4rem;
  border: 1px solid hsla(0 0% 0% / .15);
  border-radius: none;
  background: hsla(0 0% 0% / .05);
  padding: .5rem .8rem;
}

form.search_form input.superbutton {
  width: 16rem;
  border-radius: 0 .4rem .4rem 0;
  margin: 0;
}

/* ----- Product List ----- */
.product-list .card .product-number {
  font-size: 1rem;
  line-height: 1;
  margin: 0 0 .4rem;
}

.product-list .card h3 {
  margin: 0;
}

.product-list .card p {
  margin: 1.6rem 0;
}

.price-wrapper {
  font-size: 1.4rem;
}

.price-wrapper span .strike {
  text-decoration: line-through;
  color: hsl(0, 0%, 70%);
}

form.add_to_cart {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

form.add_to_cart .cart_price_option label,
form.add_to_cart .cart_quantity label {
  display: block;
  font-size: 1.2rem;
}

form.add_to_cart .cart_price_option select,
form.add_to_cart .cart_quantity input {
  border-radius: 0;
  border: none;
  background: var(--color-neutral-50);
  border-bottom: 3px solid var(--color-main);
  width: 100%;
  padding: .5rem .8rem;
  margin: 0 0 .8rem;
}

form.add_to_cart a.add_to_cart {
  width: 100%;
  padding-inline: .8rem;
}

/* ----- Product Page ----- */
.product-page .content {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 4.8rem;
}

.product_highlight {
  width: 100%;
  max-width: 300px;
  margin-bottom: 1.6rem;
  background: white;
  box-shadow: var(--shadow-medium);
  border-radius: 1.6rem;
  overflow: hidden;
}

.product_highlight .alert {
  color: var(--color-neutral);
  margin: 0;
}

.product_highlight .strike {
  text-decoration: line-through;
}

.product_highlight .sale {
  color: var(--color-neutral);
}

.product_highlight .holder {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.product_highlight .holder>a {
  width: calc(80% - 5px);
  text-decoration: none;
  text-align: center;
}

.product_highlight .holder .img_select {
  width: 20%;
  display: flex;
  justify-content: left;
  flex-direction: column;
}

.product_highlight .holder #img_title {
  font-style: normal;
  font-weight: 500;
}

.product_highlight .holder .img_select figure {
  width: 100%;
  margin: 0px 5px 5px 0px;
  cursor: pointer;
}

.product_highlight .holder .img_select>figure.active {
  box-shadow: 0px 0px 4px 0px #333;
}

.product_highlight .holder .img_select figure img {
  width: 100%;
}

.product_highlight form.add_to_cart {
  padding: 1.6rem;
}

.product_highlight form.add_to_cart a.superbutton {
  margin: 0;
  padding-inline: .8rem;
}

.product-page .content .editable_content {
  width: calc(100% - 34.8rem);
}

.product-page .content .editable_content .product_number {
  font-size: 1.4rem;
  line-height: 1;
  margin: 0 0 .4rem;
}

@media screen and (max-width: 1024px) {
  .product-page .content .editable_content {
    width: 100%;
  }
}

/* ---------- 26. Modal Styles ---------- */

summary.btn {
  cursor: pointer;
  display: inline-block;
  background-color: var(--color-main);
  padding: 5px 20px;
  border-radius: 10px;
  margin: 10px 0;
}

.details-with-modal summary::-webkit-details-marker {
  display: none;
}

details-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  max-height: 80vh;
  overflow: scroll;
  max-width: 90vw;
  width: 448px;
  background-color: hsl(0 0% 100%);
}

.details-with-modal[open]>summary:before {
  content: " ";
  background: hsla(0 0% 0% / 0.3);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.modal-header {
  padding: 20px;
  background-color: var(--color-main);
  border-bottom: 1px solid hsl(0, 0%, 94%);
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  border-top: 1px solid hsl(0, 0%, 94%);
  padding: 20px;
  text-align: center;
}

.modal-footer button {
  width: 95%;
  display: inline-block;
  background-color: var(--color-main);
  font-size: 1rem;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.modal-footer button:hover {
  background-color: var(--color-neutral);
  color: var(--color-neutral);
  transition: 0.3s ease;
}

/* ---------- 27. FAQs ---------- */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.faq-wrapper .toggle_faq {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  padding-left: 2.4rem;
  position: relative;
}

.faq-wrapper .toggle_faq .icon {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  transition: var(--animate-medium);
}

.faq-wrapper .toggle_faq.active .icon {
  transform: rotate(135deg);
}

.faq-wrapper .toggle_faq .icon i {
  width: 1.6rem;
  height: .2rem;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-wrapper h3.toggle_faq .icon i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-wrapper .toggler {
  padding: .8rem 1.6rem 1.6rem 2.4rem;
}

/* ---------- 28. Events ---------- */

.events-list {
  margin-top: 3.2rem;
}

.events-list .card ul {
  list-style: none;
  border-block: 2px solid hsla(0 0% 0% / .1);
  padding: .4rem 0;
  margin: 0 0 .8rem;
}

.events-list .card ul li {
  font-size: 1.4rem;
}

.event-page h1 {
  margin: 0;
}

.event-page .item-wrapper {
  margin-top: 3.2rem;
}

ul.event-details {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-block: 2px solid hsla(0 0% 0% / .1);
  margin: 2.4rem 0;
  padding: .4rem 0;
}

ul.event-details li {
  border-right: 2px solid hsla(0 0% 0% / .1);
  padding: .4rem .8rem;
}

ul.event-details li:last-child {
  border-right: none;
}

ul.event-details li i {
  color: var(--color-main);
  margin: 0 .4rem 0 0;
}

ul.event-details li.register-btn a.superbutton {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  ul.event-details li.register-btn {
    display: none;
  }
}

.reg-active {
  display: flex;
  gap: 3.2rem;
  position: relative;
  align-items: flex-start;
  flex-wrap: wrap;
}

.reg-content {
  width: calc(100% - 33.2rem);
  padding-right: 3.2rem;
  border-right: 2px solid hsla(0 0% 0% / .1);
}

.reg-form {
  width: 30rem;
  position: sticky;
  top: 100px;
}

@media screen and (max-width: 1024px) {
  .reg-content {
    width: 100%;
    padding: 0 0 3.2rem;
    border-right: none;
    border-bottom: 2px solid hsla(0 0% 0% / .1);
  }

  .reg-form {
    position: initial;
    width: 100%;
  }

  ul.event-details {
    flex-direction: column;
    padding: 0;
  }

  ul.event-details li {
    width: 100%;
    padding: .8rem;
    border-right: none;
    border-bottom: 2px solid hsla(0 0% 0% / .1);
  }

  ul.event-details li:last-child {
    border-bottom: none;
  }
}

/* ---------- 29. Categories ---------- */

.categories-page .content {
  display: flex;
  flex-direction: row-reverse;
}

.categories-page .flex {
  width: calc(100% - 32rem);
}

.categories-page aside.categories {
  width: 32rem;
  padding: 0 2.4rem 0 0;
  margin: 0 2.4rem 0 0;
  border-right: 2px solid hsla(0 0% 0% / .1);
}

.categories-page aside.categories h2 {
  font-size: 2.4rem;
  margin: 0 0 .8rem;
  padding: 0 0 .8rem;
  border-bottom: 2px solid hsla(0 0% 0% / .1);
}

.categories-page aside.categories ul {
  list-style: none;
  display: flex;
  gap: .8rem;
  flex-direction: column;
}

.categories-page aside.categories ul li {
  padding-bottom: .8rem;
  border-bottom: 1px solid hsla(0 0% 0% / .1);
  cursor: pointer;
}

.categories-page aside.categories ul li:last-child {
  border: none;
}

.categories-page aside.categories ul li.active {
  color: var(--color-neutral-800);
  font-weight: 600;
}

@media screen and (max-width: 1180px) {
  .categories-page .flex-three>* {
    width: calc(50% - .8rem);
  }
}

@media screen and (max-width: 1024px) {
  .categories-page .content {
    flex-direction: column-reverse;
  }

  .categories-page aside.categories {
    width: 100%;
    padding: 0;
    border-right: none;
    border-bottom: 2px solid hsla(0 0% 0% / .1);
    margin: 0 0 2.4rem;
  }

  .categories-page .flex {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .categories-page .flex-three>* {
    width: 100%;
  }
}

/* ---------- 30. Pop Up ---------- */

.cta-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: hsla(0 0% 0% / .5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-popup .pop-up {
  background: white;
  padding: 3.2rem;
  border-radius: 1.6rem 0 1.6rem 1.6rem;
  box-shadow: var(--shadow-medium);
  width: 48rem;
  position: relative;
  text-align: center;
}

.cta-popup .pop-up .close-popup {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: -12px;
  right: -12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  border-radius: 50%;
  transition: var(--animate-medium);
  cursor: pointer;
}

.cta-popup .pop-up .close-popup:hover {
  background: var(--color-neutral-800);
}

.cta-popup .pop-up h3 {
  font-size: 3.2rem;
  margin: 0 0 1.6rem;
}

.cta-popup .pop-up .superbutton {
  margin: 1.6rem 0 0;
}

/* ---------- 30. Pop Up ---------- */

.page-details.h6 {
  font-size: 1.6rem;
  line-height: 1;
  margin: 0 0 1.6rem;
  color: var(--color-neutral);
}

.page-details.h6 a {
  color: var(--color-neutral);
  text-decoration: none;
}

.page-details.h6 a:hover {
  color: var(--color-main);
}

/* ---------- 31. Logo Slider ---------- */

#logo-link-slider {
  overflow: hidden;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#logo-link-slider .logo-link-slider-wrapper {
  display: block;
  width: 100%;
  position: relative;
}

#logo-link-slider .logo-link-slider-wrapper ul {
  position: relative;
  left: 0px;
  display: flex;
  justify-content: space-around;
  list-style: none;
}

#logo-link-slider .logo-link-slider-wrapper ul li {
  display: inline-block;
  position: relative;
  margin: 0px auto;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
}

#logo-link-slider .logo-link-slider-wrapper ul li a img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
  opacity: 0.65;
  width: 100%;
}

.logo_link_static {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.logo_link_static a img {
  width: 200px;
}

/* -- Move This -- */
.message_negative {
  background: var(--color-danger);
  padding: 1.6rem;
  border-radius: 1.6rem;
  color: white;
}

.message_wrapper p {
  margin: 0;
}



/* Custom Form Checkbox */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 32px;
  color: var(--color-neutral);
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 2.4rem;
  display: flex;
  align-items: center;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: var(--color-neutral-100);
  border: 2px solid var(--color-neutral-200);
  border-radius: .4rem;
}
.checkbox-container:hover input ~ .checkmark {
  border-color: var(--color-main);
}
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Custom Form Radio Button */
/* The container */
.radio-container {
  display: block;
  position: relative;
  padding-left: 32px;
  color: var(--color-neutral);
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 2.4rem;
  display: flex;
  align-items: center;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: var(--color-neutral-100);
  border: 2px solid var(--color-neutral-200);
  border-radius: 50%;
}
.radio-container:hover input ~ .radio-checkmark {
  border-color: var(--color-main);
}
.radio-container input:checked ~ .radio-checkmark {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}
.radio-container .radio-checkmark:after {
  top: 6px;
  left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/* Custom Form Switch */
.radio-container.switch-container,
.checkbox-container.switch-container{
  padding-left: 5.6rem;
}
.radio-container.switch-container .radio-checkmark,
.checkbox-container.switch-container .checkmark{
  width: 4.8rem;
  border-radius: 1.2rem;
}
.radio-container.switch-container .radio-checkmark::after,
.checkbox-container.switch-container .checkmark:after {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  border: none;
  background: var(--color-neutral-400);
  top: 1px;
  left: 1px;
  transform: none;
  border-radius: 50%;
  transition: var(--animate-fast);
}
.radio-container.switch-container:hover input ~ .radio-checkmark:after,
.checkbox-container:hover input ~ .checkmark:after{
  background: var(--color-main);
}
.radio-container.switch-container input:checked ~ .radio-checkmark:after,
.checkbox-container.switch-container input:checked ~ .checkmark:after{
  background: var(--color-main-100);
  left: calc(100% - 1.9rem);
}
/* Custom Form Select */
.custom-select {
  position: relative;
  font-family: Arial;
}
.custom-select select {
  display: none;
}
.select-selected {
  background-color: var(--color-main);
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
}
.select-selected.select-arrow-active:after {
  top: calc(50% - .2rem);
}
.select-items div,
.select-selected {
  color: white;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}
.select-selected{
  user-select: none;
  color: var(--color-neutral-700);
  background: white;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--color-neutral-200);
  padding: 2.8rem .8rem .8rem;
  border-radius: .4rem;
  cursor: pointer;
  transition: var(--animate-medium);
}
.select-selected.select-arrow-active{
  border-radius: 5px 5px 0 0;
}
.select-selected::after{
  width: .8rem;
  height: .8rem;
  top: calc(50% - 7px);
  right: 16px;
  transition: all .35s ease-in-out;
  transform: rotate(45deg);
}
.select-selected.select-arrow-active::after{
  transform: rotate(225deg);
  top: calc(50% - .2rem);
}
.select-items {
  position: absolute;
  background-color: var(--color-main);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* ----- Strip Colours ----- */
/* Light */
.light{
  background: var(--color-neutral-50);
}
/* Dark */
.dark{
  background: var(--color-neutral-800);
}
.dark :is(.h0, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, ul li, ol li, p, pre) {
  color: white;
}
.dark a{
  color: white;
}
.dark a:hover{
  color: var(--color-main);
}
.dark hr{
  border-color: hsla(0 0% 100% / .16);
}
.dark .button,
.dark .superbutton{
  background: var(--color-accent);
  color: white;
}
.dark .button:hover,
.dark .superbutton:hover{
  background: white;
  color: var(--color-neutral-800);
}
.dark .btn-outline{
  border-color: white;
  background: none;
  color: white;
}
.dark .btn-outline:hover{
  background: white;
  color: var(--color-neutral-800);
}
.dark .btn-icon img{
  filter: brightness(0);
  transition: var(--animate-medium);
}
.dark .btn-icon:hover img{
  filter: brightness(0) invert(1);
}
.dark .btn-circle{
  background: none;
  color: white;
  border-color: white;
}
.dark .btn-circle:hover{
  color: var(--color-neutral-800);
  background: none;
}
.dark .btn-circle::before{
  background: white;
}
.dark .btn-circle::after{
  filter: brightness(0);
}
.dark .btn-box-icon{
  border-color: white;
  background: none;
  color: white;
}
.dark .btn-box-icon:hover{
  background: none;
  color: var(--color-neutral-800);
}
.dark .btn-box-icon::before{
  filter: brightness(0) invert(1);
}
.dark .btn-box-icon:hover::before{
  filter: brightness(0);
}
.dark .btn-box-icon::after{
  background: white;
}
.dark a.text-link{
  color: white;
}
.dark a.text-link::before{
  background: white;
}
.dark label{
  color: hsla(0 0% 100% / .72);
}
.dark .select-selected,
.dark textarea, 
.dark input[type="text"]{
  background: var(--color-neutral-700);
  border-color: var(--color-neutral-600);
  color: white;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: white !important;
  background: var(--color-neutral-700) !important;
  color: white !important;
  -webkit-box-shadow: 0 0 0px 40rem var(--color-neutral-700) inset !important;
}
.dark .select-selected::after{
  border-color: white;
}
.dark .checkbox-container{
  color: white;
}
.dark .radio-checkmark,
.dark .checkmark{
  background: hsla(0 0% 100% / .16);
  border-color: hsla(0 0% 100% / .16);
}
.dark .radio-container:hover input ~ .radio-checkmark,
.dark .checkbox-container:hover input ~ .checkmark{
  border-color: white;
}
.dark .checkbox-container input:checked ~ .checkmark{
  background-color: white;
  border-color: white;
}
.dark .checkbox-container:hover .checkmark:after{
  background: none;
}
.dark .checkbox-container .checkmark:after{
  border: solid var(--color-main);
  border-width: 0 2px 2px 0;
}
.dark .radio-container.switch-container .radio-checkmark::after,
.dark .checkbox-container.switch-container .radio-checkmark::after,
.dark .checkbox-container.switch-container .checkmark:after{
  border: none;
  background: hsla(0 0% 100% / .32);
}
.dark .radio-container.switch-container:hover .radio-checkmark::after,
.dark .checkbox-container.switch-container:hover .radio-checkmark::after,
.dark .checkbox-container.switch-container:hover .checkmark:after{
  background: white;
}
.dark .radio-container.switch-container input:checked ~ .radio-checkmark:after,
.dark .checkbox-container.switch-container input:checked ~ .checkmark:after{
  background: var(--color-main);
}
.dark .radio-container input:checked ~ .radio-checkmark{
  border-color: white;
  background: white;
}
.dark .radio-container .radio-checkmark:after{
  background: var(--color-main);
}
.colour{
  background: var(--color-main);
}
.colour :is(.h0, h1, .h1, h2, .h2, h3, .h3, h4, .h4, ul li, ol li, p, pre) {
  color: white;
}
.colour :is(h5, .h5, h6, .h6) {
  color: var(--color-accent-300);
}
.colour a{
  color: white;
}
.colour a:hover{
  color: var(--color-accent-200);
}
.dark a{
  color: white;
}
.dark a:hover{
  color: var(--color-accent-200);
}
.colour hr{
  border-color: hsla(0 0% 100% / .16);
}
.colour .button,
.colour .superbutton{
  background: var(--color-accent);
  color: white;
}
.colour .button:hover,
.colour .superbutton:hover{
  background: white;
  color: var(--color-neutral-800);
}
.colour .btn-outline{
  border-color: white;
  background: none;
  color: white;
}
.colour .btn-outline:hover{
  background: white;
  color: var(--color-main);
}
.colour .btn-icon img{
  filter: none;
  transition: var(--animate-medium);
}
.colour .btn-icon:hover img{
  filter: brightness(0) invert(1);
}
.colour .btn-circle{
  background: none;
  color: white;
  border-color: white;
}
.colour .btn-circle:hover{
  color: var(--color-main);
}
.colour .btn-circle::before{
  background: white;
}
.colour .btn-circle::after{
  filter: none;
}
.colour .btn-box-icon{
  border-color: white;
  background: none;
  color: white;
}
.colour .btn-box-icon:hover{
  background: none;
  color: var(--color-main);
}
.colour .btn-box-icon::before{
  filter: brightness(0) invert(1);
}
.colour .btn-box-icon:hover::before{
  filter: none;
}
.colour .btn-box-icon::after{
  background: white;
}
.colour a.text-link{
  color: white;
}
.colour a.text-link::before{
  background: white;
}
.colour label{
  color: hsla(0 0% 100% / .72);
}
.colour .select-selected,
.colour textarea, 
.colour input{
  background: #751722;
  border-color: #802933;
  color: white;
}
.colour textarea:focus,
.colour textarea:focus-within,
.colour textarea:focus-visible,
.colour textarea:target,
.colour input:focus,
.colour input:focus-within,
.colour input:focus-visible,
.colour input:target,
.dark textarea:focus,
.dark textarea:focus-within,
.dark textarea:focus-visible,
.dark textarea:target,
.dark input:focus,
.dark input:focus-within,
.dark input:focus-visible,
.dark input:target{
  border-color: white;
}
.colour input:-webkit-autofill,
.colour input:-webkit-autofill:hover,
.colour input:-webkit-autofill:focus,
.colour select:-webkit-autofill,
.colour select:-webkit-autofill:hover,
.colour select:-webkit-autofill:focus,
.colour textarea:-webkit-autofill,
.colour textarea:-webkit-autofill:hover,
.colour textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: white !important;
  background: #751722 !important;
  color: white !important;
  -webkit-box-shadow: 0 0 0px 40rem #751722 inset !important;
}
.colour .select-items{
  background: white;
}
.colour .select-items div{
  color: var(--color-main);
}
.colour .select-selected::after{
  border-color: white;
}
.colour .checkbox-container{
  color: white;
}
.colour .radio-checkmark,
.colour .checkmark{
  background: var(--color-main-300);
  border-color: var(--color-main-200);
}
.colour .radio-container:hover input ~ .radio-checkmark,
.colour .checkbox-container:hover input ~ .checkmark{
  border-color: white;
}
.colour .checkbox-container input:checked ~ .checkmark{
  background-color: white;
  border-color: white;
}
.colour .checkbox-container:hover .checkmark:after{
  background: none;
}
.colour .checkbox-container .checkmark:after{
  border: solid var(--color-main);
  border-width: 0 2px 2px 0;
}
.colour .radio-container.switch-container .radio-checkmark::after,
.colour .checkbox-container.switch-container .radio-checkmark::after,
.colour .checkbox-container.switch-container .checkmark:after{
  border: none;
  background: hsla(0 0% 100% / .32);
}
.colour .radio-container.switch-container:hover .radio-checkmark::after,
.colour .checkbox-container.switch-container:hover .radio-checkmark::after,
.colour .checkbox-container.switch-container:hover .checkmark:after{
  background: white;
}
.colour .radio-container.switch-container input:checked ~ .radio-checkmark:after,
.colour .checkbox-container.switch-container input:checked ~ .checkmark:after{
  background: var(--color-main);
}
.colour .radio-container input:checked ~ .radio-checkmark{
  border-color: white;
  background: white;
}
.colour .radio-container .radio-checkmark:after{
  background: var(--color-main);
}
.arx-editor-container iframe body .editable_content{
  background: #f5f5f6;
}
/* Custom Styles */
/* Header Styles */
header.full_header{
  background: none;
  box-shadow: none;
  position: fixed;
  padding: 1.6rem 3.2rem;
  transition: var(--animate-medium);
}
header.full_header.header-bg{
  background: linear-gradient(45deg, var(--color-main), var(--color-main-600));
  box-shadow: var(--shadow-medium);
}
header.full_header .jqueryslidemenu a.logo{
  width: 24rem;
}
header.full_header .jqueryslidemenu ul{
  margin: 0;
  gap: 2.4rem;
}
header.full_header .jqueryslidemenu ul li a{
  color: white;
  font-weight: 500;
}
header.full_header .jqueryslidemenu ul li a::after{
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-200));
}
header.full_header .jqueryslidemenu ul li:last-child a{
  background: var(--color-accent);
  color: white;
  line-height: 1;
  padding: .2rem 4rem 0;
  text-decoration: none;
  border-radius: 0.4rem;
  border: none;
  outline: none;
  height: 4rem;
  cursor: pointer;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--animate-medium);
}
header.full_header .jqueryslidemenu ul li:last-child a:hover{
  background: white;
  color: var(--color-neutral-800);
}
header.full_header .jqueryslidemenu ul li:last-child a::after{
  display: none;
}
header.full_header .jqueryslidemenu nav .social_media ul{
  gap: 1.6rem;
}
header.full_header .jqueryslidemenu nav .social_media ul li a,
header.full_header .jqueryslidemenu nav .social_media ul li:last-child a{
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid white;
  background: none;
}
header.full_header .jqueryslidemenu nav .social_media ul li a i{
  font-size: 1.6rem;
}
header.full_header .jqueryslidemenu nav .social_media ul li a:hover,
header.full_header .jqueryslidemenu nav .social_media ul li:last-child a:hover{
  background: white;
}
/* Hero Styles */
.banner-container-constrained.colour{
  padding: 3.2rem;
  display: flex;
  align-items: center;
  justify-items: center;
  background: radial-gradient(circle at -10% -10%, var(--color-main-600) 0%, var(--color-main-500) 100%);
}
.banner-container-constrained li:after{
  display: none;
}
.banner-container-constrained .banner-details{
  padding-top: 4rem;
}
#scene{
    position: absolute !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
#scene .parallax-item.bot-layer img{
  width: 100%;
  opacity: .16;
  filter: blur(2px);
}
#scene .parallax-item.mid-layer{
  top: auto !important;
  bottom: 0px;
  height: 80svh;
  width: auto;
  left: -8% !important;
}
#scene .parallax-item.mid-layer img{
  height: 90svh;
  width: auto;
}
#scene .parallax-item.top-layer{
  top: auto !important;
  bottom: 0px;
  opacity: 0.32;
  filter: blur(8px);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1160px) {
  #scene .parallax-item.mid-layer{
      left: -20% !important;
  }
}
@media screen and (max-width: 1024px){
  .banner-container-constrained{
    height: auto;
    flex-direction: column;
    padding: 0 0 4.8rem;
    overflow: hidden;
  }
  #scene{
      position: relative !important;
    height: auto;
    aspect-ratio: 1366 / 768;
    overflow: visible;
  }
  #scene .parallax-item.mid-layer{
    left: 0 !important;
    height: 100%;
    width: 100%;
    display: flex !important;
    justify-content: center;
        align-items: flex-end;
  }
  #scene .parallax-item img{
    width: 100%;
    height: auto;
  }
  #scene .parallax-item.mid-layer img{
      height: 100%;
      width: auto;
  }
}
/* In Memory */
.in-memory{
  background: linear-gradient(to bottom, var(--color-main-600), #66030f);
}
.in-memory .content > .content-wrapper{
  margin-bottom: 6.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.in-memory .content > .content-wrapper .editable_content{
  max-width: 768px;
}
.superbutton.mobile-btn{
  display: none;
}
.in-memory .icon-card .card{
  background: hsla(0 0% 100% / .08);
  box-shadow: var(--shadow-high);
  padding-top: 8rem;
  margin-top: 8rem;
  text-decoration: none;
}
.in-memory .icon-card .card h3 span{
  font-size: 1.6rem;
}
.in-memory .icon-card .card .img-wrapper{
  width: 14rem;
  height: 14rem;
  top: -7rem;
  border: 2px solid var(--color-accent);
}
@media screen and (max-width: 1024px) {
  .in-memory .content > .content-wrapper .superbutton{
    display: none;
  }
  .superbutton.mobile-btn{
    display: inline-flex;
  }
}
/* Intro Strip */
.intro-strip{
  background: linear-gradient(to bottom, #66030f, var(--color-main));
}
.intro-strip .col-7{
  align-content: center;
}
.intro-strip iframe{
  width: 100%;
  height: auto;
  aspect-ratio: 315 / 560;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 2px solid var(--color-main-300);
  box-shadow: var(--shadow-medium);
}
.intro-strip .col-4{
  position: relative;
}
.intro-strip .col-4::before{
  content: '';
  width: 5.2rem;
  height: 6rem;
  position: absolute;
  top: 4.8rem;
  left: -2.6rem;
  background: url(/assets/images/layout/icon-flake-02.svg) center center no-repeat;
  background-size: contain;
}
.intro-strip .col-4::after{
  content: '';
  width: 9.8rem;
  height: 10rem;
  position: absolute;
  bottom: -3.2rem;
  right: -3.8rem;
  background: url(/assets/images/layout/icon-flake-01.svg) center center no-repeat;
  background-size: contain;
}
/* Taised Strip */
.raised-strip{
  background: linear-gradient(-45deg, var(--color-accent-500), var(--color-accent));
}
.raised-strip .stat{
  text-align: center;
  margin: 0 0 1.6rem;
}
.raised-strip .stat strong.h0{
  line-height: 1;
  position: relative;
  padding-left: 28px;
}
.raised-strip .stat strong.h0::before{
  content: '$';
  font-size: 44px;
  position: absolute;
  left: 0;
}
.raised-strip .stat strong.h0::after{
  content: 'k';
}
.raised-strip h2{
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 400;
}
.animated-box-list{
  gap: 0;
}
.animated-box-list .card{
  width: 33.333%;
}
.animated-box-list.colour .card::after{
  background: var(--color-main);
}
.animated-box-list.colour .card .superbutton{
  background: var(--color-accent);
  color: white;
}
.animated-box-list.colour .card .superbutton:hover{
  background: white;
  color: var(--color-neutral-800);
}
.supporters .content{
  gap: 3.2rem;
  display: flex;
  flex-direction: column;
}
.supporters .content .editable_content{
  width: 58rem;
}
.supporters .content .flex{
  width: 100%;
}
.supporters .content .flex a{
  padding: .8rem;
  border-radius: .4rem;
  box-shadow: var(--shadow-medium);
  background: white;
}
.cta-strip{
  padding-block: 16rem;
}
.cta-strip h1,
.cta-strip h2,
.cta-strip h3,
.cta-strip h4{
  margin-bottom: 3.2rem;
}
.cta-strip.img-bg.dark .img-wrapper::after{
    background: var(--color-main-700);
}
.memory-inner{
  background: var(--color-main-500);
}
.memory-inner .inline-card .card{
  border: none;
  position: relative;
  justify-content: flex-end;
  overflow: visible;
  z-index: 1;
}
.memory-inner .inline-card .card .img-wrapper{
  max-width: 24rem;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 1.6rem;
  left: 0;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
}
.memory-inner .inline-card .card .content-wrapper{
  background: hsla(0 0% 100% / .08);
  box-shadow: var(--shadow-high);
  padding: 1.6rem 2.4rem 1.6rem 15.2rem;
  width: calc(100% - 12rem);
  min-height: 32rem;
  border-radius: 1.6rem;
}
.memory-inner .inline-card .card .content-wrapper h3 span{
  font-size: 1.6rem;
}
/*.memory-inner .inline-card .card::after{
  content: '';
  z-index: -1;
  background: hsla(0 0% 100% / .08);
  box-shadow: var(--shadow-high);
  padding: 1.6rem 1.6rem 1.6rem 16rem;
  width: calc(100% - 16rem);
  border-radius: .8rem;
  position: absolute;
  right: 0;
  top: 4.8rem;
  height: calc(100% - 9.6rem);
}*/
.letter-strip{
  overflow: hidden;
  position: relative;
}
.letter-strip::before{
  content: '';
  width: 50%;
  max-width: 94rem;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-25% , 25%);
  background: url(/assets/images/layout/image-wreath.png) center center no-repeat;
  background-size: contain;
}
.img-bg.cta-strip.testimonial-strip .img-wrapper::after{
  background: var(--color-main-700);
}
.img-bg.cta-strip.testimonial-strip .content{
  margin-bottom: 6.4rem;
}
.img-bg.cta-strip.testimonial-strip .content-testimonial{
  background: hsla(0 0% 100% / .16);
  border: 2px solid hsla(0 0% 100% / .16);
  padding: 9.6rem 3.2rem 3.2rem;
  border-radius: 1.6rem;
  backdrop-filter: blur(8px);
  margin-bottom: 0;
}
.img-bg.cta-strip.testimonial-strip .content-testimonial::before{
  content: '';
  width: 12rem;
  height: 12rem;
  position: absolute;
  top: -4rem;
  left: calc(50% - 6rem);
  background: url(/assets/images/layout/image-wreath.png) center center no-repeat;
  background-size: contain;
}
.img-bg.cta-strip.testimonial-strip .content .swiper{
  overflow: hidden;
  /*padding-top: 2.4rem;
  margin-top: 2.4rem;
  border-top: 2px solid hsla(0 0% 100% / .16);*/
}
.img-bg.cta-strip.testimonial-strip .content .swiper .swiper-wrapper .swiper-slide{
  text-align: center;
}
.img-bg.cta-strip.testimonial-strip .content .swiper .swiper-wrapper .swiper-slide .editable_content{
  margin: 0 0 1.6rem;
}
.img-bg.cta-strip.testimonial-strip .content .swiper .swiper-wrapper .swiper-slide h3{
  margin: 0;
  font-size: 2.4rem;
}
.img-bg.cta-strip.testimonial-strip .content .swiper .swiper-pagination{
  position: relative;
  gap: .4rem;
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}
.img-bg.cta-strip.testimonial-strip .content .swiper .swiper-pagination .swiper-pagination-bullet{
  background: white;
}
.img-bg.cta-strip.testimonial-strip .content .swiper .swiper-pagination .swiper-pagination-bullet-active{
  background: var(--color-accent-200);
}
.faq-strip{
  background: var(--color-main-500);
}
.faq-strip .faq-wrapper{
  background: hsla(0 0% 100% / .08);
  box-shadow: var(--shadow-high);
  border-radius: 1.6rem;
  padding: 2.4rem;
  margin-top: 3.2rem;
}
.faq-strip .faq-wrapper .block{
  border-bottom: 1px solid hsla(0 0% 100% / .16);
  padding-bottom: 1.6rem;
}
.faq-strip .faq-wrapper .block:last-child{
  padding-bottom: 0;
  border: none;
}
.faq-strip .faq-wrapper .toggle_faq .icon i{
  background: var(--color-accent-200);
}
.faq-strip .faq-wrapper .toggle_faq{
  font-size: 2rem;
  font-weight: 600;
}
.sponsor-intro .editable_content .grid{
  margin-top: 2.4rem;
}
.sponsor-intro .editable_content .grid .col-4{
  border-radius: .4rem;
  padding: 1.6rem;
  background: hsla(0 0% 100% / .08);
  box-shadow: var(--shadow-medium);
}
.sponsor-intro .editable_content .grid .col-4 b{
  display: block;
  font-size: 2rem;
}
.contact-intro .content{
    display: flex;
}
.contact-intro .content .editable_content{
  width: calc(100% - 40rem);
}
.contact-intro .content .contact-wrapper{
  width: 36.8rem;
  margin-left: 3.2rem;
  padding-left: 3.2rem;
  border-left: 2px solid hsla(0 0% 100% / .16);  
  padding-block: 2.4rem;
}
.contact-intro .content .contact-wrapper strong{
  display: block;
}
.contact-intro .content .contact-wrapper .social_media{
  margin-top: .8rem;
  padding-top: 1.6rem;
  border-top: 2px solid hsla(0 0% 100% / .16);  
}
.contact-intro .content .contact-wrapper .social_media ul{
  justify-content: flex-start;
}
.contact-intro .content .contact-wrapper .social_media ul li a{
  width: 3.2rem;
  height: 3.2rem;
  color: var(--color-main);
  background: white;
}
.contact-intro .content .contact-wrapper .social_media ul li a:hover{
  color: white;
  background: var(--color-accent);
}
.contact-intro .content .contact-wrapper .social_media ul li a i{
  font-size: 2rem;
}
.error-page {
  padding-top: 20rem;
  background: linear-gradient(to bottom, var(--color-main-600), #66030f);
  text-align: center;
}
.btn-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
#memory{
  transform: translate(0, -20rem);
}
.colour.form-strip{
  background: var(--color-main-500);
}
.colour.form-strip form .superbutton{
  margin: 0 0 0 auto;
}
.colour form .form-terms{
  color: white;
}
@media screen and (max-width: 1340px){
  .jqueryslidemenu nav {
    width: calc(100% - 28rem);
  }
  header.full_header .jqueryslidemenu ul{
    gap: 1.6rem;
  }
  header.full_header .jqueryslidemenu ul li a{
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1200px){
  .supporters .content .editable_content{
    width: 100%;
    max-width: 52rem;
  }
  header.full_header .jqueryslidemenu a.logo{
    width: 20rem;
  }
  .jqueryslidemenu nav {
    width: calc(100% - 24rem);
  }
  header.full_header .jqueryslidemenu ul li a{
    font-size: 1.4rem;
  }
  header.full_header .jqueryslidemenu ul li:last-child a{
    padding-inline: 3.2rem;
  }
}
@media screen and (max-width: 1100px){
  .jqueryslidemenu nav {
    width: calc(100% - 19rem);
  }
  header.full_header .jqueryslidemenu ul li:last-child a{
    height: 3.2rem;
    padding-inline: 2.4rem;
  }
  header.full_header .jqueryslidemenu a.logo{
    max-width: 18rem;
  }
}
@media screen and (max-width: 1024px){
  form .half_width,
  form .third_width{
    width: 100%;
  }
  .in-memory{
    text-align: center;
  }
  .supporters .content .flex,
  .supporters .content .editable_content,
  .animated-box-list .card,
  .in-memory .icon-card .card,
  .in-memory .content > .content-wrapper .editable_content{
    max-width: 100%;
    width: 100%;
  }
  .intro-strip .col-1{
    display: none;
  }
  .intro-strip .col-4{
    grid-column: span 8;
    max-width: 32rem;
    margin: 2.4rem auto 0;
  }
  .supporters .content{
    flex-direction: column;
  }
  .supporters .flex.flex-4 > * {
    width: calc(calc(100% / 4) - calc(var(--flex-gap) * 3 / 4));
  }
  .memory-inner .inline-card .card{
    background: hsla(0 0% 100% / .08);
    box-shadow: var(--shadow-high);
    padding: 12rem 1.6rem 1.6rem 1.6rem;
    width: 100%;
    min-height: unset;
    border-radius: 1.6rem;
    flex-direction: column;
    margin-top: 13rem;
  }
  .memory-inner .inline-card .card .img-wrapper{
    top: -13rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 3.2rem);
  }
  .memory-inner .inline-card .card .content-wrapper{
    padding: 0;
    background: none;
    box-shadow: none;
    width: 100%;
    min-height: 0;
  }
  .letter-strip::before{
    display: none;
  }
  .cta-strip{
    padding-block: 8rem;
  }
  .img-bg.cta-strip.testimonial-strip .content{
    padding-inline: 1.6rem;
    padding-bottom: 2.4rem;
  }
  .inner_header{
    height: 33svh;
  }
  .faq-strip .faq-wrapper{
    padding: 1.6rem;
  }
  .sponsor-intro .editable_content .grid .col-4{
    grid-column: span 8;
  }
  .contact-intro .content{
    flex-direction: column;
  }
  .contact-intro .content .editable_content{
    width: 100%;
  }
  .contact-intro .content .contact-wrapper {
    width: 100%;
    margin: 2.4rem 0 0 ;
    padding: 2.4rem 0 0;
    border: none;
    border-top: 2px solid hsla(0 0% 100% / .16);
  }
  .sponsor-intro .editable_content .grid:nth-of-type(2){
    margin-top: 1.6rem;
  }
  .error-page {
    padding-top: 4.8rem;
  }
  .btn-wrapper{
    flex-direction: column;
  }
  .btn-wrapper a:nth-child(2){
    margin-top: 0;
  }
}
@media screen and (max-width: 640px){
  .banner-container-constrained .h0{
    font-size: 4rem;
  }
}
@media screen and (max-width: 520px){
  .supporters .flex.flex-4 > * {
    width: calc(calc(100% / 3) - calc(var(--flex-gap) * 2 / 3));
  }
  .memory-inner .inline-card .card{
    margin-top: 12rem;
    padding-top: 14rem;
  }
  .memory-inner .inline-card .card .img-wrapper{
    top: -12rem;
    width: calc(100% - 3.2rem);
    max-width: 24rem;
  }
}
@media screen and (max-width: 420px){
  .intro-strip .col-4::after{
    bottom: -1.6rem;
    right: -1.6rem;
  }
}
body > .editable_content{
  background: white;
}