/* === HTML SETTINGS === */
html {
	font-size: 16px;
    text-rendering: optimizeLegibility;
}
/* mobile devices */
@media only screen and (max-width: 767.98px) {
	html {
		font-size: 16px;
	}
}
/* Tablet  */
@media (min-width: 768px) and (max-width: 1199.98px) {
	html {
		font-size: 16px;
	}
}
html, body { 
	height:100%; 
} 
hr {
	color: var(--headings-color);
	background-color: var(--headings-color);
	border:none;
	height: 1px;
}
body {
	color: var(--body-color);
	background: var(--body-bg);
	position: relative;
	font-weight:400;
	line-height: 1.7;
	font-family: var(--font-body);
}
a {
	color: var(--brand-color1);
}
a:hover {
	color: var(--headings-color);
}
a,
a:hover,
.fancybox-caption:hover {
	text-decoration:none;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--headings-color);
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .counter-number, .testimonial-content, .btn {
	font-family: var(--font-headings);
	font-weight:700;
}
.navbar .nav-item, .dropdown-menu, .dropdown-menu {
	font-family: var(--font-headings);
	font-weight:500;
}
h1 + div {
  padding-top: 0.5em;
}
h2 + div {
  padding-top: 0em;
}
h2 + ul {
  padding-top: 1em;
}
h3 + ul {
  padding-top: 0.75em;
}
h3 + div {
  padding-top: 0.75em;
}
h1 + p, ul + h2, p + h2, ul + h3, p + h3, ul + h4, p + h4, ul + h5, p + h5 {
  padding-top: 1em;
}
mark {
	font-weight:700;
	background-color: yellow;
	color: black;
}
img{ 
	border: 0pt; 
}
.img-shadow, .img-shadow img {
    border-radius: 3px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.2) !important;
}
section {
	width: 100%;
	display:block;
}

/* === BOOTSTRAP OVERRIDES === */
.btn,
button,
a.btn {
  -webkit-tap-highlight-color: transparent;
}
.btn,
button,
[role="button"] {
    touch-action: manipulation;
}
.btn {
    display: inline-block;
    width: auto;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-alternative);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0.75rem 1rem;
    border-radius: 1.5rem;
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
}
@media (min-width: 1200px) {
  .btn {
      font-size: 0.8125rem;
      padding: 0.9375rem 3rem;
      border-radius: 1.75rem;
  }
}
.btn-primary {
	color: var(--white);
	background-color: var(--brand-color1);
	border: 2px solid var(--brand-color1);
}

/* Hover + keyboard focus */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
	color: var(--white);
	background-color: var(--brand-color2);
	border: 2px solid var(--brand-color2);
}
.dark-btn .btn-primary {
  color: var(--brand-color1);
  background-color: var(--white);
  border: 2px solid var(--white);
}
.dark-btn .btn-primary:hover,
.dark-btn .btn-primary:focus,
.dark-btn .btn-primary:focus-visible, 
.dark-btn .btn-primary:active {
  background-color: transparent;
	color: var(--white) !important;	
  border: 2px solid var(--white);
}
.btn-outline-primary {
	color: var(--brand-color1);
	background-color: transparent;
	border: 2px var(--brand-color1) solid;	
}
.btn-outline-primary:hover, 
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible, 
.btn-outline-primary:active {
	color: var(--white);
	background-color: var(--brand-color1);
	border: 2px var(--brand-color1) solid;	
}
.dark-btn .btn-outline-primary {
	color: var(--white);
}
.btn-primary:disabled {
	border: 1px solid #b6b6b6;
	background-color: #eaeaea;
	color: #999;
}
.btn-info:hover, 
.btn-info:focus,
.btn-info:focus-visible, 
.btn-info:active {
	color: var(--white);
}
.accordion .accordion-item {
  border: none;
}
.accordion .accordion-header {
  position: relative;
  padding: .25rem 1rem;
  background-color: rgba(var(--brand-color2-rgb), .03);
}
.accordion .accordion-button {
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 700;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.accordion .accordion-header .accordion-button {
	color: var(--headings-color);
}
.page-item.active .page-link {
	color: var(--white);
	background-color: var(--brand-color1);
	border: 1px var(--brand-color1) solid;
}
.page-item .page-link {
	color: var(--headings-color);
}

/* === PRINT SETTINGS === */
.noprint {	
}
.print { display: none !important; visibility: hidden !important; }

/* === IMAGE ALIGNMENT === */
:is(.pictureright, .pictureRight, .pictureleft, .pictureLeft) {
    display: block;
    float: none;
    margin: 1rem auto;
}
:is(.pictureright, .pictureRight, .pictureleft, .pictureLeft) img,
.imgmax img {
    display: block;
    max-width: 100%;
    height: auto;
}
@media (min-width: 576px) {
    :is(.pictureright, .pictureRight) {
        float: right;
        display: inline;
        margin: 0 0 0 1rem;
        max-width: 50%;
    }

    :is(.pictureleft, .pictureLeft) {
        float: left;
        display: inline;
        margin: 0 1rem 0 0;
        max-width: 50%;
    }
}

/* === DESKTOP / TABLET / MOBILE OPTIONS === */
.mobile-menu-only {
    display: block;
}
#srchouter {
    display: none;
}
#maincontent .row,
#gallerybar .row,
#quicklink1 .row,
#cta1 .row,
#team .row,
.container-fluid .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
/* Tablet portrait and above */
@media (min-width: 768px) {
    #srchouter {
        display: block;
    }
    .mobile-menu-only {
        display: none;
    }
}
/* Desktop and above */
@media (min-width: 1200px) {
    #maincontent .row,
    #gallerybar .row,
    #quicklink1 .row,
    #cta1 .row,
    #team .row {
        margin-right: calc(-0.5 * var(--bs-gutter-x));
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }
}

/* === TABLE SETTINGS === */
table .w-10 { width:10%; }
table .w-15 { width:15%; }
table .w-20 { width:20%; }
table .w-30 { width:30%; }
table .w-40 { width:40%; }
table .w-50 { width:50%; }
table .w-60 { width:60%; }
table .w-70 { width:70%; }
table .w-80 { width:80%; }
table .w-90 { width:90%; }

/* responsive table */
@media only screen and (max-width: 767px) {
	.responsive table,
	.responsive thead,
	.responsive tbody,
	.responsive th,
	.responsive td,
	.responsive tr { 
		display: block; 
	}	
	/* Hide table headers (but not display: none;, for accessibility) */
	.responsive thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}	
	.responsive tr { 
		border: none;
	}	
	.responsive td { 
		/* Behave  like a "row" */
		border: none;
		position: relative;
		padding-left: 0%; 
	}
	.responsive tr {
		border-bottom-width: 1px;
		border-bottom-style: dotted;
		border-bottom-color: #eaeaea;
	}
	.responsive td {
		background-color:#fff;
	}	
	.responsive td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}		
}

/* === ACCESSIBILITY === */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* === MENUS === */

/* ==================================================
   Primary navigation
   Mobile first: hidden by default
================================================== */

.primary-navigation {
    display: none;
}

.primary-navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.7rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation li {
    position: relative;
    padding: 0.75rem 0.25rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
    border-bottom: 2px solid var(--brand-color1);
    transition: all .5s;
}

.primary-navigation li:hover,
.primary-navigation li.active {
    border-bottom-color: var(--white);
}

.primary-navigation a {
    display: block;
    color: var(--white);
    text-decoration: none;
    transition: all .5s;
}

/* Tablet and above */
@media (min-width: 768px) {
    .primary-navigation {
        display: block;
    }
}

