:root {
	--plain-white-color: #fff;
	--charcoal-color: #424754;
	--mid-blue-color: #077a99;
	--light-blue-color: #94b2bf;
	--light-grey-color: #e4e6eb;
	--mid-gold-color: #ddab5e;
	--black-color: #121317; 
	--red-color: #d90000;
	--green-color: #00962d;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--plain-white-color, #fcfcfc); 
	color: var(--black-color, #121317);
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/


/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/open-sans-v16-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Regular'), local('OpenSans-Regular'),
       url('fonts/open-sans-v16-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v16-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v16-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v16-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v16-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/open-sans-v16-latin-600.eot'); /* IE9 Compat Modes */
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
       url('fonts/open-sans-v16-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v16-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v16-latin-600.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v16-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v16-latin-600.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/open-sans-v16-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Open Sans Bold'), local('OpenSans-Bold'),
       url('fonts/open-sans-v16-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v16-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v16-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v16-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v16-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}

/* noto-serif-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Noto Serif';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/noto-serif-v23-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/noto-serif-v23-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* noto-serif-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Noto Serif';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/noto-serif-v23-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/noto-serif-v23-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* noto-serif-800 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Noto Serif';
	font-style: normal;
	font-weight: 800;
	src: url('fonts/noto-serif-v23-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/noto-serif-v23-latin-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
h1, h2, h3 {
	color: var(--charcoal-color, #424754);
	padding-top: 0;
	font-family: 'Noto Serif', serif;
}

h1 {
	font-size: 2.125rem;
}

h2 {
	font-size: 1.75rem;
	margin-bottom: 1.25em;
}

p {
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
	color: var(--mid-gold-color, #ddab5e); 
	transition:all ease-in-out .5s;
	text-decoration: underline;
}

a:visited {
	color: var(--light-blue-color, #94b2bf); 
}

a:hover {
	color: var(--mid-blue-color, #077a99); 
	text-decoration: underline;
}

a:active {
	color: var(--mid-blue-color, #077a99); 
  }


/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
img {
	height: auto;
	max-width: 100%;
}

/*--------------------------------------------------------------
# Website Wrapper
--------------------------------------------------------------*/
.wrapper {
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	background-color: var(--charcoal-color, #424754);
	display: flex;
	max-height: 250px;
	padding: 1.25em;
	position: sticky;
    top: 0;
    z-index: 10;
}

header .inner-container {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	width: 1440px;
}

header .inner-container .logo {
	line-height: 0;
	width: 50%;
}

header .inner-container img {
	height: 100px;
}

header .inner-container a:hover {
	opacity: 0.5;
}

header .inner-container nav {
	width: 50%;
}

.inner-container {
	margin: 0 auto;
	width: 1440px;
}

main {
	font-size: 1rem;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.main-navigation {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.hamburger-menu { 
	color: var(--plain-white-color, #fcfcfc); 
	cursor: pointer;
	font-size: 3.125rem;
	transition: color ease-in-out 0.5s;
}

.hamburger-menu:hover { 
	color: var(--mid-gold-color, #ddab5e); 
}

 /* The side navigation menu */
.sidenav {
	background-color: rgba(0, 0, 0, 0.95);
	height: 100%;
	left: 0;
	overflow-x: hidden; 
	padding-top: 3.75em; 
	position: fixed;
	top: 0; 
	transition: 0.5s; 
	width: 0;
	z-index: 1; 
  }
  

.sidenav a {
	color: var(--plain-white-color, #fcfcfc); 
	display: block;
	font-size: 1.5rem;
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	transition: 0.3s;
  }
  

.sidenav a:hover {
	color: var(--mid-gold-color, #ddab5e); 
  }
 
.sidenav .closebtn {
	font-size: 2.25rem;
	margin-left: 50px;
	position: absolute;
	right: 25px;
	top: 0;
  }
  
  @media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
  } 


/*--------------------------------------------------------------
# Homepage 
--------------------------------------------------------------*/

/* Section 1 */
#home-section-one {
	background-color:  var(--light-grey-color, #fcfcfc); 
}

/* Section 1 Slideshow */
.slideshow-container {
	margin: auto;
	position: relative;
 }
  
.mySlides {
	display: none;
}

.slideshow-slide-01, .slideshow-slide-02 {	
	align-items: center;
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover; 
	display: flex;
	height: 400px;
	justify-content: center;
	width: 100%;
}

.slideshow-slide-01 {
  	background-image: url("images/slide1.jpg");
}

.slideshow-slide-02 {
	background-image: url("images/slide2.jpg");
}

.prev, .next {
	border-radius: 0 3px 3px 0;
	background-color: var(--black-color, #121317);
	color: var(--plain-white-color, #fcfcfc); 
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	margin-top: -22px;
	padding: 16px;
	position: absolute;
	text-decoration: none;
	top: 50%;
	transition: 0.5s ease;
	user-select: none;
	width: auto;
}

.next {
	right: 0;
 }

.prev:hover, .next:hover {
	background-color: var(--black-color, #121317);
	color: var(--mid-gold-color, #ddab5e); 
	text-decoration: none;
}

.prev:active, .next:active {
	color: var(--mid-gold-color, #ddab5e); 
}


.prev:visited, .next:visited {
	color: var(--plain-white-color, #fcfcfc); 
}
  
.slideshow_text {
	box-sizing: content-box;
	color: var(--plain-white-color, #fcfcfc); 
	font-size: 1.625rem;
	width: 1440px;
	padding: 2.5em;
	text-align: left;
}

.slideshow_text_button {
	background-color: var(--mid-gold-color, #ddab5e); 
	color: var(--black-color, #121317);
	font-size: 1.25rem;
	padding:  0.75em 1.75em;
	text-decoration: none;	
}

.slideshow_text_button:hover {
	background-color:  var(--charcoal-color, #424754);
	color: var(--mid-gold-color, #ddab5e); 
	text-decoration: none;	
}

.slideshow_text_button:visited {
	color: transparent
}

.slideshow-dots {
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: center;
}
  
  /* The dots/bullets/indicators */
.dot {
	background-color: var(--charcoal-color, #424754);
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 15px;
	margin: 0 2px;
	transition: background-color 0.5s ease;
	width: 15px;
}
  
.active, .dot:hover {
	background-color: var(--mid-gold-color, #ddab5e); 
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}
  
  @keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

/* Section 2 */

#home-section-two {
	background-color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
}

.accordion-trigger {
	background-color: var(--charcoal-color, #424754);
	color:  var(--plain-white-color, #fcfcfc); 
	padding: 1.25em;
	cursor: pointer;
}

.accordion-title {
	transition: color  0.5s ease;
}

.accordion-trigger:hover > .accordion-title {
	color: var(--mid-gold-color, #ddab5e); 
}

.accordion-item {
	background-color: var(--plain-white-color, #fcfcfc); 
	border: 2px solid var(--charcoal-color, #424754);
	margin-bottom: 0.625em;
}

.accordion-content {
	 margin: 1.25em; 
}

/* Section 3 */

#home-section-three {
	background-color: var(--light-grey-color, #e4e6eb);
	display: flex;
	padding: 3.75em 2.5em;
}

#home-section-three .inner-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

#home-section-three h2{
	display: block;
	margin-bottom: 2.5em;
	text-align: center;
	width: 100%;
}

.company-values-box {
	background-color: var(--charcoal-color, #424754);
	color:  var(--plain-white-color, #fcfcfc); 
	padding: 1.25em;
	text-align: center;
	width: 30%;
}

.company-values-box img {
	width: 150px;
}

.company-values-box h3 {
	color: var(--mid-gold-color, #ddab5e); 
	font-size: 1.625rem;
	margin-bottom: 0px;
}

/* Section 4 */

#home-section-four {
	background-color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
}

#home-section-four .inner-container {
	column-gap: 10%;
	display: flex;
	flex-direction: row;
}

#home-section-four .inner-container .left, #home-section-four .inner-container .right {
	width: 50%;
}

.contact-button {
	background-color: var(--mid-gold-color, #ddab5e); 
	color: var(--black-color, #1e2025);
	font-size: 1rem;
	padding:  0.75em 1.75em;
	text-decoration: none;	
}

.contact-button:hover {
	background-color:  var(--charcoal-color, #424754);
	color: var(--mid-gold-color, #ddab5e); 
	text-decoration: none;	
}

.contact-button:visited {
	color: transparent
}

/* Contact Form */
	
.form input, .form textarea {
	font-family: 'Open Sans';
}
	
.form-field {
	margin-bottom: 1.25em;
}
	
.form-field label {
	display: block;
	color: var(--charcoal-color, #424754);
	font-weight: 700;
	margin-bottom: 0.3125em;
}
	
.form-field input, .form-field textarea {
	border: solid 2px #f0f0f0;
	display: block;
	font-size: 0.875rem;
	margin-bottom: 0.3125em;
	padding: 0.625em;
	width: 100%;
}
	
.form-field input:focus, .form-field textarea:focus {
	outline: none;
}
	
.form-field.error input, .form-field.error textarea {
	border-color: var(--red-color, #d90000); 
}
	
.form-field.success input, .form-field.success textarea  {
	border-color: var(--green-color, #00962d);
}
	
.form-field small {
	color: var(--red-color, #d90000); 
}

.btn {
	/* width: 100%; */
	background-color: var(--mid-gold-color, #ddab5e); 
	color: var(--black-color, #1e2025);
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	font-size: 1rem !important;
	padding:  0.75em 1.75em;
	transition:all ease-in-out .5s;
}
	
.btn:hover {
	background-color:  var(--charcoal-color, #424754);
	color: var(--mid-gold-color, #ddab5e); 
}
	
.btn:focus {
	outline: none;
}

/* Alternative Pages */

.alternative-pages {
	display: flex;
	padding: 3em 2em;
}

.alternative-pages .inner-container {
	column-gap: 10%;
	display: flex;
	flex-direction: row;
}

.alternative-page-left, .alternative-page-right {
	width: 50%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
	background-color:  var(--charcoal-color, #424754);
	display: flex;
	padding: 1rem;
}

footer .inner-container {
	color: var(--plain-white-color, #fcfcfc); 
	margin: 0 auto;
	text-align: center;
	width: 1440px;
}

/* On screens that are 768px or less */
@media screen and (max-width: 768px) {

	#home-section-two, #home-section-three, #home-section-four  {
		padding: 20px;
	}

	#home-section-one .inner-container, #home-section-two .inner-container, #home-section-three .inner-container, #home-section-four .inner-container  {
		width: 100%;
	}

	#home-section-three .inner-container {
		flex-direction: column;
		row-gap: 20px;
	}

	#home-section-three h2 {
		margin-bottom: 1.5em;
	}
	
	.company-values-box {
		padding: 20px;
		width: 100%;
	}

	#home-section-four .inner-container {
		flex-direction: column;
		row-gap: 50px;
	}

	#home-section-four .inner-container .left, #home-section-four .inner-container .right {
		width: 100%;
	}

	.alternative-pages .inner-container {
		flex-direction: column;
		row-gap: 20px;
	}
	
	.alternative-page-left, .alternative-page-right {
		width: 100%;
	}

	footer .inner-container {
		width: 100%;
	}	
}



