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

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

body{
	overflow-x:hidden;
}

/* top-banner */
.top-banner{
	background: #428bca;
}

.top-banner ul{
	display: flex;
	justify-content: center;
	line-height: 40px;
	list-style: none;
	gap:1.5%;
}

.top-banner ul li a{
	display: block;
	text-decoration: none;
	color: #ffffff;
}

/* header */
header.stick{
	position: fixed;
	width: 100%;
	z-index: 9999;
	top:0;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}
header .wrap{
	display: flex;
	gap: 2%;
	padding: 30px 0;
	justify-content: space-between;
    align-items: center;
}

header .logo{
	width: 200px;
	margin-right: auto;
}

@media(max-width:800px){
	header .wrap{
		display: flex;
		justify-content: center;
	}
	header .logo{
		min-width: 200px !important;
	}
}

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

#btn-nav{
	display: none;
}


header label{
	display: none;
}

@media(max-width:800px){
	header label{
		display: block;
		background: #444444;
		color: #ffffff;
		padding: 12px;
		width: 150px;
		position: relative;
		cursor: pointer;
		border-radius: 30px;
		text-align: center;
	}

	header label:after{
		content: "Menú";
		color: #ffffff;
		margin:0 0 0 10px;
	}
}

header .wrap nav {
    flex-grow: 1;
}

header .wrap nav ul{
	display: flex;
	justify-content: right;
	list-style: none;
	gap:2%;
}

header .wrap nav ul li{
	position: relative;
	line-height: 60px;
}

header .wrap nav ul li a{
	color: #313131;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

@media(max-width:800px){
	header .wrap nav{
		display: block;
		flex-wrap: wrap;
		position: absolute;
		top:0;
		left: 0;
		width: 60%;
		background: #ffffff;
		z-index: 999;
		transform: translateX(-100%);
		opacity: 0;
		transition: all .3s ease;
	}

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

	header .wrap nav ul{
		display: block;
	}

	header .wrap nav ul li a{
		padding: 0 10px;
		display: block;
	}
}

header .wrap nav ul li ul{
	position: absolute;
	top:100%;
	width: 200px;
	background: #ffffff;
	justify-content: left;
	display: block;
	line-height: 40px;
	padding: 10px;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
	border-radius: 5px;
	pointer-events: none;
	opacity: 0;
	transition: all .3s ease;
	z-index: 999;
}

@media(max-width:800px){
	header .wrap nav ul li ul{
		position: static;
		width: 100%;
		left: 0;
		max-height: 0px;
		overflow: hidden;
		transition: all .3s ease;
		padding: 0;
		box-shadow: none;
	}

	header .wrap nav ul li:hover ul{
		max-height: 500px;
	}
}

header .wrap nav ul li:hover ul{
	pointer-events: all;
	opacity: 1;
}

header .wrap nav ul li ul li{
	line-height: 40px;
}

header .wrap nav ul li ul li a{
	display: block;
	padding: 0 10px;
	font-weight: 300;
	font-size: 14px;
}

header .wrap nav ul li ul li:nth-child(2){
	border-bottom: dotted 1px #dedede;
}

/* home */
.home{
	position: relative;
	background: #000000;
}

.stick2{
	margin:121px 0 0 0;
}

.home img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	opacity: .7;
}

.home .wrap{
	position: relative;
	padding: 250px 0 250px 0;
	color: #ffffff;
}

.home .wrap h2{
	font-size: 30px;
}

.home .wrap h1{
	font-size: 55px;
	max-width: 60%;
	margin:10px 0 0 0;
	font-weight: 700;
}

@media(max-width:800px){
	.home .wrap{
		padding: 100px 0;
		text-align: center;
	}

	.home .wrap h2{
		font-size: 20px;
	}

	.home .wrap h1{
		font-size: 30px;
		max-width: 100%;
	}
}

