/**
	@Author:	Paul Strandoo
	@Date:		06/2025
	@Notes:		Port Health
	
	/* Design Variations. Because of course. */
	/* East Suffolk Blue: #275C85;
	/* Background Navy: #193A51;
	/* Trust Blue: #56A9DA;
	/* Dark Blue: #025984; (this is wrong in the Brand Guide) 
*/

/*@import url("font-awesome.min.css");*/
:root {
	--display-font: "Poppins", sans-serif;
	--body-font: "Poppins", sans-serif;
	--display-regular: 400;
	--display-medium: 500;
	--display-semibold: 600;
	--display-bold: 700;
	--body-light: 300;
	--body-regular: 400;
	--body-medium: 500;
	--body-semibold: 600;
	--body-bold: 700;

	
		--blue2: #5e9bc8;
	
		--navy: #002F6C;
	
		--textblue: #459fc4;
	
		--light-grey: #f0f0f0;   
		/*--light-grey: #F5F5F5;*/
	
		--grey0: #575656;
		--grey1: #ebebeb;
		--grey2: #9f9f9f;
		--grey3: #939393;
		--grey4: #f6f6f6;
	
		--grey: #ededed;
	
	/* Brand Colors */
	--title-blue: #275c85;
	--navy: #193a51;

	--light-blue: #56a9da;
	--trust-blue: #56a9da; /* == light-blue */
	--dark-blue: #295073;

	--accent: #ee3b76; 
	--team-pink: #ee3b76; /* == accent? */
	--dark-pink: #bb2654;

	--eq-orange: #f18e35;
	--dark-orange: #c55c28;

	--pro-yellow: #f7d32a;
	--dark-yellow: #d39c2a;
	
	--respect-green: #8acb94;
	--dark-green: #0b7e76;

	--white: #ffffff;
	--black: #010502;
	
	--light-tint: #F4EFEC;
	
	--section-pad-large: 7em;
	--section-pad-med: 5em;
	--section-pad-small: 3em;
	
	--header-height: 220px;
	
    --inner: 1210px; /* 1320 */
    --inner: 1256px;
    --inner-narrow: 960px;
    --inner-large: 1150px;
    --inner-wide: 1500px;
    --inner-very-wide: 1970px;
    --inner-full: 100%;
    
    --home-hero-max-height: 700px; /* 825px */
    
    /*--section-default-padding: 70px 0;
    --section-mobile-padding: 40px 0;*/
	}

/**
 * Reset stylesheet to normalize styles across browsers
 */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,label,input,textarea,p,blockquote,th,td {  
	margin:0; 
	padding:0; 
	}
table { 
	border-collapse:collapse; 
	border-spacing:0; 
	}
fieldset,img {  
	border:0; 
	}
address,caption,cite,code,dfn,em,strong,th,var { 
	font-style:normal; 
	font-weight:normal; 
	}
ol,ul,li { 
	list-style:none; 
	margin: 0;
	padding: 0;
	}
caption,th { 
	text-align:left; 
	} 
h1,h2,h3,h4,h5,h6 { 
	font-size:100%; 
	font-weight:normal; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr,acronym { 
	border:0; 
	} 
a {
	text-decoration: none;
	}
img {
	display: block;
	vertical-align: middle;
	max-width: 100%;
	}

* {
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 156px;
	}
body {
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: #ffffff;
	}

body, input, textarea, table {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-style: normal;
	color: var(--black);
	}

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.6em;
	margin: 0 0 1em;
	}
	
ul {
	margin: 1em 0;
	}

li {
	margin: 0;
	}
em {
	font-style: italic;
	font-weight: inherit;
	}
strong, b {
	font-style: inherit;
	font-weight: var(--body-medium);
	}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	}

a { 
	color: inherit;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2.5px;
	}
a:hover,
a:active {
	text-decoration-style: solid;
	}

a:hover {
	color: var(--accent);
	/*text-decoration: underline;*/
	}
a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--display-font);
	font-weight: var(--display-medium);
	font-style: normal;
	line-height: 1.1;
	}

h1,.h1 {
	font-family: var(--display-font);
	font-weight: var(--display-medium);
	font-size: 3rem;
	font-size: clamp(2rem, 10vw, 5rem);
	line-height: 1.2;  
	letter-spacing: 0;
	margin: 0 0 0.5em;
	width: 100%;
	}

h2,.h2 {
	font-family: var(--display-font);
	font-weight: var(--display-medium);
	color: var(--black);
	font-size: 2.2rem;
	line-height: 1.2em;
	padding: 0;
	margin: 0 0 0.8em;
	}
	
h2:first-of-type {
	margin-top: 0;
	}

.home-hero h1,
.home-hero h2 {
	font-size: 3.2rem;
	font-weight: var(--display-medium);
	line-height: 1.2;
	color: var(--black);
	}
.home-hero .dark h1,
.home-hero .dark h2 {
	color: var(--white);
	}

h3,.h3 { 
	font-family: var(--display-font);
	font-weight: var(--display-medium);
	color: var(--black);
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 0 0 0.8em;
	}

h4,.h4 { 
	font-family: var(--body-font);
	font-weight: var(--body-medium);
	font-size: 1.35rem;
	line-height: 1.6;
	margin: 0 0 0.3em;
	}
	
h5,.h5 { 
	font-family: var(--body-font);
	font-weight: var(--body-medium);
	font-size: 1.35rem;
	line-height: 1.6;
	margin: 0 0 0.35em;
	}
	
.page-footer h5 {
	font-size: 1rem;
	font-weight: var(--body-bold);
	margin: 0 0 1em;
	}

h6,.h6 { 
	font-family: var(--body-font);
	font-weight: var(--body-bold);
	font-size: 1rem;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
	}

p + h3,
ul + h3 {
	margin-top: 1.2em;
	}

@media screen and (min-width: 420px) {  
	h2,.h2 {
		font-size: 2.4rem;  
		}
}

@media screen and (min-width: 600px) {
	h1,.h1 {
		font-size: 3rem;  
		}
	
	h2,.h2 {
		font-size: 2.25rem;
		}
	
	h3,.h3 {
		font-size: 1.85rem;
		}
	h4,.h4 { 
		font-size: 1.6rem;
		}
}

/*
div { border: 1px solid red;
	visibility: visible;
	}
*/

figure {
	margin: 0;
	margin: 1.5em 0 2em;
	}
figcaption {
	margin: 1em 0;
	}
img {
	vertical-align: middle;
	}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	}

/* FA */
.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.cms-text a[href^="http://"],
.cms-text a[href$='.pdf'] {
	position: relative;
	padding-right: 10px;
	}

.cms-text a[href$='.pdf']::after {
	/*
	display: inline-block;
	font-style: normal;
    font-variant: normal;
	font: var(--fa-font);
	font: var(--fa-font-sharp-solid);
	content: '\f15b';
	margin-left: 0.45em;
	text-rendering: auto;
	color: inherit;
	-webkit-font-smoothing: antialiased;
	}F3C7
	*/
	
	font-family: "remixicon";
	content: "\ECEB";
	font-size: 1em;
	display: inline-block;
	margin-left: 0.25em;
	vertical-align: middle;
	color: currentColor;
	transition: color 0.2s ease;
	}
	
a[href^="http://"]:not(.button)::after,
a[href^="https://"]:not(.button)::after {
	/*
	display: inline-block;
	font: var(--fa-font-solid);
	content: '\f08e';
	margin-left: 0.45em;
	text-rendering: auto;
	color: inherit;
	-webkit-font-smoothing: antialiased;
	*/
	font-family: "remixicon";
	content: "\ECAE";
	font-size: 1em;
	display: inline-block;
	margin-left: 0.25em;
	vertical-align: middle;
	color: currentColor;
	transition: color 0.2s ease;
	}
	
.dark a[href^="http://"]::after,
.dark a[href^="https://"]::after {
	color: inherit;
	/*background-color: white;*/
	}
	
.social-icon a[href^="http://"]::after,
.social-icon a[href^="https://"]::after {
	display: none;
	}

/* ----- [ Structure ] -----------------*/
.page-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	padding-top: 0;
	background: #fff;
	min-height: 100%;
	min-height: 100vh;
	/*z-index: 2;*/
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}

.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	min-height: 100%;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: var(--grey1);
	z-index: 600;
	opacity: 0;
	overflow-y: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding-top: 120px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	}
.page-overlay.is-open {
	position: fixed;
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
	}
.page-overlay.is-open + .page-header {
	/*position: fixed;*/
	}

@media screen and (min-width: 770px) {
	.page-overlay {
		align-items: center;
		padding: 0.9;
		}
}

header,
section,
footer {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	margin: 0;
	padding: var(--section-pad-med) 0;
	position: relative;
	}

.inner {
	max-width: calc(var(--inner) + 32px);
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	}
.inner-narrow {
	max-width: var(--inner-narrow);
	}
.inner-large {
	max-width: var(--inner-large);
	}
.inner-wide {
	max-width: var(--inner-wide);
	}
.inner-full {
	max-width: 100%;
	margin: 0;
	padding: 0 !important;
	}

/*
@media screen and (min-width: 200px) {
	.flex-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		position: relative;
		max-width: 100%;
		height: 100%;
		padding: 0 20px;
		}
}
@media screen and (min-width: 450px) { 
	.inner {
		padding: 0 30px;
		}
}
@media screen and (min-width: 974px) {
	.flex-inner {
		margin: 20px 0;
		}
}
*/

/* ----- [ Strandoo Flex Grid System v1 ] ------ */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	/*overflow: hidden;*/
	position: relative;
	}

.col {
	flex: 1;
	padding: 0;
	max-width: 100%;
	}

@media screen and (min-width: 420px) {
	.col { flex: initial; }
	.row.no-padding,
	.row.padding-0 {
		margin-left: 0;
		margin-right: 0;
		}
	.row.padding-1 {
		margin-left: -1px;
		margin-right: -1px;
		}
	.row.padding-5 {
		margin-left: -5px;
		margin-right: -5px;
		}
	.row.padding-10 {
		margin-left: -10px;
		margin-right: -10px;
		}
	.row.padding-15 {
		margin-left: -15px;
		margin-right: -15px;
		}
	.row.padding-20 {
		margin-left: -20px;
		margin-right: -20px;
		}
	.row.padding-30 {
		margin-left: -30px;
		margin-right: -30px;
		}
	.row.padding-40 {
		margin-left: -40px;
		margin-right: -40px;
		}
	.row.padding-50 {
		margin-left: -50px;
		margin-right: -50px;
		}

	.no-padding > .col,
	.padding-0 > .col {
		padding: 0;
		}
	.padding-1 > .col {
		padding-left: 1px;
		padding-right: 1px;
		}
	
	.padding-5 > .col {
		padding-left: 5px;
		padding-right: 5px;
		}
	.padding-10 > .col {
		padding-left: 10px;
		padding-right: 10px;
		}
	.padding-15 > .col {
		padding-left: 15px;
		padding-right: 15px;
		}
	.padding-20 > .col {
		padding-left: 20px;
		padding-right: 20px;
		}
	.padding-30 > .col {
		padding-left: 30px;
		padding-right: 30px;
		}
	.padding-40 > .col {
		padding-left: 40px;
		padding-right: 40px;
		}
	.padding-50 > .col {
		padding-left: 50px;
		padding-right: 50px;
		}

	.row.text-center > .col {
		text-align: center;
		}
}

