/*
==============================================
custom fonts
==============================================
*/
@font-face {
	font-family: 'GothamLight';
    font-weight: 300;
    font-style: normal;
	src: url('/css/fonts/gotham/GothamLight.woff2') format('woff2');
}
@font-face {
	font-family: 'GothamMedium';
    font-weight: 500;
    font-style: normal;
	src: url('/css/fonts/gotham/GothamMedium.woff2') format('woff2');
}
@font-face {
	font-family: 'GothamBold';
	font-weight: bold;
	font-style: normal;
	src: url('/css/fonts/gotham/GothamBold.woff2') format('woff2');
}
@font-face {
	font-family: 'GothamBook';
    font-weight: normal;
    font-style: normal;
	src: url('/css/fonts/gotham/Gotham-Book.woff2') format('woff2');
}

/*
==============================================
custom properties
==============================================
*/
:root {  
	--brand-color-primary: #b5121b; /* red */
	--brand-color-secondary: #415967; /* bluish gray rgb(65, 89, 103) */	
	--brand-color-secondary-light: #9fabb2; /* light bluish gray */	
	--brand-color-secondary-dark: #1d2a31; /* dark bluish gray */	
	
	--color-beige: #ede7e1; /* beige - background colours */	
	--color-beige-medium: #d7c0a9; /* medium beige - hovering background colours */	
	--color-beige-dark: #ae9276; /* dark beige - hovering background colours */	
	--color-beige-darker: #683a0c; /* darker beige */	
	--color-black: #000; /* black */	
	--color-gray-1: #111;
	--color-gray-2: #222;
	--color-gray-3: #333;
	--color-gray-4: #444;
	--color-gray-5: #555;
	--color-gray-6: #666;
	--color-gray-7: #777;
	--color-gray-8: #888;
	--color-gray-9: #999;
	--color-gray-10: #aaa;
	--color-gray-10: #bbb;
	--color-gray-11: #ccc;
	--color-gray-12: #ddd;
	--color-gray-13: #eee;
	--color-white: #fff;
	
	--text-color: var(--color-gray-2); /* black */
	--heading-color: var(--color-gray-2); /* black */

	--link-color: #3266D5; /* RoyalBlue */
	--link-color-hover: #2853a8; /* Dark RoyalBlue */
	--alert-color: #ff6347; /* Tomato */
	
	--button-bg: var(--color-beige-dark);
	--button-bg-hover:  var(--color-beige-darker);
	--button-color: #fff;
	
	--font-sans-regular: 'GothamBook', 'Open Sans', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
	--font-sans-light: 'GothamLight', 'Open Sans', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;	
	--font-sans-medium: 'GothamMedium', 'Open Sans', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;	
	--font-sans-bold: 'GothamBold', 'Open Sans', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;	
	--font-serif-regular: 'Playfair Display', 'Open Sans', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
	
	/* font-awesome overrides */
	--fa-li-margin: 1.5rem;
}


/*
==============================================
buttons
==============================================
*/
.button, .button.disabled, .button.disabled:focus, .button.disabled:hover, .button[disabled], .button[disabled]:focus, .button[disabled]:hover {
	background-color: var(--button-bg);
	color: var(--button-color);
}
.button:focus, .button:hover {
	background-color: var(--button-bg-hover);
	color: var(--button-color);
}

.button.hollow, .button.hollow.disabled, .button.hollow.disabled:focus, .button.hollow.disabled:hover, .button.hollow[disabled], .button.hollow[disabled]:focus, .button.hollow[disabled]:hover {
	border-color: var(--button-bg);
	color: var(--color-beige-darker);
}
.button.hollow:focus, .button.hollow:hover {
	border-color: var(--button-bg-hover);
	color: var(--color-beige-darker);
}

.button.brand-color-secondary {
	background-color: var(--brand-color-secondary);
}


