@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900&display=swap");

:root {
	--color-gray-dark: #cccccc;
	--color-gray-dark-2: rgba(0, 0, 0, 0.6);
	--color-gray-light: #eeeeee;
	--color-gray-light-2: #efefef;
	--color-yellow: #ddd9c4;
	--color-red: #d21d32;

	--color-white: #ffffff;
	--color-black: #000000;

	--font-medium: 20px;
	--font-large: 30px;
}

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

body {
	font-family: "Lato", Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

#wrap {
	min-height: calc();
}

.container {
	width: 100%;
	max-width: 1440px;
	/* min-width: 990px; */
	margin: 0 auto;
}

.padding-container {
	padding: 10px;
}

/* general classes */
ul {
	list-style: none;
	padding: 0;
}
a {
	display: inline-block;
	text-decoration: none;
	color: var(--color-black);
}
img {
	width: 100%;
	display: block;
}
select,
input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

::selection {
	background: green;
	color: white;
}

/* input */
input,
textarea {
	width: 100%;
	padding: 8px;
	font-size: 18px;
	border-radius: 2px;
	border: 1px solid #d4d4d4;
}

/* stacks */

.stack-1 > * + * {
	margin-top: 16px;
}
.stack-2 > * + * {
	margin-top: 32px;
}
.stack-3 > * + * {
	margin-top: 48px;
}

/* buttons */
.btn {
	width: 100%;
	padding: 7px 17px;
	text-align: center;
	border-radius: 3px;
	display: inline-block;
	text-transform: uppercase;
	cursor: pointer;
	font-weight: 500;
}
.btn-white {
	max-width: 114px;
	background: #fff;
	color: #000;
	padding: 7px 7px;
	border: 1px solid #ccc;
	font-size: 12px;
	font-weight: 600;
}
.btn-gray {
	max-width: 114px;
	background: var(--color-gray-light-2);
	color: #000;
	padding: 7px 7px;
	border: 1px solid #ccc;
	font-size: 12px;
	font-weight: 600;
}
.btn-crimson {
	background: #dc143c;
	color: #fff;
	max-width: fit-content;
}
.btn-green {
	background: #2c6b06;
	color: #fff !important;
	max-width: 150px;
}

/* home index */

.logo {
	max-width: 110px;
}

.home-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.home-header__img {
	display: flex;
	align-items: center;
}
.home-header__img h1 {
	text-transform: capitalize;
	margin-left: 32px;
}

.home-header__search {
	display: flex;
	align-items: center;
}
.home-header__search form {
	margin-right: 32px;
}
.home-header__search fieldset {
	position: relative;
	border: 0;
}
.home-header__search input {
	max-width: 215px;
	padding-right: 40px;
	padding-left: 20px;
	border-radius: 25px;
	border: 1px solid #ddd;
	outline: 0;
	background: var(--color-gray-light-2);
}
.home-header__search fieldset a {
	position: absolute;
	right: 0;
	top: 49%;
	transform: translateY(-50%);
	padding: 10px;
}

.home-header__articles {
	display: flex;
	justify-content: center;
}
.home-header__articles article {
	text-align: center;
}
.home-header__articles article:not(:last-child) {
	margin-right: 20px;
}

.header-nav-1,
.header-nav-2 {
	display: flex;
	justify-content: center;
}
.header-nav-1 {
	background: var(--color-gray-light-2);
	border-top: 1px solid var(--color-gray-dark);
	border-bottom: 1px solid var(--color-gray-dark);
}
.header-nav-2 {
	background: var(--color-white);
	border-bottom: 2px solid var(--color-gray-light-2);
}
.nav-links-1,
.nav-links-2 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-links-1 > li > a,
.nav-links-2 > li > a {
	font-weight: 600;
	text-align: center;
	color: var(--color-black);
	padding: 10px 25px;
}
.nav-links-1 > li > a {
	text-transform: uppercase;
}
.nav-links-2 > li > a {
	text-transform: capitalize;
}
.nav-links-1 > li:hover {
	background: var(--color-gray-light);
}
#catalogo-links,
.sub-links-2,
.nav-links-2 ul {
	display: none;
}

