/*

font-family: 'Roboto', sans-serif;
	font-family: var(--fuente1);

*/


:root{
	--color1: #BFA995;
	--color1b: #a29487;
	--color2: #ffffff;
	--color4: #A6BF9F;
	--color3: #819c7a;
	--color5: #f4efea;		
	--color6: #212121;
	--color7: #59433B;
	--color8: #414141;

	--fuente1: "Istok Web", sans-serif;
	--fuente2: "Istok Web", sans-serif;
}



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

html {
  color-scheme: light;
}

html, body {
	font-family: var(--fuente2);
  	background-color: #ffffff;
  	color: #111111;
}


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

.clear{
	clear: both;
}


/* top-alert */
.top-alert{
	background: var(--color1);
	padding: 19px 0;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	color: var(--color2);
	text-align: center;
}

.top-alert span{
	color: var(--color2)80;
	font-size: 12px;
}

.top-banner{
	text-align: right;
}

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

.top-banner .left,
.top-banner .center,
.top-banner .right{
	display: inline-block;
	vertical-align: top;
	line-height: 40px;
}

.top-banner .left{
	width: 39%;
	text-align: left;
	text-transform: uppercase;
	font-size: 12px;
	color: var(--color3);
	font-weight: 600;
}

.top-banner .center {
	width: 37%;
	text-align: right;
	margin:0 2% 0 0;
}

.top-banner .center  ul li{
	display: inline-block;
	font-size: 12px;
	color: var(--color4);
}

.top-banner .center  ul li a{
	color: var(--color3);
	text-decoration: none;
	margin:0 0 0 10px;
	font-weight: 600;
}

.top-banner .right{
	width: 20%;
	text-align: left;
}

.top-banner .right ul li{
	display: inline-block;
	line-height: 40px;
	width: 40px;
	text-align: center;
	margin:0 5px 0 0;
}

.top-banner .right ul li a{
	color: var(--color3);
	text-decoration: none;
}

/* header */
header{
	padding: 0px 0;
}

header .wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:20px;
}

header .logo{
	width: 200px;
	min-width: 100px;
	flex: 2;
	max-width: 150px;
}

@media(max-width: 768px){
	header .wrap{
		flex-wrap: wrap;
		justify-content: center;
		gap:10px;
	}
	header .logo{
		margin-right: 20px;
	}
}

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

header .search-box{
	justify-content: center;
	flex: 0 1 500px;
	margin:0 0 0 10%;
	justify-content: center;
}

@media(max-width: 768px){
	header .wrap .search-box{
		margin:0;
		width: 100%;
	}
}

header .search-box input{
	padding: 15px 2%;
	width: 90%;
	float: left;
	border:solid 1px var(--color5);
	font-size: 16px;
	font-weight: 300;
	border-radius: 40px 0 0 40px;
	border-right: none;
	outline: none;
	background: var(--color5);
}

header .search-box button{
	padding: 15px 0;
	border:solid 1px var(--color5);
	background: transparent;
	border-left: none;
	width: 10%;
	font-size: 16px;
	text-align: center;
	background-color: var(--color5);
	cursor: pointer;
	border-radius: 0 40px 40px 0;
}

header .right{
	line-height: 35px;
	display: flex;
	justify-content: right;
	flex:1;
}

header .right ul{
	display: flex;
	justify-content: right;
	list-style-type: none;
	flex:1;
}

@media(max-width: 768px){
	header .right{
		justify-content: center;
		margin:20px 0;
	}

	header .right ul{
		justify-content: center;
	}
}

header .right ul li{
	vertical-align: top;
	margin:0 20px 0 0;
}

header .right ul li i{
	width: 37px;
	line-height: 37px;
	float: left;
	text-align: center;
	font-size: 25px;
}

header .right ul li span{
	font-size: 14px;
	line-height: 16px;
	float: left;
	margin:0 0 0 10px;
	font-weight: 700;
}

header .right ul li span em{
	display: block;
	font-style: normal;
	font-size: 14px;
	font-weight: 500;
}

header .right ul li a{
	color: var(--color1);
	text-decoration: none;
	position: relative;
}

