/*
Theme Name: Vidalimpia
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/
Description: Este diseño ha sido creado por SA Publicidad. ¿Sabías que este diseño ha sido creado exclusivamente para tu empresa? Cualquier cambio al código provocará cancelación de cualquier garantía.
Version: 1.0
License: Privada
Tags: minimalista, responsive, modern, full width, SA Publicidad, SA Hosting

Este tema tiene una licencia privada y el uso de esta es exclusiva de Zaune.
*/


*{
    font-family: 'Open Sans', sans-serif;
    padding: 0;
    margin:0;
}

* li{
	list-style:none;
}

.wrap{
    width: 90%;
    margin:auto;
    max-width: 1200px;
}

.clear{
    clear: both;
}

::selection{
	background: #038ac2;
	color: #ffffff;
}

* img{
	height: auto;
}

/* header */
header{
	position: fixed;
	width: 100%;
	padding: 20px 0;
	z-index: 9999;
	transition: all .2s ease;
}

header.stick{
	background: #f9f9f9;
	padding: 10px 0;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}

@media(max-width:800px){
	header, header.stick{
		position: absolute;
		top:0;
		width: 100%;
	}
}

header .logo{
	float: left;
	width: 250px;
	transition: all .3s ease;
}

header .logo img:nth-child(2){
	display: none;
}

header.stick .logo img:nth-child(1){
	display: none;
}

header.stick .logo img:nth-child(2){
	display: block;
}

@media(max-width:800px){
	header .logo{
		width: 50%;
		max-width: 170px;
	}
}

header.stick .logo{
	width: 120px;
}

header .logo img{
	width: 100%;
	margin:0 0 -5px 0;
}

header .logo a{
	text-decoration: none;
	color: #ffffff;
	font-weight: 900;
	font-size: 30px;
	position: relative;
}


header .logo a span{
	color: #038ac2;
}

/* btn-nav */
#btn-nav{
	display: none;
}

header label{
	display: none;
}

@media(max-width:800px){
	header label{
		display: block;
		width: 45px;
		height: 45px;
		background: #038ac2; /* Old browsers */
		background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
		position: absolute;
		right: 15px;
		top:15px;
		border-radius: 4px;
		cursor: pointer;
	}

	header label span{
		position: absolute;
		width: 60%;
		height: 2px;
		background: #ffffff;
		display: block;
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
		left: 50%;
		transform: translateX(-50%);
	}

	header label span:nth-child(2){
		bottom:14px;
		left: 50%;
		transform: translateX(-50%);
	}

	#btn-nav:checked ~ label span:nth-child(1){
		top:22px;
		transform: translateX(-50%) rotate(45deg);
		transition-delay: .2s;
	}

	#btn-nav:checked ~ label span:nth-child(2){
		top:22px;
		transform: translateX(-50%) rotate(-45deg);
	}
}

/* nav */
nav{
	float: right;
	margin:10px 0 0 0;
}

header.stick nav{
	margin:0px 0 0 0;
}

nav ul li{
	display: inline-block;
	list-style: none;
	margin:0 0 0 10px;
}

nav ul li a{
	display: block;
	text-decoration: none;
	color: #ffffff;
	line-height: 45px;
	position: relative;
	padding: 0 10px;
	font-size: 18px;
}

header.stick nav ul li a{
	color: #313131;
}

nav ul li:last-child a{
	background: #ffffff;
	border-radius: 50px;
	color: #212121;
	font-weight: 700;
	padding: 0 20px 0 65px;
	font-size: 15px;
	text-transform: uppercase;
	transition: all .3s ease;
}

header.stick nav ul li:last-child a{
	background: #038ac2;
	color: #ffffff;
}

nav ul li:last-child a i{
	display: inline-block;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
	line-height: 50px;
	width: 50px;
	position: absolute;
	left: 0;
	text-align: center;
	border-radius: 50px;
	transform: scale(1.1);
	box-shadow: 3px 0 5px rgba(0,0,0,.2);
	color: #ffffff;
}

