/* CSS Document */
body,html{
	/*max-width: 1200px;*/
	margin: auto;
	color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	/*background-image: url("images/siteback.png");
	background-position: top left;
  	background-repeat: repeat;*/
	background-color: black;
    margin-bottom: 100px;
    height: 100%;
	}
	.layer{
		background-color: rgba(0,0,0,0.75);
        background-position: center;
        margin: auto;
        /*position: center;*/
        max-width: 1200px;
		/*width:1000px;*/
	}
.newlayer{
    max-width: 85%;
    margin:auto;
}
.newlayer-66{
    max-width: 66%;
    margin:auto;
}
.newlayer-50{
    max-width: 50%;
    margin:auto;
}
.navimg{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    /*width: 50%;*/
}
.navimgoverlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    /*background-color: #008CBA;*/
}
.navimgtext {
    color: white;
    opacity:100%;
    font-size: 55px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.navimg:hover .navimgoverlay{
    /*background-color: lightgray;*/
    opacity: 100%;
}
	.center {
        display: block;
  		margin-left: auto;
  		margin-right: auto;
		width:75%;
		}
    .header-center {
        display: block;
  		margin-left: auto;
  		margin-right: auto;
        position: center;
		width:30%;
		}
	.header {
		padding: 0px;
		/*background-image: url("images/aacmotzz.png");*/
		/*size: 100%;*/
        image-width: 30%;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.navbar {
        /*max-width: 1200px;*/
        /*position: center;*/
        margin: auto;
        overflow: hidden;
        background-color: #1B1B1B;
        position: sticky; /* Set the navbar to fixed position */
        top: 0px; /* Position the navbar at the top of the page */
        /*width: 100%;*/ /* Full width */ 
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 25px;
        padding-right: 25px;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
        font-size: 18px;
        text-align: center;
        display: flex;
        justify-content: space-between;
        z-index: 1;
	}
	.navbar:after {
    /*content: '';*/
    display: inline-block;
    /*display: flex;
    justify-content: space-evenly;*/
    width: 90%;
}
	a:link {
		color:white;
		font-style:normal;
		text-decoration:none;
	}
	a:visited{
		color:gray;
		font-style:normal;
		text-decoration:none;
	}
	a:hover {
		color:darkgray;
		font-style:normal;
		text-decoration:none;
	}
@media screen and (max-width:750px)
{
    .navbar {
        font-size:16px;
    }
}
@media screen and (max-width:500px)
{
    .navbar {
        font-size:14px;
    }
}
@media screen and (max-width:350px)
{
    .navbar {
        font-size:12px;
        display:contents;
    }
}
.split {
  height: 100%;
  width: 33%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow-x: hidden;
  padding-top: 10px;
}

.left {
  left: 0;
  background-color: #111;
}

.right {
  right: 0;
  background-color: red;
}
* {
  box-sizing:border-box;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/*body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}*/

.container {
  padding: 64px;
}

.row:after {
  content: "";
  display: table;
  clear: both
}

.column-66 {
  float: left;
  width: 66.66666%;
  padding: 20px;
}

.column-33 {
  float: left;
  width: 33.33333%;
  padding: 20px;
}

.large-font {
  font-size: 18px;
}

.xlarge-font {
  font-size: 32px
}

.button {
  border: none;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  cursor: pointer;
  background-color: #4CAF50;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}
img-invert{
	-webkit-filter: invert(1);
	filter: invert(1);
}

@media screen and (max-width: 1000px) {
  .column-66,
  .column-33 {
    width: 100%;
    text-align: center;
  }
  img {
    margin: auto;
    }
}
@media screen and (max-width:500px){
	.floatcol{
		width: 100%
	}
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/*Mailing List*/
.mailchimpform {
    color:lightgrey;
}
/*Buttons CSS */
.button {
    border: thick;
    color:white;
    background-color:grey;
    border-radius:8px;
}
.button:hover {
    background-color:dimgrey;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Style all font awesome icons */
.fa {
  padding: 10px;
  /*font-size: 60px;*/
  width: 35px;
  text-align: center;
  text-decoration: none;
  border-radius:50%;
}

/* Add a hover effect if you want */
.fa:hover {
    opacity: 0.7;
    padding: 10px;
  /*font-size: 60px;*/
    width: 35px;
    text-align: center;
    text-decoration: none;
    border-radius:50%;
}

/* Style the tab */
.tab {
  overflow: hidden;
  /*border: 1px solid #5C5C5C;*/
  background-color: #434343;
  width: 208px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #606060;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #494949;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  /*border: 1px solid #919191;*/
  border-top: none;
}
.floatcol{
	float: left;
 	width: 33.33%;
  	padding: 5px;
}
.floatrow::after{
	content: "";
  	clear: both;
  	display: table;
}

.footer{
    /*position:relative;*/
    left: 0;
    /*right:0;*/
    bottom: 0;
    width: 100%;
    overflow:hidden;
    background-color:#1b1b1b;
    padding:10px 10px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 28px;
    color:dimgray;
}

/*modal grid*/
.img-grid-row{
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
    max-height: 50%;
    align-content: space-between;
}
.img-grid-col{
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
    align-content: space-between;
}
.img-grid-img{
    flex: 25%;
    /*max-width: 25%;*/
    padding: 0 4px;
    margin-top: 8px;
    margin-bottom: 8px;
    vertical-align: middle;
    align-content: space-between;
}
.img-grid-img img{
    /*width: 400px;*/
    height: 300px;
    overflow:hidden;
    object-fit: cover;
    background-size: cover;
    /*object-position: 50% 50%;*/
    align-content: space-between;
}

@media screen and (max-width: 800px) {
  .img-grid-img {
    flex: 50%;
    /*max-width: 50%;*/
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .img-grid-img {
    flex: 100%;
    align-content: center;
    /*max-width: 100%;*/
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* 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: 80%;
  max-width: 70%;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation 
.modal-content, #caption {  
  -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;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}