@charset "utf-8";
/* CSS Document */




/* Ensure the default outline is visible only when it should be */
*:focus {
    outline: 3px solid #F5663B; /* Fallback for older browsers without :focus-visible support */
}

/* Custom styles for when the user needs a visible focus indicator (keyboard navigation) */
*:focus-visible {
    outline: 3px solid #F5663B;  /* A distinct color */
    border-radius: 10px; /* Optional: adds rounded corners */
    outline-offset: 4px; /* Optional: adds space between the element and the outline */
}

/* Optional: hide the outline when the focus is not 'visible' (e.g., a mouse click on a button) */
*:focus:not(:focus-visible) {
    outline: none;
}

.text_box {
	width: 33%;
	background-color: white;
}
.close_button {
	float: right; 
	position: relative; 
	top: -3px;
	right: 640px; 
	border: 0px; 
	padding: 0px; 
	margin: 0px;
}

.photo_counter {
	float: right; 
	right: 960px; 
	position: absolute; 
	top: 14px; 
	display: inline-block;
}
.photo_name {
	display: none;
}

h1 {
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	line-height: 1.3em;
	padding: 0;
	padding-bottom: 0px;
	margin: 0;
}

/* Fix footer Focus Ring issue for Email Address */
.z_fix {
	position: relative;
}

.z_fix:focus,
.z_fix:focus-visible {
  z-index: 1001; /* Ensure it is higher than siblings or overlapping elements */
}

.z_fix_02 {
	position: relative;
}

.z_fix_02:focus,
.z_fix_02:focus-visible {
  z-index: 1001; /* Ensure it is higher than siblings or overlapping elements */
}

.footer a img {
	border: none;
    margin: 0;
    padding: 0;
    /*display: block;*/ /* Optional: helps fix extra space under images */
}

.footer img {
	border: none;
    margin: 0;
    padding: 0;
    /*display: block;*/ /* Optional: helps fix extra space under images */
}
	
html {
	scroll-behavior: smooth;
}

HTML, body {
	padding: 0px;
	margin: 0px;
	border: 0px;
	overflow-x: hidden;
	width: 100%; 
	background-color: white;
}
	
.skip-link {
	font-family: "Heebo", sans-serif;
	font-size: 1rem;
	font-weight: 220;
	background: #6a6a6a;
	text-decoration: none;
	padding: 6px 15px;
	border-radius: 20px;
	top: 10px;
	left: 135px;
  	position: absolute;
  	transform: translateY(-130%);
	transition: transform 150ms ease-in;
}
	
/*.skip-link a {
	
	text-decoration: none;
	color: red;
	font-size: .9375;
	opacity: 1;
}*/
	
.skip-link:focus {
  	transform: translateY(45%);
	z-index: 1000;
  /* Optional: Add styling to make it visible, e.g., background color */
}

.skip-link:focus-visible {
  /* Ensure visible focus indicator for accessibility */
  	outline: 3px solid #333333;
	border-radius: 20px; /* Optional: adds rounded corners */
    outline-offset: 0px; /* Optional: adds space between the element and the outline */
} 

.skip-link:focus:not(:focus-visible) {
  /* Ensure visible focus indicator for accessibility */
  	outline: none;
}
	
#main_nav {
    display: flex;
    flex-direction: row; /* Or row, depending on your layout */
	float: right;
}

.item1 {
    order: -1; /* Gives it preference in visual order, default for others is 0 */
}
	
.item3 {
    order: 1; /* Gives it preference in visual order, default for others is 0 */
}
	
header {
	border: 0; 
	padding-left: 83px; 
	padding-right: 83px;
	padding-top: 10px;
	padding-bottom: 86px;
	max-width: 1420px;
	margin: 0 auto;
	height: auto;
	/*background-color: red;*/
}

.logo-section {
	font-family: "Heebo", sans-serif;
	font-size: 1.125rem;
	font-weight: 220;
	float: left;
	padding-right: 8px;
	padding-left: 8px;
	padding-top: 0px;
	padding-bottom: 0px;
}

.logo-section a:hover {
	text-decoration: underline;
	text-decoration-color: #7b7b7b; 
	text-underline-position: under;
	color: #484848;
	opacity: 1;
}

nav a {
	text-decoration: none;
	color: #282828;
	font-size: .9375rem;
	/*letter-spacing: .12rem;*/
	padding: 0px;
}

nav a:hover {
	text-decoration: underline;
	text-decoration-color: #7b7b7b; 
	text-underline-position: under;
	color: #484848;
	opacity: 1;
}

