:root {
    --vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e: #00d090;
    --vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f: #0b2a42;
    --vId-5213400d-2e6c-416c-aa9a-7f9bdb176cc2: #e8e8e8;
    --vId-e9fd7878-01a1-4505-bc29-0df0f1be2f3a: #f9f9f9;
    --vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f: #f9f9fdff;
    --vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256: #111;
}

        /* 
 Credits to
 GitHub Repository: https://github.com/MathiasOxholm/humbleScroll
 User: MathiasOxholm

 */
        :root {
            --cdhs-delay: 0ms;
            --cdhs-easing: var(--cdhs-ease-out);
            --cdhs-duration: 600ms;
            --cdhs-ease-in: cubic-bezier(0.4, 0, 1, 1);
            --cdhs-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
            --cdhs-ease-out: cubic-bezier(0, 0, 0.2, 1);
            --cdhs-ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
            --cdhs-opacity: 1;
            --cdhs-translate-y: 0;
            --cdhs-translate-x: 0;
            --cdhs-scale: 1;
            --cdhs-rotate: 0deg;
            --cdhs-perspective: 0;
            --cdhs-rotate-x: 0deg;
            --cdhs-rotate-y: 0deg;
            --cdhs-skew-x: 0deg;
            --cdhs-skew-y: 0deg;
            --cdhs-translate-ratio: 1;
            --cdhs-scale-ratio: 0.2;
            --cdhs-duration-ratio: 1;
            --cdhs-translate-x-amount: 2rem;
            --cdhs-translate-y-amount: 3rem;
            --cdhs-flip-x-amount: 100deg;
            --cdhs-flip-y-amount: -100deg;
            --cdhs-perspective-amount: 2000px;
            --cdhs-stagger-amount: 100ms;
            --cdhs-skew-amount: 20deg;
            --cdhs-reveal-amount: 100%;
            --cdhs-blur: 0;
            --cdhs-blur-amount: 5px
        }

        [data-cdhs*=ease-in] {
            --cdhs-easing: var(--cdhs-ease-in)
        }

        [data-cdhs*=ease-out] {
            --cdhs-easing: var(--cdhs-ease-out)
        }

        [data-cdhs*=ease-in-out] {
            --cdhs-easing: var(--cdhs-ease-in-out)
        }

        [data-cdhs*=ease-out-back] {
            --cdhs-easing: var(--cdhs-ease-out-back)
        }

        [data-cdhs*=sm] {
            --cdhs-translate-ratio: 0.5
        }

        [data-cdhs*=md] {
            --cdhs-translate-ratio: 0.75
        }

        [data-cdhs*=lg] {
            --cdhs-translate-ratio: 1.5
        }

        [data-cdhs*=xl] {
            --cdhs-translate-ratio: 2
        }

        [data-cdhs*="2xl"] {
            --cdhs-translate-ratio: 3
        }

        [data-cdhs~=extra-slow] {
            --cdhs-duration-ratio: 3
        }

        [data-cdhs~=slow] {
            --cdhs-duration-ratio: 1.5
        }

        [data-cdhs~=fast] {
            --cdhs-duration-ratio: 0.75
        }

        [data-cdhs~=extra-fast] {
            --cdhs-duration-ratio: 0.5
        }

        [data-cdhs*=fade],
        [data-cdhs*=zoom] {
            --cdhs-opacity: 0
        }

        [data-cdhs*=zoom-in] {
            --cdhs-scale: calc(1 + var(--cdhs-scale-ratio))
        }

        [data-cdhs*=zoom-out] {
            --cdhs-scale: calc(1 - var(--cdhs-scale-ratio))
        }

        [data-cdhs~=up] {
            --cdhs-translate-y: calc(var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
        }

        [data-cdhs~=down] {
            --cdhs-translate-y: calc(0px - var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
        }

        [data-cdhs~=left] {
            --cdhs-translate-x: calc(var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
        }

        [data-cdhs~=right] {
            --cdhs-translate-x: calc(0px - var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
        }

        [data-cdhs*=flip] {
            --cdhs-perspective: var(--cdhs-perspective-amount);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden
        }

        [data-cdhs*=flip-up] {
            --cdhs-rotate-x: calc(0deg - var(--cdhs-flip-x-amount))
        }

        [data-cdhs*=flip-down] {
            --cdhs-rotate-x: var(--cdhs-flip-x-amount)
        }

        [data-cdhs*=flip-left] {
            --cdhs-rotate-y: calc(0deg - var(--cdhs-flip-y-amount))
        }

        [data-cdhs*=flip-right] {
            --cdhs-rotate-y: var(--cdhs-flip-y-amount)
        }

        [data-cdhs*=blur] {
            --cdhs-blur: var(--cdhs-blur-amount)
        }

        [data-cdhs*=skew-up] {
            --cdhs-skew-y: var(--cdhs-skew-amount)
        }

        [data-cdhs*=skew-down] {
            --cdhs-skew-y: calc(0deg - var(--cdhs-skew-amount))
        }

        [data-cdhs*=skew-right] {
            --cdhs-skew-x: var(--cdhs-skew-amount)
        }

        [data-cdhs*=skew-left] {
            --cdhs-skew-x: calc(0deg - var(--cdhs-skew-amount))
        }

        [data-cdhs*=reveal] {
            overflow: hidden
        }

        [data-cdhs*=reveal-up] * {
            --cdhs-translate-y: var(--cdhs-reveal-amount)
        }

        [data-cdhs*=reveal-down] {
            --cdhs-translate-y: calc(0px - var(--cdhs-reveal-amount))
        }

        [data-cdhs*=reveal-right] {
            --cdhs-translate-x: calc(0px - var(--cdhs-reveal-amount))
        }

        [data-cdhs*=reveal-left] {
            --cdhs-translate-x: var(--cdhs-reveal-amount)
        }

        @media (prefers-reduced-motion:no-preference) {
            [data-cdhs] {
                filter: blur(var(--cdhs-blur));
                opacity: var(--cdhs-opacity);
                transform: translate3d(var(--cdhs-translate-x), var(--cdhs-translate-y), 0) scale(var(--cdhs-scale)) rotate(var(--cdhs-rotate)) perspective(var(--cdhs-perspective)) rotateX(var(--cdhs-rotate-x)) rotateY(var(--cdhs-rotate-y)) skew(var(--cdhs-skew-x), var(--cdhs-skew-y));
                transition-delay: var(--cdhs-delay);
                transition-duration: calc(var(--cdhs-duration)*var(--cdhs-duration-ratio));
                transition-property: transform, opacity, filter;
                transition-timing-function: var(--cdhs-easing)
            }

            [data-cdhs]:not(.cdhs-inview) {
                /* pointer-events: none */
            }

            [data-cdhs].cdhs-inview {
                --cdhs-opacity: 1;
                --cdhs-translate-y: 0;
                --cdhs-translate-x: 0;
                --cdhs-scale: 1;
                --cdhs-rotate: 0deg;
                --cdhs-rotate-x: 0deg;
                --cdhs-rotate-y: 0deg;
                --cdhs-skew-x: 0deg;
                --cdhs-skew-y: 0deg;
                --cdhs-blur: 0;
                /* pointer-events: auto */
            }
        }

        @media (max-width:768px) {
            body [data-cdhs*="phone:zoom-in"] {
                --cdhs-scale: calc(1 + var(--cdhs-scale-ratio))
            }

            body [data-cdhs*="phone:zoom-out"] {
                --cdhs-scale: calc(1 - var(--cdhs-scale-ratio))
            }

            body [data-cdhs*="phone:up"] {
                --cdhs-translate-y: calc(var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="phone:down"] {
                --cdhs-translate-y: calc(0px - var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="phone:left"] {
                --cdhs-translate-x: calc(var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="phone:right"] {
                --cdhs-translate-x: calc(0px - var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="phone:flip-up"] {
                --cdhs-rotate-x: calc(0deg - var(--cdhs-flip-x-amount))
            }

            body [data-cdhs*="phone:flip-down"] {
                --cdhs-rotate-x: var(--cdhs-flip-x-amount)
            }

            body [data-cdhs*="phone:flip-left"] {
                --cdhs-rotate-y: calc(0deg - var(--cdhs-flip-y-amount))
            }

            body [data-cdhs*="phone:flip-right"] {
                --cdhs-rotate-y: var(--cdhs-flip-y-amount)
            }

            body [data-cdhs*="phone:blur"] {
                --cdhs-blur: var(--cdhs-blur-amount)
            }
        }

        @media (min-width:768px) {
            body [data-cdhs*="tablet:zoom-in"] {
                --cdhs-scale: calc(1 + var(--cdhs-scale-ratio))
            }

            body [data-cdhs*="tablet:zoom-out"] {
                --cdhs-scale: calc(1 - var(--cdhs-scale-ratio))
            }

            body [data-cdhs*="tablet:up"] {
                --cdhs-translate-y: calc(var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="tablet:down"] {
                --cdhs-translate-y: calc(0px - var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="tablet:left"] {
                --cdhs-translate-x: calc(var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="tablet:right"] {
                --cdhs-translate-x: calc(0px - var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="tablet:flip-up"] {
                --cdhs-rotate-x: calc(0deg - var(--cdhs-flip-x-amount))
            }

            body [data-cdhs*="tablet:flip-down"] {
                --cdhs-rotate-x: var(--cdhs-flip-x-amount)
            }

            body [data-cdhs*="tablet:flip-left"] {
                --cdhs-rotate-y: calc(0deg - var(--cdhs-flip-y-amount))
            }

            body [data-cdhs*="tablet:flip-right"] {
                --cdhs-rotate-y: var(--cdhs-flip-y-amount)
            }

            body [data-cdhs*="tablet:blur"] {
                --cdhs-blur: var(--cdhs-blur-amount)
            }
        }

        @media (min-width:1240px) {
            body [data-cdhs*="desktop:zoom-in"] {
                --cdhs-scale: calc(1 + var(--cdhs-scale-ratio))
            }

            body [data-cdhs*="desktop:zoom-out"] {
                --cdhs-scale: calc(1 - var(--cdhs-scale-ratio))
            }

            body [data-cdhs*="desktop:up"] {
                --cdhs-translate-y: calc(var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="desktop:down"] {
                --cdhs-translate-y: calc(0px - var(--cdhs-translate-y-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="desktop:left"] {
                --cdhs-translate-x: calc(var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="desktop:right"] {
                --cdhs-translate-x: calc(0px - var(--cdhs-translate-x-amount)*var(--cdhs-translate-ratio))
            }

            body [data-cdhs*="desktop:flip-up"] {
                --cdhs-rotate-x: calc(0deg - var(--cdhs-flip-x-amount))
            }

            body [data-cdhs*="desktop:flip-down"] {
                --cdhs-rotate-x: var(--cdhs-flip-x-amount)
            }

            body [data-cdhs*="desktop:flip-left"] {
                --cdhs-rotate-y: calc(0deg - var(--cdhs-flip-y-amount))
            }

            body [data-cdhs*="desktop:flip-right"] {
                --cdhs-rotate-y: var(--cdhs-flip-y-amount)
            }

            body [data-cdhs*="desktop:blur"] {
                --cdhs-blur: var(--cdhs-blur-amount)
            }
        }

.home-e-1 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-e335d221.png);
    background-position: 100% 0%;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    transform: rotate(0deg) scale(1) translateX(0px) translateY(0px) translateZ(0px);
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    min-height: 700px;
    position: relative
}

.home-e-283 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    position: relative
}

.home-e-284 {
    padding: 0px 16px 0px 16px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-width: 0px 0px 0px 0px;
    border-style: none none solid none;
    border-color: transparent transparent #e8e8e8 transparent;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: none;
    min-height: 130px;
    position: relative
}

.home-e-285 {
    padding: 30px 0px 30px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-width: 0px 0px 1px 0px;
    border-style: none none solid none;
    border-color: transparent transparent #e8e8e8 transparent;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 1150px;
    position: relative
}

.home-e-296 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 4px;
         column-gap: 4px;
    height: auto;
    width: 180px;
    display: flex;
    min-width: 33%;
    position: relative
}

.home-e-297 {
    -o-object-fit: contain;
       object-fit: contain;
    width: 80px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-298 {
    font-family: Poppins;
    font-size: 30px;
    font-weight: 400;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    line-height: 40px;
    padding: 0px 0px 1px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: -moz-fit-content;
    max-width: fit-content
}

.home-e-293 {
    padding: 0px 0px 0px 0px;
    color: #111111ff;
    text-align: left;
    font-size: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: none;
    position: relative
}

.home-e-286 {
    padding: 15px 0px 15px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    border-width: 0px 0px 0px 0px;
    border-style: none none solid none;
    border-color: transparent transparent #e8e8e8 transparent;
    z-index: 2500;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    margin-right: NaNpx;
    max-width: 1150px;
    position: relative
}

.home-e-294 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100% 100% 100% 100%;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #e8e8e8 #e8e8e8 #e8e8e8 #e8e8e8;
    height: 70px;
    width: 70px;
    display: none;
    position: relative
}

.home-e-295 {
    padding: 0px 0px 0px 0px;
    color: #ffffffff;
    text-align: left;
    font-size: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-287 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    border-radius: 0% 0% 0% 0%;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-288 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 26px;
    padding: 15px 15px 15px 15px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-289 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 26px;
    padding: 15px 15px 15px 15px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-291 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 26px;
    padding: 15px 15px 15px 15px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-290 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 26px;
    padding: 15px 15px 15px 15px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-292 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    box-shadow: 0px 2px 27px 0px #0000004c;
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: #ffffffff;
    line-height: 26px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-width: 160px;
    min-height: 55px
}

.home-e-11 {
    padding: 50px 0px 50px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    transform: rotate(0deg) scale(1) translateX(0px) translateY(0px) translateZ(0px);
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: flex;
    max-width: 1300px;
    min-height: -moz-fit-content;
    min-height: fit-content;
    position: relative
}

.home-e-14 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 620px;
    position: relative
}

.home-e-15 {
    -o-object-fit: cover;
       object-fit: cover;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-12 {
    font-family: Poppins;
    font-size: 50px;
    font-weight: 500;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 60px;
    padding: 12px 0px 20px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-23 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 10px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-16 {
    padding: 30px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-17 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-18 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    box-shadow: 0px 2px 27px 0px #0000004c;
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-19 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 860px;
    max-height: 600px;
    min-height: 560px
}

.home-e-20 {
    padding: 100px 10px 100px 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-17d1b6da.png), url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-764c5953.png);
    background-position: 0% 0%, 500px 800px;
    background-size: 9% auto, 10% auto;
    background-repeat: no-repeat no-repeat, no-repeat no-repeat;
    background-attachment: scroll, scroll;
    background-clip: border-box, border-box;
    background-origin: padding-box, padding-box;
    margin-top: px;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    position: relative
}

.home-e-21 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: px;
    margin-left: px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 1300px;
    position: relative
}

.home-e-22 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 445px;
    position: relative
}

.home-e-13 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-24 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-25 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-26 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-27 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-28 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-29 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 15px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-38 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-31 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 30px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-32 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-33 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 635px;
    position: relative
}

.home-e-34 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    row-gap: 20px;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    z-index: 050;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: flex;
    max-width: 305px;
    position: relative
}

.home-e-35 {
    padding: 34px 20px 34px 20px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-36 {
    -o-object-fit: contain;
       object-fit: contain;
    width: 70px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-37 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-30 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 24px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-39 {
    padding: 0px 0px 0px 0px;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    background-color: #efefef00;
    border-radius: 2px 2px 2px 2px;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #333 #333 #333 #333;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-40 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-41 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    width: auto;
    height: auto;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-42 {
    padding: 34px 20px 34px 20px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-44 {
    -o-object-fit: contain;
       object-fit: contain;
    width: 70px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-45 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-43 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 24px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-46 {
    padding: 0px 0px 0px 0px;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    background-color: #efefef00;
    border-radius: 2px 2px 2px 2px;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #333 #333 #333 #333;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-47 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-48 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    width: auto;
    height: auto;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-49 {
    padding: 60px 0px 0px 0px;
    flex-direction: column;
    row-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 305px;
    position: relative
}

.home-e-50 {
    padding: 34px 20px 34px 20px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-52 {
    -o-object-fit: contain;
       object-fit: contain;
    width: 70px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-53 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-51 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 24px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-54 {
    padding: 0px 0px 0px 0px;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    background-color: #efefef00;
    border-radius: 2px 2px 2px 2px;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #333 #333 #333 #333;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-55 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-56 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    width: auto;
    height: auto;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-57 {
    padding: 34px 20px 34px 20px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-59 {
    -o-object-fit: contain;
       object-fit: contain;
    width: 70px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-60 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-58 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 24px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-61 {
    padding: 0px 0px 0px 0px;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    background-color: #efefef00;
    border-radius: 2px 2px 2px 2px;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #333 #333 #333 #333;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-62 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-63 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    width: auto;
    height: auto;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-64 {
    padding: 100px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: px;
    margin-left: px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 1300px;
    position: relative
}

.home-e-76 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 550px;
    max-height: 600px
}

.home-e-65 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 445px;
    position: relative
}

.home-e-66 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-67 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-68 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-69 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-70 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-71 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-72 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 15px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-75 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-73 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 30px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-74 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-77 {
    padding: 100px 10px 100px 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-98098f54.png);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    margin-top: px;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    position: relative
}

.home-e-80 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-81 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-82 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-83 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-84 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-85 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-86 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: #111111ff;
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 15px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 1100px
}

.home-e-89 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 300;
    color: #111111ff;
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 1100px
}

.home-e-78 {
    padding: 60px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: px;
    margin-left: px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 1300px;
    position: relative
}

.home-e-79 {
    padding: 20px 20px 34px 20px;
    flex-direction: column;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: linear-gradient(270deg, rgba(127, 127, 127, 0.1) 0%, rgba(127, 127, 127, 0.1)97.7%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    box-shadow: 0px 0px 0px 0px #000000;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 350px;
    position: relative
}

.home-e-92 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 320px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-93 {
    padding: 24px 0px 20px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-94 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-95 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-96 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-87 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-97 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-99 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-98 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-91 {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 600;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 1px;
    line-height: 32px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-100 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-90 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-101 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 22px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-88 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-117 {
    padding: 20px 20px 34px 20px;
    flex-direction: column;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: linear-gradient(270deg, rgba(127, 127, 127, 0.1) 0%, rgba(127, 127, 127, 0.1)97.7%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    box-shadow: 0px 0px 0px 0px #000000;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 350px;
    position: relative
}

.home-e-119 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 320px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-120 {
    padding: 24px 0px 20px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-122 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-123 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-125 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-124 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-126 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-128 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-127 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-121 {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 600;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 1px;
    line-height: 32px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-129 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-130 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-131 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 22px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-118 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-102 {
    padding: 20px 20px 34px 20px;
    flex-direction: column;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: linear-gradient(270deg, rgba(127, 127, 127, 0.1) 0%, rgba(127, 127, 127, 0.1)97.7%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    box-shadow: 0px 0px 0px 0px #000000;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 350px;
    position: relative
}

.home-e-104 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 320px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-105 {
    padding: 24px 0px 20px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-107 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-108 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-110 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-109 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-111 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-113 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-112 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-106 {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 600;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 1px;
    line-height: 32px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-114 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-115 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-116 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 22px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-103 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-132 {
    padding: 100px 10px 100px 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    margin-top: px;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    position: relative
}

.home-e-133 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: NaNpx;
    margin-left: NaNpx;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 1300px;
    position: relative
}

.home-e-134 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 445px;
    position: relative
}

.home-e-135 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-136 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-137 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-138 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-139 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-140 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-141 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 15px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-143 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-145 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-146 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-147 {
    padding: 0px 0px 30px 0px;
    flex-direction: column;
    row-gap: 8px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-148 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-149 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    text-align: center;
    font-size: 18px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: flex;
    position: relative
}

.home-e-150 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-151 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-152 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-158 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-159 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    text-align: center;
    font-size: 18px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: flex;
    position: relative
}

.home-e-160 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-161 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-162 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-153 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 15px;
         column-gap: 15px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-154 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    text-align: center;
    font-size: 18px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: flex;
    position: relative
}

.home-e-155 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-156 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-157 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-142 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-144 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 550px;
    max-height: 600px
}

.home-e-163 {
    padding: 100px 10px 100px 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    margin-top: px;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    position: relative
}

.home-e-165 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-166 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-167 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-168 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-169 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-170 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-171 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 35px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 1100px
}

.home-e-164 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: px;
    margin-left: px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 770px;
    position: relative
}

.home-e-180 {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    width: 100.06993006993008%;
    display: flex;
    margin-right: NaNpx;
    position: relative
}

.home-e-179 {
    padding: 0px 0px 0px 0px;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    min-height: 50px;
    position: relative
}

.home-e-178 {
    padding: 70px 20px 20px 20px;
    overflow: visible;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex;
    max-width: NaNpx;
    max-height: none;
    margin-left: NaNpx;
    margin-top: NaNpx
}

.home-e-181 {
    padding: 0px 24px 50px 24px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: linear-gradient(270deg, rgba(127, 127, 127, 0.1) 0%, rgba(127, 127, 127, 0.1)97.7%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    box-shadow: 0px 14px 8px 0px #00000014;
    border-radius: 3px 3px 3px 3px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-182 {
    border-radius: 100% 100% 100% 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
    width: 135px;
    height: 135px;
    margin-top: -70px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-183 {
    padding: 50px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-184 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-185 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 50px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-186 {
    padding: 10px 10px 10px 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-187 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-191 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-190 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-189 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-188 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-204 {
    padding: 70px 20px 20px 20px;
    overflow: visible;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #00000000;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex;
    max-width: NaNpx;
    max-height: none;
    margin-left: NaNpx;
    margin-top: NaNpx
}

.home-e-205 {
    padding: 0px 24px 50px 24px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: linear-gradient(270deg, rgba(127, 127, 127, 0.1) 0%, rgba(127, 127, 127, 0.1)97.7%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    box-shadow: 0px 14px 38px 0px #00000014;
    border-radius: 3px 3px 3px 3px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-206 {
    border-radius: 100% 100% 100% 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
    width: 135px;
    height: 135px;
    margin-top: -70px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-207 {
    padding: 50px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-208 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-209 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 50px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-210 {
    padding: 10px 10px 10px 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-211 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-215 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-214 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-213 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-212 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-192 {
    padding: 70px 20px 20px 20px;
    overflow: visible;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex;
    max-width: NaNpx;
    max-height: none;
    margin-left: NaNpx;
    margin-top: NaNpx
}

.home-e-193 {
    padding: 0px 24px 50px 24px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: linear-gradient(270deg, rgba(127, 127, 127, 0.1) 0%, rgba(127, 127, 127, 0.1)97.7%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    box-shadow: 0px 14px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-194 {
    border-radius: 100% 100% 100% 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
    width: 135px;
    height: 135px;
    margin-top: -70px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-195 {
    padding: 50px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-196 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-197 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 50px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-198 {
    padding: 10px 10px 10px 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 5px;
         column-gap: 5px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-199 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-203 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-202 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-201 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-200 {
    padding: 0px 0px 0px 0px;
    color: #e39c24ff;
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-174 {
    padding: 0px 10px 0px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 0px;
    background-color: #;
    left: auto;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    display: none;
    right: 0px;
    position: absolute;
    bottom: 0px
}

.home-e-173 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px 100px 100px 100px;
    background-color: #0000007f;
    height: 42px;
    width: 42px;
    display: flex;
    position: relative
}

.home-e-172 {
    padding: 0px 0px 0px 0px;
    color: #ffffffcc;
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    min-width: 10px;
    min-height: 10px;
    display: flex;
    position: relative
}

.home-e-177 {
    padding: 0px 10px 0px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 0px;
    top: 0px;
    left: 0px;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    display: none;
    right: auto;
    position: absolute;
    bottom: 0px
}

.home-e-176 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px 100px 100px 100px;
    background-color: #0000007f;
    height: 42px;
    width: 42px;
    display: flex;
    position: relative
}

.home-e-175 {
    padding: 0px 0px 0px 0px;
    color: #ffffffcc;
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    min-width: 10px;
    min-height: 10px;
    display: flex;
    position: relative
}

.home-e-216 {
    padding: 100px 10px 100px 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-17d1b6da.png), url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-764c5953.png);
    background-position: 0% 0%, 500px 800px;
    background-size: 9% auto, 10% auto;
    background-repeat: no-repeat no-repeat, no-repeat no-repeat;
    background-attachment: scroll, scroll;
    background-clip: border-box, border-box;
    background-origin: padding-box, padding-box;
    margin-top: px;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    position: relative
}

.home-e-217 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: px;
    margin-left: px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 1300px;
    position: relative
}

.home-e-228 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 570px;
    position: relative
}

.home-e-229 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    row-gap: 20px;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    z-index: 050;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: flex;
    max-width: 285px;
    position: relative
}

.home-e-230 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-231 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 200px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-234 {
    padding: 20px 20px 34px 20px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-232 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-235 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-237 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-236 {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 23px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-238 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-239 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 200px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-240 {
    padding: 20px 20px 34px 20px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-241 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-242 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-244 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-243 {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 23px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-233 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 285px;
    position: relative
}

.home-e-245 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    background-color: #7f7f7f19;
    box-shadow: 0px 6px 38px 0px #00000033;
    border-radius: 3px 3px 3px 3px;
    border-width: 1px 1px 1px 1px;
    border-style: solid solid solid solid;
    border-color: #ffffff00 #ffffff00 #ffffff00 #ffffff00;
    height: auto;
    width: 100%;
    display: flex;
    min-height: 320px;
    position: relative
}

.home-e-246 {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 200px;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-247 {
    padding: 20px 20px 34px 20px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-248 {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 30px;
    padding: 20px 0px 12px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-249 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    opacity: 70%;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-251 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    text-align: left;
    font-size: 15px;
    line-height: 25px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-250 {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 23px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-218 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 445px;
    position: relative
}

.home-e-219 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-220 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-221 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-222 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-223 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-224 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-225 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 15px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-227 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 26px;
    padding: 0px 0px 40px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-226 {
    padding: 10px 42px 10px 42px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 3px 3px 3px 3px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #ffffffff;
    line-height: 27px;
    box-shadow: 0px 2px 27px 0px #0000004c;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 55px
}

.home-e-252 {
    padding: 100px 10px 100px 10px;
    flex-direction: column;
    align-items: center;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    margin-top: px;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: none;
    position: relative
}

.home-e-254 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    letter-spacing: 3px;
    line-height: 26px;
    padding: 0px 0px 11px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-255 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-256 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-257 {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 26px;
    padding: 0px 0px 20px 0px;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-258 {
    font-family: Open Sans;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 34px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    margin-top: 2px;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-259 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-260 {
    font-family: Poppins;
    font-size: 36px;
    font-weight: 600;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0px 0px 35px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 1100px
}

.home-e-253 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-top: px;
    margin-left: px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 920px;
    position: relative
}

.home-e-261 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    border-radius: 0px 0px 0px 0px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-262 {
    padding: 0px 0px 90px 0px;
    flex-direction: column;
    align-items: center;
    background-color: #00000000;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: 1320px;
    position: relative
}

.home-e-263 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    -moz-column-gap: 46px;
         column-gap: 46px;
    row-gap: 46px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: none;
    position: relative
}

.home-e-264 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    row-gap: 24px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: none;
    position: relative
}

.home-e-273 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 24px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: px;
    position: relative
}

.home-e-274 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 450px;
    min-height: 55px;
    position: relative
}

.home-e-275 {
    padding: 12px 16px 12px 16px;
    font-family: Poppins;
    font-size: 16px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 24px;
    background-color: #ffffff00;
    border: 1px solid #cccccc;
    border-radius: 3px 3px 3px 3px;
    border-style: solid solid solid solid;
    border-color: #d7e0ef #d7e0ef #d7e0ef #d7e0ef;
    box-shadow: 0px 1px 2px 0px #0000000c;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    min-height: 55px
}

.home-e-276 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 450px;
    min-height: 55px;
    position: relative
}

.home-e-277 {
    padding: 12px 16px 12px 16px;
    font-family: Poppins;
    font-size: 16px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 24px;
    background-color: #ffffff00;
    border: 1px solid #cccccc;
    border-radius: 3px 3px 3px 3px;
    border-style: solid solid solid solid;
    border-color: #d7e0ef #d7e0ef #d7e0ef #d7e0ef;
    box-shadow: 0px 1px 2px 0px #0000000c;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    min-height: 55px
}

.home-e-278 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 24px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: px;
    position: relative
}

.home-e-279 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 450px;
    min-height: 55px;
    position: relative
}

.home-e-280 {
    padding: 12px 16px 12px 16px;
    font-family: Poppins;
    font-size: 16px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 24px;
    background-color: #ffffff00;
    border: 1px solid #cccccc;
    border-radius: 3px 3px 3px 3px;
    border-style: solid solid solid solid;
    border-color: #d7e0ef #d7e0ef #d7e0ef #d7e0ef;
    box-shadow: 0px 1px 2px 0px #0000000c;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    min-height: 55px
}

.home-e-281 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    max-width: 450px;
    min-height: 55px;
    position: relative
}

.home-e-282 {
    padding: 12px 16px 12px 16px;
    font-family: Poppins;
    font-size: 16px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 24px;
    background-color: #ffffff00;
    border: 1px solid #cccccc;
    border-radius: 3px 3px 3px 3px;
    border-style: solid solid solid solid;
    border-color: #d7e0ef #d7e0ef #d7e0ef #d7e0ef;
    box-shadow: 0px 1px 2px 0px #0000000c;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    min-height: 55px
}

.home-e-268 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    position: relative
}

.home-e-269 {
    padding: 12px 16px 12px 16px;
    font-size: 16px;
    font-weight: 400;
    font-family: Poppins;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    background-color: #ffffff00;
    border: 1px solid #cccccc;
    border-radius: 3px 3px 3px 3px;
    border-style: solid solid solid solid;
    border-color: #d7e0ef #d7e0ef #d7e0ef #d7e0ef;
    box-shadow: 0px 0px 2px 0px #0000000c;
    z-index: 1;
    resize: none;
    width: 100%;
    height: 128px;
    display: block;
    position: relative
}

.home-e-270 {
    padding: 0px 0px 0px 0px;
    align-items: center;
    -moz-column-gap: 12px;
         column-gap: 12px;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: NaNpx;
    position: relative
}

.home-e-271 {
    padding: 0px 0px 0px 0px;
    font-family: Nunito Sans;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px 4px 4px 4px;
    width: 20px;
    height: 20px;
    display: block;
    min-width: auto;
    min-height: auto;
    max-width: none;
    max-height: none;
    position: relative
}

.home-e-272 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 24px;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-265 {
    padding: 8px 0px 0px 0px;
    flex-direction: column;
    height: auto;
    width: 100%;
    display: flex;
    position: relative
}

.home-e-266 {
    padding: 13px 16px 13px 16px;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 8px;
         column-gap: 8px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 6px 6px 6px 6px;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #333 #333 #333 #333;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-267 {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 26px;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative
}

.home-e-2 {
    padding: 24px 24px 24px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 0px;
    z-index: 250;
    top: 0px;
    left: 0px;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    display: none;
    right: NaNpx;
    max-width: 1980px;
    position: fixed;
    min-height: 100vh;
    bottom: 0px
}

.home-e-3 {
    padding: 60px 22px 60px 22px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffffff;
    z-index: 0100;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 715px;
    position: relative
}

.home-e-10 {
    padding: 0px 0px 0px 0px;
    color: #333;
    text-align: left;
    font-size: 22px;
    left: auto;
    top: 10px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    right: 10px;
    bottom: 0px;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: absolute
}

.home-e-4 {
    font-family: Plus Jakarta Sans;
    font-size: 32px;
    font-weight: 700;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 42px;
    padding: 0px 0px 12px 0px;
    text-align: center;
    opacity: 100%;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 1050px
}

.home-e-9 {
    font-family: Plus Jakarta Sans;
    font-size: 20px;
    font-weight: 400;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 30px;
    padding: 0px 0px 12px 0px;
    opacity: 100%;
    text-align: center;
    z-index: 1;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 550px
}

.home-e-5 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-7 {
    flex-direction: column;
    align-items: center;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 20px;
    min-height: 20px;
    min-width: 20px;
    position: relative;
    display: flex
}

.home-e-6 {
    padding: 8px 16px 8px 12px;
    font-family: Open Sans;
    font-size: 16px;
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    line-height: 26px;
    background-color: #ffffff07;
    border: 1px solid #cccccc;
    border-radius: 8px 8px 8px 8px;
    border-style: solid solid solid solid;
    border-color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256) var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256) var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256) var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256);
    z-index: 1;
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    min-height: 75px;
    max-width: 550px
}

.home-e-8 {
    padding: 8px 40px 8px 40px;
    background-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-radius: 32px 32px 32px 32px;
    border-width: 0px 0px 0px 0px;
    border-style: groove groove groove groove;
    border-color: #333 #333 #333 #333;
    font-family: Inter;
    font-size: 24px;
    font-weight: 700;
    color: #ffffffff;
    line-height: 34px;
    margin-top: 20px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    min-height: 70px;
    max-width: 550px
}

.home-e-299 {
    padding: 200px 16px 50px 16px;
    flex-direction: column-reverse;
    background-color: var(--vId-99e17039-a3d1-4bcb-af59-b8b3c5133c7f);
    background-image: url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-472289e4.png);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box;
    border-width: 0px 0px 0px 0px;
    border-style: none none solid none;
    border-color: transparent transparent #FFD600 transparent;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    margin-right: auto;
    max-width: 1980px;
    position: relative
}

.home-e-300 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 1200px;
    margin-right: auto;
    position: relative
}

.home-e-301 {
    padding: 0px 0px 50px 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    border-width: 0px 0px 1px 0px;
    border-style: none none solid none;
    border-color: transparent transparent var(--vId-e9fd7878-01a1-4505-bc29-0df0f1be2f3a) transparent;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 1150px;
    position: relative
}

.home-e-302 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: stretch;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: 430px;
    position: relative
}

.home-e-341 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 4px;
         column-gap: 4px;
    height: auto;
    width: 180px;
    display: flex;
    position: relative
}

.home-e-342 {
    -o-object-fit: contain;
       object-fit: contain;
    width: 80px;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    max-width: 600px;
    max-height: 600px
}

.home-e-343 {
    font-family: Poppins;
    font-size: 30px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 40px;
    padding: 0px 0px 0px 0px;
    text-align: left;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-303 {
    padding: 35px 0px 40px 0px;
    flex-direction: column;
    align-items: stretch;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-331 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: none
}

.home-e-304 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: stretch;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: relative
}

.home-e-308 {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 32px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-305 {
    padding: 35px 0px 40px 0px;
    flex-direction: column;
    align-items: stretch;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-306 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-307 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-312 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-309 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    align-items: stretch;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: 100%;
    display: flex;
    max-width: -moz-fit-content;
    max-width: fit-content;
    position: relative
}

.home-e-310 {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 32px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-313 {
    padding: 35px 0px 40px 0px;
    flex-direction: column;
    align-items: stretch;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-314 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-315 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100% 100% 100% 100%;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #e8e8e8 #e8e8e8 #e8e8e8 #e8e8e8;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-316 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-317 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    border-radius: 0% 0% 0% 0%;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-318 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-325 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-326 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100% 100% 100% 100%;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #e8e8e8 #e8e8e8 #e8e8e8 #e8e8e8;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-327 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-328 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    border-radius: 0% 0% 0% 0%;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-329 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-330 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-319 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-320 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100% 100% 100% 100%;
    border-width: 0px 0px 0px 0px;
    border-style: solid solid solid solid;
    border-color: #e8e8e8 #e8e8e8 #e8e8e8 #e8e8e8;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-321 {
    padding: 0px 0px 0px 0px;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    text-align: left;
    font-size: 20px;
    line-height: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-322 {
    padding: 0px 0px 0px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    border-radius: 0% 0% 0% 0%;
    height: -moz-fit-content;
    height: fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-323 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-324 {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 0px 0px 0px 0px;
    opacity: 100%;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 200px
}

.home-e-332 {
    padding: 0px 0px 0px 0px;
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    height: auto;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    position: relative
}

.home-e-333 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff33;
    border-radius: 100% 100% 100% 100%;
    height: 40px;
    width: 40px;
    display: flex;
    position: relative
}

.home-e-334 {
    padding: 0px 0px 0px 0px;
    color: #ffffffff;
    text-align: center;
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-339 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff33;
    border-radius: 100% 100% 100% 100%;
    height: 40px;
    width: 40px;
    display: flex;
    position: relative
}

.home-e-340 {
    padding: 0px 0px 0px 0px;
    color: #ffffffff;
    text-align: center;
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-337 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff33;
    border-radius: 100% 100% 100% 100%;
    height: 40px;
    width: 40px;
    display: flex;
    position: relative
}

.home-e-338 {
    padding: 0px 0px 0px 0px;
    color: #ffffffff;
    text-align: center;
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-335 {
    padding: 10px 10px 10px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff33;
    border-radius: 100% 100% 100% 100%;
    height: 40px;
    width: 40px;
    display: flex;
    position: relative
}

.home-e-336 {
    padding: 0px 0px 0px 0px;
    color: #ffffffff;
    text-align: center;
    font-size: 16px;
    width: 10px;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 10px;
    min-height: 10px;
    display: block;
    position: relative
}

.home-e-311 {
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffff;
    line-height: 24px;
    padding: 50px 0px 0px 0px;
    opacity: 100%;
    text-align: center;
    z-index: 1;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    min-height: 10px;
    min-width: 16px;
    position: relative;
    max-width: 1150px
}

* {
    line-height: 1
}

*,
*::before,
*::after {
    box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-weight: 300
}

a {
    color: inherit;
    text-decoration: inherit
}

.left {
    text-align: left
}

.right {
    text-align: right
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.justify {
    text-align: justify
}

.container {
    max-width: 1140px;
    width: 100% !important;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto !important;
    margin-left: auto !important
}

@media (min-width:576px) and (max-width:768px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) and (max-width:992px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) and (max-width:1200px) {
    .container {
        max-width: 960px
    }
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    line-height: 1
}

body {
    font-size: 0;
    font-family: "Nunito Sans"
}

html {
    font-size: 100%
}

input,
textarea,
select {
    min-height: 20px;
    border: 0;
    font-size: 16px
}

.headerOne,
.headerTwo,
.headerThree,
.headerFour,
.headerFive,
.headerSix,
.paragraph {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0.1rem 0;
    width: 100%
}

.lg-text-center-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: inherit
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

a {
    text-decoration: none;
    display: inherit;
    height: inherit;
    width: initial;
    flex-direction: inherit;
    flex-wrap: inherit;
    justify-content: inherit;
    align-items: inherit;
    row-gap: inherit;
    -moz-column-gap: inherit;
         column-gap: inherit;
    -o-object-fit: inherit;
       object-fit: inherit
}

a,
a:link,
a:visited,
a:focus,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;
    cursor: pointer
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: inherit;
       object-fit: inherit;
    border-radius: inherit
}

video {
    width: 100%;
    height: 100%;
    -o-object-fit: inherit;
       object-fit: inherit;
    border-radius: inherit
}

span {
    display: block
}

p span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.paragraph span,
.headerOne span,
.headerTwo span,
.headerThree span,
.headerFour span,
.headerFive span,
.headerSix span {
    display: inline
}

p a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.paragraph a,
.headerOne a,
.headerTwo a,
.headerThree a,
.headerFour a,
.headerFive a,
.headerSix a {
    color: inherit;
    display: inline
}

p strong,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong,
.paragraph strong,
.headerOne strong,
.headerTwo strong,
.headerThree strong,
.headerFour strong,
.headerFive strong,
.headerSix strong {
    font-weight: 700
}

.cd-slider-v1--slidesWrapper {
    height: 100% !important;
    white-space: nowrap !important;
    position: relative !important;
    display: block !important
}

.cd-slider-v1--slidesWrapper>* {
    white-space: normal
}

.cd-slider-v1--slide {
    display: inline-flex !important;
    vertical-align: top !important
}

.cd-slider-v1--slidesWrapper.cd-empty-div {
    padding: 0px 0px 100px 0px !important
}

.cd-slider-v1--slide.cd-empty-div {
    padding: 0px 0px 100px 0px !important
}

.cd-slider-v1--arrowBar {
    z-index: 900
}

.cd-slider-v1--arrowBar>* {
    cursor: pointer
}

.cd-slider-v1--arrowBar i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important
}

.cd-slider-v1--slideTransitionLinear .cd-slider-v1--slide {
    transition: transform 700ms linear 0s !important
}

.cd-slider-v1--slideTransitionEaseIn .cd-slider-v1--slide {
    transition: transform 700ms ease-in 0s !important
}

.cd-slider-v1--slideTransitionEaseOut .cd-slider-v1--slide {
    transition: transform 700ms ease-out 0s !important
}

.cd-slider-v1--slideTransitionEaseInOut .cd-slider-v1--slide {
    transition: transform 700ms ease-in-out 0s !important
}

.cd-slider-v1--slideTransitionEaseOutIn .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.42, 0, 0.58, 1) 0s !important
}

.cd-slider-v1--slideTransitionQuadEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s !important
}

.cd-slider-v1--slideTransitionCubicEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.32, 0.64, 0.45, 0.93) 0s !important
}

.cd-slider-v1--slideTransitionQuartEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.5, 0.9, 0.5, 0.9) 0s !important
}

.cd-slider-v1--slideTransitionQuintEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.23, 1, 0.32, 1) 0s !important
}

.cd-slider-v1--slideTransitionSineEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.39, 0.575, 0.565, 1) 0s !important
}

.cd-slider-v1--slideTransitionExpoEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.7, 0, 0.84, 0) 0s !important
}

.cd-slider-v1--slideTransitionElasticEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s !important
}

.cd-slider-v1--slideTransitionBounceEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s !important
}

.cd-slider-v1--slideTransitionBackEasing .cd-slider-v1--slide {
    transition: transform 700ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s !important
}

.home-e-294:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-288:hover {
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-289:hover {
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-291:hover {
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-290:hover {
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-292:hover {
    background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat no-repeat;
    background-attachment: scroll;
    background-clip: border-box;
    background-origin: padding-box
}

.home-e-17:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-18:hover {
    background-color: #ffffffff;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    border-width: 1px 1px 1px 1px;
    border-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f) var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f) var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f) var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    border-style: solid solid solid solid
}

.home-e-32:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-35:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-39:hover {
    padding: 0px 0px 0px 20px
}

.home-e-42:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-46:hover {
    padding: 0px 0px 0px 20px
}

.home-e-50:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-54:hover {
    padding: 0px 0px 0px 20px
}

.home-e-57:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-61:hover {
    padding: 0px 0px 0px 20px
}

.home-e-74:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-88:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-118:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-103:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-142:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-230:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-238:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-245:hover {
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e)
}

.home-e-226:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-275::-moz-placeholder {
    color: #667085
}

.home-e-275::placeholder {
    color: #667085
}

.home-e-277::-moz-placeholder {
    color: #667085
}

.home-e-277::placeholder {
    color: #667085
}

.home-e-280::-moz-placeholder {
    color: #667085
}

.home-e-280::placeholder {
    color: #667085
}

.home-e-282::-moz-placeholder {
    color: #667085
}

.home-e-282::placeholder {
    color: #667085
}

.home-e-269::-moz-placeholder {
    color: #667085
}

.home-e-269::placeholder {
    color: #667085
}

.home-e-271::-moz-placeholder {
    color: #0000007f
}

.home-e-271::placeholder {
    color: #0000007f
}

.home-e-6::-moz-placeholder {
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256)
}

.home-e-6::placeholder {
    color: var(--vId-f5349128-5a77-4a53-bca0-7dcbd3b7c256)
}

.home-e-315:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-326:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-320:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-333:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-339:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-337:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

.home-e-335:hover {
    background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f)
}