/* Desktop and above */
@media (min-width: 1200px) {
    .primary-navigation ul {
        gap: 1rem;
    }

    .primary-navigation li {
        padding: 0.5rem 0.25rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* ===== MAIN MENU ===== */
.navsection .container { padding-right: 0 !important; padding-left: 0 !important; }
.navbar { padding: 0; font-size: .8125rem; font-weight: 500; }

/* Parent links spacing */
.navbar-nav .nav-link {
	margin: 0 0 0 1rem;
  padding: 0 0 0 1.25rem;  
}
/* Dropdown menus: rely on Bootstrap's .show handling */
.dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 0;
  min-width: 16.666rem;
}
/* Dropdown items */
.dropdown-menu .dropdown-item {
  display: block;
  padding: .65rem 1.25rem;
  white-space: normal;
  font-size:0.875rem;	
}
/* --- Desktop behaviour: open on hover (>= lg) --- */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
  /* Make hover-opened menus still "feel" like Bootstrap */
  .navbar .dropdown:hover > .dropdown-menu {
    margin-top: 0;
  }
}

/* --- Mobile/tablet: dropdowns open on click via JS; no hover tricks --- */
@media (max-width: 991.98px) {
	.navbar-nav li:not(:last-child) .nav-link {
	  border-bottom: 1px solid rgba(var(--white-rgb),0.06);
	}
	.navbar-nav .nav-link {
	  padding: .9rem 1rem;
	}
  /* Make dropdown menus full-width blocks under their parent */
  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    min-width: 0;
  }
  /* Ensure submenu dropdowns also behave */
  .dropdown-submenu > .dropdown-menu {
    position: static;
    width: 100%;
  }
  /* Dropdown items */
  .dropdown-menu .dropdown-item {
    padding: .65rem 1rem .65rem 2rem;
  }
}
/* Desktop-only parent dropdown chevron */
@media (min-width: 992px) {
      .navbar ul.navbar-nav li.nav-item:last-child {
        padding-right: 0rem !important;
    }
    .navbar-nav .nav-link {
      text-transform: uppercase;
    }

    .navbar-nav li.dropdown > .nav-link::after {
        font-family: var(--font-icons); /* or Font Awesome fallback */
        content: "\f078"; /* fa-chevron-down */
        font-weight: 400;
        border: 0;
        margin-left: 0.45rem;
        font-size: 0.5rem;
        display: inline-block;
        transform: translateY(-2px);
        transition: transform .3s ease;
    }

    /* Optional: rotate on hover */
    .navbar-nav li.dropdown:hover > .nav-link::after {
        transform: rotate(180deg);
    }
}

/* Hide on mobile / collapsed menu */
@media (max-width: 991.98px) {
    .navbar-nav li.dropdown > .nav-link::after {
        display: none;
    }
}

/* ===== Submenu support (Archive etc.) ===== */
.dropdown-submenu {
  position: relative;
}
/* Desktop: second level flies out to the right */
@media (min-width: 992px) {
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-submenu > a::after {
    font-family: var(--font-icons);
    content: '\f054';
    float: right;
    font-size: .875rem;
    margin-top: .1rem;
  }
}
/* ===== Overlay collapsed menu (full width) ===== */
@media (max-width: 991.98px) {

  .navbar .navbar-collapse {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-header-height);
    z-index: 1050;

    background: var(--brand-color1);
    color: var(--white);
    padding: .5rem 0;

    height: calc(100dvh - var(--site-header-height));

    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  /* Full width dropdown menus inside */
  .navbar .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
  }
}
/* ===== Colours (keep your design, but simplify) ===== */
.navbar-dark .navbar-nav .nav-link { color: var(--body-color); }
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active { color: var(--brand-color1); }

/* Dropdown background */
.navbar .dropdown-menu {
	background-color: rgba(var(--brand-color1-rgb),1);
}
/* Dropdown link default colour */
.navbar-dark .dropdown-menu a,
.navbar-dark .dropdown-menu .dropdown-item {
  color: var(--white);
}
/* Dropdown item hover */
.navbar-dark .dropdown-menu a:hover,
.navbar-dark .dropdown-menu .dropdown-item:hover,
.navbar-dark .dropdown-menu a:focus,
.navbar-dark .dropdown-menu .active > a,
.navbar-dark .dropdown-menu .active > .dropdown-item {
  background-color: var(--brand-color2);
  color: var(--white);
}
/* Mobile Hamburger Menu */
.navbar-dark .navbar-toggler {
	color: var(--white);
	border-color: transparent;
}
.navbar-dark .navbar-toggler{
	border-color:rgba(var(--white-rgb),0)
}
.navbar-dark .navbar-toggler-icon {
	background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
} 
/* Your navbar bg is transparent on desktop */
.bg-dark { background-color: transparent !important; }

/* --- Mobile/tablet: dropdowns open on click via JS; no hover tricks --- */
@media (max-width: 991.98px) {
	/* Dropdown background */
	.navbar .dropdown-menu {
		border-top: none;
		background-color: transparent;
	}
    .navbar-collapse .mobile-menu-only {
        display: list-item;
    }

    .navbar-dark .navbar-nav .nav-link { color: var(--white); }
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link.active {color: var(--white); }
}

