/*
Theme Name: Pepe Construye
Author: SA Publicidad
Author URI: https://www.sapublicidad.cl/
Description: Este diseño ha sido creado por SA Publicidad de manera exclusiva para usted.
Version: 1.0
License: Privada
Tags: minimalista, responsive, modern, full width

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

:root {
    --color1: #0C3C59;
    --color1b: #8f6774;
    --color2: #687E8C;
    --color3: #debaa5;
    --color4: #0D0D0D;
    --color5: #F2F2F2;
    --color6: #ffffff;
    --color6b: #f7f7f7;


    --fuente1: "Poppins", sans-serif;
    --fuente2: "Lora", serif;
}

*{
	box-sizing: border-box;
    padding: 0;
    margin:0;
}

html, body{
    font-family: var(--fuente1);
}


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



/* top-banner */
.top-banner{
    background-color: var(--color1);
	margin:auto;
	line-height: 25px;
	padding: 10px 0;
	font-size: 14px;
}

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

.top-banner .wrap{
    display: flex;
    justify-content: space-between;
}

.top-banner .contact-top li{
	display: inline-table;
	margin:0 20px 0 0;
	position: relative;
}

.top-banner .contact-top li:after{
	content: "";
	position: absolute;
	width: 1px;
	height: 10px;
	background-color: rgba(255,255,255,.7);
	top:50%;
	right: -14px;
	transform: translateY(-50%);
}

.top-banner .contact-top li:last-child::after{
	display: none;
}

.top-banner .contact-top li a{
	text-decoration: none;
	color: #fff;
}

.top-banner .contact-top li a i{
	font-size: 12px;
	margin:0 4px 0 0;
}

.top-banner .social-top{
    display: flex;
    gap:5%;
    list-style: none;
}

.top-banner .social-top a{
    display: block;
    color: var(--color2);
    font-size: 22px;
	transform: .3s ease;
}

.top-banner .social-top a:hover{
	color: var(--color5);
}



/* header */
header{
    position: fixed;
    width: 100%;
    left: 0;
	top:44px;
    z-index: 999;
    background-color: var(--color6);
    transition: all .3s ease;
}

header.stick{
    position: fixed;
    opacity:0;
	pointer-events: none;
	top:0;
}

header.show{
    opacity: 1;
	pointer-events: all;
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
	top:0;
}

@media(max-width:800px){
	header,
	header.stick, 
	header.show{
		top:0;
		opacity: 1;
		position: relative;
	}
}

header .wrap{
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
}

header .wrap .logo{
    max-width: 150px;
    overflow: hidden;
    align-items: left;
    flex: 1;
}

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




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

@media(max-width:800px){
    header label{
        background-color: var(--color1);
        width: 50px;
        height: 50px;
        position: relative;
        border-radius: 5px;
        position: absolute;
        right: 20px;
        top:50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    header label span{
        position: absolute;
        left: 25%;
        height: 2px;
        background-color: var(--color5);
        transition: all .3s ease;
    }

    header label span:nth-child(1){
        top:13px;
        width:50%;
        transition-delay: .2s;
    }

    header label span:nth-child(2){
        top:24px;
        width: 40%;
        transition-delay: 0s;
    }

    header label span:nth-child(3){
        top:35px;
        width:50%;
        transition-delay: .2s;
    }

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

    #btn-nav:checked ~ label span:nth-child(2){
        width: 0%;
        transition-delay: 0s;
    }

    #btn-nav:checked ~ label span:nth-child(3){
        transform: rotate(-45deg);
        top:24px;
    }
}


/* nav */
header .wrap nav {
    flex: 2;
}
header .wrap nav ul{
    display: flex;
    list-style-type: none;
    gap:2%;
    justify-content: center;
}
header .wrap nav ul li a{
    display: block;
    text-decoration: none;
    color: var(--color4);
    line-height: 50px;
    transition: all .3s ease;
	white-space: pre;
	font-size: 13px;
	text-transform: uppercase;
}

