@import "bootstrap.min.css";


*{
	outline: none
}

button:focus,
.btn:focus{
	outline: none;
	box-shadow: none;
}

img{
	max-width: 100%;
}

a{
	color: #1283A8;
	text-decoration: none;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
a:hover,
a:focus{
	color: #E3631D;
	text-decoration: none;
}


html{
	overflow-x: hidden;
}
body{
	font-family: 'Open Sans', sans-serif;
	color: #2460A2;
	font-size: 18px;
	background: #fff url("../images/pattern.png");
}

.btn:hover,
.btn:focus{
	color: #fff;
	opacity: .8;
}

.container{
	padding: 0 30px;
}

.vote_wrap{
	position: relative;
	text-align: center;
	padding: 60px 0;
	margin: 0 auto;
	max-width: 890px;
}
.vote_wrap .vote_logo{
	position: relative;
	margin-bottom: 40px;
}
.vote_wrap .vote_logo img{
	max-width: 158px;
}
.vote_wrap h1{
	font-style: normal;
	font-weight: bold;
	line-height: 1em;
	font-size: 48px;
	text-align: center;
	text-transform: uppercase;
	color: #2460A2;
	margin: 0 0 10px 0;
}
.vote_wrap .vote_desc{
	font-style: normal;
	font-weight: bold;
	line-height: 1.3em;
	font-size: 24px;
	text-align: center;
	text-transform: uppercase;
	color: #2460A2;
	padding: 0;
	margin: 0 0 50px 0;
}
.vote_wrap .vote_action{
	position: relative;
	padding: 35px 10px;
	margin: 40px auto 0 auto;
	background: #F9F9F9;
	border: 1px solid #CCCCCC;
	box-sizing: border-box;
	max-width: 500px;
	transition: all .3s;
}
.vote_wrap .vote_action a{
	display: inline-block;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	font-size: 24px;
	color: #2B3D71;
	position: relative;
	transition: all .3s;
}

.vote_wrap .vote_action:hover{
	background: #2B3D71;
}
.vote_wrap .vote_action:hover a{
	color: #fff;
}

.vote_wrap .vote_continue{
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	color: #EFBB65;
	margin-top: 120px;
}
.vote_wrap .vote_continue a{
	color: #EFBB65;
	border-bottom: 1px solid #EFBB65;
}
.vote_wrap .vote_continue a:hover{
	color: #2460A2;
	border-color: #2460A2;
}

.ico_box{
	position: relative;
	z-index: 1;
	padding: 40px 0;
	margin: 30px auto;
	max-width: 700px;
	background: #E9F3F8;
	border: 0;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05), 0 -2px 10px rgba(0, 0, 0, 0.05);
	transition: all .5s;
}
.ico_box:hover{
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08), 0 -2px 50px rgba(0, 0, 0, 0.08);
}
.ico_box a{
	display: block;
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.ico_box p{
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	font-size: 36px;
	text-align: center;
	color: #2460A2;
	margin: 0;
}
.ico_box img{
	display: inline-block;
	margin: 0 50px 0 0;
}



















@media (max-width: 767px){
	.vote_wrap h1{
		font-size: 32px;
		line-height: 1.1;
		padding: 20px 0;
	}
	.vote_wrap .vote_desc{
		font-size: 18px;
		line-height: 1.5;
	}

	.ico_box{
		padding: 10px 30px;
		display: inline-block;
	}
	.vote_wrap .vote_action{
		padding: 10px;
	}
	.ico_box > div{
		position: relative;
		display: block;
	}
	.ico_box img{
		display: table;
		margin: 0 auto 15px auto;
	}
	.ico_box p{
		padding: 30px 0;
		font-size: 24px;
	}

	.vote_wrap .vote_action a{
		line-height: 60px;
		font-size: 16px;
		padding: 0 20px;
		display: block;
	}

	.vote_wrap .vote_continue{
		margin-top: 60px;
		font-size: 14px;
	}
}


@keyframes fade {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

@keyframes bounce {
	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0)
	}
	50% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}