/* === FOOTER MENU === */
ul.menufooter {
	padding: 0 !important;
	margin: 0 !important;
	list-style: none;
}
.menufooter li {
	padding: 0 0 0.75rem 0;
  font-size: 0.875rem;
	position:relative;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.menufooter li a {
	color: var(--body-color);
}
.menufooter li a, .menufooter li a:hover {
	text-decoration:none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;    
    transition: all .5s;
}
.menufooter li a:hover {
  color: var(--brand-color1);
}

/* === SITE MAP MENU === */
ul.treeMenu {
	margin-left: 0;
	padding-left: 0;
}
ul.treeMenu > li > ul > li,
ul.treeMenu > li > ul > li > ul > li {
	border-left: 1px dotted var(--body-borders);
}
ul.treeMenu li {
	color: var(--body-color);	
	padding: 0.666rem 0 0 1rem;
	margin-left: 0px;
	list-style-type: none;
	background-image: none !important;
}
ul.treeMenu li::before {
	display: none;
}
ul.treeMenu li i {	
	padding-right: 0.5rem;
}
ul.treeMenu li ul {
	margin-top: .25rem;
	margin-bottom: 0.666rem;
	margin-left: 0.666rem;
	padding-left: 0.666rem;
}
ul.treeMenu li a, 
ul.treeMenu li a:hover {
	color: var(--body-color);
	font-weight: normal;
	text-decoration:none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}


/* === SOCIAL NETWORKING ICONS === */
ul.social-media-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 0.9rem 0.3rem;
  list-style: none;
}
ul.social-media-list li {
  margin: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 
    transform .25s ease,
    background .3s ease,
    border-radius .3s ease;
}
.social-link i {
  color: var(--brand-color1);
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.social-link:hover {
  transform: scale(1.2);
}

/* === SHARING SOCIAL ICONS === */
ul.sharing-socials{
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: .4rem;
  flex-wrap: wrap;
}

ul.sharing-socials li{
  list-style: none;
  margin: 0;
  padding: 0;
}
/* links + button share the same base styles */
.sharing-socials a,
.sharing-socials button{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

/* icon bubble */
.sharing-socials a::before,
.sharing-socials button::before{
  display: block;
  text-align: center;
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  transition: all .5s;
  background: #D3D3D3;
  color: #fff;
}
/* brand icons */
.sharing-socials a[href*="facebook.com"]::before{
  font-family: var(--font-icon-brands);
  content: "\f39e";
}
.sharing-socials a[href*="facebook.com"]:hover::before{
  background: #3b5998;
}
.sharing-socials a[href*="pinterest.com"]::before{
  font-family: var(--font-icon-brands);
  content: "\f231";
}
.sharing-socials a[href*="pinterest.com"]:hover::before{
  background: #bd081c;
}
.sharing-socials a[href*="twitter.com"]::before,
.sharing-socials a[href*="x.com"]::before{
  font-family: var(--font-icon-brands);
  content: "\e61b"; /* ensure this matches your FA version */
}
.sharing-socials a[href*="twitter.com"]:hover::before,
.sharing-socials a[href*="x.com"]:hover::before{
  background: #000;
}
/* email + print */
.sharing-socials a.emailsocial::before{
  font-family: var(--font-icons);
  content: "\f0e0";
  font-weight: 700;
}
.sharing-socials a.emailsocial:hover::before{
  background: var(--brand-color1);
}
.sharing-socials button.printsocial::before{
  font-family: var(--font-icons);
  content: "\f02f";
  font-weight: 700;
}
.sharing-socials button.printsocial:hover::before{
  background: var(--brand-color1);
}
.sharing-socials a:hover::before,
.sharing-socials button:hover::before{
  border-radius: 0;
}

/* === FORM VALIDATION === */
.was-validated .radio-group:has(.form-check-input:invalid) .invalid-feedback {
  display: block;
}
.was-validated .radio-group:has(.form-check-input:valid) .invalid-feedback {
  display: none;
}

/* === RESPONSIVE EMBEDDED VIDEO === */
.embed-container, .video-responsive { 
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-responsive iframe, .video-responsive object, .video-responsive embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* === HEADER === */
header {
    position: relative;
    z-index: 20;
}
.site-header-no-banner {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.header-contactbar {
  background: var(--brand-color1);
  color: var(--white);
  font-size: .875rem; 
  position: relative;
  z-index: 999;
}
.header-contact-icon i {
  color: var(--white);
}
.site-header {
  z-index: 999;
  position: relative;
  padding: 1rem 0;
  background: var(--white);
}
.site-title { 
	color: var(--white);
}
.site-title a:hover {
	color: var(--headings-color);
}
.site-description { 
  font-size: .875rem; 
	color: var(--muted-color);
}
.logo img {
  max-height: var(--logo-height);
  width: auto;
}



/* search section */
#srchouter {
	display:inline-block;
	position:relative;
	padding: 0.5rem 1rem 0 2rem !important;
	font-size:1.125rem;
	font-weight:700;
}
#srchiconouter {
	display:inline-block;
}
#srchbtnouter {
	display:inline-block;
}
#srchicon,
#srchbtn {
	color: var(--muted-color);
}
#srch {
	top: 0.2rem;
	right: 3rem;
	width:24em;
	height:40px;
	z-index: 1000;
	position: absolute;
}
#srch input {
	padding:0.5em 1em 0.5em 1em;
	height:40px;
	font-size:87.5%;
	width:24em;
  border: 1px solid var(--body-borders);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.search-form {
    position: relative;
}
.search-button {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 50%;
    height: 100%;
    right: .875rem;
    transform: translateY(-50%);
    transition: all .3s ease-out;
    color: #ddd;
}
.search-button:focus,
.search-button.focus,
.search-button.active.focus,
.search-button.active:focus,
.search-button:active.focus,
.search-button:active:focus {
    outline: 0;
}
.search-button:hover {
    color: var(--brand-color1);
}
/* mobile devices */
@media only screen and (max-width: 1199px) {
	#srchouter {
		display:none;
	}
	#srchiconouter {
		display:none;
	}
	#srchbtnouter {
		display:none;
	}
}


/* === FOOTER === */
#footer {
	background-color: var(--body-borders);
	position: relative;
}
#footer h4 {
	color: var(--footer-headings-color);
  font-size: 1rem;
    margin: 0 0 1.5625rem;
}
#footer p {
	color: var(--body-color);
  font-size: 0.875rem;
}
#footer i {
	color: var(--brand-color1);
}
#footer span {
	color: var(--brand-color1);
    display: inline-block;
    margin-right: 0.625rem;
    font-size: 1rem;
}
.site-footer {
	background-color: var(--body-borders);
}
.site-copyright {
	font-size: 0.8125rem;
}
.site-copyright a {
	color: var(--body-color);
}
.footercol1 img  { 
	max-width: 100%;
	height: auto;
}


/* === GO TO TOP === */
.go-top {
	position: fixed !important;
	right: 20px;
	bottom: -45px;
	width: 40px;
	height: 40px;
	display: flex;               
	align-items: center; 
	justify-content: center;
	color: var(--white);
	font-size: 22px;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	z-index: 9999;
	cursor: pointer;
	background-color: var(--brand-color1);
	border-radius: 3px;
	transition: opacity 0.3s ease, bottom 0.3s ease;
}
.go-top:hover {
	color: var(--white);
	background-color: var(--brand-color2);
}
.go-top.show {
	opacity: 1;
	visibility: visible;
	bottom: 11px;
}

/* ==================================================
   BANNER
================================================== */

/* ==================================================
   COMMON BANNER WRAPPER
================================================== */

.bannersection {
    position: relative;
    z-index: 1;
    width: 100%;
    height: calc(100svh - var(--site-header-height));
    min-height: 420px;
    overflow: hidden;
}

@supports not (height: 100svh) {
    .bannersection {
        height: calc(100vh - var(--site-header-height));
    }
}

/* Critical: inner banner must inherit bannersection height */
.bannersection > .banner,
.bannersection > .banner.bgimg,
.bannersection > .banner.noprint,
.bannersection .banner,
.bannersection .bgimg,
.bannersection .carousel,
.bannersection .carousel-inner,
.bannersection .carousel-item,
.bannersection .carouselh,
.bannersection .video-banner-wrap,
.bannersection .video-container,
.bannersection .mp4-video-container,
.bannersection .video-mobile {
    height: 100%;
    min-height: 100%;
}

.bgimg,
.carousel-item,
.carouselh,
.video-mobile {
    position: relative;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    overflow: hidden;
}

/* ==================================================
   SINGLE IMAGE BANNER
================================================== */

.hero-bg {
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    display: block;
}

.hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
    pointer-events: none;
}

.hero-bg .caption {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ==================================================
   SLIDESHOW / CAROUSEL
================================================== */

#carouselslider {
    position: relative;
    z-index: 1;
    background-color: #000;
}

#carouselslider,
#carouselslider .carousel-inner,
#carouselslider .carousel-item {
    height: 100%;
}

#carouselslider .carousel-inner,
#carouselslider .carousel-item {
    background-color: #000;
}

.carousel-item {
    position: relative;
}

.carousel-fade .carousel-item {
    display: block;
    opacity: 0;
    transition: opacity 2s ease-in-out !important;
    left: 0;
    top: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1 !important;
    transition: opacity 2s ease-in-out !important;
    z-index: 2;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
    transition: all .5s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .carousel-item {
        transition: none;
    }
}

/* ==================================================
   VIDEO BANNER
================================================== */