/* banner-home */
.banner-home{
	background-image: url(img/bg1.jpg);
	padding: 0 0 100px 0;
	background-attachment: fixed;
}
.banner-home .wrap{
	display: flex;
	flex-wrap: wrap;
	gap:2%;
	max-width: 1500px;
	z-index: 99;
	position: relative;
	justify-content: center;
}

.banner-home .wrap article{
	width: 23.25%;
	position: relative;
	background: #000000;
	margin-top:-50px;
	margin-bottom: 50px;
	box-shadow: 0 0 0 5px #ffffff;
	border-radius: 10px;
	overflow: hidden;
}

@media(max-width:800px){
	.banner-home .wrap{
		display: block;
	}

	.banner-home .wrap article{
		margin-top: 0;
		width: 100%;
	}
}

.banner-home .wrap article img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	opacity: .8;
}

.banner-home .wrap article a{
	text-decoration: none;
}

.banner-home .wrap article a h3{
	padding: 80px 5%;
	position: relative;
	text-align: center;
	font-size: 30px;
	font-weight: 900;
	text-shadow: 1px 1px 1px #000;
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease;
}


.banner-home .wrap article:hover a h3{
	transform: scale(.9);
}

.banner-home .btn--1{
	text-align: center;
	margin:40px 0 30px 0;
}

.banner-home .btn--1 a{
	background: #428bca;
	line-height: 50px;
	display: inline-block;
	margin:auto;
	border:solid 4px #ffffff;
	border-radius: 10px;
	transition: all .3s ease;
	color: #ffffff;
	padding: 0 20px;
	font-weight: 600;
	text-decoration: none;
}

.banner-home .btn--1 a:hover{
	background: #428bca50;
	transform: scale(.8);
}


/* showcase */
.showcase{
	padding: 50px 0;
	position: relative;
}

.showcase:before{
	content: "";
	position: absolute;
	width: 50%;
	top:-29px;
	border-right: solid 30px transparent;
	border-bottom:solid 30px #ffffff;
	transform: translateX(-30px);
	left: 0;
}

.showcase:after{
	content: "";
	position: absolute;
	width: 50%;
	top:-29px;
	right: 0;
	margin:0 0 0 25px;
	border-left: solid 30px transparent;
	border-bottom:solid 30px #ffffff;
	transform: translateX(30px);
}

.showcase h3{
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	color: #444444;

}

.showcase h4{
	text-align: center;
	font-weight: 300;
	font-size: 21px;
	color: #777777;
	margin:5px 0;
	position: relative;
}

@media(max-width:800px){
	.showcase h3{
		font-size: 20px;
	}

	.showcase h4{
		font-size: 17px;
	}
}



.showcase h4:after{
	position: absolute;
	background: #428bca;
	width: 100px;
	height: 5px;
	left: 50%;
	top:100%;
	margin:25px 0 0 0;
	content: "";
	transform: translateX(-50%);
}

.showcase .icons{
	display: flex;
	flex-wrap: wrap;
	gap:2%;
	margin:100px 0 0 0;
}

.showcase .icons article{
	width: 45%;
	display: flex;
	flex-wrap: wrap;
	gap:5%;
	justify-content: center;
	align-items: center;
	margin:0 0 2% 0;
	background: #f0f0f0;
	padding: 2%;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(0,0,0,.3);
}

@media(max-width:800px){
	.showcase .icons{
		display: block;
		gap: 0;
	}

	.showcase .icons article{
		width: 96%;
		padding: 40px 2%;
		margin:0 0 20px 0;
	}
}

.showcase .icons article .icon{
	width: 16%;
}


.showcase .icons article .icon img{
	width: 100%;
}

.showcase .icons article .info{
	width: 70%;
}

.showcase .icons article .info h5{
	color: #4576B9;
	font-size: 24px;
	font-weight: 600;
}

.showcase .icons article .info p{
	font-weight: 300;
	font-size: 16px;
	color: #777777;
	margin:20px 0 0 0;
}

/* banner-video */
.banner-video{
	padding: 100px 0;
	position: relative;
	background: #000000;
}

