﻿/*----------------------------------------------------------------------------------------------------------------------
Project:    gbo.club
Author:     Roman V. Narykov (Roksi Kharkov)
roksi.com.ua © 2021
----------------------------------------------------------------------------------------------------------------------*/
	
/* Gallery */

	.photo {
		float: left;
	    width: 33.333333%;
		padding: 0.25em;
		box-sizing: border-box;
	}
		
	.photo img {
	    display: block;
	    max-width: 100%;
	    height: auto;
	    border: 1px solid #eeeeee;
	    box-sizing: border-box;
	}
	
	.photo a:hover {
	    opacity: 0.7;
	    transition: opacity 0.2s ease-in-out;
	}
		
	.photo a {
	    display: block;
	    position: relative;
	}
		
	.photo a:after {
	    content: '';
	    background: transparent url(../images/eye-icon.png) no-repeat center;
	    width: 52px;
	    height: 35px;
	    position: absolute;
	    margin: auto;
	    top: 0;
	    left: 0;
	    bottom: 0;
	    right: 0;
	    visibility: hidden;
	    transition: background 0.3s ease-in-out;
	}
	
	.photo:hover> a:after {
	    visibility: visible;
	}
	
	figure a { 
		text-decoration: none; border-bottom: 0px;
}
	
	#gallery {
	    margin-bottom: 0;
	}
		
	#gallery:after { 
	   content: '';
	   display: block; 
	   height: 0; 
	   clear: both;
	}
	
	@media screen and (max-width: 980px) {
	
	section .img { margin: 0 auto; text-align: center }

	.photo {
		float: left;
	    width: 50%;
	}
	
}	
	
	@media screen and (max-width: 640px) {
	
	.photo { width: 100% }
}