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

.wow {
    animation-duration: 1.3s !important;
    /* animation-timing-function: linear; */
}


.delay {
    animation-delay: 0.5s !important;
}

.delay1 {
    animation-delay: 1s !important;
}

.delay2 {
    animation-delay: 1.5s !important;
}

.delay3 {
    animation-delay: 2s !important;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
    font-family: 'Inter', sans-serif;
}

@font-face {
    font-family: 'FrutigerNextLT';
    src: url('../fonts/FrutigerNextLT.ttf');
}

body {
    /* overflow-x: hidden; */
}

section {
    max-width: 100vw;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

:root {
    --width: calc(100% - 16rem);
    --padding: 0rem 8rem;
    --center: 0 auto;
    --main: rgba(8, 122, 179, 1);
    --main-hover: rgba(16, 81, 114, 1);
    --hover: rgba(8, 122, 179, 0.1);
    --text: rgba(40, 51, 68, 1);
    --text2: rgba(137, 146, 156, 1);
}

h1, h2, h3, h4, h5 {
    font-family: 'FrutigerNextLT', sans-serif;
}

p, a, span, li {
    font-family: 'FrutigerNextLT', sans-serif;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp {
    background-color: #25D366;
    width: 6rem;
    height: 6rem;
    border-radius: 100rem;
    border: 1px solid black;
    position: fixed;
    right: 2rem;
    z-index: 10001;
    bottom: 3rem;
}

.whatsapp a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp i {
    font-size: 3rem;
    color: white;
}

.button {
    min-width: 15rem;
    width: fit-content;
    min-height: 5rem;
    padding: 1rem 2rem;
    background-color: var(--main);
    color: white;
    font-size: 2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.button:hover {
    background-color: var(--main-hover);
}

.button__secondary {
    min-width: 15rem;
    width: fit-content;
    min-height: 5rem;
    padding: 1rem 2rem;
    background-color: white;
    color: var(--text);
    font-size: 2rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    border: 2px solid var(--hover);
}

.button__secondary:hover {
    background-color: var(--hover);
}

header {
    height: 15vh;
    width: 100%;
    margin: var(--center);
    position: fixed;
    z-index: 900;
    background-color: white;
    display: flex;
    align-items: center;
}

nav {
    width: var(--width);
    margin: var(--center);
    height: 100%;
    padding: 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

nav>a:last-child {
    display: none;
}

header nav .menu__button, .bars {
    display: none;
}

header figure, header picture {
    display: block;
    height: 7rem;
}

header figure img, header picture img {
    object-fit: contain;
}

header .menu2 {
    display: none;
}

header .menu {
    display: flex;
    align-items: center;
    column-gap: 5rem;
    height: 100%;
    position: relative;
}

.menu li>a, .menu li>p {
    font-size: 1.6rem;
    color: var(--text);
    font-weight: 400;
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
    font-family: 'hatton', sans-serif;
}

.menu li a::before {
	content: '';
	width: 0;
	height:3px;
	background: var(--main);
	position: absolute;
	left: 50%;
	bottom:-6px;
	border-radius: 2px;
	transform: translateX(-50%);
	transition: all 0.3s ease-in-out;
}
.menu li a:hover::before,
.menu li a.active::before {
	width: 100%;
}

.menu li a:hover::after {
    width: 50%;
}

.menu>li.button>a::after {
    display: none;
    width: 0;
    height: 0;
}

.menu>li.button>a:hover, .menu>li.button:hover>a {
    color: var(--text);
}

.menu>li {
    position: relative;
    height: fit-content;
    display: flex;
    align-items: center;
    width: fit-content;
}

.menu>li.search {
    transition: all 0.3s ease-in-out;
}

.menu>li.profile {
    position: relative;
}

header nav .menu>li.profile .profile-menu {
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    min-width: 15rem;
    top: 110%;
    right: 0;
    transition: all 0.3s ease-in-out;
    display: none;
    border: 1px solid var(--main);
}

header nav .menu>li.profile .profile-menu.active {
    display: flex;
}

header nav .menu>li.profile .profile-menu li {
    width: 100%;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

header nav .menu>li.profile .profile-menu a {
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
}

header nav .menu>li.profile .profile-menu li:hover {
    background-color: var(--hover);
}

header nav .menu>li.profile .profile-menu li:hover a {
    color: var(--text);
}

.menu>li.search.active-search {
    background-color: rgba(255, 255, 255, 0.3);
    height: fit-content;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 10rem;
    border: 1px solid var(--main);
    position: absolute;
    top: 63%;
}

.menu>li.search form {
    width: 100%;
    height: 100%;
    display: none;
}

.menu>li.search.active-search form {
    width: 100%;
    height: 100%;
    display: initial;
}

.menu>li.search input {
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    color: var(--text);
    font-size: 2rem;
    padding-left: 2rem;
    outline: none;
}

.menu li:last-child {
    position: relative;
}

.menu li.shop-cart a, .menu li.search a, .menu li.globe a, .menu li.profile a {
    font-size: 2.2rem;
    margin: 0rem 0.5rem;
    color: var(--text);
}

.menu .number__of--articles {
    background-color: var(--main);
    color: white !important;
    border-radius: 10rem;
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
    position: absolute;
    top: calc(50% - 2rem);
    right: 0;
}

.menu .button__secondary {
    min-height: 5rem;
}

p {
    font-size: 2rem;
    font-weight: 400;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    /* width: 100rem; */
    max-width: 100%;
    text-transform: uppercase;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

main {
    position: relative;
}

/* HERO  */

#hero {
    height: 100vh;
    /* padding-top: 15vh; */
    color: white;
    /* width: 100vw; */
    position: relative;
    overflow-x: hidden !important;
}

#hero .socials {
    position: absolute;
    right: 1rem;
    top: 50%;
}

#nosotros .socials {
    position: absolute;
    right: 1rem;
    top: 10rem;
}

#hero .socials ul li {
    margin: 1rem 0;
    min-width: 3rem;
    height: 3rem;
    border: 2px solid white;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .socials a {
    color: white;
    font-size: 1.6rem;
}

#hero-slider {
    width: 100vw;
    overflow-x: hidden;
}

#hero-slider, #hero-slider .glide__track, #hero-slider .glide__slides {
    height: 100% !important;
}

#hero .glide__slide {
    position: relative !important;
    height: 100% !important;
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        linear-gradient(0deg, rgba(156, 163, 224, 0.2), rgba(156, 163, 224, 0.2));
}