/* nav-links-2 */
.nav-links-2 li:hover .nav-links-2__sub {
	display: block;
}
.nav-links-2__sub li:hover {
	background: var(--color-gray-dark);
}
.nav-links-2 li {
	position: relative;
}
.nav-links-2__sub {
	position: absolute;
	top: 44px;
	background: var(--color-gray-light);
	z-index: 99;
}
.nav-links-2__sub li a {
	padding: 10px;
	text-transform: capitalize;
	width: 100%;
	min-width: 130px;
	font-size: 14px;
}

#catalogo:hover #catalogo-links,
.sub-links-2:hover + #catalogo-links {
	display: grid;
}
#catalogo:hover .sub-links-2 {
	display: flex;
}
.sub-links-2 {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	background: var(--color-gray-light);
	z-index: 99;
}
.sub-links-2 a {
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	color: var(--color-black);
	padding: 10px 25px;
}
.sub-links-2 a:hover {
	background: blue;
}
.sub-links-2 span {
	margin: 0 16px;
}
.nav-links-1 > li:not(:last-child) {
	margin-right: 16px;
}

/* catalogo */
#nav {
	position: relative;
}
#invisible {
	width: 100%;
}
#catalogo-links {
	position: absolute;
	z-index: 99;
	width: 100%;
	left: 0;
	top: 85px;
	background: var(--color-gray-light);

	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	column-gap: 25px;
}

/* catalogo article */
.catalogo-article {
	text-transform: uppercase;
}
.catalogo-article h3:nth-of-type(2) {
	margin-top: 16px;
}
.catalogo-article ul {
	margin-top: 16px;
	list-style: circle;
	padding-left: 20px;
}
.catalogo-article a {
	padding: 3px;
	width: 70%;
}
#catalogo-article__booths,
.catalogo-article div:first-of-type {
	margin: 10px 0;
	padding: 10px 0;
	border-top: 1px solid;
	border-bottom: 1px solid;
}

.header-nav-1 nav,
.header-nav-2 nav {
	display: flex;
	justify-content: center;
}
.header-nav-2 span {
	margin: 0 16px;
}

.section-main {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* .main-left > div {
	margin-right: 10px;
} */

.promos__article {
/*	border: 1px solid rgba(0, 0, 0, 0.1); */
}
.promos h2 {
	display: none;
}
.promos__article:not(:first-child) {
	margin-top: 10px;
}
.promos__article a {
}
.promos__article img {
	object-fit: cover;
	object-position: center;
	width: 300px;
}
.promos__article p {
	text-transform: uppercase;
	font-weight: 600;
	padding: 5px;
	color: var(--color-black);
/*	background: var(--color-gray-dark); */
}

.most-popular {
	margin: 20px 0;
}
.most-popular h2 {
	width: 100%;
	display: inline-block;
	text-align: center;
	border-bottom: 1px solid #8f8b87;
	font-size: 25px;
	line-height: 0.1em;
	letter-spacing: 2px;
	margin: 0 0 14px 0;
	margin: 10px 0;
	text-transform: uppercase;
	color: #010101;
}
.most-popular b {
	background: #fff;
	padding: 0 20px;
	margin: 0;
	font-weight: 500;
}
.most-popular__articles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	justify-items: center;
	column-gap: 20px;
	row-gap: 10px;
}
.most-popular__article img {
	width: 260px;
}
.most-popular__article h4 {
	margin-top: 10px;
	text-align: center;
}
.most-popular__article div {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.most-popular article a {
	margin-top: 5px;
}

.our-catalogs section {
	display: flex;
}
.our-catalogs__left {
	flex-basis: 25%;
	margin-right: 16px;
}

.our-catalogs__left h3 {
	text-transform: uppercase;
}
.our-catalogs__left a {
	text-transform: capitalize;
}
.our-catalogs__right {
	flex-basis: 75%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	column-gap: 10px;
	row-gap: 10px;
}
.our-catalogs__right h4 {
	text-transform: uppercase;
}

.our-products__articles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	justify-items: center;
	column-gap: 20px;
	row-gap: 10px;
}
.our-products__article img {
	width: 300px;
}
.our-products__article h4 {
	margin-top: 10px;
}
.our-products__articles a {
	margin-top: 5px;
}
.our-products section:not(:first-child) {
	margin-top: 10px;
}
.our-products h2 {
	margin: 10px 0;
	font-size: 25px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #010101;
	margin-left: 32px;
}

