* === HTML SETTINGS === */
html {
	font-size: 16px;
    letter-spacing: 0.5px;
    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(--body-borders);
	background-color: var(--body-borders);
	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-flex;              /* key for icon alignment */
    align-items: center;               /* vertical centering */
    gap: 1rem;                       /* space between text + icon */
    width: auto;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 1.75rem;
    border-radius: 999px;              /* pill shape */
    transition: all .5s;
}
.btn::after {
    content: "\f054";                  /* chevron-right */
    font-family: "Font Awesome 7 Pro";
    font-weight: 400;                  /* regular style */
    margin-left: 0.25rem;
    font-size: 0.75rem;
    transition: transform .3s ease;
}
.btn:hover::after {
    transform: translateX(3px);
}
.btn-primary {
	color: var(--brand-color2);
	background-color: var(--brand-color1);
	border: 2px solid var(--brand-color1);
}
.dark-btn .btn-primary {
  color: var(--brand-color2);
  background-color: var(--white);
  border: 2px solid var(--white);
}
/* Hover + keyboard focus */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
	color: var(--brand-color1);
	background-color: var(--brand-color2);
	border: 2px solid var(--brand-color2);
}
.dark-btn .btn-primary:hover,
.dark-btn .btn-primary:focus,
.dark-btn .btn-primary:focus-visible, 
.dark-btn .btn-primary:active {
  color: var(--white);
	background-color: var(--brand-color2) !important;	
  border: 2px solid var(--brand-color2) !important;  
}
.dark-btn2 .btn-primary:hover,
.dark-btn2 .btn-primary:focus,
.dark-btn2 .btn-primary:focus-visible, 
.dark-btn2 .btn-primary:active {
  color: var(--brand-color1);
  background-color: var(--brand-color2) !important; 
  border: 2px solid var(--brand-color1) !important;  
}
.btn-outline-primary {
	color: var(--headings-color);
	background-color: transparent;
	border: 2px var(--brand-color2) solid;	
}
.btn-outline-primary:hover, 
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible, 
.btn-outline-primary:active {
	color: var(--brand-color2);
	background-color: var(--brand-color1);
	border: 2px var(--brand-color1) solid;	
}
.dark-btn .btn-outline-primary {
	color: var(--white);
  border: 2px solid var(--white) !important;  
}
.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(--brand-color2);
	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,
#cta1 .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,
    #cta1 .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
================================================== */

.primary-navigation__list li {
    margin: 0 0.5rem;
    padding: 0.5rem 0.25rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1;
}
.primary-navigation__list a {
    display: block;
    color: var(--white);
    text-decoration: none;
}
.primary-navigation__list a:hover {
    color: var(--brand-color1);
}


/* ===== MAIN MENU ===== */

.navborder,
.navsection,
.navbar,
.navbar-collapse {
  position: relative;
  z-index: 3000;
}

.navsection {
  width: 100%;
}

.navsection .container {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.navbar {
  position: relative;
  width: 100%;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
}

.navbar-nav {
  width: 100%;
}

.dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 0;
  min-width: 16.666rem;
  z-index: 3100;
}

/* Parent links spacing */
.navbar-nav .nav-link {
  margin: 0 1rem;
  padding: 0.9rem 1.25rem;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  white-space: normal;
  font-size: 0.875rem;
}

/* ===== Submenu support ===== */
.dropdown-submenu {
  position: relative;
}

/* ===== Desktop ===== */
@media (min-width: 992px) {
  .navbar .dropdown {
    position: relative;
  }

  .navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 3100;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .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: 0.875rem;
    margin-top: 0.1rem;
  }

  .navborder {
    position: relative;
  }

  .navborder::after {
    content: "";
    position: absolute;
    left: calc(var(--bs-gutter-x) * 0.5);
    right: calc(var(--bs-gutter-x) * 0.5);
    bottom: 0;
    height: 1px;
    background-color: var(--brand-color1);
  }
}

/* ===== Mobile / tablet ===== */
@media (max-width: 991.98px) {
  .navborder {
    position: relative;
    width: 100%;
  }

  .navsection {
    position: relative;
    width: 100%;
  }

  .navsection .container {
    position: static;
    width: 100%;
  }

  .navbar {
    position: static;
    width: 100%;
  }

  .navbar-toggler {
    position: relative;
    z-index: 3201;
  }

  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    z-index: 3200;
    background: var(--brand-color2);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(var(--brand-color2-rgb), 0.08);

    max-height: calc(100dvh - 6rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .navbar .navbar-nav {
    width: 100%;
  }

  .navbar-nav li:not(:last-child) .nav-link {
    border-bottom: 1px solid rgba(var(--white-rgb), 0.06);
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.9rem 1rem;
  }

  .navbar .dropdown-menu {
    position: static;
    float: none;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    border-top: none;
    background-color: transparent;
    box-shadow: none;
  }

  .navbar .dropdown-menu.show {
    display: block;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static;
    width: 100%;
    margin: 0;
  }

  .dropdown-menu .dropdown-item {
    padding: 0.65rem 1rem 0.65rem 2rem;
  }

  .navbar-collapse .mobile-menu-only {
    display: list-item;
  }
}

/* ===== Colours ===== */
.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(--brand-color1);
}

