/*
Theme Name: Coagricom
Author: SA Publicidad SpA
Author URI: https://www.sapublicidad.cl/
Description: Template desarrollado por SA Publicidad, el uso de este template es privado y de exclusivo uso de SA Publicidad SpA.
Version: 2021
License: Privada
Tags: minimalista, responsive, modern, full width

Este tema tiene una licencia privada y el uso de esta es exclusiva de SA Publicidad
*/

*{
	padding: 0;
	margin:0;
}

html, body{
	font-family: 'Open Sans', sans-serif;
	overflow-x: hidden;
}

* img{
	height: auto;
}

* img{
	height: auto;
}

*::selection {
    background: #354C5E;
    color: #ffffff;
}

/* Firefox */
*::-moz-selection {
    background: #354C5E;
    color: #ffffff;
}


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

.clearfix{
	clear: both;
}

/* top-banner */
.top-banner{
	text-align: right;
	padding: 10px 0;
	position: absolute;
	width: 100%;
	top: 0px;
	line-height: 20px;
	z-index: 100;
	background: #f0f0f0;
}


@media(max-width: 800px){
	.top-banner{
		display: none;
	}
}


.top-banner li{
	display: inline-block;
}

.top-banner li a{
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	margin: 0 0 0 20px;
	position: relative;
	color: #555;
	transition: all .3s ease;
	font-weight: 500;
}

.top-banner li a:hover{
	color: #212121;
}

.top-banner li a:before{
	width: 1px;
	height: 12px;
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
	content: "";
	position: absolute;
	background: #bebebe;
}

.top-banner li:nth-child(1) a:before{
	display: none;
}

.top-banner li a i{
	display: inline-block;
	font-size: 12px;
}

/* header */
header{
	position: absolute;
	top: 41px;
	width: 100%;
	z-index: 100;
	background: #ffffff;
}

header.stick{
	position: fixed;
	width: 100%;
	background: #ffffff;
	top: 0;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
}


@media(max-width: 800px){
	header,header.stick{
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		background: #000;
	}
}

header .wrap{
	background: ;
}

header .logo{
	margin: 0;
	float: left;
	width: 131px;
	position: relative;
	z-index: 2;
}

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

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

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

@media(max-width: 800px){
	header label{
		display: block;
		background: #fff;
		width: 45px;
		line-height: 45px;
		text-align: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 15px;
		cursor: pointer;
	}

	#btn-nav:checked ~ label i:nth-child(2){
		display: inline-block;
	}

	#btn-nav:checked ~ label i:nth-child(1){
		display: none;
	}

	header label i:nth-child(2){
		display: none;
	}
}

/* nav */
nav{
	float: left;
	margin: 0 0 0 20px;
	background: #ffffff;
}

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

nav ul li{
	float: left;
	line-height: 120px;
	list-style: none;
}

header.stick nav ul li{
	line-height: 68px;
}

nav ul li a{
	text-decoration: none;
	color: #313131;
	font-weight: 600;
	padding: 0 20px;
	font-size: 14px;
	display: block;
	transition: all .3s ease;
	position: relative;
}

nav ul li:hover a{
	color: #555;
}

nav ul li.current-menu-item a,
nav ul li.current-menu-item:hover a{
	background: #04B45F;
	color: #ffffff;
	position: relative;
}


nav ul li a::after{
	content: "";
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:#04B45F;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.5s ease-in-out;
	transition-delay:0s;
}

nav ul li a:hover::after{
	transform: scaleX(1);
	transform-origin: left;
	transition: transform 0.5s ease-in-out;
	transition-delay:0s;

}


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

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



	nav ul li{
		line-height: 50px;
		display: block;
		float: none;
	}
}

/* sub-nav */
nav ul li ul{
	position: absolute;
	width: 300px;
	top: 100%;
	left: 0;
	background: #212121;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
	transition: all .3s ease;
}

@media(max-width: 800px){
	nav ul li ul{
		position: static;
		width: 100%;
	}
}

nav ul li:hover ul{
	max-height: 200px;
	opacity: 1;
}