.col > img {
	max-width: 100%;
	}

@media screen and (min-width: 100px) and (max-width: 599px) {
	.base-row.row {
		flex-direction: row;
		}
	.base-row .m-1of2,
	.base-row .m-2of4,
	.base-row .m-50 {
		width: 50%;
		flex: initial;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: initial;
		}
}

@media screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}
	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: initial;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: initial;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: initial;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: initial;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: initial;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: initial;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: initial;
		}
		
	.m-hidden { display: none; }
}

@media screen and (min-width: 770px) {
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-1of1
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: initial;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: initial;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: initial;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: initial;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: initial;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: initial;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: initial;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: initial;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: initial;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: initial;
		}
	.t-hidden { display: none; }
}
@media screen and (min-width: 1200px) { 
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: initial;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: initial;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: initial;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: initial;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: initial;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: initial;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: initial;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: initial;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: initial;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: initial;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: initial;
		}
		
	.d-hidden { display: none; }
}

.row.text-center > .col {
	text-align: center;
	}

.col > img {
	max-width: 100%;
	}

img.full {
	width: 100%;
	}
img.half {
	width: 50%;
	float: left;
	}

.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

/* legacy? */
@media screen and (min-width: 600px) {
	.row,
	.flex-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		}
}


/* ----- [ Color variants ] ----------- */
.dark {
	color: #fff !important;
	background: #414141;
	}
.dark h2,
.dark h3,
.dark p,
.dark li,
.dark a:not(.button) {
	color: #fff;
	}
.dark a:hover {
	}

/* ----- [ Flex Container ] ----------- */
.flex-container {
	display: block;
	height: 100%;
	height: auto;
	}
.flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	}
.flex-container > * {
	/*width: 100%;*/
	display: block;
	}
	
@media screen and (min-width: 600px) { /* 1110px */
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
	
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
	.f-between { justify-content: space-between; }
	.f-stretch { justify-content: stretch; }
}

/* ----- [ Page Header / Masthead ] -----------------*/
.page-header {
	position: fixed;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 999;
	/*background: rgb(1,1,1);*/
	/*background: linear-gradient(180deg, rgba(1,1,1,0.575) 0%, rgba(0,0,0,0) 100%);*/
	background: var(--white);
	/* border-top: 6px solid var(--light-blue); */
	/* border-top: 10px solid var(--black); */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	}
.page-header-inner {
	width: 100%;
	max-width: var(--inner-wide);
	margin: 0 auto;
	padding: 15px 15px;
	}
.main-nav-wrapper {
	display: flex;
	flex-direction: row;
	flex-direction: column;
	justify-content: center;
	justify-content: flex-start;
	align-items: center;
	align-items: flex-start;
	height: auto;
	}
.logo-wrap {
	display: block;
	height: auto;
	max-width: 180px; 
	margin: 0 auto;
	margin: 0 4em;
	margin: 0 2em;
	text-decoration: none;  
	border: none;
	order: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.nav-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	align-items: flex-start;
	white-space: nowrap;
	margin: 0;
	margin-left: 10%;
	order: 2;
	visibility: hidden;
	height: 0;
	}

	
body.is-fixed {
	position: fixed;
	width: 100vw;
	}
.is-fixed .main-nav-wrapper {
	height: 100vh;
	overflow-y: scroll;
	}
.is-fixed .nav-list {
	visibility: visible;
	height: auto;
	padding-bottom: 5rem;
	}
.is-fixed .nav-list:first-child {
	margin-top: 3em;
	padding-bottom: 0;
	}

.mega-menu {
	display: none;
	}
.category-images {
	display: none;
	}


/*	
.page-header.is-solid {
	}
.page-header.is-solid:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgb(1,1,1);
	background: linear-gradient(180deg, rgba(1,1,1,0.575) 0%, rgba(1,1,1,0.575) 100%);
	background: rgba(0,0,0,0.6);
	}
*/


/*
.home-page .page-header.is-solid {
	background: var(--white);
	}
@media screen and (min-width: 540px) {
	.head-meta {
		display: block;
		}
}
@media screen and (min-width: 700px) {
	.head-meta .gap-right {
		display: inline-block;
		}
}

@media screen and (min-width: 950px) {
	.page-header .inner {
		padding: 15px 30px 15px;
		}
	.head-meta {
		display: block;
		}
}
@media screen and (min-width: 1080px) {
	.logo-wrap {
		display: block;
		max-width: 200px;
		}
	.head-meta {
		position: absolute;
		top: 0;
		right: 30px;
		margin: 0;
		text-align: right;
		}
}
*/

@media screen and (min-width: 1386px) {
	.main-nav-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: row;
		flex: 0 1 50%;
		flex-wrap: nowrap;
		justify-content: space-evenly;
		align-items: center;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		height: auto;
		}
		
	.nav-list {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		white-space: nowrap;
		flex: 2;
		margin: 0;
		order: 0;
		visibility: visible;
		height: auto;
		}
	.logo-wrap {
		margin: 0 4em;
		order: 0;
		flex: 1;
		}
}

/* ----- [ Navigation / Search ] ------ */
.nav-wrapper {
	display: flex;
	flex-direction: column-reverse;
	}
.main-navigation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 0;
	margin: 0;
	padding: 15vh 10% 10%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: #fff;
	z-index: -1;
	opacity: 0;
	}
	
.main-navigation.is-open {
	min-height: 100vh;
	opacity: 1;
	overflow: scroll;
	}
	
.main-navigation ul {
	margin: 0 0.5em;
	}
.level-2 {
	font-weight: var(--body-light);
	margin: 0.6em 0;  
	text-decoration: none;
	}
	
.menu-item,
.menu-item-2 {
	margin: 0.5em 0;
	text-decoration: none;
	}
.menu-item-2 {
	margin-left: 2em;
	}

.menu-link {
	position: relative;
	font-weight: var(--body-med);
	font-size: 1.8rem;
	color: var(--dark-blue);
	line-height: 1.4;
	text-decoration: none;
	letter-spacing: 0.03em;
	/*border-bottom: 4px solid transparent;*/
	}
.menu-item-2 .menu-link {
	font-size: 1.65rem;
	line-height: 1.35;
	}
.menu-link:hover,
.menu-link.on {
	text-decoration: none;
	color: var(--accent);
	/*border-bottom: 4px solid var(--brand-dark);*/
	}
	
.dropnav-img.active {
	/*display: block!important;*/
	}

.menu-link.has-children:after {
	content: "❯";
	font-size: 1.6rem;
	position: absolute;
	margin-left: 0.5em;
	bottom: 0px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
.menu-link.has-children.submenu-open:after {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	}

/*	
.home-page .menu-link {
	color: var(--white);
	}
.home-page .is-solid .menu-link {
	color: var(--dark-blue);
	}
*/
@media screen and (min-width: 1386px) { /* 1080 */
	.page-header .inner {
		/* align-items: flex-end; */
		}
	.main-navigation {
		display: flex;
		flex-direction: row;
		position: relative;
		justify-content: flex-start;
		align-items: center;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		background-color: transparent;
		overflow: visible;
		flex-basis: 34%;
		opacity: 1;
		z-index: 1;
		}

	.menu-item {
		position: unset;
		position: relative; /* V2 */;
		display: inline-block;
		margin: 0 1em;
		white-space: nowrap;
		}

	.menu-link,
	.menu-item-2 .menu-link {
		/*color: #fff;*/
		font-size: 1.15rem;
		line-height: 1.2;
		font-weight: var(--body-med);
		/*padding: 1em 0;*/
		/*display: inline-block;*/
		}
		
	.menu-item:hover .dropnav {
		top: 130%;
		visibility: visible;
		opacity: 1;
		}
	/*
	.menu-link:before {
		content: "";
		position: absolute;
		height: 14px;
		width: 8px;
		top: 10px;
		left: -16px;
		background: var(--accent);
		z-index: -1;
		opacity: 0;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
	.menu-link:hover:before,
	.menu-link.on:before {
		opacity: 1;
		vertical-align: middle;
		}
	*/
	
	.menu-link:hover {
		color: var(--accent);
		text-decoration: none;
		}
	.menu-link.on {
		text-decoration: none;
		}
		
	/*
	.dropnav {		
		display: block;
		position: absolute;
		width: auto;
		top: 120%;
		left: -20px;
		text-align: left;
		background: #fff;
		z-index: 9999;
		visibility: hidden;
		opacity: 0;
		padding: 20px;
		box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
		white-space: nowrap;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: translateX(0px);
		-o-transform: none;
		transform: none;
		-webkit-transition: all .3s ease;
		-moz-transition: all .3s ease;
		-o-transition: all .3s ease;
		transition: all .3s ease;
		}
		
	.dropnav:before {
		content: "";
		position: absolute;
		top: -28px;
		left: 80px;
		height: 0;
		width: 0;
		border: 15px solid transparent;
		border-bottom: 15px solid #fff;
		}
	*/
		
	.dropnav ul,
	.nav-services {
		margin: 0;
		}
		
	.dropnav li {
		display: block;
		text-align: left;
		margin: 0;
		padding: 0;
		}

	.dropnav .menu-item {
		font-family: var(--body-font);
		font-weight: var(--body-med);
		color: #222;
		font-size: 1rem;
		line-height: 1.2;
		margin: 0 0 0.4em;
		padding: 0;
		text-transform: none;
		text-decoration: none;
		background-color: transparent;
		border-bottom: 2px solid transparent;
		}
		
	.dropnav .menu-item:hover,
	.dropnav .menu-item.on {
		color: #000;
		text-decoration: none;
		border-bottom: 2px solid var(--accent);
		}

	.main-navigation .level-2 {
		margin: 0;
		}
	.main-navigation .level-2 ul {
		margin: 0 0 0.2em;
		}
	.main-navigation .level-3 .menu-item {
		font-weight: var(--body-lignt);
		font-size: 1rem;
		margin-left: 1em;
		}	
		
	.submenu-toggle {
		position: relative;
		top: -1px;
		z-index: 2;
		display: inline-block;
		height: 12px;
		line-height: 12px;
		font-size: 12px;
		}

	.submenu-toggle:before {
		content: '\f107';
		font-family: 'FontAwesome', sans-serif;
		}
}

/* ----- [ Menu Trigger (Hamburger) ] ---- */
.menu-toggle {
	position: relative;
	position: absolute;
	right: 20px;
	top: 32px;
	margin: 0 1em 0 0;
	display: block;
	background: transparent;
	width: 44px;
	height: 44px;
	cursor: pointer;
	}
.menu-toggle a {
	display: none;
	}

.menu-toggle .menu-icon {
	/* this span is the central line in the menu menu */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 26px;
	height: 2px;
	background-color: #000;
	/* these are the upper and lower lines in the menu menu */
	}
.menu-toggle .menu-icon::before, 
.menu-toggle .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: inherit;
	left: 0;
	}