@media(max-width:800px){
	nav{
		float: none;
		width: 60%;
		left: 0;
		top:0;
		position: absolute;
		background: #f0f0f0;
		margin:0 0 0 0;
		transform: translateX(-100%);
		opacity: 0;
		transition: all .3s ease;
	}

	#btn-nav:checked ~ nav{
		transform: translateX(0);
		opacity: 1;
	}

	nav ul li{
		display: block;
		margin:0 0 0 0;
	}

	nav ul li a{
		color: #212121;
	}

	nav ul li:last-child a{
		padding: 0 10px;
		color: #ffffff;
		background: #038ac2; /* Old browsers */
		background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
		border-radius: 0;
		line-height: 60px;
	}

	nav ul li:last-child a i{
		display: none;
	}
}

/* home */
.home{
	height: 100vh;
	position: relative;
}

.custom-shape-divider-bottom-1678296264{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 99999;
}

.custom-shape-divider-bottom-1678296264 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 41px;
}

.custom-shape-divider-bottom-1678296264 .shape-fill {
    fill: #FFFFFF;
}

.home:after{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0,0,0,.4);
	top:0;
	left: 0;
}

.home .wrap{
	padding: 16% 0 0 0;
	position: relative;
	z-index: 10;
}

.home .wrap h1{
	font-size: 34px;
	line-height: 40px;
	max-width: 55%;
	color: #ffffff;
}

.home .wrap h2{
	font-size: 24px;
	font-weight: 400;
	color: #ffffff;
	margin:20px 0;
	max-width: 55%;
	display: block;
}

@media(max-width:800px){
	.home{
		height: auto;
	}

	.home .wrap{
		padding: 150px 0 100px 0;
		text-align: center;
	}

	.home .wrap h1{
		font-size: 30px;
		max-width: 100%;
		line-height: 30px;
		text-align: center;
	}

	.home .wrap h2{
		font-size: 17px;
		max-width: 80%;
		margin:10px auto 0 auto;
	}

	.home .wrap p a{
		margin:auto;
	}
}

.home .wrap p a{
	display: inline-block;
	color: #313131;
	background: #ffffff;
	padding: 16px 60px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	margin:40px 0 0 0;
	transition: all .3s ease;
}

.home .wrap p a:hover{
	background: #038ac2;
	color: #ffffff;
	transition-delay: .2s;
}

/* wellcome */
.wellcome{
	padding: 120px 0;
}

.wellcome .left{
	width: 48%;
	float: left;
}

.wellcome .left article:nth-child(1){
	width: 100%;
	margin:0 0 20px 0;
}

.wellcome .left article:nth-child(1) h2{
	color: #313131;
	font-size: 40px;
	font-weight: 700;
	margin:0 0 10px 0;
}

.wellcome .left article:nth-child(1) p{
	font-size: 18px;
	font-weight: 600;
	color: #444444;
	line-height: 40px;
	margin:0 0 20px 0;
}

.wellcome .left article:nth-child(2){
	width: 49%;
	margin:0 2% 0 0;
	float: left;
}

.wellcome .left article:nth-child(3){
	width: 49%;
	float: left;
}

.wellcome .left article:nth-child(2) .icon,
.wellcome .left article:nth-child(3) .icon{
	color: #038ac2;
	font-size: 40px;
}

.wellcome .left article:nth-child(2) h2,
.wellcome .left article:nth-child(3) h2{
	font-size: 25px;
	color: #313131;
}

.wellcome .left article:nth-child(2) p,
.wellcome .left article:nth-child(3) p{
	font-size: 16px;
	color: #444444;
}



.wellcome .right{
	width: 48%;
	float: right;
}

@media(max-width:800px){
	.wellcome{
		padding: 60px 0;
	}

	.wellcome .left{
		width: 90%;
		float: none;
		margin:auto;
		text-align: center;
	}

	.wellcome .right{
		width: 90%;
		float: none;
		margin:30px auto 0 auto;
	}
}

.wellcome .right img{
	width: 100%;
	margin:0 0 -5px 0;
	border-radius: 5px;
}