nav ul li ul li{
	display: block;
	width: 100%;
}

nav ul li ul li a{
	line-height: 45px;
}


/* slider */
.slider{
	position: relative;
	z-index: 10;
	background: #ffffff;
	overflow: hidden;
}


.slider .single{
	width: 100%;
	position: relative;
	height: 100%;
	overflow: hidden;
	z-index: 99999;
	background-color: rgba(202,176,122,.3);
}

.slider .single img{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	filter: grayscale(20%);

}

.content--slider{
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	width: 90%;
	margin: auto;
	max-width: 1200px;
	display: table;
	z-index: 999999;
}

.slider .single:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.1);
	left: 0;
	top: 0;
	z-index: 10;
}

.content--slider .wrap-slider{
	vertical-align: bottom;
	display: table-cell;
	position: relative;
	z-index: 999999;
}

.content--slider .wrap-slider h1{
	font-weight: 300;
	font-size: 40px;
	position: relative;
	max-width: 700px;
	z-index: 999999;
	color: #ffffff;
	margin: 0px 0 50px 0;
}

.content--slider .wrap-slider h1 span{
	
	font-weight: 900;
	font-size: 55px;
	font-family: 'Style Script', cursive;
}

@media(max-width: 800px){
	.content--slider .wrap-slider{
		vertical-align: middle;
	}
	.content--slider .wrap-slider h1{
		text-align: center;
		font-size: 24px;
		margin: 0 0 0 0;
	}

	.content--slider .wrap-slider h1 span{
		font-size: 24px;
	}
}


.content--slider .wrap-slider a:hover{
	background: #ffff;
	color: #313131;
}

.slidesjs-pagination{
	position: absolute;
	right: 10%;
	bottom:10%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 14;
}


@media(max-width: 800px){
	.slidesjs-pagination{
		display: none;
	}
}


.slidesjs-pagination-item{
	list-style: none;
	margin:20px 0 0 0;
}

.slidesjs-pagination-item a{
	display: block;
	text-decoration: none;
	font-size: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	line-height: 13px;
	border:solid 1px #ffffff;
	-webkit-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.slidesjs-pagination-item a:hover{
	border-color: rgba(255,255,255,.5);
}

.slidesjs-pagination-item a.active{
	background-color: #ffffff;
}

a.slidesjs-previous{
	position: absolute;
	left: 2%;
	top:0;
	width: 40px;
	height: 40px;
	top:50%;
	opacity: .4;
	transform: translateY(-50%);
	background-image: url(images/previous.svg?a);
	z-index: 999;
}

a.slidesjs-next{
	position: absolute;
	top:0;
	width: 40px;
	height: 40px;
	top:50%;
	right: 2%;
	opacity: .4;
	transform: translateY(-50%);
	background-image: url(images/next.svg?a);
	z-index: 999;
}

a.slidesjs-previous:hover,
a.slidesjs-next:hover{
	opacity: 1;
}

/* banner1 */
.banner-1{
	padding: 50px 0;
}

.banner-1 article{
	width: 30%;
	float: left;
	margin: 0 4% 0 0;
}

.banner-1 article:nth-child(3n + 0){
	margin: 0 0 0 0;
}

.banner-1 article .icon{
	width: 10%;
	float: left;
}

.banner-1 article .icon img{
	max-width: 100%;
}


.banner-1 article .info{
	width: 85%;
	float: left;
	margin: 0 0 0 5%;
}

.banner-1 article .info h2{
	color: #04B45F;
	font-weight: 300;
	font-size: 20px;
}

.banner-1 article .info p{
	font-size: 17px;
	font-weight:800;
	color: #354C5E;
}


@media(max-width: 800px){
	.banner-1{
		padding: 20px 0;
	}

	.banner-1 article{
		width: 100%;
		float: none;
		margin: 0 0 20px 0;
	}

	.banner-1 article .icon img{
		max-width: 40px;
	}

	.banner-1 article .info p a{
		text-decoration: none;
		color: #333;
	}
}

/* wellcome */
.wellcome{
	background: #354C5E;
	padding: 100px 0 180px 0;
}

.wellcome article{
	width: 48%;
	float: left;
	margin: 0 4% 0 0;
}


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

	.wellcome article{
		width: 100%;
		float: none;
	}
}