/* Dropdown background */
.navbar .dropdown-menu {
  border-top: 1px solid var(--brand-color1);
  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(--brand-color2);
}

/* 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 */
.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");
}

/* Transparent navbar background */
.bg-dark {
  background-color: transparent !important;
}

/* === FOOTER MENU === */
ul.menufooter {
	padding: 0 !important;
	margin: 0 !important;
	list-style: none;
}
.menufooter li {
	padding: 0 0 0.75rem 0;
	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;
}

/* === 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: left;
  gap: 0.5rem 0.5rem;
  list-style: none;
}
ul.social-media-list li {
  margin: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--brand-color1);
  color: var(--brand-color2) !important;
  border-radius: 50%;
  text-decoration: none;
  transition: 
    transform .25s ease,
    background .3s ease,
    border-radius .3s ease;
}
.social-link i {
  color: var(--brand-color2) !important;
  font-size: 1rem;
  line-height: 1;
}
.social-link i:hover,
.social-link:hover,
.social-link:focus {
  color: #fff !important;
}
.social-link:hover {
  background: var(--social-hover, #333);
  border-radius: 50%;
  transform: scale(1.08);
}

/* === 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 === */
.site-header {
  position: relative;
  background: var(--brand-color2);
  isolation: isolate;
  z-index: 50;
}

.site-header__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.site-header__content {
  position: relative;
  z-index: 2;
}

.site-header__bg::before,
.site-header__bg::after {
  content: "";
  position: absolute;
  width: clamp(320px, 47vw, 900px);
  height: clamp(320px, 47vw, 900px);
  border-radius: 50%;
  background-repeat: no-repeat;
}
.site-header__bg::before {
  left: -5.21vw;
  top: -15.1vw;
  background: linear-gradient(
    to bottom,
    var(--brand-color2) 0%,
    var(--brand-color2) 50%,
    rgba(255,255,255,0.075) 100%
  );
}
.site-header__bg::after {
  right: -4.5vw;
  top: 6.25vw;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.075) 0%,
    var(--brand-color2) 50%,
    var(--brand-color2) 100%
  );
}


.site-title { 
	color: var(--white);
}
.site-title a:hover {
	color: var(--headings-color);
}
.site-description { font-size: .875rem; }

.site-description {
	color: var(--muted-color);
}
.site-contact,
.site-contact a {
  color: var(--white);
}
.site-contact i {
  color: var(--brand-color1);
  font-size: 1.75rem;
}

.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(--brand-color2);
	position: relative;
}
#footer h3 {
	color: var(--white);
    margin: 0 0 1.5625rem;
}
#footer p {
	color: var(--white);
}
#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(--brand-color2);
}
.site-footer .container {
  border-top: 1px solid var(--footer-headings-color);
}
.site-copyright {
	font-size: 0.8125rem;
}
.site-copyright,
.site-copyright a {
	color: var(--footer-headings-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(--brand-color2);
	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;
}

/* ==================================================
   NEW BANNER SYSTEM
   Single image / carousel / MP4 / YouTube-Vimeo
================================================== */
.bannersection,
.banner-media {
  position: relative;
  z-index: 1;
}

.bannersection {
    position: relative;
    padding-top: 2rem;
}

.banner-row {
    min-height: 100%;
}

.banner-copy {
    color: var(--white);
}

.banner-copy.text-start {
    text-align: left;
}

.banner-copy.text-center {
    text-align: center;
}

.banner-copy.text-end {
    text-align: right;
}

.banner-copy h2 {
    margin: 0 0 1rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    text-shadow: none;
}

.banner-copy h3 {
    display: block;
    margin: 0 0 1.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-shadow: none;
}

.banner-actions .btn + .btn {
    margin-left: 0;
}

.banner-highlight {
  color: var(--brand-color1);
}

/* ==================================================
   MEDIA AREA
================================================== */

.banner-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1.25;
    overflow: hidden;
    border-radius: 30px;
    background-color: var(--brand-color2);
}

.banner-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--hero-overlay, none);
}

.banner-media picture,
.banner-media img,
.banner-media video,
.banner-media iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-media img {
    object-fit: cover;
    object-position: center;
}

/* MP4 */
.banner-video-el {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* YouTube / Vimeo */
.banner-media--embed {
    position: relative;
}

.banner-media--embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78%;
    height: 100%;
    border: 0;
    transform: translate(-50%, -50%);
}

