@charset "utf-8";
/* CSS Document */
a {
	color: #000000;
	text-decoration: none;
	transition: opacity 0.25s;
}
a:hover {
	opacity: 0.25;
}
a.active {
	font-weight: bold;
}
body {
	text-align: center;
	font-family: Optima;
}
body, html {
    height: 100%;
}
.contact {
    border-radius: 5px;
    padding: 20px;
    width: 600px;
    margin: auto;
    text-transform: uppercase;
}
h1 {
    font-size: 24px;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 24px;
}
h1-inv {
	font-size: 24px;
	text-transform: uppercase;
	margin-top: 24px;
    margin-bottom: 24px;
	color: black;
}
h2 {
	font-size: 36px;
	text-transform: uppercase;
}
h2-inv {
	font-size: 36px;
	text-transform: uppercase;
	color: black;
}
h3 {
	font-size: 54px;
	text-transform: uppercase;
}
h3-inv {
	font-size: 54px;
	text-transform: uppercase;
	color: black;
}
h4 {
	font-size: 54px;
	text-transform: uppercase;
	color: black;
}
.header {
	background: #FFFFFF;
	top: 0;
}
.hero-image {
	margin-bottom: 24px;
    background-image: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, 0.5)), url("index.png");
    height: 50%;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}
.hero-footer {
	margin-top: 24px;
    background-image: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, 0.5)), url("index.png");
    height: 64%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-text {
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%);
	color: white;
}
.image-card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	flex: 20%;
	max-width: 25%;
	padding: 24px;
}
.image-card:hover img{
	transform: scale(1.1);
}
.image-card:hover .image-overlay {
	opacity: 1;
	transform: translateY(0);
}
.image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}
.image-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	opacity: 0;
	transform: translateY(0px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.image-static-half {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	flex: 20%;
	max-width: 50%;
	padding: 24px;
}
.image-static-half img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}
.image-static-quarter {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	flex: 20%;
	max-width: 25%;
	padding: 24px;
}
.image-static-quarter img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}
.image-static-eighth {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	flex: 20%;
	max-width: 10%;
	padding: 24px;
}
.image-static-eighth img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}
input[type=submit] {
    background-color: #04AA6D;
	color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
	font-family: Optima;
	text-transform: uppercase;
}
input[type=submit]:hover {
  background-color: #FFFFFF;
	color:#04AA6D;
}
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */;
    font-family: Optima;
}
.portrait {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	flex: 20%;
	max-width: 25%;
	margin-top: 24px;
}
.portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}
.portrait-desc {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	flex: 20%;
	max-width: 25%;
	padding: 24px;
}
.row {
	display: flex;
	flex-wrap: wrap;
}
.site-footer {
	padding-top: 24px;
	padding-bottom: 24px;
	text-align: center;
	font-size: 16px;
	line-height: 1;
}
.topnav {
    background-color: #FFFFFF;
    overflow: hidden;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 24px;
}
.topnav a {
	color: #000000;
	text-align: center;
	padding-top: 16px;
	padding-right: 16px;
	padding-left: 16px;
	padding-bottom: 16px;
	text-decoration: none;
	transition: opacity 0.25s;
}
.topnav a:hover {
	opacity: 0.25;
}
.topnav a.active {
	font-weight: bold;
}
.zoom {
	padding: 50px;
	background-color: green;
	transition: .1s;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}
.zoom:hover {
	transform: scale(1.5);
}