.wellcome article:nth-child(2n + 0){
	margin: 0 0 0 0;
}

.wellcome article h2{
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	position: relative;
	margin: 0 0 40px 0;
}

.wellcome article h2:after{
	background: #fff;
	width: 100px;
	height: 1px;
	left: 0;
	bottom: -20px;
	content: "";
	position: absolute;
}

.wellcome article:nth-child(2n + 0) h2{
	display: none;
}

.wellcome article:nth-child(2n + 0) p{
	margin: 50px 0 0 0;
}

.wellcome article:nth-child(2n + 0) a{
	display: none;
}

.wellcome article p{
	font-size: 17px;
	font-weight: 500;
	line-height: 26px;
	color: rgba(255,255,255,.6);
}

.wellcome article a{
	display: inline-block;
	text-decoration: none;
	color: #ffffff;
	margin: 40px 0 0 0;
	background-color: #04B45F;
	font-weight: 600;
	padding: 0 50px;
	line-height: 55px;
	border-radius: 5px;
}

.wellcome article a:hover{
	background: #fff;
	transition: all .3s ease;
}

/* valores */
.valores {
	padding: 0 0 50px 0;
}
.valores article{
	width:29%;
	float: left;
	margin: -80px 0 0 0;
	padding: 50px 2.1%;
	background: #f7f7f7;
	position: relative;
}

.valores article:nth-child(1){
	border-radius: 5px 0 0 5px;
}

.valores article:nth-child(3){
	border-radius: 0 5px 5px 0;
}

.valores article:after{
	width: 1px;
	background: #f0f0f0;
	height: 100%;
	top: 0;
	right: 0;
	content: "";
	position: absolute;
}

.valores article:nth-child(3):after{
	display: none;
}

.valores article .icon{
	max-width: 40px;
}

.valores article .icon img{
	width: 100%;
}

.valores article h2{
	color: #354C5E;
	font-size: 20px;
	margin: 10px 0 25px 0;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.valores article h2:after{
	content: "";
	position: absolute;
	width: 50px;
	height: 2px;
	left: 0;
	bottom: -10px;
	background: #354C5E;
	opacity: .7;
}

@media(max-width: 800px){
	.valores article{
		margin: 10px 0;
		width: 95%;
		text-align: center;
	}

	.valores article .icon{
		margin: auto;
	}

	.valores article:after{
		display: none;
	}

	.valores article h2:after{
		left: 50%;
		transform: translateX(-50%);
	}
}

.valores article p{
	color: #777777;
	line-height: 25px;
	font-size: 17px;
}


/* showcase */
.showcase{
	padding: 40px 0;
}

.showcase h2.title-section{
	color: #212121;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 0px;
	margin:0 0 70px 0;
	position: relative;
}

.showcase h2.title-section:after{
	content: "";
	position: absolute;
	width: 100px;
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #dedede;
	bottom: -15px;
}

.showcase article{
	width: 21%;
	padding: 2%;
	margin: 0 0 0 0 !important;
	float: left;
	background-color: #ffffff;
	transition: all .3s ease;
	position: relative;
}

.showcase article:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #dedede;
	right: 0;
	bottom: 0;
}

.showcase article:after{
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #dedede;
	right: 0;
	top: 0;
}

.showcase article:nth-child(4n + 0):after{
	display: none;
}

.showcase article:nth-last-child(2):before,
.showcase article:nth-last-child(3):before,
.showcase article:nth-last-child(4):before,
.showcase article:nth-last-child(5):before{
	display: none;
}

.showcase article .image{
	overflow: hidden;
}

.showcase article .image img{
	width: 100%;
	margin:0 0 -5px 0;
	transition: all .3s ease;
}

.showcase article:hover .image img{
	transform:scale(1.1);
}

.showcase article:nth-child(4n +0){
	margin:0 0 2% 0;
}