.video-banner-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-container,
.mp4-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
}
/* YOU TUBE OPTION 1 - HEIGHT IS FULL VIDEO HEIGHT - NO CROPPING */
/*
.video-banner-wrap:has(iframe[src*="youtube.com"]),
.video-banner-wrap:has(iframe[src*="youtu.be"]) {
    height: auto;
    min-height: 0;
    overflow: visible;
}

.video-banner-wrap:has(iframe[src*="youtube.com"]) .video-container,
.video-banner-wrap:has(iframe[src*="youtu.be"]) .video-container {
    position: relative;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.video-banner-wrap:has(iframe[src*="youtube.com"]) iframe,
.video-banner-wrap:has(iframe[src*="youtu.be"]) iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
}

.video-banner-wrap:has(iframe[src*="youtube.com"]) .banner-video,
.video-banner-wrap:has(iframe[src*="youtu.be"]) .banner-video {
    position: absolute;
    inset: 0;
    height: 100%;
}
*/
/* YOU TUBE OPTION 1 - END */
/* YOU TUBE OPTION 2 - HEIGHT IS CROPPED */
.video-banner-wrap:has(iframe[src*="youtube.com"]),
.video-banner-wrap:has(iframe[src*="youtu.be"]) {
    height: calc(100svh - var(--site-header-height));
    min-height: 420px;
    overflow: hidden;
}

.video-banner-wrap:has(iframe[src*="youtube.com"]) .video-container,
.video-banner-wrap:has(iframe[src*="youtu.be"]) .video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-banner-wrap:has(iframe[src*="youtube.com"]) iframe,
.video-banner-wrap:has(iframe[src*="youtu.be"]) iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, calc((100svh - var(--site-header-height)) * 16 / 9));
    height: max(calc(100vw * 9 / 16), calc(100svh - var(--site-header-height)));
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* YOU TUBE OPTION 2 - END */
.video-container iframe,
.video-container video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    pointer-events: none;
    object-fit: cover;
}

.mp4-video-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
    pointer-events: none;
}

.mp4-video-container video {
    z-index: 0;
}

.video-mobile {
    display: none;
    position: relative;
    pointer-events: none;
    clear: both;
}

.banner-video .caption {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-video .bannercaption {
    width: 100%;
    height: auto;
}

.banner-video .bannercaption .d-flex,
.banner-video .bannercaption .w-100 {
    height: auto;
}

/* Hide iframe video on smaller screens */
@media (max-width: 1198px) {
    .video-container iframe {
        display: none;
    }

    .video-mobile {
        display: block;
    }
}

/* ==================================================
   CAPTION / TEXT
================================================== */

.caption {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.caption.scrolled {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity .5s linear;
}

.banner h1,
.banner h2 {
    position: relative;
    display: block;
    clear: both;
    margin: 0 auto;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-alternative);
}

.banner h3 {
    display: inline-block;
    clear: both;
    margin: 0 auto 1.875rem;
    color: var(--white);
    font-size: 0.875rem;
    font-family: var(--font-alternative);
}

.banner .btn-outline-primary {
    margin-top: 2.8125rem;
}

/* ==================================================
   RESPONSIVE TEXT ONLY
================================================== */

@media (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
    .banner h1,
    .banner h2 {
        font-size: 2.5rem;
    }

    .banner h3 {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1200px) {
    .banner h1,
    .banner h2 {
        font-size: 5rem;
    }

    .banner h3 {
        margin: 0 auto 1.5rem;
        font-size: inherit;
    }
}

/* === FLEX CONTAINER === */
.flexcontainer {
	position: relative;
	z-index:2;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	margin:0;
	padding:0;
	font-size: 1rem;
}
.flexcontainer p {
    line-height: 1.7;	
}
#mainflex {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#mainflex > section,
#mainflex > .widget-area {
    flex: 0 0 100%;
    width: 100%;
}
.fcscrolled {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.flexcontainer ul { 
   list-style-type: disc; 
   list-style-position: outside;
}
.flexcontainer ol { 
   list-style-type: decimal; 
   list-style-position: outside; 
}
.flexcontainer ul ul, .flexcontainer ol ul { 
   list-style-type: circle; 
   list-style-position: inside; 
}
.flexcontainer ol ol, .flexcontainer ul ol { 
   list-style-type: lower-latin; 
   list-style-position: outside; 
}
.flexcontainer img  { 
	max-width: 100%;
	height: auto;
}
.flexcontainer blockquote {
    background-color: var(--body-borders);
    border-left: 2px solid var(--blockquote-border-color);
    padding: 1.5625rem;
    margin: 2.666rem 0;
    transition: all .3s ease-in-out;
}
.flexcontainer blockquote:hover {
    border-color: var(--brand-color1);
}
.flexcontainer ul.pagination {
    list-style: none;
}

/* === MAIN CONTENT === */
#maincontent {
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
}

/* === WIDGETS START === */
.widget-area {
	line-height: 1.5;
}
.widget-area h2 a {
	color: var(--headings-color);
}

/* === CALL TO ACTION 1 === */
#cta1 {
	background-color: var(--brand-color1);
}
#cta1 h2 {
    color: var(--cta1-h2-color);
		font-weight:700;
}

/* === CALL TO ACTION 2 === */
#cta2 {
	color: var(--white);
	background-color: var(--brand-color2);
}
#cta2 h2 {
	color: var(--white);
	line-height: 1;
	position: relative;
}
/* Desktop */
@media (min-width: 1200px) {
	#cta2 h2 {

	}
}
/* === CALL TO ACTION 3 === */
#cta3 {
	color: var(--white);
    position: relative;
    clear: both;
    background-size: cover;
    
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
}
#cta3 h2 {
	color: var(--white);
  font-size: 2.625rem;
	position: relative;
}
#cta3::before {
	background-color: rgba(var(--black-rgb),0.6) !important;
	transition: background 200ms linear;
	content:"";
	position:absolute;
	inset:0;
	z-index:1;
}
#cta3 .cta3-text-bg {
  position:relative;
  z-index:2;
}
/* Desktop */
@media (min-width: 1200px) {
	#cta3 {
	    background-attachment: fixed;
	}
}

/* === QUICKLINKS 1 === */
#quicklink1 .quicklink1-card-img{
  aspect-ratio: 1 / 1; 
  width: 100%;
  overflow: hidden;
}
#quicklink1 .quicklink1-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
#quicklink1 .quicklink1-card-hover {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#quicklink1 .quicklink1-card-hover:hover {
    transform: translateY(-7px);
}
#quicklink1 .quicklink1-card-img-fallback {
  width: 100%;
  height: 100%;
  background: #e9ecef;
}
#quicklink1 .card-title {
  color: var(--headings-color);
}

#quicklink1 .card-title a:hover {
  text-decoration: none;  
}


/* === QUICKLINKS 2 === */

#quicklink2 {
    padding-bottom: 0 !important;
    overflow: hidden;
}

/* Ensure CMS widget section remains a full-width flex item */
#mainflex > #quicklink2 {
    flex: 0 0 100%;
    width: 100%;
}

.quicklink2-grid {
    width: 100%;
    overflow: hidden;
}

.quicklink2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image text";
    width: 100%;
    min-height: 28.125vw; /* 56.25% of 50vw */
    overflow: hidden;
}

.quicklink2-row.ql2-row-even {
    grid-template-areas: "text image";
}

.quicklink2-col {
    min-width: 0;
}

.quicklink2-image-col {
    grid-area: image;
    position: relative;
    overflow: hidden;
    min-height: 28.125vw;
}

.quicklink2-text-col {
    grid-area: text;
    display: flex;
    align-items: center;
    min-height: 28.125vw;
    padding: clamp(2rem, 5vw, 6rem);
}

.quicklink2-image-col img,
.quicklink2-image-anim img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quicklink2-content {
    width: 100%;
}