header .right ul li a b{
	position: absolute;
	top:-7px;
	right: -7px;
	font-size: 12px;
	background: red;
	line-height: 20px;
	width: 20px;
	text-align: center;
	color: var(--color2);
	pointer-events: none;
	border-radius: 50%;
}


/* btn-nav */
.wrap-nav{
	z-index: 100;
}
#btn-nav{
	display: none !important;
}

@media(max-width:800px){
	.wrap-nav label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:25px;
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		background: var(--color1);
		border-radius: 5px;
        z-index: 99;

	}

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

	.wrap-nav label span:nth-child(1){
		top:14px;
	}

	.wrap-nav 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.principal-nav .wrap{
	border-top:solid 1px rgba(0,0,0,.05);
}

nav.principal-nav > .wrap > ul{
	display: flex;
	list-style-type: none;
	gap:20px;
	align-items: center !important;
}

nav.principal-nav > .wrap > ul > li{
	font-weight: 700;
	position: relative;
}

@media(max-width:800px){
	nav.principal-nav{
		position: fixed;
		top:0;
		left: -100%;
		width: 70%;
		height: 100%;
		background: var(--color2);
		box-shadow: 5px 0 15px rgba(0,0,0,.1);
		transition: all .3s ease;
		z-index: 98;
		padding:80px 0 0 0;
	}

	nav.principal-nav > .wrap > ul{
		flex-direction: column;
		gap:0;
	}

	nav.principal-nav > .wrap > ul > li{
		width: 100%;
		border-bottom: solid 1px rgba(0,0,0,.05);
	}

	nav.principal-nav > .wrap > ul > li > a{
		padding: 15px 20px;
		line-height: 20px;
	}

	#btn-nav:checked ~ nav.principal-nav{
		left: 0;
	}
}

nav.principal-nav > .wrap > ul > li > a{
	display: block;
	text-decoration: none;
	color: var(--color8);
	padding: 0 15px;
	line-height: 55px;
	font-size: 13px;
}

/* submenu */
nav.principal-nav > .wrap > ul > li ul{
	position: absolute;
	left: 0;
	top:100%;
	background: var(--color2);
	min-width: 200px;
	box-shadow: 0 5px 15px rgba(0,0,0,.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	border-radius: 0 0 5px 5px;
	pointer-events: none;
	list-style-type: none;
}

@media(max-width:800px){
	nav.principal-nav > .wrap > ul > li ul{
		position: static;
		top:0;
		box-shadow: none;
		min-width: 100%;
		max-height: 0;
		overflow: hidden;
		border-radius: 0;
	}

	nav.principal-nav > .wrap > ul > li:hover ul{
		max-height: none;
	}
}

nav.principal-nav > .wrap > ul > li:hover ul{
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

nav.principal-nav > .wrap > ul > li > ul > li > a{
	text-decoration: none;
	padding: 10px 15px;
	color: var(--color7);
	display: block;
	font-size: 14px;
}

nav.principal-nav > .wrap > ul > li > ul > li > a:hover{
	background: var(--color5);
	color: var(--color6);
}

/* slider */
.mySwiper {
	width: 100% !important;
	height: 80vh !important;
	position: relative;
	background: var(--color6);
}

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

/* Cada slide */
.mySwiper .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Imagen de fondo */
.mySwiper .swiper-slide img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.6;
}

/* Contenido centrado */
.mySwiper .slide-content {
	position: relative;
	z-index: 10;
	color: var(--color2);
	text-align: center;
}

.mySwiper .slide-content h1 {
	font-size: clamp(40px, 8vw, 100px);
	line-height: 1;
	font-family: var(--fuente1);
	font-weight: 400;
}

.mySwiper .slide-content h2 {
	font-weight: 300;
	font-size: 22px;
	margin: 20px auto 40px auto;
	max-width: 600px;
}

.mySwiper .slide-content ul {
	position: relative;
}

.mySwiper .slide-content ul li {
	display: inline-block;
	margin: 0 20px 0 0;
}

.mySwiper .slide-content ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	line-height: 50px;
	padding: 0 30px;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	border-radius: 5px;
}