.showcase article h2{
	padding: 20px 10px 0 10px;
	height: 50px;
	overflow: hidden;
	font-size: 18px;
	font-weight: 600;
	color: #212121;
	text-align: center;
}

.showcase article .price{
	padding: 0px 10px;
	font-weight: 600;
	color: #313131;
	font-size: 24px;
	text-align: center;
}

.showcase article .btn-add{
	line-height: 40px;
	margin:24px auto 20px auto;
	display: table;
}

.showcase article .btn-add a{
	display: block;
	text-decoration: none;
	background-color: #212121;
	color: #ffffff;
	padding: 0 20px;
	transition: all .3s ease;
	border-radius: 3px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
}

.showcase article .btn-add a:hover{
	background-color: #2C3D80;
	color: #ffffff;
}

/* banner-products */
.banner-products{
	background-size: cover;
	background-attachment: fixed;	
	padding: 50px 0;
	position: relative;
}

.clearout {
height:0px;
clear:both;
}

#flexiselDemo1, #flexiselDemo2, #flexiselDemo3 {
}

.nbs-flexisel-nav-right{
	right: 0;
}

.nbs-flexisel-nav-left{
	left: 0;
}

.nbs-flexisel-nav-right,
.nbs-flexisel-nav-left{
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #313131;
	cursor: pointer;
	width: 20px;
	line-height: 20px;
	text-align: center;
	opacity: .7;
	transition: all .3s ease;
}

.nbs-flexisel-nav-right:hover,
.nbs-flexisel-nav-left:hover{
	opacity: 1;
}



.nbs-flexisel-container {
    position:relative;
    max-width:100%;
}
.nbs-flexisel-ul {
    position:relative;
    width:99999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
    overflow: auto;
}

.nbs-flexisel-inner {
    position: relative;
    overflow: hidden;
    float:left;
    width:100%;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;  
}

.nbs-flexisel-inner li{
	list-style: none;
    padding: 0px 0;
}