@media(max-width:800px){
	header .wrap nav{
		position: absolute;
		top:0;
		left: 0;
		margin:0;
		width: 60%;
		background-color: var(--color5);
		transform: translateX(-100%);
		transition: all .3s ease;
	}

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

	header .wrap nav ul{
		display: block;
	}

	header .wrap nav ul li{
		width: 100%;
	}
	
	header .wrap nav ul li a{
		padding: 0 10px;
	}	

	
}


header .wrap nav ul li:hover a{
    color: var(--color1);
}

header .wrap .btn-top a{
    display: block;
    text-decoration: none;
    background-color: var(--color1);
    color: var(--color6);
    line-height: 50px;
    padding: 0 50px;
    transition: all .3s ease;
    border-radius: 50px;
}

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

header .wrap .btn-top a:hover{
    background-color: var(--color1b);
}

/* home */
.home{
    width: 100%;
    height: 90vh;
    display: flex;
    position: relative;
}

.home:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 1;
}

.home .wrap{
    z-index: 2;
    color: var(--color6);

}

.home .wrap h1{
    font-size: 3em;
    max-width: 900px;
    font-family: var(--fuente2);
    margin-top: 80px;
    font-weight: 900;
}

.home .wrap h2{
    font-size: 1.5em;
    font-weight: 300;
    max-width: 700px;
    font-family: var(--fuente1);
    margin-top: 20px;
}


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

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

	.home .wrap h1{
		font-size: 1.8em;
	}

	.home .wrap h2{
		font-size: 1.2em;
	}
}


.home .wrap .btn-add a{
    display: inline-block;
    text-decoration: none;
    background-color: var(--color1);
    color: var(--color6);
    margin:40px 0 0 0 ;
    line-height: 50px;
    padding: 0 50px;
    transition: all .3s ease;
    border-radius: 50px;
}

.home .wrap .btn-add a:hover{
    background-color: var(--color1b);
}

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

.wellcome .wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:15%;
}

.wellcome .wrap article{
    width: 42%;
}


.wellcome .wrap article:nth-child(2){
    width: 42%;
	position: relative;
}


.wellcome .wrap article:nth-child(2):before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
    border-radius: 95% 35% 32% 68% / 92% 56% 84% 38%;
	background-color: var(--color2);
	top:-20px;
	left:-20px;
	z-index: 1;
	opacity: .3;
}

.wellcome .wrap article:nth-child(2):after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
    border-radius: 65% 25% 32% 68% / 32% 96% 44% 38%;
	background-color: var(--color1);
	top:20px;
	left:20px;
	z-index: 1;
	opacity: .3;
	
}

.wellcome .wrap article video{
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    min-height: 400px;
	position: relative;
	z-index: 2;
}

.wellcome .wrap article h2{
    font-size: 4em;
    line-height: 1.2;
    color: var(--color4);
    font-weight: 900;
    margin:20px 0;
}



@media(max-width:800px){
	.wellcome .wrap article,
	.wellcome .wrap article:nth-child(2){
		width: 90%;
		margin:20px auto;
		padding: 50px 0;
	}

	.wellcome .wrap article h2{
		font-size: 2em;
	}
}

.wellcome .wrap article p{
    font-family: var(--fuente2);
    font-size: 1.2em;
    line-height: 2;
    color: var(--color4);
    font-weight: 400;
    margin:20px 0;
}

.wellcome .wrap article ul{
    display: flex;
    margin:20px 0 0 0;
    flex-wrap: wrap;
    gap:2%;
}

.wellcome .wrap article ul li{
    width: 45%;
    max-width: 190px;
    text-align: center;
    list-style: none;
}

.wellcome .wrap article ul li a{
    display: block;
    line-height: 50px;
    border-radius: 50px;
    color: var(--color6);
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: all .3s ease;
    border:solid 2px var(--color1);
}

.wellcome .wrap article ul li:nth-child(1) a{
    background-color: var(--color1);
}

.wellcome .wrap article ul li:nth-child(2) a{
    color: var(--color1);
    border:solid 2px var(--color1);
}

.wellcome .wrap article ul li a:hover{
    background-color: var(--color1);
    color: var(--color6);
}



/* marcas */
.marcas{
    background-color: var(--color6);
    padding: 50px 0;        
    color: var(--color4);
    text-align: center;
}

