@import url(//fonts.googleapis.com/css?family=PT+Sans:400,700);
.logo {
    font-family: 'PT Sans',sans-serif;
    font-size: 1.5em;
    text-align: left;
}
.logo h1 {
    border-bottom: 1px solid #2c3e50;
    color: #2c3e50;
    font-family: 'PT Sans',sans-serif;
    font-size: 2.2em;
	font-weight: 300;
    line-height: 1em;
    margin: 0;
    padding: 0;
}
.logo h1 span {
	font-weight: 300;
    color: #2980b9;
}
.logo h3 {
    color: #2980b9;
    display: block;
    font-family: 'PT Sans',sans-serif;
    font-size: 0.65em;
    font-weight: 300;
    line-height: 1.2em;
    margin: 0;
}
.logo h3 span {
    color: #2c3e50;
    letter-spacing: 0;
}

@media(max-width:979px){
	.logo {
		font-size: 1em;
	}
	
}
@-webkit-keyframes roll {
	0% { opacity: 0;-webkit-transform: translateX(75%);transform: translateX(75%);}
	50% {opacity: 1;-webkit-transform: scale(1.2);transform: scale(1.2);}
	100% {opacity: 1;-webkit-transform: translateX(0px) scale(1.0);transform: translateX(0px) scale(1.0);}
}
@keyframes roll {
	0% {opacity: 0;-webkit-transform: translateX(75%);-ms-transform: translateX(75%);transform: translateX(75%);}
	50% {opacity: 1;-webkit-transform: scale(1.2);-ms-transform: scale(1.2);transform: scale(1.2);}
	100% {opacity: 1;-webkit-transform: translateX(0px) scale(1.0);-ms-transform: translateX(0px) scale(1.0);transform: translateX(0px) scale(1.0);}
}
#p1 .logo h3 {
	-webkit-animation-name: roll;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-transition-timing-function: ease-out;
	-webkit-animation-fill-mode: both;
	-webkit-animation-delay:1s;
	animation-name: roll;
	animation-duration: 1s;
	animation-iteration-count: 1;
	transition-timing-function: ease-out;
	animation-fill-mode: both;
	animation-delay:1s;
}