.quicklink2-content h2 {
    margin-bottom: 1.5rem;
}

.quicklink2-content p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Odd rows: image left, text right, green background */
.quicklink2-row.ql2-row-odd .quicklink2-text-col {
    background: var(--brand-color1);
    color: var(--white);
}

.quicklink2-row.ql2-row-odd .quicklink2-content h2,
.quicklink2-row.ql2-row-odd .quicklink2-content p {
    color: var(--white);
}

/* Even rows: text left, image right, grey background */
.quicklink2-row.ql2-row-even .quicklink2-text-col {
    background: var(--brand-color3);
    color: var(--body-color);
    text-align: right;
}

.quicklink2-row.ql2-row-even .quicklink2-content h2,
.quicklink2-row.ql2-row-even .quicklink2-content p {
    color: var(--body-color);
}

/* Animation wrapper for QL2 images */
.quicklink2-image-anim {
    position: absolute;
    inset: 0;
}

/* Mobile: always image then text */
@media (max-width: 767.98px) {
    .quicklink2-row,
    .quicklink2-row.ql2-row-even {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "text";
        min-height: 0;
    }

    .quicklink2-image-col {
        min-height: 56.25vw;
    }

    .quicklink2-text-col {
        min-height: 0;
        padding: 2rem 1.25rem;
    }

    .quicklink2-row.ql2-row-even .quicklink2-text-col {
        text-align: left;
    }
}


/* === COUNTERS === */
#counters {
  color: var(--white);
    position: relative;
    clear: both;
    background-size: cover;=
    
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
}
#counters::before {
  background-color: rgba(var(--black-rgb),0.6) !important;
  transition: background 200ms linear;
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
}
#counters .container {
  position:relative;
  z-index:2;
}
#counters h2 {
	color: var(--white);
	position: relative;
}
.counter-bg {
	position: relative;
}
#counters i {
    font-size: 3.125rem;
    text-align: center;
    line-height: 1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.counter {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.counter-text {
    width: 100%;
}
.counter-number {	
	color: var(--white);
	margin-top:0;
	padding-top:0;
	font-size:2.25rem;
	font-weight: 800;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
/* Desktop */
@media (min-width: 1200px) {
  #counters {
      background-attachment: fixed;
  }
}

/* === PRICES BAR === */
#pricebar {
    background-color: var(--body-borders);
}
.pricing-wrapper {
	border: 1px solid var(--body-borders);
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease;
}
/* Only apply hover effects on devices that actually hover */
@media (hover: hover) and (pointer: fine) {
  .pricing-wrapper:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .5);
  }
}
.pricing-icon {
	color: var(--headings-color);
	line-height: 1;
	font-size: 3rem;
}
.pricing-title {
	color: var(--headings-color);
	text-transform: uppercase;
	letter-spacing: .0625rem;
	font-size: 1rem;
	font-weight: 700;
}
.pricing-price {
	color: var(--headings-color);
	display: inline-block;
	position: relative;
	font-weight: 700;
	font-size: clamp(2.5rem, 5vw, 4rem);
}
.pricing-currency {
  position: absolute;
  left: -1rem;
  top: 1.25rem;
  font-size: 1.125rem;
}
.pricing-subtitle {
  position: absolute;
  right: -2rem;
  bottom: .25rem;
  font-size: .85rem;
  font-style: normal;
  text-align: right;
}
.pricing-body ul,
.pricing-body ol {
  list-style-position: inside;
  padding-left: 0;
}
/* Mobile and Tablet */
@media (max-width: 991.98px) {	
	.pricing-currency {
	  left: -1rem;
	  top: .75rem;
	}
	.pricing-subtitle {
	  bottom: -.25rem;
	}
}

/* === NEWS BAR === */
#newsbar .news-card {
    box-shadow: 0 .25rem 1rem rgba(0, 0, 0, .2);
  }
#newsbar .news-card-img{
  aspect-ratio: 3 / 2; 
  width: 100%;
  overflow: hidden;
}
#newsbar .news-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
#newsbar .news-card-hover {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
#newsbar .news-card-hover:hover {
    transform: translateY(-7px);
}
#newsbar .news-card-img-fallback {
  width: 100%;
  height: 100%;
  background: #e9ecef;
}
#newsbar .card-title a:hover {
  text-decoration: none;
}

/* === GALLERY BAR === */
.galleryitem {
    position: relative;
    overflow: hidden;
}
.galleryitem::before {
	z-index: 1;
    content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	margin: 0;
	font-weight: 400;
	padding: 15px;
	background-color: rgba(var(--brand-color1-rgb),0.6);
	font-size: 14px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;		
}
.galleryitem:hover::before {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.galleryimg {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;  
  position: relative;
}
.galleryimg img{
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  display: block;
}
.galleryimgtxt {
	color: var(--brand-color1);
	z-index: 2; 
    position: absolute;
    inset: 0;
    top: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.galleryitem:hover .galleryimgtxt {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.galleryimgtxt a {
    text-decoration: none;
}
.galleryimgtxt a::before,
.gallerygridimgtxt h3::before {
    background-color: rgba(var(--white-rgb),0.5);
}
.galleryimgtxt h3 {
	font-weight: 400;
	position: relative;
	width: 100%;
	display:block;
	text-align: center;
	margin: 0;
}
.galleryimgtxt h3 a {
	color: var(--white);
}
.gallerymain .link-icon {
	color: var(--white);
    font-size: 1rem;
    line-height: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.link-icon {
	color: var(--white);
	background-color: var(--brand-color2);
	display:inline-block;
    font-size: 1.5rem;
    line-height: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.gallerymain .link-icon:hover,
.link-icon:hover {
	color: var(--brand-color2);
	background-color: var(--white);
} 
/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
	.galleryimgtxt h3 {
		font-size: 1rem;
	}
	.link-icon {
		display:inline-block;
	    font-size: 1rem;
	    line-height: 2rem;
	    width: 2rem;
	    height: 2rem;
	    border-radius: 50%;
	    box-shadow: 0 0 1px #222;
	}
}

/* === TESTIMONIALS === */
#testimonials {
  color: var(--white);
    position: relative;
    clear: both;
    background-size: cover;
    
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
}
#testimonials::before {
  background-color: rgba(var(--black-rgb),0.7) !important;
  transition: background 200ms linear;
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
}
#testimonials .container {
  position:relative;
  z-index:2;
}
#testimonials h2 {
  color: var(--white);
}

#testimonials .testimonial-card {
  width: 100%;
  overflow: hidden;
}

#testimonials .carousel-item {
  padding: 0;
}

#testimonials .testimonial-quote-icon-wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#testimonials .testimonial-quote-icon-wrap i {
  color: var(--brand-color1);
  font-size: 12rem;
  line-height: 1;
}

#testimonials .testimonial-content-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.5rem 2rem;
}

#testimonials .testimonial-quote {
  color: var(--white);
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  line-height: 1.7;
  font-size: 1.5rem;
  margin: 0 1rem;
  padding: 0rem 3rem 2rem 4rem;
}
#testimonials .testimonial-quote:before {
    display: block;
  font-family: "Font Awesome 7 Pro"; font-weight: 900; content: "\f10d";
    font-size: 2rem;
    position: absolute;
    left: 2rem;
    top: 1.5rem;
}

#testimonials .testimonial-meta-row {
  margin-top: auto;
}

#testimonials .testimonial-author {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

#testimonials .testimonial-indicators {
  gap: 0.625rem;
  margin: 0;
  padding: 0;
}

#testimonials .testimonial-indicators [data-bs-target] {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 1;
}