/* showcase */
.showcase{
	padding: 80px 0;
	background: #e1f5fd;
}

/* banner-1 */
.banner-1{
	position: relative;
	overflow: hidden;
	background: #000000;
	padding: 100px 0;
	text-align: center;
}

.banner-1 .btn-1{
	line-height: 50px;
	text-align: center;
	display: inline-block;
}

.banner-1 .btn-1 a{
	display: block;
	text-decoration: none;
	color: #ffffff;
	background: #ffffff10;
	border:solid 2px #ffffff;
	border-radius: 50px;
	padding: 0 40px;
	transition: all .3s ease;
}

.banner-1 .btn-1 a:hover{
	background: #ffffff;
	color: #212121;
}

.banner-1 img{
	position: absolute;
	width: 100%;
	left:50%;
	height: auto;
	top:50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 1;
	opacity: .5;
	pointer-events: none;
}

@media(max-width:800px){
	.banner-1 img{
		height:100%;
		width:auto;
	}
}

.banner-1 .wrap{
	position: relative;
	z-index: 3;
	text-align: center;
}

.banner-1 .wrap h2{
	font-size: 40px;
	color: #ffffff;
	max-width: 700px;
	margin:0 auto 20px auto;
}

.banner-1 .wrap .subtitle h3{
	font-size: 20px;
	font-weight: 300;
	max-width: 600px;
	margin:0 auto 40px auto;
	color: #ffffff;
}

.banner-1 .wrap article{
	width: 20%;
	display: inline-block;
}

@media(max-width:800px){
	.banner-1 .wrap article{
		width:45%;
	}
}

.banner-1 .wrap article .icon{
	font-size: 50px;
	color: #ffffff;
	margin:0 0 10px 0;
}

.banner-1 .wrap article h3{
	font-size: 25px;
	font-weight: 700;
	color: #ffffff;
}

.banner-1 .wrap article h4{
	font-weight: 400;
	color: #ffffff;
}

/* testimonials */
.testimonials{
	padding: 80px 0;
}


.testimonials .wrap > h2{
	font-size: 40px;
	color: #313131;
	text-align: center;
	margin:0 0 30px 0;
}

.testimonials article{
	width: 30%;
	float: left;
	margin:0 5% 0 0;
}

.testimonials article:nth-child(3){
	margin:0 0 0 0;
}

@media(max-width:800px){
	.testimonials article,
	.testimonials article:nth-child(3){
		width:90%;
		float:none;
		margin:0 auto 60px auto;
	}
}

.testimonials article p{
	font-size: 15px;
	line-height: 30px;
	color: #777777;
}

.testimonials article .user-info .image{
	width: 50px;
	overflow: hidden;
	float: left;
	border-radius: 50px;
}

.testimonials article .user-info{
	margin:20px 0 0 0;
}

.testimonials article .user-info .image img{
	width: 100%;
	margin:0 0 -5px 0;
}

.testimonials article .user-info .busines{
	margin:0 0 0 70px;
}

.testimonials article .user-info .busines h2{
	font-size: 20px;
	color: #313131;
}

.testimonials article .user-info .busines h3{
	color: #515151;
	font-weight: 300;
	font-size: 15px;
}

/* blog */
.blog{
	display:none /* temporal */;
	padding: 100px 0;
	background: #f9f9f9;
}

.blog h2{
	text-align: center;
	font-size: 40px;
	color: #313131;
}

.blog .subtitle{
	margin:0 0 40px 0;
}

.blog .subtitle h3{
	font-size: 20px;
	text-align: center;
	font-weight: 400;
	width: 60%;
	color: #444444;
	margin:auto;
}

.blog article{
	width: 31%;
	float: left;
	margin:0 3% 0 0;
	box-shadow: 0 5px 30px rgba(0,0,0,.1);
}

.blog article:nth-child(3){
	margin:0 0 0 0;
}

.blog article .image{
	overflow: hidden;
}

.blog article .image img{
	width: 100%;
}