@media (max-width:1199px) {
    .home-e-293 {
        width: auto;
        height: auto;
        display: block
    }

    .home-e-286 {
        padding: 20px 20px 20px 20px;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
        width: 100%;
        display: none;
        min-height: 100vh;
        position: fixed;
        right: 0px;
        bottom: 0px
    }

    .home-e-294 {
        align-items: flex-end;
        width: 100%;
        display: flex
    }

    .home-e-295 {
        width: auto;
        height: auto
    }

    .home-e-287 {
        flex-direction: column
    }

    .home-e-288 {
        text-align: center
    }

    .home-e-289 {
        text-align: center
    }

    .home-e-290 {
        text-align: center
    }

    .home-e-11 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px
    }

    .home-e-14 {
        align-items: center
    }

    .home-e-12 {
        text-align: center
    }

    .home-e-23 {
        text-align: center
    }

    .home-e-16 {
        justify-content: center
    }

    .home-e-21 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px
    }

    .home-e-22 {
        align-items: center
    }

    .home-e-29 {
        text-align: center
    }

    .home-e-38 {
        text-align: center
    }

    .home-e-31 {
        text-align: center
    }

    .home-e-64 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px
    }

    .home-e-65 {
        align-items: center
    }

    .home-e-72 {
        text-align: center
    }

    .home-e-75 {
        text-align: center
    }

    .home-e-73 {
        text-align: center
    }

    .home-e-78 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px
    }

    .home-e-133 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px
    }

    .home-e-134 {
        align-items: center
    }

    .home-e-141 {
        text-align: center
    }

    .home-e-143 {
        text-align: center
    }

    .home-e-147 {
        width: -moz-fit-content;
        width: fit-content
    }

    .home-e-217 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px
    }

    .home-e-218 {
        align-items: center
    }

    .home-e-225 {
        text-align: center
    }

    .home-e-227 {
        text-align: center
    }

    .home-e-2 {
        flex-wrap: wrap-reverse;
        background-image: null;
        background-position: null;
        background-size: null;
        background-repeat: null;
        background-attachment: null;
        background-clip: null;
        background-origin: null
    }

    .home-e-10 {
        width: auto;
        height: auto
    }

    .home-e-301 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 30px;
        -moz-column-gap: 50px;
             column-gap: 50px
    }

    .home-e-302 {
        align-items: center
    }

    .home-e-331 {
        text-align: center
    }

    .home-e-304 {
        align-items: center
    }

    .home-e-309 {
        align-items: center
    }

    .home-e-310 {
        text-align: center
    }

    .home-e-313 {
        align-items: center
    }

    .home-e-316 {
        width: auto;
        height: auto
    }

    .home-e-327 {
        width: auto;
        height: auto
    }

    .home-e-321 {
        width: auto;
        height: auto
    }

    .home-e-334 {
        width: auto;
        height: auto
    }

    .home-e-340 {
        width: auto;
        height: auto
    }

    .home-e-338 {
        width: auto;
        height: auto
    }

    .home-e-336 {
        width: auto;
        height: auto
    }
}