#hero .glide__slide figure.portada {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
#hero .owl-item.active figure.portada {
	animation: zoomIn ease-in-out 1.5s 0.3s both;
}

#hero .glide__slide .content {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
}
#hero .owl-item.active .content {
	animation: fadeInUp ease-in-out 1.5s 0.3s both;
}

#hero .glide__slide figure.maguey {
    width: 15rem;
    align-self: center;
}

#hero .glide__slide figure.maguey img {
    object-fit: contain;
}

#hero .glide__slide p {
    width: 60rem;
    max-width: 100%;
    color: rgba(242, 244, 251, 1);
}

#hero .glide__bullet {
    background-color: white;
}

#hero .glide__bullet--active {
    background-color: var(--main) !important;
}

#hero .dog__counter {
    background-color: var(--main-color);
    position: absolute;
    right: 0;
    top: 30rem;
    width: 20rem;
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
    color: black;
}

/* HERO  */

.portaOwl {
	width: 100%;
	max-width: 100vw;
	overflow: hidden;
	position: relative;
}
#owl,
#owl2 {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
#owl.owl-carousel {
	width: 100%;
	margin: 0 auto;
	position:relative;
	display:block;
	z-index: 3;
	cursor: grab;
}
#owl.owl-carousel:active {
	cursor: grabbing;
}
#owl.owl-carousel div {
	float:left;
}
#owl.owl-carousel .item {
	width: 100%;
	height:100vh;
	position: relative;
	overflow: hidden;
	background: none;
	z-index: 1;
}
#owl.owl-carousel .item .imagen {
	width: 100%;
	height:100%;
	position: relative;
}
#owl.owl-carousel .item .imagen::after {
	content: '';
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        linear-gradient(0deg, rgba(156, 163, 224, 0.2), rgba(156, 163, 224, 0.2));
	z-index: 1;
}
#owl.owl-carousel .owl-item.active .imagen {
	animation: show ease-in-out 1.5s 0.3s both;
}
.imagen {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
	z-index: 1;
}
#owl.owl-carousel .item .imagen {
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	order: 1;
}
#owl.owl-carousel .item .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: -1;
}
#owl.owl-carousel .item main {
	display: flex;
    flex-direction: column;
    row-gap: 5rem;
	position: absolute;
	top: calc(50% - 120px);
	padding:0 8rem;
	z-index: 3;
}
#owl.owl-carousel .owl-item.active main {
	animation: fadeIn ease-in-out 1.5s 0.9s both;
}
#owl.owl-carousel .item main h1,
#owl.owl-carousel .item main p {
	width: 100%;
	max-width: 50vw;
	color: white;
}

#carrusel2 {
	margin: 4rem 0;
	overflow: hidden;
}
#owl2.owl-carousel {
	width: 100%;
	margin: 0 auto;
	position:relative;
	display:block;
	z-index: 3;
}
#owl2.owl-carousel div {
	float:left;
}
#owl2.owl-carousel .item {
	width: calc(100% - -1rem);
	position: relative;
	background: none;
	z-index: 1;
}
#owl2.owl-carousel .owl-item.active figure {
	animation: zoomIn ease-in-out 1.5s 0.3s both;
}
#owl2.owl-carousel .owl-item.active h5,
#owl2.owl-carousel .owl-item.active p {
	animation: fadeIn ease-in-out 1.5s 0.3s both;
}
#owl2.owl-carousel .owl-item.active .equipo > a {
	animation: fadeInUp ease-in-out 1.5s 0.6s both;
}

.owl-dots {
	width: 100%;
	height:0;
	text-align: center;
	position: relative;
	transform: translateY(-54px);
	z-index: 9;
}
#owl2 .owl-dots,
#owl2 .owl-prev,
#owl2 .owl-next {
	display: none;
}
.owl-dots .owl-dot {
	width: 15px;
	height:15px;
	border-radius: 50% !important;
	background: rgba(255,255,255,0.7);
	position: relative;
	margin: 0 18px 0 0;
	border: none;
	cursor: pointer !important;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot.active {
	background: var(--main);
}
.owl-dots .owl-dot:hover {
	background: rgba(255,255,255,1);
}

.portaOwl .nav {
	position: absolute;
	left: 50%;
	bottom:0;
	transform: translateX(-50%);
	display: flex;
	justify-content: flex-end;
	z-index: 9;
}
.portaOwl .nav button {
	width: 60px;
	height:60px;
	position: relative;
	background: var(--azulClaro);
	opacity: 0.7;
}
.portaOwl .nav button:hover {
	opacity: 1;
}
.portaOwl .nav button span {
	font-size: 1.5em;
	color: white;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}


/* PROD  */

#prod {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.container {
	overflow-y: hidden !important;
}
.container.esp {
	overflow-y: visible !important;
}
#prod .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

#prod .container .first {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-basis: 60rem;
    flex-grow: 1;
}

#prod .container .first .top, #prod .container .first .bottom {
    flex-basis: 100%;

}

#prod .container .first .bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#prod .container .first .top a {
    aspect-ratio: 1;
    max-height: 30rem;
}

#prod .container .first .bottom a {
    flex-basis: 25rem;
    aspect-ratio: 1;
    max-height: 30rem;
    flex-grow: 1;
}

#prod .container>div>div>a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background-color: rgba(245, 245, 245, 1);
}

#prod .container>div>div>a .producto {
    width: 100%;
    height: 100%;
}

#prod .container>div>div>a .text-box {
    position: absolute;
    left: 2rem;
    bottom: 4rem;
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    width: fit-content;
}

#prod .container>div>div>a .text-box h4 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    max-width: 27rem;
    word-break: break-all;
}

#prod .container>div>div>a .text-box p {
    font-size: 1.5rem;
    color: var(--text);
    margin-top: 1rem;
}

