.hero{
    min-height:850px;

    background:
    linear-gradient(
        rgba(0,62,126,.7),
        rgba(0,62,126,.7)
    ),
    url('../images/hero.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.hero .container{
    max-width:900px;
}

.hero h1{
    color:#fff;

    font-size:clamp(
        2.4rem,
        8vw,
        5rem
    );

    line-height:1.1;

    font-weight:800;

    margin-bottom:20px;

    max-width:100%;

    word-break:normal;

    overflow-wrap:break-word;
}

.hero h1 span{
    color:#E30613;
    display:block;
}

.hero p{
    color:#fff;
    font-size:20px;
    margin-bottom:30px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#E30613;

    color:#fff;

    text-decoration:none;

    padding:15px 30px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.hero-subtitle{

    color:white;

    font-size:20px;

    font-weight:500;

    margin-bottom:20px;

    opacity:.9;
}