.marcas h2{
    font-size: 3em;
    margin:0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marcas .gallery{
    display: flex;
    justify-content: space-between;
    gap:3%;
    align-items: center;
}

.marcas .gallery   article{
    max-width: 100px;
}

@media(max-width:800px){
	.marcas h2{
		font-size: 2em;
	}
	.marcas .gallery{
		flex-wrap: wrap;
	}
}

.marcas .gallery article img{
    width: 100%;
	filter: grayscale(100%);
	transition: all .3s ease;	
	opacity: .5;
}

.marcas .gallery article img:hover{
	filter: grayscale(0%);
	opacity: 1;
}


/* valores */
.valores{
    padding: 40px 0 120px;
    background-color: var(--color6);
    color: var(--color4);
}
.valores h2{
    font-size: 3em;
    margin:0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.valores .gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap:5%;
}


.valores .gallery article{
    width: 30%;
    padding: 40px;
    box-shadow: 10px 20px 30px rgba(0,0,0,.1);
}

.valores .gallery article .icon span{
    font-size: 50px;
    background-color: #f9f9f9;
    padding: 10px;
    display: inline-block;
    margin:0 0 10px 0;
    border-radius: 5px;
}

@media(max-width:800px){
	.valores > h2{
		font-size: 2em;
	}
	.valores .gallery article{
		width: 100%;
	}
}

.valores .gallery article:nth-child(1) .icon span{
    color: #75917c;
}

.valores .gallery article:nth-child(2) .icon span{
    color: #918475;
}

.valores .gallery article:nth-child(3) .icon span{
    color: #8c7591;
}

.valores .gallery article h3{
    font-size: 30px;
    opacity: .8;
    font-family: var(--font1);
    margin:0 0 10px 0;
}

.valores .gallery article p{
    font-size: 16px;
    opacity: .8;
}


/* services */
.services{
	background: var(--color6b);
	padding: 100px 0;
}

.services .wrap:nth-child(1){
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
}

.services .wrap:nth-child(1) h2{
	width: 50%;
	font-size: 4em;
	font-weight: 900;
	line-height: 1.2;
}


@media(max-width:800px){
	.services .wrap:nth-child(1) h2{
		width: 100%;
		font-size: 2em;
	}
}


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

.services .wrap:nth-child(2) article{
	overflow: hidden;
	background: var(--color6);
	border-radius: 5px;
	padding: 1%;
	position: relative;
}

@media(max-width:800px){

	.services .wrap:nth-child(2){
		flex-wrap: wrap;
	}
	.services .wrap:nth-child(2) article{
		width: 100%;
		margin:20px 0;
	}
}


.services .wrap:nth-child(2) article:before{
	content: "";
	width: 100%;
	height: 100%;
	background: var(--color1);
	position: absolute;
	top:0;
	left: 0;
	transition: all .3s ease;
	z-index: 1;
	opacity: 0;
}

.services .wrap:nth-child(2) article:hover:before{
	height: 100%;
	opacity: 1;
}

.services .wrap:nth-child(2) article .image{
	position: relative;
	height: 240px;
	margin:0 0 30px 0;
	z-index: 2;
}

.services .wrap:nth-child(2) article .image .icon{
	position: absolute;
	width: 60px;
	height: 60px;
	right: 10px;
	bottom: -30px;
	text-align: center;
	line-height: 60px;
	z-index: 2;
}

.services .wrap:nth-child(2) article .image .icon span{
	line-height: 60px;
	background: var(--color1);
	display: block;
	border-radius: 5px;
	color: var(--color6);
	font-weight: 300;
	font-size: 30px;
	transition: all .3s ease;
}


.services .wrap:nth-child(2) article:hover .image .icon span{
	color: var(--color1);
	background: var(--color6);
}

.services .wrap:nth-child(2) article .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 5px;
	z-index: 2;
	position: relative;
}

.services .wrap:nth-child(2) article h3{
	color: var(--color4);
	font-weight: 600;
	font-size:20px;
	padding: 10px 0;
	transition: all .3s ease;
	z-index: 2;
	position: relative;
}