#prod .container>div>div>a figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#prod .container a img {
    transition: all 0.3s ease-in-out;
    /* object-fit: fill; */
    object-position: top center;
}

#prod .container a:hover img {
    transform: scale(1.1);
}


#prod .container .second {
    flex-basis: 60rem;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 1rem;
}

#prod .container .second .left, #prod .container .second .right {
    flex-basis: 25rem;
    flex-grow: 1;
}

#prod .container .second .left {
    min-height: 30rem;
}

#prod .container .second .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 61rem;
}

#prod .container .second .right a {
    width: 100%;
    height: 30rem;
}

/* PROD  */

/* SERVICES  */

#servicios {
    margin-top: 10rem;
}

#servicios .container {
    width: var(--width);
    margin: var(--center);
    display: flex;
    flex-wrap: wrap;
    column-gap: 5rem;
    row-gap: 4rem
}

#servicios .container .left, #servicios .container .right {
    flex-basis: 50rem;
    flex-grow: 1;
}

#servicios .container .left figure {
    height: 50rem;
}

#servicios .container .right figure {
    height: 35rem;
    width: 100%;
    margin-top: 10rem;
    margin-left: -15rem;
}

#servicios .container .right {
    margin-top: 10rem;
}

#servicios .container .right h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#servicios .container .right p {
    margin-bottom: 5rem;
    font-size: 1.8rem;
}

#servicios .container .right ul {
    list-style: inside;
    font-size: 1.8rem;
} 

/* SERVICES  */


/* US  */

#us {
    padding: var(--padding);
    background: rgba(49, 49, 49, 1);
    background-size: cover;
    display: flex;
    flex-direction: column;
    margin-top: 10rem;
    padding-bottom: 10rem;
}

#us p {
    color: white;
}

#us h2 {
    font-size: 3rem;
    font-weight: 500;
    text-align: left;
    color: white;
}

#us .top, #us .bottom {
    display: flex;
    flex-wrap: wrap;
}

#us .top {
    column-gap: 8rem;
    row-gap: 5rem;
    margin: 10rem 0;
}

#us .top .left, #us .top .right {
    flex-basis: 50rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    /* align-items: center; */
    justify-content: center;
    height: fit-content;
    height: 50rem;
}


#us .top .right figure {
    height: 100%;
    width: 100%;
}

#us .bottom {
    column-gap: 3rem;
    row-gap: 5rem;
}

#us .bottom .left {
    flex-basis: 70rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

#us .bottom .right {
    flex-basis: 50rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

#us .bottom h2 {
    font-size: 2.6rem;
    text-align: center;
    color: white;
}

#us .bottom .right figure {
    height: calc(100% - 22rem);
}
/* US  */

/* CLIENTES  */

#clientes {
    padding: var(--padding);
    margin-top: 10rem;
    margin-bottom: 10rem;
}

#clientes h2 {
    text-align: center;
    margin-bottom: 5rem;
}

#clientes .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 5rem;
    row-gap: 4rem;
}

#clientes .container img {
    object-fit: contain !important;
}

/* CLIENTES  */

/* PRODUCTS  */

#mas-vendidos {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#mas-vendidos .slider__buttons {
    display: flex;
    align-items: center;   
    column-gap: 1rem;
    width: fit-content;
    margin-left: auto;
}

.slide__button--left, .slide__button--right {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(137, 146, 156, 1);
    color: rgba(137, 146, 156, 1);
    border-radius: 10rem;
    cursor: pointer;
}

#mas-vendidos .container {
    width: 100%;
    overflow-x: auto;
    position: relative;
    padding-top: 5rem;

}

#mas-vendidos .container::-webkit-scrollbar {
    width: 100% !important;
    height: 1rem !important;
}

#mas-vendidos .container::-webkit-scrollbar-track {
    background-color: rgba(249, 249, 249, 1) !important;
}

#mas-vendidos .container::-webkit-scrollbar-thumb {
    background-color: var(--main) !important;
}

#mas-vendidos .products__container {
    display: flex;
    padding-bottom: 1rem;
    gap: 1rem;
    width: fit-content;
}

.equipo {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	gap: 2rem;
}

.prd {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.prd .equipo {
	width: calc(33.3% - 2rem);
	animation: fadeInUp 0.6s ease-out;
}

.equipo figure {
    width: 100%;
    height: 70%;
    background-color: rgba(245, 245, 245, 1);
    overflow: hidden;
}

.equipo figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}

.equipo figure:hover img {
    transform: scale(1.1);
}

.equipo h5 {
    font-size: 1.8rem;
    padding: 0 0.5rem;
    color: var(--text);
}

.equipo p {
    font-size: 1.4rem;
    color: var(--text2);
    padding: 0 0.5rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.equipo > a, .equipo p.more {
    font-size: 1.8rem;
    color: var(--main);
    padding: 0 0.5rem;
    padding-bottom: 0.5rem;
}


#productos-hero {
    height: 65vh;
    position: relative;
    padding-top: 15vh;
    background: url('../img/background.png') no-repeat;
    background-size: cover;
	overflow: hidden;
}

#productos-hero figure.portada {
    height: 100%;
    width: 100%;
}

#productos-hero figure.portada::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        linear-gradient(0deg, rgba(156, 163, 224, 0.2), rgba(156, 163, 224, 0.2));
    position: absolute;
    top: 0;
    left: 0;
}

#productos-hero h2 {
    position: absolute;
    top: 50%;
    left: 8rem;
    color: white;
}


#productos {
    background: url('../img/background.png') no-repeat;
    background-size: cover;
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#proyectos.prd {
    background: url('../img/background.png') no-repeat;
    background-size: cover;
    margin-top: 0;
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;

}

#proyectos.prd h2 {
    font-size: 2.5rem;
    width: 100rem;
    max-width: 100%;
    margin: var(--center);
    margin-bottom: 4rem;
}

#productos .container {
    display: flex;
    /* flex-wrap: wrap; */
    column-gap: 3rem;
}

#productos>h3 {
    width: 120rem;
    max-width: 100%;
    font-size: 2.2rem;
    font-weight: 500;
    margin: var(--center);
}