/* Taller / narrower viewport adjustment */
@media (max-aspect-ratio: 1/1) {
    .banner-media--embed iframe {
        width: 100%;
        height: 177.78%;
    }
}

/* ==================================================
   CAROUSEL
================================================== */

#carouselslider {
    position: relative;
    background: transparent;
}

#carouselslider .carousel-inner {
    overflow: visible;
}

#carouselslider .carousel-item {
    position: relative;
}

/* Fade */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity .8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Remove Bootstrap's default overlayed controls positioning */
#carouselslider .carousel-control-prev,
#carouselslider .carousel-control-next {
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    background: none;
    transform: none;
}

/* Hide default control icons - we'll style them ourselves */
#carouselslider .carousel-control-prev-icon,
#carouselslider .carousel-control-next-icon {
    display: none;
}

/* Bottom controls wrapper */
.carousel-bottom-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Prev / Next buttons */
.carousel-bottom-controls .carousel-control-prev,
.carousel-bottom-controls .carousel-control-next {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    color: var(--white);
    text-decoration: none;
    transition: opacity .3s ease, transform .3s ease;
}

.carousel-bottom-controls .carousel-control-prev:hover,
.carousel-bottom-controls .carousel-control-next:hover,
.carousel-bottom-controls .carousel-control-prev:focus,
.carousel-bottom-controls .carousel-control-next:focus {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* Chevron icons via Font Awesome */
.carousel-bottom-controls .carousel-control-prev::before,
.carousel-bottom-controls .carousel-control-next::before {
    font-family: "Font Awesome 7 Pro";
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1;
}

.carousel-bottom-controls .carousel-control-prev::before {
    content: "\f053"; /* chevron-left */
}

.carousel-bottom-controls .carousel-control-next::before {
    content: "\f054"; /* chevron-right */
}

/* Indicators */
.carousel-bottom-controls .carousel-indicators {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
}

.carousel-bottom-controls .carousel-indicators [data-bs-target] {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.carousel-bottom-controls .carousel-indicators .active {
    background-color: var(--brand-color1);
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 767px) {
    .banner-actions .btn {
      width: 100%;
    }
}
@media (max-width: 991.98px) {
    .bannersection {
        padding: 1.5rem 0 2.5rem;
    }

    .banner-copy {
        margin-top: 0.25rem;
    }
}

@media (min-width: 768px) {
    .banner-copy h2 {
        font-size: 2.5rem;
    }

    .banner-copy h3 {
        font-size: 1.1875rem;
    }
}

@media (min-width: 1200px) {
    .bannersection {
        padding-top: 2rem;
    }

    .banner-copy h2 {
        font-size: 3.2rem;
    }

    .banner-copy h3 {
        font-size: 1.1rem;
    }
}

/* === FLEX CONTAINER === */
.flexcontainer {
	position: relative;
	z-index:1;
	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 {
  position: relative;
  z-index:1;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.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 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;
}
#maincontent ul li::marker {
  color: var(--brand-color1);
}
#maincontent li {
  color: var(--brand-color2);
}
#maincontent img {
    border-radius: 30px;
}
#maincontent img  { 
  max-width: 100%;
  height: auto;
}
/* === WIDGETS START === */
.widget-area {
	line-height: 1.5;
}
.widget-area h2 {
	text-transform: uppercase;
	position: relative;
}
.widget-area h2 a {
	color: var(--headings-color);
}

/* === CALL TO ACTION 1 === */
#cta1 {
	background-color: var(--brand-color1);
}
#cta1 h2 {
    color: var(--brand-color2);
		line-height: 1.25;
}

/* === CALL TO ACTION 2 === */
#cta2 {
	color: var(--brand-color2);
	background-color: var(--white);
}
#cta2 h2 {
	color: var(--brand-color2);
	font-size:2.5rem;
	margin-bottom: 3.5rem;
	line-height: 1;
	position: relative;
}
/* Desktop */
@media (min-width: 1200px) {
	#cta2 h2 {
		font-size:3rem;
		margin-bottom: 4.5rem;

	}
}
/* === CALL TO ACTION 3 === */
#cta3 {
	color: var(--white);
  font-size: 1.125rem;
    position: relative;
    clear: both;
    background-size: cover;
    
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center;
}
#cta3 h2 {
	color: var(--white);
  font-size: 3rem;
	margin-bottom: 3rem;
	position: relative;
}
#cta3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(var(--brand-color2-rgb), 0.1) 0%,
    rgba(var(--brand-color2-rgb), 1) 100%
  );

  transition: background 200ms linear;
}
#cta3 .cta3-text-bg {
  position:relative;
  z-index:2;
}
/* Desktop */
@media (min-width: 1200px) {
	#cta3 {
	    background-attachment: fixed;
	}
}

