/*==========================================================
Section : Hero
Version : 2.0
Author  : Erwin Echon
==========================================================*/
.mbi-hero {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--mbi-header-height) + 40px);
    padding-bottom: 80px;
    min-height: calc(100vh - var(--mbi-header-height));
    display: flex;
    align-items: center;
    background-color: #fff;
    background-image: url("../img/hero/hero-background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mbi-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    top: -220px;
    left: -180px;
    background: radial-gradient(circle,
            rgba(0, 45, 172, .12),
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mbi-hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -260px;
    bottom: -260px;
    background: radial-gradient(circle,
            rgba(4, 120, 99, .10),
            transparent 70%);

    pointer-events: none;
    z-index: 0;
}

/* ==========================================================
    Hero Container
========================================================== */
.mbi-hero-container {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 3rem;
    min-height: 720px;
    position: relative;
}

/* ==========================================================
   Hero Content
========================================================== */
.mbi-hero-content {
    max-width: 720px;
    position: relative;
    z-index: 5;
}

/* ==========================================================
   Hero Label
========================================================== */
.mbi-hero-label {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 28px;
    padding: .8rem 1.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 45, 172, .08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.mbi-label-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mbi-secondary);
    box-shadow:
        0 0 0 6px rgba(4, 120, 99, .12);
}

.mbi-label-text {
    color: var(--mbi-primary);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ==========================================================
   Hero Title
========================================================== */
.mbi-hero-title {
    margin-bottom: 30px;
    font-size: clamp(3.4rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: var(--mbi-primary);
}

.mbi-hero-title span {
    /* display: block; */
    color: var(--mbi-secondary);
}

/* ==========================================================
   Hero Description
========================================================== */
.mbi-hero-description {
    max-width: 560px;
    margin-bottom: 42px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--mbi-text-light);
}

/* ==========================================================
   Hero Actions
========================================================== */
.mbi-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    margin-top: 10px;
}

/* ==========================================================
   Hero Visual
========================================================== */
.mbi-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mbi-hero-visual::after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 28px;
    background: rgba(0, 0, 0, 0.12);
    filter: blur(24px);
    border-radius: 50%;
    z-index: 0;
}

.mbi-hero-visual-wrapper {
    position: relative;
    width: 100%;
}

.mbi-hero-image {
    display: block;
    width: 122%;
    max-width: 920px;
    margin-left: -200px;
    position: relative;
    z-index: 2;
    filter:
        drop-shadow(0 40px 80px rgba(0, 45, 172, .12));
    animation: mbi-float 8s ease-in-out infinite;
}

/* ==========================================================
   Hero Animation
========================================================== */
@keyframes mbi-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }

}