.toggle__filters {
    width: 80rem;
    max-width: 100%;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    border-radius: 1rem;
    margin-bottom: 4rem;
    display: none;
}

.toggle__filters i {
    font-size: 4rem;
    color: white;
}

.products-search {
    display: flex;
    height: 5rem;
    background-color: white;
    width: 80rem;
    max-width: 100%;
    margin: var(--center);
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.products-search .input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.products-search .input i {
    font-size: 2rem;
    margin: 0 2rem;
}

.products-search .input input {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 1.8rem;
}

.price-input {
    display: flex;
    margin: 3rem 0 3.5rem;
    align-items: center;
    column-gap: 1rem;
    justify-content: space-between;
}

.price-input .separator p {
    color: rgba(139, 139, 139, 1);
    font-size: 3rem;
}

.price-input .field {
    height: 4rem;
    width: 12rem;
}

.price-input .field input {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 1px solid rgba(139, 139, 139, 1);
    color: rgba(139, 139, 139, 1);
    font-weight: 300 !important;
    padding: 0 1rem;
    text-align: left;
    background-color: transparent;
}

.slider {
    height: 0.6rem;
    background-color: rgb(221, 221, 221);
    border-radius: 10rem;
    position: relative;
}

.slider .progress {
    height: 0.6rem;
    background-color: rgba(51, 62, 75, 1);
    position: absolute;
    left: 25%;
    right: 25%;
    border-radius: 10rem;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    height: 0.6rem;
    top: 0rem;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;

}

.range-input input[type="range"]::-webkit-slider-thumb {
    height: 1.7rem;
    width: 1.7rem;
    background: rgba(51, 62, 75, 1);
    -webkit-appearance: none;
    border-radius: 10rem;
    pointer-events: auto;
}


.range-input input[type="range"]::-moz-range-thumb {
    height: 1.7rem;
    width: 1.7rem;
    border: none;
    background: rgba(51, 62, 75, 1);
    -moz-appearance: none;
    border-radius: 10rem;
    pointer-events: auto;
}


#productos .filters-menu {
    background-color: white;
    flex-basis: 30rem;
    height: fit-content;
    flex-grow: 0;
    position: -webkit-sticky;
  	position: sticky;
    top: 17vh;
}

#productos .micros {
    margin-top: 10rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

#productos .micros.prd {
    flex-basis: 40rem;
    flex-grow: 1;
    margin-top: 0;
    justify-content: flex-start;
}

#productos .filters-menu .top {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(51, 62, 75, 1);
    height: 8rem;
}

#productos .filters-menu .top h3 {
    color: white;
    font-size: 2rem;
}

#productos .filters-menu .filters {
    padding: 4rem 2rem;
}

#productos .filters-menu .filters h4 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(242, 242, 242, 1);
}

#productos .filters-menu label {
    font-size: 1.8rem;
    margin-left: 1rem;
    cursor: pointer;
}

#productos .filters-menu input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    margin: 1rem 0;
}

.filters .price {
    margin-top: 4rem;
}

/* PRODUCTS  */



/* CONTACT  */

#contacto {
    padding: var(--padding);
    padding-top: 20vh;
    padding-bottom: 10rem;
    border-top: 3px solid black;
}

#contacto h2 {
    margin-bottom: 10rem;
}
#contacto h2.alerta {
	color: var(--main);
}
#contacto h2.alerta big {
	display: block;
}


#contacto .container {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

#contacto .left {
    flex-basis: 50rem;
    flex-grow: 1;
}

#contacto .right {
    flex-basis: 50rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contacto .right a {
    color: var(--text);
    font-size: 2rem;
    display: block;
    margin: 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(155, 155, 155, 1);
    width: fit-content;
}

#contacto .right a i {
    color: var(--main);
}

#contacto form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 5rem;
}

#contacto input,
#contacto select {
    height: 5.5rem;
    text-indent: 1rem;
    font-size: 1.8rem;
    font-family: sans-serif;
    border: none;
    border-bottom: 2px solid rgba(155, 155, 155, 1);
    outline: none;
    flex-grow: 1;
}
#contacto select {
	padding:0;
	background: none;
	cursor: pointer;
}
#contacto input#name,
#contacto select {
    flex-basis: 100%;
}

#contacto textarea {
    height: 10rem;
    text-indent: 1rem;
    flex-basis: 100%;
    padding: 1rem;
    font-size: 1.8rem;
    font-family: sans-serif;
    border: none;
    border-bottom: 2px solid rgba(155, 155, 155, 1);
    outline: none;
    resize: none;
}

#contacto button {
    flex-basis: 100%;
    border: none;
}

::placeholder {
    font-size: 1.8rem;
    color: rgba(126, 126, 126, 1);
    font-family: sans-serif;
}

#contacto input:focus,
#contacto textarea:focus {
	border-color: var(--main);
}

form .button {
    color: white;
    border: 2px solid black;
    cursor: pointer;
}

.success-modal {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
    border-radius: 5rem;
    border: 2px solid black;
    width: 60rem;
    max-width: 90vw;
    height: 30rem;
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: none;
    z-index: 100;
}

.success-modal .check {
    width: 6rem;
    height: 6rem;
    border-radius: 100rem;
    background-color: rgba(136, 180, 73, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal .check i {
    color: white;
    font-size: 3rem;
}

/* CONTACT  */


/* FOOTER  */

footer {
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 1rem;
    background-color: rgba(49, 49, 49, 1);
}

footer h2 {
    width: fit-content;
    margin: var(--center);
}

footer > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 5rem;
    column-gap: 5rem;
}

footer > ul a, footer > ul li {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

footer .submenu li {
    margin: 1rem 0;
}

footer .submenu li a {
    font-size: 1.6rem;
    font-weight: 400;
}

footer .rrss {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
}


footer .submenu li a i {
    color: var(--main);
}

footer .rrss li {
    min-width: 3rem;
    max-width: 3rem;
    height: 3rem;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
}

footer .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 1rem;
    border-top: 1px solid white;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
}

footer .bottom p, footer .bottom a, footer .bottom .tyc a {
    font-size: 1.4rem;
    color: white;
}

footer .bottom .tyc {
    display: flex;
    column-gap: 4rem;
}

/* FOOTER  */


/* PERRITOS  */

#mascota #pet-slider {
    width: 100% !important;
    max-width: 50vw;
    height: 50rem !important;
    border-radius: 1rem !important;
}