/* .button.brand,
.button.brand-dark {
	border-radius: 1.25rem;
	font-family: var(--font-sans-regular);
	padding: 0.5rem 1.5rem;
}
.button.brand {
	color: var(--text-color);
	background-color: var(--secondary-color);
}
.button.brand-dark {
	color: var(--secondary-color);
	background-color: var(--text-color);
} */

/*
==============================================
helper classes
==============================================
*/
.lead {
	font-size: 115%;
	line-height: 1.4;
}
.lead--narrow {
	margin-left: auto;
	margin-right: auto;
	max-width: 52.5rem;
}
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.radius {
    border-radius: 0.25rem;
}
ul.no-bullet,
ol.no-bullet {
	margin-left: 0;
	list-style: none;
}

/*
==============================================
sticky footer
https://css-tricks.com/a-clever-sticky-footer-technique/
==============================================
*/
html, body {
	height: initial;
	min-height: 100vh;
}
body > footer {
	position: sticky;
	top: 100vh;
}



/*
==============================================
website
==============================================
*/
body {
	background-color: #fff;
	color: var(--text-color);
	font-family: var(--font-sans-regular);
}

b,strong {
  font-weight: 600;
}


a {
	color: var(--link-color);
}
a:hover,
a:focus {
	color: var(--link-color-hover);
}

hr {
	height: 1px;
}
hr.brand {
	border-bottom-color: var(--text-color);
}


/*
==============================================
headings - bootstrap
==============================================
*/
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
	color: var(--heading-color, inherit);
	font-family: var(--font-sans-regular);
	font-weight: 500;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

/* custom heading styles non-bootstrap */
.heading-styled {
	color: var(--brand-color-secondary);
	font-family: var(--font-sans-bold);
	font-weight: bold;
}
.heading-styled--secondary {
	color: var(--secondary-color);
}
h1.heading-styled,
h2.heading-styled {
	letter-spacing: -1px;
}

h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: inherit;
}


/*
==============================================
breadcrumbs
==============================================
*/
nav.breadcrumbs-container {
	margin: 0 auto;
	max-width: 75rem;
	padding-right: .9375rem;
	padding-left: .9375rem;
}
nav.breadcrumbs-container ul.breadcrumbs {
	list-style: none;
	margin: 0 0 1rem 0;
}
nav.breadcrumbs-container ul.breadcrumbs li:last-child {
	/* text-transform: initial; */
}

/*
==============================================
tables
==============================================
*/
caption {
	font-weight: 600;
	font-size: 1rem;
	text-align: left;
}
tbody td {
	font-size: 0.9rem;
	padding-bottom: 1rem;
	padding-top: 1rem;
}
thead th {
	font-size: 0.8rem;
	font-weight: 600;
	opacity: 0.6;
	padding-bottom: 1rem;
	padding-top: 1rem;
	text-transform: uppercase;
}



/*
==============================================
body-content, page-content
==============================================
*/
div.body-content {
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
	/* max-width: 75rem; */
	max-width: 120rem;
}	


/*==============================================
	header and nav
==============================================*/
header.header-primary {
	background-color: #fff;
	box-shadow: 0 1px 6px 0 rgba(162,162,162,.16);
	display: block;
	position: sticky;
	top: 0;
	z-index: 999;
}

