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

.home-hero{

    min-height:720px;
    height:100vh;

    background:url("/assets/images/homemain.webp") center/cover no-repeat;

    position:relative;

}


/* overlay */

.home-hero::before{

    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.75),
        rgba(0,0,0,.35),
        rgba(0,0,0,0)
    );

}


/* TEXT POSITION */

.home-content{

    position:absolute;

    left:120px;
    bottom:120px;

    color:#fff;

    max-width:520px;

}


/* TITLE */

.home-content h1{

    font-size:88px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:20px;

}


/* DESCRIPTION */

.home-content p{

    font-size:18px;
    line-height:1.7;
    opacity:.9;

}

/* =========================
TABLET
========================= */

@media (max-width:1024px){

.home-content{

    left:80px;
    bottom:100px;

}

.home-content h1{

    font-size:64px;

}

}


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

@media (max-width:768px){

.home-content{

    left:30px;
    right:30px;
    bottom:80px;

    max-width:none;

}

.home-content h1{

    font-size:42px;

}

.home-content p{

    font-size:16px;

}

}