.menu-toggle .menu-icon::before {
	bottom: 8px;
	}
.menu-toggle .menu-icon::after {
	top: 8px;
	}
.menu-toggle.is-clicked .menu-icon {
	background-color: rgba(0, 0, 0, 0);
	}
.menu-toggle.is-clicked .menu-icon::before, 
.menu-toggle.is-clicked .menu-icon::after {
	background-color: #000;
	}
.menu-toggle.is-clicked .menu-icon::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}
.menu-toggle.is-clicked .menu-icon::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}

/* was prefaced by 'is-solid' class */	
/*
.menu-toggle .menu-icon {
	background-color: #fff;
	}
.menu-toggle.is-clicked .menu-icon {
	background-color: rgba(255, 255, 255, 0);
	}
.menu-toggle.is-clicked .menu-icon::before, 
.menu-toggle.is-clicked .menu-icon::after {
	background-color: #222;
	}
*/
	
@media screen and (min-width: 1386px) { /* 1080 */
	.menu-toggle {
		display: none;
		}
	.menu-toggle .menu-text {
		display: inline-block;
		line-height: 70px;
		}
	.menu-toggle .menu-icon {
		left: auto;
		right: 1.25em;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		}
	.menu-link.has-children:after {
		content: none;
		}
}

/* ----- [ Search Form: Header ] -------------- */
.nav-utility {
	width: auto;
	}
a.nav-utility-link {
	display: inline-block;
	margin: 0 2px;
	padding: 0;
	height: 20px;
	}

.utility-icon {
	padding-top: 2px;
	stroke: var(--dark-blue);
	}
	
.i-search-open,
.search-open,
.search-open .i-search-close {
	display: block;
	}
.i-search-close,
.search-close,
.search-open .i-search-open {
	display: none;
	}
	
.search-trigger svg {
	height: 30px;
	width: 30px;
	stroke: var(--dark-blue);
	}
	
.home-page .search-trigger svg {
	stroke: var(--white);
	}
.home-page .is-solid .search-trigger svg {
	stroke: var(--dark-blue);
	}

.drop-search {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 0 15px;
	text-align: left;
	z-index: 110;
	height: auto;
	/*background: #fff;
	background: rgba(255,255,255,0.95);*/
	}
.search-open {
	display: block;
	}
	
.drop-search div {
	}

.header-search,
.header-search2,
.newsletter-signup,
.side-search {
	max-width: 1040px;
	margin: 30px auto;
	margin: 0 auto;
	overflow: hidden;
	}
.newsletter-signup {
	overflow: visible;
	}
.header-search .button,
.header-search2 .button,
.side-search .button {
	float: right;
	height: auto;
	height: 60px;
	padding-right: 0;
	/*padding: 6px 10px;
	border-radius: 0 3px 3px 0;*/
	background: none;
	border: none;
	}
.header-search .button:hover,
.header-search2 .button:hover,
.newsletter-signup .button:hover,
.side-search .button:hover {
	background: none;
	}
.search-input,
.search-input2,
.side-search .search-input,
.newsletter-input {
	font-size: 3rem;
	font-weight: 300;
	padding: 10px 20px;
	/*border-radius: 3px 0 0 3px;*/
	border: none;
	border-bottom: 1px solid #d1d1d1;
	background: none;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    resize: none;
    -webkit-appearance: none;
    -moz-appearance: none;
	}
	
.newsletter-signup {
	display: flex;
	flex-direction: column;
	}
.newsletter-signup-wrapper {
	overflow:hidden;
	padding-right:0
	}
.newsletter-input {
	width:100%;
	border: 1px solid #ccc;
	font-size: 1.6rem;
	}
.newsletter-signup .button {
	height: 60px;
	flex: 1 0 auto;
	color: #fff;
	background: #EE3B76;
	padding: 0 2em;
	font-size: 1.2rem;
	}
	
@media screen and (min-width: 1120px) {
	.newsletter-signup {
		display: flex;
		flex-direction: row;
		}
}

.side-search {
	margin: 20px auto;
	}

.side-search .search-input {
	font-size: 18px;
	font-weight: 400;
	}
.side-search .button {
	height: auto;
	margin-right: 10px;
	background: #fff;
	}

@media only screen and (min-width: 1386px) { /*1024 */
	.header-search,
	.header-search2 {
		display: block;
		background: var(--white);
		padding: 20px;
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
		}
}
.search-submit {
	border: none;
	display: block;
	opacity: 1;
	width: 30px;
	height: 40px;
	text-indent: -9999px; 
	cursor: pointer;
	outline: none;
	float: right;
	}
.search-query {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 0.5em 0;
	margin-top: 10px;
	outline: none;
	}

@media only screen and (min-width: 1386px) {
	.search-trigger,
	.search-submit {
		border: none;
		display: inline-block;
		}
}

/* ----- [ Home Hero ] --------------- */
.home-hero {
	margin: 0 auto;
	padding: 0;
	height: auto;
	height: 90vh;
	min-height: 300px;
	max-height: 850px;  
	}
/* if video */
/*
.home-hero.jarallax {
	height: 70vw;
	max-height: 75vh;
	height: auto;
	height: 90vh;
	min-height: 300px;
	max-height: 850px;  
	}
.vimeo-wrapper {
	position: fixed;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
	background: #fff url('../images/circle-icon2.png') 50% 50% no-repeat;
	}
*/

/* New Grid Hero */
.home-hero .hero-overlay {
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0, 0, 0, 0.3);
	}
/* Fancy Hero */
.home-hero-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: var(--inner-wide);
	padding: 3% 0;
	margin: 0 auto;
	display: flex;
	/* adjustable */
	justify-content: flex-start;
	align-items: center;
	}
.home-hero-content {
	width: 45%;
	width: 100%;
	padding: 2em;
	/*min-width: 600px;*/
	}
.home-hero-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 2em;
	}
.home-hero-grid > .feature-box {
	flex: 1 1 calc((100% - 40px) / 3);
	margin: 0; 
	box-shadow: 0 5px 10px rgba(0,0,0,0.25);
	}
.home-grid-head {
	color: var(--white);
	background: var(--dark-blue);
	font-weight:var(--body-regular);
	font-size: 1rem;
	position: absolute;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 0.4em 0.6em;
	white-space: nowrap;
	overflow: ellipse;
	}
.home-hero-content h2 {
	color: var(--white);
	font-size: 2rem;
	font-size: 3.2rem;
	font-weight: var(--display-regular);
	margin-bottom: 0.2em;
	}
	
@media screen and (max-width: 450px) {
	.home-hero,
	.home-hero.jarallax {
		height: 45vh;
		}
}
@media screen and (min-width: 540px) {
	.home-hero {
		padding-top: 0;
		}
}
@media screen and (min-width: 600px) {
	.home-hero {
		margin: 0 auto;
		padding: 0;
		/*padding-top: 20px;*/
		height: auto;
		height: calc(90vh - 100px);
		min-height: 300px;
		max-height: var(--home-hero-max-height);
		}
	.home-hero .inner {
		/*justify-content: center;*/
		}
		
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
	.f-between { justify-content: space-between; }
	.f-stretch { justify-content: stretch; }
}
@media screen and (min-width: 768px) {
	.home-hero-content {
		width: 45%;
		}
}
@media screen and (min-width: 1620px) {
	.home-hero-inner {
		max-width: 100%;
		margin-inline: 8vw;
		}
}


/* check if mobile */
@media (pointer: coarse) {
	.hero-section {
	 	background-attachment: initial !important;
		}
}

/* ----- [ Hero Images ] ----------------- */
.hero {
	margin: 0 auto;
	padding: 0;
	height: 80vh;
	min-height: 200px;
	max-height: 280px;  
	}
.hero-overlay {				
	/* z-index: 1; */
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	background: transparent;
	background: rgba(0, 0, 0, 0);
	}
.hero-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: flex-end; 
	align-items: center;
	height: 100%;
	padding: 0;
	position: relative;
	}
@media screen and (min-width: 600px) {
	.hero {
		height: 70vh;
		max-height: 350px;  
		}
}


/* ----- [ Home: Services ] -----------------*/

/* ----- [ Home: Intro ] -----------------*/
.page-intro-section {
	padding: 0;
	}
.page-intro-text {
	padding: 3em 0 3em;
	}
	
.home-page .page-intro-text {
	text-align: center;
	padding: 3.2em 0;
	}
.home-page .page-intro-section h2 {
	color: var(--light-blue);
	font-size: 2.55rem;
	line-height: 1.35;
	text-align: center;
	letter-spacing: -0.01em;
	max-width: 36ch;
	margin: 0 auto;
	}
	
.page-intro-text h1 {
	max-width: 31ch;
	max-width: 28ch;
	/*text-wrap: balance;*/
	}

.breadcrumbs {
	position: relative;
	display: inline-block;
	padding: 6px 12px 6px 6px;
	color: #fff;
	background: var(--light-blue);
	z-index: 2;
	display: none;
	}
.breadcrumbs:before {
	content: "";
	position: absolute;
	background: inherit;
	top: 0;
	left: -1000%;
	right: 100%;
	bottom: 0;
	z-index: -1;
	}
.breadcrumbs a {
	text-decoration: none;
	}
.breadcrumbs a:hover {
	color: var(--white);
	text-decoration: underline;
	}
/*
.page-intro-section h1,
.page-intro-section h2 {
	font-weight: var(--display-med);
	font-size: 2.6rem;
	line-height: 1.4;
	}
*/

/* ----- [ Video Wrapper Section ] ----------*/
.video-section {
	padding: 2em 0 0 !important;
	}
.video-section .TextformatterVideoEmbed {
	margin-bottom: 0 !important;
	}
	
/* ----- [ Two Columns Section ] ----------*/
.two-columns {
	margin-block: 0;
	/*padding-block: 0!important;*/
	overflow: hidden;
	}
.two-columns .image-header {
	position: relative;
	}
.two-columns .image-header.with-overlay::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.45);
	}

.two-columns .image-header h2 {
	color: var(--white);
	}
	
.image-header {
	padding: 3em 0 2em;
	color: #fff;
	}
	
.col-padding {
	padding: 6em 6.5% 5em 0;
	}
.col-padding:nth-child(even) {
	padding: 6em 0 5em 6.5%;
	}
.col-padding:before {
	content: "";
	position: absolute;
	top: 0;
	left: -1000px;
	right: 100%;
	bottom: 0;
	background: inherit;
	}