@media (max-width:767px) {
    .home-e-1 {
        position: relative
    }

    .home-e-283 {
        position: relative
    }

    .home-e-284 {
        flex-direction: column;
        justify-content: center;
        position: relative
    }

    .home-e-285 {
        position: relative
    }

    .home-e-296 {
        min-width: -moz-fit-content;
        min-width: fit-content;
        position: relative
    }

    .home-e-297 {
        width: 60px;
        position: relative
    }

    .home-e-298 {
        font-size: 16px;
        line-height: 26px;
        max-width: 200px;
        position: relative
    }

    .home-e-293 {
        position: relative
    }

    .home-e-286 {
        padding: 20px 20px 20px 20px;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
        position: fixed
    }

    .home-e-294 {
        align-items: flex-end;
        position: relative
    }

    .home-e-295 {
        position: relative
    }

    .home-e-287 {
        flex-direction: column;
        position: relative
    }

    .home-e-288 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-289 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-291 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-290 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-292 {
        position: relative
    }

    .home-e-11 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px;
        position: relative
    }

    .home-e-14 {
        position: relative
    }

    .home-e-15 {
        position: relative
    }

    .home-e-12 {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
        position: relative
    }

    .home-e-23 {
        text-align: center;
        position: relative
    }

    .home-e-16 {
        justify-content: center;
        position: relative
    }

    .home-e-17 {
        position: relative
    }

    .home-e-18 {
        position: relative
    }

    .home-e-19 {
        position: relative
    }

    .home-e-20 {
        position: relative
    }

    .home-e-21 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px;
        position: relative
    }

    .home-e-22 {
        align-items: center;
        position: relative
    }

    .home-e-13 {
        position: relative
    }

    .home-e-24 {
        position: relative
    }

    .home-e-25 {
        position: relative
    }

    .home-e-26 {
        position: relative
    }

    .home-e-27 {
        position: relative
    }

    .home-e-28 {
        position: relative
    }

    .home-e-29 {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
        position: relative
    }

    .home-e-38 {
        text-align: center;
        position: relative
    }

    .home-e-31 {
        text-align: center;
        position: relative
    }

    .home-e-32 {
        position: relative
    }

    .home-e-33 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
        position: relative
    }

    .home-e-34 {
        position: relative
    }

    .home-e-35 {
        align-items: center;
        position: relative
    }

    .home-e-36 {
        position: relative
    }

    .home-e-37 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-30 {
        text-align: center;
        position: relative
    }

    .home-e-39 {
        position: relative
    }

    .home-e-40 {
        position: relative
    }

    .home-e-41 {
        position: relative
    }

    .home-e-42 {
        align-items: center;
        position: relative
    }

    .home-e-44 {
        position: relative
    }

    .home-e-45 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-43 {
        text-align: center;
        position: relative
    }

    .home-e-46 {
        position: relative
    }

    .home-e-47 {
        position: relative
    }

    .home-e-48 {
        position: relative
    }

    .home-e-49 {
        position: relative
    }

    .home-e-50 {
        align-items: center;
        position: relative
    }

    .home-e-52 {
        position: relative
    }

    .home-e-53 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-51 {
        text-align: center;
        position: relative
    }

    .home-e-54 {
        position: relative
    }

    .home-e-55 {
        position: relative
    }

    .home-e-56 {
        position: relative
    }

    .home-e-57 {
        align-items: center;
        position: relative
    }

    .home-e-59 {
        position: relative
    }

    .home-e-60 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-58 {
        text-align: center;
        position: relative
    }

    .home-e-61 {
        position: relative
    }

    .home-e-62 {
        position: relative
    }

    .home-e-63 {
        position: relative
    }

    .home-e-64 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px;
        position: relative
    }

    .home-e-76 {
        position: relative
    }

    .home-e-65 {
        align-items: center;
        position: relative
    }

    .home-e-66 {
        position: relative
    }

    .home-e-67 {
        position: relative
    }

    .home-e-68 {
        position: relative
    }

    .home-e-69 {
        position: relative
    }

    .home-e-70 {
        position: relative
    }

    .home-e-71 {
        position: relative
    }

    .home-e-72 {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
        position: relative
    }

    .home-e-75 {
        text-align: center;
        position: relative
    }

    .home-e-73 {
        text-align: center;
        position: relative
    }

    .home-e-74 {
        position: relative
    }

    .home-e-77 {
        flex-wrap: wrap;
        position: relative
    }

    .home-e-80 {
        position: relative
    }

    .home-e-81 {
        position: relative
    }

    .home-e-82 {
        position: relative
    }

    .home-e-83 {
        position: relative
    }

    .home-e-84 {
        position: relative
    }

    .home-e-85 {
        position: relative
    }

    .home-e-86 {
        font-size: 50px;
        line-height: 60px;
        position: relative
    }

    .home-e-89 {
        position: relative
    }

    .home-e-78 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
        position: relative
    }

    .home-e-79 {
        align-items: center;
        position: relative
    }

    .home-e-92 {
        position: relative
    }

    .home-e-93 {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 10px;
        position: relative
    }

    .home-e-94 {
        position: relative
    }

    .home-e-95 {
        position: relative
    }

    .home-e-96 {
        position: relative
    }

    .home-e-87 {
        position: relative
    }

    .home-e-97 {
        position: relative
    }

    .home-e-99 {
        position: relative
    }

    .home-e-98 {
        position: relative
    }

    .home-e-91 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-100 {
        position: relative
    }

    .home-e-90 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-101 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-88 {
        position: relative
    }

    .home-e-117 {
        align-items: center;
        position: relative
    }

    .home-e-119 {
        position: relative
    }

    .home-e-120 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
        position: relative
    }

    .home-e-122 {
        position: relative
    }

    .home-e-123 {
        position: relative
    }

    .home-e-125 {
        position: relative
    }

    .home-e-124 {
        position: relative
    }

    .home-e-126 {
        position: relative
    }

    .home-e-128 {
        position: relative
    }

    .home-e-127 {
        position: relative
    }

    .home-e-121 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-129 {
        position: relative
    }

    .home-e-130 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-131 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-118 {
        position: relative
    }

    .home-e-102 {
        align-items: center;
        position: relative
    }

    .home-e-104 {
        position: relative
    }

    .home-e-105 {
        flex-wrap: wrap;
        justify-content: center;
        position: relative
    }

    .home-e-107 {
        position: relative
    }

    .home-e-108 {
        position: relative
    }

    .home-e-110 {
        position: relative
    }

    .home-e-109 {
        position: relative
    }

    .home-e-111 {
        position: relative
    }

    .home-e-113 {
        position: relative
    }

    .home-e-112 {
        position: relative
    }

    .home-e-106 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-114 {
        position: relative
    }

    .home-e-115 {
        font-size: 22px;
        line-height: 32px;
        text-align: center;
        position: relative
    }

    .home-e-116 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-103 {
        position: relative
    }

    .home-e-132 {
        position: relative
    }

    .home-e-133 {
        flex-wrap: wrap;
        row-gap: 50px;
        justify-content: center;
        position: relative
    }

    .home-e-134 {
        align-items: center;
        position: relative
    }

    .home-e-135 {
        position: relative
    }

    .home-e-136 {
        position: relative
    }

    .home-e-137 {
        position: relative
    }

    .home-e-138 {
        position: relative
    }

    .home-e-139 {
        position: relative
    }

    .home-e-140 {
        position: relative
    }

    .home-e-141 {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
        position: relative
    }

    .home-e-143 {
        text-align: center;
        position: relative
    }

    .home-e-145 {
        position: relative
    }

    .home-e-146 {
        position: relative
    }

    .home-e-147 {
        position: relative
    }

    .home-e-148 {
        position: relative
    }

    .home-e-149 {
        position: relative
    }

    .home-e-150 {
        position: relative
    }

    .home-e-151 {
        position: relative
    }

    .home-e-152 {
        position: relative
    }

    .home-e-158 {
        position: relative
    }

    .home-e-159 {
        position: relative
    }

    .home-e-160 {
        position: relative
    }

    .home-e-161 {
        position: relative
    }

    .home-e-162 {
        position: relative
    }

    .home-e-153 {
        position: relative
    }

    .home-e-154 {
        position: relative
    }

    .home-e-155 {
        position: relative
    }

    .home-e-156 {
        position: relative
    }

    .home-e-157 {
        position: relative
    }

    .home-e-142 {
        position: relative
    }

    .home-e-144 {
        position: relative
    }

    .home-e-163 {
        position: relative
    }

    .home-e-165 {
        position: relative
    }

    .home-e-166 {
        position: relative
    }

    .home-e-167 {
        position: relative
    }

    .home-e-168 {
        position: relative
    }

    .home-e-169 {
        position: relative
    }

    .home-e-170 {
        position: relative
    }

    .home-e-171 {
        font-size: 50px;
        line-height: 60px;
        position: relative
    }

    .home-e-164 {
        position: relative
    }

    .home-e-180 {
        position: relative
    }

    .home-e-179 {
        position: relative
    }

    .home-e-178 {
        position: relative
    }

    .home-e-181 {
        position: relative
    }

    .home-e-182 {
        position: relative
    }

    .home-e-183 {
        position: relative
    }

    .home-e-184 {
        font-size: 50px;
        line-height: 60px;
        position: relative
    }

    .home-e-185 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-186 {
        position: relative
    }

    .home-e-187 {
        position: relative
    }

    .home-e-191 {
        position: relative
    }

    .home-e-190 {
        position: relative
    }

    .home-e-189 {
        position: relative
    }

    .home-e-188 {
        position: relative
    }

    .home-e-204 {
        position: relative
    }

    .home-e-205 {
        position: relative
    }

    .home-e-206 {
        position: relative
    }

    .home-e-207 {
        position: relative
    }

    .home-e-208 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-209 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-210 {
        position: relative
    }

    .home-e-211 {
        position: relative
    }

    .home-e-215 {
        position: relative
    }

    .home-e-214 {
        position: relative
    }

    .home-e-213 {
        position: relative
    }

    .home-e-212 {
        position: relative
    }

    .home-e-192 {
        position: relative
    }

    .home-e-193 {
        position: relative
    }

    .home-e-194 {
        position: relative
    }

    .home-e-195 {
        position: relative
    }

    .home-e-196 {
        font-size: 50px;
        line-height: 60px;
        position: relative
    }

    .home-e-197 {
        font-size: 20px;
        line-height: 30px;
        position: relative
    }

    .home-e-198 {
        position: relative
    }

    .home-e-199 {
        position: relative
    }

    .home-e-203 {
        position: relative
    }

    .home-e-202 {
        position: relative
    }

    .home-e-201 {
        position: relative
    }

    .home-e-200 {
        position: relative
    }

    .home-e-174 {
        position: absolute
    }

    .home-e-173 {
        position: relative
    }

    .home-e-172 {
        position: relative
    }

    .home-e-177 {
        position: absolute
    }

    .home-e-176 {
        position: relative
    }

    .home-e-175 {
        position: relative
    }

    .home-e-216 {
        position: relative
    }

    .home-e-217 {
        flex-wrap: wrap;
        row-gap: 50px;
        position: relative
    }

    .home-e-228 {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
        position: relative
    }

    .home-e-229 {
        position: relative
    }

    .home-e-230 {
        position: relative
    }

    .home-e-231 {
        position: relative
    }

    .home-e-234 {
        align-items: center;
        position: relative
    }

    .home-e-232 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-235 {
        position: relative
    }

    .home-e-237 {
        position: relative
    }

    .home-e-236 {
        position: relative
    }

    .home-e-238 {
        position: relative
    }

    .home-e-239 {
        position: relative
    }

    .home-e-240 {
        align-items: center;
        position: relative
    }

    .home-e-241 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-242 {
        position: relative
    }

    .home-e-244 {
        position: relative
    }

    .home-e-243 {
        position: relative
    }

    .home-e-233 {
        position: relative
    }

    .home-e-245 {
        position: relative
    }

    .home-e-246 {
        position: relative
    }

    .home-e-247 {
        align-items: center;
        position: relative
    }

    .home-e-248 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        position: relative
    }

    .home-e-249 {
        position: relative
    }

    .home-e-251 {
        position: relative
    }

    .home-e-250 {
        position: relative
    }

    .home-e-218 {
        align-items: center;
        position: relative
    }

    .home-e-219 {
        position: relative
    }

    .home-e-220 {
        position: relative
    }

    .home-e-221 {
        position: relative
    }

    .home-e-222 {
        position: relative
    }

    .home-e-223 {
        position: relative
    }

    .home-e-224 {
        position: relative
    }

    .home-e-225 {
        font-size: 50px;
        line-height: 60px;
        text-align: center;
        position: relative
    }

    .home-e-227 {
        text-align: center;
        position: relative
    }

    .home-e-226 {
        position: relative
    }

    .home-e-252 {
        position: relative
    }

    .home-e-254 {
        position: relative
    }

    .home-e-255 {
        position: relative
    }

    .home-e-256 {
        position: relative
    }

    .home-e-257 {
        position: relative
    }

    .home-e-258 {
        position: relative
    }

    .home-e-259 {
        position: relative
    }

    .home-e-260 {
        font-size: 50px;
        line-height: 60px;
        position: relative
    }

    .home-e-253 {
        position: relative
    }

    .home-e-261 {
        position: relative
    }

    .home-e-262 {
        position: relative
    }

    .home-e-263 {
        position: relative
    }

    .home-e-264 {
        position: relative
    }

    .home-e-273 {
        flex-wrap: wrap;
        position: relative
    }

    .home-e-274 {
        position: relative
    }

    .home-e-275 {
        position: relative
    }

    .home-e-276 {
        position: relative
    }

    .home-e-277 {
        position: relative
    }

    .home-e-278 {
        flex-wrap: wrap;
        position: relative
    }

    .home-e-279 {
        position: relative
    }

    .home-e-280 {
        position: relative
    }

    .home-e-281 {
        position: relative
    }

    .home-e-282 {
        position: relative
    }

    .home-e-268 {
        position: relative
    }

    .home-e-269 {
        position: relative
    }

    .home-e-270 {
        position: relative
    }

    .home-e-271 {
        position: relative
    }

    .home-e-272 {
        position: relative
    }

    .home-e-265 {
        position: relative
    }

    .home-e-266 {
        position: relative
    }

    .home-e-267 {
        position: relative
    }

    .home-e-2 {
        flex-wrap: wrap-reverse;
        justify-content: center;
        background-image: null;
        background-position: null;
        background-size: null;
        background-repeat: null;
        background-attachment: null;
        background-clip: null;
        background-origin: null;
        position: fixed
    }

    .home-e-3 {
        align-items: center;
        position: relative
    }

    .home-e-10 {
        position: absolute
    }

    .home-e-4 {
        position: relative
    }

    .home-e-9 {
        position: relative
    }

    .home-e-5 {
        position: relative
    }

    .home-e-7 {
        position: relative
    }

    .home-e-6 {
        position: relative
    }

    .home-e-8 {
        position: relative
    }

    .home-e-299 {
        padding: 100px 16px 100px 16px;
        background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1)97.7%), url(https://salones.clientes.elobradordewebs.es/wp-content/uploads/2026/08/asset-472289e4.png);
        background-position: 50% 50%, 50% 50%;
        background-size: cover, cover;
        background-repeat: no-repeat no-repeat, no-repeat no-repeat;
        background-attachment: scroll, scroll;
        background-clip: border-box, border-box;
        background-origin: padding-box, padding-box;
        position: relative
    }

    .home-e-300 {
        position: relative
    }

    .home-e-301 {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        -moz-column-gap: 50px;
             column-gap: 50px;
        row-gap: 30px;
        position: relative
    }

    .home-e-302 {
        align-items: center;
        position: relative
    }

    .home-e-341 {
        position: relative
    }

    .home-e-342 {
        position: relative
    }

    .home-e-343 {
        font-size: 30px;
        line-height: 40px;
        position: relative
    }

    .home-e-303 {
        position: relative
    }

    .home-e-331 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-304 {
        align-items: center;
        position: relative
    }

    .home-e-308 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-305 {
        position: relative
    }

    .home-e-306 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-307 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-312 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-309 {
        align-items: center;
        position: relative
    }

    .home-e-310 {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        position: relative
    }

    .home-e-313 {
        position: relative
    }

    .home-e-314 {
        position: relative
    }

    .home-e-315 {
        position: relative
    }

    .home-e-316 {
        position: relative
    }

    .home-e-317 {
        position: relative
    }

    .home-e-318 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-325 {
        position: relative
    }

    .home-e-326 {
        position: relative
    }

    .home-e-327 {
        position: relative
    }

    .home-e-328 {
        position: relative
    }

    .home-e-329 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-330 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-319 {
        position: relative
    }

    .home-e-320 {
        position: relative
    }

    .home-e-321 {
        position: relative
    }

    .home-e-322 {
        position: relative
    }

    .home-e-323 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-324 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }

    .home-e-332 {
        position: relative
    }

    .home-e-333 {
        position: relative
    }

    .home-e-334 {
        position: relative
    }

    .home-e-339 {
        position: relative
    }

    .home-e-340 {
        position: relative
    }

    .home-e-337 {
        position: relative
    }

    .home-e-338 {
        position: relative
    }

    .home-e-335 {
        position: relative
    }

    .home-e-336 {
        position: relative
    }

    .home-e-311 {
        font-size: 16px;
        line-height: 26px;
        position: relative
    }
}