#testimonials .testimonial-indicators .active {
  background-color: var(--brand-color1);
}

/* spacing for title/text above carousel */
#testimonials .mb-5.text-center {
  margin-bottom: 2.5rem !important;
}

/* Tablet and down */
@media (max-width: 991.98px) {
  #testimonials .testimonial-content-wrap {
    padding: 2rem 1.75rem 1.75rem;
  }

  #testimonials .testimonial-quote {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  #testimonials .testimonial-meta-row {
    align-items: flex-center;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  #testimonials .testimonial-content-wrap {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  #testimonials .testimonial-author {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  #testimonials .testimonial-indicators {
    justify-content: flex-center;
  }
}


/* === ENQUIRY FORM === */
.enquiryfrmbgalt { 
  box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px !important;
    -moz-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px !important;
    -webkit-box-shadow: rgba(0,0,0,0.25) 0px 3px 11px 0px !important;
}
#enquiryfrm  {
	background-color: var(--body-borders);
}
#enquiryfrm a:hover {
	text-decoration:none;
}
#enquiryfrm .form-control {
    padding: 1.5rem;
}
.enquiryfrmbgalt .form-control {
    padding: 1.25rem;
    font-size: .875rem;
}

/* === LOCATION MAP === */
#map_canvas {
	height:600px;
}
/* Mobile */
@media (max-width: 575.98px) {
	#map_canvas {
		height:400px;
	}
}

/* === TEAM SECTION / TEAM GRID === */

#team a:hover,
.team-grid a:hover {
    text-decoration: none;
}

#team .teamrow {
    row-gap: 2rem;
}

/* Widget: 4 columns on desktop via Bootstrap col-lg-3 */
#team .team-card,
.team-grid .team-card {
    text-align: center;
    transition: transform .3s ease;
}

#team .team-card:hover,
.team-grid .team-card:hover {
    transform: translateY(-7px);
}

/* Circular image wrapper */
#team .team-media,
.team-grid .team-media {
    overflow: hidden;
    border-radius: 50%;
    clip-path: circle(50% at 50% 50%);
    background: var(--white);
}

#team .team-img,
.team-grid .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter .3s ease, transform .3s ease;
}

#team .team-card:hover .team-img,
.team-grid .team-card:hover .team-img {
    transform: scale(1.04);
}

#team .team-img-fallback,
.team-grid .team-img-fallback {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: 50%;
}

/* Blur + desaturate non-hover images */
@media (hover: hover) and (pointer: fine) {
    #team .teamrow:hover .team-card:not(:hover) .team-img,
    .team-grid:hover .team-card:not(:hover) .team-img {
        filter: blur(2px) grayscale(100%);
    }
}

#team .team-card h3,
.team-grid .team-card h3 {
    margin-bottom: .35rem;
}

.team-job {
    color: var(--brand-color1);
    font-size: .9375rem;
}

/* Team member page social icons */
.teamicon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-color1);
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--brand-color1);
  border-radius: 50%;
  text-decoration: none;
  transition: 
    transform .25s ease,
    background .3s ease,
    border-radius .3s ease;
}
.teamsocial .social-link {
    width: 2rem;
    height: 2rem;
  border: 1px solid var(--brand-color1);
  border-radius: 50%;
}

.teamsocial .social-link i {
    font-size: 1.25rem;
}

.teamsocial ul.social-media-list {
    gap: .5rem;
    list-style: none !important;
    padding-left: 0;
    margin-left: 0;
}
/* Mobile */
@media (max-width: 575.98px) {
  .teamsocial ul.social-media-list {
    justify-content: center;
  }
}

/* === BLOG SECTION === */
#blogprimary {
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
}
#blogprimary article:after {
	background-color: var(--brand-color1);
}
.entry-thumb img {
	max-width: 100%;
	height: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.entry-thumb:hover img {
	opacity: 0.7;
}
.entry-meta {
	display:inline-block;
    font-size: 0.875rem;
}
.entry-footer {
	color: var(--muted-color);
    font-size: 1rem;
    border-top: 1px var(--body-borders) solid;	
}
.entry-meta a,
.entry-footer a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.entry-meta a:hover,
.entry-footer a:hover {
	color: var(--headings-color);
    font-weight: 700;
}
.updated:not(.published) {
    display: none;
}
#blogside {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
#blogside section:last-of-type {
    border-bottom: none;
    margin: 0;
}
.blog_search label {
    display: block;
    margin-bottom: 0;
}
.blog_search .search-field {
	color: var(--headings-color);
    background-color: var(--body-borders);
    border: 1px solid var(--body-borders);
    vertical-align: top;
    padding: 0.8125rem;
    width: 100%;
}
.blog_search .search-submit {
    display: none;
}
#blogside .postcount {
	color: var(--muted-color);
    font-size: 0.875rem;
}
#blog_categories ul,
#blog_archives ul {
    list-style: none;
    padding: 0;
    word-wrap: break-word;
    line-height: 1.8;
    text-rendering: optimizeLegibility;
}
#blogside li,
#blogside li a,
.posted-on,
.posted-on a,
.posted-on i {
    color: var(--body-color);
}
#blogside li a:hover,
#blogside li a.active {
	color: var(--brand-color1);
}
#blog_categories li,
#blog_categories li a,
#blog_archives li,
#blog_archives li a,
.tag-cloud > a,
.post-tags > a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
#blog_categories li::before {
    content: '\f07b';
    margin-right: 0.6rem;
}
#blog_archives li::before {
    content: '\f133';
    margin-right: 0.6rem;
}
#blog_categories li::before,
#blog_archives li::before {
    font-family: var(--font-icons);
    font-size: 1rem;
}
.tag-cloud > a,
.post-tags > a {
	color: var(--headings-color);
	background-color: var(--body-borders);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    line-height: 1.5rem;
    font-size: 0.6875rem !important;
    border-radius: 0rem;
    padding: 1px 1rem;
    margin: 0.3125rem 0.5rem 0.3125rem 0;
}
.tag-cloud > a:hover,
.entry-footer .tag-cloud > a,
.post-tags > a:hover,
.posted-category,
.posted-category a {
	color: var(--white);
	background-color: var(--brand-color1);
}
.entry-footer .tag-cloud > a:hover {
	background-color: var(--brand-color2);
}
.post-preview {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.post-preview img {
	max-width: 100%;
	height: auto;
}
.post-preview:hover {
    transform: translateY(-7px);
}
/* Mobile */
@media (max-width: 575.98px) {
	.posted-on,
	.posted-category {
		display:block;
	}
	.entry-meta,
	.entry-meta span {
		display:block;
	}
	.entry-meta span::after {
	    content: '';
	    margin: 0;
	}
	.entry-header h1 {
		font-size: 2.25rem;
	}
}
/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
	.postcount {
		display:none;
	}
	.entry-meta,
	.entry-meta span {
		display:block;
	}
}

