.evr-hero{

    position:relative;

    min-height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:#fff;

    background:url("../images/hero.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.evr-hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.60)
    );

}

.evr-hero-content{

    position:relative;

    z-index:5;

    width:90%;

    max-width:900px;

}

.evr-hero h1{

    font-size:56px;

    font-weight:700;

    margin-bottom:20px;

}

.evr-hero p{

    font-size:22px;

    margin-bottom:35px;

    opacity:.95;

}

.evr-search-box{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    padding:20px;

    border-radius:18px;

    margin-bottom:30px;

}

.evr-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:40px;

    flex-wrap:wrap;

}

.evr-btn{

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.evr-btn-primary{

    background:#0066ff;

    color:#fff;

}

.evr-btn-secondary{

    background:#fff;

    color:#111;

}

.evr-btn:hover{

    transform:translateY(-3px);

}

.evr-stats{

    display:flex;

    justify-content:center;

    gap:60px;

    flex-wrap:wrap;

}

.evr-stats strong{

    display:block;

    font-size:34px;

}

.evr-stats span{

    opacity:.9;

}

@media(max-width:768px){

.evr-hero{

min-height:450px;

}

.evr-hero h1{

font-size:36px;

}

.evr-hero p{

font-size:18px;

}

}