.hero-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 7px 13px;

    border-radius: 20px;

    background: #d9f3f5;
    color: #087485;

    font-size: 12px;
    font-weight: 700;
}
/* =========================================================
   HERO SLIDES
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    color: #ffffff;
    background: #064D59;
}


/* Slides container */

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}


/* Individual slide */

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


/* Active slide */

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


/* Image */

.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.52) 42%,
            rgba(0, 0, 0, 0.22) 75%,
            rgba(0, 0, 0, 0.32) 100%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.hero-container {
    position: relative;
    z-index: 2;

    width: min(1200px, 90%);

    min-height: 720px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   CONTENT
   ========================================================= */

.hero-content {
    width: min(650px, 100%);
}


/* Slide number */

.hero-slide-number {
    display: flex;

    align-items: center;

    gap: 5px;

    height: 65px;

    margin-bottom: 25px;

    padding-left: 18px;

    border-left: 1px solid
        rgba(255, 255, 255, 0.7);
}

.hero-slide-number span {
    font-size: 27px;
    font-weight: 700;
}

.hero-slide-number small {
    font-size: 15px;
    opacity: 0.75;
}


/* Heading */

.hero-content h1 {
    margin: 0;

    max-width: 700px;

    font-size:
        clamp(48px, 5.5vw, 78px);

    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -2px;

    color: #ffffff;
}

.hero-content h1 span {
    display: block;
}


/* Description */

.hero-content p {
    max-width: 570px;

    margin: 28px 0;

    font-size: 16px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.88);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;
}

.hero-buttons .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.25s ease;
}


.hero-buttons .btn-primary {
    background: #0BA2B2;

    color: #ffffff;

    border: 1px solid #0BA2B2;
}

.hero-buttons .btn-primary:hover {
    background: #075763;

    border-color: #075763;

    transform: translateY(-2px);
}


.hero-buttons .btn-outline {
    background: transparent;

    color: #ffffff;

    border: 1px solid
        rgba(255, 255, 255, 0.8);
}

.hero-buttons .btn-outline:hover {
    background: #ffffff;

    color: #075763;

    transform: translateY(-2px);
}


/* =========================================================
   ARROWS
   ========================================================= */

.hero-navigation {
    display: flex;

    gap: 10px;

    margin-top: 28px;
}

.hero-nav-btn {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid
        rgba(255, 255, 255, 0.75);

    background:
        rgba(0, 0, 0, 0.15);

    color: #ffffff;

    font-size: 21px;

    cursor: pointer;

    transition: 0.25s ease;
}

.hero-nav-btn:hover {
    background: #ffffff;

    color: #075763;
}


/* =========================================================
   WATCH VIDEO
   ========================================================= */

.hero-watch-video {
    position: absolute;

    right: 0;
    bottom: 45px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 18px;

    border: 1px solid
        rgba(255, 255, 255, 0.8);

    border-radius: 30px;

    color: #ffffff;

    background:
        rgba(0, 0, 0, 0.15);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    backdrop-filter: blur(4px);

    transition: 0.25s ease;
}

.hero-watch-video:hover {
    background: #ffffff;

    color: #075763;
}


.watch-icon {
    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    border-radius: 50%;

    font-size: 8px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .hero {
        min-height: 680px;
    }

    .hero-container {
        min-height: 680px;

        width: 88%;
    }

    .hero-slide img {
        object-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.45)
            );
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-watch-video {
        right: auto;
        left: 6%;
        bottom: 25px;
    }

}