/*
Theme Name: Pazmatools
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.
*/


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

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

::selection{
	background: #091328;
	color: #ffffff;
}

.clear{
	clear: both;
}


/* top-banner */
.top-banner{
	line-height: 50px;
	background: #212121;
	color: #f9f9f9;
	font-size: 15px;
}

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

.top-banner .wrap{
	position: relative;
}

.top-banner .center{
	float: left;
	width: 80%;
	padding: 0 10%;
	text-align: center;
}

.top-banner .social-top{
	float: right;
	position: absolute;
	right: 0;
}

.top-banner .social-top ul{
	display: flex;
	justify-content: right;
	list-style: none;
}

.top-banner .social-top ul li{
	width: 50px;
	text-align: center;
}

.top-banner .social-top ul li a{
	color: #ffffff;
	display: block;
	transition: all .3s ease;
}

.top-banner .social-top ul li a:hover{
	background: #F2E205;
	color: #212121;
}

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

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

header .wrap .logo{
	width: 20%;
	max-width: 100px;
}

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

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

header label{
	display: none;
}


@media(max-width:800px){
	header{
		position: relative;
	}

	header .wrap{
		justify-content: left;
	}

	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:25px;
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		border-radius: 5px;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: #212121;
		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;
	}
}

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

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

header label span:nth-child(2){
	top:25px;
	transition-delay: .2s;
}

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

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

header .wrap nav{
	width: 67%;
	margin:30px 0 0 0;
}

header .wrap nav ul{
	display: flex;
	list-style: none;
	justify-content: center;
	line-height: 55px;
	gap:4%;
}

header .wrap nav ul li{
	position: relative;
}

header .wrap nav ul li a{
	display: block;
	text-decoration: none;
	color: #313131;
	font-size: 15px;
}

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

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

	header .wrap nav ul{
		display: block;
	}

	header .wrap nav ul li{
		display: block;
		width: 100%;
	}

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

/* sub-nav */
header .wrap nav ul li ul{
	position: absolute;
	width: 300px;
	background: #ffffff;
	display: block;
	top:100%;
	left: 0;
	opacity: 0;
	margin:40px 0 0 0;
	pointer-events: none;
	transition: all .3s ease;
	z-index: 20;
}

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

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

	header .wrap nav ul li:hover ul{
		max-height: 100vh;
	}
}

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

header .wrap nav ul li ul li a{
	color: #313131;
	background: #f0f0f0;
	transition: all .3s ease;
	text-transform: capitalize;
	padding: 0px 10px;
}

header .wrap nav ul li ul li:hover a{
	background: #313131;
	color: #ffffff;
}


/* search-box */
header .wrap .search-box{
	width: 20%;
	text-align: right;
	margin:34px 0 0 0;
	position: relative;
}

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

header .wrap .search-box input[type="text"]{
	padding: 12px 10%;
	width: 80%;
	border:solid 1px #dedede;
	border-radius: 50px;
	outline: none;
}

header .wrap .search-box button{
	position: absolute;
	top:0;
	line-height: 41px;
	right: 0;
	width: 50px;
	border-radius: 0 50px 50px 0;
	border:none;
	background: transparent;
	cursor: pointer;
	outline: none;
	color: #999999;

}
/* slider */
.slider{
	position: relative;
	background: #8C7503;
}

.slider .single{
	height: 100%;
}

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

.slider .single .wrap{
	position: relative;
	height: 100%;
	display: table;
	position: relative;
}

.slider .single .wrap .content--slider{
	vertical-align: middle;
	display: table-cell;
	text-align: center;
}

.slider .single .wrap .content--slider h1{
	font-size: 50px;
	font-weight: 600;
	color: #ffffff;
}

.slider .single .wrap .content--slider h2{
	font-size: 30px;
	font-weight: 300;
	margin:20px auto;
	max-width: 1000px;
	color: #ffffff;
}

