/* =========================================
   BASE
========================================= */

html {
    scroll-behavior: smooth;
}

* {
    font-family: 'Open Sans', sans-serif;
}

a {
    color: #0050ff;
    text-decoration: none;
    cursor: pointer;
    transition: color .25s ease, opacity .25s ease;
}

a:hover {
    color: #003fd1;
}

a:active,
a:focus {
    color: #002ea1;
    outline: none;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

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

.home-layout .masthead {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 582px;
    line-height: 60px;
    color: #fff;
    position: relative;
}

/* Background image */
.home-layout .hero-bg {
    background-color: #b6e3ff;
    background-image: url(/static/images/stock/hero-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

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

.hero-content {
    padding: 80px 0 126px;
    padding-inline: 10px;
	gap: 1rem;
}

.hero-title h1 {
    font: normal normal 800 70px/75px Open Sans;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: left;
}

.hero-product h3 {
    font: normal normal 700 30px/34px Open Sans;
    margin-bottom: 25px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: left;
}

.hero-subtitle p {
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-align: left;
}

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

.btn {
    border-radius: 4px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s linear;
    color: #fff;
	border: none;
}

/* Hero buttons */
.hero-btn {
    padding: 16px 30px;
    font-size: 18px;
}

button.green-btn {
    background-color: #52c02b;
}

button.blue-btn {
    background-color: #41afee;
}

.hero-btn a {
    color: #fff;
}

/* =========================================
   AUTO WRAP UTILITY
========================================= */

.auto-wrap {
    width: 100%;
}

@media (min-width: 900px) {
    .auto-wrap {
        width: 50%;
    }
}

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

@media (max-width: 680px) {

    .home-layout .hero-bg {
        background-image: url(/front/images/system/home-beta/heroheader_mobile_bg.jpg);
    }

    .hero-content {
        height: 780px;
        padding: 40px 0 126px;
    }

    .hero-title h1 {
        font-size: 12vw;
        line-height: 1.1;
        text-align: center;
    }

    .hero-product h3 {
        font-size: 4vw;
        text-align: center;
    }

    .hero-subtitle {
        display: flex;
        flex-direction: column;
        place-items: center;
        text-align: center;
    }

    .hero-subtitle button {
        width: 280px;
        height: 63px;
        margin: 8px;
        display: block;
    }
}
