.page .hero {
    grid-template-columns: 1fr;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    /* background: rgb(2,44,66);
    background: linear-gradient(90deg, rgba(2,44,66,1) 0%, rgba(108,176,209,1) 100%);
    color: #fff; */
    height: calc(70vh);
}
.hero_title {
    font-size: 6.4rem;
    font-weight: 300;
}
.hero_logo {
    margin: 0 auto;
    max-width: 250px;
}
.hero_subtitle {
    font-size: 3.6rem;
    font-weight: 800;
}
.hero_description {
    font-size: 1.8rem;
    text-align: center;
    color: #EF5000;
}
.hero_description p {
    line-height: 1.4;
}
.hero_buttons {
    margin-top: 45px;
}
.heroBtn {
    display: inline-block;
    padding: 15px 50px;
    border-radius: 30px;
    color: #fff;
    margin: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    background: #EF5000;
    text-decoration: none;
}
.heroBtn.dark {
    background-color: #655768;
    box-shadow: 0 1px 1px 0 #3a313c, inset 0 -1px 3px 0 #3a313c;
}


@media screen and (max-width: 992px){
    .page .hero {
        height: 100vh;
    }
    .hero_title {
        font-size: 5.4rem;
    }
    .hero_subtitle {
        font-size: 2rem;
    }
    .hero_description {
        font-size: 1.6rem;
    }
    .hero_buttons {
        margin-top: 30px;
    }
    .heroBtn {
        display: block;
    }
}