.banner-video > img{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: .5;
	top:0;
	left: 0;
}

.banner-video .wrap{
	position: relative;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
}

.banner-video .wrap h2{
	margin:0 0 70px 0;
}


#video-container {
	position: relative;
	margin: auto;
	overflow: hidden;
	max-width: 980px;
	border-radius: 20px;
	overflow: hidden;
}

#play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	width:150px;
	height:150px;
	font-size: 40px;
	line-height:150px;
	border-radius: 50%;
	border:solid 5px #ffffff;
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 1;
	transition: opacity 0.5s;
}

@media(max-width:800px){
	#video-container{
		max-width: 100%;
		max-height: 300px;
	}
	.banner-video iframe{
		max-width: 100%;
		max-height: 200px;
	}

	#thumbnail{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#play-button{
		line-height: 100px;
		width: 100px;
		height: 100px;
	}
}

#thumbnail{
	position: absolute;
	top:0;
	left: 0;
	transition: opacity 0.5s;
}

/* banner-map */
.banner-map{
	padding: 50px 0 0 0;
	position: relative;
}

.banner-map iframe{
	margin:80px 0 -5px 0 !important;
	position: relative;
}

@media(max-width:800px){
	.banner-map iframe,
	.banner-map-2 iframe{
		max-height: 300px;
	}
}

.banner-map:before{
	content: "";
	position: absolute;
	width: 50%;
	top:-29px;
	border-right: solid 30px transparent;
	border-bottom:solid 30px #ffffff;
	transform: translateX(-30px);
	left: 0;
}

.banner-map:after{
	content: "";
	position: absolute;
	width: 50%;
	top:-29px;
	right: 0;
	margin:0 0 0 25px;
	border-left: solid 30px transparent;
	border-bottom:solid 30px #ffffff;
	transform: translateX(30px);
}

.banner-map h2{
	text-align: center;
	font-size: 30px;
	color: #444444;
}

.banner-map p{
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	color: #777777;
	margin:10px 0 0 0;
	position: relative;
}

.banner-map p:after{
	position: absolute;
	background: #428bca;
	width: 100px;
	height: 5px;
	left: 50%;
	top:100%;
	margin:25px 0 0 0;
	content: "";
	transform: translateX(-50%);
}

.banner-map iframe{
	margin:100px 0 0 0;
}



/* galerias */
.galerias{
	padding: 160px 0;
}

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

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

.galerias #flexiselDemo1, .galerias #flexiselDemo2, .galerias #flexiselDemo3 {
}

.galerias .nbs-flexisel-nav-right{
	right: -10px;
}

.galerias .nbs-flexisel-nav-left{
	left: -10px;
}

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

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

.galerias .nbs-flexisel-container {
    position:relative;
    max-width:100%;
}


.galerias .nbs-flexisel-ul {
    position:relative;
    width:99999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
    overflow: auto;
    display: flex;
}

.galerias .nbs-flexisel-inner {
    position: relative;
    overflow: hidden;
    width:100%;
}

.galerias .nbs-flexisel-inner li{
	list-style: none;
}

.galerias .nbs-flexisel-item {
    list-style: none;
    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;
}
.galerias .nbs-flexisel-item img {
	width: 100%;
	height: 150px;
	object-fit: cover;
    position: relative;
    
}

.galerias-contact .nbs-flexisel-item img{
	height: 300px;
}

.galerias .nbs-flexisel-item p{
	position:relative;
	font-size: 13px;
	z-index: 999;
	transform: translateY(-10px);
	margin:0px 0;
	color: #444444;
}


/* page-banner */
.page-banner{
	position: relative;
	overflow: hidden;
	text-align: center;
}

.page-banner.left{
	background: #999999;
	text-align: left;
}