/* Botones */
.mySwiper .slide-content ul li:nth-child(1) a {
	background: var(--color2);
	color: var(--color6);
}

.mySwiper .slide-content ul li:nth-child(2) a {
	background: var(--color1);
	color: var(--color2);
}

/* Hover */
.mySwiper .slide-content ul li:hover a {
	box-shadow: 0 0 0 2px var(--color2);
	background: var(--color2);
	color: var(--color6);
}

/* Navegación Swiper */
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
	color: var(--color2);
	width: 50px;
	height: 50px;
	transition: opacity 0.3s ease;
}

.mySwiper .swiper-button-next:hover,
.mySwiper .swiper-button-prev:hover {
	opacity: 0.7;
}

/* Paginación (los puntos) */
.mySwiper .swiper-pagination-bullet {
	background: var(--color2);
	opacity: 0.5;
}

.mySwiper .swiper-pagination-bullet-active {
	background: var(--color2);
	opacity: 1;
}

/* Responsive */
@media (max-width: 800px) {
	.mySwiper,
	.mySwiper .swiper-slide {
		min-height: 70vh !important;
	}

	.mySwiper .slide-content h1 {
		font-size: clamp(30px, 6vw, 60px);
	}

	.mySwiper .slide-content h2 {
		font-size: 18px;
		margin: 15px auto 30px auto;
	}

	.mySwiper .slide-content ul li a {
		padding: 0 20px;
		line-height: 45px;
		font-size: 14px;
	}
}

/* home-category */
.home-category{
	padding: 80px 0;
	text-align: center;
}

.home-category .wrap{
	justify-content: center;
	gap:20px;
	display: flex;
	flex-wrap: wrap;
}
.home-category article{
	flex: 1;
	position: relative;
	overflow: hidden;
	height: 250px;
	background: var(--color6);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 15px;
}

.home-category article a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	line-height: 1.1;
}


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

	.home-category .wrap article{
		flex:100%;
		margin:0 0 20px 0;
		height: 20vh;
	}
}

.home-category article a img:nth-child(1){
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top:0;
	left: 0;
	transition: all .3s ease;
	filter: blur(5px);
}

.home-category article a img:nth-child(2){
	position: absolute;
	width: auto;
	height: 100%;
	object-fit: contain;
	top:0;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease;
	  /* fade lateral */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}



.home-category article:hover a img:nth-child(2){
	opacity: .7;
	transform:  translateX(-50%) scale(1.1);
	transition-delay: .1s;

}

.home-category article a p{
	position: relative;
	z-index: 3;
	font-size: 30px;
	color: var(--color2);
	letter-spacing: 1px;
	transition: all .3s ease;
}

.home-category article:hover p{
	color: var(--color2);
	transform: scale(1.2);
}

/* showcase */
.showcase{
	padding: 80px 0;
	background: var(--color5);
	text-align: center;
}

.showcase .wrap{
	overflow: hidden;
}

.showcase .title--section{
	text-align: center;
	font-size: 20px;
	margin:0 0 50px 0;
	color: var(--color8);
	display: inline-block;
	position: relative;
}

.showcase .title--section:before{
	content: "";
	width: 300%;
	height: 1px;
	left: -310%;
	top:50%;
	background: rgba(0,0,0,.1);
	position: absolute;
}


.showcase .title--section:after{
	content: "";
	width: 300%;
	height: 1px;
	right: -310%;
	top:50%;
	background: rgba(0,0,0,.1);
	position: absolute;
}

@media(max-width:800px){
	.showcase .title--section:before,
	.showcase .title--section:after{
		display: none;
	}	
}