.blog article a{
	text-decoration: none;
	color: inherit;
}

.blog article h3{
	font-size: 20px;
	color: #313131;
	padding: 0 10px;
}

.blog article .date{
	color: #777777;
	font-size: 14px;
	font-weight: 400;
	padding: 0 10px;
}

.blog article p{
	color: #515151;
	font-size: 15px;
	line-height: 25px;
	padding: 10px 10px;
}

.blog article .info-entry{
	background: #ffffff;
	border-top:dashed 1px rgba(0,0,0,.1);
	display: block;
	padding: 10px;
	font-size: 14px;
	color: #313131;
	font-weight: 500;

}

.blog article .info-entry i{
	background: #038ac2;
	color: #ffffff;
	display: inline-block;
	line-height: 20px;
	width: 20px;
	border-radius: 50px;
	text-align: center;
	margin:0 10px 0 0;
}

/* team */
.team{
	padding: 80px 0;
	background: #35a6d590;
}

.team h2{
	text-align: center;
	font-size: 40px;
	color: #ffffff;
}

.team .subtitle{
	margin:0 0 40px 0;
}

.team .subtitle h3{
	font-size: 20px;
	text-align: center;
	font-weight: 400;
	width: 60%;
	color: #ffffff;
	margin:auto;
}

@media(max-width:800px){
	.team h2{
		font-size: 30px;
	}

	.team .subtitle h3{
		font-size: 17px;
		width: 90%;
		margin:auto;
	}
}

.team .team--content{
	padding: 40px 0;
}

.team article{
	width: 29%;
	float: left;
	margin:0 6.5% 0 0;
}

.team article:nth-child(3){
	margin:0 0 0 0;
}

@media(max-width:800px){
	.team article{
		width: 90%;
		margin:0 auto 50px auto;
		float: none;
		text-align: center;
	}

	.team article:nth-child(3){
		margin:0 auto;
	}
}

.team article .image{
	border-radius: 10px;
	overflow: hidden;
	transition: all .3s ease;
}

.team article .image:hover{
	transform: translateY(-10px);
}

.team article .image img{
	width: 100%;
	margin:0 0 -5px 0;
}

.team article h4{
	font-size: 24px;
	color: #ffffff;
	padding: 10px;
}


.team article p{
	font-size: 15px;
	color: #ffffff;
	padding: 0 10px;
	font-weight: 300;
	text-align: justify;
	margin:10px 0 0 0;
}

/* suscribe */
.suscribe{
	padding: 60px 0;
}

.suscribe .left{
	width: 50%;
	float: left;
}

.suscribe .left h2{
	font-size: 30px;
	font-weight: 700;
	color: #313131;
}

.suscribe .left h3{
	font-size: 18px;
	font-weight: 400;
	color: #555555;
}

.suscribe .right{
	width: 50%;
	float: right;
	text-align: right;
}



@media(max-width:800px){
	.suscribe .left{
		float: none;
		margin:auto;
		width: 100%;
	}

	.suscribe .right{
		width: 100%;
		float: none;
		text-align: center;
	}
}

.suscribe .right ul{
	margin:10px 0 0 0;
}

.suscribe .right ul li{
	display: inline-block;
	line-height: 50px;
	margin:0 10px;
}

.suscribe .right ul li a{
	display: block;
	text-decoration: none;
	color: #313131;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
}

.suscribe .right ul li a i{
	font-size: 30px;
	color: #038ac2;
	display: inline-block;
	transform: translateY(5px);
	margin:0 10px 0 0;
}

.suscribe .right ul li:nth-child(3) a{
	color: #ffffff;
	font-weight: 700;
	padding: 0 40px;
	border-radius: 50px;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */


}


/* suscribe */
.suscribe{
	text-align: center;
	padding: 70px 0;
}

.suscribe .icon{
	font-size: 40px;
	color: #038ac2;
}

.suscribe h2{
	color: #313131;
	font-size: 40px;
}

.suscribe h3{
	font-size: 22px;
	font-weight: 300;
	color: #777777;
}