.paragraph {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400
}
/* ---- salones landing: real nav + footer (added, not part of the codedesign export) ---- */

.salones-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(249, 249, 253, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e8e8e8;
}
.salones-nav-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.salones-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    text-decoration: none;
}
.salones-brand img { display: block; border-radius: 6px; width: 50px; height: 63px; }
.salones-brand span { color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); font-weight: 500; }
.salones-nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}
.salones-nav-links a {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    text-decoration: none;
}
.salones-nav-links a:hover { color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); }
.salones-nav-cta {
    background: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 999px;
}
.salones-nav-cta:hover { opacity: .9; }
@media (max-width: 700px) {
    .salones-nav-links { gap: 12px; }
    .salones-nav-links a:not(.salones-nav-cta) { display: none; }
}

.salones-footer {
    width: 100%;
    background: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    padding: 40px 16px 28px;
}
.salones-footer-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.salones-footer .salones-brand { color: #fff; justify-content: center; }
.salones-footer-inner p {
    font-family: "Open Sans", sans-serif;
    font-size: 13.5px;
    color: #c7d0d8;
    margin: 0;
    line-height: 1.6;
}
.salones-footer-links a { color: #fff; text-decoration: none; }
.salones-footer-links a:hover { text-decoration: underline; }
.salones-footer-copy { opacity: .65; font-size: 12px !important; margin-top: 8px !important; }

/* ---- salones landing: legal page shell (shared text, fetched live from elobradordewebs.es) ---- */

.salones-legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 20px 80px;
    font-family: "Open Sans", sans-serif;
    color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    line-height: 1.7;
}
.salones-legal h1 {
    font-family: Poppins, sans-serif;
    font-size: 30px;
    margin: 0 0 24px;
}
.salones-legal-body h2 { font-family: Poppins, sans-serif; font-size: 20px; margin: 32px 0 12px; }
.salones-legal-body h3 { font-family: Poppins, sans-serif; font-size: 16px; margin: 24px 0 8px; }
.salones-legal-body p { margin: 0 0 14px; font-size: 15px; }
.salones-legal-body ul, .salones-legal-body ol { margin: 0 0 14px 20px; font-size: 15px; }
.salones-legal-body a { color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); }
.salones-legal-source {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
    font-size: 13px;
    color: #7a8894;
}

