:root {
    --white: #ffffff;
    --black: #000000;
    --light-gray: #a9dde0;
    --medium-gray: #d8d8d8;
    --dark-gray: #9b9b9b;
    --blue: #00BDC8;
    --yellow: #FFD52E;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    color: var(--black);
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.62rem;
    font-weight: 300;
    overflow: hidden;
    background-color: #fcfbfd;
    background-image: url(../../images/mascotas/MascotasDI-skin.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background 0.3s, color 0.3s;
}

img {
    width: 100%;
}

h1 {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

h2 {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

h3 {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-transform: uppercase;
}

h4 {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-transform: uppercase;
}

h5 {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-transform: uppercase;
}

h6 {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-transform: uppercase;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

select {
    outline-color: var(--blue);
}

strong {
    font-weight: bold;
}

p {
    width: auto;
    display: inline-block;
    margin: 10px 0px;
}

p a {
    text-decoration: underline;
    font-weight: 600;
    margin: 0px 0px 20px 0px;
    text-align: center;
}

p a:hover {
    text-decoration: underline;
}

b,
strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

li {
    /*list-style: disc;*/
    padding: 0;
    display: inline-block;
}

ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    margin: 0;
}

a {
    padding: 0px;
    color: var(--black);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    background-color: var(--blue);
    background-image: url(../../images/mascotas/bk-huellitas-blue.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    border: 6px solid #fcfbfd;
    border-radius: 20px;
    color: var(--white);
    margin: 10px 0 0 0;
}

section {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

header {
    width: -webkit-fill-available;
    width: -moz-available;
    /*height: 80px;*/
    border: 6px solid #fcfbfd;
    border-radius: 20px;
    display: inline-block;
    background-color: var(--yellow);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;

}

.skin-container {
    width: -webkit-fill-available;
    width: -moz-available;
    height: auto;
    display: inline-block;
    margin-top: 110px;
    position: relative;
    z-index: 0;
    background-color: #fcfbfd;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-radius: 50px;
}

.container {
    max-width: 1140px;
}

.headerMascotas nav {
    padding: 5px;
}

.ulNavMascotas {
    width: 100%;
    align-items: end;
    justify-content: end;
    display: flex;
    flex-direction: row;
    font-weight: 500;
}

.ulNavMascotas li {
    margin: 0 10px;
}

.ulNavMascotas li a {
    color: var(--black);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 15px;
    transition: .1s;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.nav-item a:hover {
    text-decoration: none;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 5px;
    bottom: 0;
    left: 0;
    border-radius: 50px;
    background-color: var(--blue);
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
}

.hover-underline-animation.center::after {
    transform-origin: bottom center;
}

.hover-underline-animation.center:hover::after {
    transform-origin: bottom center;
}

.ContVideoPMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
}

.Hero-Video-Mascotas {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.Hero-Video-Mascotas video {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    opacity: .6;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.Secc-Hero-Mascotas {
    width: 100%;
    height: 80vh;
    position: relative;
    z-index: 1;
    display: block;
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-info-text,
.hero-info-subtext {
    width: 100%;
    display: inline-block;
    padding: 0 40px;
}

.hero-info-text {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    font-family: "Nerko One", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
    line-height: 4rem;
    position: absolute;
    top: 40%;
    z-index: 2;
    color: #fff;
}

.contRedesMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 90px 0 0 0;
    text-align: center;
    background-color: #edeff1;
    padding: 30px 50px;
    border-radius: 20px;
}

.textRedesMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    font-family: "Nerko One", cursive;
    font-size: 2.7rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.contRedesMascotas img {
    transition: .3s;
}

.contRedesMascotas img:hover {
    font-family: "Nerko One", cursive;
    font-size: 2.7rem;
    font-weight: 500;
    transition: .3s;
    transform: scale(1.1) rotate(1deg);
}

.Secc-Blog-Mascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 5px 0 0 0;
}

.cont-BlogMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 80px 0 0 0;
    background-color: #EDEFF1;
    background-image: url(../../images/mascotas/bk-huellitas.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    border-radius: 20px;
}

.itemBlogMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 10px;
}

.imgBlogMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 216px;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBlogMascotas img {
    transition: .3s;
}

.imgBlogMascotas img:hover {
    transition: .3s;
    transform: scale(1.1) rotate(5deg);
}

.imgBig {
    height: 325px;
}

.TitBlog {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 113px;
    overflow: hidden;
    display: inline-block;
    margin: 10px 0 0 0;
    font-size: 1.24rem;
    line-height: 1.7rem;
    font-weight: 600;
    text-transform: initial;
}

.TitBig {
    height: 130px;
    font-size: 1.6rem;
    line-height: 2rem;
    padding-right: 70px;
}

.TxtBlog {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 230px;
    overflow: hidden;
    display: inline-block;
    margin: 7px 0 0 0;
}

.BlogMascotasSlider {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

.BlogMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}


/********BUSCADOR******/

.BuscadorPMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 30px 0;
    padding: 0 40px;
}

.cont-buscador {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

.SearchIcon {
    display: inline-block;
    margin-top: 1px;
    margin-left: 16px;
    float: right;
    font-size: 1.7rem;
    transition: 0.2s ease-in-out;
}

.SearchIcon a:hover {
    color: #ed4f05 !important;
    transition: 0.2s ease-in-out;
}

.SearchIcon a::before {
    content: inherit;
    position: inherit;
}

.SearchIcon a:hover::before {
    transform: none;
}

.BuscadorPMascotas form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.BuscadorPMascotas input {
    width: 35%;
    float: left;
    color: var(--black);
    padding: 8px;
    background-color: var(--white);
    border: none;
    border-bottom: 2px solid #000;
    border-radius: 10px;
    margin: 0 3px;
}

.BuscadorPMascotas input:focus {
    outline: none !important;
}

.BuscadorPMascotas select {
    width: 40%;
    float: left;
    padding: 9px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    margin: 0 3px;
}

.BuscadorPMascotas select {
    /* Ocultar la flecha original */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Usar una imagen de fondo para la flecha */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 36px;
    /* Ajusta el tamaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±o de la flecha */
}

.BuscadorPMascotas button {
    width: 130px;
    height: 46px;
    background-color: var(--blue);
    border: none;
    border-radius: 10px;
    float: left;
    color: #fff;
    font-weight: 500;
    padding: 7px 14px;
    margin: 0 3px;
    transition: .3s;
}

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

.BuscadorPMascotas .bi-search {
    font-size: 20px;
    float: left;
    transition: all 0.2s ease-out;
}

.BuscadorPMascotas .bi-search:hover {
    color: var(--black);
    cursor: pointer;
    transition: 0.2s ease-out;
}

.menuDesplegado {
    width: -webkit-fill-available;
    width: -moz-available;
    float: left;
    height: 100%;
    background: #f4f4f4;
    position: fixed;
    top: 0;
    display: none;
    z-index: 4;
    overflow-x: scroll;
}

.LogoDIMascotas {
    width: 150px;
}

::selection {
    background-color: var(--blue);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background-color: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: var(--yellow);
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--black);
}

.DisplayNone {
    display: none;
}

.ResultadosBusquedaM,
.TitSeccResultadosBusquedaM {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
}

.ResultadosBusquedaM {
    margin: 40px 0 10px 0;
}

.TitSeccResultadosBusquedaM {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 600;
    margin: 10px 0 50px 0;
}

.ResultadosMascotasSlider {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

.itemResultadosMascotas {
    margin: 10px;
}

.imgResultadosMascotas {
    height: 230px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.imgResultadosMascotas img {
    transition: .3s;
}

.imgResultadosMascotas img:hover {
    transform: scale(1.1) rotate(5deg);
}

.contTxtsResultadosMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 775px;
    display: inline-block;
    border: 1px solid #cccccc;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: left;
    padding: 20px 30px;
}

.TitResultadosMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 110px;
    overflow: hidden;
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: 600;
    text-transform: initial;
    margin: 0;
    margin-bottom: 10px;
}

.TxtResultadosMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 284px;
    overflow: hidden;
    display: inline-block;
    margin: 0px;
}

.infoResultadosMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 45px;
    overflow: hidden;
    display: inline-block;
    margin: 5px 0 0 0;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 500;
}

.infoResultadosMascotas i {
    float: left;
    margin-right: 6px;
    font-size: 1.7rem;
    color: #89afb2;
}

.infoResultadosMascotas svg {
    width: 23px;
    height: 27px;
    float: left;
    margin-right: 6px;
    color: #89afb2;
    fill: #89afb2;
}

.iconsdollar {
    width: auto;
    float: left;
    margin-right: 10px;
}

.iconsdollar i {
    width: 13px;
    font-size: 1.4rem;
    margin-right: 0;
}

.btnReserva {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
}

.btnReserva a {
    width: auto;
    display: inline-block;
    padding: 15px 25px;
    background-color: var(--blue);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 600;
    font-family: "Nerko One", cursive;
    margin: 10px 0;
    border-radius: 90px;
    transition: .5s ease;
}

.btnReserva a:hover {
    background-color: var(--black);
    transition: .5s ease;
    text-decoration: none;
}

.cont-Carusel-Destacados {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

.TxtVerMas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: right;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 0 20px;
}

.TxtVerMas a {
    color: var(--blue);
    text-decoration-line: underline;
    text-underline-position: under;
    border-radius: 90px;
    padding: 5px 10px;
    transition: .3s;
}

.TxtVerMas a:hover {
    text-decoration: none;
    color: var(--white);
    background-color: var(--blue);
    transition: .3s;
}

.ModuloImg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ModuloImg img {
    transition: transform .5s ease;
}

.ModuloImg img:hover {
    transform: scale(1.1) rotate(5deg);
}


.TituloSeccion {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    font-family: "Nerko One", cursive;
    font-size: 4rem;
    line-height: 4.2rem;
    font-weight: 400;
    font-style: normal;
    margin: 30px 0 0 0;
}

.TituloSeccion img {
    width: 160px;
    margin-top: 40px;
}

.cont-RestaurantesMascotas,
.cont-ViajesMascotas,
.cont-AgendaMascotas {
    margin: 50px 0 10px 0;
}

.btn-Mas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    border: none;
    background-color: transparent;
    cursor: none;
}

.btn-Mas a {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    background-color: var(--blue);
    color: var(--white);
    cursor: pointer;
    border-radius: 30px;
}

.colorAmarillo {
    color: var(--yellow);
    margin: 0;
}

.colorAzul {
    color: var(--blue);
    margin: 0;
}

.Secc-Explora-Mascotas {
    margin: 0 0 90px 0;
}

.cont-Explora {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin-top: 30px;
}

.colExplora {}

.itemExplora {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 330px;
    position: relative;
    z-index: 1;
    margin: 0 22px;
    text-align: center;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itemExplora a {
    width: 200px;
    height: 166px;
    display: inline-block;
    background-color: var(--light-gray);
    border-radius: 80px;
    margin-top: 103px;
}

.itemExplora a:hover {
    background-color: var(--yellow);
}

.itemExplora img {
    width: 160px;
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 10px;
    transition: .5s;
}

.img2 {
    bottom: 37px !important;
}

.img4 {
    bottom: 38px !important;
}

.itemExplora img:hover {
    transform: scale(1.1) rotate(5deg);
}

.ExploraCategoria {
    width: -webkit-fill-available;
    width: -moz-available;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    font-size: 1.1rem;
    background-color: #fcfbfd;
    padding: 10px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.DivAnim {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 110px;
    display: inline-block;
    margin-top: 90px;
    text-align: right;
}

.DivAnimIzq {
    text-align: left;
}

.DivAnim img {
    width: 100px;
}

.huellitas {
    animation: huellitas 8s ease-in-out infinite;
}

.huellitasDer {
    animation: huellitas 8s ease-in-out infinite;
    margin-right: 70px;
}

.huellitasIzq {
    animation: huellitas 8s ease-in-out infinite;
    margin-left: 70px;
}

@keyframes huellitas {
    0% {
        transform: translate(0px, 0px) rotate(0deg)
    }

    25% {
        transform: translate(40px, 40px) rotate(20deg)
    }

    50% {
        transform: translate(0px, 0px) rotate(0deg)
    }

    75% {
        transform: translate(40px, 40px) rotate(20deg)
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg)
    }
}

.AllBanners {
    width: -webkit-fill-available;
    width: -moz-available;
    display: flex;
    text-align: center;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.bkBanner {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    display: inline-block;
    background-image: url(../../images/mascotas/bk-huellitas-yellow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.bkBannerB {
    background-image: url(../../images/mascotas/bk-huellitas-blue.png);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}


.publicidad {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    padding: 35px 0px;
}

.box {
    width: 300px;
    margin: 0 auto;
}

.half {
    width: 300px;
    margin: 0 auto;
}

.leader-video-mascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.leader-video-cont {
    width: 270px;
    height: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.box-video-cont {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.Secc-Banner {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 30px 0;
    overflow: hidden;
}

.Secc-BannerOne {
    background-color: #f6e03a;
    border-radius: 20px;
}

.Secc-BannerTwo {
    background-color: #4bddd6;
    border-radius: 20px;
}

.BBD {
    overflow: hidden;
    height: 550px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.BBDvideo {
    width: auto;
    margin-left: -160px;
}

.box-video-mob {
    display: none;
}

.Secc-Restaurantes-Mascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 90px 0 0 0;
}

.Secc-Viajes-Mascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 90px 0 0 0;
}

.Secc-Agenda-Mascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 0 0 10px 0;
}

.cont-AgendaMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 10px 0 0 0;
}

.AgendaMascotas-Mes {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    margin: 30px 0 0 0;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.7rem;
}

.AgendaMascotas-Mes a {
    color: var(--blue);
}

.AgendaMascotas-Dia {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    padding: 2px 10px;
    background-color: #fcfbfd;
    border-radius: 15px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 400;
    box-shadow: 0px 2px 5px #00000091;
}

.DiaG {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    font-size: 2.3rem;
    font-weight: 700;
}

.AgendaMascotas-Lugar {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: var(--yellow);
    border-radius: 15px;
    font-size: 15px;
    font-weight: 600;
}

.itemAgendaMascotas {}

.imgAgendaMascotas {
    height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
}

.imgAgenda {
    width: 490px;
    opacity: .2;
    transition: .2s;
}

.cont-AgendaMascotas .card {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
    border: none;
    display: inline-block;
    background-color: #fcfbfd;
}

.cont-AgendaMascotas .card .slide {
    transition: 0.5s;
}

.cont-AgendaMascotas .card .slide.slide1 {
    width: -webkit-fill-available;
    width: -moz-available;
    position: absolute;
    z-index: 2;
    transition: .7s;
    transform: translateY(0px);
    background-color: #10838b;
}

.cont-AgendaMascotas .card:hover .slide.slide1 {
    transform: translateY(-100px);

    .imgAgenda {
        opacity: 1;
    }

    .TitAgendaAbsolute {
        display: none;
    }
}

.cont-AgendaMascotas .card .slide.slide2 {
    position: relative;
    box-sizing: border-box;
    transition: .8s;
    border: 1px solid #ccc;
    transform: translateY(-3px);
    box-shadow: 0 0 10px #ccc;
    padding: 20px;
    border-radius: 20px;
    background-color: #fcfbfd;
}

.cont-AgendaMascotas .card:hover .slide.slide2 {
    transform: translateY(250px);
    padding-bottom: 50px;
}

.cont-AgendaMascotas .card .slide.slide2 .iconDown {
    text-align: center;
    display: none;
}

.CursorHover {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
}

.CursorHover img {
    width: 50px !important;
}

.mt_logoFooter {
    width: 80px;
}

.TitAgenda {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 92px;
    overflow: hidden;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: initial;
}

.TitAgendaAbsolute {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 171px;
    overflow: hidden;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-weight: 600;
    margin: 0;
    padding: 0 20px;
    text-transform: initial;
    position: absolute;
    z-index: 2;
}

.TitAgendaAbsolute a {
    color: var(--white);
}

.TitAgenda i {
    margin-left: 5px;
    margin-bottom: 5px;
}

.TxtAgenda {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    font-size: 1rem;
    margin: 15px 0 5px 0;
}

.TxtAgenda a {
    color: var(--white);
    background-color: var(--blue);
    border-radius: 90px;
    padding: 10px;
    text-decoration: none;
    transition: .3s;
}

.TxtAgenda a:hover {
    background-color: var(--black);
    text-decoration: none;
    transition: .3s;
}

.InfoAgenda {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 5px 0 0 0;
    font-size: 0.91rem;
    line-height: 1.3rem;
}

.tabsPAgenda-Mascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    float: left;
    display: none;
    background-color: var(--blue);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-bottom: 8px;
}

.TituloSeccionAgenda-Mascotas {
    /*width: auto;
    float: left;*/
}

.mesAgendaMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    margin: 50px 0 0 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blue);
}

.ContInfoBtnCalendario {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 40px 0 0 0;
    padding: 0 20px;
}

.ContInfoBtnCalendario input {
    height: 0;
    width: 0px;
    border: 1px solid transparent;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.col-fecha-agendaMascotas {
    padding: 0 40px;
}

.nav-pillsAgendaMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
}

.CalendarioPicker {
    width: -webkit-fill-available;
    width: -moz-available;
    float: left;
    display: none;
    background-color: var(--blue);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding-bottom: 8px;
}

.BtnCalendarioPicker {
    width: -webkit-fill-available;
    width: -moz-available;
    float: right;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 90px;
    cursor: pointer;
    margin: 10px 0 0 0;
    text-align: center;
    font-weight: 400;
    background-color: var(--blue);
    transition: background-color .3s ease-in-out;
}

.BtnCalendarioPicker:hover {
    background-color: #000;
}

.nav-tabsCalendarioPicker {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    border: none;
}

.nav-tabsCalendarioPicker button {
    width: 40px;
    font-size: .9rem;
    float: left;
    padding: 5px 10px;
    color: var(--white);
    border: none !important;
    border-radius: 0 !important;
}

.nav-tabsCalendarioPicker button:hover {
    background-color: var(--white);
    border: none !important;
    border-radius: 0 !important;
    color: var(--blue);
}

.nav-tabs.nav-tabsCalendarioPicker .nav-link.active {
    color: var(--blue);
    background-color: var(--white);
    border-radius: 0px;
    padding: 4px 10px;
    margin: 0px;
    border: none;
}

.TabsAgendaMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    float: right;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 90px;
    cursor: pointer;
    margin: 0;
    text-align: center;
    background-color: var(--blue);
}

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