.showcase .wrap:nth-child(2){
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.showcase article{
	width: 21.5%;
	margin:0 4% 4% 0;
	overflow: hidden;
	background: var(--color5);
	transition: all .3s ease;
	border-radius: 10px;
}

@media(max-width:800px){
	.showcase article{
		width: 46% !important;
		margin:0 0 4% 0 !important;
	}
}

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

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

.showcase article:nth-last-child(2),
.showcase article:nth-last-child(3),
.showcase article:nth-last-child(4),
.showcase article:nth-last-child(5){
	margin-bottom: 0;
}

.showcase article .image{
	width: 100%;
	height: 260px;
	overflow: hidden;
	position: relative;
	margin:0 0 20px 0;
	border-radius: 10px;
}

.showcase article .image img{
	width: auto;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

.showcase article .image img:nth-child(1){
    position: absolute !important;
    left: 0 !important;
    top:0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter:  blur(4px);
    opacity: .7 !important;
    transform: scale(1.5);
    z-index: 1 !important;
  }
.showcase article .image img:nth-child(2){
  position: relative;
  z-index: 2 !important;

  /* fade lateral */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
          mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 20%,
    black 80%,
    transparent 100%
  );
}

.showcase article h2{
	font-size: 16px;
	color: var(--color8);
	font-weight: 400;
	text-align: center;
}

.showcase article .price{
	color: var(--color8);
	font-weight: 700;
	font-size: 20px;
	margin:5px 0;
	text-align: center;
}

.showcase article .btn-add{
	line-height: 50px;
	text-align: center;
	margin:0 auto 20px auto;
	display: table;
}

.showcase article .btn-add a{
	text-decoration: none;
	color: var(--color2);
	padding: 16px 10px;
	border-radius: 5px;
	background: var(--color1);
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	transition: all .3s ease;
}

.showcase article .btn-add a:hover{
	background: var(--color3);
	color: var(--color2) !important;
}

/* banner-1 */
.banner-1{
	position: relative;
	background: var(--color7);
	overflow: hidden;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.banner-1 img{
	position: absolute;
	width: 100%;
	height: auto;
	position: absolute;
	top:0;
	left: 0;
	transform: scale(1.2);
	opacity: .4;
	pointer-events: none;
}

.banner-1 .wrap{
	position: relative;
	z-index: 4;
}

.banner-1 .wrap h3{
	font-family: var(--fuente1);
	color: var(--color2);
	font-size: clamp(30px, 5vw, 80px);
	text-align: center;
	line-height: 80px;
	font-weight: 400;
	max-width: 600px;
	position: relative;
}

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

	.banner-1 img{
		transform: scale(3);
	}

	.banner-1 .wrap h3{
		font-size: 30px;
		line-height: 30px;
		padding: 100px 0;
	}
}

.banner-1 .wrap h3:before{
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	background: var(--color2)50;
	left: 50%;
	transform: translateX(-50%);
	top:-50px;
}

.banner-1 .wrap h3:after{
	content: "";
	position: absolute;
	width: 100px;
	height: 2px;
	background: var(--color2)50;
	left: 50%;
	transform: translateX(-50%);
	bottom:-50px;
}

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

.suscribe .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.suscribe .left{
	width: 50%;
}

.suscribe .left h2{
	font-size: 30px;
	font-weight: 700;
	color: var(--color6);
}

.suscribe .left h3{
	font-size: 18px;
	font-weight: 400;
	color: var(--color8);
}

.suscribe .right{
	width: 50%;
	text-align: right;
}

@media(max-width:800px){
	.suscribe .left,
	.suscribe .right{
		width: 100%;
		text-align: center;
		margin:0 0 20px 0;
	}
	.suscribe .right ul{
		justify-content: center;
	}
}

.suscribe .right ul{
	margin:10px 0 0 0;
}

.suscribe .right ul li{
	display: inline-block;
	line-height: 45px;
	margin:0 10px;
}

.suscribe .right ul li a{
	display: block;
	text-decoration: none;
	color: var(--color6);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
}

.suscribe .right ul li a i{
	font-size: 55px;
	line-height: 30px;
	position: relative;
	color: var(--color4);
	display: inline-block;
	transform: translateY(5px);
	margin:0 10px 0 0;
}

.suscribe .right ul li:nth-child(1) a{
	transform: translateY(8px);
}

.suscribe .right ul li:nth-child(3) a{
	color: var(--color2);
	font-weight: 700;
	padding: 0 40px;
	border-radius: 50px;
	background: var(--color1); /* Old browsers */
	background: -moz-linear-gradient(left,  var(--color4) 1%, var(--color3) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  var(--color4) 1%,var(--color3) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  var(--color4) 1%,var(--color3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color1)', endColorstr='var(--color2)',GradientType=1 ); /* IE6-9 */


}



/* page-banner */
.page-banner{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
    padding: 50px 0;
    color: var(--color6);
    background-color: var(--color2);
    overflow: hidden;
    z-index: 1;
}

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


.page-banner  h1{
    z-index: 3;
    position: relative;
    color: var(--color7);
    font-size: 20px;
}

@media(max-width:800px){
	.page-banner{
		padding: 150px 5% 40px 5%;
        border-radius: 0 0 20px 20px;
	}

    .page-banner  h1{
        z-index: 99;
        font-size: 30px;
        text-align: center;
        position: relative;
    }
}

.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 a{
    color: var(--color6);
    text-decoration: none;
}

@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(--color2);
    padding: 9px 2%;
    width: 100%;
    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(--color7);
    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;
	color: var(--color2);
}

.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%;
    margin:0 0 40px 0;
	position: relative;
	justify-content: center;
	align-items: center;
}