/* === GALLERY SECTION === */
#gallerygrid {
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
}
ul.gallery-filters {
    list-style: none;
    padding: 0;
    font-size: 0.875rem;
}
.gallery-filters li,
.gallery-filters li a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.gallery-filters li {
	background-color: var(--brand-color1);
	display: inline-block;
  border-radius: 1.75rem;
	padding:0.75rem 1.25rem;
	margin: 0.5rem 0.125rem;
}
.gallery-filters li:hover {
	background-color: var(--brand-color2);
}
.gallery-filters li a {
	color: var(--white);
}
.gallerygridimgtxt {
    position: absolute;
    inset: 0; 
    z-index: 2;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none; /* prevents overlay capturing clicks when hidden */
}
.galleryitem:hover .gallerygridimgtxt {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.galleryitem:before {
	z-index: 1;
}
.gallerygridimgtxt a {
	color: var(--brand-color1);
    text-decoration: none;
}
.gallerygridimgtxt h3 {
	color: var(--white);
	font-size: 1.25rem;
	font-weight: 400;
	position: relative;
	width: 100%;
	display:block;
	text-align: center;
	margin: 0;
}
.gallerygridimgtxt h3::before {
    background-color: rgba(var(--white-rgb),0.5);
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    top: -5px;
    margin-left: 20%;
    -webkit-transition: width .5s .5s;
    transition: width .5s .5s;
}
.gallerygridimgtxt h3::after {
    background-color: rgba(var(--white-rgb),0.5);
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: -5px;
    margin-right: 20%;
    -webkit-transition: width .5s .5s;
    transition: width .5s .5s;
}
.galleryitem:hover .gallerygridimgtxt h3::before,
.galleryitem:hover .gallerygridimgtxt h3::after {
	width: 60%;
}
.gallerygridimgtxt .galleryimgicons {
    position: absolute;
    left: 0;
    bottom: 10%;
	width: 100%;
	padding:0 2rem;
	font-size: 1.25rem;
	text-align: center;
}
.gallery-main-image {
  width: 100%;
  max-height: 700px;
  text-align: center;
}
.gallery-main-image img {
  display: inline-block;
  max-width: 100%;
  max-height: 700px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
	.galleryimgtxt h3,
	.gallerygridimgtxt h3 {
		font-size: 1rem;
	}
	.gallerymain .link-icon {
		display:inline-block;
	    font-size: 1rem;
	    line-height: 2rem;
	    width: 2rem;
	    height: 2rem;
	    border-radius: 50%;
	    box-shadow: 0 0 1px #222;
	}
}

/* === PRODUCT CATEGORY WIDGET === */
#categories{
  line-height:1.6;
}
.cat-card{
  border-radius:0;
  overflow:hidden;
  border:0;
}
.cat-media{
  position:relative;
  width:100%;
  height:0;
  padding-top:90%; /* 3:2 */
  background:var(--white);
  overflow:hidden;
}
.cat-media > img.cat-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.cat-img--placeholder{
  position:absolute;
  inset:0;
  background:rgba(var(--black-rgb),.06);
}
.cat-title{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:.75rem 1rem;
  /*background:linear-gradient(to top, rgba(var(--black-rgb),.65), rgba(var(--black-rgb),0));*/
  background:rgba(var(--brand-color2-rgb),0.8);
}
.cat-title-text{
  margin:0;
  color:var(--white);
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  line-height:1.2;
}
.cat-overlay{
  position:absolute;
  inset:0;
  background:rgba(var(--black-rgb),.35);
  opacity:0;
  transition:opacity .25s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.cat-overlay-icon{
  color:var(--white);
  font-size:2rem;
  transform:translateY(6px);
  transition:transform .25s ease;
}
.cat-card:hover .cat-overlay{
  opacity:1;
}
.cat-card:hover .cat-overlay-icon{
  transform:translateY(0);
}
.cat-card{
  transition:transform .2s ease;
}
.cat-card:hover{
  transform:translateY(-2px);
}
/* Mobile */
@media (max-width: 575.98px) {
  #categories .col-12 .cat-card{
    max-width:340px;
    margin-left:auto;
    margin-right:auto;
  }
}

/* === PRODUCT GRID SECTION === */
#productgridside {
}
#productgridprimary,
#productgrid {
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
}
.prod-card,
.prod-card-list {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(var(--black-rgb), .2);
}
.prod-card {
  display: flex;
  flex-direction: column;
}
.prod-card-list {
}
.prod-card-link,
.prod-card-link:visited {
  color: inherit;
  text-decoration: none;
  display: block;
}
.prod-card-list:hover .btn-primary {
	color: var(--brand-color1) !important;
	background-color: transparent !important;
}
.prod-media {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6667%; /* 3:2 */
  background: var(--white);
  overflow: hidden;
}
.prod-media > img.prod-img,
.prod-media > .prod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  display: block;
}
.prod-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--black-rgb),.45);
  color: var(--white);
  opacity: 0;
  transform: translateX(6%);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.prod-card:hover .prod-overlay,
.prod-card-list:hover .prod-overlay,
.prod-card-link:hover .prod-overlay {
  opacity: 1;
  transform: translateX(0);
}
.prod-overlay i { font-size: 2rem; }
/* NEW badge */
.prod-badge-new {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: var(--brand-color1);
  color: var(--white);
  border-radius: 0;
  letter-spacing: .12em;
  font-weight: 600;
  padding: .35rem .6rem;
  z-index: 2;
}
.prod-card .card-body,
.prod-card-list .card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.prod-card .card-body h4,
.prod-card-list .card-body h4 {
  font-size: 1rem;
  line-height: 1.5;
  transition: .5s;
}
.prod-price .fw-bold {
  font-size: 1.125rem;
}
.prod-chevron {
	color: var(--brand-color1);
	font-size: 2.1rem;
	line-height: 1.5;
	text-align: left;
	transition: .5s;
}
.prod-card:hover .prod-chevron {
	color: var(--headings-color);
}
.prod-stock {
  font-weight: 700;
  font-size: .875rem;
}
/* Mobile */
@media (max-width: 575.98px) {
  .prod-card-list .prod-media {
  }
}

