.home-slider {
    width: 100%;
    height: 550px;
    background: #999999;
    overflow: hidden;
}

.home-slider-logo-only {
    height: var(--header-height);
    background: transparent;
    overflow: visible;
}

.home-slider .slide-home-page {
    position: relative;
    display: flex;
    height: 550px;
}

.home-slider .slider-img-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: all 1s;
}

.home-slider .slide-home-page img {
    height: 320px;
    position: absolute;
    right: 0;
    bottom: 125px;
    display: block;
    border: 2px solid var(--color-main-brigth);
    background: var(--color-main-brigth-ultra);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.slide-home-page .content-slide {
    max-width: 50%;
    margin-top: 180px;
    transform: translateX(-100%);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.slide-home-page .slide-title {
    display: block;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 38px;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.slide-home-page .slide-text {
    display: block;
    color: #FFFFFF;
    font-size: 23px;
    margin-top: 10px;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.splide__slide.is-active.is-visible .content-slide {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.slide-text p {
    line-height: 30px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

.header-logo img {
    width: 100%;
}

.splide__pagination {
    width: 243px;
    padding: 0 25px;
    background: #FFFFFF;
    height: var(--header-height);
    bottom: 0;
    left: calc(50% - 150px);
    border-radius: 20px 20px 0 0;
}

.splide__pagination .splide__pagination__page {
    background: #FFFFFF;
    width: 15px !important;
    height: 15px !important;
    border-radius: 100%;
    border: 2px solid var(--color-main-dark);
    margin: 0 3px;
}
.splide__pagination .splide__pagination__page.is-active {
    width: 15px !important;
    height: 15px !important;
    border-radius: 100%;
    background: var(--color-main-dark);
    transform: scale(1) !important;
}