/* ---- floating WhatsApp button (same look/number as elobradordewebs.es) ---- */

#salones-whatsapp-float {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
    text-decoration: none;
}
#salones-whatsapp-float:hover { opacity: .9; }
@media (max-width: 480px) {
    #salones-whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

/* ---- /empezar wizard page ---- */

.salones-empezar { max-width: 640px; margin: 0 auto; padding: 56px 20px 90px; font-family: "Open Sans", sans-serif; color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f); }
.salones-empezar-wrap { width: 100%; }
.salones-eyebrow { display: block; font-family: Poppins, sans-serif; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); margin-bottom: 10px; }
.salones-empezar-head h1 { font-family: Poppins, sans-serif; font-size: 32px; margin: 0 0 10px; }
.salones-empezar-head p { font-size: 15px; margin: 0 0 28px; opacity: .85; }
.salones-empezar-notice { background: #fff4e5; border: 1px solid #f3d9ad; border-radius: 10px; padding: 12px 16px; font-size: 14px !important; opacity: 1 !important; }

.salones-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.salones-empezar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.salones-empezar-block { display: block; margin-bottom: 16px; }
.salones-empezar-grid label, .salones-empezar-block { font-size: 13px; font-weight: 600; }
.salones-empezar-grid input, .salones-empezar-block input, .salones-empezar-block textarea {
    display: block; width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #e0e4e8; border-radius: 10px;
    font-family: "Open Sans", sans-serif; font-size: 14px; font-weight: 400; color: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f); box-sizing: border-box;
}
.salones-empezar-block textarea { resize: vertical; }
@media (max-width: 560px) { .salones-empezar-grid { grid-template-columns: 1fr; } }