.col-padding:nth-child(even):before {
	content: "";
	left: 100%;
	right: -1000px;
	}


/* ----- [ Careers Page ] -----------------*/
.job-post {
	border-top: 1px solid var(--trust-blue);
	padding-top: 1.5em;
	
	}
.job-post p {
	margin-bottom: 0.3em;
	}
.job-post p:last-child {
	margin: 1em 0;
	}

/* ----- [ Home: Features ] -----------------*/
.featured-section {
	margin: 0 0 0;
	}
	
.feature-col {
	margin: 0;
	}

.feature-col-right .row {
	row-gap: 2em;
	}
	


.feature-box {
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: space-between;
	height: 100%;
	padding: 0;
	margin-bottom: 2em;
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: 10px 10px 15px rgba(0,0,0,0.25);
	}  
	
.feature-img-wrapper {
	display: block;
	height: 100%;
	/*height: 400px;*/
	}

.feature-img-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*ackground: rgb(0,0,0);*/
	/*background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(1,0,14,0.6) 22%, rgba(0,0,0,0) 58%);*/
	}
.feature-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .4s ease;
	}
	
.feature-box:hover .feature-img {
	transform: scale(1.05);
	}

.feature-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -55px;
	padding: 0.5em;
	color: inherit;
	background: var(--dark-blue);
	transition: all .3s ease;
	}

.feature-text h3 {
	color: inherit;
	font-size: 1.6rem;
	/*font-size: clamp(2rem, 3.3vw, 2.3rem);*/
	font-weight: var(--body-semibold);
	line-height: 1.1;
	margin: 0 0 0.2em;
	}
.feature-text h3 {
	font-size: 1.25rem;
	line-height: 1.3;
	font-weight: var(--body-medium);	
	min-height: 52px;
	}
.home-page .feature-text h3 {
	min-height: 0;
	}
.feature-text .button {
	margin: 1em 0 0;
	opacity: 0;
	transition: opacity .3s ease;
	}
.feature-box .feature-subtitle {
	display: none;
	}
.feature-box:hover .feature-subtitle {
	display: block;
	}
.feature-box:hover .feature-title {
	display: none;
	}
.feature-box:hover h3 {
	/*min-height: 0;*/
	}
.feature-box:hover .feature-text {
	bottom: 0;
	}
.feature-box:hover .feature-text .button {
	opacity: 1;
	}
	
.feature-row {
	flex-wrap: nowrap;
	column-gap: 30px;
	}
	

	
@media screen and (min-width: 600px) {
	.featured-section {
		margin: 0;
		}
	.feature-text {
		padding: 1.2em 1em 0.8em;
		padding: 1em 1em 0.7em
		}
	.feature-img-wrapper {
		display: block;
		height: 100%;
		}
}
	
/* ----- [ image card ] ----- */
.media {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility:hidden;
	z-index: 1;
	}
	
/*
.sticky-body {
	position: sticky;
	top: 100px;
	margin-bottom: 2em;
	}
*/
.side-images {
	margin-bottom: 15px;
	}
	
/* ----- [ Advantages section ] -------------- */	
.advantages-section .inner {
	text-align: center;
	padding: 3%;
	background: var(--light-grey);
	border-radius: 30px;
	}
.media-overlay {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.2);
	transition: all 0.3s ease-in-out;
	}
.card-body {
	position: absolute;
	bottom: -30px;
	right: 0;
	left: 0;
	padding: 20px;
	text-align: left;
	color: #fff;
	z-index: 10;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
	
.card-body h3 {
	color: #fff;
	margin-bottom: 0.5em;
	}
.image-card .button {
	opacity: 0;
	transition: all .3s ease;
	background: var(--blue2);
	}

.image-card:hover .media-image {
	transform: scale(1.1);
	/*z-index: 1;*/
	}
.image-card:hover .media-overlay {
	background: rgba(0,0,0,0.6); 
	}
.image-card:hover .card-body {
	bottom: 10px;
	}
.image-card:hover .button {
	opacity: 1;
	}
	
	
/* ----- [ Advantages section ] -------------- */	
.advantages-section .inner {
	text-align: center;
	padding: 3%;
	background: var(--light-grey);
	border-radius: 30px;
	}
.icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 30px;
	margin: 0 10% 30px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 30px 40px -24px rgba(0,0,0,0.2);
	}
.icon-wrapper > img {
	display: inline-block;
	object-fit: contain;
	width: 70%;
	height: 70%;
	object-position: 50% 50%;
	}
	
.icon-wrapper + h3 {
	font-size: 1.3rem;
	padding: 0 5%;
	text-align: center;
	}
	
/* ----- [ Import Guidance Pages ] --------- */
.guidance-section {
	padding-top: 0;
	}
	
	
/* ----- [ FAQ 2 ] ----------- */
.accordion {
	margin: 0 0 1em;
	padding: 0;
	position: relative;
	border-bottom: 1px solid #000000;
	border-top: none;
	width: 100%;
	}
.accordion-term {
	list-style: none;
	margin: 0;
	padding: 0.6em 0;  
	border-top: 1px solid #000000;
	}
.accordion-term a {
	display: block;
	padding: 0.3em 1em 0.3em 0;
	vertical-align: middle;
	position: relative;
	transition: all .2s ease; 
	border-bottom: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
	}
.accordion-term a:after {
	content: '+';
	color: #000;
	top: 5px;
	right: 5px;
	position: absolute; 
	}
.accordion-term a:hover,
.accordion-term a.open {
	color: var(--accent-red);
	text-decoration: none!important;
	}
.accordion-term a:hover:after { 
	color: var(--accent-red);
	}
.accordion-term a.open:after {
	content: '-'; 
	color: var(--accent-red);
	}
.accordion-detail {
	display: none;
	padding: 0 0 1em;
	margin-bottom: -1px;
	border-bottom: 1px solid #000000; 
	}

.accordion h2,
.accordion h3 {
	font-size: 1.7rem; 
	margin: 0;
	text-transform: none;
	}
.cms-text .accordion a,
.cms-text .accordion a:hover {
	text-decoration: none;
	}
.cms-text .accordion a:hover {
	text-decoration: underline;
	}
	
.page-section.dark .accordion,
.page-section.dark .accordion-detail {
	border-bottom: 1px solid #ffffff;
	}
.page-section.dark .accordion-term {
	border-top: 1px solid #ffffff;
	}
.page-section.dark .accordion-term a:after,
.page-section.dark .accordion-term a.open:after {
	color: #ffffff;
	}
	
	
/* ----- [ Import Sidebar ] --------- */
.sticky-sidebar {
	position: sticky;
	top: 160px;
	}
.import-sidebar h3,
.fish-finder-sidebar h3 {
	font-size: 1.3rem;
	margin: 0;
	color: var(--white);
	background: var(--dark-blue);
	padding: 10px 30px;
	}
.fish-finder-sidebar h3 {
	background: #6f6a67;
	}
.additional-info {
	color: var(--white);
	background: var(--light-blue);
	font-weight: var(--body-light);
	padding: 30px;
	margin-bottom: 1em;
	}
.fish-finder-sidebar .additional-info {
	color: var(--black);
	background: #f2efec;
	padding: 30px;
	}
.additional-info ul {
	margin: 0;
	}
.additional-info li {
	list-style-type: square !important;
	}
	
.fees-sidebar li {
	margin: 0 0 0.6em;
	}
	
.related-updates {
	display: flex;
	flex-direction: row;
	background: var(--dark-blue);
	margin-bottom: 1em;
	}
.related-updates > a {
	display: block;
	width: 140px;
	}
.related-updates > div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 1;
	}

	
/* ----- [ Fish Finder ] ----------- */
.fish-tool {
	max-width: 960px;
	}
.fish-tool input {
	border-radius: 25px;
	padding: 10px 1em;
	margin-bottom: 1.5em;
	}
.results-wrapper {
	overflow: auto;
	}
.result-head th {
	font-size: 1.1rem;
	font-weight: var(--body-medium);
	white-space: nowrap;
	}
.result-head td {
	font-size: 1.1rem;
	line-height: 1.2;
	font-weight: var(--body-regular);
	}
.results-wrapper td {
	line-height: 1.2;
	}
	
/* ----- [ CHED-D Countries ] ----------- */
.az-tool {
	padding: 1em 0;

	}
.az-tool a {
	font-size: 1.4rem;
	margin: 0 0.5em 1em 0;
	text-decoration: none;
	}

.ched-header {
	background: var(--light-tint);
	position: sticky;
	top: 120px;
	z-index: 990;
	border-bottom: 2px solid var(--black);
	margin-bottom: -2px;
	}
.country-head {
	border-top: 2px solid var(--black);
	}	
.country-head .col {
	padding: 10px;
	font-weight: var(--body-medium);
	font-size: 1.1rem;
	}

.flag-wrapper {
	height: 20px;
	width: 34px;
	display: inline-block;
	margin-right: 8px;
	vertical-align: -4%;
	}
.flag {
	height: 100%;
	width: auto;
	border: 1px solid #ccc;
	}
.country-name {
	font-size: 1.4rem;
	line-height: 1.3;
	padding: 0.3em 0;
	padding-left: 2.6em;
	text-indent: -2.15em;
	position: sticky;
	top: 235px;
	}

.first-row,
.first-row .t-1of4 {
	border-top: 1px solid var(--black);
	}

.country-wrapper {
	position: relative;
	border-top: 2px solid var(--black);
	}
.country-wrapper:nth-of-type(even),
.country-b div {
	/* background: rgba(244,238,235,0.35); */
	}
.country-data {
	/*margin-top: -1px;*/
	}
.country-data > .col {
	padding: 10px 10px;
	border-top: 1px solid var(--black);
	border-left: 1px solid var(--black);
	}
.country-data > .col:before {
	content: "";
	}
.country-data p,
.country-data li {
	font-size: 1.05rem;
	margin-bottom: 0.6em;
	padding-right: 1em;
	}
.country-data ul {
	margin: 0 0 0.6em;
	}
.country-data li {
	margin-bottom: 0;
	list-style: square;
	list-style-position: inside;
	margin-left: 1em;
	text-indent: -1em;
	}
	
.people-grid {
	background: #fff;
	border-bottom: 2px solid var(--black);
	}
	
.jumbotron {
	padding: 2em;
	text-align: center;
	}
.restricted {
	background: #FAE2D5;
	}
	
	
/* ----- [ Text/Images section ] -------------- */	
.text-image-section {
	padding-top: 0;
	padding-bottom: 0;
	margin: 5vw 0;
	margin: 60px 0;
	margin: 0;
	}
.text-image-section .inner {
	padding: 0;
	}
.text-image-section .col {
	position: relative;
	}
	
/*	
.bg-tint .service-text-wrapper,
.row-reverse .service-text-wrapper {
	padding: 2em 30px;
	margin: 0;
	}
*/

