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

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

.clear{
	clear: both;
}

.pointer{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border:solid 1px #28365f;
	pointer-events: none;
	box-sizing: border-box;
	z-index: 99;
	z-index: 999;
	transition: all .12s linear;
	overflow: hidden;
	margin: -15px 0 0 -15px;
}

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


.alert-ok{
	padding: 10px;
	background: #4FA02020;
	margin:10px 0;
	color: #4FA020;
	border:solid 2px #4FA020;
	border-radius: 10px;
}


/* top-banner */
.top-banner{
	background: #212121;
	padding: 5px 0;
}

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

.top-banner ul:nth-child(1){
	float: left;
}

.top-banner ul:nth-child(2){
	float: right;
}

.top-banner ul{
	display: flex;
	list-style: none;
	line-height: 30px;
	gap:6px;
}

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

.top-banner ul li.valor--uf{
	background: #BF0404;
	color: #ffffff;
	padding: 0 10px;
	margin:0 50px 0 0;
	border-radius: 3px;
	font-weight: 300;
	font-size: 12px;
}

.top-banner ul li.valor--uf span{
	font-weight: 800;
}

.top-banner ul li a{
	color: rgba(255,255,255,1);
	font-size: 14px;
	text-decoration: none;
	transition: all .3s ease;
}

.top-banner ul li a i{
	width: 40px;
	text-align: center;
}

.top-banner ul li a:hover{
	color: #28365f;
}

/* header */
header{
	width: 100%;
	z-index: 999;
	padding: 15px 0;
  	transition:all 0.3s ease;
}

header .logo{
	width: 70px;
	float: left;
}

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

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

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

header label{
	display: none;
}


@media(max-width:800px){
	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:15px;
		right: 15px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: #D90714;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
	}

	header label span:nth-child(2){
		bottom:14px;
	}

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

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


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

nav ul{
	display: flex;
	justify-content: center;
	list-style: none;
	gap:30px;
	line-height: 50px;
}

nav ul li{
	display: block;
	text-decoration: none;
}

nav ul li a{
	display: block;
	text-decoration: none;
	color: #212121;
}

nav ul li a .material-symbols-outlined{
  font-weight: 300;
  line-height: inherit;
  transform: translateY(3px);
}

nav ul li:last-child a{
	background-color: #D90714;
	color: #ffffff;
	padding: 0 30px;
	text-align: center;	
	border-radius: 5px;
}

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

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

	nav ul{
		display: block;
	}

	nav ul li{
		line-height: 50px;
	}

	nav ul li a,nav ul li:last-child a{
		border-radius: 0;
		text-align: left;
		padding: 0 15px;
	}
}

/* home */
.home{
	position: relative;
	overflow: hidden;
}

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

.home .wrap{
	position: relative;
	height: 100%;
	padding: 150px 0;
	z-index: 10;
}

.home h1{
	font-size: 50px;
	max-width: 70%;
	color: #ffffff;

}

.home .wrap > h2{
	font-size: 22px;
	font-weight: 200;
	max-width: 60%;
	color: rgba(255,255,255,.9);
	line-height: 35px;
	margin:20px 0;
}

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

	.home .wrap h1{
		font-size: 30px;
		line-height: 40px;
	}

	.home h2{
		font-size: 18px;
		margin:10px auto;
	}

	.home p a{
		line-height: 40px;
		padding: 0 20px;
	}
}


.home p a:hover{
	background: #28365f;
	border-color: #28365f;
}

.home p a i{
	transition: all .3s ease;
	margin:0 0 0 5px;
}

.home p a:hover i{
	transform: translateX(10px);
}


/* buscador */
#btn-search{
	display: none;
}

.btn-search{
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: #D90714;
	line-height: 70px;
	width: 70px;
	text-align: center;
	z-index: 999000;
	border-radius: 50px;
	cursor: pointer;
	transition: all .3s ease;
	display: none;
	color: #ffffff;
}

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

.btn-search i{
	transition: all .3s ease;
}

.btn-search i:nth-child(2){
	display: none;
}

#btn-search:checked ~ .btn-search i:nth-child(1){
	display: none;
	line-height: 70px;
}

#btn-search:checked ~ .btn-search{
	background: red;
}

