/*=========================================
HERO
=========================================*/

.hero{
    position: relative;
    min-height: 760px;
    height: calc(100vh - 118px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(18,53,90,.95) 0%,
        rgba(18,53,90,.86) 30%,
        rgba(18,53,90,.55) 55%,
        rgba(18,53,90,.12) 78%,
        rgba(18,53,90,0) 100%
    );
    z-index:2;
}

.hero-diagonal{
    position: absolute;
    top: -20%;
    right: -12%;
    width: 34%;
    height: 140%;
    background: rgba(226,106,44,.16);
    transform: rotate(18deg);
    z-index: 3;
}

.hero .container{
    position:relative;
    z-index:10;
    display:flex;
    justify-content:flex-start;
    align-items:center;
    height:100%;
}

.hero-content{
    width:min(560px,100%);
    color:#fff;
}

.hero-tag{
    display: inline-block;
    margin-bottom: 24px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
}

.hero h1{
    margin:0 0 24px;
    font-size:clamp(3rem,4vw,4.8rem);
    line-height:.95;
    font-weight:800;
    color:#fff;
}

.hero h1 strong{
    display: block;
    color:var(--secondary);
}

.hero p{
    max-width:500px;
    margin-bottom:38px;
    color:rgba(255,255,255,.92);
    font-size:1.05rem;
    line-height:1.75;
}

.hero-buttons{
    display: flex;
    gap: 18px;
}

.hero .btn-secondary{
    padding: 15px 32px;
    border: 2px solid rgba(255,255,255,.35);
    border-radius: 999px;
    color: #fff;
}

.hero .btn-secondary:hover{
    background: #fff;
    color: #E26A2C;
}

@media (max-width: 992px){

    .hero{
        min-height: 680px;
        height: auto;
    }

    .hero .container{
        padding: 110px 0 80px;
    }

    .hero-content{
        max-width: 100%;
    }

    .hero h1{
        font-size: 3.2rem;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons a{
        width: 100%;
        text-align: center;
    }

    .hero-diagonal{
        display: none;
    }

}