.flex-img-col {
	flex: 1 0 auto;
	/*padding-inline: 30px !important;*/
	}
.flex-text-col {
	/*flex: 1 0 auto!important;*/
	/*flex: 0 0 50%;*/
	/*padding-inline: 30px !important;*/
	}
/*
.flex-text-col.bg-tint:before {
	content: "";
	position: absolute;
	top: 0;
	left: -200px;
	bottom: 0;
	right: 100%;
	background: inherit;
	}
	
.row-reverse .flex-text-col.bg-tint:before {
	content: "";
	right: -200px;
	left: 100%;
	}
*/

.service-image-wrapper {
	position: relative;
	margin-bottom: 20px;
	margin-bottom: 0;
	}
.service-image {
	display: block;
	width: 100%;
	}
/*
.dark .service-image-wrapper {
	margin-top: 20px;
	}
*/

.service-text-wrapper {
	padding: 30px 20px 20px;
	}
	
@media screen and (max-width: 767px) {
	.flex-text-col {
		/*--text-flex: 1 0 100%;*/
		flex: 1 0 100% !important;
		}
}
@media screen and (min-width: 768px) {
	.service-text-wrapper {
		margin: 0;
		padding: 6em 30px 6em 8%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		}
	.flex-text-col {
		/*flex: unset !important;*/
		}

	.row-reverse .service-text-wrapper  {
		padding: 6em 8% 6em 30px;
		}
		
	.service-image-wrapper { 
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		}
	.service-image-wrapper img {
		object-fit: cover;
		height: 100%;
		}
		
	.offset-up { margin-top: 3%; }
	.offset-down { margin-bottom: 3%; }
	.offset-both { margin-block: 3%; }
	.offset-up .flex-text-col { margin-top: -3%; margin-bottom: 3%; }
	.offset-down .flex-text-col { margin-top: 3%; margin-bottom: -3%; }
	.offset-both .flex-text-col { margin-block: -3%; }
	
	.offset-up .flex-text-col:before,
	.offset-down .flex-text-col:before,
	.offset-both .flex-text-col:before {
		content: "";
		position: absolute;
		top: 0;
		left: -30%;
		right: 100%;
		bottom: 0;
		background: inherit;
		}
	.row-reverse.offset-up .flex-text-col:before,
	.row-reverse.offset-down .flex-text-col:before,
	.row-reverse.offset-both .flex-text-col:before {
		left: 100%;
		right: -30%;
		}
	
}
@media screen and (min-width: 1298px) {
	.service-text-wrapper {
		padding: 6em 10%;
		margin-left: 0;
		margin-right: calc((100vw - 1248px) / 2 - 10%); /* var? */
		}
	.row-reverse .service-text-wrapper {
		padding: 6em 10%;
		margin-left: calc((100vw - 1248px) / 2 - 10%);
		margin-right: 0;
		}
}
	
	
.home-page .page-section .dark .cms-text p > img {
	margin-bottom: 4em;
	}
	
	
	
	
/* ----- [ Hero Sections ] -------------- */
.hero-section {
	}
.hero-section .inner {
	display: flex;
	/*flex-direction: row;*/
	}
.hero-section-text {
	color: #fff;
	background: rgba(0,0,0,0.6);
	padding: 3% 4%;
	width: auto;
	max-width: 32em;
	}
.hero-section-text p,
.hero-section-text h2,
.hero-section-text h3,
.hero-section-text h4 {
	color: #fff;
	line-height: 1.1;
	}
.hero-section-text p:last-child {
	margin-bottom: 0;
	}

.hero-section-head {
	background: #EDEDED;
	padding: 20px;
	}
.hero-section-head h2 {
	max-width: calc(var(--inner) - 30px);
	margin: 0 auto;
	}
	
/* fake instagram */
.section-instagram {
	margin: 80px 0 30px;
	}
.section-instagram .base-row .insta-post {
	border: 5px solid #fff;
	}
	
.socials-page .hero-section {
	margin-bottom: 3em!important; 
	}
	
	
/* Section Spacers/Margin */
.spacer-none { margin-bottom: 0; }
.spacer-small { margin-bottom: 3em; }
.spacer-medium { margin-bottom: 5em; }
.spacer-large { margin-bottom: 7em; }
	
/* ----- [ CTA section ] -------------- */
.cta-section {
	background: var(--brand-light);
	text-align: center;
	padding: 40px 5px;
	}
.cta-section p {
	margin: 0 auto;
	font-size: 2rem;
	font-weight: var(--display-bold);
	}
	
	
/* ----- [ Other Activities Section ] --------- */
.page-wrapper {
	/*overflow: hidden;*/
	}
.other-activities-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 35%;
	background: #ededed;
	/*transform: rotate(-2deg);*/
	/*transform: skew(0, -2deg);*/
	}

/* ----- [ Sponsor Logos (ce) ] --------------- */
.sponsor-section {
	margin: 0;
	padding: 25px 0;
	background: #fff;
	}
.sponsor-logos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	max-width: 100%;
	padding: 0;
	}
.sponsor-logo {
	margin: 0 3%;
	height: 72px;
	}
.sponsor-logo img {
	height: 100%;
	/*width: 200px; */
	max-width: 200px;
	object-fit: scale-down;
	}

/* ----- [ Flex Pages/Sections ] -----------------*/
/* About us */
.child-content:nth-child(even) .row {
	flex-direction: row-reverse;
	}
	
.side-images h5 {
	margin: 0.2em 0;
	}
	
.side-images a {
	display: block;
	overflow: hidden;
	}
.side-images a img {
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.side-images a:hover img {
	transform: scale(1.05);
	}
	
	
/* ----- [ Page sections ] -----------------*/
.image-wrapper {
	height: 100%;
	/*margin-bottom: 3.5em;*/
	}
.section-image {	
	margin: 0 0 2em;
	border-radius: 30px;
	box-shadow: 0 52px 60px -24px rgba(0,0,0,0.3);
	width: 100%;
	max-height: 900px;
	object-fit: cover;
	object-position: middle;
	}
	
.text-image-boxed {
	padding-left: 20px;  
	padding-right: 20px;
	}
.text-image-boxed .inner {
	max-width: calc(var(--inner) - 30px);
	padding: 0;
	background: var(--brand-light); 
	border-radius: 30px;
	overflow: visible;
	}
	
.text-image-boxed .row {
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 52px 60px -24px rgba(0,0,0,0.3);
	}
.text-image-boxed .image-col {
	padding: 0;
	}
.text-image-boxed .image-wrapper {
	margin-bottom: 0;
	height: 100%;
	overflow: hidden;
	}
.text-image-boxed .section-image {
	border-radius: 0;
	box-shadow: none;
	height: 100%;
	}
.text-image-boxed .text-wrapper {
	padding: 8% 8%;
	}
	
/* specifics */
#how-does-it-work {
	margin-top: 150px;
	}
#how-does-it-work .row {
	margin-top: -200px;
	}	

@media screen and (min-width: 600px) {
	.text-image-boxed {
		padding-left: 30px;  
		padding-right: 30px;
		}
	.text-image-boxed .text-wrapper {
		padding: 10% 12%;
		}
}


.bg-tint {
	background: var(--light-tint); /* change this? */
	}
	
.bg-tint + .bg-tint {
	background: var(--white);
	}

.page-section {
	overflow: hidden;
	}
.page-section .inner {
	overflow: visible;
	}

.tint {
	background: var(--brand-light);
	}
.tint2 {
	background: #eee;
	}
	
.home-page .advantages-section {
	margin-top: 100px;
	}
	
/* ----- [ Media/Bio ] -----------------*/
.media-wrapper {
	display: block;
	position: relative;
	margin: 0 0 16px;
	text-decoration: none;
	border: none;
	overflow: hidden;
	}

.media-wrapper img {
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.media-link {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0);
	border: 1px solid #000;
	transition: all 0.3s ease-in-out;
	}
.media-wrapper .button {
	position: absolute;
	bottom: 0;
	left: 10px;
	opacity: 0;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
	}
.media-wrapper:hover .media-link {
	background: rgba(0,0,0,0.6);
	}
.media-wrapper:hover img {
	transform: scale(1.1);
	}
.media-wrapper:hover .button {
	bottom: 10px;
	opacity: 1;
	}
.media-body p {
	line-height: 1.4;
	}
	
.read-bio {
	position: absolute;
	bottom: 0;
	left: auto;
	right: 0;
	margin: 0;
	padding: 5px 15px;
	-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
	}
.media:hover .read-bio {
	opacity: 1;
	}

.bio-popup {
	display: none;
	}
.about-us-page .featherlight .featherlight-content {
	max-width: 48em;
	padding: 2.5em 2.5em 0.5em;
	border-radius: 25px;
	}
.about-us-page .featherlight:last-of-type {
	background: rgba(0,0,0,0.65);
	}
.featherlight .featherlight-close-icon {
	top: 15px;
	right: 15px;
	font-size: 1.8rem;
	color: #333;
	}

/* ----- [ News ] -----------------*/
.main-content {
	padding-top: 0;
	}
.main-content div {
	}

.news-row,
.media-row {
	padding: 25px 0;
	}
.news-row:before {
	content: "";
	position: absolute;
	height: 1px;
	top: 0;
	left: 20px;
	right: 20px;
	border-top: 2px solid var(--black);
	}

.news-row-text h3 {
	font-size: 1.85rem;
	line-height: 1.2;
	/*font-weight: var(--body-regular);*/
	}
.news-row-text p {
	line-height: 1.4;
	}
.news-row .post-date,
.news-card .post-date {
	font-size: 1rem;
	font-weight: var(--body-medium);
	margin-bottom: 0.8em;
	}

/* parent-style */
.sidebar-box {
	color: inherit;
	background: #EAE9E7;
	background: var(--light-tint);
	padding: 15px 30px 10px;
	margin-bottom: 25px;
	}
.sidebar-box h4 {
	font-size: 1.4rem;
	}

.news-sidebar {
	color: #fff;
	background: var(--light-blue);
	}
.chatbot-sidebar {
	color: #fff;
	background: #0794C5;
	}
.chatbot-sidebar img {
	width: 70px;
	margin: 10px 0 20px;
	}
	
.news-sidebar h3 {
	font-size: 1.3rem;
	margin: 0;
	color: var(--white);
	}
	
.media-image {
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}

.media:hover .media-image {
	transform: scale(1.1);
	}
	
.news-article-hero {
	margin: 40px 0 2em;
	max-height: 600px;
	overflow: hidden;
	}
.news-item-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	}
.news-article .breadcrumbs:before {
	content: none;
	}
.news-article-hero + .breadcrumbs {
	margin-bottom: 40px;
	padding-left: 1em;
	}
	
.news-tags {
	margin: 2em 0 1em;
	}
	

.MarkupPagerNav {
	width: 100%;
	text-align: right;
	margin: 0;
	padding: 1em 0;
	border-top: 2px solid var(--black);
	}