#mascota #pet-slider .glide__track {
    height: 100% !important;
}

#mascota #pet-slider .glide__slides {
    height: 100% !important;
}

#mascota #pet-slider .glide__slide {
    height: 100% !important;
    width: 100rem;
    border: none !important;
    border-radius: 1rem;
}

#mascota #pet-slider .glide__slide figure {
    width: 100% !important;
    height: 100% !important;

}

#mascota #pet-slider .glide__slide figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 1rem;
    object-position: top;
}

#mascota #pet-slider .glide__bullets {
    bottom: -17rem;
    width: 100%;
    justify-content: space-evenly;
    align-items: flex-end;
}

#mascota #pet-slider .glide__bullet {
    width: 15rem !important;
    height: 15rem !important;
    aspect-ratio: 1 !important;
    border-radius: 0.5rem !important;
    overflow: hidden;
    border-color: black !important;
}

#mascota #pet-slider .glide__bullet img {
    transition: all 0.2s ease;
}

#mascota #pet-slider .glide__bullet--active img {
    transform: scale(1.1);
}

#mascota #pet-slider .glide__bullet--active {
    border-color: #F23434 !important;
}


/* PERRITOS  */


/* PRODUCTO  */

.product-slider img, #mascota #pet-slider.product-slider .glide__slide figure img {
    object-fit: contain;
}

#mascota #pet-slider.product-slider .glide__slide figure {
    background-color: white;
}

input[type="number"] {
    padding: 0.5rem 1rem;
    text-align: center;
    height: 5rem;
    outline: none;
    border: none;
    border-radius: 1rem;
    font-size: 2rem;
    width: 15rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    /* Elimina los botones de incremento y decremento en Chrome */
    appearance: none;
    /* Elimina los botones de incremento y decremento en otros navegadores */
}

.input-group {
    position: relative;
    width: fit-content;
}

.decrement {
    position: absolute;
    left: 0px;
    /* Ajusta la posición del botón de decremento a la izquierda */
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 3rem;
    font-size: 2.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.increment {
    position: absolute;
    right: 0;
    /* Ajusta la posición del botón de incremento a la derecha */
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 3rem;
    font-size: 2.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#mascota .container .buttons .button:first-child {
    background-color: rgba(255, 54, 54, 1);
    color: white !important;
}

#mascota .container .buttons .button:first-child:hover {
    background-color: rgba(255, 54, 54, 0.658);
}

#mascota .container .buttons .button:last-child {
    background-color: transparent;
}

#mascota .container .buttons .button:last-child:hover {
    background-color: white;
}

/* PRODUCTO  */

/* BUY PROCESS  */

#process {
    padding: var(--padding);
    padding-top: 15vh;
    background: url('../img/background.png');
    padding-bottom: 10rem;
}

#process .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

#process .container .left {
    flex-basis: 40rem;
    flex-grow: 3;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

#process .container .right {
    flex-basis: 40rem;
    flex-grow: 1;
    max-width: 100%;
}

.steps {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 5rem;
}

.steps i {
    margin-left: 1rem;
}

.steps p {
    color: rgb(135, 135, 135);
    font-weight: 600;
    display: flex;
}

.steps p.active {
    color: var(--green);
}

.cart__total {
    background-color: white;
    padding: 2rem;
}

.cart__total h2 {
    margin-bottom: 4rem;
}

#process .button {
    width: 100%;
    margin: 2rem 0;
}

.cart__total .cart__bottom p {
    margin-left: auto;
}

.cart__total h4 {
    font-size: 1.8rem;
}

.cart__total h3 {
    font-size: 2.2rem;
}

.gastos__envio {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: space-between;
}

.gastos__envio p {
    max-width: 50%;
}

.buying__cart {
    background-color: white;
    padding: 2rem;
}

.buying__cart .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.buying__cart .top h3 span {
    background-color: rgba(70, 196, 113, 1);
    min-width: 4rem;
    height: 4rem;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buying__cart .top h3 span i {
    color: white;
}

.confirmation__info {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.confirmation__info p:first-child {
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.6rem;
}

#process .buying__cart .conf {
    display: block;
}

#process .buying__cart .bottom.conf .button {
    width: 100%;
}

.buying__cart .top h3 {
    display: flex;
    align-items: center;
    column-gap: 2rem;
}

.buying__cart .top h3, .buying__cart .top p {
    font-size: 2.2rem;
    font-weight: 900;
}

.buying__cart .top.success-buy h3 {
    color: rgba(70, 196, 113, 1);
}

.buying__cart .product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 3rem;
    position: relative;
}

.buying__cart .product .input-group {
    border: 1px solid rgb(217, 217, 217);
    border-radius: 1rem;
    /* margin-top: 2rem; */
}

.buying__cart .product figure {
    width: 7rem;
    height: 10rem;
}

.buying__cart .product i {
    font-size: 1.8rem;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.buying__cart .product figure img {
    object-fit: contain;
}

.product__information h3 {
    font-size: 2.2rem;
    color: var(--green);
    font-weight: 900;
}

.product__information .product__name {
    font-size: 1.6rem;
    font-weight: 400;
}

.product__information p {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--green);
    margin: 1rem 0;
}

.product__information p.desc {
    font-size: 1.4rem;
    color: var(--text);
    margin: 0;
}

.product__information .product__information--container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    margin-top: 1rem;
    row-gap: 1rem;
}

.total__bill {
    width: fit-content;
    margin-left: auto;
    color: rgba(86, 189, 187, 1);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.back {
    font-size: 1.8rem;
    color: var(--green);
    margin-top: 4rem;
    display: block;
}

.back i {
    margin-right: 1rem;
}

.buying__cart .bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

#process .buying__cart .bottom .button {
    width: 50%;
}

#process .cart__products {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}

#process .cart__products--product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    column-gap: 2rem;
    margin-bottom: 2rem;
    row-gap: 0.5rem;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding-bottom: 0.5rem;
}

