/*curses*/
	#gallery_foto {margin: 100px 0;}
	#gallery_foto .container {display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 20px;}
	#gallery_foto .image {width: 100%; height: 200px; overflow: hidden; border-radius: 10px; cursor: pointer;}
	#gallery_foto .image img {width: 100%; height: 100%;}
	#gallery_foto .image:hover img {transform: scale(1.1);}
/*curses*/
/*adaptiv*/
	@media (min-width: 320px) and (max-width: 767px){
		#gallery_foto .container {grid-template-columns: 1fr;}
		#gallery_foto .image {height: 80vw; border-radius: 0;}
	}
	@media (min-width: 425px) and (max-width: 767px){
	}
	@media (min-width: 768px) and (max-width: 1023px){
		#gallery_foto .container {grid-template-columns: 1fr 1fr 1fr;}
	}
	@media (min-width: 1024px) and (max-width: 1179px){
	}
/*adaptiv*/