@import url('https://fonts.googleapis.com/css?family=Open Sans');

html{
	font-family: 'Open Sans', sans-serif;
	color:#2c2c37;
	background-color:#FFFFFF;
	border: 0px;
    margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	overflow-y: scroll;
}

body{

	border: 0px;
    margin: 0px;
	padding: 0px;

	text-align: center;

	background-image: url('img/bg.jpg');
}

.container{
	width: 100%;
	max-width: 1600px;
	display: inline-block;
}

.header{
	border-bottom:  1px solid #2c2c37;
	height:65px;
	text-align: center;

	padding-top: 15px;
	margin-left: 5%;
	margin-right: 5%;
	padding-left: 2%;
	padding-right: 2%;
}

.logo{
	float:left;

    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

	/*text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
	0px -5px 35px rgba(255,255,255,0.3);*/

}

.logo a{
	font-size: 45px;
	font-weight: bold;

	color:#2c2c37;
	text-decoration: none;

}
.logo a span{
	font-size: 28px;
	color: #444444;
	font-weight: normal;
}

.socials{
	float:right;
	height: 60px;
}

.about{
	font-size: 20px;
	text-align: justify;
	line-height: 28px;

	margin-top: 20px;
	margin-left: 8%;
	margin-right: 8%;

	padding: 10px;

	/*
	text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);*/
}
.about p{
	font-size: 38px;
	line-height: 28px;
	font-weight: bold;
}

.shadow{
	-webkit-box-shadow: #2c2c37 0px 10px 30px;
	-moz-box-shadow: #2c2c37 0px 10px 30px;
	box-shadow: #2c2c37 0px 10px 30px;
}

.round_corners{
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.frame_img{
	border:  5px solid #FFFFFF;
}

/* Image zoom on hover + Overlay colour */

.content_parent {
	width: 600px;
	height: 338px;

	display: inline-block;

	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-right: 10px;

	
	overflow: hidden;
	
    /*position: relative;
    float: left;
	display: inline-block;*/

}

.content_child {
    height: 100%;
    width: 100%;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	-webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
	
}

.content_child p{
    display: none;
    font-size: 35px;
    color: #ffffff !important;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 50px;
	text-decoration: none;
	
	text-shadow: 2px 1px 1px rgba(0,0,0,0.3);
}

.content_child p span{
	font-size: 20px;
}

.content_parent:hover .content_child, .content_parent:focus .content_child {
    -ms-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.content_parent:hover .content_child:before, .content_parent:focus .content_child:before {
    display: block;
}

.content_parent:hover p, .content_parent:focus p {
    display: block;
}

.content_child:before {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(25,25,25,0.75);
}

/* Media Queries */
@media screen and (max-width: 1000px) {
	.content_parent {width: 80vw; height: 45vw;}
	.logo{float: none;}
	.socials{float: none;clear: both; margin-top:8px;}
	.header{height:130px;}

	.content_child p{ font-size: 28px;}
	.content_child p span{ font-size: 16px;}
}