/* === QUICKLINKS 1 === */
#quicklink1 {
  background-color: var(--body-borders);
}

#quicklink1b {
  row-gap: 2rem;
}

.ql-col {
  display: flex;
}

.ql1outer {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: transform .5s ease;
}

.ql1 {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--brand-color2);
  color: var(--white);
}

.ql1 .row {
  height: 100%;
}

.ql1-image-wrap {
  position: relative;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.ql1-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ql1-text-bg {
  height: 100%;
  padding: 2rem;
  background-color: var(--brand-color2);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ql1-text-bg h3,
.ql1-text-bg h4 {
  font-weight: 600;
}
.ql1-text {
  font-size: 0.875rem;
}

.ql1-text-bg h3,
.ql1-text-bg h4,
.ql1-text-bg a {
  color: var(--white);
}

.ql1-text-bg h3,
.ql1-text-bg h4 {
  margin-bottom: 1rem;
}

.ql1-text-bg p:last-child,
.ql1-text-bg div:last-child {
  margin-bottom: 0;
}

.ql1 i {
  color: var(--brand-color1);
  font-size: 2.5rem;
  transition: transform .5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .ql1outer:hover {
    transform: translateY(-7px);
  }
}

/* Mobile: stack image above text */
@media (max-width: 767.98px) {
  .ql1-image-wrap {
    min-height: 220px;
  }

  .ql1-text-bg {
    padding: 1.5rem;
  }
}

/* Desktop-ish sizing */
@media (min-width: 768px) {
  .ql1-image-wrap {
    min-height: 100%;
  }

  .ql1-text-bg {
    padding: 2rem;
  }
}

/* === QUICKLINKS 2 === */
#quicklink2 .ql2icon {
	color: var(--brand-color1);
  background-color: var(--brand-color2);
	width: 6rem;
	height: 6rem;
	font-size: 3rem;
  font-weight: 400;
	line-height: 6rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
}
#quicklink2 .ql2inner {
  color: var(--brand-color2);
  background-color: var(--brand-color1);
  border-radius: 30px;
}
@media (hover: hover) and (pointer: fine) {
  #quicklink2 .ql2outer {
    transition: transform .3s ease;
  }
  #quicklink2 .ql2outer:hover {
    transform: translateY(-7px);
  }
  /* optional: keep the shadow on the card */
  #quicklink2 .ql2outer:hover .anim-target {
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .12);
  }
}
/* Icon zoom-in when card becomes visible */
#quicklink2 .anim-zoom-icon {
  transform: scale(.85);
  transition: transform .6s ease;
}
#quicklink2 [data-animate].is-inview .anim-target .anim-zoom-icon {
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  #quicklink2 .anim-zoom-icon {
    transition: none;
    transform: none;
  }
}

/* === COUNTERS === */
#counters {
  color: var(--brand-color2);
  background-color: transparent;
}
#counters .row {
  margin-top: 70px;
}
#counters h2 {
  color: var(--brand-color2);
  position: relative;
}

.counter-col {
  display: flex;
}

.counter-card {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 5rem 1.75rem 2rem;
  border-radius: 30px;
  background-color: var(--brand-color1);
  color: var(--brand-color2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* Icon badge */
.counter-icon-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
}

.counter-icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
  border: 14px solid var(--brand-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.counter-icon-circle i {
  color: var(--brand-color2);
  font-size: 3.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.counter-title {
  margin: 0 0 1rem;
  color: var(--brand-color2);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Number */
.counter-number {
  color: var(--brand-color2);
  margin-top: 0;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
}

/* Optional hover polish */
.counter-card,
.counter-icon-circle,
.counter-number {
  transition: all .5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .counter-card:hover {
    transform: translateY(-6px);
  }
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .counter-card {
    padding: 5rem 1.5rem 1.75rem;
  }

  .counter-icon-wrap {
    width: 120px;
    height: 120px;
  }

  .counter-icon-circle {
    border-width: 12px;
  }

  .counter-icon-circle i {
    font-size: 3.25rem;
  }

  .counter-number {
    font-size: 3rem;
  }
}

/* === PRICES BAR === */
/* === PRICEBAR BACKGROUND (matches header) === */
#pricebar {
  position: relative;
  overflow: hidden;
  background: var(--brand-color2);
  isolation: isolate;
}

/* keep content above circles */
#pricebar .container {
  position: relative;
  z-index: 1;
}

/* circles */
#pricebar::before,
#pricebar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;

  width: clamp(320px, 40vw, 800px);
  height: clamp(320px, 40vw, 800px);
}

/* left circle */
#pricebar::before {
  left: -5.21vw;
  top: -15.1vw;
  background: linear-gradient(
    to bottom,
    var(--brand-color2) 0%,
    var(--brand-color2) 50%,
    rgba(255,255,255,0.075) 100%
  );
}