div.header--wrapper {
	align-items: center;
	display: flex;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	width: 75rem;
}
div.header-logo a {
	display: block;
}
div.header-logo img {
	height: auto;
	padding: 1rem;
	width: 12rem;
}
div.header-logo small {
	color: var(--brand-color-secondary);
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	margin-top: -0.95rem;
	padding-right: 1.25rem;
	right: 0;
	text-align: right;
}
div.header-nav {
	width: 100%;
}
ul.nav-primary {
	display: flex;
	list-style-type: none;
	margin: 0;
	width: 100%;
}
ul.nav-primary a {
	color: inherit;
}
ul.nav-primary > li {
	font-size: 0.95rem;
	position: relative;
}
ul.nav-primary > li > a {
	border-top: 3px solid transparent;
	display: block;
	padding: 1.5rem 1rem 1.5rem 1rem;
	position: relative;
}
ul.nav-primary > li:hover > a {
	background: #f8f8f8;
	border-top: 3px solid var(--color-beige-dark);
	color: inherit;
}
ul.nav-primary > li.has-dropdown > a {
	padding-right: 2rem;
}
ul.nav-primary > li.has-dropdown > a::after {
    color: var(--brand-color-primary);
    content: "\f107";
    font: var(--fa-font-solid);
    font-size: 0.75rem;
	position: absolute;
	right: 0.8rem;
	top: 43%;
}
ul.nav-primary > li:first-child {
	margin-left: auto;
}

/*==============================================
	mobile menu button trigger
==============================================*/
button.header--menu-trigger {
	cursor: pointer;
	display: none;
	height: 26px;
	width: 26px;
}
button.header--menu-trigger span,
button.header--menu-trigger span::after,
button.header--menu-trigger span::before {
	background-color: #324f6b;
	content: ' ';
	display: block;
	height: 3px;
	position: absolute;
	transition-duration: 260ms;
	width: 26px;
}	
button.header--menu-trigger span::before {
	content: '';
	top: -8px;
}
button.header--menu-trigger span::after {
	content: '';
	top: 8px;
}
body.small-menu-open button.header--menu-trigger span {
	transform: rotate(45deg);
}
body.small-menu-open button.header--menu-trigger span::before {
	top: 0;
	transform: rotate(0deg);
}
body.small-menu-open button.header--menu-trigger span::after {
	top: 0;
	transform: rotate(90deg);
}

/*==============================================
	mobile menu
==============================================*/
div.nav-background-overlay {
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	height: 100vh;
	backdrop-filter: blur(6px);
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: 260ms;
	visibility: hidden;
	width: 100%;
	z-index: 11;
}
body.small-menu-open div.nav-background-overlay {
	visibility: visible;
	opacity: 1;
}
body.small-menu-open div.header-nav {
	left: 0;
}
	
@media (max-width: 999.98px) {
	button.header--menu-trigger {
		display: block;
		left: 1rem;
		position: absolute;
	}
	div.header-logo {
		text-align: center;
		width: 100%;
	}
	div.header-logo a {
		display: inline-block;
	}
	div.header-logo img {
		width: 10rem;
	}
	div.header-logo small {
		margin-top: -0.95rem;
		padding-left: 2.25rem;
		text-align: center;
	}
	div.header-nav {
		background: #fff;
		height: calc(100vh - 56px);
		position: fixed;
		left: -100%;
		top: 56px;
		max-width: 100%;
		transition-duration: 260ms;
		width: 300px;
	}
	ul.nav-primary {
		display: block;
		width: 100%;
	}
	ul.nav-primary > li > a {
		border-bottom: 1px solid #e5e5e5;
		border-top: none;
		display: block;
		padding: 1rem;
	}
	ul.nav-primary > li:last-child > a {
		border-bottom: none;
	}
	ul.nav-primary > li > a:hover {
		background: #f8f8f8;
		border-top: none;
		color: inherit;
	}
	ul.nav-primary > li.has-dropdown > a {
		padding-right: 1rem;
	}
	ul.nav-primary > li.has-dropdown > a::after {
		content: '';
	}
}


