.page-wrapper{
    width:100%;
    overflow:hidden;
}

.container{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:0 20px;
    box-sizing:border-box;
}

.section-spacing{
    margin-bottom:110px;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:30px;
}

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

.hero-overlay{
    position:absolute;
    inset:0;
}

.hero-content{
    position:absolute;
    z-index:2;
}

.hero-content h1{
    margin:0 0 18px;
    color:#fff;
    font-size:72px;
    line-height:1;
    font-weight:700;
    letter-spacing:-3px;
}

.hero-content p{
    margin:0;
    color:rgba(255,255,255,.92);
    font-size:22px;
    line-height:1.7;
}
/* TITLES */

.section-label{
    color:#274c4f;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
}

.section-title{
    color:#152420;
    font-size:54px;
    line-height:1.3;
    font-weight:700;
    letter-spacing:-2px;
}

.section-text{
    color:#42504b;
    font-size:18px;
    line-height:1.9;
}

/* BUTTONS */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:60px;
    padding:0 34px;
    background:#274c4f;
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:999px;
    cursor:pointer;
    transition:.25s;
}

.btn-primary:hover{
    background:#1d3a3c;
}

.btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:60px;
    padding:0 34px;
    background:#fff;
    color:#152420;
    text-decoration:none;
    border-radius:999px;
    transition:.25s;
}

.btn-light:hover{
    background:#eef3f4;
}

/* CARDS */

.card-soft{
    background:#eef3f4;
    border-radius:24px;
}

/* FORM */

.form-control{
    width:100%;
    border:none;
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    box-sizing:border-box;
}