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

.hero {

    background: #fff;

    padding: 0;

}

.hero-container{

    max-width:none;

    padding:0;

}

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

.hero-image {

    position: relative;

    min-height: 640px;
    
    width:100%;

    overflow: hidden;

    border-radius: 0px;

    background-image: url("/assets/img/hero/np-hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 89% center;

    box-shadow: var(--shadow-lg);

}

.hero-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.90) 22%,
        rgba(255,255,255,.65) 40%,
        rgba(255,255,255,.28) 58%,
        rgba(255,255,255,0) 76%
    );

}

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

.hero-content {

    position: absolute;

    inset: 0;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    padding: 40px 34px 34px;

}

.hero-subtitle {

    margin-bottom: 12px;

    font-size: 1rem;

    font-weight: 500;

    


text-shadow:
0 1px 2px rgba(255,255,255,.75);

}

.hero h1 {

    
    margin-top:25px;
    margin-bottom:25px;

    max-width: 330px;

    font-size: 2.45rem;

    line-height: .94;

    letter-spacing: -.05em;

}

.hero h1 span {

    display: inline;

}

.hero-text {

    margin-top: 20;

    max-width: 320px;

    margin-bottom: 0;

    font-size: 1rem;

    line-height: 1.6;
    
    color: #000 !important;
    
    text-shadow:
0 1px 2px rgba(255,255,255,.75);

    

}

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

.hero-buttons {

    margin-top: auto;

    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 14px;
    
    padding-bottom:28px;

}

.hero-buttons .btn {

    width: 100%;

}

.hero-buttons .btn-secondary{

    background:#fff;

    border:2px solid #1b2338;

    color:#1b2338;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

}


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

.hero-features {

    padding: 60px 0;

}

.hero-features-grid {

    display: grid;

    gap: 24px;

}

.feature-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

}

.feature-icon {

    font-size: 1.5rem;

    line-height: 1;

}

.feature-item h3 {

    margin-bottom: 6px;

    font-size: 1.15rem;

}

.feature-item p {

    margin: 0;

    

}

/* ==================================================
   DESKTOP
================================================== */

@media (min-width:992px){

.hero {

    padding: 110px 0;

}

.hero-image {

    min-height: 760px;

    background-size: cover;

    background-position: right center;

}

.hero-overlay {

    background: linear-gradient(
        90deg,
        rgba(255,255,255,.96) 0%,
        rgba(255,255,255,.92) 26%,
        rgba(255,255,255,.66) 46%,
        rgba(255,255,255,.22) 62%,
        rgba(255,255,255,0) 80%
    );

}

.hero-content {

    padding: 80px;

}

.hero-subtitle {

    font-size: 1.1rem;

}

.hero h1 {

    max-width: 560px;

    font-size: 4.9rem;

    line-height: .92;

}

.hero-text {

    max-width: 520px;

    font-size: 1.15rem;

}

.hero-buttons {

    flex-direction: row;

    width: auto;

}

.hero-buttons .btn {

    width: auto;

}

.hero-features-grid {

    grid-template-columns: repeat(4,1fr);

    gap: 40px;

}

}