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

.wow {
    animation-duration: 1s !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: 'Rexton Extra Bold';
    src: url('../fonts/rexton.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(204, 195, 178, 1);
    --secondary: rgba(115, 106, 90, 1);
    --text: rgba(51, 62, 75, 1);
}

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

p, a, span, li {
    font-family: Poppins, 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: var(--text);
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

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

.button__secondary {
    min-width: 15rem;
    width: fit-content;
    min-height: 5rem;
    padding: 1rem 2rem;
    background-color: rgba(187, 203, 201, 1);
    color: var(--text);
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.button__secondary:hover {
    background-color: rgba(162, 176, 175, 0.848);
}

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

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

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

header nav .menu__button {
    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: white;
    font-weight: 400;
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
    font-family: 'hatton', sans-serif;
}

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

.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;
    display: none;
}

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

header nav .menu>li.profile .profile-menu {
    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: 15rem;
    top: 110%;
    right: 0;
    transition: all 0.3s ease-in-out;
    display: none;
}

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(--secondary);
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
}

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

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

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

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

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

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

#nosotros .socials a {
    color: black;
    font-size: 1.6rem;
}

#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 .glide__slide .content {
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
}

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

.dog__counter .container {
    position: relative;
    padding: 2rem;
    padding-top: 4rem;
}

.dog__counter .container figure {
    width: 4rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.dog__counter .container p {
    font-size: 2.4rem;
    font-weight: 600;
}

.dog__counter .container h2 {
    font-size: 7rem;
    font-family: 'Inter';
    font-style: italic;
}

/* HERO  */


/* SERVICES  */

#services {
    margin-bottom: 10rem;
}

#services .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: var(--padding);
}

#services .container .service {
    flex-basis: 40rem;
    height: 50rem;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    max-width: 100%;
    background-color: white;
    padding-bottom: 2rem;
    overflow: hidden;
    border-radius: 1rem;
}

#services .container .service figure {
    width: 100%;
    height: 45%;
}

#services .container .service h4 {
    font-size: 2rem;
    font-weight: 600;
    color: black;
    width: fit-content;
    margin-left: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 4px solid rgba(111, 216, 243, 1);
}

#services .container .service p {
    color: rgba(140, 140, 140, 1);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--green);
    padding: 0 2rem;
}

#services .container .service .button {
    margin-left: auto;
    margin-right: 2rem;
}

/* SERVICES  */




.maguey-black {
    width: 10rem;
}

.maguey-black img {
    object-fit: contain;
}

/* US  */

#us {
    padding: var(--padding);
    background: url('../img/background.png') no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    row-gap: 15rem;
}

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

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

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

#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: 70rem;
}

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

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

#us .bottom .left {
    flex-basis: 50rem;
    flex-grow: 3;
    height: 64rem;
}

#us .bottom .right {
    flex-basis: 40rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    height: 64rem;
}

#us .bottom h2 {
    font-size: 2.6rem;
    text-align: left;
    margin-left: -15rem;
    margin-top: -5rem;
}

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

#hero.nosotros {
    height: 50vh;
}

#hero.nosotros figure {
    height: 99%;
    width: 100%;
}

#nosotros {
    padding: var(--padding);
    background: url('../img/background-rasgada.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 25rem;
    margin-top: -15rem;
    position: relative;
    padding-bottom: 10rem;
}

#nosotros .top {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    padding: 1rem 0;
}

#nosotros .top-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    display: none;
}

#nosotros .top-mobile hr {
    height: 1px;
    border: 1px solid;
    width: 100%;
}

#nosotros .top hr {
    min-height: 6rem;
    width: 1px;
    border: 1px solid;
}

#nosotros .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-top: 5rem;
}

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

#nosotros .right img {
    max-height: 50rem;
}

#nosotros p {
    font-size: 2.5rem;
}




#proposito {
    background-color: rgba(51, 62, 75, 1);
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#proposito h2 {
    color: white;
    margin-bottom: 10rem;
}

#proposito p {
    color: white;
}

#proposito .container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10rem;
    row-gap: 5rem;
    align-items: center;
}

#proposito .left {
    flex-basis: 50rem;
    max-width: 100%;
    display: flex;
    gap: 3rem;
    height: 50rem;
}

#proposito .left .first, #proposito .left .second {
    height: 100%;
}

#proposito .left .first figure {
    height: 100%;
}

#proposito .left .first figure img {
    height: 100%;
}

#proposito .right {
    flex-basis: 50rem;
    flex-grow: 1;
    max-width: 100%;
}

#proposito .left .second {
    height: 100%;
    flex-basis: 23rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

#proposito .left .second figure {
    width: 100%;
    height: calc(50% - 1.5rem);
}


/* US  */

.banner {
    background: linear-gradient(rgba(51, 62, 75, 0.6), rgba(51, 62, 75, 0.6)), url('../img/banner-bg.png');
    background-position: center;
    padding: var(--padding);
    padding-top: 10rem;
    padding-bottom: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5rem;
}

.banner h2 {
    font-size: 3rem;
    font-weight: 500;
    color: white;
}

.banner h3 {
    font-size: 2.4rem;
    font-weight: 500;
    color: white;
}

.paper-container {
    background: url('../img/background-rasgada.png');
    min-height: 100vh;
    margin-top: -22rem;
    padding: var(--padding);
}


/* PRODUCTS  */

#products {
    padding-top: 25rem;
    padding-bottom: 10rem;
}

#products h2 {
    color: rgba(51, 62, 75, 1);
    text-align: center;
    width: 120rem;
    max-width: 100%;
    margin: var(--center);
}

#products .maguey-black {
    margin: var(--center);
    margin-bottom: 5rem;
}

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

}