/*==============================================
	dropdowns
==============================================*/
.nav-dropdown-container {
	background-color: #f8f8f8;
	box-shadow: 0 3px 6px 0 rgba(162,162,162,.16);
	height: auto;
	left: auto;
	opacity: 0;
	overflow-y: visible;
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 75px;
	transition: 120ms;
	visibility: hidden;	
	width: 240px;
	z-index: 1;
	
	/* dev */
	/*
	opacity: 1;
	pointer-events: auto;	
	visibility: visible;
	*/
}
.nav-dropdown-container--help {
	width: 280px;
}
.dropdown-back-trigger {
	display: none;
}
ul.nav-primary li.has-dropdown:last-child .nav-dropdown-container {
	left: initial;
	right: 0;
}
li.has-dropdown:hover .nav-dropdown-container {
	opacity: 1;
	pointer-events: auto;	
	visibility: visible;
}
.nav-dropdown-container ul {
	font-size: 0.875rem;
	list-style-type: none;
	margin: 0;
	width: 100%;
}
.nav-dropdown-container ul > li a {
	display: block;
	padding: 0.675rem 1rem;
}
.nav-dropdown-container ul > li > a:hover {
	color: inherit;
	background-color: var(--color-beige);
}


@media (max-width: 999.98px) {
	li.has-dropdown .nav-dropdown-container {
		display: none;
	}
}

/*
==============================================
footer
==============================================
*/
footer.footer-primary {
	background-color: var(--brand-color-secondary);
	color: var(--color-white);
	font-family: var(--font-sans-light);
	margin-top: 3rem;
	padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}
footer.footer-primary h4 {
	color: #fff;
	font-weight: 500;
	margin-bottom: 1rem;
}
footer.footer-primary ul {
	list-style: none;
	margin-left: 0;
}
footer.footer-primary ul a {
	display: inline-block;
	padding: 0.25rem 0;
}
footer.footer-primary a {
	color: inherit;
}
footer.footer-primary a.dotted {
	text-decoration-line: underline;
	text-decoration-style: dotted;
	text-decoration-color: inherit;
}
footer.footer-primary a:hover {
	color: inherit;
	text-decoration: underline;
}
footer.footer-primary a:hover u {
	border-bottom: none;
}
footer.footer-primary p.socials a {
	font-size: 1.5rem;
	padding: 0.5rem;
}
footer.footer-primary p.copyrights {
	font-size: 0.85rem;
	padding-top: 1.5rem;
	text-align: center;
}
img.footer-logo {
	display: inline-block;
	width: auto;
	filter: saturate(0) brightness(200);
	opacity: 0.75;
	max-height: 74px;
}
img.footer-logo--borg {
	max-height: 40px;
}
a:hover img.footer-logo {
	filter: none;
	opacity: 1;
}

@media screen and (max-width: 63.9375em) {
}


/*
==============================================
scroll-to-top
==============================================
*/
#scroll-to-top {
	bottom: 0;
	font-size: 0.85rem;
	line-height: 1;
	padding: 0.5rem;
	opacity: 0;
	position: fixed;
	right: 0;
	transform: translateY(100px);
	transition: all 0.5s ease;
}
#scroll-to-top.visible {
	opacity: 1;
	transform: translateY(0);
}
#scroll-to-top .fa-circle {
	color: var(--color-beige-dark);
	opacity: 0.8;
}
#scroll-to-top .fa-stack:hover .fa-circle {
	opacity: 1;
}