.MarkupPagerNav li,
.main-text .MarkupPagerNav li {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1em;
	margin: 0 0 0 0.5em;
	}
.MarkupPagerNav a {
	display: block;
	padding: 10px 0;
	font-weight: var(--body-semibold);
	border: 2px solid var(--black);
	text-decoration: none;
	width: 42px;
	text-align: center;
	}

.MarkupPagerNav a:hover,
.MarkupPagerNav a:focus,
.MarkupPagerNavOn a {
	color: var(--white);
	background: var(--accent);
	border: 2px solid var(--black);
	text-decoration: none;
	}
	
.sibling-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-start;
	border-top: 4px solid var(--light-blue);
	margin-top: 2em;
	padding-top: 1.5em;
	
	}
.next-nav,
.prev-nav {
	flex: 1;
	min-width: 400px;
	}
.prev-nav {
	text-align: right;
	}
	
.chevron-link {
	font-size: 0.95rem;
	}
	

/* ----- [ About Page ] -----------------*/
#balloon h4,
#balloon p {
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 300;
	}
#balloon h4 {
	font-size: 0.9rem;
	font-weight: 700;
	}
	
.contact-page dd {
	columns: 2;
	}

/* ----- [ Services ] -----------------*/

/* ----- [ CMS Content ] -----------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	margin: 0 0 1em;
	}

.cms-text p > a {
	/*display: block;*/
	overflow: hidden;
	}
.cms-text p > a > img {
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}	
.cms-text p > a:hover > img {
	transform: scale(1.05);  
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text ul li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
	
.cms-text p + h2,
.cms-text ul + h2,
.cms-text ol + h2 {
	margin: 0.8em 0 0.3em;
	}
	
.cms-text h2,
.cms-text h3 {
	text-wrap: balance;
	}
/*	
.cms-text a:not(.button) {
	color: var(--brand-dark2);
	}
.cms-text a:not(.button):hover {
	color: var(--brand-light);
	}
*/	
/*
.cms-text a:not(.button) {
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    box-shadow: inset 0 -1px 0 var(--accent);
    color: inherit;
    transition:background .1s cubic-bezier(.33, .66, .66, 1)
	}

.cms-text a:not(.button):hover {
    background: var(--accent);
    background: rgba(246, 201, 74, .5);
    background: rgba(246, 212, 0, 0.3);
    color:#000;
	}
*/
.cms-text a:not(.button),
.show-hide {
	color: inherit;
	border: none;
	/*border-bottom: 2px dotted var(--black);*/
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2.5px;
	cursor: pointer;
	}
.cms-text a:not(.button):hover,
.show-hide:hover {
	color: inherit;
	color: var(--accent);
	/*border: none;*/
	text-decoration-style: solid;
	}
	
.import-sidebar .cms-text a:not(.button):hover {
	color: #fff !important;
	}
	
.cms-text .accordion dt a {
	text-decoration: none;
	}
.cms-text .accordion dt a:hover {
	text-decoration: underline;
	}
	
.cms-text hr {
	height: 2px;
	margin: 2em 0;
	border: none;
	background: var(--black);
	clear: both;
	}
	
.fee-tables hr:first-child {
	margin-top: 0;
	}
.fee-tables th {
	position: relative;
	}
.fee-tables th:first-child,
.fee-tables td:first-child {
	width: 80%;
	}
.fee-tables th:last-child:after {
	content: "+";
	position: absolute;
	top: 12px;
	right: 15px;
	font-size: 1.2rem;
	font-weight: var(--body-semibold);
	}
.fee-tables .is-open th:last-child:after {
	content: "–";
	}


p.image-row-1,
p.image-row-2,
p.image-row-3 {
	margin: 0 0 20px 0;
	overflow: hidden;	
	}

p.image-row-2 > img,
p.image-row-3 > img {
	float: none;
	width: 100%;
	margin: 0 0 20px 0;
	}

.child-links li {
	display: block;
	margin: 0 0 10px;
	}

@media screen and (min-width: 600px) { 
	/* CMS styles */
	p.image-row-2 > img {
		float: left;
		width: 48.75%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-2 > img:nth-of-type(even) {
		float: right;
		margin-right: 0;
	}

	p.image-row-3 > img {
		float: left;
		width: 31.7%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-3 > img:nth-of-type(3) {
		float: right;
		margin-right: 0;
	}

	p.image-row-4 > img {
		float: left;
		width: 23.2%;
		margin: 0 2.4% 0 0;
	}
	p.image-row-4 > img:nth-of-type(4) {
		float: right;
		margin-right: 0;
	}
}

/* ----- [ Basic/Legal ] --------------- */
/*
.basic-page-template .cms-text h2 {
	font-weight: var(--display-med);
	font-size: 1.9rem;
	line-height: 1.3;
	margin: 1em 0 0.3em;
	}
.basic-page-template .cms-text h2:first-child {
	margin-top: 0 !important;
	}
*/
.sidebar-nav {
	position: sticky;
	top: 160px;
	margin-top: 8em;
	padding: 0 0 2em 1.5em;
	border-left: 1px solid grey;
	}
.sidebar-nav li {
	margin: 0 0 0.5em;
	}

/* ----- [ About/Team (news) ] --------------- */
.media-card {
	margin-bottom: 30px;
	}
.media {
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
	}

.media .alt-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	visibility: hidden;
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}

.media:hover .alt-image {
	opacity: 1;
	visibility: visible;
	}
.media-text {
	padding: 10px 0;
	position: relative;
	}

.media-text h3,
.media-text h4 {
	font-size: 1.3rem;
	font-weight: var(--body-regular);
	line-height: 1.3;
	margin: 0 0 0.6em;
	}
.media-text h4 {
	font-size: 1.2rem;
	font-weight: var(--body-light);
	}
.media-text a {
	/*text-decoration: none;*/
	}

.instagram-feed {
	background: #eee;
	}
	
@media screen and (min-width: 600px) { 
	.media {
		margin-bottom: 0;
		}
}
	
/* ----- [ Insta ] ---------------------------- */
.instalink {
	position: absolute;
	top: 50%;
	left: 50%;
	/*padding: 30px;*/
	text-align: center;
	background: #fff;
	transform: translate(-50%, -50%);
	}
.instalink h3 {
	font-size: 1.2rem;
	margin: 0;
	}
.insta-icon {
	height: 36px;
	width: 36px;
	display: inline-block;
	vertical-align: -30%;
	}
.insta-post {
	height: 0;
	width: 100%;
	padding-bottom: 100%;
	position:relative;
	overflow: hidden;
	}
.insta-image {
	position:absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width:100%;
	height:100%;
	object-fit: cover;
	/*padding: 5px;*/
	}
	
.vid-icon {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	}
.vid-icon img {
	width: 60px;
	height: 60px;
	opacity: 0.5;
	}
.vid-icon:hover img {
	opacity: 1;
	}
	
	
/*------------ Social Page ------------*/
.social-insta-gallery {
    max-width: 1140px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
	}
.social-insta-gallery-card {
    object-fit: cover;
    /*aspect-ratio: 1/1;*/
    width: 100%;
    /*min-height: 100%;*/
    /*max-height: 500px;*/
    min-width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
	}

.social-insta-gallery-link {
	border: none;
	overflow: hidden;
}
.social-insta-gallery-link:hover {
	border: none;
	text-decoration: none;
}
.social-insta-gallery-card img {
    max-width: 100%;
    max-height: 100%;
    /*aspect-ratio: 1/1;*/
    -webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.social-insta-gallery-link:hover img {
	border: none;
	text-decoration: none;
	transform: scale(1.05);
}
.insta-view-more-btn {
	width: 100%;
    display: flex;
    justify-content: center;
}


@media only screen and (min-width: 479px){
    .social-insta-gallery {
        grid-template-columns: repeat(2, 1fr);
    	}
    .insta-view-more-btn {
        width: auto;
        margin: 0 auto;
    	}
}

@media only screen and (min-width: 779px){
    .social-insta-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 762px){

}

/* ----- [ Contact Page ] --------------- */
/* ----- [ Include: Map/Contact Form ] -----------------*/
.map-section {
	padding: 0;
	}
.map {
	height: 500px; 
	position: relative;
	overflow: hidden;
	}

.contact-meta {
	max-width: 100%;
	margin: 0 auto 50px;
	}
	
.contact-meta .fa,
.contact-info .fa {
	width: 30px;
	text-align: center;
	margin: 0 -10px 0 10px;
	}
	
.contact-meta li,
.contact-info li {
	padding: 0 0 0 30px;
	text-indent: -30px;
	}

.form-wrapper {
  background: #f6f6f6;
  padding: 25px 30px;
  }

@media screen and (min-width: 900px) {
	.contact-meta {
		max-width: 750px;
		margin: 0 0 0 auto;
		}

	.map-col {
		padding-right: 0;
		position: relative;
		min-height: 500px;
		border-left: 8px solid #8d2427;
		}
	.map-canvas {
		height: 100%;
		margin: 0;
		}

	.map-address {
		bottom: auto;
		left: 55%;
		top: 45%;
		-webkit-transform: translate(0,-50%);
		-moz-transform: translate(0,-50%);
		-ms-transform: translate(0,-50%);
		-o-transform: translate(0,-50%);
		transform: translate(0,-50%);
		}
}

.contact-form-section {
	/*padding: 50px 0;
	background: #f6f6f6;*/
	}
.contact-form-section h3,
.contact-form-section p {
	text-align: center;
	margin: 0 0 0.5em;
	}

.contact-form-wrapper {
	margin: 50px 0 0 0;
	}

/* ----- [ Contact form ]----------------------- */
.InputfieldForm {
    display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
	}

.form__item {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin: 0;
	padding: 0;
	position: relative;
	}
.form__item--c_name,
.form__item--c_email {
	margin: 0;
	}

form > .form__item--c_contact_consent {
	margin: 0 0 20px;
	}
	
form > .form__item--scf-date {
	width: 100%;
	height: 0;
	}

@media screen and (min-width: 800px) {
	form > .form__item {
		width: 50%;
		padding: 0 20px 0 0;
		}
		
	form > .form__item--c_terms_consent {
		margin: 0 0 20px;
		}
	
	form > .form__item--forms3 {
		width: 100%;
		}
		
	.form__item--c_name,
	.form__item--c_email {
		margin: 0 0 20px;
		}
	.form__item--c_terms_consent,
	.form__item--c_contact_consent {
		margin: 0 0 20px;
		}
	.form__item--submit {
		margin: 0 auto;
		width: 100%;
		}
}

@media screen and (min-width: 900px) {
	form > .form__item {
		width: 50%;
		}
	form > .form__item--c_message {
		width: 100%;
		}
	.form__item--c_name,
	.form__item--c_email {
		margin: 0 0 10px;
		}
	.form__item--c_terms_consent,
	.form__item--c_contact_consent {
		margin: 0 0 20px;
		}
	.form__item--submit {
		margin: 0 auto;
		width: 100%;
		}
}

input,
select,
textarea {
    font-size: 1em;
    width: 100%;
    padding: 10px;
    margin: 0 0 10px;
	color: #333;
	background: #fff;
    webkit-appearance: none;
    /*border: 1px solid #ccc;*/
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #e1e1e1;
    }


input:focus, 
textarea:focus {
	background: #fff;
	}

input[type=submit],
input.button {
    -webkit-appearance: none;
    -moz-appearance: none;
	}
input[type="checkbox"] {
	width: auto !important;
	}

.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 0.9em;
	margin-bottom: 0;
	}

.form__item label {
	font-size: 0.9em;
	line-height: 1.35em;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none;
	}
.field--error--message {
	/*float: right;*/
	color: #f36617;
	font-weight: 400;
	font-size: 0.85em;
	margin: 0;
	position: absolute;
	right: 20px;
	bottom: -15px;
	}
	
.form__item--c_terms_consent .field--error--message {
	right: 40px;
	}
	
.form--error--message,
.form--success--message {
	text-align: center !important;
	font-size: 0.95em;
	font-weight: 400;
	color: #f00;
	border: 2px solid #f00;
	padding: 12px;
	margin: 5px 0 20px;
	width: 100%;
	}
	
.form--success--message {
	font-size: 1.2em;
	color: #00355e;
	color: #fff;
	background: #c5d301;
	background: olive;
	border: none;
	}

.FieldtypeCheckbox {
	margin-right: 0.5em;
	}
	
/* checkbox */
input[type=checkbox].FieldtypeCheckbox {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ccc;
    position: relative;
	outline: none;
    background: #f2f2f2;
    background: #fff;
    vertical-align: middle;
    margin: -2px 10px 0 0;
    -webkit-transition: 0.15s;
    cursor: pointer;
    float: left;
	}

input[type=checkbox].FieldtypeCheckbox:hover {
    border:1px solid #ccc;
	}

input[type=checkbox].FieldtypeCheckbox:before, 
input[type=checkbox].FieldtypeCheckbox:checked:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 7px;
    width: 5px;
    height: 11px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    opacity: 0;
	}
input[type=checkbox].FieldtypeCheckbox:checked:before {
    opacity: 1;
	}

#wrap_InputfieldSubmit span {
	display: none;
	}
	
