/* =========================
   AWARD HERO
========================= */

.award-hero{

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

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

    position:relative;

}


/* dark overlay */

.award-hero::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);

}


/* TEXT POSITION */

.award-content{

    position:absolute;

    right:120px;
    bottom:120px;

    color:#fff;

    text-align:right;

    max-width:520px;

}


/* TITLE */

.award-content h1{

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

    margin-bottom:20px;

}


/* DESCRIPTION */

.award-content p{

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

}


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

@media (max-width:1024px){

.award-content{

    right:80px;
    bottom:100px;

    max-width:420px;

}

.award-content h1{

    font-size:64px;

}

.award-content p{

    font-size:17px;

}

}


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

@media (max-width:768px){

.award-content{

    right:30px;
    left:30px;

    bottom:80px;

    text-align:left;

    max-width:none;

}

.award-content h1{

    font-size:40px;

}

.award-content p{

    font-size:16px;

}

}