nav ul {
	/*overflow: hidden;*/
	color: #fff;
	margin: 0;
	padding-left: 8px;
	padding-right: 5px;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: center;
}

nav ul li {
	float: right;
	display: inline-block;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	padding-left: 58px;
}

/* DESKTOP VERSION DEFAULT */
body {
	padding: 0px;
	margin: 0px;
	border: 0px;
	overflow-x: hidden;
	background-color: white;
}
	
.container_top_bar {
	border: 0; 
	padding-left: 83px; 
	padding-right: 83px;
	padding-bottom: 40px;
	max-width: 1420px;
	margin: 0 auto;
	height: auto;
}
	
.navbar_tablet {
	background-color: #fff;
	color: #484848;
    display: none;
	width: 100%;
	height: 80px;
	padding-bottom: 80px;
	padding-left: 4px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
	border:0;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	line-height: 80px;
	z-index: 1;
}
	
.navbar_tablet a {
	text-decoration: none;
	color: #484848;
	font-size: .9375rem;
	opacity: 1;
}

.navbar_tablet a:hover {
	text-decoration: underline;
	text-decoration-color: #7b7b7b; 
	text-underline-position: under;
	color: #484848;
	opacity: 1;
}
	
.navbar {
	background-color: #fff;
	color: #484848;
    display: inline-block;
	width: 100%;
	height: 80px;
	padding-bottom: 30px;
	padding-left: 4px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 10;
	border:0;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	line-height: 80px;
	z-index: 1;
}
		
.navbar a {
	text-decoration: none;
	color: #484848;
	font-size: .9375rem;
	opacity: 1;
}

.navbar a:hover {
	text-decoration: underline;
	text-decoration-color: #7b7b7b; 
	text-underline-position: under;
	color: #484848;
	opacity: 1;
}
	
.text_bar {
	background-color: #fff;
	color: #484848;
    display: inline-block;
	width: 100%;
	height: 60px;
	padding-top: 16px;
	padding-bottom: 30px;
	padding-left: 320px;
	padding-right: 320px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	border:0;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	/*line-height: 1.3em;*/
	z-index: 1;
}


.text_bar_smartphone_xs {
	/*line-height: 1.5 !important; 
    letter-spacing: 0.12rem !important; 
    word-spacing: 0.16rem !important;*/
	background-color: #fff;
	color: #484848;
    display: none;
	width: 100%;
	height: 60px;
	padding-top: 16px;
	padding-bottom: 60px;
	padding-left: 40px;
	padding-right: 40px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	border:0;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	/*line-height: 1.3em;*/
	z-index: 1;
}

.text_bar_2 {
	background-color: #fff;
	color: #484848;
    display: inline-block;
	width: 100%;
	height: 20px;
	padding-bottom: 2px;
	padding-left: 320px;
	padding-right: 320px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	border:0;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	z-index: 1;
}


	

.footer > ul {
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-right: 0;
	padding-left: 0;
	padding-top: 0;
	padding-bottom: .5rem;
	margin: 0;
}

.footer > ul > li {
    list-style: none;
	padding-right: 4px;
}

.footer a img {
	border: none;
    margin: 0;
    padding: 0;
    /*display: block;*/ /* Optional: helps fix extra space under images */
}

.footer img {
	border: none;
    margin: 0;
    padding: 0;
	position: relative;
	top:3px;
    /*display: block;*/ /* Optional: helps fix extra space under images */
}
	
.footer {
	background-color: #fff;
	color: #484848;
    display: inline-block;
	width: 100%;
	height: 80px;
	padding-top: 55px;
	padding-left: 4px;
	padding-bottom: 0px;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	border:0;
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
	/*line-height: 25px;*/
	text-align: left;
}
	
.footer a {
	text-decoration: none;
	color: #484848;
	font-size: .9375rem;
	opacity: 1;
}

.footer a:hover {
	text-decoration: underline;
	text-decoration-color: #7b7b7b; 
	text-underline-position: under;
	color: #484848;
	opacity: 1;
}

.heebo-copyright {
  	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
  	font-optical-sizing: auto;
  	font-style: normal;
  	display:inline-block;
	/*line-height: 1.2;*/
	color: #757575;
}
	
.container {
	width: 100%;
	padding: 0px;
	border: 0px;
	margin: 0 auto;
}
	
.your-class {
	width: 100%;
	max-width: 100%;
	padding: 0px;
	margin: 0px;
	border: 0px;
}
	