.salones-empezar-subhead { font-family: Poppins, sans-serif; font-size: 16px; margin: 28px 0 12px; }
.salones-empezar-modules { display: grid; gap: 10px; margin-bottom: 20px; }
.salones-module-card {
    display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: start;
    border: 1.5px solid #e0e4e8; border-radius: 12px; padding: 14px 16px; cursor: pointer; transition: border-color .15s;
}
.salones-module-card:has(input:checked) { border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); background: color-mix(in srgb, var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e) 6%, transparent); }
.salones-module-card input { grid-row: 1 / 3; margin-top: 3px; }
.salones-module-name { font-weight: 700; font-size: 14.5px; display: flex; gap: 8px; align-items: baseline; }
.salones-module-price { font-weight: 600; font-size: 12.5px; color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); }
.salones-module-desc { font-size: 12.5px; opacity: .75; }
.salones-module-disabled { opacity: .5; cursor: not-allowed; }

.salones-empezar-total {
    display: flex; align-items: baseline; gap: 10px; background: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f); color: #fff;
    border-radius: 12px; padding: 16px 20px; margin-bottom: 22px;
}
.salones-empezar-total span { font-size: 13px; opacity: .8; }
.salones-empezar-total strong { font-family: Poppins, sans-serif; font-size: 22px; }
.salones-empezar-total small { font-size: 12px; opacity: .7; }

