@charset "UTF-8";

@font-face { font-family: 'MyWebFont'; src: url('myfont.woff2') format('woff2'), url('myfont.woff') format('woff'); }




/*mobile*/
@media (max-width: 380px){
	
.header {
	max-width: 100%;
  	height: auto;
	margin: 0px;
}
	
	
	
	
	.link {
	color: #30583D;
	text-decoration: none;
	
}


	

/* Add a black background color to the top navigation */
.topnav {
	background-color: #000000;
	overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: #ffffff;
	text-align: center;
	padding: 15px 35px;
	text-decoration: none;
	font-size: 14px;
	font-family: "Arial";
}

/* Add an active class to highlight the current page */
.active {
	background-color: #30583D;
	color: #ffffff;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
  font-family: "Arial";
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
	font-size: 14px;
	border: none;
	outline: none;
	color: #ffffff;
	padding: 15px 35px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f0f0f0;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
	float: none;
	color: #000000;
	padding: 15px 35px;
	text-decoration: none;
	display: block;
	text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #787878;
	color: #ffffff;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
	background-color: #c8c8c8;
	color: #000000;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 950 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 950px) {
.topnav a:not(:empty), .dropdown .dropbtn {
	display: none;
  }
.topnav a.icon {
	float: left;
    display: block;
	font-size: 26px;
	text-align: center;
    padding: 7px 17px;
	margin: 0px;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 950px) {
.topnav.responsive {position: relative;}
.topnav.responsive a.icon {
	position: absolute;
    right: 0;
    top: 0;
  }
.topnav.responsive a {
	float: none;
    display: block;
    text-align: left;
  }
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {
	display: block;
    width: 100%;
    text-align: left;
  }
} 
	

	
	
.main {
	display: block;
	margin-left: auto;
	margin-right: auto;
    align-content: center;
	width: auto;
    font-family: "Arial";
    font-style: normal;
    font-size: large;
	p. impact font-family: "Arial";
	color: #505050;
}
	
	
	
	
.sub-text {
	display: block;
	margin-left: auto;
	margin-right: auto;
    align-content: left;
	width: auto;
    font-family: "Arial";
    font-style: normal;
    font-size: large;
	p. impact font-family: "Arial";
	color: #505050;
	padding-left: 20px;
	padding-right: 20px;
}
	
	
	
	
/* Slideshow container */
.slideshow-container {
    width: 100%px;
    height: auto;
    position: relative;
    margin: 0px;
}

/* Hide the images by default */
.mySlides {
  	display: none;
}
	
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  	background-color:rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  	color: #FFFFFF;
  	font-size: 0px;
  	padding: 10px 10px;
  	position: absolute;
  	bottom: 10px;
  	width: 100%;
  	text-align: center;
}

/* Number text (1/4 etc) */
.numbertext {
  	color: #FFFFFF;
  	font-size: 0px;
  	padding: 10px 10px;
  	position: absolute;
  	top: 0;
}

/* The dots/bullets/indicators */
.dot {
  	cursor: pointer;
  	height: 15px;
  	width: 15px;
  	margin: 0 2px;
  	background-color: #c8c8c8;
  	border-radius: 50%;
  	display: inline-block;
  	transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
  	background-color: #000000;
}

/* Fading animation */
.fade {
  	-webkit-animation-name: fade;
  	-webkit-animation-duration:1.5s;
  	animation-name: fade;
  	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  	from {opacity: .4} 
  	to {opacity: 1}
}

@keyframes fade {
  	from {opacity: .4} 
  	to {opacity: 1}
}
	
	
/*Lightbox*/
* {
  	box-sizing: border-box;
}

.row > .column {
  	padding: 1px;
}

.row:after {
  	content: "";
  	display: table;
  	clear: both;
}

.column {
  	float: left;
  	width: 50%;
}

/* The Modal (background) */
.modal {
  	display: none;
  	position: fixed;
  	z-index: 1;
  	padding-top: 44px;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	overflow: auto;
  	background-color: #000000; 
}

/* Modal Content */
.modal-content {
  	position: relative;
  	background-color: #000000;
  	margin: auto;
  	padding: 0;
  	width: 100%;
  	height: auto;
  	max-width: 2000px;
}

/* The Close Button */
.close {
  	color: #FFFFFF;
  	position: absolute;
  	top: 10px;
  	right: 10px;
  	font-size: 35px;
  	font-weight: bold;
}

.close:hover,
.close:focus {
  	color: #c8c8c8;
  	text-decoration: none;
  	cursor: pointer;
}

.mySlides {
  	display: none;
}

.cursor {
  	cursor: pointer;
}

/* Next & previous buttons */
.prev-alt,
.next-alt {
  	cursor: pointer;
  	position: absolute;
  	top: 42%;
  	width: auto;
  	padding: 10px;
  	margin: 0% 10% 0% 10%;
  	color: #000000;
  	font-weight: bold;
  	font-size: 30px;
  	transition: 0.6s ease;
  	border-radius: 3px 3px 3px 3px;
 	user-select: none;
  	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.next-alt {
  	right: 0;
  	border-radius: 3px 3px 3px 3px;
}
	
/* Position the "prev button" to the right */
.prev-alt {
  	left: 0;
  	border-radius: 3px 3px 3px 3px;
}


/* On hover, add a black background color with a little bit see-through */
.prev-alt:hover,
.next-alt:hover {
  	background-color: #c8c8c8;
	opacity: 0.6;
}

/* Number text (1/4 etc) */
.numbertext-gallery {
  	color: white;
  	font-size: 20px;
  	padding: 10px 10px;
  	position: absolute;
  	top: 0;
}

img {
  	margin-bottom: -4px;
}

.caption-container {
  	text-align: center;
  	background-color: #000000;
  	padding: 2px 16px;
  	color: white;
}

.demo {
  	opacity: 0.6;
}

.active,
.demo:hover {
  	opacity: 1;
}

img.hover-thumbnail {
  	transition: 0.3s;
}
		
.hover-thumbnail:hover {
  	opacity: 0.6;
}
	
/*Gallery Header*/
.gallery-header {
	color: #505050;
}
	
	
	
	
.footer {
	max-width: 100%;
	height: auto;
	margin: 0px;
}

}









/*tablet*/
@media (min-width: 381px) and (max-width: 949px){
	
.header {
	max-width: 100%;
  	height: auto;
	margin: 0px;
}
	
	


.link {
	color: #30583D;
	text-decoration: none;
	
}
	
	

	
/* Add a black background color to the top navigation */
.topnav {
	background-color: #000000;
	overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: #ffffff;
	text-align: center;
	padding: 15px 35px;
	text-decoration: none;
	font-size: 14px;
	font-family: "Arial";
}

/* Add an active class to highlight the current page */
.active {
	background-color: #30583D;
	color: #ffffff;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
  font-family: "Arial";
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
	font-size: 14px;
	border: none;
	outline: none;
	color: #ffffff;
	padding: 15px 35px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f0f0f0;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
	float: none;
	color: #000000;
	padding: 15px 35px;
	text-decoration: none;
	display: block;
	text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #787878;
	color: #ffffff;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
	background-color: #c8c8c8;
	color: #000000;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 950 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 950px) {
.topnav a:not(:empty), .dropdown .dropbtn {
	display: none;
  }
.topnav a.icon {
	float: left;
    display: block;
	font-size: 26px;
	text-align: center;
    padding: 7px 17px;
	margin: 0px;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 950px) {
.topnav.responsive {position: relative;}
.topnav.responsive a.icon {
	position: absolute;
    right: 0;
    top: 0;
  }
.topnav.responsive a {
	float: none;
    display: block;
    text-align: left;
  }
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {
	display: block;
    width: 100%;
    text-align: left;
  }
} 
	
	
	
	
.main {
	display: block;
	margin-left: auto;
	margin-right: auto;
    align-content: center;
	width: auto;
    font-family: "Arial";
    font-style: normal;
    font-size: large;
	p. impact font-family: "Arial";
	color: #505050;
}
	
	
	
	
.sub-text {
	display: block;
	margin-left: auto;
	margin-right: auto;
    align-content: left;
	width: auto;
    font-family: "Arial";
    font-style: normal;
    font-size: large;
	p. impact font-family: "Arial";
	color: #505050;
	padding-left: 20px;
	padding-right: 20px;
}
	
	
	
	
/* Slideshow container */
.slideshow-container {
    width: 100%px;
    height: auto;
    position: relative;
    margin: 0px;
}

/* Hide the images by default */
.mySlides {
  	display: none;
}
	
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  	background-color:rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  	color: #FFFFFF;
  	font-size: 0px;
  	padding: 10px 10px;
  	position: absolute;
  	bottom: 10px;
  	width: 100%;
  	text-align: center;
}

/* Number text (1/4 etc) */
.numbertext {
  	color: #FFFFFF;
  	font-size: 0px;
  	padding: 10px 10px;
  	position: absolute;
  	top: 0;
}

/* The dots/bullets/indicators */
.dot {
  	cursor: pointer;
  	height: 18px;
  	width: 18px;
  	margin: 0 3px;
  	background-color: #c8c8c8;
  	border-radius: 50%;
  	display: inline-block;
  	transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
  	background-color: #000000;
}

/* Fading animation */
.fade {
  	-webkit-animation-name: fade;
  	-webkit-animation-duration:1.5s;
  	animation-name: fade;
  	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  	from {opacity: .4} 
  	to {opacity: 1}
}

@keyframes fade {
  	from {opacity: .4} 
  	to {opacity: 1}
}
	
	
/*Lightbox*/
* {
  	box-sizing: border-box;
}

.row > .column {
  	padding: 1px;
}

.row:after {
  	content: "";
  	display: table;
  	clear: both;
}

.column {
  	float: left;
  	width: 33%;
}

/* The Modal (background) */
.modal {
  	display: none;
  	position: fixed;
  	z-index: 1;
  	padding-top: 44px;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	overflow: auto;
  	background-color: #000000; 
}

/* Modal Content */
.modal-content {
  	position: relative;
  	background-color: #000000;
  	margin: auto;
  	padding: 0;
  	width: 100%;
  	height: auto;
  	max-width: 2000px;
}

/* The Close Button */
.close {
  	color: #FFFFFF;
  	position: absolute;
  	top: 10px;
  	right: 10px;
  	font-size: 35px;
  	font-weight: bold;
}

.close:hover,
.close:focus {
  	color: #c8c8c8;
  	text-decoration: none;
  	cursor: pointer;
}

.mySlides {
  	display: none;
}

.cursor {
  	cursor: pointer;
}

/* Next & previous buttons */
.prev-alt,
.next-alt {
  	cursor: pointer;
  	position: absolute;
  	top: 42%;
  	width: auto;
  	padding: 13px;
  	margin: 0% 10% 0% 10%;
  	color: #000000;
  	font-weight: bold;
  	font-size: 35px;
  	transition: 0.6s ease;
  	border-radius: 4px 4px 4px 4px;
 	user-select: none;
  	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.next-alt {
  	right: 0;
  	border-radius: 4px 4px 4px 4px;
}
	
/* Position the "prev button" to the right */
.prev-alt {
  	left: 0;
  	border-radius: 4px 4px 4px 4px;
}


/* On hover, add a black background color with a little bit see-through */
.prev-alt:hover,
.next-alt:hover {
  	background-color: #c8c8c8;
	opacity: 0.6;
}

/* Number text (1/4 etc) */
.numbertext-gallery {
  	color: white;
  	font-size: 20px;
  	padding: 10px 10px;
  	position: absolute;
  	top: 0;
}

img {
  	margin-bottom: -4px;
}

.caption-container {
  	text-align: center;
  	background-color: #000000;
  	padding: 2px 16px;
  	color: white;
}

.demo {
  	opacity: 0.6;
}

.active,
.demo:hover {
  	opacity: 1;
}

img.hover-thumbnail {
  	transition: 0.3s;
}
		
.hover-thumbnail:hover {
  	opacity: 0.6;
}
	
/*Gallery Header*/
.gallery-header {
	color: #505050;
}
	
	
	
	
.footer {
	max-width: 100%;
	height: auto;
	margin: 0px;
}
	
}









/*desktop*/
@media (min-width: 950px){
	
	.header {
	max-width: 100%;
  	height: auto;
	margin: 0px;
}
	
	
	
	
	.link {
	color: #30583D;
	text-decoration: none;
	
}
	
	
	

/* Add a black background color to the top navigation */
.topnav {
	background-color: #000000;
	overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
	float: left;
	display: block;
	color: #ffffff;
	text-align: center;
	padding: 15px 35px;
	text-decoration: none;
	font-size: 14px;
	font-family: "Arial";
}

/* Add an active class to highlight the current page */
.active {
	background-color: #30583D;
	color: #ffffff;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
	display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: left;
  overflow: hidden;
  font-family: "Arial";
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
	font-size: 14px;
	border: none;
	outline: none;
	color: #ffffff;
	padding: 15px 35px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f0f0f0;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
	float: none;
	color: #000000;
	padding: 15px 35px;
	text-decoration: none;
	display: block;
	text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #787878;
	color: #ffffff;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
	background-color: #c8c8c8;
	color: #000000;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 950 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 950px) {
.topnav a:not(:empty), .dropdown .dropbtn {
	display: none;
  }
.topnav a.icon {
	float: left;
    display: block;
	font-size: 26px;
	text-align: center;
    padding: 7px 17px;
	margin: 0px;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 950px) {
.topnav.responsive {position: relative;}
.topnav.responsive a.icon {
	position: absolute;
    right: 0;
    top: 0;
  }
.topnav.responsive a {
	float: none;
    display: block;
    text-align: left;
  }
.topnav.responsive .dropdown {float: none;}
.topnav.responsive .dropdown-content {position: relative;}
.topnav.responsive .dropdown .dropbtn {
	display: block;
    width: 100%;
    text-align: left;
  }
} 
	
	
	
	
.main {
	display: block;
	margin-left: auto;
	margin-right: auto;
    align-content: center;
	width: auto;
    font-family: "Arial";
    font-style: normal;
    font-size: large;
	p. impact font-family: "Arial";
	color: #505050;
}
	
	
	
	
.sub-text {
	display: block;
	margin-left: auto;
	margin-right: auto;
    align-content: left;
	width: auto;
    font-family: "Arial";
    font-style: normal;
    font-size: large;
	p. impact font-family: "Arial";
	color: #505050;
	padding-left: 20px;
	padding-right: 20px;
}

	
	
	
/* Slideshow container */
.slideshow-container {
    width: 100%px;
    height: auto;
    position: relative;
    margin: 0px;
}

/* Hide the images by default */
.mySlides {
  	display: none;
}
	
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  	background-color:rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  	color: #FFFFFF;
  	font-size: 0px;
  	padding: 10px 10px;
  	position: absolute;
  	bottom: 10px;
  	width: 100%;
  	text-align: center;
}

/* Number text (1/4 etc) */
.numbertext {
  	color: #FFFFFF;
  	font-size: 0px;
  	padding: 10px 10px;
  	position: absolute;
  	top: 0;
}

/* The dots/bullets/indicators */
.dot {
  	cursor: pointer;
  	height: 21px;
  	width: 21px;
  	margin: 0 4px;
  	background-color: #c8c8c8;
  	border-radius: 50%;
  	display: inline-block;
  	transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
  	background-color: #000000;
}

/* Fading animation */
.fade {
  	-webkit-animation-name: fade;
  	-webkit-animation-duration:1.5s;
  	animation-name: fade;
  	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  	from {opacity: .4} 
  	to {opacity: 1}
}

@keyframes fade {
  	from {opacity: .4} 
  	to {opacity: 1}
}
	
	
/*Lightbox*/
* {
  	box-sizing: border-box;
}

.row > .column {
  	padding: 1px;
}

.row:after {
  	content: "";
  	display: table;
  	clear: both;
}

.column {
  	float: left;
  	width: 25%;
}

/* The Modal (background) */
.modal {
  	display: none;
  	position: fixed;
  	z-index: 1;
  	padding-top: 44px;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
  	overflow: auto;
  	background-color: #000000; 
}

/* Modal Content */
.modal-content {
  	position: relative;
  	background-color: #000000;
  	margin: auto;
  	padding: 0;
  	width: 100%;
  	height: auto;
  	max-width: 2000px;
}

/* The Close Button */
.close {
  	color: #FFFFFF;
  	position: absolute;
  	top: 10px;
  	right: 10px;
  	font-size: 35px;
  	font-weight: bold;
}

.close:hover,
.close:focus {
  	color: #c8c8c8;
  	text-decoration: none;
  	cursor: pointer;
}

.mySlides {
  	display: none;
}

.cursor {
  	cursor: pointer;
}

/* Next & previous buttons */
.prev-alt,
.next-alt {
  	cursor: pointer;
  	position: absolute;
  	top: 42%;
  	width: auto;
  	padding: 16px;
  	margin: 0% 10% 0% 10%;
  	color: #000000;
  	font-weight: bold;
  	font-size: 40px;
  	transition: 0.6s ease;
  	border-radius: 5px 5px 5px 5px;
 	user-select: none;
  	-webkit-user-select: none;
}

/* Position the "next button" to the right */
.next-alt {
  	right: 0;
  	border-radius: 5px 5px 5px 5px;
}
	
/* Position the "prev button" to the right */
.prev-alt {
  	left: 0;
  	border-radius: 5px 5px 5px 5px;
}


/* On hover, add a black background color with a little bit see-through */
.prev-alt:hover,
.next-alt:hover {
  	background-color: #c8c8c8;
	opacity: 0.6;
}

/* Number text (1/4 etc) */
.numbertext-gallery {
  	color: white;
  	font-size: 20px;
  	padding: 10px 10px;
  	position: absolute;
  	top: 0;
}

img {
  	margin-bottom: -4px;
}

.caption-container {
  	text-align: center;
  	background-color: #000000;
  	padding: 2px 16px;
  	color: white;
}

.demo {
  	opacity: 0.6;
}

.active,
.demo:hover {
  	opacity: 1;
}

img.hover-thumbnail {
  	transition: 0.3s;
}
		
.hover-thumbnail:hover {
  	opacity: 0.6;
}
	
/*Gallery Header*/
.gallery-header {
	color: #505050;
}
	
	
	
		
.footer {
	max-width: 100%;
	height: auto;
	margin: 0px;
}

}


