/* stylelint-disable indentation */
/* stylelint-enable indentation */
.c-slider-block {
    position: relative;
}
.c-slider-block .swiper-pagination-bullet {
    position: relative;
    background: white;
}
.c-slider-block .swiper-pagination-bullet::after {
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    content: "";
    display: block;
    border: 1px solid white;
    border-radius: 100%;
    position: absolute;
}
.c-slider-block .swiper-pagination-bullet-active {
    border-color: white;
}
.c-slider-block .swiper-pagination-bullet-active::after {
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    content: "";
    display: block;
    background: var(--color-orange);
    border-radius: 100%;
    position: absolute;
}
.c-slider-block__addon {
    --sfy-text-color: white;
}
@media screen and (max-width: 79.99em) {
    .c-slider-block__addon {
        margin: 2.8125rem -2.8125rem -2.8125rem;
        padding: 1.5625rem 2.8125rem;
    }
}
@media screen and (min-width: 80em) {
    .c-slider-block__addon {
        margin: 3.125rem -3.125rem -3.125rem;
        padding: 1.875rem 3.125rem;
    }
}

@media screen and (max-width: 79.99em) {
    .c-slider-block__content {
        text-align: center;
        padding: 2.1875rem 2.8125rem;
    }
}
@media screen and (min-width: 80em) {
    .c-slider-block__content {
        --sfy-heading-color: white;
        --sfy-text-color: white;
        --shadow-color: var(--color-orange);
        position: absolute;
        z-index: 5;
        top: 50%;
        left: 50%;
        padding: 2.5rem 3.125rem;
        background: var(--color-grey);
        transform: translate(25%, -50%);
    }
}
.c-slider-block__content h2 {
    font-family: "Smooch Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 3.75rem;
    line-height: 3.3125rem;
    font-weight: 600;
}
@media screen and (min-width: 80em) {
    .c-slider-block__content h2 {
        font-size: 4.6875rem;
        line-height: 4.0625rem;
    }
}
.c-slider-block__content p {
    font-family: "canada-type-gibson", sans-serif;
    font-size: 1.25rem;
    line-height: 1.6875rem;
    margin: 0.9375rem 0 !important;
}
@media screen and (min-width: 80em) {
    .c-slider-block__content p {
        font-size: 1.875rem;
        line-height: 2.5rem;
    }
}

.c-slider-block__swiper {
    width: 100%;
    height: 100%;
    --swiper-theme-color: black;
    --swiper-pagination-color: transparent;
    --swiper-pagination-bullet-inactive-color: transparent;
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-navigation-size: 33px;
    --swiper-pagination-bullet-size: 16px;
}

.c-slider-block__slide-caption {
    width: 100%;
    left: 3.75rem;
    font-family: "Smooch Sans", sans-serif;
    font-weight: 600;
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 600;
    position: absolute;
    color: white;
    bottom: 1.875rem;
}
@media screen and (max-width: 79.99em) {
    .c-slider-block__slide-caption {
        display: none;
    }
}

.c-slider-block__slide {
    aspect-ratio: 375/270;
}
@media screen and (min-width: 80em) {
    .c-slider-block__slide {
        aspect-ratio: unset;
        height: calc(100vh - 100px) !important;
    }
}

.c-slider-block__img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}
