* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
    text-align: center;
    color: #333;  
    position: relative;
    margin: 0;
    height: 100vh;
}
body:before {
    content: "";
    position: fixed;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 20px rgba(0,0,0,.3);
    -moz-box-shadow: 0px 0px 20px rgba(0,0,0,.3);
    box-shadow: 0px 0px 20px rgba(0,0,0,.3);
}	

a {
    color: #f08214;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

h3 {
    margin-bottom: 5px;
}

p {
    margin-top: 0;
	font-size: 14px;
}

.container,
.content {
    padding: 0 15px;
}

.logo {
	width: 400px;
	margin: 20px 0;
	max-width: 100%;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .content {
        position: absolute;
        top: 50%;
        -moz-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }
}

.visible-xs {
    display: none;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block;
    }
    .logo {
        width: 220px;
    }
}

.partner {
    margin-top: 60px;
}
.partner img {
	width: 200px;
	margin: 5px 10px;
	max-width: 100%;
    vertical-align: middle;
}
@media (min-width: 768px) {
    .partner img {
        width: 240px;
    }
}



/* custom */
body.f1 {
    font-family: 'Yanone Kaffeesatz', sans-serif; 
}
body.f2 {
    font-family: 'Dosis', sans-serif;
}
body.f3 {
    font-family: 'Roboto Slab', serif; 
}

body.b2 {
    background: #3a6682;
    background-color:#489bcf;
    background-image: -moz-radial-gradient(center 45deg,circle cover, #489bcf, #3a6682);
    background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%,800, from(#489bcf), to(#3a6682));
    background-image: radial-gradient(center 45deg,circle cover, #489bcf, #3a6682);
    color: #ffffff;
}

body.b3 .content .inside {
    display: block;
    position: relative;
    width: 80%;
    background: #F1F1F1;
    padding: 1.5em 1.5em 2.5em 1.5em;
    color: rgba(0,0,0, .8);
    text-shadow: 0 1px 0 #fff;
    line-height: 1.5;
    display: block;
    margin: 30px auto;
    text-align: center;
    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;			
}
body.b3 .content .inside:before, body.b3 .content .inside:after {
    z-index: -1; 
    position: absolute; 
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%; 
    top: 80%;
    max-width:300px;
    background: rgba(0, 0, 0, 0.7); 
    
    -webkit-box-shadow: 0 15px 10px rgba(0,0,0, 0.7);   
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
    
    -webkit-transform: rotate(-3deg);    
    -moz-transform: rotate(-3deg);   
    -o-transform: rotate(-3deg);
}
body.b3 .content .inside:after {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    right: 10px;
    left: auto;
}