#process .cart__products--product figure {
    width: 10rem;
}

#process .cart__products--product h4 {
    font-size: 1.4rem;
}

#process .cart__products--product .cart__product--description p {
    font-size: 1.6rem;
    color: rgba(166, 166, 166, 1);
    max-width: 20rem;
}

#process .cart__products--product .cart__product--description {
    flex-grow: 1;
}

#process .cart__products--product .cart__product--description + p {
    flex-basis: 12rem;
}

.customer__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.customer__info a {
    margin-left: auto;
    font-size: 1.8rem;
    color: var(--green);
    text-decoration: underline;
}

.customer__info form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.customer__info form>a {
    flex-basis: 100%;
    font-size: 1.4rem;
}

.customer__info form>p {
    flex-basis: 100%;
    font-size: 1.6rem;
}

.customer__info form input[type="number"] {
    border-radius: 0;
}

.customer__info input, .customer__info select {
    height: 5rem;
    flex-basis: 30rem;
    flex-grow: 1;
    border: 1px solid rgb(217, 217, 217);
    text-align: left;
    text-indent: 1rem;
    padding: 0;
    font-size: 1.6rem;
    color: rgb(135, 135, 135);
    outline: none;
}

.customer__info input#name, .customer__info input#address, .customer__info input#interior {
    flex-basis: 100%;
}

.customer__info input#destinatario {
    flex-basis: calc(50% - 1rem);
    flex-grow: 0;
}

.customer__info input#store-data {
    height: 2rem;
    width: 2rem;
    flex-basis: 2rem;
}

.customer__info .facturacion {
    flex-basis: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.customer__info .facturacion p {
    font-size: 1.6rem;
    flex-basis: 100%;
    margin-bottom: 2rem;
}

.customer__info .facturacion input {
    width: 2rem;
    height: 2rem;
    flex-basis: 2rem;
    flex-grow: 0;
    cursor: pointer;
}

.customer__info .facturacion label {
    font-size: 1.6rem;
    margin-right: 2rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.inputfile  {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    display: flex;
    align-items: center;
    flex-basis: 100%;
    padding: 0 1rem;
    height: 5rem;
    font-weight: 400;
    color: rgb(135, 135, 135);
    cursor: pointer;
    border: 1px solid rgb(217, 217, 217);
    font-size: 1.6rem;
    position: relative;
}

.inputfile:focus + label, .inputfile + label:hover, .inputfile + label.dragover {
    background-color: rgb(221, 221, 221);
}

.inputfile + label span {
    background-color: var(--main);
    width: 10rem;
    height: 100%;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

label.uso-cfdi {
    flex-basis: 100%;
    font-size: 1.6rem;
}

.store-data {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    column-gap: 1rem;
}

.customer__info input::placeholder {
    font-size: 1.6rem;
}

.payment .option {
    display: flex;
    column-gap: 1rem;
}

.payment .option label {
    font-size: 1.8rem;
    color: rgb(94, 94, 94);
    font-weight: 400;
    cursor: pointer;
}

.payment .logos {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    max-width: fit-content;
}

.payment figure {
    height: 4rem;
}


.payment figure img {
    object-fit: contain;
}

.payment__method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid rgb(204, 204, 204);
    min-height: 6rem;
    margin: 2rem 0;
    column-gap: 4rem;
}

.payment__method input[type="radio"] {
    min-width: 2rem;
    cursor: pointer;
}

.total__payment {
    font-weight: 600;
    color: var(--green);
}

/* BUY PROCESS  */

.cart__modal {
    background-color: rgba(44, 44, 44, 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.cart__modal--container {
    background-color: white;
    width: 55rem;
    max-width: 100%;
    padding: 3rem 4rem;
    /* border-radius: 1rem; */
    margin-left: auto;
    margin-top: 50vh;
    transform: translateY(-50%);
    position: relative;
    min-height: 60rem;
}

.cart__modal--container .top {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
}

.subtotal, .total, .entrega {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

#process .total {
    border-top: 1px solid rgba(217, 217, 217, 1);
}

.costos {
    border-top: 2px solid black;
    padding-top: 1rem;
}

.cart__modal h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(1, 49, 61);
}

.cart__modal h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgb(1, 49, 61);
}

.cart__modal p {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgb(1, 49, 61);
}

.cart__modal h2 {
    font-size: 2.5rem;
}

.cart__modal .button {
    width: 100%;
    margin-bottom: 2rem;
}

.cart__bottom {
    display: flex;
    justify-content: space-between;
}

.cart__bottom a {
    color: rgb(1, 49, 61);
    font-size: 1.6rem;
}

.cart__bottom i {
    margin-right: 1rem;
}


.cart__modal .products {
    min-height: 20rem;
    padding-top: 2rem;
    border-top: 2px solid black;
}

.close__modal {
    min-width: 3rem;
    height: 3rem;
    border-radius: 10rem;
    background-color: black;
    color: white;
    font-weight: 600;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* position: absolute;
    top: -2rem;
    left: -2rem; */
    cursor: pointer;
}

.cart__modal--container .product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    align-items: center;
    border-bottom: 1px solid rgb(217, 217, 217);
    padding-bottom: 0.5rem;
}

.product__info {
    display: flex;
    align-items: center;
    column-gap: 2rem;
    width: 100%;
    justify-content: space-between;
}

.product__info figure {
    width: 10rem;
    height: 10rem;
}

.product__info figure img {
    object-fit: contain;
}

.product__info h4 {
    font-size: 1.8rem;
}

.product__info .delete__product {
    font-size: 1.6rem;
    cursor: pointer;
}

/* PROYECTOS  */

#proyectos {
    margin-top: 15rem;
}

#projects-slider {
    height: 55rem !important;
}

#projects-slider .glide__slide {
    position: relative;
    padding: 0 !important;
    height: 55rem;
}

#projects-slider .glide__slide figure {
    height: 100%;
    overflow: hidden;
}

#projects-slider .glide__slide::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 0;
}

#projects-slider .glide__slide .content {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: -20%;
    height: 20%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

#projects-slider .glide__slide .content h3 {
    color: white;
    font-size: 1.6rem;
}