.services .wrap:nth-child(2) article:hover h3{
	color: var(--color6);
}

.services .wrap:nth-child(2) article p{
	font-family: var(--fuente2);
	font-size: 17px;
	color: var(--color1);
	line-height: 1.8;
	z-index: 2;
	transition: all .3s ease;
	position: relative;
}

.services .wrap:nth-child(2) article:hover p{
	color: var(--color6);
	opacity: .7;
}

.services .wrap:nth-child(2) article p a{
	padding: 15px 0 0 0;
	margin:25px 0 0 0;
	border-top:solid 1px rgba(0,0,0,.1);
	font-size: 14px;
	color: var(--color4);
	text-decoration: none;
	display: flex;
	line-height: 30px;
	z-index: 2;
	position: relative;
}

.services .wrap:nth-child(2) article p a i{
	float: right;
	display: block;
	flex:1;
	text-align: right;
	line-height: 30px;
	padding: 0 5px;
}

.services .wrap:nth-child(2) article:hover p{
	opacity: 1;
}

.services .wrap:nth-child(2) article:hover p a{
	color: var(--color6);
	opacity: 1;
	border-top:solid 1px rgba(255,255,255,.1);
}


/* stadistycs */
.stadistycs{
	padding: 80px 0;
	background: #f9f9f9;
}

.stadistycs .wrap{
	background: var(--color1);
	border-radius: 10px;
	position: relative;
	display: flex;
	padding: 70px 5%;
	max-width: 1200px;
	flex-wrap: wrap;
}

.stadistycs .wrap article{
	flex:1;
	display: flex;
	flex-wrap: wrap;
	color: var(--color6);
}


.stadistycs .wrap article .icon{
	width: 100px;
	line-height: 100px;
}

.stadistycs .wrap article .icon span{
	font-weight: 300;
	text-align: center;
	line-height: 100px;
	display: block;
	font-size: 70px;
}

.stadistycs .wrap article .info h3{
	margin:20px 0 0 0;
	font-size: 40px;
	line-height: 35px;
}

@media(max-width:800px){
	.stadistycs .wrap{
		flex-wrap: wrap;
		width: 80%;
		padding: 0px 0;
		position: relative;
		z-index: 10;
	}
	.stadistycs .wrap article{
		width: 100%;
		flex:auto;
		text-align: center;
		margin:20px 0;
		flex-wrap: wrap;
	}

	.stadistycs .wrap article .icon span{
		font-size: 70px;
		font-weight: 100;
	}

	.stadistycs .wrap article .info h3{
		font-size: 20px;
		text-align: left;
	}
}


.stadistycs .wrap article .info h4{
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
	text-indent: 5px;
}

/* banner-1 */
.banner-1{
	position: relative;
	overflow: hidden;
	background-color: var(--color4);
}

.banner-1 video{
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	top:0;
	left: 0;
	z-index: 1;
	opacity: .5;
}

.banner-1 .wrap{
	padding: 200px 0;
	z-index: 2;
	position: relative;
	text-align: center;
	color: var(--color6);
}


.banner-1 .wrap h2{
	font-size: 3em;
	font-weight: 900;
}

.banner-1 .wrap h3{
	font-family: var(--fuente2);
	font-size: 30px;
	margin:20px auto;
	max-width: 900px;
}

.banner-1 .wrap .btn-1{
	display: flex;
	text-align: center;
}

.banner-1 .wrap .btn-1 a{
	display: block;
	text-decoration: none;
	background-color: var(--color6);
	color: var(--color4);
	line-height: 50px;
	padding: 0 50px;
	border-radius: 50px;
	margin:auto;
}

.banner-1 .wrap .btn-1 a:hover{
	background-color: var(--color6b);
}


@media(max-width:800px){
	.banner-1 .wrap{
		padding: 40px 0;
	}
	.banner-1 .wrap h2{
		font-size: 2em;
	}
}
/* testimonials */
.testimonials{
	margin:-100px 0 -200px 0;
	position: relative;
	z-index: 3;
}