/*
==============================================
image-tiles
==============================================
*/
a.image-tile {
	background-color: #fff;
	background-image: url(/img/ajax-loader.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto;
	border-bottom: none !important;
	box-shadow: 1px 0 0 0 #eee, 0 1px 0 0 #eee, 1px 1px 0 0 #eee, 1px 0 0 0 #eee inset, 0 1px 0 0 #eee inset;
	display: block;
	padding: 0.5rem;
	position: relative;
}
a.image-tile h5 {
	background: linear-gradient(rgba(25,25,25,0.6), rgba(25,25,25,0.9));
	bottom: 0;
	color: rgba(255,255,255,0.9);
	display: block;
	font-size: 1rem;
	font-weight: 400;
	left: 0;
	line-height: 1.2;
	margin: 8px;
	padding: 0.5rem;
	position: absolute;
	right: 0;
	text-align: center;
	text-shadow: 0 1px rgba(0, 0, 0, 0.8);
}

/*
==============================================
product tiles
==============================================
*/
a.product-hero-tile {
	color: inherit;
	display: block;
	overflow: hidden;
}
a.product-hero-tile:hover,
a.product-hero-tile:focus {
	color: var(--color-black);
}
a.product-hero-tile img {
	transition: transform 200ms;
}
a.product-hero-tile:hover img {
	transform: scale(1.02);
}
a.product-hero-tile > div {	
	background-color: var(--color-beige);
	display: block;
	padding: 1rem;
	position: relative;
	transition: background-color 120ms;
	z-index: 1;
}
a.product-hero-tile:focus > div,
a.product-hero-tile:hover > div {
	background-color: var(--color-beige-dark);
}
a.product-hero-tile h3 {
	font-family: var(--font-serif-regular);
	font-size: 1.35rem;
	line-height: 1;
	margin: 0 0 0.5rem 0;
}
a.product-hero-tile ul {
	font-size: 0.85rem;
	line-height: 1.4;
	list-style: none;
	margin: 0;
}

@media screen and (max-width: 400px) {
	a.product-hero-tile h3 {
		font-size: 1.125rem;
		line-height: 1.4;
		margin: 0 0 0.5rem 0;
	}
}

/*
==============================================
link-tiles
==============================================
*/
a.link-tile {		
	align-items: center;
	aspect-ratio: 1/1;
	background: var(--color-beige);
	border-color: 1px solid var(--color-beige);
	color: var(--brand-color-secondary-dark);
	display: flex;
	font-size: 1.25rem;
	justify-content: center;
	line-height: 1.2;
	padding: 1.5rem;
	text-align: center;
	width: 100%;
}
a.link-tile:hover {		
	background-color: var(--color-beige-dark);
	border-color: var(--color-beige-dark);
}
a.link-tile.has-background {
	/* background-image: url(/img/product-hero-tiles/easyascot-classic.jpg); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}
a.link-tile.has-background h2 {
	color: var(--brand-color-secondary-dark);
	font-family: var(--font-sans-light);
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.1;
	text-shadow: 1px 1px 16px #fff;
	z-index: 1;
}
a.link-tile.has-background span {
	text-shadow: 1px 1px 16px #fff;
	z-index: 1;
}
a.link-tile.has-background::before {
	background-color: var(--color-beige);
	bottom: 0;
	content: " ";
	left: 0;
	opacity: 0.65;
	position: absolute;
	top: 0;
	transition: opacity 200ms;
	right: 0;
}
a.link-tile.has-background:hover::before {
	opacity: 0;
}
@media screen and (max-width: 1020px) {
	a.link-tile.has-background h2 {
		font-family: var(--font-sans-regular);
		font-size: 1.75rem;
	}
}
/*
==============================================
masthead (hero image)
==============================================
*/
.masthead {
	align-items: center;
	/* background-image: url(/img/home-1.jpg); */
	background-color: var(--color-beige);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	margin: 0 auto 3rem auto;
	max-width: 1920px;
	padding: 4rem 1.5rem 3rem 1.5rem;
	position: relative;
	text-align: center;
	width: 100%;
}
/* color overlay */
.masthead::before {
	background-color: var(--brand-color-secondary);
	bottom: 0;
	content: " ";
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	right: 0;
}
.masthead h1 {  
	color: #fefefe;
	font-family: var(--font-sans-bold);
	font-size: 6vmin;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1;
	margin: 0 auto 2rem auto;
	max-width: 42.5rem;
	text-align: center;
	text-shadow: 3px 3px 8px var(--brand-color-secondary);
	z-index: 1;
}    
.masthead .button {
	box-shadow:
		0 0.3px 0.3px rgba(0, 0, 0, 0.02),
		0 0.7px 0.7px rgba(0, 0, 0, 0.028),
		0 1.3px 1.3px rgba(0, 0, 0, 0.035),
		0 2.2px 2.2px rgba(0, 0, 0, 0.042),
		0 4.2px 4.2px rgba(0, 0, 0, 0.05),
		0 10px 10px rgba(0, 0, 0, 0.07);
	font-size: 1.125rem;
	margin: 0 0 1rem 0;
	z-index: 1;
}
@media screen and (max-width: 576px) {
	.masthead {  
		min-height: 30vh;
	}
	.masthead h1 {  
		font-size: 8vmin;
	}
}


/*
==============================================
dl-accordion
==============================================
*/
dl.dl-accordion dt {
	border: 1px solid var(--color-beige);
}
dl.dl-accordion dt {
	background-color: var(--color-beige);
	color: var(--brand-color-secondary-dark);
	cursor: pointer;
	font-family: var(--font-sans-regular);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.4;
	padding: 0.75rem;
	position: relative;		
}
dl.dl-accordion dt:hover,
dl.dl-accordion dt.is-open {
	background-color: var(--color-beige-medium);
}
dl.dl-accordion dt::before {
	color: var(--color-beige-dark);
	content: "\f0fe";
	font: var(--fa-font-solid);
	font-size: 1.25rem;
	right: 0.5rem;
	position: absolute;
	top: 0.8rem;
}
dl.dl-accordion dt.is-open::before {
	content: "\f146";
}	
dl.dl-accordion dd {
	display: none;
	font-size: 0.85rem;
	padding: 1rem 0.5rem;
}
dl.dl-accordion:not(.dl-accordion--linklist) a {
	color: var(--brand-color-primary);
	font-weight: 600;	
}
dl.dl-accordion ul.linklist {
	font-size: 1rem;
}
dl.dl-accordion ul.linklist li::marker {
	color: var(--color-beige);
}
dl.dl-accordion ul.linklist a {
	display: inline-block;
	padding: 0.25rem 0;
}

/*
==============================================
blockUI
==============================================
*/
div.blockMsg {
	border:0;
	color: #fefefe;
	cursor: wait;
	left: 30%;
	padding: 0;
	text-align:center;
    top: 30%;
    width:40%;
}
div.blockOverlay {
	background:#000;
	opacity:0.7;
}
@media only screen and (max-width:40em) {
	div.blockMsg {
		left: 10%;
		top: 20%;
		width: 80%;	
	}
}

/*
==============================================
prototype
==============================================
*/
@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; }
}

