html, body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: "Bitter", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
}

h1, h2, h3 {
	font-family: "Bitter", serif;
}

*:focus  
{  
    outline: none;  
}  

a {color:#000; text-decoration: none;}
a:hover {text-decoration: none; color: #fff}



::selection {
	background: #C44E5D; 
	color:#fff;
	}
	
::-moz-selection {
	background: #C44E5D;
	color:#fff;
}



img {
	border:0;
	max-width: 100%;
	height: auto;
}

.main{
	float: left;
	width: 100%;
	position: relative;
}

.logo {
	width: 320px;
}

.content {

	color: #555555;
	width: 60%;
	text-align: center;	
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 1000;
	top: 50%;
	transform: translateY(-50%);
	-webkit-animation: fadein 6s;
       -moz-animation: fadein 6s; 
        -ms-animation: fadein 6s; 
         -o-animation: fadein 6s; 
            animation: fadein 6s;
}



.grid{
	float: left;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	-webkit-animation: fadeout 5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeout 5s; /* Firefox < 16 */
        -ms-animation: fadeout 5s; /* Internet Explorer */
         -o-animation: fadeout 5s; /* Opera < 12.1 */
            animation: fadeout 5s;
}

.grid1{
	background: url(images/grid-1.jpg) no-repeat center center;
	background-size: cover;
}

/*
img.logo{
	position: absolute;
	max-width: 90%;
	left: 0;
	right: 0;
	margin: 0 auto;
z-index: 1000;
top: 50%;
transform: translateY(-50%);
	-webkit-animation: fadein 6s;
       -moz-animation: fadein 6s; 
        -ms-animation: fadein 6s; 
         -o-animation: fadein 6s; 
            animation: fadein 6s;
}
*/
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}




@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0.3; }
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0.3; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0.3; }
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0.3; }
}

/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0.3; }
}






@media (max-width: 798px) {	
	
	.content {
	    width: 90%;
	}
	
}

@media (max-width: 498px) {	
	
	html, body {
	    font-size: 15px;
	}
	
	.content {
		top: 53%;
		font-size: 14px;
	}
	
	.contact-details{
		width: 96%;
	}

}

@media (max-width: 320px) {	
	
	html, body {
	    font-size: 12px;
	}
	
	.content {
		top: 52%;
		font-size: 12px;
	}
	


}