/* right circle */
#pricebar::after {
  right: -5.21vw;
  top: 7.81vw;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.075) 0%,
    var(--brand-color2) 50%,
    var(--brand-color2) 100%
  );
}
#pricebar > .container > h2,
#pricebar > .container > .text-center {
  color: var(--white);
}
#pricebar > .container > h2 {
  font-size:2rem;
  font-weight: 600;
}
/* Desktop */
@media (min-width: 1200px) {
  #pricebar > .container > h2 {
    font-size:2.5rem;

  }
}
#pricebar .row {
  margin-top: 35px;
}

.price-col {
  display: flex;
}

.pricing-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background-color: var(--white);
  overflow: visible; /* important */
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Hover only on real hover devices */
@media (hover: hover) and (pointer: fine) {
  .pricing-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .15);
  }
}

/* Floating icon */
.pricing-icon-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  z-index: 2;
}

.pricing-icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--brand-color2);
  border: 7px solid var(--brand-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.pricing-icon-circle i {
  color: var(--brand-color1);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HEADER */
.pricing-header {
  position: relative;
  background-color: var(--brand-color1);
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.pricing-title {
  color: var(--brand-color2);
  text-transform: uppercase;
  letter-spacing: .0625rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.5rem;
}

/* Body */
.pricing-body {
  flex: 1 1 auto;
  background-color: var(--white);
  color: var(--brand-color2);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.pricing-price-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-price {
  color: var(--brand-color2);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}

.pricing-currency {
  font-size: 0.5em;
  vertical-align: top;
  margin-right: 0.15em;
}

.pricing-subtitle {
  margin-top: 0.5rem;
  color: var(--brand-color2);
  font-size: 0.95rem;
  font-style: normal;
}

/* Body content */
.pricing-content {
  color: var(--brand-color2);
}

.pricing-content > *:last-child {
  margin-bottom: 0;
}

/* List styling */
.pricing-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.pricing-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.pricing-content ul li:last-child {
  margin-bottom: 0;
}

.pricing-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--brand-color1);
  color: var(--brand-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Footer */
.pricing-footer {
  background-color: var(--brand-color1);
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.pricing-link {
  color: var(--brand-color2);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-link:hover,
.pricing-link:focus {
  color: var(--brand-color2);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767.98px) {
  .pricing-header {
    padding: 2.25rem 1.25rem 1.25rem;
  }

  .pricing-body {
    padding: 1.5rem 1.25rem;
  }

  .pricing-footer {
    padding: 1rem 1.25rem 1.25rem;
  }
}

/* === NEWS BAR === */
#newsbar {
  background-color: var(--body-borders);
}
#newsbar > .container > h2 {
  font-size:2rem;
  font-weight: 600;
}
/* Desktop */
@media (min-width: 1200px) {
  #newsbar > .container > h2 {
    font-size:2.5rem;

  }
}
.newsicon {
    font-size:3.5rem;
}
#newsbar .news-col {
  display: flex;
}

#newsbar .news-card {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  color: var(--white);
  transition: transform .5s ease;
}

#newsbar .news-card:hover {
  transform: translateY(-7px);
}

#newsbar .news-card .row {
  height: 100%;
}

#newsbar .news-card-img {
  position: relative;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

#newsbar .news-card-img img,
#newsbar .news-card-img-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

#newsbar .news-card-img img {
  object-fit: cover;
  object-position: center;
}

#newsbar .news-card-img-fallback {
  background: #cfd4da;
}

/* text panel */
#newsbar .news-card-text {
  height: 100%;
  padding: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--brand-color2);
}

#newsbar .news-card-title {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
}

#newsbar .news-card-snippet {
  color: var(--white);
}

#newsbar .news-card-snippet > *:last-child,
#newsbar .news-card-snippet p:last-child {
  margin-bottom: 0;
}

#newsbar .news-card-footer .btn {
  pointer-events: none; /* whole card is clickable */
}

#newsbar h2 a {
  color: var(--headings-color);
  text-decoration: none;
}

#newsbar h2 a:hover,
#newsbar h2 a:focus {
  text-decoration: none;
}

/* mobile */
@media (max-width: 767.98px) {
  #newsbar .news-card-img {
    min-height: 220px;
  }

  #newsbar .news-card-text {
    padding: 1.5rem;
  }

  #newsbar .news-card-title {
    font-size: 1.25rem;
  }
}

/* === GALLERY BAR === */
#gallerybar {
  position: relative;
}

.galleryicon {
  font-size: 3.5rem;
}

.gallery-coverflow {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-coverflow__track {
  position: relative;
  width: 100%;
  height: 500px;
}

.gallery-coverflow__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  text-decoration: none;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease,
    width 0.6s ease,
    height 0.6s ease,
    box-shadow 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

.gallery-coverflow__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #d9dde2;
}

