/* Header */
.large-header {
	position: relative;
	width: 100%;
	
background: linear-gradient(359deg, #333333, #57575a, #464e67, #6fa196);
background-size: 800% 800%;

-webkit-animation: AnimationName 50s ease infinite;
-moz-animation: AnimationName 50s ease infinite;
animation: AnimationName 50s ease infinite;
	overflow: hidden;
	
	z-index: 1;
}

.large-header {
	/*background-image: url('../img/demo-1-bg.jpg');*/
}


@-webkit-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}
@keyframes AnimationName { 
    0%{background-position:51% 0%}
    50%{background-position:50% 100%}
    100%{background-position:51% 0%}
}

.main-title {
	position: absolute;
	margin: 0;
	padding: 0;
	color: #f9f1e9;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0);
	transform: translate3d(-50%,-50%,0);
}

.main-title{
	text-transform: uppercase;
	font-size: 4.2em;
	letter-spacing: 0.1em;
}


.main-title .thin {
	font-weight: 200;
}

@media only screen and (max-width : 768px) {
	.main-title{
		font-size: 3em;
	}

	
}