.slider .single .wrap .content--slider p a{
	color: #ffffff;
	text-decoration: none;
	line-height: 50px;
	padding: 0 50px;
	font-size: 14px;
	border:solid 2px #ffffff;
	display: inline-block;
	border-radius: 50px;
	font-weight: 600;
	transition: all .3s ease;
}

@media(max-width:800px){
	.slider .single .wrap .content--slider h1{
		font-size: 30px;
	}

	.slider .single .wrap .content--slider h2{
		font-size: 20px;
	}

	.slider .single .wrap .content--slider p a{
		display: none;
	}
}

.slider .single .wrap .content--slider p a:hover{
	background: #ffffff;
	color: #0D0D0D;
}

/* categorys */
.categorys{
	padding: 40px 0;
}

.categorys h2{
	font-size: 30px;
	font-weight: 600;
	color: #0D0D0D;
	text-align: center;
}

.categorys h3{
	font-size: 20px;
	font-weight: 300;
	color: #777777;
	max-width: 60%;
	margin:auto;
	text-align: center;
}

.categorys .wrap{
	display: flex;
	gap:1%;
	max-width: 1600px;
	flex-wrap: wrap;
	justify-content: left;
}

.categorys .wrap article{
	overflow: hidden;
	border-radius: 10px;
	transition: all .3s ease;
	width: 19%;
	margin:.5% 0;
}

@media(max-width:800px){
	.categorys .wrap{
		gap: 4%;
	}
	.categorys .wrap article{
		width: 48%;
		flex-basis: 1;
		margin:0 0 4% 0;
	}
}

.categorys .wrap article:hover{
	transform: translateY(-10px);
}

.categorys .wrap article .image{
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000000;
}

.categorys .wrap article .image img{
	width: 100%;
	height: 100%;
	margin: 0 0 -5px 0;
	object-fit: cover;
	opacity: .6;
	transition: all .3s ease;
}

.categorys .wrap article:hover .image img{
	transform: scale(1.1);
	filter: blur(5px);
	opacity: .4;
}

.categorys .wrap article a{
	text-decoration: none;
	display: block;
	position: relative;
}

.categorys .wrap article a h4{
	text-decoration: none;
	color: #ffffff;
	font-size: 20px;
	text-align: center;
	width: 100%;
	transition: color .3s ease;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 29;
	transition: all .3s ease;
}

.categorys .wrap article a:hover h4{
	transform: translateY(-50%) translateX(-50%) scale(1.1);
}


/* showcase */
.showcase{
	padding: 40px 0;
	text-align: center;
}

.showcase > h2{
	margin:0 0 50px 0;
	font-size: 50px;
	color: #313131;
}

@media(max-width:800px){
	.showcase > h2{
		font-size: 30px;
		margin:0 0 20px 0;
	}
}

.showcase .wrap{
	display: flex;
	gap:4%;
	flex-wrap: wrap;
	justify-content: center;
}

.showcase .wrap article{
	width: 22%;
	text-align: center;
	margin:0 0 50px 0;
	transition: all .3s ease;
}

.showcase .wrap article:hover{
	transform: translateY(-10px);
}

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

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

	.showcase .wrap article img{
		height: 200px;
	}
}

.showcase .wrap article h2{
	font-size: 18px;
	font-weight: 800;
	padding: 10px 0;
}

.showcase .wrap article .price{
	font-size: 20px;
	font-weight: 800;
	margin:0 0 10px 0;
}

.showcase .btn-add a{
	display: inline-block;
	background: #F2E205;
	line-height: 45px;
	padding: 0 20px;
	border-radius: 5px;
	color: #212121;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all .3s ease;
}

.showcase .btn-add a::before {
  font: var(--fa-font-solid);
  content: "\f245";
  margin:0 8px 0 0 ;
}

.showcase .btn-add a:hover{
	background: #212121;
	color: #F2E205;
}
/* icons */
.icons{
	padding: 150px 0;
	background: #313131;
	position: relative;
}

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

.icons .wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:2%;
	position: relative;
	z-index: 2;
}