.testimonials .testimonials-wrap{
	max-width: 900px;
	margin:auto;
	padding: 40px 100px;
	border-radius: 50px;
	text-align: center;
	background-color: var(--color6);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonials .testimonials-wrap article h3{
	font-size:2em;
	font-weight: 800;
	color: #313131;
	margin:0 0 10px 0;
}

.testimonials .testimonials-wrap article p{
	font-weight: 300;
	font-style: italic;
	font-size: 1.2em;
	line-height: 2;
	color: #777777;
}

.testimonials .testimonials-wrap article p span{
	font-size: 90px;
	position: absolute;
	margin:0 10px;
	color: var(--color3);
	top:-20px;
	right: 0;
}

.testimonials .testimonials-wrap article .star{
	margin:20px 0 0 0;
	font-size: 12px;
	letter-spacing: 3px;
	color: #57C18C;
}

.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 {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
}

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

.sssprev {
	left:-50px;
	background-image: url(img/previous-black.svg?2);
	opacity: .7;
}

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

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


/* page-banner */
.page-banner{
	display: flex;
    padding: 200px 0 50px 0;
	align-items: center;
	justify-content: center;
	position: relative;
    background: var(--color1);
}

.page-banner img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .6;
}

.page-banner .wrap{
	position: relative;
	color: var(--color6);
	padding: 250px 0 80px 0;
}

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

.page-banner .wrap p{
	max-width: 500px;
	margin:20px 0 0 0;
	line-height: 1.8;
}

.page-banner h1{
    margin:0 5%;
    color: var(--color6);
}

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

.content .title-page{
	text-align: center;
	color: var(--color1);
	font-size: 40px;
	font-weight: 800;
	margin:80px 0 30px 0;
}
@media(max-width:800px){
    .content{
        padding: 40px 0;
    }
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="number"],
.content input[type="file"],
.content input[type="date"],
.content input[type="password"],
.content textarea,
.content select{
    font-family: 'Roboto', sans-serif;
    background-color: var(--color6);
    padding: 15px 2%;
    width: 96%;
    border:solid 1px #dedede;
    outline: none;
    resize: none;
    margin:0 0 10px 0;
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
	border-radius: 5px;
}

.content select{
    color: #313131;
    cursor: pointer;
}

.content label{
    font-size: 14px;
    font-weight: bold !important;
    color: #777777 !important;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="number"]:focus,
.content input[type="date"]:focus,
.content input[type="password"]:focus,
.content textarea:focus,
.content select:focus{
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
}

.content input[type="text"]::placeholder,
.content input[type="email"]::placeholder,
.content input[type="tel"]::placeholder,
.content input[type="number"]::placeholder,
.content input[type="date"]::placeholder,
.content input[type="password"]::placeholder,
.content textarea::placeholder{
    color: #313131;
}

.content input[type="submit"]{
    background-color: var(--color1);
    color: var(--color6);
    border:none;
    outline: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 50px;
    margin:0 0 20px 0;
    transition: all .3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.content input[type="submit"]:hover,
.content input[type="submit"]:focus{
    background-color: #313131;
}

.not-found{
    padding: 100px 0;
    margin:auto;
}

.not-found h2{
    font-size: 100px;
    text-align: center;
    color: #313131;
    font-weight: 900;
}

.not-found h3{
    font-size: 24px;
    text-align: center;
    color: #313131;
    margin:auto;
    max-width: 500px;
    font-weight: 300;
}

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

    .not-found h2{
        font-size: 50px;
    }

    .not-found h3{
        font-size: 17px;
        width: 80%;
    }
}

/* single-service */
.single-service{
	margin:auto;
	max-width: 70%;
}
.content .image-single{
	width: 70%;
	margin:auto;
	overflow: hidden;
	margin:0 auto 50px auto;
}

@media(max-width:800px){
	.single-service,
	.content .image-single{
		max-width: 90%;
		width: 90%;
	}
}


.content .image-single img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}


.single-service p{
	line-height: 1.9;
	font-size: 17px;
	color: var(--color4);
}

.single-service p a{
	color: var(--color1);
}

.single-service .btn-contact{
	margin:30px 0 0 0;
}