#btn-search:checked ~ .btn-search i:nth-child(2){
	display: block;
	line-height: 70px;
}
/* buscador */
.buscador{
	max-width: 60%;
	position: relative;
	z-index: 10;
}

.center-search .buscador{
	width: 100%;
	margin:20px auto 0 auto;
}

.buscador form{
	padding:30px;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	gap:20px;
	text-align: left;
	border-radius: 5px;
	background: #ffffff20;
	backdrop-filter: blur(10px);
	border-bottom: solid 5px #F20530;
}

.buscador p{
	flex-grow: 1; 
}

.buscador p span{
	font-weight: 600;
	font-size: 14px;
	color: #ffffff;
	margin:0 0 5px 0;
	display: block;
}

.buscador p select{
	width: 100%;
	padding: 10px;
	border:none;
	outline: none;
	cursor: pointer;
	color: #3133131;
	font-weight: 500;
	font-size: 14px;
	border-radius: 5px;
}

.buscador p button{
	width: 100%;
	padding: 12px 10px;
	margin:22px 0 0 0;
	border:none;
	outline: none;
	cursor: pointer;
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
	font-weight: 500;
	background: #D90718;
	cursor: pointer;
	border-radius: 5px;
}

.center-search .buscador p button{
	background: #ffffff;
	color: #D90718;
}

@media(max-width:800px){
	.buscador{
		position: fixed;
		width: 100%;
		height: 100vh;
		top:0;
		left: 0;
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
	}

	.buscador h2{
		display: block;
		text-align: center;
		margin:50px 0 0 0;
		font-size: 20px;
		color: #ffffff;
	}

	#btn-search:checked ~ .buscador{
		opacity: 1;
		pointer-events: all;
	}
}

/* wellcome */
.wellcome{
}

.wellcome .wrap{
	border-top:solid 1px rgba(0,0,0,.01);
	padding: 50px 0;
}

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

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

.wellcome .right .line{
	width: 100px;
	height: 1px;
	background: #D90714;
	margin:50px 0 0 0;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all .3s ease;
}

.wellcome .right .line:before{
	content: "";
	width: 1px;
	height: 100px;
	background: #28365f;
	position: absolute;
	bottom: 0;
	right: 0;
	transition: all .3s ease;
}

.wellcome .right:hover .line{
	width: 200px;
	right: -5%;
}

.wellcome .right:hover .line:before{
	height: 200px;
}

.wellcome .img--1 img{
	max-width: 100%;
	margin:70px 0 -5px 0;
	background-color: #f9f9f9;
	border-radius: 10px;
}

.wellcome .img--2 img{
	max-width: 100%;
	margin:70px 0 -5px 0;
	background-color: #f9f9f9;
	border-radius: 10px;
}

.wellcome h3{
	color: #D90714;
	font-size: 26px;
	font-weight: 600;
	margin:0 0 20px 0;
}

.wellcome h1{
	font-size: 60px;
	line-height: 80px;
	font-weight: 600;
	color: #212121;
}

.wellcome h2{
	font-size: 30px;
	line-height: 50px;
	font-weight: 500;
	color: #070707;
}

.wellcome p{
	font-size: 22px;
	line-height: 40px;
	color: #777777;
	font-weight: 300;
	margin:40px 0 0 0;
}

.wellcome .middle{
	width: 100%;
	height: 100%;
	display: table;
	min-height: 450px;
}

.wellcome .middle .inter{
	vertical-align: middle;
	display: table-cell;
}



.mg--t-100{
	margin-top:100px;
	width: 100%;
}


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

	.wellcome .wrap{
		padding: 40px 0;
	}
	.wellcome .left{
		width: 100%;
		float: none;
		text-align: center;
	}

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

	.wellcome h1{
		font-size: 40px;
		line-height: 45px;
	}

	.wellcome .middle{
		min-height: 0px;
		padding: 20px 0 0 0;
	}

	.wellcome .img--2 img{
		padding: 0 0 0 0;
	}

	.mg--t-100{
		margin-top:50px;
	}
}

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


.showcase > .wrap > h2{
	text-align: center;
	text-transform: uppercase;
	color: #313131;
	margin:0 0 40px 0;
}

.showcase .wrap:nth-child(2){
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4%;
}

