.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1
    }

.h-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease
}

.hero-slide.active .h-bg {
    transform: scale(1)
}

.h-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,rgba(13,31,60,.9) 0%,rgba(13,31,60,.6) 50%,rgba(13,31,60,.2) 100%)
}

.h-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 700px
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s .2s,transform .5s .2s
}

.hero-slide.active .h-badge {
    opacity: 1;
    transform: none
}

.h-title {
    font-family: 'Merriweather',serif;
    font-size: clamp(32px,5.5vw,68px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s .4s,transform .6s .4s
}

.hero-slide.active .h-title {
    opacity: 1;
    transform: none
}

.h-title .r {
    color: #E8293B
}

.h-sub {
    font-size: 16px;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s .6s,transform .6s .6s
}

.hero-slide.active .h-sub {
    opacity: 1;
    transform: none
}

.h-btns {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s .8s,transform .6s .8s
}

.hero-slide.active .h-btns {
    opacity: 1;
    transform: none
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 7px
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.32);
    border: none;
    cursor: pointer;
    transition: all .3s
}

    .hero-dot.active {
        width: 26px;
        border-radius: 4px;
        background: #CC1E2E
    }

.h-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none
}

.h-arr {
    pointer-events: all;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.13);
    border: 2px solid rgba(255,255,255,.26);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px)
}

    .h-arr:hover {
        background: #CC1E2E;
        border-color: #CC1E2E
    }
