@charset "utf-8";
/* CSS Document */

html, body {
	margin: 0;
	height: 90%;
	min-height: 100%;
}

body {
	display: flex;
	flex-direction: column;
}

header {
	text-align: center;
	background-color: #000000;
	color:#FFCC66
	/*position: fixed;
	top: 0;
	left: 0;
	right: 0;*/
	flex: none;
}

main {
	overflow-y:auto;
  	-webkit-overflow-scrolling: touch;
  	flex: auto;
}

footer {
	text-align: center;
	background-color: #000000;
	color: goldenrod;
	/*padding: 10px 0;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;*/
	flex: none;
}

ul {
  display: flex;
  justify-content:center; 
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
  top: 0;
}

li {
  float: left;
}

li a {
  display: block;
  color:#FFCC66;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
    background-color: #111;
    text-align: center;
}

.TextHeader{
	font-family: "font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, 'sans-serif'";
	font-size: 80px;
	color:#FFCC66;
}

.ServicePageHeader{
	font-family: "font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', 'DejaVu Sans', Verdana, 'sans-serif'";
	font-size: 56px;
	color:#FFCC66;
}

.active {
  background-color: #4CAF50;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    width: 250px;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit:contain;
}

.lightbox {
    display: none;
    position:fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow:scroll;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
	display:block;
    margin-left:auto;
    margin-right:auto;
    margin-top: 10%;
	max-width: 50%;
    max-height: 50%;
	border: 3px solid grey;	
	position: fixed;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 250px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}