/* Only Default.aspx loads this file. Never targets legacy/subpage banners. */
.dt-home-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #eaf3fb;
    position: relative;
    overflow: hidden;
}

    .dt-home-hero *, .dt-home-hero *:before {
        box-sizing: border-box;
    }

.dt-home-hero__swiper {
    width: 100%;
}

.dt-home-hero .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #eaf3fb;
}

.dt-home-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dt-home-hero .swiper-slide-active .dt-home-hero__image {
    animation: dt-banner-settle 5.5s ease-out both;
}

@keyframes dt-banner-settle {
    from {
        transform: scale(.985);
    }

    to {
        transform: scale(1);
    }
}

.dt-home-hero__prev, .dt-home-hero__next, .dt-home-hero__pause {
    display: grid;
    place-items: center;
    border: 1px solid #ffffff80;
    background: #123b68cf;
    color: white;
    cursor: pointer;
    box-shadow: 0 3px 14px #102c4526;
    transition: background .2s;
}

.dt-home-hero__prev, .dt-home-hero__next {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 17px;
}

.dt-home-hero__prev {
    left: 24px;
}

.dt-home-hero__next {
    right: 24px;
}

.dt-home-hero__controls {
    position: absolute;
    z-index: 3;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - 24px);
    padding: 3px 9px;
    border-radius: 30px;
    background: #123b68cf;
}

.dt-home-hero__pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto !important;
}

.dt-home-hero .swiper-pagination-bullet {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0 2px !important;
    opacity: 1;
    border: 7px solid transparent;
    background: #fff;
    background-clip: content-box;
    border-radius: 50%;
}

.dt-home-hero .swiper-pagination-bullet-active {
    background-color: #ffdf69;
}

.dt-home-hero__pause {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

.dt-home-hero button:hover {
    background-color: #0755a5;
}

.dt-home-hero :focus-visible {
    outline: 3px solid #ffda60;
    outline-offset: 3px;
}

.dt-home-hero.is-single .dt-home-hero__controls, .dt-home-hero.is-single .dt-home-hero__prev, .dt-home-hero.is-single .dt-home-hero__next {
    display: none;
}

@media (max-width: 1023px) {
    .dt-home-hero__swiper {
    }

    @keyframes dt-banner-settle {
        from {
            transform: scale(.9);
        }

        to {
            transform: scale(1);
        }
    }
}

@media (max-width: 599px) {
    .dt-home-hero__swiper {
    }

    .dt-home-hero__prev, .dt-home-hero__next {
        width: 38px;
        height: 38px;
        top: auto;
        bottom: 12px;
        transform: none;
        font-size: 15px;
    }

    .dt-home-hero__prev {
        left: 12px;
    }

    .dt-home-hero__next {
        right: 12px;
    }

    .dt-home-hero__controls {
        bottom: 12px;
        max-width: calc(100% - 112px);
        padding: 5px 4px;
        gap: 4px;
        height: 28px;
    }
}

@media (prefers-reduced-motion:reduce) {
    .dt-home-hero * {
        transition-duration: 0s !important;
        animation: none !important;
    }
}