.banner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px;
	margin: 10px 0;
	text-transform: capitalize;
	/* background: var(--color-gray-light); */

	color: var(--color-black);
	background: linear-gradient(
		103deg,
		rgba(204, 204, 204, 1) 0%,
		rgba(255, 255, 255, 0.3) 50%,
		rgba(239, 239, 239, 1) 100%
	);
}
.banner h2 {
	font-size: 25px;
}
form.banner-form {
	display: flex;
}
form.banner-form select {
	background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='110' height='110' fill='%23000000'><polygon points='0,0 100,0 50,50'/></svg>")
		no-repeat;
	background-color: #ffffff;
	background-size: 12px;
	background-position: calc(100% - 13px) center;
	background-repeat: no-repeat;

	color: #000;
	margin: 0 16px 0 32px;
	min-width: 255px;
	padding: 0 20px;
	padding-right: 30px;
	border: 2px solid #ddd;
	outline: 0;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
}

.ready-to-buy {
	background-color: var(--color-gray-light);
	margin: 10px 0;
}
.ready-to-buy__box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ready-to-buy__details {
	margin-right: 10px;
}
.ready-to-buy__details h2 {
	font-size: 35px;
}
.ready-to-buy__details span {
	font-weight: 600;
}
.ready-to-buy__img {
	min-width: 500px;
}

.custom-paragraph {
	padding-left: 20px;
	border-left: 2px solid var(--color-red);
}