.showcase .wrap article{
	width: 20%;
	max-width: 20%;
	overflow: hidden;
	margin:0 0 20px 0;
	flex-grow: 1;
	margin:0 0 40px 0;
	transition: all .3s ease;
}

.showcase .wrap article:hover{
	box-shadow: 0 10px 30px rgba(0,0,0,.1);
	transform: translateY(-20px);
}

@media(max-width:800px){
	.showcase .wrap:nth-child(2){
		display: block;
	}
	.showcase .wrap article{
		width: 90%;
		max-width: 100%;
		margin:0 auto 20px auto;
	}
}


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

.showcase .wrap article .image{
	width: 100%;
	height: 250px;
	overflow: hidden;
	position: relative;
}

.showcase .wrap article .image img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.showcase .wrap article h3{
	font-size: 17px;
	color: #313131;
	padding: 10px 20px;
}

.showcase .wrap article p{
	font-size: 14px;
	color: #777777;
	padding: 10px 20px;
	font-weight: 300;
}

.showcase .wrap article ul{
	display: flex;
	margin:10px 0 0 0;
	text-align: center;
	padding: 0px;
}

.showcase .wrap article ul li{
	flex-grow: 1;
	font-size: 14px;
	font-weight: 600;
	list-style: none;
	line-height: 50px;
	position: relative;
}

.showcase .wrap article ul li:after{
	content: "";
	position: absolute;
	width: 1px;
	height: 20px;
	background: rgba(0,0,0,.1);
	right: 0px;
	top:50%;
	transform: translateY(-50%);
}

.showcase .wrap article ul li:last-child:after{
	display: none;
}

.showcase .wrap article ul li{
	color: #777777;
	font-size: 12px;
}

.showcase .wrap article ul li i{
	margin:0 5px 0 0;
}



/* testimonios */
.testimonios{
	padding: 50px  0 0 0;
	overflow: hidden;
}
.testimonios > .wrap > h2{
	font-size: 32px;
	color: #070707;
	font-weight: 500;
	text-align: center;
	margin:0 0 0px 0;
}

@media(max-width:800px){
	.testimonios{
		padding: 200px 0 0 0;
	}
	.testimonios > .wrap > h2{
		font-size: 30px;
		line-height: 40px;
	}
}