.mezcal {
    background-color: rgba(243, 240, 233, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 30rem;
    row-gap: 2rem;
    padding-top: 5rem;
    width: 100%;
}

.mezcal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
    width: 100%;
}

.mezcal figure {
    width: 10rem;
    filter: drop-shadow(2.5rem 1rem 1rem rgba(0, 0, 0, 0.2));
}

.mezcal h4 {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(51, 62, 75, 1);
}

.mezcal .mezcal-description {
    color: rgba(166, 166, 166, 1);
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0 2rem;
}

.mezcal .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(51, 62, 75, 1);
}

.mezcal .button {
    width: 100%;
}

#products>a {
    font-size: 2rem;
    color: rgba(51, 62, 75, 1);
    font-weight: 600;
    display: block;
    margin-top: 5rem;
    width: fit-content;
    margin-left: auto;
}


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

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

#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 figure.icono {
    width: 15rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-30%);
}

#productos-hero .socials {
    position: absolute;
    right: 2rem;
    top: 50%;
}

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

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


#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: rgba(243, 240, 233, 1);
    flex-basis: 30rem;
    height: fit-content;
    flex-grow: 0;
    position: sticky;
    top: 17vh;
}

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

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

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

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

/* PRODUCTS  */



/* CONTACT  */

#contacto {
    padding: var(--padding);
    padding-top: 5rem;
    padding-bottom: 10rem;
    background: url('../img/background-rasgada.png');
    background-position: top;
    margin-top: -20rem;
    position: relative;
    z-index: 1;
    padding-top: 25rem;
}

#contacto h2 {
    color: white;
    margin-bottom: 6rem;
}

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

#contacto .container a, #contacto .container p {
    display: flex;
    color: black;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2rem 0;
    align-items: center;
    text-decoration: underline;
}

#contacto .container a i, #contacto .container p i {
    margin-right: 1rem;
    color: black;
    font-size: 1.8rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#contacto .container .socials {
    display: flex;
}

#contacto .container .socials a {
    margin: 0;
}

#contacto .left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#contacto .right {
    width: 90rem;
    max-width: 100%;
    margin: var(--center);
}

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

#contacto input {
    height: 5.5rem;
    text-indent: 1rem;
    font-size: 1.8rem;
    font-family: sans-serif;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid black;
    outline: none;
}

#contacto textarea {
    height: 20rem;
    text-indent: 1rem;
    flex-basis: 100%;
    padding: 1rem;
    font-size: 1.8rem;
    font-family: sans-serif;
    border: 2px solid black;
    outline: none;
    resize: none;
    background-color: transparent;
}

#contacto input[type="text"] {
    flex-basis: 100%;
}

#contacto input[type="tel"], #contacto input[type="email"] {
    flex-basis: 25rem;
    flex-grow: 1;
}

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

form .button {
    color: black;
    border: none;
    cursor: pointer;
}

#contacto-page {
    display: flex;
    flex-wrap: wrap;
    padding-top: 15vh;
    background: linear-gradient(180deg, #FE655B 0%, #EBDA41 100%);
    padding-bottom: 15rem;
}

#contacto-page figure {
    flex-basis: 50rem;
    flex-grow: 1;
    min-height: 30rem;
}

#contacto-page #contacto {
    flex-basis: 50rem;
    flex-grow: 1;
    border: none;
    background: none;
}

#contacto-page #contacto button {
    background-color: rgba(255, 54, 54, 1);
    color: white !important;
}

.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(243, 240, 233, 1);
}

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

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

footer ul a {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(51, 62, 75, 1);
}

footer .sociales {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5rem;
}

footer .rrss {
    padding: 0;
    margin: 0;
}

footer .sociales hr {
    height: 2px;
    width: 40rem;
    color: rgba(198, 198, 198, 1);
}

footer .rrss li {
    min-width: 3rem;
    height: 3rem;
    border: 1px solid rgba(51, 62, 75, 1);
    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;
}

footer .bottom p, footer .bottom a {
    font-size: 1.4rem;
    color: rgba(51, 62, 75, 1);
}

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

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

.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;
    align-items: center;
    column-gap: 3rem;
}

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

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

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

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

.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;
    align-items: center;
    justify-content: left;
    column-gap: 2rem;
}

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

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

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

.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 {
    flex-basis: 100%;
}

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

.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.2rem;
    font-weight: 600;
    color: rgb(1, 49, 61);
}

.cart__modal h3 {
    font-size: 1.6rem;
    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: 5rem;
    height: 10rem;
}

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

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

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

#faqs .container {
    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;
    color: black;
    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 {
    height: 6rem;
    background-color: rgba(51, 62, 75, 1);
    padding: var(--padding);
    display: flex;
    align-items: center;
}

.topbar .steps {
    display: flex;
    column-gap: 1rem;
}

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

.step.active, .step.active p, .step.active a {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

#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(--secondary);
}

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

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


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

#product .stars {
    height: 2.5rem;
    width: fit-content;
}

#product .stars img {
    object-fit: contain;
}

.product-info p.desc {
    margin-top: 5rem;
    margin-bottom: 2rem;
}

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

@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;
    }
    
    #us .bottom h2 {
        margin: 0;
        max-width: 100%;
    }

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

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

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

    

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

    .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: rgba(115, 106, 90, 0.9);
        width: 100vw;
        left: -2rem;
        display: flex;
        flex-direction: column;
        display: none;
        height: fit-content;
    }

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

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

    #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.6rem;
    }

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

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

    #productos .filters-menu {
        display: none;
        position: absolute;
        z-index: 10;
        top: 0;
        box-shadow: 0px 1px 10px 0px black;
    }

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

}



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