@import url('https://fonts.googleapis.com/css2?family=Playwrite+FR+Moderne:wght@100..400&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chewy&display=swap');

:root {
    /* TIPOGRAFIAS */

    --font-1: "Raleway", system-ui;
    --font-2: "Playwrite FR Moderne", system-ui;
    ;
    --font-3: "Chewy", system-ui;
    /* COLOR */

    --color-1: #df6c2d;
    --color-2: #c9dde2;
    --color-3: #f4eee5;
    --color-4: #375369;
    --color-5: #808A8B;
    --color-6: #74ADB0;

    --color-black: #141414;
    --color-white: #FFFFFF;


    --bg-1: #df6c2d;
    --bg-2: #c9dde2;
    --bg-3: #f4eee5;
    --bg-4: #375369;
    --bg-5: #808A8B;
    --bg-6: #74ADB0;

    --bg-black: #141414;
    --bg-white: #FFFFFF;
    --bg-transparent: transparent;

    /* SIZE */
    --font-s-130: 130px;
    --font-s-160: 160px;
    --font-s-48: 48px;
    --font-s-32: 32px;
    --font-s-36: 36px;
    --font-s-30: 30px;
    --font-s-24: 24px;
    --font-s-22: 22px;
    --font-s-20: 20px;
    --font-s-18: 18px;
    --font-s-16: 16px;
    --font-s-14: 14px;
    --font-s-12: 12px;
    --font-s-10: 10px;

    /* LINE HEIGHT */

    --lh-auto: normal;
    --lh-100: 100%;
    --lh-110: 110%;
    --lh-120: 120%;
    --lh-140: 140%;

}

body {
    margin: 0;
    overflow-x: hidden;
    padding: 0 !important;
}

section {
    overflow: hidden;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.font-3 {
    font-family: var(--font-3);
}

.color-1 {
    color: var(--color-1);
}

.color-2 {
    color: var(--color-2);
}

.color-3 {
    color: var(--color-3);
}

.color-4 {
    color: var(--color-4);
}

.color-5 {
    color: var(--color-5);
}

.color-6 {
    color: var(--color-6);
}


.color-black {
    color: var(--color-black);
}

.color-white {
    color: var(--color-white);
}

.bg-1 {
    background-color: var(--bg-1);
}

.bg-2 {
    background-color: var(--bg-2);
}

.bg-3 {
    background-color: var(--bg-3);
}

.bg-4 {
    background-color: var(--bg-4);
}

.bg-5 {
    background-color: var(--bg-5);
}

.bg-6 {
    background-color: var(--bg-6);
}


.bg-Black {
    background-color: var(--bg-black);
}

.bg-White {
    background-color: var(--bg-white);
}

.bg-transparent {
    background-color: var(--bg-transparent);
}

.fs-130 {
    font-size: var(--font-s-130);
}

.fs-160 {
    font-size: var(--font-s-160);
}

.fs-48 {
    font-size: var(--font-s-48);
}

.fs-36 {
    font-size: var(--font-s-36);
}

.fs-32 {
    font-size: var(--font-s-32);
}

.fs-30 {
    font-size: var(--font-s-30);
}


.fs-24 {
    font-size: var(--font-s-24);
}

.fs-22 {
    font-size: var(--font-s-22);
}

.fs-20 {
    font-size: var(--font-s-20);
}

.fs-18 {
    font-size: var(--font-s-18);
}

.fs-16 {
    font-size: var(--font-s-16);
}

.fs-14 {
    font-size: var(--font-s-14);
}

.fs-12 {
    font-size: var(--font-s-12);
}

.fs-10 {
    font-size: var(--font-s-10);
}

.fs-9 {
    font-size: 9px;
}

.lh-auto {
    line-height: normal;
}

.lh-100 {
    line-height: var(--lh-100);
}

.lh-110 {
    line-height: var(--lh-110);
}

.lh-120 {
    line-height: var(--lh-120);
}

.lh-140 {
    line-height: var(--lh-140);
}

.border-radius_100 {
    border-radius: 100px;
}

.border-radius_70 {
    border-radius: 70px;
}

.border-radius_50 {
    border-radius: 50px;
}

.border-radius_15 {
    border-radius: 15px;
}

.border-radius_derecha {
    border-radius: 0px 50px 50px 0px;
}

.border-radius_izquierda {
    border-radius: 50px 0px 0px 50px;
}

.border-radius_perros-1 {
    border-radius: 50px;
}

.border-radius_perros-2 {
    border-radius: 50px;
}

/* BOTONES */

.boton-naranja {
    padding: 10px 30px;
    background-color: var(--bg-1);
    color: var(--color-white);
    border: solid 1px var(--color-1);
    border-radius: 100px;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    box-shadow: 3px 3px 4px 0px rgba(147, 131, 112, 0.15);
    white-space: nowrap;
    min-height: 42px;
    align-content: center;
}

.boton-naranja:hover {
    background-color: transparent;
    color: var(--color-1);
    border: solid 1px var(--color-1);
}

.boton-celeste {
    padding: 10px 30px;
    background-color: var(--bg-2);
    color: var(--color-4);
    border-radius: 100px;
    border: 0;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    white-space: nowrap;
    min-height: 42px;
    align-content: center;
}

.boton-celeste:hover {
    background-color: var(--bg-4);
    color: var(--color-2);
}

.boton-azul {
    padding: 10px 30px;
    background-color: var(--bg-4);
    color: var(--color-2);
    border-radius: 100px;
    border: none;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    white-space: nowrap;
    min-height: 42px;
    align-content: center;
}

.boton-azul:hover {
    background-color: var(--bg-2);
    color: var(--color-4);
}

.boton-turqueza {
    padding: 10px 30px;
    background-color: var(--bg-6);
    color: var(--color-2);
    border-radius: 100px;
    border: none;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    white-space: nowrap;
    min-height: 42px;
    align-content: center;
}

.boton-turqueza:hover {
    background-color: var(--bg-2);
    color: var(--color-6);
}

.boton-cheque {
    font-family: var(--font-2);
    font-size: var(--font-s-10);
    padding: 10px 30px;
    background-color: var(--bg-6);
    color: var(--color-2);
    border: solid 1px var(--bg-6);
    border-radius: 100px;
    border: none;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    box-shadow: 3px 3px 4px 0px rgba(147, 131, 112, 0.15);
    white-space: nowrap;
    min-height: 42px;
    align-content: center;
}

.boton-cheque:hover {
    background-color: transparent;
    color: var(--bg-6);
    border: solid 1px var(--bg-6);
}

.boton-x {
    border: none;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--color-black) !important;
    color: var(--bg-white) !important;
    font-family: var(--font-1) !important;
    font-weight: 400;
}