.suscribe form{
	margin:20px auto;
	max-width: 500px;
}

.suscribe form input[type="text"],
.suscribe form input[type="email"]{
	padding: 17px 2%;
	float: left;
	width: 76%;
	border:none;
	background: #f0f0f0;
	font-size: 16px;
	border-radius: 50px 0 0 50px;
	outline: none;
}

.suscribe form input[type="submit"]{
	padding: 17px 0%;
	float: left;
	width: 20%;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
	color: #ffffff;
	font-size: 16px;
	border:none;
	border-radius: 0 50px 50px 0;
	cursor: pointer;
	outline: none;
}

.suscribe p{
	font-weight: 400;
	color: #777777;
	display: block;
	font-size: 15px;
	margin:10px 0 0 0;
}

/* page-banner */
.page-banner{
	height: 200px;
	opacity: .8;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
}

@media(max-width:800px ){
	.page-banner{
		height: 120px;
	}
}

.content{
	padding: 80px 0;
}

.content input[type="text"],
.content input[type="email"],
.content textarea{
	background-color: #f9f9f9;
	padding: 12px 2%;
	width: 96%;
	border:none;
	outline: none;
	margin:0 0 10px 0;
	border-radius: 3px;
	resize: none;
	-webkit-appearance: none;
	transition: all .3s ease;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content textarea:focus{
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
}

.content input[type="submit"]{
	padding: 16px 30px;
	border:none;
	border-radius: 0;
	outline: none;
	cursor: pointer;
	color: #ffffff;
	-webkit-appearance: none;
	transition: all .3s ease;
	border-radius: 5px;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
	letter-spacing: 2px;
}

/* not-found */
.not-found{
	padding: 80px 0;
	text-align: center;
}

.not-found h2{
	font-size: 100px;
	font-weight: 900;
	color: #444444;
}

.not-found h3{
	font-weight: 400;
	font-size: 17px;
	max-width: 500px;
	margin:20px auto;
}

/* sub-footer */
.sub-footer{
	position: relative;
	padding: 80px 0 20px 0;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
}

.custom-shape-divider-top-1678295953 {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    fill: #ffffff;
    transform: rotateX(0deg);
}

.sub-footer article{
	width: 24.1%;
	float: left;
	margin:0 1.2% 0 0;
}

.sub-footer article:nth-child(4){
	margin:0 0 0 0;
}

@media(max-width:800px){
	.sub-footer{
		padding: 100px 0 20px 0;
	}

	.sub-footer article{
		width: 100%;
		float: none;
		text-align: center;
		margin:0 0 50px 0;
	}
}

.sub-footer article h2{
	font-size: 20px;
	color: #ffffff;
	margin:0 0 20px 0;
}

.sub-footer article ul li{
	list-style: none;
	font-weight: 600;
	padding: 10px 0;
}

.sub-footer article ul li a{
	text-decoration: none;
	color: rgba(255,255,255,.7);
}

.sub-footer article ul li a:hover{
	color: #ffffff;
	transition: all .3s ease;
}

.sub-footer article ul.social{
	margin:20px 0 0 0;
}

.sub-footer article ul.social li{
	display: inline-block;
	width: 45px;
	line-height: 45px;
	margin:0 5px 0 0;
	padding: 0;
}

.sub-footer article ul.social li a{
	color: #038ac2;
	text-align: center;
	font-size: 20px;
	display: block;
	line-height: 45px;
	background: #ffffff;
	border-radius: 50px;
}

.sub-footer article ul.social li a:hover{
	background: #038ac2;
	color: #ffffff;
}

/* footer */
footer{
	text-align: center;
	color: #ffffff;
	padding: 20px 0;
	background: #038ac2; /* Old browsers */
	background: -moz-linear-gradient(left,  #038ac2 1%, #35a6d5 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #038ac2 1%,#35a6d5 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #038ac2 1%,#35a6d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#038ac2', endColorstr='#35a6d5',GradientType=1 ); /* IE6-9 */
}

footer a{
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
}

