/*
==================================================
HOME HERO
==================================================
*/

.home-hero{

    position:relative;

    min-height:760px;

    height:100vh;

    overflow:hidden;

    background:#F9A720;

}

/*
==================================================
VIDEO
==================================================
*/

.home-hero__video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:.7;

    z-index:1;

}

/*
==================================================
DECORATIVE LAYERS
==================================================
*/

.home-hero__overlay,
.home-hero__orange-blur{

    display:none;

}

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

.home-hero__content{

    position:relative;

    z-index:10;

    width:min(1440px, calc(100vw - 48px));

    height:100%;

    margin:0 auto;

    display:flex;

    align-items:flex-end;

    padding-bottom:90px;

}

/*
==================================================
INNER
==================================================
*/

.home-hero__inner{

    max-width:620px;

    color:#ffffff;

}

/*
==================================================
TITLE
==================================================
*/

.home-hero__title{

    margin:0 0 22px;

    color:#ffffff;

    font-size:72px;

    line-height:.95;

    font-weight:700;

    letter-spacing:-.04em;

}

/*
==================================================
TEXT
==================================================
*/

.home-hero__text{

    margin:0 0 30px;

    max-width:520px;

    color:#ffffff;

    font-size:20px;

    line-height:1.45;

}

/*
==================================================
BUTTON
==================================================
*/

.home-hero__button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:48px;

    padding:0 26px;

    border-radius:999px;

    background:#d85f35;

    color:#ffffff;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    transition:.2s ease;

}

.home-hero__button:hover{

    background:#bf4f2b;

    color:#ffffff;

}

/*
==================================================
RESPONSIVE
==================================================
*/

@media (max-width: 900px){

    .home-hero{

        min-height:680px;

    }

    .home-hero__content{

        padding-bottom:60px;

    }

    .home-hero__title{

        font-size:48px;

    }

    .home-hero__text{

        font-size:18px;

    }

}