.salones-empezar-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; margin-bottom: 22px; line-height: 1.5; }
.salones-empezar-consent input { margin-top: 1px; flex: 0 0 auto; }
.salones-empezar-consent a { color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); }

/* Custom checkbox (module cards + consent): a plain unstyled OS checkbox
   (round on some platforms, no brand color) reads as unfinished next to
   this page's own typography/color system, so replace the native box
   with a hand-drawn square + checkmark instead of relying on
   accent-color, which renders inconsistently across browsers. */
.salones-module-card input,
.salones-empezar-consent input {
    appearance: none;
    -webkit-appearance: none;
    width: 19px;
    height: 19px;
    border: 1.5px solid #cfd6dc;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: background .12s, border-color .12s;
    flex-shrink: 0;
}
.salones-module-card input:checked,
.salones-empezar-consent input:checked {
    background: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    border-color: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
}
.salones-module-card input:checked::after,
.salones-empezar-consent input:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(40deg);
}
.salones-module-card input:disabled {
    background: #f2f4f6;
    border-color: #e0e4e8;
    cursor: not-allowed;
}

.salones-empezar-submit {
    display: block; width: 100%; background: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); color: #fff; border: none;
    border-radius: 999px; padding: 16px; font-family: Poppins, sans-serif; font-weight: 600; font-size: 15px; cursor: pointer;
}
.salones-empezar-submit:hover { opacity: .92; }
.salones-empezar-footnote { text-align: center; font-size: 12px; opacity: .6; margin-top: 12px; }