.your-class img {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	border: 0px;
}
	
.slick-slide {
    margin: 8px 320px; /* 10px of margin on the left and right of each slide */
	
}
	
.slick-prev {
    left: 17%; /* Adjust as needed */
	z-index: 10;
	opacity: 100%;
}
	
.slick-next {
    right: 16.85%; /* Adjust as needed */
	opacity: 100%;
}
	
.slick-custom-arrow {
  	/* Add your custom styling here */
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 1;
	height: 44px;
	width: 44px;
  	/* Add more styles for appearance, e.g., background, color, size, etc. */
}
	
.slick-custom-arrow:focus-visible {
  /* Ensure visible focus indicator for accessibility */
  outline: 3px solid #F5663B;
} 

.slick-custom-arrow:focus:not(:focus-visible) {
  	/* Ensure visible focus indicator for accessibility */
  	outline: none;
}

.slick-next::before, .slick-prev::before {
  	content: none;
}
	
/* Required to contain the absolutely positioned caption */
.slide {
  	position: relative; 
}

/* Style and position the caption */
.slide_caption {
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	width: 100%;
  	padding-left: 0px;
  	/* background-color: rgba(0, 0, 0, 0.6); Semi-transparent background */
  	color: #484848;
  	z-index: 2; /* Ensure caption is above the image */
	font-family: "Heebo", sans-serif;
	font-size: .9375rem;
	font-weight: 220;
}

/* SMARTPHONE PORTRAIT VERSION (MICRO SCREENS)  */
@media screen and (min-width: 200px) and (max-width: 369px) {
.photo_counter {
	float: right; 
	right: 118px; 
	position: absolute; 
	top: 14px; 
	display: inline-block;
}

.text_box {
	width: 60%;
}
.close_button {
	float: right; 
	position: relative; 
	top: -3px;
	right: 80px; 
	border: 0px; 
	padding: 0px; 
	margin: 0px;
}

.text_bar_2 {
	padding-bottom: 2px;
	padding-left: 40px;
	padding-right: 40px;
}
.text_bar {
	padding-bottom: 30px;
	padding-left: 40px;
	padding-right: 40px;
}
.photo_name {
	display: none;
}
header {
	padding-left: 31px;
	padding-right: 0px;
	margin-bottom: 55px;
	padding-top: 4px;
}
	
.logo-section {
	padding-bottom: 10px;
}

#main_nav {
	clear: both;
	float: left;
}
	
nav ul li {
	float: left;
	padding-left: 0px;
	padding-right: 42px;
}
	
	
.container_top_bar {
	border: 0; 
	padding-left: 37px; 
	padding-right: 37px;
	max-width: 1420px;
	margin: 0 auto;
	height: auto;
}
	
.slick-custom-arrow {
  /* Add your custom styling here */
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 1;
	height: 25px;
	width: 25px;
  /* Add more styles for appearance, e.g., background, color, size, etc. */
}
	
.slick-slide {
    margin: 8px 40px; /* 10px of margin on the left and right of each slide */
}
	
.slick-prev {
    left: 1.4%; /* Adjust as needed */
	z-index: 10;
	opacity: 100%;
}
	
.slick-next {
    right: 1.4%; /* Adjust as needed */
	opacity: 100%;
}
	
.text_bar {
	display: inline-block;
}
	
.text_bar_smartphone_xs {
	display: inline-block;
}	

.navbar {
	display: none;
}
	
.navbar_tablet {
	display: inline-block;
}
}

/* SMARTPHONE PORTRAIT VERSION (OLDER SMARTPHONES)  */
@media screen and (min-width: 370px) and (max-width: 439px) {
.text_box {
		width: 65%;
}
.photo_counter {
	float: right; 
	right: 118px; 
	position: absolute; 
	top: 14px; 
	display: inline-block;
}
.photo_name {
	display: none;
}
.close_button {
	float: right; 
	position: relative; 
	top: -3px;
	right: 80px; 
	border: 0px; 
	padding: 0px; 
	margin: 0px;
}

.text_bar_2 {
	padding-bottom: 2px;
	padding-left: 40px;
	padding-right: 40px;
}
.text_bar {
	padding-bottom: 30px;
	padding-left: 40px;
	padding-right: 40px;
}

header {
	padding-left: 31px;
	padding-right: 0px;
	margin-bottom: 55px;
	padding-top: 4px;
}
	
.logo-section {
	padding-bottom: 10px;
}

#main_nav {
	clear: both;
	float: left;
}
	