.gallery-coverflow__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* active */
.gallery-coverflow__slide.is-active {
  width: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

.gallery-coverflow__slide.is-active .gallery-coverflow__image {
  border-radius: 30px;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.5);
}

/* previous */
.gallery-coverflow__slide.is-prev {
  width: 32%;
  height: 60%;
  transform: translate(-120%, -50%);
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.gallery-coverflow__slide.is-prev .gallery-coverflow__image {
  border-radius: 15px;
}

/* next */
.gallery-coverflow__slide.is-next {
  width: 32%;
  height: 60%;
  transform: translate(20%, -50%);
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.gallery-coverflow__slide.is-next .gallery-coverflow__image {
  border-radius: 15px;
}

/* controls */
.gallery-coverflow__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  color: var(--brand-color2);
  background: transparent;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.gallery-coverflow__control:hover,
.gallery-coverflow__control:focus {
  background: var(--brand-color1);
  color: var(--brand-color2);
}

.gallery-coverflow__control--prev {
  left: 0;
}

.gallery-coverflow__control--next {
  right: 0;
}

/* tablet/mobile */
@media (max-width: 991.98px) {
  .gallery-coverflow {
    min-height: 420px;
  }

  .gallery-coverflow__track {
    height: 380px;
  }

  .gallery-coverflow__slide.is-active {
    width: 70%;
  }

  .gallery-coverflow__slide.is-prev,
  .gallery-coverflow__slide.is-next {
    width: 22%;
    height: 42%;
  }

  .gallery-coverflow__slide.is-prev {
    transform: translate(-135%, -50%);
  }

  .gallery-coverflow__slide.is-next {
    transform: translate(35%, -50%);
  }
}

@media (max-width: 767.98px) {
  .gallery-coverflow {
    min-height: 320px;
  }

  .gallery-coverflow__track {
    height: 300px;
  }

  .gallery-coverflow__slide.is-active {
    width: 100%;
    height: 100%;
  }

  .gallery-coverflow__slide.is-prev,
  .gallery-coverflow__slide.is-next {
    display: none;
  }

  .gallery-coverflow__control--prev {
    left: 0.5rem;
  }

  .gallery-coverflow__control--next {
    right: 0.5rem;
  }
}


/* === TESTIMONIALS === */
#testimonials {
  background-color: var(--white);
}

#testimonials .testimonial-card {
  width: 100%;
  background-color: var(--brand-color2);
  border-radius: 30px;
  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-style: italic;
  font-weight: 700;
  line-height: 1.7;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

#testimonials .testimonial-meta-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#testimonials .testimonial-author {
  color: var(--brand-color1);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#testimonials .testimonial-indicators {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  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-start;
  }
}

/* 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-start;
  }
}


/* === ENQUIRY FORM === */
#enquiryfrm  {
	background-color: var(--body-borders);
}
#enquiryfrm a:hover {
	text-decoration:none;
}
#enquiryfrm .form-control {
    padding: 1.5rem;
}

/* === LOCATION MAP === */
#map_canvas {
	height:600px;
}
/* Mobile */
@media (max-width: 575.98px) {
	#map_canvas {
		height:400px;
	}
}

/* === TEAM SECTION / TEAM PAGE === */

/* Widget section background only */
#team {
  position: relative;
  overflow: hidden;
  background: var(--brand-color2);
  isolation: isolate;
  color: var(--white);
}

#team .container {
  position: relative;
  z-index: 1;
}

#team::before,
#team::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  width: clamp(320px, 40vw, 800px);
  height: clamp(320px, 40vw, 800px);
}

#team::before {
  left: -5.21vw;
  top: -15.1vw;
  background: linear-gradient(
    to bottom,
    var(--brand-color2) 0%,
    var(--brand-color2) 50%,
    rgba(255,255,255,0.075) 100%
  );
}

#team::after {
  right: -5.21vw;
  top: 7.81vw;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.075) 0%,
    var(--brand-color2) 50%,
    var(--brand-color2) 100%
  );
}


#team h2,
#team h2 a,
#team .text-center,
#team .text-center a {
  color: var(--white);
}

.teamicon {
  font-size: 3.5rem;
  color: var(--brand-color1) !important;
}

#team a:hover {
  text-decoration: none;
}

/* Shared team card */
.team-card {
  height: 100%;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.team-media-link {
  display: block;
}

.team-media {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--brand-color1);
  background: var(--white);
}

.team-img,
.team-img-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.team-img {
  object-fit: cover;
  object-position: center;
  transition: filter .3s ease, transform .3s ease;
}

.team-img-fallback {
  background: #e9ecef;
}