.offcanvas {
    min-height: 100vh;
    background-color: rgba(116, 173, 176, .6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0;
    border-radius: 0;
}

.offcanvas .btn-close {
    filter: invert(1);
    opacity: 1;
}

.offcanvas .offcanvas-body {
    overflow-x: hidden;
}

.offcanvas .offcanvas-menu {
    gap: 30px;
}

.offcanvas .offcanvas-menu li {
    width: 100%;
}

.offcanvas .offcanvas-menu li a {
    color: var(--bg-white);
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    font-family: var(--font-1);
    font-weight: 500;
    text-decoration: none;
}

.offcanvas .offcanvas-menu li button,
.offcanvas .offcanvas-menu li a {
    width: 100%;
}

.offcanvas .offcanvas-menu li a.boton-naranja {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ANIMACION-TEXTO */

/* NAV */
.navbar .nav-link {
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    text-align: center;
}

.navbar .nav-item {
    position: relative;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
}

.navbar .nav-item:hover {
    transform: translateY(-2px);
}


.nav-item .enlaces.active {
    color: #df6c2d;
    border-bottom: 2px solid #df6c2d;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: none;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.navbar-toggler:focus {
    outline: 0;
    box-shadow: none;
}


/* BODY */
.linea-celeste {
    height: 100px;
    background-color: var(--bg-2);
    position: relative;
}

.linea-celeste .float-left-patita {
    -moz-transition: left 1s ease;
    -o-transition: left 1s ease;
    -webkit-transition: left 1s ease;
    transition: left 1s ease;
    position: absolute;
    top: 0px;
    left: -100%;
    z-index: 2;
}

.linea-celeste .float-left-patita.visible {
    left: 0;
}

.contenedor-grid {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(2, 1fr) 1fr;
}

.grid-perros .bg-card-grid {
    position: relative;
}

.grid-perros .bg-card-grid::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 50px;
    z-index: 1;
    opacity: .3;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
}

.grid-perros a .icono-patita {
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
    max-width: 96px;
}

.grid-perros>a:hover .icono-patita {
    position: relative;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.grid-perros>a:hover .bg-card-grid::before {
    opacity: 1;
}


.grid-perro-1 {
    grid-column: span 1;
    grid-row: span 1;
}

.grid-perro-2 {
    grid-column: span 2;
    grid-row: span 1;
}

.grid-perro-3 {
    grid-column: span 1;
    grid-row: span 2;
}

.grid-perro-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.foto-perro1 {
    width: 500px;
    height: 887px;
    object-fit: cover;
}

.img-patitas {
    margin-top: -108px;
}

.img-carousel {
    width: 248px !important;
    height: 176px !important;
    border-radius: 50px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    margin-left: 10px;

}

.notificacion-mover {
    position: absolute;
    transform-origin: center bottom;
    animation: moveSideToSide 4s ease-in-out infinite;
    max-width: 280px;
    top: -200px;
    left: 0;
}

.notificacion-mover-2 {
    position: absolute;
    transform-origin: center bottom;
    animation: moveSideToSide 4s ease-in-out infinite;
    max-width: 280px;
    top: -20px;
    right: 0;
}

.notificacion-mover-3 {
    position: absolute;
    transform-origin: center bottom;
    animation: moveSideToSide 4s ease-in-out infinite;
    max-width: 280px;
    top: -200px;
    left: 0;
}

@keyframes moveSideToSide {
    0% {
        transform: rotate(-5deg);
        /* Ángulo hacia la izquierda */
    }

    50% {
        transform: rotate(5deg);
        /* Ángulo hacia la derecha */
    }

    100% {
        transform: rotate(-5deg);
        /* De regreso hacia la izquierda */
    }
}

.foto-cliente img {
    border-radius: 100px;
    height: 100px;
    width: 100px;
    min-width: 100px;
    border: solid 3px #df6c2d;
    object-fit: cover;
}

.foto-cliente-2 img {
    border-radius: 100px;
    height: 70px;
    width: 70px;
    margin-top: -50px;
    margin-left: 50px;
    border: solid 3px #df6c2d;
    object-fit: cover;
}


/* CAROUSEL-VALORACIONES */
.slick-slide {
    display: none;
    float: left;
    height: unset;
    min-height: 1px;
}

.slick-dots {
    bottom: -44px;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #375369;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* LETRAS en movimiento  ANIMAL  FOTOGRAFIA */
/*.cont-princ-slider-2 {
    height: 225px;
    width: 100%;
    position: absolute;
    margin-top: 100px;

}

.slier-prin-2 {
    display: inline-flex;
    -moz-animation: slider 23s infinite linear;
    animation: slider 23s infinite linear;
    height: 100%;
    width: auto;
    gap: 700px;
}


@keyframes slider {
    to {
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.mt-313 {
    margin-top: 313px;
}*/


/* LETRAS en movimiento  REDES SOCIALES  */
.cont-princ-slider {
    height: 225px;
    overflow: hidden;
    width: 100%;
    left: 0;
    position: absolute;
    margin-top: -139px;
}

/* .slier-prin {
    display: inline-flex;
    -moz-animation: slider 60s infinite linear;
    animation: slider 77s infinite linear;
    height: 100%;
    width: auto;
    gap: 141px;
  } */

/*.slier-prin {
    position: relative;
    white-space: nowrap;
    animation: moveText 20s linear infinite;
    font-size: 24px;
}
@keyframes moveText {
    0% {
      left: 100%; 
    }
    100% {
      left: -100%;
    }
  }
@keyframes slider {
    to {
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}*/

.slier-prin .texto-uno {
    position: relative;
    transform: translateX(-1000%);
    -webkit-transform: translateX(-1000%);
    -moz-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -webkit-transition: 1.5s all ease-in-out;
    transition: all 1.5s ease-in-out;
}

.slier-prin .texto-uno.visible {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.slier-prin .texto-dos {
    position: relative;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    -webkit-transition: 2s all ease-in-out;
    transition: all 2s ease-in-out;
}

.slier-prin .texto-dos.visible {
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.carousel-redes {
    height: 250px;
}

.carousel-redes .slick-prev,
.carousel-redes .slick-next {
    width: 40px;
    height: 40px;
}

.carousel-redes .slick-prev {
    left: 24px;
    z-index: 2;
}

.carousel-redes .slick-next {
    right: 24px;
    z-index: 2;
}

.carousel-redes .slick-prev:before,
.carousel-redes .slick-next:before {
    font-size: 40px;
}

.flecha-img {
    position: absolute;
    top: 25px;
    right: 0;
}


.img-header {
    z-index: 1;
}


/* HUELLAS HEADER */
.image-container-3 {
    position: relative;
    width: 100%;
    height: 100%;

}

.img-wrapper {
    position: absolute;
    transition: opacity 1s ease;
    width: 150px;
}

.img-wrapper img {
    opacity: 0;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.img-wrapper.visible:first-of-type img {
    transition-delay: 1s;
    /* Primer elemento tarda 1 segundo */
    opacity: 1;
}

.img-wrapper.visible:nth-of-type(2) img {
    transition-delay: 0.5s;
    /* Segundo elemento tarda 0.5 segundos */
    opacity: 1;
}

#image1 {
    top: 20%;
    left: 20%;
}

#image2 {
    top: 60%;
    left: 60%;
}

.img-wrapper.active {
    opacity: 1;
}


/* -----------------------------------------------CONOCENOS------------------------------------------------------ */
.img-notificacion-pequeña {
    width: 225px;
    height: 182px;
    margin-right: 74px;

}

/* -------------------------------------------------TARIFAS----------------------------------------------------- */

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: none;
    --bs-nav-link-hover-color: none;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.tamaño-tab {
    height: 460px;
    width: 353px;
    overflow: hidden;
}

.foto-tab {
    border-radius: 100px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: bottom;
}

.circulo-lista {
    width: 10px;
    min-width: 10px;
    height: 10px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    background-color: var(--bg-6);
}

.li-tarifas ul li {
    line-height: var(--lh-140);
    font-size: var(--font-s-18)!important;
    font-family: var(--font-1);
}

.li-tarifas ul li::marker {
    font-size: 30px;
    color: var(--bg-6);

}

.borde-punteado {
    border: 5px dashed var(--color-6);
    border-radius: 15px;
}

.border-tab {
    border-left: 4px solid var(--color-2);
}


.nav .enlaces-tab.active {
    border-left: 4px solid #df6c2d;
}

.nav .enlaces-tab.active .foto-tab {
    border: 4px solid #df6c2d;
    border-radius: 100px;
}

.enlaces-tab.nav-link {
    display: block;
    padding: 0px;
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-pills .enlaces-tab.active, .nav-pills .show>.enlaces-tab {
    background-color: transparent;
}

.nav-pills .enlaces-tab {
    border-radius: 0px;
}

/* ----------------------------------------------PREGUNTAS FRECUENTES ------------------------------------------------------------------------------- */

.icono-preguntas {
    width: 50px;
    height: 50px;
    padding: 25px 25px;
    border-radius: 100%;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: var(--bg-3);
    box-shadow: none;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 0;
    height: 0;
    margin-left: auto;
    content: "";
    background-image: none;
    background-repeat: no-repeat;
    background-size: none;
    transition: none;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: none;
    border-radius: 15px;
    transition: none;
    min-height: 50px;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--color-black);
    font-family: var(--font-1);
}

#exampleModal .modal-dialog {
    width: 100%;
    max-width: 1170px;
    padding: 0 24px;
}

#exampleModal .modal-dialog .modal-content {
    filter: drop-shadow(6px 6px 10px rgba(231, 161, 151, 0.2));
    -webkit-filter: drop-shadow(6px 6px 10px rgba(231, 161, 151, 0.2));
}

/* ------- MODIFICACIONES AXEL ------- */
.header-home {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    padding-top: 125px;
    /*background-image: url('../img/img-heder.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;*/
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.header-home .img-header {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.header-home .move-text-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0px 48px;
}

.patita-regalo-1 {
    position: relative;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transition: all 1.5s ease-in-out;
    -o-transition: all 1.5s ease-in-out;
    -webkit-transition: 1.5s all ease-in-out;
    transition: all 1.5s ease-in-out;
}

.patita-regalo-1.visible {
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.carousel-redes .slick-slide {
    margin-right: 12px;
    width: 100%;
    min-width: 250px;
    max-width: 250px;
    height: 250px;
}

.eapps-instagram-feed-title-container,
.eapps-widget-toolbar {
    display: none !important;
}

.eapps-widget {
    position: relative;
}

.eapps-widget::before {
    content: "" !important;
    position: absolute !important;
    background: white;
    width: 100%;
    height: 50px;
    z-index: 921943 !important;
    bottom: 0px !important;
    left: 0 !important;
    top: unset !important;
}

.carousel-valoraciones .slick-slide {
    min-height: 370px;
}

footer a {
    position: relative;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
}

footer a:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
}

.patita-movil-hidden {
    left: -100%;
    -moz-transition: left 1s ease;
    -o-transition: left 1s ease;
    -webkit-transition: left 1s ease;
    transition: left 1s ease;
}

.patita-movil-hidden.visible {
    left: 0;
}

.patita-calendario {
    position: absolute;
    top: -150px;
    right: 0;
    opacity: 0;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: 1s all ease-in-out;
    transition: all 1s ease-in-out;
}

.patita-calendario.visible {
    opacity: 1;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: 1s all ease-in-out;
    transition: all 1s ease-in-out;
}

.texto-opinion{
    line-height: var(--lh-140);
    font-size: var(--font-s-14);
    font-family: var(--font-1);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*============ BLOQUE KIT DIGITAL START ============*/

#bloque-kit-digital {
    height: 135px;
    background: linear-gradient(151.48deg, #040404 -2.4%, #280D12 22.18%, #4F101E 45.75%, #831626 67.31%, #C52B2D 93.89%);
    overflow: hidden;
}

#bloque-kit-digital .columna_1 {
    height: 135px;
    left: 0
}

#bloque-kit-digital .columna_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: -35%;
    position: absolute;
}

#bloque-kit-digital .columna_3 {
    height: 135px;
    right: 0
}

#bloque-kit-digital .columna_3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    right: -35%;
    position: absolute;
}