.icons .wrap article{
	width: 20%;
	margin:0 0 5% 0;
	text-align: center;
	color: #F2E205;
	transition: all .3s ease;
}
.icons .wrap article:hover{
	color: #ffffff;
}

.icons .wrap article .material-symbols-outlined{
	font-weight: 100;
	border-radius: 50px;
	font-size: 70px;
}

.icons .wrap article h2{
	font-size: 50px;
}

@media(max-width:800px){
	.icons{
		padding: 50px 0;
	}
	.icons .wrap{
		gap: 4%;
	}

	
	.icons .wrap article{
		width: 48%;
		margin:0 0 4% 0;
	}

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


/* banner-2 */
.banner-2{
	padding: 120px 0;
}

.banner-2 .left{
	width: 38%;
	float: left;
	padding: 100px 0 0 0;
}

.banner-2 .left h3{
	font-size: 50px;
	color: #091328;
	font-weight: 400;
	margin:0 0 100px 0;
}


.banner-2 .left p{
	font-size: 20px;
	color: #091328;
	font-weight: 300;
	max-width: 80%;
	line-height: 40px;
}

@media(max-width:800px){
	.banner-2{
		padding: 40px 0;
	}
	.banner-2 .left{
		width: 100%;
		float: none;
		text-align: center;
		padding: 20px 0 0 0;
	}

	.banner-2 .left h3{
		margin:0 0 20px 0;
		font-size: 30px;
		text-align: center;
	}

	.banner-2 .left p{
		max-width: 100%;
		text-align: center;
	}
}

.banner-2 .left p a{
	display: inline-block;
	background: #091328;
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
	padding: 0 30px;
	line-height: 50px;
	margin:70px 0 0 0;
	border-radius: 50px;
	transition: all .3s ease;
}

.banner-2 .left p a:hover{
	box-shadow: 0 0 0 7px #091328;
}

.banner-2 .left p a i{
	transition: all .3s ease;
}

.banner-2 .left p a:hover i{
	transform: translateX(10px);
}

.banner-2 .left h3 span{
	color: #0D0D0D;
	font-weight: 400;
}

.banner-2 .right{
	width: 60%;
	float: right;
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.banner-2 .right article{
	width: 40%;
	display: inline-block;
	margin:3%;
	transition: all .3s ease;
}

@media(max-width:800px){
	.banner-2 .right{
		width: 100%;
		float: none;
		text-align: center;
		margin:20px 0 0 0;
	}

	.banner-2 .right article{
		width: 44%;
	}
}

.banner-2 .right article:nth-child(2n + 0){
	transform: translateY(100px);
}

.banner-2 .right article .image{
	overflow: hidden;
	height: 300px;
	border-radius: 20px;
	position: relative;
}

.banner-2 .right article .image img{
	width: auto;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: all .7s ease;
}

.banner-2 .right article:hover .image img{
	transform: translateX(-50%) scale(1.2);
	filter: grayscale(100%);
	opacity: .7;
}

.banner-2 .right article h4{
	color: #091328;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px;
}

/* banner-bottom */
.banner-bottom{
	background: #313131;
	padding:60px 0;
}

.banner-bottom .left{
	width: 40%;
	float: left;
	color: #ffffff;
}

@media(max-width:800px){
	.banner-bottom .left{
		width: 100%;
		float: none;
		text-align: center;
	}
}

.banner-bottom .left h2{
	font-size: 40px;
	font-weight: 900;
}

.banner-bottom .left h3{
	font-weight: 400;
	color: #f9f9f9;
	font-size: 16px;
}

.banner-bottom .right{
	width: 50%;
	float: right;
	padding: 20px 0 0 0;
}

@media(max-width:800px){
	.banner-bottom .right{
		width: 100%;
		float: none;
		text-align: center;
	}
}


.banner-bottom .right input[type="text"]{
	padding: 14px 2%;
	width: 64%;
	outline: none;
	border-radius: 5px;
	border: none;
	font-size: 18px;
	color: #313131;
}

.banner-bottom .right input[type="text"]::placeholder{
	color: #313131;
}

.banner-bottom .right input[type="submit"],
.banner-bottom .right button{
	padding: 14px 4%;
	background: #F2CB05;
	border: none;
	font-weight: 600;
	border-radius: 5px;
	color: #212121;
	font-size: 18px;
	outline: none;
	cursor: pointer;
}

/* page-banner */
.page-banner{
  background: #F2CB05;
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner h1{
	font-size: 60px;
	color: #212121;
	position: relative;
}

@media(max-width:800px){
	.page-banner{
		height: 100px !important;
	}
	.page-banner h1{
		font-size: 30px;
	}
}

.page-banner .image{
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  z-index: 1;
  opacity: .1;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F2CB05; 
  mix-blend-mode: color;
}

.page-banner .image img{
	top: 50%;
	height: auto;
	width: 100%;
	position: absolute;
	transform: translateY(-50%);
}



/* content */
.content{
	padding: 80px 0 80px 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 textarea,
.content select{
	font-family: 'Roboto', sans-serif;
	background-color: #ffffff;
	padding: 8px 2%;
	width: 96%;
	border:solid 1px #f0f0f0;
	border-radius: 5px;
	outline: none;
	resize: none;
	margin:0 0 10px 0;
	font-size: 15px;
	-webkit-appearance: none;
}

.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: #F2CB05;
	color: #212121;
	border:none;
	outline: none;
	cursor: pointer;
	border-radius: 3px;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 30px;
	margin:0 0 20px 0;
	transition: all .3s ease;
	-webkit-appearance: none;
}

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

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

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


/* sub-footer */
.sub-footer{
	background: #212121;
	padding:60px 0;
}

.sub-footer article{
	width: 25%;
	float: left;
}

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

.sub-footer article img{
	max-width: 140px;
}

.sub-footer article  p{
	color: #f0f0f0;
	font-weight: 400;
	font-size: 14px;
	line-height: 30px;
	padding: 10px 2%;
}

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

.sub-footer article ul.social li{
	list-style: none;
	line-height: 45px;
	width: 45px;
}

.sub-footer article ul.social li a{
	display: block;
	text-decoration: none;
	color: #212121;
	background: #F2CB05;
	text-align: center;
	border-radius: 50px;
	transition: all .3s ease;
}

.sub-footer article ul.social li a:hover{
	color: #ffffff;
	background: #8C7503;
	transition: all .3s ease;
}

.sub-footer article h2{
	font-weight: 600;
	color: #ffffff;
	font-size: 20px;
	margin: 0 0 20px 0;
}

.sub-footer ul.menu li{
	list-style: none;
	padding: 0 0 10px 0;
	font-size: 14px;
}

.sub-footer ul.menu li a b{
	color: #ffffff;
}

.sub-footer ul.menu li a{
	color: #f0f0f0;
	text-decoration: none;
}

.sub-footer ul.menu li a:hover{
	color: #ffffff;
	transition: all .3s ease;
}

.sub-footer ul.menu li a i{
	color: #ffffff;
	font-size: 10px;
	display: inline-block;
	margin: 0 5px 0 0;
}

/* footer */
footer{
	background: #212121;
	padding: 40px 0;
	font-weight: 400;
	color: #f0f0f0;
	text-align: center;
}

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

footer a:hover{
	color: #00A1C6;
	transition: all .3s ease;
}

/* btn-whatsapp */
.btn-whatsapp{
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25D366;
	z-index:999;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	transition: all .3s ease;
}

.btn-whatsapp:hover{
	transform: translateY(-10px);
}

.btn-whatsapp a{
	padding: 15px;
	display: block;	
	text-decoration: none;
	color: #ffffff;
}

.btn-whatsapp i{
	font-size: 28px;
	display: inline-block;
	line-height: 20px;
	transform: translateY(5px);
}