@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; }
}
@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important; } }

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important; } }

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important; } }

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

/*
==============================================
media queries
==============================================
*/
@media screen and (max-width: 39.9375em) {
}
@media only screen and (max-width: 64em) { /* max-width 1024px, <= medium screens */
}
@media only screen and (min-width: 40.063em) { /* min-width 641px */
}	
@media only screen and (min-width: 40.063em) and (max-width: 64em) { /* min-width 641px and max-width 1024px */
}
@media only screen and (width: 768px) { /* iPad portrait · width: 768px */
}	
@media only screen and (min-width: 40.063em) { /* min-width 641px, > mobile screens */
}
@media only screen and (max-width: 64em) { /* max-width 1024px, <= medium screens */
}		
@media only screen and (min-width: 64.063em) { /* min-width 1025px, >= large screens */
}

/*
==============================================
fancybox jquery.fancybox.min.css
==============================================
*/
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}


/*
==============================================
fancybox - custom 
==============================================
*/
.fancybox-thumbs {
	background: rgba(0, 0, 0, 0.3);
	bottom: 0;
	height: 95px;
	left: 0;
	padding: 10px 10px 5px 10px;
	right : 0;
	top: auto;
	width: auto;
}
.fancybox-show-thumbs .fancybox-inner {
	bottom: 95px;
	right: 0;
}
.fancybox-thumbs__list {
	margin: 0 auto;
}
.fancybox-thumbs__list a::before {
	border: 2px solid var(--brand-color-secondary);
}