/*============ BLOQUE KIT DIGITAL END ============*/

/*============ LEGALS START ============*/

#legal-seccion {
    min-height: 300px;
    margin-top: 48px;
    margin-bottom: 48px;
}

/*============ LEGALS END ============*/




/* ORDENADOR */
@media (max-width: 1399px) {
    .navbar .navbar-brand img {
        max-width: 50px;
    }
}

/* TABLET */
@media (max-width: 1200px) {
    .contenedor-grid {
        display: grid;
        place-items: center;
        grid-template-columns: repeat(1, 1fr) 1fr;
    }

    .grid-perro-1 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-perro-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-perro-3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-perro-4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .foto-perro1 {
        height: 500px;
        width: 372px;
        object-fit: cover;
    }

    .foto-perro2 {
        height: 500px;
        width: 372px;
        object-fit: cover;
    }

    .border-tab {
        border-bottom: 4px solid var(--color-2);
        border-left: none;
    }

    .enlaces-tab.active {
        border-bottom: 4px solid #df6c2d;
        border-left: 0px solid transparent !important;
    }

    .nav-pills {
        width: 100%;
    }

    .foto-tab-movil {
        height: 460px;
        width: 300px;
        object-fit: cover;
        object-position: bottom;
    }

    .imagen-movil {
        width: 455px;
    }

    .img-insta {
        height: 30px;
    }

    .scroll-container {
        width: 100%;
        height: 9vh;
        position: relative;
    }

    .scroll-paragraph {
        position: relative;
        left: 167vh;
        white-space: nowrap;
        transition: transform 0.2s;
    }

    .scroll-paragraph-left {
        position: relative;
        left: 24vh;
        white-space: nowrap;
        transition: transform 0.2s;
        z-index: 2;
        margin-top: -153px;
    }

    .scroll-paragraph-right {
        position: relative;
        right: 9vh;
        white-space: nowrap;
        transition: transform 0.2s;
        z-index: 2;
        margin-top: -196px;
    }
}