.team-card-body {
  padding: 1.5rem 1rem 0;
  text-align: center;
}

.team-name {
  font-size: 1.375rem;
  color: var(--brand-color1) !important;
  line-height: 1.25;
  font-weight: 700;
}

.team-name a {
  color: var(--brand-color1) !important;
}

.team-job {
  color: var(--white);
  line-height: 1.4;
}

/* Widget hover behaviour */
@media (hover: hover) and (pointer: fine) {
  #team .team-card:hover,
  .team-list-page .team-card:hover {
    transform: translateY(-7px);
  }

  /* Blur + desaturate non-hover images when hovering the row */
  #team .teamrow:hover .team-card:not(:hover) .team-img,
  .team-list-page .teamrow:hover .team-card:not(:hover) .team-img {
    filter: blur(2px) grayscale(100%);
  }
}

/* Main team page overrides */
.team-list-page .team-name,
.team-list-page .team-name a {
  color: var(--brand-color2) !important;
}
.team-list-page .team-job {
  color: var(--brand-color2);
}

/* Smaller social icons for team member page */
.teamsocial .social-link {
  width: 2.75rem;
  height: 2.75rem;
}

.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;
}

/* Legacy detail-page hover image */
.teamimg {
  border-radius: 30px;
  transition: all .5s;
}

.teamimg:hover {
  transform: scale(1.1);
  z-index: 9999;
}

/* Responsive */
@media (max-width: 767.98px) {
  .team-media {
    width: min(100%, 220px);
  }

  .team-card-body {
    padding-top: 1.25rem;
  }

  .team-name {
    font-size: 1.25rem;
  }
}

/* === BLOG SECTION === */
#blogprimary {
    word-wrap: break-word;
    text-rendering: optimizeLegibility;
}
#blogprimary article:after {
	background-color: var(--brand-color1);
}
.entry-title a {
  color: var(--headings-color);  
}
.entry-thumb img {
	max-width: 100%;
  border-radius: 30px;
	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;
}
#blogside h4 {
	position: relative;
	padding-bottom: 0.9375rem;
}
#blogside h4::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: rgba(var(--brand-color1-rgb), 1);
    bottom: 0;
    left: 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%;
  border-radius: 20px;
}
.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: 10px;
    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(--brand-color2);
	background-color: var(--brand-color1);
}
.entry-footer .tag-cloud > a:hover {
  color: var(--white);
	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;
  border-radius: 30px;
}
.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-color2);
	display: inline-block;
  border-radius: 30px;
	padding:0.75rem 1.25rem;
	margin: 0.5rem 0.125rem;
}
.gallery-filters li:hover {
	background-color: var(--brand-color1);
  color: var(--brand-color2) !important;
}
.gallery-filters li a {
	color: var(--white);
}
.gallery-filters li:hover a {
  color: var(--brand-color2);
}
#gallerygrid .galleryitem {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

#gallerygrid .galleryimg {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
#gallerygrid .galleryimg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#gallerygrid .galleryitem::before {
  border-radius: 30px;
}
#gallerygrid .gallerygridimgtxt {
  border-radius: 30px;
}


.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;
  border-radius: 30px;
}
.gallery-main-image img {
  display: inline-block;
  max-width: 100%;
  max-height: 700px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}
/* 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 {
  height: 100%;
  border: 0;
  background: transparent;
  transition: transform .25s ease;
}

.cat-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--brand-color2);
  border-bottom: 1px solid var(--brand-color2);
}

.cat-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1; /* slightly wider than tall */
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: var(--white);
}

.cat-img,
.cat-img--placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.cat-img {
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}

.cat-img--placeholder {
  background: rgba(var(--black-rgb), .06);
}

.cat-title {
  padding: 1rem 0.75rem 1.15rem;
  text-align: center;
  background: transparent;
}

.cat-title-text {
  margin: 0;
  color: var(--brand-color2);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}

.cat-title-icon {
  display: inline-flex;
  margin-left: 0.35rem;
  font-size: 0.8em;
  transition: transform .25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cat-card:hover {
    transform: translateY(-4px);
  }

  .cat-card:hover .cat-img {
    transform: scale(1.04);
  }

  .cat-card:hover .cat-title-icon {
    transform: translateX(4px);
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  #categories .cat-card {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* === FEATURED PRODUCTS / PRODUCT GRID CARDS === */

#featured {
  background-color: var(--body-borders);
}

.featured-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.featuredicon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--brand-color2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featuredicon i {
  color: var(--brand-color1);
  font-size: 2rem;
  line-height: 1;
}

.prod-card {
  position: relative;
  width: 100%;
  background: var(--brand-color2);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.prod-card-link,
.prod-card-link:visited {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prod-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.8;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: var(--white);
}

.prod-media > img.prod-img,
.prod-media > .prod-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
}

.prod-media-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(var(--brand-color2-rgb), 0) 50%,
    rgba(var(--brand-color2-rgb), 0.75) 75%,
    rgba(var(--brand-color2-rgb), 1) 100%
  );
}

