@charset "utf-8";

body {
	
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: black;
	min-width: 360px;
	margin-left: 10%;
	margin-right: 10%;
}

.menuIcon{
	cursor: pointer;
}

.bar1, .bar2, .bar3 {
	width: 35px;
	height: 5px;
	background-color: ivory;
	margin: 6px;
	transition: 0.4s;
}

.change .bar1 {
	-webkit-transform: rotate(45deg) translate(-9px, 6px);
	transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
	-webkit-tranform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}

.mobileNav {
	overflow: hidden;
	position: relative;
}

.mobileNav #navLinks {
	display: none;
	background-color: black;
}

.mobileNav a {
	color: white;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	display: block;
}

.mobileNav div.menuIcon {
	margin-top: 30px;
	position: absolute;
	display: block;
	right: 0;
	top: 0;
}

.mobileNav div.menuIcon:hover {
	background-color: darkslategrey;
	color: black;
}

.mobileNav a:hover {
	background-color: rgba(41,41,41,0.50);
}

#topHeaderSeparator {
	width: 85%;
	margin-bottom: 40px;
	margin-top: 20px;
}

.btn {
	background-color:rgba(0,0,0,0.00);
	color: white;
	border-radius: 10px;
	margin: 10px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 24px;
	font-weight: bold;
	border: none;
	outline: none;
	padding: 2px 5px;
	cursor: pointer;
}

.btn:hover {
	background-color: rgba(146,145,145,0.50);
}

.btn.active {
	background-color: rgba(115,115,115,0.50);
	color: white;
}
    
.filterDiv {
	width: 300px;
	margin: 1%;
	margin-bottom: 20px;
	display: none;
}

.imgLink {
	transition: transform .5s;
}

.imgLink:hover {
	transform: scale(1.05);
}

.show {
  display: inline-block;
}
    
.container {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 1360px;
    min-width: 360px;
}

.flex-container {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.descriptiveText {
	margin-left: 30px;
	margin-right: 30px;
	color: white;
	font-size: 20px;
	max-width: 700px;
}
    
.navbar {
	margin-left: auto;
	margin-right: auto;
	width: auto;
	max-width: 1360px;
	min-width: 360px;
}
    
.logoimg {
	max-width: 300px;
	margin-top: 20px;
}

.mobileLogo {
	max-width: 200px;
	margin-top: 20px;
}

.herocontainer {
	margin-top: 20px;
	overflow: hidden;
	text-align: center;
}

    
#myBtnContainer {
    width: auto;
	float: right;
	margin-top: 20px;
}

#CopyrightText {
    text-align: center;
    color: #ffffff;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
}

@media only screen and (max-width: 800px) {
	.desktopNav {
		display: none;
	}
	
	.flex-container {
		flex-direction: column;
		text-align: center;
	}
}

@media only screen and (min-width: 800px) {
	.mobileNav {
		display: none;
	}
	
	#CopyrightText {
		font-size: 25px;
	}
}

footer {
	margin-top: 40px;
	padding: 20px;
}

/* CSS for Contact Lightbox */

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
	background-color:rgba(0,0,0,0.00);
	color: white;
	border-radius: 10px;
	margin: 10px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	font-size: 24px;
	font-weight: bold;
	border: none;
	outline: none;
	padding: 2px 5px;
	cursor: pointer;
}

.open-button:hover {
	background-color: rgba(146,145,145,0.50);
}

/* The popup form - hidden by default */
.form-popup {
  width: 100px;
  height: 50px;
  position:fixed; 
  top: calc(50% - 25px); // half of width
  left: calc(50% - 50px); // half of height
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 320px;
  
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=email] {
    text-align: center;
  width: 80%;
  padding: 15px;
  margin: 5px 0 10px 0;
  border: none;
  background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=email]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/login button */
.form-container {
  background-color: #414141;
    text-align: center;
  color: white;
  padding: 5px 10px;
  border: none;
    border-radius: 10px;
  cursor: pointer;
  width: 100%;
margin-left: 50%;
  margin-bottom: 10px;
  opacity: 0.95;
    z-index: 11;
}

/* Add some hover effects to buttons */
.form-container .open-button:hover {
  opacity: 1;
}

.lightbox {
    background-size: cover;
    background-color: black;
    position: fixed;
    top: -100px;
    left: -100px;
    width: 200%;
    max-width: 1000px;
    height: 200%;
    opacity: 0.6;
}