.page-banner > img{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.page-banner h1{
	position: relative;
	z-index: 10;
	color: #ffffff;
	padding: 80px 0;
}

.page-banner .wrap img{
	width: 100%;
	position: relative;
	margin:10px 0 5px 0;
}

/* title-page */
.title-page{
	text-align: center;
	padding: 80px 0 100px 0;
}

.title-page h1{
	font-size: 35px;
	font-weight: 700;
	color: #444444;
	position: relative;
}

.title-page p{
	max-width: 900px;
	margin:50px auto 0 auto;
	color: #444444;
}

.title-page h1:after{
	background: #428bca;
	width: 150px;
	height: 4px;
	position: absolute;
	bottom: -20px;
	left: 50%;
	content: "";
	transform: translateX(-50%);
}

/* title-page--2 */
.title-page--2{
	text-align: center;
	padding: 80px 0 100px 0;
	background: url(img/bg1.jpg);
}

.title-page--2 h1{
	font-size: 35px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
}

.title-page--2 h2{
	font-size: 14px;
	font-weight: 300;
	margin:50px auto 0 auto;
	color: #ffffff;
	position: relative;
	display: inline-block;
}

.title-page--2 h2:before{
	content: "";
	position: absolute;
	width: 200px;
	height: 3px;
	background: #ffffff;
	left: 110%;
	top:50%;
}

.title-page--2 h2:after{
	content: "";
	position: absolute;
	width: 200px;
	height: 3px;
	background: #ffffff;
	right: 110%;
	top:50%;
}

@media(max-width:800px){
	.title-page--2 h2:before,
	.title-page--2 h2:after{
		width: 50px;
	}
}

/* box--1 */
.box--1{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #f9f9f9;
}

.box--1 article{
	width: 50%;
}

@media(max-width:800px){
	.box--1{
		display: block;
	}

	.box--1 article{
		display: block;
		width: 90%;
		margin:auto;
		padding: 45px 0;
	}
}

.box--1 article h2{
	width: 80%;
	margin:0px auto 0 auto;
	text-align: center;
}

.box--1 article ul{
	width: 70%;
	margin:30px auto;
}

.box--1 article li{
	list-style: none;
	padding: 5px 0;
	font-size: 17px;
	color: #444444;
}

.box--1 article li i{
	color:#428bca;
	line-height: 30px;
	font-size: 24px;
	margin:0 10px 0 0;
	transform: translateY(5px);
}

.box--1 article .btn--2{
	text-align: center;
	margin:40px 0 0 0;
}

.box--1 article .btn--2 a{
	display: inline-block;
	background: #428bca;
	color: #ffffff;
	border-radius: 10px;
	text-decoration: none;
	line-height: 50px;
	padding: 0 50px;
	text-transform: uppercase;
	transition: all .3s ease;
}

.box--1 article .btn--2 a:hover{
	background: #4280ca;
}

.box--1 article img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin:0 0 -5px 0;
}

/* box--2 */
.box--2{
	text-align: center;
	padding: 60px 0;
}

.bg--2{
	padding: 50px 0 !important;
	background: url(img/bg1.jpg);
	background-size: cover;
	background-attachment: fixed;
}

/* galeria--2 */
.galeria--2{
	background-size: cover;
	background: url(img/bg1.jpg);
	background-attachment: fixed;
}
.galeria--2 .wrap{
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	gap:2%;
	max-width: 1440px;
	padding: 50px 0;
}

.galeria--2 .wrap article{
	width: 23.5%;
	overflow: hidden;
	margin:0 0 2% 0;
	box-shadow: 0 0 0 4px #ffffff;
	border-radius: 10px;
	overflow: hidden;
}

@media(max-width:800px){
	.galeria--2 .wrap{
		justify-content: center;
	}
	.galeria--2 .wrap article{
		width: 45%;
		margin:2% 2% 4% 2%;
	}
}

.galeria--2 .wrap article img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin:0 0 -5px 0;
}

/* galeria--3 */
.galeria--3{
	padding: 50px 0;
}

/* galeria--4 */
.galeria--4{
}

.galeria--4 .wrap{
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	gap:2%;
	max-width: 1440px;
	padding: 50px 0;
}

