/*
Theme Name: Mantenindus
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.01-1_03_25
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 {
    --fuente1: "Poppins", sans-serif;
    --fuente2: "Lora", serif;
}

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

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


.wrap{
    max-width: 1400px;
    margin:auto;
    width: 95%;
}


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

header.stick{
    position: fixed;
    transform: translateY(-100%);
}

header.show{
    transform: translateY(0);
    box-shadow: 0 5px 30px rgba(0,0,0,.1);
}

@media(max-width:800px){
	header, header.stick, header.show{
		transform: none;
		position: absolute;
		box-shadow: 0;
	}
}

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

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

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

header .wrap .logo img{
    width: 100%;
}

#btn-nav{
    display: none;
}

@media(max-width:800px){
    header{
        position: relative;
        background-color: var(--color6);
        margin:0;
        top:0;
    }
    header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:50%;
        transform: translateY(-50%);
		right: 5px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		border-radius: 5px;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color2);
		border-radius: 5px;
		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 */
header .wrap nav {
    flex: 2;
}
header .wrap nav ul{
    display: flex;
    list-style-type: none;
    gap:3%;
    justify-content: center;
}

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

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

	header .wrap nav ul{
		display: block;
		text-align: left;
	}

	header .wrap nav ul li a{
		display: block;
		padding: 0 20px;
		background-color: var(--color6);
	}
}

header .wrap nav ul li a{
    display: block;
    text-decoration: none;
    color: var(--color4);
    line-height: 50px;
    transition: all .3s ease;
}

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

header .wrap .btn-top{
	display: flex;
	width: 30%;
	gap:2%;
	justify-content: right;
}

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

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

header .wrap .btn-top a{
	background-color: var(--color2);
	color: var(--color6);
	min-width: 50px !important;
	text-align: center !important;
	padding: 0 20px;
}

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

	header .wrap .btn-top a{
		min-width: 20px;
		padding: 0 0px;
		text-align: center !important;
	}

	header .wrap .btn-top a{
		min-width: 80px !important;
	}
}

/* home */
.home{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

.home .wrap{
    text-align: center;
    z-index: 2;
    color: var(--color6);
}

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

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

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

	.home .wrap h1{
		font-size: 40px;
		margin-top:0;
	}

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

.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: 65% 35% 32% 68% / 62% 56% 44% 38%;
	background-color: var(--color2);
	top:-20px;
	left:-20px;
	z-index: 1;
	
}

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

.wellcome .wrap article img{
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    min-height: 400px;
    border-radius: 65% 35% 32% 68% / 62% 56% 44% 38%;
	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{
		padding: 50px 0;
	}
	.wellcome .wrap{
		display: block;
		justify-content: center;
		padding: 0 5%;
	}

	.wellcome .wrap article{
		width: 80%;
		margin:auto;
	}

	.wellcome .wrap article:nth-child(2){
		width: 80%;
		margin:50px auto 0 auto;
	}


	.wellcome .wrap article h2{
		font-size: 40px;
	}

	.wellcome .wrap article p{
		text-align: justify;
	}
}

.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);
}


/* 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%;
	}
}


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

.services .wrap:nth-child(2) article{
	overflow: hidden;
	background: var(--color6);
	border-radius: 5px;
	padding: 1%;
	width: 23%;
	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(--color5);
	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:before{
	content: "";
	width: 150px;
	height: auto;
	aspect-ratio: 1/1;
	background-image: url(img/forma-3.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	bottom: 10%;
	background-size: 50%;
	right: 0;
	position: absolute;
}

.stadistycs .wrap:after{
	content: "";
	width: 150px;
	height: auto;
	aspect-ratio: 1/1;
	background-image: url(img/forma-4.svg);
	background-repeat: no-repeat;
	background-position: left top;
	top: 10%;
	background-size: 50%;
	left: 0;
	position: absolute;
}

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

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

	.stadistycs .wrap:after,.stadistycs .wrap:before{
		display: none;
	}

	.stadistycs .wrap article{
		width: 100% !important;
		text-align: center;
	}
}

.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: 40%;
		flex:auto;
		text-align: center;
		margin:20px 0;
		flex-wrap: wrap;
	}

	.stadistycs .wrap article .icon span{
		font-size: 50px;
		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 img{
	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;
}

@media(max-width:800px){
	.banner-1 .wrap{
		padding: 50px 0;
	}
	.banner-1 .wrap h2{
		font-size: 40px;
	}
}

.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);
}

/* testimonials */
.testimonials{
	margin:-100px 0 -200px 0;
	position: relative;
	z-index: 3;
}