.form__item--label {
	display: none;
	}	
	
li label span {
	display: none;
	}
	
form > .form__item--submit {
	text-align: center;
	width: 100%;
	}

.field--error--message {
	display: none;
	}
.field--required label:after {
	content: '*';
	color: #333;
	}
.field--error.field--required label:after {
	content: '*';
	color: #f00;
	font-size: 1.2em;
	}
.field--error.field--required .InputfieldMaxWidth {
	border: 1px solid #f00;
	}

/* buttons */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	color: var(--white);
	font-size: 0.95rem;
	line-height: 2;
	text-align: left;
	font-weight: var(--body-regular);
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
	background: var(--accent);
	border: 2px solid var(--accent);
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0.5em 1.2em;
	margin: 0;
	cursor: pointer;
	/* transitions */
	}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: var(--black);
	background: var(--white);
	}
	
.cms-text .button:hover {
	background: var(--brand-dark);
	}
	
.button-small {
	font-size: 0.85rem;
	padding: 0.25em 1em;
	}
	
.button-full {
	display: block;
	width: 100%;
	}
	
.gap-right {
	margin-right: 10px;
	}
.gap-left {
	margin-left: 10px;
	}
	
.button .fa {
	margin: 0 0.5em 0 -0.3em; 
	}

@media screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		white-space: nowrap;
		text-align: center;
		}
}	

table {
	border-top: 1px solid var(--black);
	margin-bottom: 20px;
	}
td,th {
	border-bottom: 1px solid var(--black);
	padding: 10px 10px 10px 0;
	vertical-align: top;
	}
	
.cms-text table {
	border: none;
	border-top: 1px solid var(--black);
	width: 100%;
	}
	
.cms-text td,
.cms-text th {
	line-height: 1.4;  
	padding: 10px 10px;
	border: none;
	border-bottom: 1px solid var(--black);
	}
	
td > img {
	padding-right: 8px;
	}

th > p,
td > p {
	margin: 0;
	}
.cms-text th {
	background: var(--light-tint);
	}
/*
.bg-tint .cms-text th {
	background: #fff;
	}
*/

/*
.cms-text p + table {
	margin-top: -1em;
	}
*/

/* ----- [ Testimonials ] --------------- */
.testimonials-section {
	margin: 0;
	overflow: hidden;
	}

.slick-testimonials {
	width: 100%;
	max-width: 35em;
	max-width: 55em;
	}
.testimonial-wrapper {
	/*width: 100%;
	max-width: 600px;*/
	}
	
.testimonial-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1 1 auto;
	color: #000;
	}
	
.testimonials.slick-initialized .slick-slide {
	display: flex;
	}

.testimonial blockquote {
	padding: 1em 0 2em;
	}

.testimonial p {
	font-family: var(--body-font);
	font-weight: var(--body-light);
	font-size: 1.2rem;
	line-height: 1.5;
	font-style: italic;
	margin-left: 2em;
	position: relative;
	}
.testimonial p:first-child:before {
	content: "”";
	position: absolute;
	top: 0.2em;
	left: -0.4em;
	font-size: 8rem;
	line-height: 0.2;
	color: var(--brand-dark);
	}

@media screen and (min-width: 770px) {
	.testimonial blockquote {
		padding: 1em 3em;
		}
	.testimonial p {
		font-size: 1.5rem;
		}
}

/* ----- [ Slick Slider ] -----------------*/
.slick-slider .slick-list,
.slick-slide > div {
	height: 100%;
	}

/* fixes round corner image flash */
.slick-slide {
	z-index: 1;
	}

.gallery-section .image-wrapper {
	margin: 0 1em 2em;
	}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
	top: auto;
    left: auto;
    right: 20px;
	bottom: -10px;
    display: block;
    width: 42px;
    height: 42px;    
    padding: 0 0 0 2px;
    color: #fff;
    background: var(--brand-light);
    border-radius: 50%;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    cursor: pointer;
    z-index: 9;
}
.slick-prev {
	right: 70px;
	padding: 0 2px 0 0;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	}

.slick-prev:hover,
.slick-next:hover {
	background: var(--brand-dark);
	}

.slick-prev:before,
.slick-next:before {
	content: "▸";
    font-family: 'FontAwesome';
    font-size: 36px;
    line-height: 0.5;
    opacity: 1;
    color: #414141;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	}
.slick-prev:before {
	}
	
.slick-dots {
	bottom: 20px;
	}

/* ----- [ Gallery Page & Sections / Isotope ] -----------------*/
.slick-gallery {
	margin-bottom: 60px;
	}
.gallery-image {
	border-radius: 36px;
	overflow: hidden;
	margin: 0;
	box-shadow: 0 30px 40px -24px rgba(0,0,0,0.2);
	}
.slick-gallery .caption {
	font-weight: var(--body-med);
	margin: 1em 0 0;
	}

/* ----- [ Site Map ] --------------- */
.sitemap li {
	list-style: none;
	margin:  0;
	font-size: 16px;
	line-height: 1.2em;
	padding: 0 0 0 1em;
	}
.sitemap li li {
	list-style: disc;
	}
.sitemap li li li {
	list-style: circle;
	}
.sitemap li li li li {
	list-style: square;
	}

/* ----- [ Footer ] --------------- */
.page-footer {
	clear: both;
	text-align: left;
	margin: 0;
	margin-top: auto;
	padding: 5em 0 1em;  
	background: var(--black);
	}
	
.page-footer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #22394F;
	opacity: 0.84;
	}


.copyright {
	width: 100%;
	padding: 10px 20px;
	color: #fff;
	background: var(--dark-pink);
	}
.copyright .inner {
	color: #fff;
	font-size: 0.9rem;
	font-weight: var(--body-light);
	}

.page-footer p,
.page-footer li {
	font-size: 0.95rem;
	font-weight: var(--body-light);
	margin: 0 0 1em;
	letter-spacing: 0.05em;
	}
	
.footer-icon {
	max-width: 120px!important;
	display: none;
	} 

.page-footer a {
	text-decoration: none;
	border: none;
	}
.page-footer a:hover {
	color: inherit;
	color: var(--accent);
	text-decoration: underline;
	}
	
.footer-rows {
	justify-content: flex-end;
	column-gap: 30px;
	}
.footer-rows .col {
	min-width: 220px;
	margin-bottom: 1.5em;
	}
.logo-column {
	margin-right: auto;
	}

.footer-logo {
	max-width: 240px;  
	margin: 0 0 1.2em;
	padding: 0;
	}
.footer-logo img {
	margin: 0 auto;
	width: 100%;
	/*filter:hue-rotate(50deg);*/
	}


@media screen and (min-width: 600px) {
	.footer-rows .col {
		margin-bottom: 0;
		}

}
@media screen and (min-width: 770px) {
	.page-footer-col,
	.page-footer-col p {
		text-align: left;
		}
	.page-footer-col:last-child,
	.page-footer-col:last-child p {
		text-align: right;
		}
	.footer-icon {
		display: block;
		}
}

@media screen and (min-width: 900px) {
	.site-credit {
		display: inline-block;
		}
}

/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons-wrapper .social-icon {
    display: inline-block;
    height: 22px;
	width: 22px;
    margin: 0 0.8em 0 0;
    white-space: nowrap;
	}
	
.social-icons-wrapper .social-icon.trip-advisor {
	height: 28px;
	width: 36px;
	}

.social-icons-wrapper .social-icon a,
.social-icons-wrapper .social-icon a:visited {
    opacity: 1;
    border: none;
	}
.social-icons-wrapper .social-icon a:hover,
.social-icons-wrapper .social-icon a:active {
    color: var(--accent);
    opacity: 1;
    border: none;
	}