.TabsAgendaMascotas i {
    color: var(--white);
    margin-left: 5px;
}

.titContFiltro.titContFiltroAgendaMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    color: var(--blue);
    margin: 20px 0 25px 0;
}

.tab-content.tab-contentAgendaMascotas>.active {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: bold;
    margin: 0px;
}

.nav-item.filtro.nav-itemTabAgendaMascotas a {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 500;
    /* background-color: #2b525b; */
    padding: 7px 14px !important;
    border-radius: 0px;
    border-bottom: 1px solid #6dcdd3;
}

.nav-item.filtro.nav-itemTabAgendaMascotas a:hover {
    color: var(--blue);
    background-color: var(--white);
    text-decoration: none;
}

.tabsPAgenda-Mascotas ul li {
    width: -webkit-fill-available;
    width: -moz-available;
    background: transparent;
    margin: 0 5px;
}

.tabsPAgenda-Mascotas ul li h4 {
    font-size: 1rem;
    text-transform: inherit;
    letter-spacing: 0;
    margin: 0;
}

.nav-pills.nav-pillsAgendaMascotas .nav-link.active {
    color: var(--blue);
    background-color: var(--white);
    border-radius: 0px;
    padding: 4px 10px;
    margin: 0px;
}

.nav-pills.nav-pillsAgendaMascotas .show>.nav-link {
    color: #000;
    background-color: #fff;
    border-radius: 0px;
    padding: 4px 10px;
    margin: 0px;
}

