@charset "utf-8";
/* CSS Document */


	 
	 /* ==  MODIFY SOME COLORS AND STYLE FOR THE GALLERY MEDIA BOXES  == */

		.grid-section .headline h2{
			color: #fff;
		}

		.thumbnail-overlay{
		    background-color: rgba(0, 0, 0, .30);
		}

		/* add a dark background */
		.grid-section{
			background: #ffffff;
		}
		 

		/* style of the content of each box */
		.overlay-always-visible{
			background: #3a3b40;
			color: #6f7074;
			font-size: 16px;
    		line-height: 34px;
    		padding: 30px;
    		font-weight: 100;
		}
		.overlay-text-left .media-box-title{
			font-size: 28px;
			color: #c9cacc;
			font-weight: 600;
			text-transform: uppercase;
		}
		.overlay-text-left .media-box-date{
			font-size: 14px;
			color:#A49A9A;
			margin: 5px 0 40px 0;
		}
		.overlay-text-left .media-box-text{
			font-size: 14px;
			font-weight: bold;
			color: #A49A9A;
			line-height: 26.6px;
		}
		.overlay-text-left a{
			font-size: 14px;
			color: #c9cacc !important;
		}

		/* hide "no more entries" button */
		.media-boxes-no-more-entries{
			display: none;
		}

		/* some colors */
		.social .fa,
		.social .media-box-title,
		.social .media-box-text{
			color: #c9cacc !important;
		}
	
		/* hover effect on the image */
		.media-box-image img{
		    -webkit-transition: transform 0.6s ease-in-out;
		       -moz-transition: transform 0.6s ease-in-out;
		         -o-transition: transform 0.6s ease-in-out;
		        -ms-transition: transform 0.6s ease-in-out;
		            transition: transform 0.6s ease-in-out;

		    -webkit-transform-origin: bottom left;
		       -moz-transform-origin: bottom left;
		         -o-transform-origin: bottom left;
		        -ms-transform-origin: bottom left;
		            transform-origin: bottom left;
		}
		.media-box-image:hover img{
		    -webkit-transform: scale(1.2) translate(-20px);
		       -moz-transform: scale(1.2) translate(-20px);
		         -o-transform: scale(1.2) translate(-20px);
		        -ms-transform: scale(1.2) translate(-20px);
		            transform: scale(1.2) translate(-20px);
		}
  
   