.galeria--4 .wrap article{
	width: 23.5%;
	overflow: hidden;
	margin:0 0 2% 0;
	box-shadow: 0 0 0 4px #ffffff;
	border-radius: 10px;
	overflow: hidden;
}

@media(max-width:800px){
	.galeria--4 .wrap article{
		width: 45%;
		justify-content: center;
		margin:2%;
	}
}

.galeria--4 .wrap article img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin:0 0 -5px 0;
}


/* box--3 */
.box--3{
	padding: 60px 0;
}

.box--3 p{
	font-weight: 300;
	font-size: 13px;
	color: #555555;
	font-style: italic;
	line-height: 20px;
}

/* box--4 */
.box--4{
	text-align: center;
	padding: 50px 0;
}

.box--4 h3{
	font-size: 24px;
	margin:0 0 5px 0;
	color: #333333;
}

.box--4 ul{
	display: flex;
	line-height: 45px;
	justify-content: center;
	list-style: none;
	gap:1%;
}

.box--4 ul li{
	width: 45px;
	text-align: center;
	transition: all .1s linear;
}

.box--4 ul li:hover{
	transform: scale(.9);
}

.box--4 ul li a{
	display: block;
	text-decoration: none;
	color: #ffffff;
	border-radius: 5px;
}

.box--4 ul li:nth-child(1) a{
	background: #3b5998;
}

.box--4 ul li:nth-child(2) a{
	background: #0077b5;
}

.box--4 ul li:nth-child(3) a{
	background: #212121;
}

.box--4 ul li:nth-child(4) a{
	background: #cd201f;
}


/* noticias */
.noticias{
	padding: 60px 0;
	background: #f9f9f9;
}

.noticias .wrap{
	display: flex;
	flex-wrap: wrap;
	gap:2%;
}

.noticias .wrap article{
	width: 28%;
	background: #ffffff;
	padding: 2%;
	position: relative;
	padding: 60px 2% 60px 2%;
}

@media(max-width:800px){
	.noticias .wrap article{
		width: 95%;
		margin:0 auto 20px auto;
	}
}

.noticias .wrap article .date{
	position: absolute;
	left: 0;
	top:0;
	font-size: 12px;
	padding: 7px 20px;
	line-height: 30px;
	color: #999999;
}

.noticias .wrap article span{
	position: absolute;
	top:0;
	right: 0;
	padding: 7px 20px;
	line-height: 30px;
	font-size: 13px;
	background: #313131;
	color: #ffffff;
}

.noticias .wrap article h2{
	font-size: 20px;
	color: #313131;
}

.noticias .wrap article p{
	font-size: 13px;
	margin:20px 0;
	line-height: 24px;
	color: #999999;
}

.noticias .wrap article .count{
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 30px;
	padding: 10px 20px;
	font-size: 12px;
	color: #999999;
}

.noticias .wrap article .btn-more a{
	text-decoration: none;
	position: absolute;
	right: 0;
	bottom: 0;
	line-height: 30px;
	padding: 10px 20px;
	font-size: 12px;
	color: #777777;
}

.noticias .wrap article .btn-more a i{
	font-size: 10px;
	width: 0px;
	overflow: hidden;
	transition: all .3s ease;
	opacity: 0;
}

.noticias .wrap article .btn-more:hover a i{
	width: 10px;
	opacity: 1;
}

/* noticia-individual */
.noticia-individual .wrap{
	padding: 50px 0;
	display: flex;
}

.noticia-individual .wrap article{
	padding: 2%;
}

.noticia-individual .wrap article h2{
	font-size: 40px;
	color: #333333;
}

.noticia-individual .wrap article h3{
	font-size: 24px;
	margin:0 0 20px 0;
	color: #333333;
}

.noticia-individual .wrap article p{
	font-size: 15px;
	font-weight: 300;
	text-align: justify;
	margin:0 0 20px 0;
	line-height: 30px;
	color: #777777;
}