/*.nav-pills.nav-pillsAgendaMascotas .nav-link.active:hover, .nav-pills.nav-pillsAgendaMascotas .show>.nav-link:hover {
    color: var(--black);
    background-color: var(--white);
}*/


.cont-AgendaMascotasHist {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 30px 0 90px 0;
}

.colAgendaMascotashist {
    width: 31.4%;
    float: left;
    margin: 10px;
}

.itemAgendaMascotashist {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    padding: 24px;
    background-color: #ecefef;
    border-radius: 20px;
}

.TxtAgendaMascotashist {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 6px;
}

.AgendaMascotas-Lugarhist {
    width: auto;
    float: right;
    background-color: var(--yellow);
    border-radius: 90px;
    padding: 4px 11px;
}

.AgendaMascotas-Diahist {
    width: auto;
    display: inline-block;
    border: 1px solid #000;
    border-radius: 15px;
    text-align: center;
    padding: 7px 8px;
}

.TitAgendahist {
    width: auto;
    height: 110px;
    overflow: hidden;
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: 600;
    text-transform: initial;
    margin: 0;
}

.TitAgendahist a {
    color: var(--blue);
}

.InfoAgendahist {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 130px;
    overflow: hidden;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.6rem;
    margin-top: 15px;
    font-weight: 300;
}