.nbs-flexisel-item {
    float:left;
    list-style: none;
    margin:0 0px 0 0px;
    padding:0px;
    position:relative;
    line-height:0px;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.nbs-flexisel-item img {
    max-width: 50%;
    min-width: 100px;
    position: relative;
    border-radius: 5px;
    margin:0 0 20px 0;
    
}

.nbs-flexisel-item p{
	font-size: 20px;
	z-index: 999;
	margin:0px 0;
	width: 100%;
	line-height: 20px;
	font-weight: 900;
	color: #313131;
}

.nbs-flexisel-item p span{
	display: block;
	font-size: 12px;
	font-weight: 300;
}

@media(max-width: 800px){
	.barra-1,
	.barra-2{
		padding: 10px 0;
	}
}

/* banner-2 */
.banner-2{
	background: #f9f9f9;
	padding: 50px 0 130px 0;
}

.banner-2 .left{
	width: 75%;
	float: left;
}

@media(max-width: 800px){
	.banner-2{
		padding: 0px 0 40px 0;
	}

	.banner-2 .left{
		width: 100%;
		float: none;
		text-align: center;
	}
}

.banner-2 .left h2{
	font-size: 35px;
	color: #354C5E;
}

.banner-2 .left h2 span{
	font-family: 'Style Script', cursive;
	font-size: 45px;
}

.banner-2 .left p{
	max-width: 600px;
	font-size: 17px;
	color: #777;
	line-height: 35px;
}

.banner-2 .right{
	width: 20%;
	float: right;
}

@media(max-width: 800px){
	.banner-2 .right{
		width: 100%;
		float: none;
		text-align: center;
	}
}


.banner-2 .right a{
	text-decoration: none;
	color: #04B45F;
	width: 100%;
	margin: 10px 0 0 0;
	max-width: 200px;
	text-align: center;
	border: solid 1px #04B45F;
	line-height: 55px;
	display: inline-block;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 600;
}

.banner-2 .right a:hover{
	background: #04B45F;
	color: #354C5E;
	transition: all .3s ease;
}

/* banner-3 */
.banner-3{
	padding: 120px 0;
	background-image: url(images/slide-1.jpg?a);
	background-size: cover;
	background-attachment: fixed;
	box-shadow: inset 0em 100em rgba(0,0,0,.5);
	text-align: center;
}

.banner-3 h2{
	font-size: 70px;
	font-family: 'Style Script', cursive;
	color: #fff;
}

.banner-3 p{
	font-weight: 400;
	font-size: 30px;
	max-width: 700px;
	margin: auto;
	color: rgba(255,255,255,.6);
}

@media(max-width: 800px){
	.banner-3{
		padding: 40px 0;
		background-size: 500%;
		background-position: center;
	}

	.banner-3 h2{
		font-size: 40px;
	}

	.banner-3 p{
		font-size: 16px;
	}
}

/* testimonials */
.testimonials{
	display:none;
	text-align: center;
	background-size: cover;
	padding: 140px 0;
	background-position: center;
}

.testimonials article .image{
	text-align: center;
	margin:0 auto 10px auto;
	width: 100px;
	display: block;
}

.testimonials article .image img{
	border-radius: 50%;
	border:solid 10px #04B45F;
}

.testimonials article h2{
	color: #04B45F;
	font-size: 20px;
	line-height: 20px;
	margin: 10px 0 0 0;
}

.testimonials article h3{
	font-family: 'Style Script', cursive;
	font-size:22px;
	margin:0px 0 20px 0;
	font-weight: 400;
	color:#777;
}

.testimonials article p{
	font-weight: 300;
	text-align: center;
	font-size: 18px;
	color: #777777;
	max-width: 700px;
	margin:auto;
	position: relative;
	display: table;
}

.testimonials article p:before{
	content: "";
	position: absolute;
	background-image: url(images/comillas-1.svg?a);
	background-size: 100%;
	width: 50px;
	height: 50px;
	top: -20px;
	left: 0px;
}

.testimonials article p:after{
	content: "";
	position: absolute;
	background-image: url(images/comillas-2.svg?a);
	background-size: 100%;
	width: 50px;
	height: 50px;
	top: 20px;
	right: 0px;
}

@media(max-width: 800px){
	.testimonials{
		padding: 40px 10%;
	}

	.testimonials article p:after,
	.testimonials article p:before{
		display: none;
	}
}

/* banner-bottom */
.banner-bottom{
	padding:40px 0;
	background-color: #354C5E;
}

.banner-bottom .left{
	width: 60%;
	float: left;
	position: relative;
}

.banner-bottom .wrap{
	border-bottom: solid 1px rgba(255,255,255,.5);
	padding: 50px 0;
}

.banner-bottom .left:after{
	content: "";
	width: 1px;
	height: 90%;
	background-color: rgba(255,255,255,.5);
	right: 0;
	top:0;
	position: absolute;
	top:10%;
}

@media(max-width: 800px){
	.banner-bottom .left{
		width: 100%;
		float: none;
		text-align: center;
	}

	.banner-bottom .wrap{
		border: none;
	}

	.banner-bottom .left:after{
		display: none;
	}
}

.banner-bottom .left h2{
	font-weight: 300;
	color: #ffffff;
	font-size: 50px;
	margin:0 0 20px 0;
}

.banner-bottom .left p{
	color: rgba(255,255,255,.8);
	font-weight: 300;
	width:80%;
	font-size: 20px;
}

.banner-bottom .right{
	width: 25%;
	float: right;
	display: table;
	position: relative;
	height: 170px;
}

@media(max-width: 800px){
	.banner-bottom .left p{
		margin: auto;
	}
	.banner-bottom .right{
		text-align: center;
		width: 100%;
	}
}

.banner-bottom .right .btn-1{
	line-height: 50px;
	margin:40px 0 0 0;
	vertical-align: middle;
	display: table-cell;
}

.banner-bottom .right .btn-1 a{
	border:solid 2px #ffffff;
	text-decoration: none;
	color: #ffffff;
	padding: 0 50px;
	display: inline-block;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.banner-bottom .right .btn-1 a:hover{
	background-color: #313131;
	color: #ffffff;
}

/* page-banner */
.page-banner{
	text-align: center;
	padding: 220px 0 60px 0;
	box-shadow: inset 0em 100em rgba(0,0,0,.5);
	background-size: cover;
	background-position: center;
}

@media(max-width: 800px){
	.page-banner{
		background-size: 200%;
		background-position: center;
		padding: 50px 0;
	}
}

.page-banner h1{
	font-weight: 300;
	font-size: 30px;
	color: #ffffff;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.breadcum{
	color: #f0f0f0;
	font-size: 14px;
	font-weight: 300;
	margin:10px 0 0 0;
}

.breadcum a{
	color: #999999;
	text-decoration: none;
}

.breadcum i{
	display: inline-block;
	margin:0 8px;
	font-size: 10px;
}


.content{
	padding: 80px 0;
}

.content a{
	color: #313131;
	text-decoration: none;
}



/* sub-footer */
.sub-footer{
	padding: 50px 0;
	background-color: #354C5E;
}

.sub-footer article{
	float: left;
}

.sub-footer article li{
	list-style: none;
}

.sub-footer article img{
	max-width: 120px;
}

.sub-footer article:nth-child(1){
	width: 38%;
	margin:0 2% 0 0;
}

.sub-footer article:nth-child(2){
	width: 20%;
}

.sub-footer article:nth-child(3){
	width: 38%;
	margin:0 0 0 2%;
}

@media(max-width: 800px){
	.sub-footer article,
	.sub-footer article:nth-child(1),
	.sub-footer article:nth-child(2),
	.sub-footer article:nth-child(3){
		width: 100%;
		float: none;
		text-align: center;
		margin: 0 0 20px 0;
		border-bottom: solid 1px rgba(255,255,255,.1);
		padding: 0 0 20px 0;
	}

	.sub-footer article:nth-child(3){
		border: none;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
	}
}

.sub-footer article h2{
	font-size: 20px;
	text-transform: uppercase;
	margin:0 0 30px 0;
	color: rgba(255,255,255,.8);
	font-weight: 300;
}

.sub-footer article ul li{
	list-style: none;
}

.sub-footer article  h3,
.sub-footer article ul li a{
	font-size: 16px;
	font-weight: 300;
	color: rgba(255,255,255,.69);
	line-height: 30px;
	text-decoration: none;
}

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

.sub-footer article ul.social li{
	line-height: 40px;
	width: 40px;
	text-align: center;
	display: inline-table;
	font-size: 15px;
}

.sub-footer article ul.social li a{
	font-size: 14px;
}

.sub-footer article form input[type="text"],
.sub-footer article form input[type="email"]{
	width: 98%;
	padding: 17px 1%;
	margin:0 0 10px 0;
	border:none;
	text-align: center;
	font-size: 15px;
	font-weight: 300;
	color: #ffffff;
	background-color: rgba(255,255,255,.2);
	outline: none;
}

.sub-footer article form input[type="text"]::placeholder,
.sub-footer article form input[type="email"]::placeholder{
	color: #ffffff;
}

.sub-footer article form input[type="submit"]{
	background-color: transparent;
	color: #ffffff;
	border:solid 1px #ffffff;
	line-height: 50px;
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	cursor:pointer;
	outline: none;
}
/* footer */
footer{
	background-color: #354C5E;
	padding: 20px 0;
	color: #ffffff;
	font-size: 13px;
	font-weight: 300;
}

footer .copy{
	float: left;
	padding: 5px 0 0 0;
}

footer .author{
	float: right;
	font-size: 10px;
	line-height: 13px;
	text-align: right;
}

@media(max-width: 800px){
	footer .copy{
		float: none;
		text-align: center;
	}

	footer .author{
		float: none;
		text-align: center;
		margin: 20px 0 0 0;
	}
}

footer .author a{
	color: rgba(255,255,255,.7);
	text-decoration: none;
	font-weight: 400;
	display: block;
	font-size: 14px;
}

.go-top {
	display:none;
	background:#354C5E;
	font-size:15px;
	width: 60px;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	color:#ffffff;
	cursor:pointer;
	position: fixed;
	bottom:20px;
	right:20px;
}