nav ul li {
	float: left;
	padding-left: 0px;
	padding-right: 42px;
}
	
	
.container_top_bar {
	border: 0; 
	padding-left: 37px; 
	padding-right: 37px;
	max-width: 1420px;
	margin: 0 auto;
	height: auto;
}
	
.slick-custom-arrow {
  /* Add your custom styling here */
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 1;
	height: 25px;
	width: 25px;
  /* Add more styles for appearance, e.g., background, color, size, etc. */
}
	
.slick-slide {
    margin: 8px 40px; /* 10px of margin on the left and right of each slide */
}
	
.slick-prev {
    left: 1.4%; /* Adjust as needed */
	z-index: 10;
	opacity: 100%;
}
	
.slick-next {
    right: 1.4%; /* Adjust as needed */
	opacity: 100%;
}
	
.text_bar {
	display: inline-block;
}
	
.text_bar_smartphone_xs {
	display: inline-block;
}	

.navbar {
	display: none;
}
	
.navbar_tablet {
	display: inline-block;
}
}


/* SMARTPHONE PORTRAIT VERSION  */
@media screen and (min-width: 440px) and (max-width: 699px) {
.text_box {
	width: 70%;
}
.photo_counter {
	right: 118px; 
}
	
.close_button {
	float: right; 
	position: relative; 
	top: -3px;
	right: 80px; 
	border: 0px; 
	padding: 0px; 
	margin: 0px;
}
	
.text_bar_2 {
	padding-bottom: 2px;
	padding-left: 40px;
	padding-right: 40px;
}

.text_bar {
	padding-bottom: 30px;
	padding-left: 40px;
	padding-right: 40px;
}
	
header {
	padding-left: 31px;
	padding-right: 0px;
	margin-bottom: 55px;
	padding-top: 4px;
}
	
.logo-section {
	padding-bottom: 10px;
}

#main_nav {
	clear: both;
	float: left;
}
	
nav ul li {
	float: left;
	padding-left: 0px;
	padding-right: 42px;
}
	
	
.container_top_bar {
	border: 0; 
	padding-left: 37px; 
	padding-right: 37px;
	max-width: 1420px;
	margin: 0 auto;
	height: auto;
}
	
.slick-custom-arrow {
  /* Add your custom styling here */
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	z-index: 1;
	height: 25px;
	width: 25px;
  /* Add more styles for appearance, e.g., background, color, size, etc. */
}
	
.slick-slide {
    margin: 8px 40px; /* 10px of margin on the left and right of each slide */
}
	
.slick-prev {
    left: 1.4%; /* Adjust as needed */
	z-index: 10;
	opacity: 100%;
}
	
.slick-next {
    right: 1.4%; /* Adjust as needed */
	opacity: 100%;
}
	
.text_bar_smartphone_xs {
	display: none;
}	

.navbar {
	display: none;
}
	
.navbar_tablet {
	display: inline-block;
}
}
	
/* TABLET VERSION  */	
@media screen and (min-width: 700px) and (max-width: 999px) {
.text_box {
	width: 43%;
}
	
.photo_counter {
	right: 538px; 
}
.close_button {
	float: right; 
	position: relative; 
	top: -3px;
	right: 360px; 
	border: 0px; 
	padding: 0px; 
	margin: 0px;
}
	
.text_bar_2 {
	padding-bottom: 2px;
	padding-left: 180px;
	padding-right: 180px;
}
	
.text_bar {
	padding-bottom: 30px;
	padding-left: 180px;
	padding-right: 180px;
}
	
header {
		margin-bottom: 43px;
}
	
#main_nav {
	float: left;
}
	
.logo-section {
	padding-bottom: 10px;
}
	
nav ul {
	float: left;
	clear: both;
}
	
nav ul li {
	padding-left: 0px;
	padding-right: 50px;
}

.slick-slide {
  	margin: 8px 180px; /* 10px of margin on the left and right of each slide */
}
	
.slick-prev {
    left: 10.6%; /* Adjust as needed */
	z-index: 10;
	opacity: 100%;
}
	
.slick-next {
    right: 10.6%; /* Adjust as needed */
	opacity: 100%;
}
	
.text_bar_smartphone_xs {
	display: none;
}
	
.navbar {
	display: none;
}
.navbar_tablet {
	display: inline-block;
}
}
	
/* DESKTOP VERSION */
@media screen and (min-width: 1000px) and (max-width: 1499px) {
		
}
	
	
@media screen and (min-width: 1500px) {

.container {
    width: 1500px;
}
}