/* carousel */
.carousel-top,
.carousel-bottom {
		padding: 0 0px;
		cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.carousel-bottom{
	display:none;
	/* temporal */
}


.items1,
.items2 {
	position: relative;
	width: 100%;
	overflow-x: hidden;
	margin:0;
	padding: 30px 0;
	cursor: drag;

}

.items2{
	transform: translateY(-50px);
}

.items1 .item:nth-child(1){
	margin-left: 20px;
}

.items2 .item:nth-child(1){
	margin-left: 100px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.1s linear;
  margin:30px 0;
}

.carousel-inner article {
  flex: 0 0 25.33%; 
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  margin-right: 30px;
  box-shadow: 0 0 30px rgba(0,0,0,.2);
  user-select: none;
}

@media(max-width:800px){
	.carousel-inner article{
		flex: 0 0 55.33%;
	}
}

.carousel-inner article .profile{
	width: 50px;
	overflow: hidden;
}

.carousel-inner article .profile img{
	width: 100%;
	border-radius: 50px;
}

.carousel-inner article h3{
	font-size: 17px;
	font-weight: 500;
	color: #777777;
	margin:10px 0;
}

.carousel-inner article p{
	font-weight: 300;
	color: #777777;
	line-height: 30px;
	font-size: 18px;
}

/* banner-1 */
.banner-1{
	padding: 200px 0;
	background-image: url(img/img5.webp?2);
	background-size: cover;
	background-attachment: fixed;
	box-shadow: inset 0em 100em rgba(217, 7, 24, .8);
	text-align: center;
}

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


/* blog */
.blog{
	background: #f3f4f5;
	padding: 70px 0;
}
.blog .wrap:nth-child(1){
	text-align: center;
	margin-bottom: 40px;
	width: 100%;
}

.blog .wrap:nth-child(1) h3{
	font-size: 18px;
	text-transform: uppercase;
	color: #F20530;
}

.blog .wrap:nth-child(1) h2{
	font-size: 40px;
	line-height: 50px;
	color: #313131;
}

.blog .wrap:nth-child(1) p{
	font-weight: 300;
	color: #777777;
	line-height: 25px;
	font-size: 17px;
	margin:0 0 20px 0;
	text-align: center;
}

.blog .wrap:nth-child(2){
	display: flex;
	flex-wrap: wrap;
	gap:2%;
}

.blog .wrap:nth-child(2) article{
	width: 47%;
	padding: 1%;
	display: flex;
	flex-wrap: wrap;
	gap:5%;
}

@media screen and (max-width:800px){
	.blog .wrap:nth-child(1) h2{
		font-size: 30px;
		line-height: 40px;
	}

	.blog .wrap:nth-child(2) article{
		width: 98%;
		margin:0 0 20px 0;
	}
}

.blog .wrap:nth-child(2) article .image{
	width: 40%;
	height: 150px;
	overflow: hidden;
	border-radius: 5px;
}

.blog .wrap:nth-child(2) article .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog .wrap:nth-child(2) article .info{
	width: 50%;
}

.blog .wrap:nth-child(2) article .info h2{
	font-size: 17px;
	color: #313131;
}

.blog .wrap:nth-child(2) article .info p{
	font-size: 16px;
	font-weight: 300;
	margin:10px 0;
}

.blog .wrap:nth-child(2) article .info p a{
	color: #313131;
	font-weight: 600;
	text-decoration: none;
	transition: all .3s ease;
}

.blog .wrap:nth-child(2) article .info p a:hover{
	color: #F20530;
}

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

.suscribe .wrap{
	background-color: #ffffff;
	border-radius: 10px;
	padding: 50px 40px;
	max-width: 1160px;
	margin-bottom: -90px;
	position: relative;
}

.suscribe .wrap .left{
	width: 50%;
	float: left;
}
.suscribe .left h3{
	font-size: 18px;
	text-transform: uppercase;
	color: #F20530;
}

.suscribe .left h2{
	font-size: 40px;
	line-height: 50px;
	color: #313131;
}

.suscribe .left p{
	font-weight: 300;
	color: #777777;
	line-height: 25px;
	font-size: 17px;
	margin:0 0 20px 0;
	text-align: center;
}

.suscribe .left h3{
	font-size: 16px;
	text-transform: uppercase;
	color: #F20530;
}

.suscribe .left h2{
	font-size: 30px;
	line-height: 50px;
	color: #313131;
}

.suscribe .left p{
	font-weight: 300;
	color: #777777;
	line-height: 25px;
	font-size: 17px;
	margin:0 0 20px 0;
	text-align: center;
}


.suscribe .wrap .right{
	width: 40%;
	float: right;
}



@media screen and (max-width:800px){
	.suscribe{
		padding: 0;
	}

	.suscribe .wrap{
		margin-bottom: 0;
		padding: 40px 0;
		display: block;
	}

	.suscribe .wrap .left,
	.suscribe .wrap .right{
		text-align: center;
		width: 100%;
		float: none;
		padding: 20px 0;
	}

	.suscribe .wrap .left h2{
		font-size: 30px;
		line-height: 40px;
	}
}


.suscribe .wrap .right h3{
	color: #313131;
	font-size: 15px;
	margin:0 0 10px 0;
}

.suscribe .wrap .right form{
	display: flex;
	gap:4%;
}

.suscribe .wrap .right input[type="text"]{
	padding: 12px 1%;
	width: 80%;
	border:none;
	background: #f0f0f0;
	outline: none;
	border-radius: 10px;
	font-size: 15px;
	-webkit-appearance: none;
}

.suscribe .wrap .right button{
	padding: 12px 1%;
	border:none;
	border-radius: 5px;
	background: #F20530;
	outline: none;
	cursor: pointer;
	color: #ffffff;
	font-weight: 500;
	font-size: 15px;
	-webkit-appearance: none;
}
/* page-banner */
.page-banner{
	padding: 80px 0;
	background: #BF0404;
	color: #ffffff;
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
}

@media(max-width:800px){
	.page-banner{
		padding: 40px 0;
		font-size: 17px;
	}
}

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

.content .about{
	max-width: 900px;
	color: #313131;
}

.content .about p{
	font-size: 18px;
	font-weight: 300;
	line-height: 35px;
	margin:0 0 30px 0;
	color: #313131;
}

.content .about p:last-child{
	margin:0 0 0 0;
}

.content .about ul, .content .about ol{
	font-size: 18px;
	font-weight: 300;
	color: #313131;
	margin:0 0 20px 0;
	padding: 0 20px;
	line-height: 35px;
}

.content .about a{
	color: #BF0404;
	text-decoration: none;
	font-weight: 600;
}

.content .about  a:hover{
	text-decoration: underline;
}

.content .about .image{
	width: 100%;
	height: 300px;
	margin:0 0 50px 0;
}

.content .about .image img{
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.content .image-single img{
	width: 100%;
}

@media(max-width: 800px){
	.content .image-single{
		width: 100%;
		float: none;
		margin:0 0 20px 0;
	}
}

.content .single{
	margin:40px 0 0 0;
}

.about .items{
	background: #f0f0f0;
	width: 80%;
	margin:-30px auto 0 auto;
	position: relative;
	z-index: 5;
}

.about .items ul{
	text-align: center;
}

.about .items ul li{
	width: 20%;
	list-style:none;
	line-height: 60px;
	display: inline-table;
}

.about .items ul li i{
	color: #BF0404;
	margin:0 5px 0 0;
	font-size: 15px;
}

@media(max-width:800px){
	.about .items{
		width: 90%;
	}
	.about .items ul li{
		font-size: 13px;
		font-weight: 500;
	}
}

.sss {
	height: 0;
	margin: 0; 
	padding: 0;
	position: relative;
	display: block;
}

.ssslide {
	width: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}

.ssslide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
}

.sssnext, .sssprev {
	width: 45px;
	height: 45px;
	top:calc(50% - 25px);
	margin: 0;
	position: absolute;
	background-repeat: no-repeat;
	transition: all 400ms ease;
}

.sssprev {
	left: -50px;
	background-image: url(img/before.svg?a);
	opacity: .7;
	z-index: 999;
}

.sssnext {
	right: -50px;
	background-image: url(img/next.svg?a);
	opacity: .7;
}

.sssprev:hover, .sssnext:hover {
	cursor: pointer;
	opacity: 1;
}

/* contact */
.contact{
	padding: 40px 0;
}
.contact .left{
	width: 45%;
	float: left;
}

@media(max-width:800px){
	.contact{
		padding: 0 0;
	}
	.contact .left{
		width: 100%;
		float: none;
	}
}

.contact .left h2{
	font-size: 24px;
	font-weight: 600;
	color: #313131;
	margin:0 0 20px 0;
}

.contact .left input[type="text"],
.contact .left textarea{
	padding: 16px 1%;
	width: 98%;
	border:none;
	outline: none;
	background: #f0f0f0;
	margin:0 0 15px 0;
	font-size: 15px;
	resize: none;
	font-weight: 300;
	-webkit-appearance: none;
}

.contact .left input[type="button"]{
	padding: 16px 40px;
	font-size: 15px;
	cursor: pointer;
	outline: none;
	font-weight: 600;
	letter-spacing: 1px;
	border:none;
	background: #BF0404;
	color: #ffffff;
	-webkit-appearance: none;
}

.contact .right{
	width: 40%;
	margin:0 5% 0 0;
	float: right;
	text-align: center;
}

@media(max-width:800px){
	.contact .right{
		width: 100%;
		float: none;
	}
}

.contact .right img{
	max-width: 150px;
	margin:100px 0 30px 0;
}

.contact .right ul:nth-child(2){
	font-size: 20px;
	list-style: none;
	margin:0 0 30px 0;
}

.contact .right ul:nth-child(2) li{
	padding: 5px 0;
}

.contact .right ul:nth-child(2) li a{
	color: #313131;
	text-decoration: none;
}

.contact .right ul:nth-child(2) li a i{
	color: #BF0404;
	font-size: 17px;	
	margin:0 5px 0 0;
}

.contact .right ul:nth-child(3){
	display: flex;
	line-height: 50px;
	justify-content: center;
	list-style: none;
	gap:10px;
}

.contact .right ul:nth-child(3) li a{
	display: block;
	line-height: 45px;
	width: 45px;
	background: #BF0404;
	color: #ffffff;
}

.contact .right ul:nth-child(3) li:hover a{
	background: #313131;
	transition: all .3s ease;
}

.contact .map{
	width: 100%;
	overflow: hidden;
}

.contact .map iframe{
	width: 100%;
	margin:50px 0 0 0;
	height: 500px;
}

@media(max-width:800px){
	.contact .map iframe{
		height: 250px;
	}
}


/* sub-footer */
.sub-footer{
	background: #f3f4f5;
	padding: 180px 0 70px 0;
	background-image: url(img/ciudad.svg);
	background-position: center bottom -2px;
	background-repeat: repeat-x;
}

.sub-footer .wrap{
	display: flex;
	flex-wrap: wrap;
	gap:4%;
}

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

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

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

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

.sub-footer .wrap article .mgt-20{
	margin-top:40px;
}

.sub-footer .wrap article:nth-child(1) img{
	max-width: 130px;
	border-radius: 10px;
	margin:0 0 20px 0;
}

.sub-footer .wrap article p{
	font-size: 15px;
	line-height: 30px;
	color: #777777;
	max-width: 90%;
}

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

.sub-footer .wrap article ul li{
	list-style: none;
	padding: 5px 0;
}

.sub-footer .wrap article ul li a{
	color: #777777;
	text-decoration: none;
	font-size: 15px;
	transition: all .3s ease;
}

.sub-footer .wrap article ul li a:hover{
	color: #313131;
}

.sub-footer .wrap article ul.social{
	display: flex;
	gap:5%;
}

@media screen and (max-width:800px){
	.sub-footer{
		padding: 50px 0;
	}

	.sub-footer .wrap{
		display: block;
		text-align: center;
	}

	.sub-footer .wrap article:nth-child(1),
	.sub-footer .wrap article:nth-child(2),
	.sub-footer .wrap article:nth-child(3),
	.sub-footer .wrap article:nth-child(4),
	.sub-footer .wrap article:nth-child(5){
		text-align: center;
		width: 100%;
		margin:0 0 50px 0;
	}

	.sub-footer .wrap article:nth-child(5){
		margin-bottom: 0;
	}

	.sub-footer .wrap article p{
		max-width: 100%;
	}

	.sub-footer .wrap article ul.social{
		justify-content: center;
	}
}

.sub-footer .wrap article ul.social li a{
	display: block;
	line-height: 50px;
	width: 50px;
	text-align: center;
	background: #F20530;
	border-radius: 50px;
	color: #ffffff;
}

.sub-footer .wrap article ul.social li a:hover{
	background: #F20505;
}


/* footer */
footer{
	background: #F20530;
	padding: 40px 0;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
}

footer span{
	display: block;
}

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

/* go-top */
.go-top{
	position: fixed;
	bottom:20px;
	right: 20px;
	line-height: 50px;
	width: 50px;
	text-align: center;
	cursor: pointer;
	background: #F20530;
	color: #ffffff;
	border-radius: 50px 50px 0 50px;
	transition: all .3s ease;
}

.go-top:hover{
	box-shadow: 0 0 0 5px #F2053010, 0 0 0 10px #F2053020, 0 0 0 20px #F2053030;
}

.whatsapp-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            align-items: right;
            width: 50px;
            height: 50px;
        }

        a{
            text-decoration: none;
        }
        .whatsapp-icon i {
            font-size: 30px;
            background-color: #25d366;
            color: #ffffff;
            line-height: 50px;
            width: 50px;
            text-align: center;
            display: block;
            border-radius: 50%;
            margin-right: 10px;
        }
        .whatsapp-icon-message {
            background-color: #EDEBE3;
            color: #444444;
            font-size: 14px;
            padding: 17px 20px;
            border-radius: 20px;
            white-space: pre-line;
            position: absolute;
            width: 200px;
            right: 0;
            bottom: 100%;
            margin:0 0 15px 0;
        }

        @media(max-width:800px){
            .whatsapp-icon-message{
                display: none !important;
            }
        }
    

        .whatsapp-icon-message:before{
            content: "";
            border-top:solid 10px #EDEBE3;
            border-right: solid 10px transparent;
            border-left: solid 10px transparent;
            bottom: -9px;
            right: 18px;
            position: absolute;
        }

        .whatsapp-icon span{
            display: block;
        }