@charset "utf-8";
/* CSS Document */
/*===========================================================================================================*/
/*=========================================== GENERAL SETTINGS ==============================================*/
/*===========================================================================================================*/
body{
	margin:0;
	padding:0;
	font-size: 10px;
	background:#fff;
	-webkit-font-smoothing: antialiased;
}
* {
	margin: 0;
}
a{
  -o-transition:color .2s ease-out, background .2s ease-in;
  -ms-transition:color .2s ease-out, background .2s ease-in;
  -moz-transition:color .2s ease-out, background .2s ease-in;
  -webkit-transition:color .2s ease-out, background .2s ease-in;
  /* ...and now for the proper property */
  transition:color .2s ease-out, background .2s ease-in;	
}
p {
	color: #666;
	font-family: "Open-sans", sans-serif;
	font-size: 1.6em;
	line-height: 1.8em;
	letter-spacing: 1px;
	font-weight: 400px;
}
/*===========================================================================================================*/
/*=========================================== CUSTOM SETTINGS ===============================================*/
/*===========================================================================================================*/
.center {
	text-align: center;
}
.logo {
	text-align: center;
	padding-top: 10%;
	padding-bottom: 6%;
	width: 100%;
}
.logo>a {
	display: inline-block;
}
.logo>a>img {
	max-width: 360px;
	width: 100%;
	padding: 0 30px;
}

.pager {
	margin-top: 0;
	width: 100%;
}
.pager a {
	padding: 0 10px;
	display: inline-block;
	text-decoration: none !important;
	position: relative;
}
.pager a img {
	border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	border: solid 12px #fff;
	margin-top: 0;
	max-width: 200px;
}
.pager a p {
	font-size: 2em;
}
.pager a:nth-child(1) p {
	color: #cb0202;
}
.pager a:nth-child(2) p {
	color: #1355a2;
}
.pager a:nth-child(3) p {
	color: #7bbc1b;
}
.pager a:nth-child(4) p {
	color: #ff9922;
}
/*===========================================================================================================*/
/*=========================================== MEDIA QUERIES =================================================*/
/*===========================================================================================================*/
@media screen and (max-width: 1100px) {
	.logo {
		padding-top: 13%;
		padding-bottom: 9%;
	}
}
@media screen and (max-width: 850px) {
	.logo {
		padding-top: 15%;
		padding-bottom: 11%;
	}
}
@media screen and (max-width: 650px) {
	.logo {
		padding-top: 19%;
		padding-bottom: 14%;
	}
	.logo>a>img {
		max-width: 280px;
	}
}
@media screen and (max-width: 390px) {
	.logo {
		padding-top: 47%;
		padding-bottom: 25%;
	}
	.logo>a>img {
		max-width: 240px;
	}
}