@charset "utf-8";
/* CSS Document */

.ContainerMainSvcs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100% !important;
    background: url(/img/BackGround/Caniche.webp) fixed no-repeat center bottom;
    background-size: cover;
    padding-top: 30%;
}

.ContainerMainSvcs h1 {
    width: 80%;
    font-size: 2.5em;
    line-height: 1.5;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px #303030;
    padding: 25px
}

.ContainerMainSvcs h2 {
    width: 80%;
    font-size: 2em;
    line-height: 1.5;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 2px #303030;
    padding: 15px
}

.ContainMainSvcs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60% !important;
    margin-top: 5%;
    margin-bottom: 4%;
    background-color: white;
    border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    -o-border-radius: 6px 6px 0 0;
}

.ContainMainSvcs h2 {
    width: 80%;
    font-size: 2.5em;
    text-transform: uppercase;
    text-align: center;
    color: rgb(0, 48, 145);
    padding-top: 75px;
    text-shadow: none;
}

.discprice {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    padding: 15px;
    font-size: .8em;
    line-height: 1.3;
    color: rgb(0, 48, 145);
}

.ServDesc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-top: 35px 0;
}

.ServDesc h2 {
    width: 100%;
    font-size: 1.8em;
    line-height: 1.5;
    text-align: center;
    color: White;
    padding-top: 20px;
    text-shadow: none;
}

.ServDesc h3 {
    width: 80%;
    font-size: 1.4em;
    line-height: 1.2;
    text-align: justify;
    text-align-last: left;
    color: white;
    padding-top: 20px
}

.BGBASIC {
    background-color: rgb(89, 184, 248);
}

.BGESENT {
    background-color: rgb(255, 179, 0);
}

.BGLUJO {
    background-color: rgba(181, 22, 255, 0.897);
}

.includserv {
    width: 95%;
    padding: 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-size: .8em;
    line-height: 1.5;
    color: #ffffff;
}

.servcspac {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 25px 0;
}

.svcbysz {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 18%;
}

.svcbysz h3 {
    width: 100%;
    font-size: 1.8em;
    line-height: 1.5;
    text-align: center;
    color: white;
    padding: 4px;
}

.svcbysz p {
    width: 98%;
    padding: 8px;
    font-size: 1.2em;
    line-height: 1.5;
    color: white;
    text-align: justify;
}

.ContentGroomServ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100% !important;
}


.ContentGroomServ h2 {
    width: 85% !important;
    padding-top: 8px;
    padding-bottom: 25px;
    font-size: 1.4em;
    line-height: 1.5;
    text-align: center;
    color: #00cf15;
    text-shadow: none;
}

.GroomSrvcs {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 90%;
}

.LiGroomItem {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 24%;
    padding: 16px 0px;
}

.LiGroomItem .viñeta {
    height: 35px;
}

.LiGroomItem .viñeta img {
    height: 100%;
    width: auto;
}

.LiGroomItem .GroomItemTxt {
    width: 100%;
    font-size: 1.8em;
    color: rgb(0, 48, 145);
    padding-left: 12px;
    vertical-align: top;
    text-align: left;
}

.groomadvice {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-top: 80px;
    margin-bottom: 5%;
}

.groomadvice h2 {
    width: 100%;
    text-align: center;
}

.groomadvice p {
    width: 98%;
    padding: 8px;
    font-size: 1.2em;
    line-height: 1.5;
    color: rgb(0, 48, 145);
    text-align: justify;
}

@keyframes floatFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

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

@keyframes floatFromRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

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

@keyframes floatFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.ServDesc h2.animate,
.groomadvice p.animate {
    animation: floatFromLeft 1s ease forwards;
    transition-delay: 750ms;
}

.ServDesc h3.animate,
.ServDesc p.animate {
    animation: floatFromRight 1s ease forwards;
    transition-delay: 750ms;
}

.ContainerMainSvcs h1.animate,
.LiGroomItem.animate {
    animation: floatFromTop 1s ease forwards;
    transition-delay: 750ms;
}

.ContainerMainSvcs h2.animate,
.ContainMainSvcs h2.animate,
.ContentGroomServ h2.animate,
.groomadvice h2.animate {
    animation: floatFromBottom 1s ease forwards;
    transition-delay: 750ms;
}

.ContainMainSvcs h2,
.ContentGroomServ h2,
.LiGroomItem,
.ServDesc h2,
.ServDesc h3,
.ServDesc p,
.groomadvice h2,
.groomadvice p {
    transition: opacity 0.5s ease;
    opacity: 0;
    transition-delay: 750ms;
}


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


@media screen and (max-width:1920px) {
    .ContainMainSvcs {
        width: 80% !important;
    }

}

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

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

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