/* TABLET */
@media (max-width: 991px) {
    :root {
        --font-s-16: 14px;
        --font-s-130: 85px;
        --font-s-160: 120px;
    }

    .header-home .img-header {
        max-width: 1200px;
    }

    .navbar .navbar-brand img {
        max-width: 90px;
    }

    .linea-celeste .float-left-patita {
        max-width: 150px;
    }

    .contenedor-grid {
        display: grid;
        place-items: center;
        grid-template-columns: repeat(1, 1fr) 1fr;
    }

    .grid-perro-1 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-perro-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-perro-3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .grid-perro-4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .foto-perro1 {
        height: 425px;
        width: 352px;
        object-fit: cover;
    }

    .foto-perro2 {
        height: 425px;
        width: 352px;
        object-fit: cover;
    }

    .img-patita-regalo {
        margin-top: -20px;
    }

    .top-movil {
        margin-top: 124px;
    }

    .notificacion-mover {
        position: absolute;
        transform-origin: center bottom;
        animation: moveSideToSide 4s ease-in-out infinite;
        max-width: 200px;
        top: -140px;
        left: 0;
    }

    .nav-pills {
        width: 100%;
    }

    .imagen-movil {
        width: 412px;
    }

    .img-insta {
        height: 30px;
    }

    .scroll-container {
        width: 100%;
        height: 9vh;
        position: relative;
    }

    .scroll-paragraph {
        position: relative;
        left: 167vh;
        white-space: nowrap;
        transition: transform 0.2s;
    }

    .scroll-paragraph-left {
        position: relative;
        left: 24vh;
        white-space: nowrap;
        transition: transform 0.2s;
        z-index: 2;
        margin-top: -153px;
    }

    .scroll-paragraph-right {
        position: relative;
        right: 9vh;
        white-space: nowrap;
        transition: transform 0.2s;
        z-index: 2;
        margin-top: -196px;
    }

    .boton-cheque {
        font-family: var(--font-3);
        font-size: var(--font-s-30);
        padding: 21px 43px;
        border: 5px dashed var(--color-4);
        border-radius: 30px;
        background-color: var(--bg-2);
        color: var(--bg-6);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* PREGUNTAS-FRECUENTES */
    .img-pregunta {
        overflow: hidden;
        height: 400px;
        width: 100%;
        object-fit: cover;
        -o-object-fit: cover;
        object-position: top;
        -o-object-position: top;
    }

    .carousel-home-movil {
        max-height: 355px;
        min-height: 355px;
        height: 100%;
        object-fit: cover;
        width: 100%;
        object-position: top;
    }

}


/* MOVIL */
@media (max-width: 767px) {
    :root {
        --font-s-16: 14px;
        --font-s-130: 60px;
        --font-s-160: 60px;
    }

    .header-home .img-header {
        max-width: 600px;
        z-index: 0;
    }

    .header-home .move-text-header {
        padding: 0px 12px;
    }

    .header-text-1,
    .header-text-2 {
        text-align: center !important;
        font-size: 65px !important;
        line-height: normal !important;
        text-shadow: 0px 0px 15px rgb(51 51 51 / 30%);
    }

    /* nav-movil */
    .nav-movil {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: hwb(183deg 45% 31% / 95%);
        font-size: var(--font-s-18);
        z-index: 2 !important;
        overflow: hidden;
        padding: 50px;
    }

    .nav-link {
        color: white;
    }


    .border-radius_50 {
        border-radius: 20px;
    }

    .border-radius_derecha {
        border-radius: 0px 20px 20px 0px;
    }

    .border-radius_izquierda {
        border-radius: 20px 0px 0px 20px;
    }

    .border-radius_perros-1 {
        border-radius: 50px;
        max-height: 350px;
        min-height: 350px;
        width: 100%;
        object-fit: cover;
        border-radius: 50px;
        object-position: left top;
    }

    .border-radius_perros-2 {
        border-radius: 50px;
        max-height: 350px;
        min-height: 350px;
        width: 100%;
        object-fit: cover;
        border-radius: 50px;
        object-position: left top;
    }

    /*------------------------------------------ INDEX --------------------------------------- */

    .linea-celeste {
        height: 50px;
        background-color: var(--bg-2);
    }

    .contenedor-grid {
        display: grid;
        place-items: center;
        grid-template-columns: repeat(1, 1fr) 1fr;
    }

    .grid-perro-1 {
        grid-column: span 2;
        grid-row: span 1;
        width: 100%;
        padding: 0px 12px;
    }

    .grid-perro-2 {
        grid-column: span 2;
        grid-row: span 1;
        width: 100%;
        padding: 0px 12px;
    }

    .grid-perro-3 {
        grid-column: span 2;
        grid-row: span 1;
        width: 100%;
        padding: 0px 12px;
    }

    .grid-perro-4 {
        grid-column: span 2;
        grid-row: span 1;
        width: 100%;
        padding: 0px 12px;
    }

    .foto-perro1 {
        height: 251px;
        object-fit: cover;
    }

    .foto-perro2 {
        height: 251px;
        object-fit: cover;
    }

    .img-patita-regalo {
        margin-top: -20px;
    }

    .top-movil {
        margin-top: 124px;
    }

    .fondo-celeste {
        height: 490px;
    }

    .scroll-container {
        width: 100%;
        height: 9vh;
        position: relative;
    }

    .scroll-paragraph {
        position: relative;
        left: 149vh;
        white-space: nowrap;
        transition: transform 0.2s;
    }

    .scroll-paragraph-left {
        position: relative;
        left: 21vh;
        white-space: nowrap;
        transition: transform 0.2s;
        z-index: 2;
        margin-top: -130px;
    }

    .scroll-paragraph-right {
        position: relative;
        right: 9vh;
        white-space: nowrap;
        transition: transform 0.2s;
        z-index: 2;
        margin-top: -174px;

    }

    .notificacion-mover {
        position: absolute;
        transform-origin: unset;
        animation: unset;
        max-width: 180px;
        top: -110px;
        left: 50%;
        transform: translate(-50%, 0px) !important;
        -webkit-transform: translate(-50%, 0px) !important;
    }

    .img-insta {
        height: 30px;
    }


    /* -----------------------------------------------CONOCENOS------------------------------------------------------ */
    .img-notificacion-pequeña {
        width: 120px;
        height: auto;
        margin-right: 20px;
        margin-top: -50px;
    }

    /* -----------------------------------------------TARIFAS---------------------------------------------------- */

    .border-tab {
        border-bottom: 4px solid var(--color-2);
        border-left: none;
    }

    .enlaces-tab.active {
        border-bottom: 4px solid #df6c2d;
        border-left: none;
    }

    .nav .enlaces-tab.active {
        border-left: none;
        width: calc(33% - 18px);
    }

    .tamaño-tab {
        height: 460px;
        width: 100%;
        max-width: 120px;
    }

    .foto-tab-movil {
        height: 460px;
        width: 180px;
        object-fit: cover;
        object-position: bottom;
    }

    .nav-pills {
        width: 100%;
    }

    .imagen-movil {
        width: 331px;
    }

    .linea-celeste .float-left-patita {
        top: -80px;
    }

    .image-container-3 {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
    }

    .grid-perros .bg-card-grid::before {
        opacity: .5;
    }

    /*.grid-perros:nth-of-type(1) .bg-card-grid::before{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .grid-perros:nth-of-type(2) .bg-card-grid::before{
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .grid-perros:nth-of-type(3) .bg-card-grid::before{
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .grid-perros:nth-of-type(4) .bg-card-grid::before{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }*/

    .cont-princ-slider {
        display: none;
    }

    #exampleModal .modal-dialog {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    #exampleModal .modal-dialog .modal-content {
        border-radius: 0;
    }

    .slick-dots {
        bottom: 0;
    }
    .carousel-valoraciones .slick-dots{
        bottom: -45px;
    }
    .flecha-img{
        display: none;
    }
    .username-instagram{
        font-size: 32px!important;
    }

    .patita-calendario {
        top: -100px;
        opacity: 1;
        max-width: 200px;
    }

    .notificacion-mover-3 {
        display: none;
    }

    #v-pills-tabContent {
        width: 100%;
        padding: 0px 12px !important;
    }

    #v-pills-tabContent .tab-pane>div {
        flex-direction: column;
        gap: 12px;
    }

    .tamaño-tab {
        height: 150px;
        width: 150px;
        max-width: 150px;
        margin: auto;
        border: solid 4px var(--color-1);
        border-radius: 100%;
    }

    .foto-tab-movil {
        height: 100%;
        min-height: calc(150px - 4px);
        width: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 100%;
    }

    .carta-servicio {
        border: solid 1px var(--color-2);
        background: var(--bg-2);
        padding: 24px 12px;
        border-radius: 24px;
    }

    .circulo-lista {
        display: none;
    }

    .texto-center-absolute {
        top: 50% !important;
        transform: translate(-50%, 0) !important;
        margin-top: 0 !important;
        align-items: center;
    }

    .img-carousel {
        object-position: center top;
    }

    .listado-btns-header{ position: absolute;top: 125px;left: 50%;transform: translate(-50%,0);-webkit-transform: translate(-50%,0);}
    .listado-btns-header .boton-naranja{display: flex;justify-content: center; align-items: center;text-align: center;}
    .listado-btns-header .boton-cheque{min-height: 42px;padding: 10px 30px;font-size: 16px;}
    .listado-btns-header .boton-cheque + img{max-width: 100px;}
    
}


[ name="hp_website" ] { position:absolute !important; left:-9999px !important; }