/* === PRODUCT STOCK BADGES === */

.prod-stock-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.prod-stock-badge {
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Available = Green */
.prod-stock-in {
  background-color: #28a745; /* or your brand green */
}

/* Low Stock = Gold */
.prod-stock-low {
  background-color: #d4af37; /* gold */
  color: var(--brand-color2); /* better contrast */
}

/* All "negative" states = Red */
.prod-stock-out {
  background-color: #dc3545; /* red */
}


/* corner NEW badge */
.prod-badge-new {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 86px;
  height: 86px;
  overflow: hidden;
  pointer-events: none;
}

.prod-badge-new::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 86px solid #dc3545;
  border-left: 86px solid transparent;
}

.prod-badge-new span {
  position: absolute;
  top: 17px;
  right: -7px;
  width: 90px;
  transform: rotate(45deg);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.prod-card-body {
  flex: 1 1 auto;
  background: var(--brand-color2);
  color: var(--white);
  padding: 1.5rem 1.5rem 1.25rem;
  text-align: center;
}

.prod-title {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
}

.prod-mpn {
  margin-bottom: 1rem;
  color: rgba(var(--white-rgb), 0.8);
  font-size: 0.875rem;
}

.prod-price {
  display: inline-block;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}

.prod-price sup {
  margin-left: 0.2rem;
  font-size: 0.6em;
}

.prod-price span {
  font-size: 0.875rem;
  font-weight: 500;
}

.prod-card-footer {
  background: var(--brand-color1);
  text-align: center;
  padding: 1.25rem 1.5rem;
}

.prod-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--brand-color2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prod-more i {
  font-size: 0.85em;
  transition: transform .25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .prod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 .75rem 2rem rgba(var(--black-rgb), .18);
  }

  .prod-card:hover .prod-more i {
    transform: translateX(4px);
  }

  .prod-card:hover .prod-img {
    transform: scale(1.04);
  }
}

.prod-img {
  transition: transform .4s ease;
}

/* === PRODUCT LIST VIEW OVERRIDES === */

.prod-card-list {
  background: var(--brand-color2);
  color: var(--white);
}

.prod-card-list .row {
  min-height: 100%;
}

.prod-card-list .prod-media {
  height: 100%;
  min-height: 240px;
  aspect-ratio: auto;
  border-radius: 30px 0 0 30px;
}

.prod-card-list .prod-media > img.prod-img,
.prod-card-list .prod-media > .prod-img {
  object-fit: cover !important;
}

.prod-card-list .card-body {
  background: var(--brand-color2);
  color: var(--white);
}

.prod-card-list h3 a {
  color: var(--brand-color1);
}

.prod-card-list h3 a:hover,
.prod-card-list h3 a:focus {
  color: var(--white);
}
.prod-card-list .prod-title {
  margin: 0;
}

.prod-card-list .text-muted,
.prod-card-list .small,
.prod-card-list .prod-mpn {
  color: rgba(var(--white-rgb), 0.8) !important;
}

.prod-card-list .fw-bold,
.prod-card-list .prod-price,
.prod-card-list .prod-stock {
  color: var(--white);
}

.prod-card-list .prod-price {
  font-size: 2rem;
}

.prod-card-list .btn-primary {
  white-space: nowrap;
}
.prod-card-list .col-md-3:last-child {
  background: var(--brand-color2);
}
.prod-card-list .btn-primary {
  color: var(--brand-color2);
  background-color: var(--brand-color1);
  border-color: var(--brand-color1);
}

.prod-card-list .btn-primary:hover,
.prod-card-list .btn-primary:focus {
  color: var(--brand-color1);
  background-color: transparent;
  border-color: var(--brand-color1);
}

/* mobile: image goes back to rounded top corners */
@media (max-width: 767.98px) {
  .prod-card-list .prod-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.8;
    border-radius: 30px 30px 0 0;
  }
}


/* === 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;
    border-radius: 30px;
}
.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 {
    position: relative;
    padding-bottom: 0.9375rem;
    color: var(--brand-color2);
}
#productgridside h4 a {
    color: var(--brand-color2);
}
#productgridside h4::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: rgba(var(--brand-color2-rgb), 0.1);
    bottom: 0;
    left: 0;
}
#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 {
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    text-transform: uppercase;
    position: relative;
    font-size: 1.75rem;
    line-height: 125%;
}
#maincontent .proddetailstxt h1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 1px;
    margin-left: 0;
    background-color: var(--brand-color1);
}
.proddetailsprc {
	color: #443F3F;
	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(--white);
}
.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(--white) !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;
  }
}