* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: small;
	color: rgb(0, 0, 0);
	background: rgb(255, 255, 255);
}

#main {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

#sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  padding: 1px;
  z-index: 5;
}

.container {
  position: relative;
  text-align: center;
  margin-bottom:80px;
}

.container_text {
  position: absolute;
  bottom: -2em;
  right: 10px;
  color: grey;
}

.about { 
	width:100%;
	height:800px;
	text-align: center;
/* 
	border:1px solid blue; 
 */
}

.about_2 { 
	width:70%;
	height:100%;
	display: inline-block;
	margin: 0 auto;
/* 
	border:1px solid red;
 */
	text-align: center;
}

#about_img { 
	position: relative; 
/* 
	border:1px solid green; 
 */
	width:100%; 
	height:100%; 
	display: inline-block;
	margin: 0 auto;
}

#about_txt { 
	margin: 20px;
}

.text-block {
  position: absolute;
  max-width:500px;
  top: 100px;
  left: 500px;
  background-color: rgba(255,255,255,1);
  color: black;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
}



p {
	margin:10px;
}

.about img {
	float:left;
	width:auto;
	max-height:100%;
	object-fit:cover;
	padding:20px;
	padding-right:20%;
}

img {
	max-width: 100%;
}

#all {
	margin: 10px auto;
	width: 100%;
}

#header {
	text-align: center;
}

#topnav {
	margin: 20px auto;
	text-align: center;
}

.mainnav {
	margin: 20px auto;
}

.mainnav ul {
	list-style: none;
	text-align: center;
}

.mainnav ul li{
	display: inline;
	color: grey;
	margin: auto 10px;
}

.mainnav ul a{
	text-decoration: none;
	color: grey;
}

#current{
	color: rgb(0, 0, 0); 
}

.mainnav ul a:hover{
	text-decoration: none;
	color: rgb(0, 0, 0);
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 33.3%; /* IE10 */
  flex: 33.3%;
  max-width: 33.3%;
  padding: 0 40px;
}

.column_50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  max-width: 50%;
  padding: 0 40px;
}

.column_25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 40px;
}

.column img, .column_50 img, .column_25 img {
  margin-top: 80px;
  vertical-align: middle;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.column img:first-of-type, .column_50 img:first-of-type {
  margin-top: 20px;
}

.column img:hover, .column_50 img:hover {opacity: 0.7;}


@media screen and (max-width: 1200px) {
  .column {
    padding: 0 20px;
  	}
	.column img, .column_50 img, .column_25 img{
	margin-top: 40px;
	}
	
	.column_50 {
		-ms-flex: 75%;
		flex: 75%;
		max-width: 75%;
		padding: 0 20px;
  	}
  	
	.column_25 {
		-ms-flex: 12.5%;
		flex: 12.5%;
		max-width: 12.5%;
		padding: 0 20px;
  	}
}


@media screen and (max-width: 800px) {
  .column, .column_50 {
		-ms-flex: 100%;
		flex: 100%;
		max-width: 100%;
		padding: 0 20px;
  	}
	.column img, .column_50 img, .column_25 img {
		margin-top: 40px;
	}
	
}

/* The Modal popup stuff */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: auto;
  max-height: 100%;
}

/* Add Animation */
.modal-content {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

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

/* end pf the modal popup stuff*/