/* === PRODUCT GRID PAGE NAVIGATION === */
.prodnav {
	background-color: var(--body-borders);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.prodnav ul {
	margin-bottom: 0;
}
.prodnav .page-item.disabled .page-link {
	color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: transparent;
    border: none;
}
.prodnav .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.prodnav .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    background-color: transparent;
    border: none;
}
.page-item.active .page-link {
	font-weight: 700;
}
.prodnav li {
    position: relative;
}
.prodnav .prodsort {
	padding: .5rem .75rem;
}
.prodnav .prodsort select {
	max-width: 165px;
}
.prodnav .prodsort .form-control {
    background-clip: padding-box;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* Mobile */
@media (max-width: 575.98px) {
	.prodnav .page-link {
	    padding: .5rem .5rem;
	}
	.prodnav li:before {
	    display: none;
	}
}

/* === PRODUCT GRID SIDE FILTERS === */
#productgridside h4 span {
    font-size: 2rem;
}
.sidecats .postcount {
    font-size: 0.8125rem;
}
.sidecats ul {
    list-style: none;
    padding: 0;
    word-wrap: break-word;
    line-height: 2;
    text-rendering: optimizeLegibility;
}
.sidecats li,
.sidecats li a {
	color: var(--body-color);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.sidecats li a:hover,
.sidecats li.active a {
	color: var(--brand-color1);
}
.sidecats li::before {
    content: '\f07b';
    margin-right: 0.6rem;
}
.sidecats li::before {
    font-family: var(--font-icons);
    font-size: 1rem;
}
#prodSideCats {
	display: block;
}
.filters .form-control {
    border-radius: 0;
}
.filters label {
    font-weight: 400;
    margin-bottom: .25rem !important;
}
.filters .btn {
    border-radius: 0;
}
.filterddm {
	margin-bottom: 0.25rem;
}
.filterddm .form-control {
    border-radius: 0;
}
.clearfilter a {
	font-size: 0.875rem;
}
.search-group .btn {
    padding: 0 0.75rem !important;
}
/*.search-group .input-group-text {
    border-radius: 0;
}
.search-group .form-control {
    border-radius: 0;
}
#prodfilters {
	display: block;
}*/
/* Mobile */
@media (max-width: 575.98px) {
	#prodSideCats {
		display: none;
	}
	#prodfilters {
		display: none;
	}
}
/* Mobile landscape / small tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
	.filters .form-inline .form-control {
	    width: 400px !important;
	}
}
/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
	.filters .form-inline .form-control {
	    width: 100% !important;
	}	
}

/* === PRODUCT DETAILS SECTION === */
.proddetailsimg img,
.proddetailsthumb img  { 
	max-width: 100%;
	height: auto;
}
.proddetailsimg img,
.proddetailsthumb img {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);	
}
.enlarge {
	font-size:1.5em;
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	z-index: 999;
}
.enlarge a:hover {
	text-decoration:none;
}
#maincontent .proddetailstxt h1 {
    text-transform: uppercase;
    position: relative;
    font-size: 1.75rem;
    line-height: 125%;
}
.proddetailsprc {
	color: #5c5c5c;
	font-size: 1.5rem;
	font-weight: 700;
}
.proddetailsprc sup {
	font-size: 0.875rem;
	font-weight: 400;
	text-transform: lowercase;
}
.proddetailsprc span {
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
}
.proddetailsprc .prodstock,
.proddetailsprc .prodstock span {
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
}
.proddetailsbtn .btn {
	font-size: 1rem;
	font-weight: 600;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.proddetailsvideo .btn-outline-primary {
	font-size: 1.125rem;
	line-height: 2rem;
	font-weight: 600;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.proddetailsbtn .btn-primary,
.proddetailsvideo .btn-outline-primary {
	width:100%;
}
.proddetailsvideo i {
	padding-left: 0.75rem;
	font-size: 1.125rem;
}
.prodenquiry {
	background-color: var(--body-borders);
	width: 100%;
	height:auto;
	padding:1.25rem;
	margin:0 0 1.5em 0;
	display:none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
#prodenqform .btn {
	width: 100%;
    display: block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 2;
    border-radius: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
ul.nav-tabs { 
   list-style-type: none; 
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-tabs .nav-link {
    padding: 0.5rem 1.25rem;
    margin-left: 0;
    margin-right: 2px;
}
.nav-tabs .nav-link {
    color: #999;
    border: 1px solid transparent;
    background-color: #eaeaea;
}
.nav-tabs .nav-link:hover {
    color: var(--headings-color);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--headings-color);
    background-color: var(--white);
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}
.tab-content {
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
}
/* Mobile */
@media (max-width: 575.98px) {
	.nav-item {
	    width:100%;
	}
	.nav-tabs .nav-link {
	    padding: 0.5rem 1.25rem;
	    width:100%;
	    margin-left: 0;
	    margin-right: 0;
	}
	.proddetailsthumb img  { 
		width: 100%;
		height: auto;
	}
}
/* Mobile landscape / small tablets */
@media (min-width: 576px) and (max-width: 767.98px) { 
	.nogsm {
		display: none;
	}
}
/* Mobile */
@media (max-width: 575.98px) {
	.nogsm {
		display: none;
	}
}
/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
	.nav-tabs .nav-item {
	    margin-bottom: 0px;
	}
}
/* Tablet landscape / small laptops */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.nav-tabs .nav-item {
	    margin-bottom: 0px;
	}
}

/* === COOKIE SETTINGS LINK === */
.cookie-settings {
	position: fixed !important;
	left: 15px;
	bottom: 15px;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;               
	align-items: center; 
	justify-content: center;
	text-align: center;
	z-index: 9999;
	cursor: pointer;
}
.cookie-settings i {
	color: var(--brand-color1);
	font-size: 2.5rem;
	transition: transform .5s ease;
}
.cookie-settings i:hover {
	color: var(--brand-color2);
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    border-radius: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: var(--brand-color2);
    color: var(--body-color);
}
.cookie-banner .container {
    width: 100%;
    max-width: 100%;
}
.cookie-banner .row {
    margin-left: 0;
    margin-right: 0;
}
.cookie-banner[hidden] {
    display: none !important;
}
.cookie-banner .text-light-emphasis,
.cookie-banner h2,
#cookieSettingsForm label {
    color: var(--body-color) !important;
}
/* Mobile tidy-up */
@media (max-width: 575.98px) {
    .cookie-banner {
        padding-left: 0;
        padding-right: 0;
    }
    .cookie-banner .btn {
        width: 100%;
        white-space: normal;
    }
}
.embedded-media-placeholder {
    max-width: 100%;
}
.youtube-consent-placeholder {
    max-width: 100%;
}
.youtube-consent-placeholder__media {
    position: relative;
    overflow: hidden;
    background: var(--black);
    border-radius: .5rem;
}
.youtube-consent-placeholder__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.youtube-consent-placeholder__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(var(--black-rgb), 0.45);
}
.youtube-consent-placeholder__content {
    max-width: 42rem;
    color: var(--white);
}
.youtube-consent-placeholder__play {
    width: 72px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.youtube-consent-placeholder__play-icon {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
}
.youtube-consent-placeholder__fallback {
    width: 100%;
    height: 100%;
    min-height: 240px;
    color: var(--white);
    background: #111;
    text-align: center;
    padding: 1rem;
}
.youtube-video-trigger {
    max-width: 100%;
}
.youtube-video-trigger__link,
.youtube-video-trigger__button {
    position: relative;
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: var(--black);
    border-radius: 0;
    text-decoration: none;
    color: inherit;
}
.youtube-video-trigger__button {
    cursor: pointer;
}

.youtube-video-trigger__link img,
.youtube-video-trigger__button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.youtube-video-trigger__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(var(--black-rgb), 0.35);
}
.youtube-video-trigger__content {
    max-width: 42rem;
    color: var(--white);
}
.youtube-video-trigger__play {
    width: 72px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    background: rgba(255, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
}
.youtube-video-trigger__play-icon {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
}
.youtube-video-trigger__fallback {
    width: 100%;
    height: 100%;
    min-height: 240px;
    color: var(--white);
    background: #111;
    text-align: center;
    padding: 1rem;
}
.youtube-video-trigger__label {
    pointer-events: none;
}

/* === ANIMATIONS === */
/* Base: default duration + delay var */

/* Desktop and above */
@media (min-width: 1200px) {
  [data-animate] .anim-target {
    opacity: 0;
    transform: none;
    transition:
      opacity var(--anim-duration, 2s) ease,
      transform var(--anim-duration, 2s) ease;
    transition-delay: var(--anim-delay, 0ms);
    will-change: opacity, transform;
  }
  /* In view */
  [data-animate].is-inview .anim-target {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  /* Preset: fade-right */
  [data-animate="fade-right"] .anim-target {
    transform: translate3d(100%, 0, 0);
  }
  /* Preset: fade-up (available for later widgets) */
  [data-animate="fade-up"] .anim-target {
    transform: translate3d(0, 48px, 0);
  }
  /* Preset: fade-down (available for later widgets) */
  [data-animate="fade-down"] .anim-target {
    transform: translate3d(0, -48px, 0);
  }
  /* Preset: fade-left (available for later widgets) */
  [data-animate="fade-left"] .anim-target {
    transform: translate3d(-100%, 0, 0);
  }
  /* Preset: zoom (available for later widgets) */
  [data-animate="zoom"] .anim-target {
    transform: scale3d(0.3, 0.3, 0.3)
  }
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-animate] .anim-target,
  [data-animate].is-inview .anim-target {
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }
}