.salones-empezar-done { text-align: center; padding: 60px 20px; }
.salones-empezar-done h1 { font-family: Poppins, sans-serif; font-size: 28px; margin: 0 0 14px; }
.salones-empezar-done p { font-size: 15px; opacity: .85; margin: 0 0 24px; }

/* ---- launch offer banner (empezar page + landing) ---- */

.salones-launch-banner {
    background: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    margin: 4px 0 26px;
}
.salones-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 10px;
    line-height: 1;
}
.salones-launch-banner p { margin: 0 0 8px; font-size: 17px; opacity: 1; line-height: 1.5; font-family: "Open Sans", sans-serif; }
.salones-launch-banner p:last-child { margin-bottom: 0; }
.salones-launch-banner s { opacity: .6; }
.salones-launch-slots { font-size: 14px !important; opacity: .85 !important; font-family: "Open Sans", sans-serif; }

.salones-launch-banner-hero { max-width: 480px; }
.salones-launch-banner-hero .salones-nav-cta { margin-top: 4px; display: inline-block; }

/* ---- cookie consent banner ---- */

#salones-cookie-notice {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 16px;
    max-width: 620px;
    margin: 0 auto;
    z-index: 99999;
    background: var(--vId-b5a0da40-3f01-4ad8-b08a-be05608d5c0f);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    border-radius: 14px;
    padding: 18px 22px;
    font-family: "Open Sans", sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
}
#salones-cookie-notice p { margin: 0 0 14px; }
#salones-cookie-notice a { color: #fff; text-decoration: underline; }
.salones-cookie-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.salones-cookie-actions button {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 999px;
    cursor: pointer;
}
#salones-cookie-essential-only { padding: 8px 20px; background: transparent; color: #fff; border: 2px solid #fff; }
#salones-cookie-accept-all { padding: 10px 22px; background: var(--vId-984c5d00-fdcd-4ed0-97fa-f0a50814c03e); color: #fff; border: none; }
@media (max-width: 480px) {
    #salones-cookie-notice { left: 10px; right: 10px; bottom: 10px; padding: 12px 14px; font-size: 12px; border-radius: 10px; }
    .salones-cookie-actions { justify-content: flex-end; gap: 6px; }
}

/* ---- mobile hero polish ---- */

@media (max-width: 767px) {
    .home-e-15 { display: none; }
    .home-e-14 { padding: 0 20px; box-sizing: border-box; }
    .home-e-12 { font-size: 32px !important; line-height: 40px !important; }
}

.salones-launch-badge-icon { font-size: 16px; line-height: 1; }
