/*--------------------------------------
Image Column
----------------------------------------
Sticky Button */
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: #white;
  max-width: 10%;
  height: auto;
}
#image-box{
  width: 55%;
}
.text-box{
  font-family: 'Raleway', san-serif;
  position: relative;
  width: 690px;
}
#text-box-2{
  font-family: 'Raleway', san-serif;
  color: rgb(60,60,60);
}

#resize{
width: 200px;
}

a:visited { 
  color: rgb(60,60,60);
}

h2{
  color: rgb(60,60,60);
  font-family: 'Raleway', san-serif;
  font-weight: 500;
  font-size:2rem;
}
h3{
  background-color: rgb(149,202,90);
  color:rgb(60,60,60);
  padding-left: 5px;
  padding-right: 30px;
  font-family: 'Raleway', san-serif;
  font-weight: 600;
  font-size: 1rem;

}
h1{
  font-size: 2rem;
  color: rgb(60,60,60)
}

#spacer{
  padding-top:15px;
}
#header {
  font-family: 'Cinzel';
  font-weight: 400;
  color: rgb(60,60,60);
  background-color: white;
  margin-left: 40px;
}

/* Footer */
.footer{
  background-color: rgb(60,60,60);
  color: white;
  font-family:'Cinzel', san-serif;
  font-weight: 400;
  padding-top: 5px;
  padding-left: 75px;
  padding-bottom: 5px;
}
a:link {
text-decoration: none;
}

#sticky-button {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: rgb(60,60,60);
  font-family: 'Raleway', sans-serif;
  color: white;
  width: 100px;
  font-size: 1.5rem;
  border-radius: 5%;
  padding: 10px 10px 10px 10px;
  z-index: 1;
}

#sticky-greg {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: white;
  font-family: 'Cinzel', sans-serif;
  color: rgb(60,60,60);
  width: 200px;
  font-size: 1.5rem;
  border-radius: 5%;
  padding: 20px 20px 20px 20px;
  z-index: 1;
}
/*#button {
  padding: 5px;
  background-color: rgb(60,60,60);
  font-family: 'Raleway', sans-serif;
  color: white;
  width: 200px;
  font-size: 1.5rem;
  border-radius: 5%;
  padding: 20px 20px 20px 20px;
}
*/
#sidenav{
width: 15%;
background: blue;
position: absolute;
}

#container{
  background-color: white;
  width: 100%;

}

img {
  width: 50%;
  display: block;
  margin-bottom:30px;

}


/* Gallery: */
#gallery{
position:relative;
margin:40px 0;
margin-left: 40px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* The image container class: */
.img-container{
width:31.33%;
padding:1%;
float:left;
left:0;
border-radius: 10%;
}

/* The image container inner container: */
.img{
height:0;
padding:0;
padding-bottom:100%;
overflow:hidden;
}

.img img{
width:40%;
height:auto;
transform:translate(-25%,-7%);
-moz-transform:translate(-25%,-7%);
-webkit-transform:translate(-25%,-7%);
-ms-transform:translate(-25%,-7%);
}

.clearfix{
clear:both;
}

/* MEDIA QUERIES */

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    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) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  */
  
}

/* Sticky Button Scaling */
@media screen and (max-width: 600px) {
  #sticky-button {
  font-size: .75rem;
  padding: 7px 7px 7px 7px;
  z-index: 1;

  }
}


/*  ---Greg's Original Column (works if I need to return to this)
.column {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    justify-content:space-around;
  }
*/

/*Lightbox Effect*/

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 650px;
}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

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

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 10%;
  width: auto;
  padding: 16px;
  margin-top: 20px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* 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);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  font-family: 'Raleway', san-serif;
  font-weight: 500;
  padding: 2px 2rem;
  color: white;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}