.social-icons-wrapper .social-icon svg {
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

.social-icons-wrapper .social-icon svg:hover {
	fill: var(--accent);
	}

.social-icon span {
	display: none;
	}

.top-link {
	display: none;
    position: fixed;
    bottom: -20px;
    right: 2%;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
	}
.top-link a {
	color: #fff;
	font-size: 20px;
	line-height: 30px;
    background: #8d2427;
    display: block;
    height: 30px;
    width: 30px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
    }
.top-link a:hover {
	border: none;
	background: #8d2427;
	}
.top-link.show {
	opacity: 1;
	bottom: 20px;
	}
	
.top-link .fa {
	margin: 0 0 0 2px;
	line-height: 25px;
	}
	
@media screen and (min-width: 770px) {
	.social-icons-wrapper {
		text-align: left;
		}
}

/* ----- [ Utility ] --------------- */
@media screen and (min-width: 600px) {
	.row-reverse {
		flex-direction: row-reverse;
		}
}

/* ----- [ Utility ] --------------- */
.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

.hidden {
	display: none;
	}

.full-height {
	height: 100%;
	}
.cover-image,
.object-fit-cover {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}
	
.overflow-visible {
	overflow: visible;
	}
.overflow-hidden {
	overflow: hidden;
	}
.overflow-scroll {
	overflow: scroll;
	}
	
.text-right {
	text-align: right;
	}
.text-left {
	text-align: left;
	}

hr {
	border: none;
	height: 1px;
	background: #ccc;
	margin: 1.5em 0 1em;
	}
	
sup {
	vertical-align: baseline;
	position: relative;
	bottom: 0.33em;
	}
sub {
	vertical-align: baseline;
	position: relative;
	bottom: -0.33em;
	}
	
.show-hide {
	/*display: inline-block;
	margin-bottom: 1em;*/
	}

p.dropcap:first-child:first-letter {
	font-family: var(--display-font);
	float: left;
	font-size: 3rem;
	line-height: 1;
	padding-top: 0;
	padding-right: 5px;
	padding-left: 2px;
	}
	
.feature-intro p,
p.large-text,
.large-text p {
	font-size: 1.4rem;
	line-height: 1.55;
	font-weight: var(--body-regular);
	}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}


.quickedit {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 99;
	font-size: 0.95rem;
	display: inline;
	opacity: 0.35;
	}
.ched-row {
	position: relative;
	}
.ched-row .quickedit {
	left: unset;
	right: -30px;
	}

.align_center {
	text-align: center;
	}
.align_left {
	text-align: left;
	}
.align_right {
	text-align: right;
	}
/*
.align_left {
	float: left;
	margin: 0 1em 1em 0 !important;
	}
h2 .align_left {
	margin: 0 0.4em 0.4em 0 !important;
	}

.align_right {
	float: right;
	margin: 0 0 1em 1em !important;
	}

.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin: 2em auto;
	}
*/
.sidebox .align_left {
	float: none;
	margin: 0 auto 1em !important;
	text-align: center;
	}

.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}

@media screen and (min-width: 1015px) {
	.sidebox .align_left {
		float: none;
		margin: 0 0.8em 0 0 !important;
		}
}

.image {
	border: 0;
	border-radius: 4px;
	display: inline-block;
	position: relative;
	}

.image img {
	display: block;
	border-radius: 4px;
	}

.image.left, 
.image.right {
	width: 40%;
	max-width: 10rem;
	}

.image.left img, 
.image.right img {
	width: 100%;
	}

.image.left {
	float: left;
	margin: 0 1.5rem 1rem 0;
	top: 0.25rem;
	}

.image.right {
	float: right;
	margin: 0 0 1rem 1.5rem;
	top: 0.25rem;
	}

.image.fit {
	display: block;
	margin: 0 0 2rem 0;
	width: 100%;
	}

.image.fit img {
	width: 100%;
	}

.image.main {
	display: block;
	margin: 0 0 3rem 0;
	width: 100%;
	}

.image.main img {
	width: 100%;
	}
	
.bg-grey {
	background: var(--grey4);
	}

#termly-code-snippet-support p,
#termly-code-snippet-support li,
#termly-code-snippet-support td {
	font-size: 1em;
	line-height: 1.3;
	}
#termly-code-snippet-support img {
	display: inline;
	}


.thankyou { background:#222222 !important; }
.supernova body, 
.jotform-form {
	 background:#ffffff !important; 
	 }



/* ----- [ Hero Images ] -----------------*/
/* ----- [ Slick Slider ] -----------------*/
.slick-slider .slick-list,
.slick-slide > div {
	height: 100%;
	}

/* basic page slider */
.slick-dots {
	bottom: 20px;
	z-index: 999;
	}
.slick-dots li button:before {
	}
.slick-dots li button:before {
	font-size: 1rem;
	color: white;
	}
.slick-dots li.slick-active button:before {
	color: var(--accent);
	}

.home-slide {
	background-size: cover;
	background-position: 50% 50%;
	height: 100%;
	/*background-position: 50% 0;*/
	}

.hero-slider,
.hero-slider .slick-track,
.hero-slider .slick-wrapper,
.hero-slider .slick-slide {
	margin: 0;
	height: 100%;
	width: 100%;
	}

@media all and (max-width:599px){
	.product-img-col {
		display: block;
		}
}
	
.hero-slider .slick-prev,
.hero-slider .slick-next {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 80px;
	margin-top: -20px;
	padding: 0;
	left: 0;
	color: transparent;
	font-size: 0;
	line-height: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	border: none;
	border-radius: 0;
	outline: none;
	background: rgba(255,255,255,0.1) url('../images/thin-previous.png') 35% 50% no-repeat;  
	background-size: 70%;
	z-index: 5;
	opacity: 0.5;
	}
	
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
	content: "";
	}
.hero-slider .slick-next {
	position: absolute;
	right: 0;
	left: auto;
	background: rgba(255,255,255,0.1) url('../images/thin-next.png') 65% 50% no-repeat;
	background-size: 70%;
	}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
	opacity: 1;
	}

/* ----- [ Specifics ] ---------- */
.multi-columns-section p + h3 {
	margin-top: 0;
	font-size: 1.65rem;
	}
.image-link {
	display: inline-block;
	overflow: hidden;
	}

@media screen and (max-width: 780px) {
	.home .section-image2 {
		margin-bottom: 2em !important;
		}
}

/* ----- [ Print ] ----- */
@media print {
    header, footer, aside, form {
        display: none;
    	}
	section {
		width:100%!important;
		padding:0!important;
		margin:0!important;
		width: 800px!important;
		}
	img {
		max-width: 500px !important;
		max-height: 300px !important;
		}
	h1 {
		font-size: 24pt;
		margin: 0 !important;
		padding: 0 !important;
		}
	.hero {
		min-height: 100px!important;
		height: auto;
		}
	.image {
		display: none;
		}
}
@page {
	margin: 2cm;
}
@page:first {
    margin: 0;
}
@page:last {
    margin: 5cm;
}
@page:left {
    margin: 2cm 1.5cm 2cm 2cm;
}
@page:right {
    margin: 2cm 2cm 2cm 1.5cm;
}
@media print {
  a:after {
    content: "("attr(href)")";
  }
}


@media screen and (min-width: 1386px) {
  .mega-menu:not([hidden]) {
    visibility: visible;
    opacity: 1;
    display: flex;
  }
}
/* ----- [ Mega Menu v2 ] ---------- */
@media screen and (min-width: 1386px) {
	.mega-menu {
		position: absolute;
		visibility: hidden;
		top: 90%;
		top: 100%; /* V2 */
		left: 0;
		left: -20px; /* V2 */
		height: auto;
		/* width: 100%; */
		width: auto;
		min-width: 480px;
		padding: 20px 20px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
		z-index: 90;
		overflow: visible;
		opacity: 0;
		background: var(--white);
		box-shadow: 0 5px 15px rgba(0,0,0,0.2);
		}
		
	li:hover .mega-menu {
	/*.mega-menu { */
		visibility: visible;
		top: 100%;
		/* top: 70%; V2 */
		opacity: 1;
		}

	.category-menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: column; /* V2 */
		flex-wrap: nowrap; /* V2 */
		justify-content: flex-start;
		align-items: stretch;
		flex-wrap: wrap;
		flex-wrap: nowrap;
		white-space: normal;
		white-space: nowrap; /* V2 */
		margin: 0 auto;
		margin: 0 30px 0 0; /* V2 */
		padding: 0;
		width: auto;
		width: 100%;
		/*min-width: 500px;  V2 */
		/*max-width: 1070px;*/
		overflow: visible;
		flex: 1;
		}
	.category-images {
		margin: 0;
		/*min-width: 150px;*/
		display: block;
		}
	.dropnav-img {
		max-width: 100%;
		}

	.menu-item-2 {
		display: block;
		/*width: 33.33333%;*/
		flex: 1;
		text-align: left;
		font-size: 1.1rem;
		line-height: 1.2;
		margin: 0;
		padding: 0 1em 1em 0;
		padding: 0;
		/* border-right: 1px solid #ccc; V2 */
		}
	.menu-item-2 a {
		display: block;
		font-size: 1.1rem !important;
		font-weight: var(--body-regular);
		line-height: 1.2;
		text-decoration: none;
		height: 100%;
		padding: 6px 6px;
		border-bottom: 1px solid #ccc;
		}
	.menu-item-2:hover > a,
	.menu-item-2 a.on {
		background: var(--light-tint);
		}

	.menu-item-3 {
		line-height: 1.1em;
		margin-bottom: 5px;
		}
	.menu-item-3 a {
		color: #fff;
		display: inline-block;
		}
	.menu-item-3 a:hover {
		color: #fff;
		text-decoration: underline;
		}

	.tab-content {
		display: none;
		}
	.tab-content:first-of-type {
		display: block;
		}
	
	.category-images {
		/*margin-left: 20px;*/
		}
	.category-images img {
		max-height: 160px;
			max-height: 236px;
			object-fit: cover;
			max-height: auto;
			width: auto;
		}
}

/* importa-guidance.inc */
.import-guidance-horizontal {
	overflow: hidden;
	padding-inline: 0;
	}
.scrolling-wrapper {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	column-gap: 20px;
	scroll-snap-type: x mandatory;
  	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	/* padding-right: 50px; */
	padding-inline: 20px;
	}
	
.scrolling-wrapper::-webkit-scrollbar {
	/* display: none; */
	}
.card {
	max-width: 240px;
	max-width: 190px;
	flex: 0 0 auto;
	}
.home-page .card {
	max-width: 240px;
	}
.card:first-child {
	/*margin-left: 20px;*/
	}
	
.feature-col-intro {
	align-items: flex-start;
	}
	
.home-feature-scroller.inner {
	padding: 0;
	}
	
.feature-intro {
	padding-right: 3em;
	padding: 0 30px;
	}

@media screen and (min-width: 1284px) {
	.import-guidance-horizontal {
		overflow: visible;
		padding-inline: 20px;
		}
	.scrolling-wrapper {
		overflow: visible;
		padding-inline: 0;
		}
		
	.feature-col-intro {
		align-items: center;
		}
	.feature-intro {
		padding: 0 3em 2em 0;
		}
	.home-page .scrolling-wrapper {
		display: grid; 
		grid-template-columns: repeat(3, 1fr);
		row-gap: 30px;
		overflow: visible;
		max-width: 780px;
		margin-inline: auto;
		padding-right: 0;
		}
	.home-page .scrolling-wrapper .card:first-child {
		margin-left: 0!important;
		}
	.home-page .scrolling-wrapper + .text-right {
		display: none;
		}
	.home-page .scrolling-wrapper .feature-box {
		margin-bottom: 0;
		}
}
	
@media screen and (min-width: 1284px) {
	.card:first-child {
		/* margin-left: calc((100vw - 1250px)/2); */
		}
}