@media screen and (max-width:1024px) and (orientation:portrait) {

    .ContainerMainSvcs {
        background-position: 35% bottom;
        width: 100% !important;
        max-width: 100%;
        padding-top: 95%;
    }

    .ContainMainSvcs {
        width: 85% !important;
    }

    .ContainMainSvcs h2 {
        width: 80%;
        font-size: 2.5em;
        text-transform: uppercase;
        text-align: center;
        color: rgb(0, 48, 145);
        padding-top: 75px;
        text-shadow: none;
    }

    .ServDesc {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
    }

    .ServDesc h2 {
        width: 100%;
        font-size: 1.6em;
        color: white;
    }

    .ServDesc h3 {
        width: 85%;
        font-size: 1.2em;
        color: white;
    }

    .includserv {
        width: 95%;
        padding: 12px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: center;
        font-size: .8em;
        line-height: 1.5;
        color: #ffffff;
    }

    .servcspac {
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        padding: 15px 0;
        padding-bottom: 25px;
    }

    .svcbysz {
        width: 18%;
    }

    .svcbysz h3 {
        width: 100%;
        font-size: 1.4em;
        text-align: center;
        text-align-last: center;
        padding-bottom: 15px;
    }

    .svcbysz p {
        width: 98%;
        padding: 8px;
        font-size: 1.2em;
        line-height: 1.5;
        color: white;
        text-align: unset;
    }

    .ContentGroomServ {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100% !important;
    }


    .ContentGroomServ h2 {
        width: 85% !important;
        padding-top: 8px;
        padding-bottom: 25px;
        font-size: 1.6em;
        line-height: 1.2;
        color: #00cf15;
        text-shadow: none;
    }

    .GroomSrvcs {
        width: 100%;
        padding: 10px;
    }

    .LiGroomItem {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: fit-content;
        padding: unset;
        margin: 12px;
    }

    .LiGroomItem .viñeta {
        height: 35px;
    }

    .LiGroomItem .viñeta img {
        height: 100%;
        width: auto;
    }

    .LiGroomItem .GroomItemTxt {
        width: 200px;
        font-size: 1.4em;
        color: rgb(0, 48, 145);
        padding-left: 12px;
        vertical-align: top;
        text-align: left;
    }

    .groomadvice {
        display: flex;
        flex-direction: column;
        width: 85%;
        margin-top: 15px;
        margin-bottom: 5%;
    }

    .groomadvice h2 {
        width: 100%;
        text-align: center;
    }

    .groomadvice p {
        width: 98%;
        padding: 8px;
        font-size: 1.2em;
        line-height: 1.5;
        color: rgb(0, 48, 145);
        text-align: justify;
    }

}

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

@media screen and (max-width:600px) and (orientation:portrait) {

    .ContainerMainSvcs {
        background-position: center bottom;
        width: 100% !important;
        max-width: 100%;
        padding-top: 75%;
    }

    .ContainMainSvcs {
        width: 95% !important;
    }

    .ContainMainSvcs h2 {
        width: 100%;
        font-size: 1.4em;
        text-transform: uppercase;
        text-align: center;
        color: rgb(0, 48, 145);
        padding-top: 15px;
        text-shadow: none;
    }

    .ServDesc {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        padding-top: 10px;
    }

    .ServDesc h2 {
        display: block;
        width: 95%;
        box-sizing: border-box;
        font-size: 1.4em;
        color: white;
    }

    .ServDesc h3 {
        display: block;
        width: 95%;
        box-sizing: border-box;
        font-size: 1.2em;
        color: white;
    }

    .includserv {
        display: block;
        width: 95%;
        box-sizing: border-box;
        padding: 12px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: unset;
        font-size: .8em;
        line-height: 1.5;
        color: #ffffff;
    }

    .servcspac {
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        padding-bottom: 25px;
    }

    .svcbysz {
        width: 95%;
        margin-top: 20px;
    }

    .svcbysz h3 {
        width: 95%;
        font-size: 1.4em;
        text-align: center;
        text-align-last: center;
        padding-bottom: 6px;
    }

    .svcbysz p {
        width: 98%;
        padding: 8px;
        font-size: 1.2em;
        line-height: 1;
        color: white;
        text-align: unset;
    }

    .ContentGroomServ {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100% !important;
    }


    .ContentGroomServ h2 {
        width: 85% !important;
        padding-top: 8px;
        padding-bottom: 25px;
        font-size: 1.4em;
        color: #00cf15;
        text-shadow: none;
    }

    .GroomSrvcs {
        width: 100%;
        padding: 10px;
    }

    .LiGroomItem {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: fit-content;
        padding: unset;
        margin: 12px;
    }

    .LiGroomItem .viñeta {
        height: 35px;
    }

    .LiGroomItem .viñeta img {
        height: 100%;
        width: auto;
    }

    .LiGroomItem .GroomItemTxt {
        width: 200px;
        font-size: 1.4em;
        color: rgb(0, 48, 145);
        padding-left: 12px;
        vertical-align: top;
        text-align: left;
    }

    .groomadvice {
        display: flex;
        flex-direction: column;
        width: 85%;
        margin-top: 15px;
        margin-bottom: 5%;
    }

    .groomadvice h2 {
        width: 100%;
        text-align: center;
    }

    .groomadvice p {
        width: 98%;
        padding: 8px;
        font-size: 1.2em;
        line-height: 1.5;
        color: rgb(0, 48, 145);
        text-align: justify;
    }
}

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