.TxtAgendahist {
    width: auto;
    display: inline-block;
}

.imgAgendaMascotashist {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.imgAgendaMascotashist img {
    width: 100%;
    opacity: 1;
    transition: .3s ease;
}

.imgAgendaMascotashist img:hover {
    transform: scale(1.1) rotate(5deg);
}

.cont-footer {
    position: relative;
    z-index: 1;
}

.logoFooterMascotas {
    width: 200px;
    display: inline-block;
}

.colNavFooterMascotas {
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: end;
}

.NavFooterMascotas {
    display: inline-block;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
}

.NavFooterMascotas a {
    color: var(--white);
}

.menuFooter li {
    margin: 0 10px;
}

.btnFooter {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 40px 0;
    text-align: center;
}

.btnReservaFooter {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    text-align: center;
    font-family: "Nerko One", cursive;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.btnReservaFooter a {
    width: auto;
    display: inline-block;
    text-align: center;
    background-color: var(--yellow);
    border-radius: 90px;
    padding: 18px 40px;
    text-decoration: none;
    transition: .3s;
}

.btnReservaFooter a:hover {
    color: var(--white);
    background-color: var(--black);
    transition: .3s;
}

.imgFooterMascotas {
    height: 140px;
    margin-top: 30px;
}

.imgFooterMascotas img {
    width: 230px;
    position: absolute;
    z-index: 2;
    bottom: -55px;
    left: 30px;
}

.txtLegales {
    display: flex;
    font-size: 0.8rem;
    line-height: 1rem;
    text-align: right;
    flex-direction: column;
    justify-content: flex-end;
}

.txtLegales span {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 6px 0;
}

.txtLegales span a {
    color: var(--white);
    font-weight: 500;
    text-decoration: underline;
}

.scroll-top {
    width: auto;
    position: absolute;
    top: -65px;
    right: 0;
    left: 0;
    font-size: 1rem;
    padding: 0;
    color: var(--black);
    background-color: transparent;
    border-color: transparent;
    border-radius: 0px;
    z-index: 1;
    display: inline-block;
    outline: none;
}

.scroll-top:hover {
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--black);
}

.scroll-top i {
    background-color: var(--black);
    border-radius: 20px;
    display: inline-block;
    color: var(--white);
    font-size: 2rem;
    padding: 7px 13px;
    line-height: 100%;
    transition: .3s;
}

.scroll-top i:hover {
    cursor: pointer;
    background-color: var(--yellow);
    color: var(--black);
    box-shadow: none;
    border: none;
    outline: none;
    transition: .3s;
}

.scroll-top span {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    font-size: .9rem;
}

.SeccVideos {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 5px 0 120px 0;
    position: relative;
    z-index: 1;
}

.SeccVideos a {
    width: -webkit-fill-available;
    width: -moz-available;
    display: block;
    word-break: break-word;
}

.contModuloVideosMascotas {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin-top: 50px;
    background-color: #EDEFF1;
    background-image: url(../../images/mascotas/bk-huellitas.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    border-radius: 20px;
}

.ColModuloVideoP {
    width: 65%;
    float: left;
}

.ColModuloVideoPSec {
    width: 33%;
    display: inline-block;
}

.ContModuloVideo {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    position: relative;
}

.HomeVideoCard {
    width: 350px;
    position: relative;
    height: 640px;
    float: left;
}

.ModVideo {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 100%;
}

.ModVideo iframe {
    max-width: 350px;
    max-height: 640px;
    display: inline-block;
    border-radius: 10px;
}

.ContTitV {
    width: 40%;
    display: inline-block;
    margin-top: 20px;
}

.ModTitV {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin-left: 13px;
}

.TitVP {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 190px;
    overflow: hidden;
    display: inline-block;
    margin: 0;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    text-align: left;
    text-transform: initial;
}

.TitV {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 0;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
    text-align: left;
    text-transform: inherit;
    letter-spacing: 0;
}

.TitSeccV {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.TxtV {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 290px;
    overflow: hidden;
    display: inline-block;
    margin-left: 13px;
}

.Vsmall {
    width: 40%;
    height: 126px;
    overflow: hidden;
    margin-left: 10px;
}

.SeccSinMargen {
    margin-bottom: 0px;
}

.ModuloSideVideo {
    width: -webkit-fill-available;
    width: -moz-available;
    display: inline-block;
    margin: 10px 0;
}

.ModuloImgVSide {
    width: 170px;
    height: 110px;
    float: left;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ModuloImgVSide img {
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.ModuloImgVSide img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: 0.3s;
}

.IconPlayVideoteca {
    width: 50px;
    height: 50px;
    font-size: 3rem;
    line-height: 3rem;
    text-align: center;
    color: var(--black);
    background-color: var(--yellow);
    border-radius: 100px;
    position: absolute;
    z-index: 2;
    bottom: 5px;
    right: 5px;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--yellow);
    border-radius: 90px;
    top: inherit;
    bottom: -65px;
    z-index: 4;
}

.slick-prev:focus,
.slick-next:focus {
    background-color: var(--yellow);
    color: var(--black);
}

.slick-prev:before,
.slick-next:before {
    color: transparent;
    display: none;
}

.slick-prev,
.slick-next i {
    font-size: 2.3rem;
    display: inline-block;
    color: black;
}

.slick-next {
    right: 325px;
}

.slick-prev {
    left: 325px;
}

.slick-dots li button:before {
    font-size: 5rem;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--yellow);
}

.slick-list {
    padding-bottom: 10px;
}

.cont-AgendaMascotas .slick-slide {
    height: 750px;
    padding: 100px 10px 0 10px;
}

.OpenTableSlider,
.ViajesSlider {
    margin: 10px 0 0 0;
}

.ContstickyBanner {
    width: 100%;
    position: fixed;
    z-index: 31;
    bottom: 0;
    display: none;
    text-align: center
}

.stickyBanner {
    width: 320px;
    margin: 0 auto;
}

.closeSticky {
    float: right;
    padding: 11px;
    background: #e1e0e0;
    border-top-left-radius: 53px;
    border-top-right-radius: 53px
}

.closeSticky:hover {
    color: #fffefe
}

/*------ Estilos de dia del calendario con evento ------*/
.flatpickr-day.has-event {
    background-color: var(--white);
    border-color: var(--yellow);
    color: #000;
    font-weight: bold;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background-color: #FFD52E!important;
    border-color: #FFD52E!important;
    color: #000!important;
}

.flatpickr-day.has-event:hover {
    background-color: var(--yellow);
    border-color: var(--yellow);
}



/*-------------- MEDIA QUERIES ------------------*/


@media (max-width: 575.98px) {
    .stickyBanner {
        display: block
    }

    p {
        margin: 5px 0px;
    }

    .contRedesMascotas {
        padding: 30px 20px;
    }

    .ulNavMascotas {
        flex-direction: column;
        text-align: center;
    }

    .Secc-Hero-Mascotas {
        height: 60vh;
    }

    .hero-info-text {
        font-size: 2.4rem;
        line-height: 2.5rem;
        top: 20%;
    }

    .hero-info-text,
    .hero-info-subtext {
        padding: 0 20px;
    }

    .leader-video-cont {
        width: 165px;
    }

    .DivAnim {
        margin-top: 40px;
    }

    .cont-BlogMascotas {
        margin: 10px 0 0 0;
        padding: 30px 0 70px 0;
    }

    .TitResultadosMascotas {
        height: auto;
    }

    .TxtResultadosMascotas {
        height: auto;
    }

    .TitBlog {
        height: auto;
    }

    .TitBig {
        height: auto;
        padding-right: 0px;
    }

    .imgBig {
        height: auto;
    }

    .TxtBlog {
        height: auto;
    }

    .imgBlogMascotas {
        height: auto;
    }

    .SeccVideos {
        margin: 5px 0 20px 0;
    }

    .contModuloVideosMascotas {
        margin-top: 5px;
        padding: 10px 0 70px 0;
    }

    .ColModuloVideoP {
        width: 100%;
        display: inline-block;
        float: none;
    }

    .ColModuloVideoPSec {
        width: 100%;
    }

    .HomeVideoCard {
        width: 270px;
        height: 485px;
        margin: 0 auto;
        float: none;
    }

    .ModTitV {
        margin-left: 0;
    }

    .ContTitV {
        width: 100%;
        margin-top: 0;
        padding: 10px;
    }

    .TxtV {
        margin-left: 0;
    }

    .ModuloSideVideo {
        text-align: center;
        padding: 0 10px;
    }

    .ModuloImgVSide {
        width: 100%;
        height: auto;
    }

    .Vsmall {
        height: auto;
        width: 100%;
        margin-left: 0px;
        margin-top: 10px;
    }

    .TitVP {
        height: auto;
    }

    .Secc-Explora-Mascotas {
        margin: 0 0 30px 0;
    }

    .cont-Explora {
        margin-top: 5px;
    }

    .itemExplora {
        height: 300px;
        padding-bottom: 40px;
    }

    .itemExplora img {
        width: 160px;
        left: 40px;
    }

    .img2 {}

    .BuscadorPMascotas {
        padding: 0 20px;
    }

    .BuscadorPMascotas form {
        display: inline-block;
        text-align: center;
    }

    .BuscadorPMascotas input {
        width: 100%;
        float: none;
        display: inline-block;
    }

    .BuscadorPMascotas select {
        width: 100%;
        float: none;
        display: inline-block;
        margin: 5px 0;
    }

    .BuscadorPMascotas button {
        width: 130px;
        display: inline-block;
        float: none;
        margin-top: 7px;
    }

    .TituloSeccion {
        font-size: 3rem;
        line-height: 3rem;
        margin: 20px 0;
    }

    .contTxtsResultadosMascotas {
        height: auto;
        padding: 20px;
    }

    .imgResultadosMascotas {
        height: auto;
    }

    .Secc-Restaurantes-Mascotas {
        margin: 5px 0 0 0;
    }

    .OpenTableSlider,
    .ViajesSlider {
        margin: 0;
    }

    .Secc-Viajes-Mascotas {
        margin: 10px 0 0 0;
    }

    .slick-prev,
    .slick-next {
        bottom: -88px;
    }

    .slick-next {
        right: 6%;
    }

    .slick-prev {
        left: 7%;
    }

    .slick-dots {
        bottom: -50px;
    }

    .AgendaMascotas-Mes {
        margin: 10px 0 0 0;
    }

    .Secc-Banner.Secc-BannerOne {
        background-color: transparent;
    }

    .Secc-Banner.Secc-BannerTwo {
        background-color: transparent;
    }

    .bkBanner {
        background-color: var(--yellow);
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        padding: 30px 0;
    }

    .bkBannerB {
        background-color: var(--blue);
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        padding: 30px 0;
    }

    .BBD {
        height: auto;
    }

    .BBDvideo {
        width: -webkit-fill-available;
        width: -moz-available;
        margin-left: 0px;
    }

    .box-video-desk {
        display: none;
    }

    .box-video-mob {
        width: 70%;
        display: flex;
        margin: 0 auto;
    }

    .box-video-mob.BBDvideo {
        width: 70%;
        display: flex;
        margin: 0 auto;
    }

    .scroll-top {
        right: 0;
        left: 0;
    }

    .CursorHover {
        display: none;
    }

    .cont-AgendaMascotas .slick-slide {
        height: 100%;
        padding: 10px 5px 0 20px;
    }

    .cont-AgendaMascotas .card .slide.slide1 {
        position: inherit;
        z-index: inherit;
        transition: 0;
        transform: none;
    }

    .cont-AgendaMascotas .card:hover .slide.slide1 {
        transform: none;
    }

    .cont-AgendaMascotas .card .slide.slide2 {
        transition: 0;
        transform: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .cont-AgendaMascotas .card:hover .slide.slide2 {
        transform: none;
    }

    .TitAgenda {
        height: auto;
    }

    .TitAgendaAbsolute {
        display: none;
    }

    .imgAgenda {
        opacity: 1;
    }

    .Secc-Agenda-Mascotas {
        padding: 0 0 70px 0;
    }

    footer {
        padding: 40px 10px;
        text-align: center;
        margin: 100px 0 0 0;
    }

    .collogoFooterMascotas {
        margin: 30px 0;
    }

    .colNavFooterMascotas {
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .colReservaFooter {
        padding: 0;
    }

    .menuFooter li {
        margin: 10px 0px;
        display: block;
    }

    .btnReservaFooter {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin: 0;
    }

    .btnReservaFooter a {
        padding: 18px 15px;
    }

    .imgFooterMascotas img {
        width: 200px;
        bottom: inherit;
        left: inherit;
        position: inherit;
    }

    .btnFooter {
        margin: 20px 0;
    }

    .txtLegales {
        text-align: center;
        margin-top: 40px;
    }

    .colAgendaMascotashist {
        width: 100%;
        display: inline-block;
        margin: 5px 0;
    }

    .TitAgendahist {
        height: auto;
    }

    .imgAgendaMascotashist {
        height: auto;
    }

    .InfoAgendahist {
        height: auto;
    }

    .cont-AgendaMascotasHist {
        margin: 30px 0 0 0;
    }

    .ContInfoBtnCalendario {
        margin: 10px 0 0 0;
    }

    .mesAgendaMascotas {
        margin: 25px 0 0 0;
    }

    .col-fecha-agendaMascotas {
        padding: 0 20px;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {

    .stickyBanner {
        display: block;
    }

    .ulNavMascotas {
        flex-direction: column;
        text-align: center;
    }

    .hero-info-text {
        font-size: 3.5rem;
        line-height: 3.6rem;
        color: #fff;
        top: 30%;
    }

    .Secc-Hero-Mascotas {
        height: 90vh;
    }

    .contModuloVideosMascotas {
        padding: 20px 0 70px 0;
    }

    .ColModuloVideoP {
        width: 100%;
    }

    .ColModuloVideoPSec {
        width: 100%;
    }

    .HomeVideoCard {
        width: 270px;
        height: 485px;
        margin: 0 auto;
        float: none;
    }

    .ModuloImgVSide {
        width: 100%;
        height: 240px;
    }

    .ModuloSideVideo {
        padding: 0 10px;
    }

    .ContTitV {
        width: 100%;
        margin-top: 10px;
    }

    .TitVP {
        height: auto;
    }

    .Vsmall {
        width: 100%;
        margin-left: 0px;
        margin-top: 10px;
    }

    .cont-BlogMascotas {
        padding: 30px 0 70px 0;
    }

    .TitBig {
        height: auto;
        padding-right: 0px;
    }

    .TxtBlog {
        height: auto;
    }

    .slick-prev,
    .slick-next {
        bottom: -90px;
    }

    .slick-next {
        right: 33%;
    }

    .slick-prev {
        left: 33%;
    }

    .slick-dots {
        bottom: -50px;
    }

    .imgResultadosMascotas {
        height: auto;
    }

    .Secc-Banner.Secc-BannerOne {
        background-color: transparent;
    }

    .Secc-Banner.Secc-BannerTwo {
        background-color: transparent;
    }

    .leader-video-cont {
        width: 200px;
    }

    .bkBanner {
        background-color: var(--yellow);
        border-top-right-radius: 0px;
        border-top-left-radius: 0px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        padding: 30px 0;
    }

    .bkBannerB {
        background-color: var(--blue);
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        padding: 30px 0;
    }

    .BBD {
        height: auto;
    }

    .BBDvideo {
        width: -webkit-fill-available;
        width: -moz-available;
        margin-left: 0px;
    }

    .box-video-desk {
        display: none;
    }

    .box-video-mob {
        width: 50%;
        display: flex;
        margin: 0 auto;
    }

    .box-video-mob.BBDvideo {
        width: 50%;
        display: flex;
        margin: 0 auto;
    }

    .CursorHover {
        display: none;
    }

    .scroll-top {
        right: 0;
        left: 0;
    }

    .cont-AgendaMascotas .slick-slide {
        height: 100%;
        padding: 10px 5px 0 20px;
    }

    .cont-AgendaMascotas .card .slide.slide1 {
        position: inherit;
        z-index: inherit;
        transition: 0;
        transform: none;
    }

    .cont-AgendaMascotas .card:hover .slide.slide1 {
        transform: none;
    }

    .cont-AgendaMascotas .card .slide.slide2 {
        transition: 0;
        transform: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .cont-AgendaMascotas .card:hover .slide.slide2 {
        transform: none;
    }

    .collogoFooterMascotas {
        text-align: center;
        margin-top: 30px;
    }

    .colNavFooterMascotas {
        text-align: center;
        justify-content: center;
        margin-top: 30px;
    }

    .TitAgendaAbsolute {
        display: none;
    }

    .imgAgenda {
        opacity: 1;
    }

    .Secc-Agenda-Mascotas {
        padding: 0 0 70px 0;
    }

    footer {
        padding: 40px 10px;
        text-align: center;
        margin: 100px 0 0 0;
    }

    .btnFooter {
        margin: 40px 0 0 0;
    }

    .btnReservaFooter {
        margin-bottom: 0px;
    }

    .imgFooterMascotas {
        height: 82px;
        margin-top: 0px;
    }

    .imgFooterMascotas img {
        width: 210px;
    }

    .colAgendaMascotashist {
        width: 48.1%;
        margin: 5px;
    }

    .TitAgendahist {
        height: 137px;
    }

    .imgAgendaMascotashist {
        height: 160px;
    }

    .cont-AgendaMascotasHist {
        margin: 30px 0 0 0;
    }

    .col-fecha-agendaMascotas {
        padding: 0 80px;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {

    .stickyBanner {
        display: block
    }

    .Secc-Hero-Mascotas {
        height: 100vh;
    }

    .hero-info-text {
        font-size: 3.7rem;
        line-height: 3.8rem;
    }

    .contModuloVideosMascotas {
        padding: 30px 0 70px 0;
    }

    .ContTitV {
        width: 48%;
    }

    .TitVP {
        height: auto;
    }

    .ColModuloVideoP {
        width: 100%;
        display: inline-block;
        float: none;
    }

    .ColModuloVideoPSec {
        width: 100%;
    }

    .cont-BlogMascotas {
        padding: 30px 0 70px 0;
    }

    .TitBig {
        height: auto;
    }

    .TxtBlog {
        height: auto;
    }

    .imgBig {
        height: 265px;
    }

    .imgResultadosMascotas {
        height: auto;
    }

    .slick-dots {
        bottom: -50px;
    }

    .slick-prev,
    .slick-next {
        bottom: -90px;
    }

    .slick-next {
        right: 33%;
    }

    .slick-prev {
        left: 33%;
    }

    .leader-video-cont {
        width: 220px;
    }

    .bkBanner {
        padding: 30px 0;
    }

    .bkBannerB {
        padding: 30px 0;
    }

    .box-video-desk {
        width: 390px;
        margin-top: 67px;
    }

    .BBDvideo {
        width: 650px;
        margin-left: -170px;
        margin-top: 45px;
    }

    .CursorHover {
        display: none;
    }

    .cont-AgendaMascotas .slick-slide {
        height: 100%;
        padding: 10px 5px 0 20px;
    }

    .cont-AgendaMascotas .card .slide.slide1 {
        position: inherit;
        z-index: inherit;
        transition: 0;
        transform: none;
    }

    .cont-AgendaMascotas .card:hover .slide.slide1 {
        transform: none;
    }

    .cont-AgendaMascotas .card .slide.slide2 {
        transition: 0;
        transform: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .cont-AgendaMascotas .card:hover .slide.slide2 {
        transform: none;
    }

    .TitAgendaAbsolute {
        display: none;
    }

    .imgAgenda {
        opacity: 1;
    }

    .Secc-Agenda-Mascotas {
        padding: 0 0 70px 0;
    }

    footer {
        margin: 100px 0 0 0;
    }

    .btnReservaFooter {
        margin-bottom: 0;
    }

    .imgFooterMascotas img {
        width: 210px;
    }

    .menuFooter li {
        margin: 0 9px;
    }

    .colAgendaMascotashist {
        width: 47.3%;
    }

    .cont-AgendaMascotasHist {
        margin: 30px 0 0 0;
    }

    .col-fecha-agendaMascotas {
        padding: 0 50px;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .imgResultadosMascotas {
        height: auto;
    }

    .box-video-desk {
        width: 510px;
        margin-top: 30px;
    }

    .BBDvideo {
        width: 700px;
        margin-left: -150px;
        margin-top: 20px;
    }

    .ColModuloVideoP {
        width: 60%;
    }

    .ColModuloVideoPSec {
        width: 37%;
    }

    .Vsmall {
        width: 39%;
        height: 170px;
    }

    .HomeVideoCard {
        width: 310px;
        height: 565px;
    }

    .colAgendaMascotashist {
        width: 31.2%;
    }

}

@media (min-width: 1200px) and (max-width: 1399.98px) {

    .imgResultadosMascotas {
        height: auto;
    }

}