/* banner-map-2 */
.banner-map-2 iframe{
	margin:0 0 -5px 0;
	width: 100%;
}

/* contact */
.contact{
	padding: 50px 0;
}

.contact .wrap{
	display: flex;
	flex-wrap: wrap;
}

.contact .wrap article{
	width: 48%;
	padding: 1%;
}

.contact .wrap article form{
	margin:50px;
	background: #dedede;
	padding: 7%;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0,0,0,.8);
}

.contact .wrap article form input[type="text"],
.contact .wrap article form input[type="email"],
.contact .wrap article form textarea{
	padding: 12px 1%;
	width: 96%;
	border:none;
	background: #ffffff;
	margin:0 0 20px 0;
	resize: none;
	outline: none;
}

.contact .wrap article form button{
	text-align: right;
	padding: 12px 20px;
	border:none;
	background: #428bca;
	color: #ffffff;
	border-radius: 10px;
	outline: none;
}

.alert-ok{
	background: #14741420;
	color: #147414;
	border:solid 1px #14741420;
	padding: 10px;
	margin:0 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px #14741440;
}

.alert-error{
	background: #ba373720;
	color: #ba3737;
	border:solid 1px #ba373720;
	padding: 14px 10px;
	margin:0 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px #ba373740;
	text-align: center;
	font-size: 13px;
}

.contact .wrap article:nth-child(2){
	text-align: center;
	padding: 50px 1% 0 1%;
}

.contact .wrap article:nth-child(2) img:nth-child(2){
	max-width: 300px;
	display: block;
	text-align: center;
	margin:0 auto 0px auto;
}

.contact .wrap article h3{
	background: #428bca;
	color: #ffffff;
	max-width: 500px;
	padding: 10px;
	border-radius: 10px;
	margin:auto;
	font-size: 30px;
}

@media(max-width:800px){
	.contact .wrap article{
		width: 100%;
		padding: 0;
	}

	.contact .wrap article h3{
		font-size: 20px;
	}
}

/* sub-footer */
.sub-footer{
	background: url(img/bg-footer.png)  -10% center no-repeat, url(img/bg-footer.png)  125% center no-repeat;
	background-size: 30%, 30%;
	background-color: #25272e;
}


.sub-footer .wrap{
	display: flex;
	flex-wrap: wrap;
	gap:10%;
	padding: 120px 0;
}

.sub-footer .wrap img{
	max-width: 250px;
}

.sub-footer .wrap article p{
	color:#bcc0c4;
	font-weight: 400;
	font-size: 13px;
	line-height: 20px;
}

.sub-footer .wrap article:nth-child(1){
	width: 24%;
}

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

.sub-footer .wrap article:nth-child(3){
	width: 23%;
}

@media(max-width:800px){
	.sub-footer{
	background-size: 40%;
	background-position: center bottom;
}
	.sub-footer .wrap{
		padding: 50px 0;
	}
	.sub-footer .wrap article:nth-child(1),
	.sub-footer .wrap article:nth-child(2),
	.sub-footer .wrap article:nth-child(3){
		width: 100%;
		text-align: center;
		margin:20px 0;
	}
}

.sub-footer .wrap article:nth-child(3) h3{
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
}

.sub-footer .wrap article:nth-child(3) p:nth-child(2){
	color: #999;
	margin:20px 0 0 0;
}

.sub-footer .wrap article:nth-child(3) p:nth-child(3) a{
	color: #ffffff;
	font-size: 24px;
	line-height: 40px;
	text-decoration: none;
}


.sub-footer .wrap article:nth-child(3) p:nth-child(4) a{
	color: #999999;
	font-size: 14px;
	text-decoration: none;
}

footer p{
	max-width: 1200px;
	margin:auto;
	padding: 30px 0;
	font-size: 12px;
	font-weight: 400;
	color: #bcc0c4;
	border-top:solid 1px #bcc0c420;
}


@media(max-width:800px){
	footer p{
		text-align: center;
		display: block;
	}
}