.category .wrap article img{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
    object-fit: cover;
}



.category .wrap article h2{
    font-size: 1.2em;
    line-height: 1.5;
    color: var(--color2);
    padding: 20px 20px 0 20px;
}

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

.category .wrap article .btn-more a{
    background-color: var(--color1);
    color: var(--color3);
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    padding: 10px 20px;
}

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

	.category .wrap article{
		width: 90%;
        margin:auto 30px;
	}
}


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




/* sub-footer */
.sub-footer{
	padding: 80px 0;
	background: var(--color1); /* Old browsers */
	background: -moz-linear-gradient(left,  var(--color1) 1%, var(--color1b) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  var(--color1) 1%,var(--color1b) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  var(--color1) 1%,var(--color1b) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color1)', endColorstr='var(--color1b)',GradientType=1 ); /* IE6-9 */
}

.sub-footer .wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sub-footer article{
	margin:0 1.2% 0 0;
	position: relative;
}

@media(max-width:800px){
	.sub-footer article{
		width: 100% !important;
		margin:0 0 20px 0 !important;
		text-align: center !important;
	}
}

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

.sub-footer article:nth-child(2){
	width: 30%;
	margin:0 5% 0 0;
	text-align: center;
}

.sub-footer article:nth-child(3){
	width: 15%;
	float: right;
	text-align: center;
}

.sub-footer article:nth-child(2):after{
	content: "";
	position: absolute;
	width: 1px;
	height: 100px;
	background: var(--color2)50;
	right: -50px;
	top:50%;
	transform: translateY(-50%);
}

.sub-footer article:nth-child(2):before{
	content: "";
	position: absolute;
	width: 1px;
	height: 100px;
	background: var(--color2)50;
	left: -50px;
	top:50%;	
	transform: translateY(-50%);
}



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


.sub-footer article h2{
	font-size: 20px;
	color: var(--color2);
	margin:0 0 20px 0;
}

.sub-footer article ul li{
	list-style: none;
	font-weight: 400;
	font-size: 20px;
	padding: 10px 0;
}

.sub-footer article ul li a,
.sub-footer article p{
	text-decoration: none;
	color: rgba(255,255,255,.7);
}

.sub-footer article ul li a:hover{
	color: var(--color2);
	transition: all .3s ease;
}

.sub-footer article ul.social{
	margin:20px 0 0 0;
	display: flex;
	justify-content: space-around;
}

.sub-footer article ul.social li{
	width: 60px;
	line-height: 60px;
	margin:0 5px 0 0;
	padding: 0;
}

.sub-footer article ul.social li a{
	color: var(--color2);
	text-align: center;
	font-size: 30px;
	display: block;
	line-height: 45px;
	border-radius: 50px;
}

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

/* footer */
footer{
	text-align: center;
	color: var(--color2);
	padding: 20px 0;
	background: var(--color1); /* Old browsers */
	background: -moz-linear-gradient(left,  var(--color1) 1%, var(--color1b) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  var(--color1) 1%,var(--color1b) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  var(--color1) 1%,var(--color1b) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--color1)', endColorstr='var(--color1b)',GradientType=1 ); /* IE6-9 */
}

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