.single-service .btn-contact a{
	background-color: var(--color1);
	color: var(--color6);
	margin:20px 0 0 0;
	border-radius: 5px;
	padding: 15px 30px;
	text-decoration: none;
	display: inline-block;
	transition: background-color .3s ease;
}

.single-service .btn-contact a:hover{
	background-color: var(--color1b);
}

.category {
    padding: 70px 0;
}

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

.category .wrap article{
    width: 23%;
    margin:0 0 5% 0;
}

@media(max-width:800px){
    .category .wrap article{
        width: 100%;
        margin:0 0 30px 0;
    }
}

.category .wrap article .image{
    overflow: hidden;
    aspect-ratio: 3/2;
}

.category .wrap article .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.category .wrap article h2{
    font-size: 22px;
    font-weight: 600;
    color: var(--color1);
    line-height: 1.8;
	padding: 10px 0;
}

.category .wrap article p{
	font-size: 14px;
	line-height: 1.8;
}

.category .wrap article .btn-more{
    display: table;
    margin:10px 0 0 0;
}

.category .wrap article .btn-more a{
    display: block;
    background-color: var(--color1);
    text-decoration: none;
    color: var(--color6);
    padding: 10px 20px;
    border-radius: 5px;
}
.subtitle{
	text-align: center;
	padding: 50px 0;
	font-size: 25px;
	font-weight: 600;
	color: var(--color1);
}



/* sub-footer */
.sub-footer{
	background: var(--color1);
	padding: 100px 0 50px 0;
}

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

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

.sub-footer .wrap article:nth-child(1):after{
	content: "";
	width: 1px;
	height: 80%;
	border-right: dashed 1px rgba(255,255,255,.3);
	right: 0;
	top:0;
	position: absolute;
}

@media(max-width:800px){
	.sub-footer .wrap article:nth-child(1):after{
		border-right: none;
		border-bottom: dashed 1px rgba(255,255,255,.3);
		width: 100%;
		left: 0;
		right: auto;
		top:auto;
		height: 1px;
	}
}

.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: 30%;
}

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

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

.sub-footer .wrap article p{
	font-size: 15px;
	line-height: 30px;
	color:  var(--color5);
	max-width: 90%;
}

.sub-footer .wrap article h2{
	color: var(--color5);
	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: var(--color5);
	text-decoration: none;
	font-size: 15px;
	transition: all .3s ease;
}

.sub-footer .wrap article ul li a:hover{
	color: var(--color6);
}

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

@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: 55px;
	width: 55px;
	text-align: center;
	background: var(--color1);
	border-radius: 55px;
	color: var(--color6);
}

.sub-footer .wrap article ul.social li a:hover{
	background: var(--color1b);
	color: var(--color6);
}

/* footer */
footer{
	background: var(--color1);
	padding: 40px 0;
	text-align: center;
	color: var(--color5);
	font-size: 16px;
}

footer span{
	display: block;
}

footer a{
	color: var(--color6);
	text-decoration: none;
	font-weight: 500;
}


.go-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0; 
  text-align: center;
  border: none;
  z-index: 99;
  color: var(--color6);
  line-height: 50px;
  font-size: 30px;
  transition: opacity 0.5s ease; 
}

.go-top-btn.active {
  opacity: 1;
}

.go-top-btn svg {
  cursor: pointer;
  width: 60px;
  height: 60px;
  fill: var(--color1);
}



/* btn-whatsapp */
.btn-whatsapp{
    position: fixed;
    width: 60px;
    line-height: 60px;
    text-align: center;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    font-size: 40px;
    background-color: #0e7d28;
    color: #ffffff;
    z-index: 99;
}


.btn-whatsapp:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #0e7d28;
    opacity: .5;
    left: -10px;
    top:-10px;
    border-radius: 50%;
    animation: animacion_a 2s infinite;
    z-index: -1;
}

@keyframes animacion_a{
    0%{
        transform: scale(.2);
        opacity: .4;
    }

    50%{
        opacity: .4;
    }

    100%{
        opacity: 0;
        transform: scale(1.2);
    }
    
}

.btn-whatsapp a{
    display: block;
    text-decoration: none;
    border-radius: 50%;
    color: inherit;
}