#projects-slider .glide__slide:hover .content {
    bottom: 0 !important;
}

#projects-slider .glide__slide img {
    transition: all 0.3s ease-in-out;
}

#projects-slider .glide__slide:hover img {
    transform: scale(1.1);
}

/* PROYECTOS  */


/* FAQS  */

#faqs {
    padding: var(--padding);
    padding-bottom: 10rem;
}

#faqs h2 {
    text-align: center;
    margin-bottom: 3rem;
}

#faqs .contenedor {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5rem;
}

#faqs .contenedor .texto {
    flex-basis: 40rem;
    flex-grow: 1;
}

#faqs .container {
    flex-basis: 50rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 10rem;
}

details {
    border-bottom: 2px solid rgba(51, 62, 75, 1);
}

details[open] i {
    transform: rotate(180deg);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

summary::marker {
    content: "";
    display: none;
}

details p {
    padding-bottom: 1rem;
}

/* FAQS  */



/* LOGIN Y REGISTRO  */

#login {
    background: url('../img/background.png');
    padding: var(--padding);
    padding-top: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10rem;
}

#login h1 {
    margin-top: 10rem;
    margin-bottom: 5rem;
    font-size: 3.5rem;
}

.login-links {
    display: flex;
    column-gap: 1rem;
    margin-top: 2rem;
}

.login-links figure {
    width: 6rem;
    height: 6rem;
}

#login form {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    width: 35rem;
    max-width: 100%;
}

#login form input {
    width: 100%;
    height: 5rem;
    text-indent: 1rem;
    border: 2px solid;
    font-size: 2rem;
    margin-bottom: 3rem;
    outline: none;
}

#login form input[type="email"] {
    margin-bottom: 3rem;
}

#login form a {
    margin-left: auto;
    font-size: 1.4rem;
    color: black;
}

#login form button {
    border: none;
    align-self: center;
    font-size: 1.8rem;
    font-weight: 500;
    width: 60%;
}

#login form {
    margin-bottom: 2rem;
}

#login>a {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 4rem;
}

.social-login p {
    font-size: 1.5rem;
    text-align: center;
}

/* LOGIN Y REGISTRO  */

#error {
    background: url('../img/background.png');
    padding: var(--padding);
    padding-top: 20vh;
    padding-bottom: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
}

#error h2 {
    font-size: 3.5rem;
}

#error h1 {
    font-size: 20rem;
}


.pb {
    height: 15vh;
    background: url('../img/background.png');
	
}

.topbar {
    background-color: rgba(51, 62, 75, 1);
    padding: var(--padding);
    display: flex;
    align-items: center;
}

.topbar .steps {
    display: flex;
    gap: 3rem;
}

.step, .step p, .step a {
    color: rgba(103, 103, 103, 1);
    font-size: 1.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.step.active, .step.active p, .step.active a {
    color: rgba(103, 103, 103, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
}
.step p,
.step a:hover {
	color: var(--main);
}

.topbar.topbar-producto {
    background-color: transparent;
}

#product {
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
    background: url('../img/background.png');
}

#product .container {
    display: flex;
    column-gap: 3rem;
    align-items: center;
}

#product .side-gallery {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

#product .side-gallery figure {
    width: 15rem;
    height: 17rem;
    border: 1px solid var(--main);
    overflow: hidden;
    cursor: pointer;
}

#product .side-gallery figure img {
    transition: all 0.3s ease-in-out;
}

#product .side-gallery figure:hover img {
    transform: scale(1.1);
}

#product .side-gallery figure.active {
    border: 2px solid var(--main);
}

#product .product-image {
    height: 60rem;
    width: 50rem;
    position: relative;
    overflow: hidden;
}

#product .product-image figure {
    height: 100%;
    width: 100%;
    z-index: 1;
}

#product .product__image--zoom {
    position: absolute;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 20;
    display: none;
}

#product .product__image--zoom figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: white;
}

#product .product__image--zoom figure img {
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}


#product .product-info {
    height: 60rem;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    flex-basis: 60rem;
    flex-grow: 1;
    position: relative;
}
.product-info h2 {
	font-size: 4rem;
}

.product-info p.desc {
    margin-top: 5rem;
    margin-bottom: 2rem;
    color: var(--text2);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.product-info .adder .input-group {
    border: 1px solid rgba(217, 217, 217, 1) !important;
    margin-top: 0.5rem;
}

.product__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 8rem;
}

#products.producto {
    background: url('../img/background.png');
    padding: var(--padding);
    padding-top: 20rem;
    padding-bottom: 10rem;
}

.product__slider {
    flex-basis: 50rem;
    flex-grow: 1;
    max-width: 100%;
    height: 50rem;
    display: none;
}

.product__slider #product-slider {
    max-width: 100%;
    height: 100% !important;
}

.product__slider #product-slider .glide__track {
    height: 100% !important;
}

.product__slider #product-slider .glide__track .glide__slides {
    height: 100% !important;
}

.product__slider #product-slider li {
    height: 100%;
}

.product__slider #product-slider li figure {
    height: 100%;
}

#product-specs {
    padding: var(--padding);
    margin-bottom: 10rem;
}

#product-specs h2 {
    font-size: 2.5rem;
    margin-bottom: 5rem;
}

#product-specs ul {
    list-style: disc;
}

#product-specs li {
    font-size: 2rem;
    color: var(--text);
    margin: 1rem 0;
}



@media screen and (max-width: 1380px) {
    #products .products-container, #perritos .perritos-container {
        flex-basis: 75rem;
        margin-left: auto;
    }
}

@media screen and (max-width: 850px) {

    :root {
        --width: calc(100% - 4rem);
        --padding: 0rem 2rem;
    }

    #product .side-gallery {
        align-self: self-start;
    }

    #product .side-gallery figure {
        width: 6rem;
        height: 6rem;
    }

    #servicios .container .right figure {
        margin-left: 0;
    }
}