@media(max-width:800px){
	.testimonials{
		margin:0;
	}
}

.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;
}

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

	.testimonials .testimonials-wrap article p{
		font-size: 15px;
	}
	.testimonials .testimonials-wrap article p span{
		display: none;
	}

	.testimonials .testimonials-wrap{
		max-width: 100%;
		padding: 50px 20px;
		border-radius: 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;
}

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

.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;
	align-items: center;
	justify-content: center;
	position: relative;
	background: linear-gradient(90deg, var(--color1) 0%, var(--color2) 100%);background: linear-gradient(45deg, var(--color1) 0%, var(--color2) 100%);
}

.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 .wrap{
		padding: 40px 0;
	}
}

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

/* 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;
}

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

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

.content-single{
	width: 70%;
	text-align: justify;
	padding: 20px 0 0 0;
	margin:auto;
}

.content-single p{
	font-size: 20px;
	line-height: 1.9;
	text-align: justify;
	color: var(--color4);
}

.content-single h2{
	font-size: 40px;
	color: var(--color1);
	margin:0 0 20px 0;
}

.content-single .btn-contact {
	display: table;
	margin:40px 0 0 0;
}

.content-single .btn-contact a{
	display: block;
	text-decoration: none;
	background-color: var(--color1);
	color: var(--color6);
	border-radius: 5px;
	line-height: 60px;
	padding: 0 50px;
}



@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 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 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 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%;
    }
}



/* category */
.category{
	padding: 70px 0;
}
.category .wrap{
    display: flex;
    gap:2%;
    flex-wrap: wrap;
}

.category .wrap article{
    width: 23.5%;
    overflow: hidden;
    margin:0 0 40px 0;
	aspect-ratio: 1/1.5;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category .wrap article:after{
	content: "";
	position: absolute;
	width: 800px;
	height: 100px;
	background-color: rgba(255,255,255,.3);
	top:-400px;
	left: -200px;
	z-index: 1;
	transform:rotate(-45deg);
	filter: blur(50px);
	pointer-events: none;
}

.category .wrap article:hover:after{
	top:800px;
	transition: all 1s ease;
}


.category .wrap article .image{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
	background-color: var(--color4);
	border-radius: 10px;
	overflow: hidden;
}

.category .wrap article .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .4;
	transition: all .3s ease;
}

.category .wrap article:hover .image img{
	transform:scale(1.5);
	filter: grayscale(100%);
}


.category .wrap article .info{
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--color6);
}

.category .wrap article .btn-add{
	margin:20px auto 0 auto;
	width: 80px;
	aspect-ratio: 1/1;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(50px);
	opacity: 0;
	transition: all .3s ease;
	top:50px;
}

.category .wrap article:hover .btn-add{
	transform: translateX(-50%) translateY(0px);
	opacity: 1;

}



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

	.category .wrap article{
		width: 100%;
		aspect-ratio: 1/1;
	}

	.category .wrap article .btn-add{
		opacity: 1;
		transform: translateX(-50%) translateY(0px);
	}
}

.category .wrap article .btn-add a{
	background-color: var(--color2);
	display: block;
	text-align: center;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	color: var(--color6);
	border-radius: 50%;
	transform: rotate(0deg);
	justify-content: center;
	transition: all .3s ease;
}

.category .wrap article .btn-add a:hover{
	transform:rotate(-45deg) scale(1.4);
	background-color: var(--color1);
}

.subtitle{
	text-align: center;
	padding: 50px 0;
	font-size: 25px;
	font-weight: 600;
	color: var(--color7);
}

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


.sub-footer.footer-page{
	padding: 80px 0 50px 0 !important;
}

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

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

.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(--color1);
	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(--color4);
}

.sub-footer .wrap article ul li a em{
	font-style: normal;
	color: var(--color6);
	font-weight: bold;
	background-color: var(--color1);
	padding: 5px 10px;
	border-radius: 50px;
	margin:0 0 0 -10px;
}

.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(--color6b);
	padding: 40px 0;
	text-align: center;
	color: var(--color5);
	font-size: 16px;
}

footer span{
	display: block;
}

footer a{
	color: var(--color4);
	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);
}