/* ================= HERO ================= */

.hero-breadcrumb{
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 24px;
    margin-top: 70px;

    font-size: 15px;
    line-height: 1;
}

.hero-breadcrumb a{
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-weight: 500;
    transition: .3s ease;
}

.hero-breadcrumb a:hover{
    color: #00bcd4;
}

.hero-breadcrumb span{
    color: #00bcd4;
    font-weight: 600;
    line-height: 1;
}

.hero-breadcrumb strong{
    color: #fff;
    font-weight: 700;
}

.alma-hero{
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    padding-top: 60px;
}

.alma-hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alma-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(0,0,0,.88),
    rgba(0,0,0,.45));
}

.alma-hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    color: white;
    max-width: 700px;
}

.alma-hero-content span{
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-size: 14px;
    opacity: 1.8;
    color: #00bcd4;
    font-weight: 1000;
}

.alma-hero-content h1{
    font-size: 90px;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 700;
}

.alma-hero-content p{
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

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

.alma-content{
    padding: 120px 8%;
    background: #f7f8fa;
}

.alma-container{
    display: flex;
    gap: 60px;
    align-items: center;
}

.alma-left{
    flex: 1;
}

.mini-title{
    color: #00bcd4;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.alma-left h2{
    font-size: 52px;
    line-height: 1.2;
    margin: 20px 0;
    color: #111;
}

.alma-left p{
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

.alma-right{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.alma-card{
    background: white;
    padding: 35px;
    border-radius: 25px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.alma-card:hover{
    transform: translateY(-10px);
}

.alma-card h3{
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.alma-card p{
    color: #666;
    line-height: 1.8;
}

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

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

@media (max-width: 991px) {

    .alma-hero{
        height: 100vh;
        padding-top: 0;
    }

    .alma-hero-content{
        left: 30px;
        right: 30px;
        max-width: unset;
        top: 55%;
        transform: translateY(-50%);
    }

    .alma-hero-content span{
        display: inline-block;
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
        color: #00bcd4;
    }

    .alma-hero-content h1{
        font-size: 58px;
        line-height: 0.95;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .alma-hero-content p{
        font-size: 18px;
        line-height: 1.7;
        max-width: 90%;
    }

    .alma-container{
        flex-direction: column;
    }

    .alma-left h2{
        font-size: 38px;
    }

    .alma-right{
        grid-template-columns: 1fr;
        width: 100%;
    }
}

@media (max-width: 991px){

    .hero-breadcrumb{
        gap: 6px;
        margin-bottom: 16px;
        font-size: 11px;
        letter-spacing: .3px;
    }

    .hero-breadcrumb a{
        color: rgba(255,255,255,.75);
    }

    .hero-breadcrumb span{
        color: #00bcd4;
        font-weight: 600;
    }

    .hero-breadcrumb strong{
        color: #fff;
        font-weight: 700;
    }

}