@media screen and (max-width: 769px) {

    header .menu2 {
        align-items: center;
        column-gap: 1rem;
        height: 100%;
		display: none; /* flex */
    }

    .menu2 li>a, .menu2 li>p {
        font-size: 3rem;
        color: var(--main);
        font-weight: 600;
        transition: all 0.3s linear;
        position: relative;
        cursor: pointer;
        font-family: 'hatton', sans-serif;
    }

    .menu2>li {
        position: relative;
        height: fit-content;
        display: flex;
        align-items: center;
        width: fit-content;
    }

    .menu2>li.profile, .menu2>li.shop-cart2 {
        position: relative;
    }

    .menu2 .number__of--articles {
        background-color: red;
        color: white !important;
        border-radius: 10rem;
        min-width: 1.5rem;
        height: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem !important;
        position: absolute;
        top: calc(50% - 2rem);
        right: -0.5rem;
    }

    header nav .menu2>li.profile2 .profile-menu2 {
        padding: 1rem;
        border-radius: 1rem;
        background-color: var(--main);
        display: flex;
        flex-direction: column;
        row-gap: 1rem;
        align-items: center;
        justify-content: center;
        position: absolute;
        min-width: 20rem;
        top: 110%;
        right: 0;
        transition: all 0.3s ease-in-out;
        display: none;
    }

    header nav .menu2>li.profile2 .profile-menu2.active {
        display: flex;
    }

    header nav .menu2>li.profile2 .profile-menu2 li {
        width: 100%;
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
    }

    header nav .menu2>li.profile2 .profile-menu2 a {
        font-size: 1.8rem;
        color: var(--secondary);
        font-weight: 600;
        text-align: center;
        width: 100%;
        display: block;
    }

    header nav .menu2>li.profile2 .profile-menu2 li:hover {
        background-color: var(--secondary);
    }

    header nav .menu2>li.profile2 .profile-menu2 li:hover a {
        color: var(--main);
    }

    header .menu {
        position: absolute;
        top: 100%;
        background-color: white;
        width: 100vw;
        left: -2rem;
        display: flex;
        flex-direction: column;
        display: none;
        height: fit-content;
    }

    .globe, .search, .profile, .shop-cart {
        display: none !important;
    }

    header .menu li {
        text-align: center;
        margin: 2rem 0;
    }

    header nav>a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav>a:last-child {
        display: block;
    }

    header nav .menu__button {
        display: block;
        font-size: 3rem;
        color: var(--main);
        transition: all 0.5s ease-in-out;
    }

    .bars {
        display: block;
    }

    #hero {
        background-size: fill;
        background-position: right;
    }

    #us .container {
        row-gap: 4rem;
    }

    #us .container .left {
        margin-bottom: 0;
        min-height: 40rem;
    }

    #us .container .left figure {
        min-height: 40rem;
    }

    #us .container .left figure img {
        min-height: 40rem;
    }

    #mascota #pet-slider {
        width: 100% !important;
        max-width: calc(100vw - 4rem);
        height: 50rem !important;
        border-radius: 1rem !important;
    }

    #us .bottom h2 {
        margin: 0;
        max-width: 100%;
    }

    #nosotros .top-mobile {
        display: flex;
    }

    #nosotros .top {
        display: none;
    }

}

@media screen and (max-width: 550px) {

    #hero .glide__slide .content {
        margin-top: -20rem;
    }

    #hero h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    #us .bottom h2 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    #hero p {
        font-size: 1.8rem;
    }

    #hero .dog__counter {
        top: 11rem;
    }

    #hero .glide__slide {
        padding-top: 12rem;
    }

    #us .bottom .left {
        height: fit-content;
    }

    .close__modal {
        top: 0;
        left: 0;
    }

    #products .product {
        flex-grow: 1;
    }


    #products.producto h2 {
        font-size: 2.2rem;
    }

    #product .container {
        flex-wrap: wrap;
        row-gap: 4rem;
    }

    #product .side-gallery, #product .product-image {
        display: none;
    }

    .product__slider {
        display: block;
    }

    .product__buttons {
        margin-top: 0;
    }

    #products.producto {
        padding-top: 10rem;
    }

    #alianzas p {
        margin-bottom: 5rem;
    }

    #experience .container .left {
        flex-basis: auto;
    }

    #services .top {
        row-gap: 4rem;
    }

    #services .top .button__secondary {
        margin: var(--center);
    }

    #contact .left {
        height: 30rem;
    }

    footer .middle {
        flex-direction: column;
    }

    #services .container .service:nth-child(2) p {
        font-size: 1.2rem;
    }

    .mezcales .mezcal {
        flex-grow: 1;
    }

    #projects-slider .glide__slide .content {
        width: 80%;
    }

    footer .bottom {
        margin-top: 2rem;
    }

    .products-search .button {
        min-width: 10rem;
    }

    #productos .container {
        position: relative;
    }

	.container.esp {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		margin: 0 auto;
	}
	#productos .filters-menu {
		padding:2rem 0 0;
	}
	#productos .filters-menu label {
		font-size: 1.2rem;
		margin-left: 1rem;
	}
	#productos .filters-menu input[type="checkbox"] {
		width: 1.3rem;
		height:1.3rem;
		cursor: pointer;
		margin: 1rem 0;
	}
	#productos .filters-menu .filters {
		width: calc(100% + 4rem);
		padding: 2rem 0;
		background: white;
	}
	.filters .price {
		margin-top: 1rem;
	}
	.filters .size {
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.filters .size > h4 {
		width: 100%;
	}
	.filters .size > div {
		width: calc(50% - 1rem);
	}
	
    #productos .filters-menu {
		width: 100%;
        z-index: 10;
        top: 0;
    }

    .toggle__filters {
        display: flex;
        cursor: pointer;
    }

    footer > ul {
        flex-direction: column;
    }

    footer .rrss {
        justify-content: left;
    }

    #product-specs h2 {
        font-size: 2.2rem;
    }
	
	.prd {
		justify-content: space-between;
		gap: 2rem 0;
	}
	.prd .equipo {
		width: calc(50% - 1.5rem);
	}

}



@keyframes showMenu {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes hideMenu {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}


@keyframes appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(-0.5rem);
    }

    50% {
        transform: translateY(1rem);
    }

    100% {
        transform: translateY(-0.5rem);
    }

}

@keyframes modalOut {
    20% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }
}