@charset "UTF-8";
/* CSS Document */
html {
	font-family: proxima-nova, sans-serif;
}
body {
	color: #000000;
}
ul > li {
	display: inline-block;
}
footer {
	font-size: 1em;
	padding: 15px;
	color: #000000;
}
.col-xs-6, .col-md-4 {
	position: relative;
	width: 50%;
}
.img-responsive {
	opacity: 1;
	display: block;
	width: 100%;
	height: auto;
	transition: .5s ease;
	backface-visibility: hidden;
	max-height: 1080px;
	max-width: 1080px;
}
.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}
.col-xs-6, .col-md-4:hover .img-responsive {
	opacity: 0.3;
}
.col-xs-6, .col-md-4:hover .middle {
	opacity: 1;
}
.text {
	color: #f0f0f0;
	font-size: 20px;
	padding: 16px 32px;
	font-weight: bold;
	text-align: center;
}
/* 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 */
	color: #ffffff;
	text-align: center;
}
/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
	max-height: 700px;
}
.item {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	height: 80%;
	max-height: 700px;
}
@-webkit-keyframes zoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}

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

/* The Close Button */
.close1, .close2, .close3, .close4, .close5, .close6, .close7 {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
	z-index: 0;
}

.close1, .close2, .close3, .close4, .close5, .close6, .close7:hover,
.close1, .close2, .close3, .close4, .close5, .close6, .close7:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}