.three-reasons__header {
	text-align: center;
}
.three-reasons__header h2 {
	font-size: 25px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #010101;
}
.three-reasons__header p {
	width: 70%;
	margin: 0 auto;
	margin-top: 32px;
}
.three-reasons__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	column-gap: 10px;
	row-gap: 10px;
	align-items: stretch;
}
.three-reasons__card {
	border: 0.5px solid rgba(0, 0, 0, 0.5);
}
.three-reasons__card div {
	padding: 10px;
	min-height: 175px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.three-reasons__card h3 {
	text-transform: uppercase;
	margin: 10px 0;
}
.three-reasons__card-details span {
	margin-top: 10px;
}

/* footer */
.footer {
	background: var(--color-gray-dark-2);
	margin-top: 10px;
}
.footer-articles {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	row-gap: 20px;
}
.footer-article h2 {
	text-transform: uppercase;
	color: var(--color-white);
	font-size: 25px;
}
.footer-article li:not(:first-child) {
	margin-top: 10px;
}
.footer a {
	color: var(--color-white);
	font-weight: 300;
}
.subscription div {
	display: flex;
}
.social-media {
	display: flex;
}
.social-media a:not(:last-child) {
	margin-right: 16px;
}
.social-media img {
	width: 35px;
}

.footer-bottom {
	margin: 40px 0 0 0;
	text-align: center;
	color: var(--color-white);
}
.footer-bottom a:not(:last-child) {
	margin-right: 42px;
}

/* display none */
.burger {
	display: none;
}

@media (max-width: 1000px) {
	.home-header {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.home-header__search {
		margin-top: 16px;
	}

	/* header-nav-1 */
	.header-nav-1 {
		flex-direction: column;
	}
	.nav-links-1 {
		display: none;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	.nav-links-1 li {
		width: 100%;
	}
	.nav-links-1 a {
		width: 100%;
		text-align: left;
	}

	/* header-nav-2 */
	.header-nav-2 {
		display: none;
	}

	/* burger */
	.mob-fav-icons {
		display: flex;
		justify-content: space-between;
		width: 70%;
	}
	.burger {
		display: block;
		padding: 15px 25px;
		position: relative;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
	}
	.menu-btn {
		display: none;
	}
	.nav-links-1 > li > a {
		text-align: left;
	}
	.burger-btn {
		position: absolute;
		left: 25px;
		width: 30px;
		height: 30px;
		cursor: pointer;
	}
	.burger-btn .line {
		width: 25px;
		height: 3px;
		background: var(--color-black);
		transition: all 0.2s ease-in-out;

		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.burger-btn .line::before,
	.burger-btn .line::after {
		position: absolute;
		left: 0;
		content: "";
		width: 25px;
		height: 3px;
		background: var(--color-black);
		transition: all 0.2s ease-in-out;
	}
	.burger-btn .line::before {
		top: 8px;
	}
	.burger-btn .line::after {
		top: -8px;
	}
	#burger-btn:checked ~ .burger-btn .line {
		background: transparent;
	}
	#burger-btn:checked ~ .burger-btn .line::before {
		top: 0;
		transform: rotate(135deg);
	}
	#burger-btn:checked ~ .burger-btn .line::after {
		top: 0;
		transform: rotate(-135deg);
	}

	/* fav icons */
	.mobile-icon {
		display: flex;
	}

	/* main */
	.section-main {
		display: block;
	}
	/* .main-left > div {
		margin-right: 0;
	} */
	.most-popular {
	}
	.most-popular__articles {
		/* grid-template-columns: 1fr 1fr 1fr; */
	}
	.most-popular__article img {
		width: 150px;
	}
	.most-popular h2 {
		margin: 20px 0;
	}

	/* banner */
	.banner {
		margin: 20px 0;
		padding: 15px;
	}
	.banner h2 {
		font-size: 25px;
	}

	/* our products */
	.our-products h2 {
		margin: 20px;
	}
	.our-products__article img {
		width: 250px;
	}

	/* promos */
	.promos__articles {
		margin: 20px 0;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		column-gap: 10px;
		row-gap: 10px;
	}
	.promos__article:not(:first-child) {
		margin-top: 0;
	}
	.promos__article img {
		max-width: 205px;
		height: 300px;
	}
	.promos h2 {
		display: block;
		margin: 20px;
		font-size: 25px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #010101;
	}
	.promos__article p {
		font-size: 12px;
	}

	/* ready to buy */
	.ready-to-buy__box {
		flex-direction: column;
	}
	.ready-to-buy {
		margin: 20px 0;
	}
	.ready-to-buy__details {
		margin-right: 0;
		padding: 15px;
		order: 2;
	}
	.ready-to-buy__details h2 {
		font-size: 25px;
	}
	.ready-to-buy__img {
		min-width: inherit;
		max-width: 300px;
	}

	/* tres razones */
}

@media (max-width: 420px) {
	.btn {
		max-width: 100%;
	}

	.home-header__search fieldset {
		display: none;
	}
	.home-header__img h1 {
		display: none;
	}
	.home-header__articles {
		display: none;
	}
	.home-header__search form {
		margin-right: 0;
	}

	.most-popular__articles {
		grid-template-columns: 1fr 1fr;
	}
	.most-popular__article div {
		flex-direction: column;
	}
	.most-popular__article,
	.our-products__article {
		padding: 0 15px;
	}
	.most-popular__article img,
	.our-products__article img {
		width: 100%;
		max-width: fit-content;
	}

	.banner {
		flex-direction: column;
	}
	.banner h2 {
		font-size: 20px;
	}
	form.banner-form {
		flex-direction: column;
	}
	form.banner-form select {
		padding: 10px 20px;
		margin: 10px 0;
	}

	.our-catalogs__left {
		display: none;
	}
	.our-catalogs__right {
		flex-basis: 100%;
	}

	.promos__articles {
		grid-template-columns: 1fr;
	}
	.promos__article img {
		width: 100%;
		max-width: fit-content;
		object-position: top;
	}

	.footer-bottom stack-2 > div {
		display: flex;
		flex-direction: column;
	}
	.footer-bottom a:not(:last-child) {
		margin-right: 0;
	}
	.footer-article:last-child {
		order: -1;
	}
	.subscription div {
		flex-direction: column;
	}
}
