@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url('https://fonts.googleapis.com/css?family=Montserrat:900i&display=swap');

body{
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  margin: 0px;
  background-color: #454443;
}

div.header-container{
width: 100%;
height: auto;
min-height: 750px;
background-image: url("images/etwoodbg.jpg"); 
background-position: center; 
background-repeat: no-repeat; 
background-size: cover; 
position: relative;
border-bottom: 2px;
border-color: #000;
border-bottom-style: solid;

}

p{
	text-shadow: 2px 2px black;
	
}


div.tool-container{
position: absolute;
background-image: url("images/tools.png"); 
background-position: bottom right; 
background-repeat: no-repeat; 
background-size: 100% auto; 
bottom: 0;
right: 0;
width:  50%;
height: 80%;
min-width: 674px;

}

div.tool-container.img{
position: absolute;
bottom: 0;
right: 0;
width: 200%;
height:auto;
}


h1{
  border:6px solid #D8C13C;
  border-radius:3px;
  text-decoration:none;
  display:inline-block;
  margin:40px -6px  0px 0px;
  padding:5px 20px 10px 10px;
  font-weight:600;
  font-size:4vw;
  box-sizing:border-box;
  color: #D8C13C;
  border-left-width: 0px;
  text-shadow: 2px 2px black;
  box-shadow: 2px 2px black;
  
}

#header-text{
	
	font-weight:600;
    font-size:2.5vw;
	color: #fff;
	margin-left: 7%;
	
}

div.link-container{
	z-index: 5;
	position: relative;
}

a{
	width: 45%;
	font-weight:600;
	font-size:2.75vw;
	z-index: 5;
	text-shadow: 2px 2px black;
	box-shadow: 2px 2px black;
}

a:link, a:visited {
  background-color: #f44336;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: red;
}

div.footer{
	
	height: 250px;
	background-color: #000;
	
}


.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 0 auto;
    padding: 10px;
}
.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
    z-index: 7;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
}

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

* {
    box-sizing: border-box;
}