:root {
    /* Brand (from project brief) */
    --brand-green: #044c26;   /* Main Color in logo */
    --brand-gold:  #c39933;   /* Secondary Color in logo */
    --brand-green-trans: #004e2594;
    /* --brand-green-trans: #044c2694; */

    /* Neutrals */
    --grey-900: #1a1a1a;
    --grey-800: #2a2a2a;
    --grey-700: #4a4a4a;
    --grey-600: #5f5f5f;
    --grey-500: #8a8a8a;
    --grey-300: #e6e6e6;
    --grey-200: #efefef;
    --grey-100: #f7f7f7;
    --white:    #ffffff;

    --ts-gold:   0 0 8px rgba(195, 153, 51, .65); /* brand glow */
}
.container{
    width: 80%;
    margin-left: 10%;
}

hr{
    margin-bottom: 100px;
}

h1{
    font-size: 50px;
}


hr{
    margin-bottom: 100px;
}

h1{
    font-size: 50px;
}


/* Hero */
.hero-section{
    height: auto;
}
.hero-section .hero-img{
    position: absolute;
    z-index: -2;

}
.hero-section .container{
    margin-top: 350px;
    z-index: 2;
}
.hero-section .ag-logo{
    position: absolute;
}

.lead{
    text-shadow: var(--ts-strong);
    color: #000000;
    width: 50%;
    margin-top: 920px;
}
.lead p{
    color: #000000;
}





.page-header{
    width: 100%;
    text-align: center;
}
.ag-logo{
    width: 40%;
    margin-left: 10%;
    margin-top: 150px;
    margin-bottom: 50px;
    display: block;
    max-width: 100%;
    height: auto;
    /* Stacks like text-shadow: you can chain multiple drop-shadows */
    filter:
        brightness(0)         /* crush to black */
        saturate(100%)        /* keep it pure black */
        drop-shadow(0 12px 24px rgba(0,0,0,.25))
        drop-shadow(0 3px 8px rgba(0,0,0,.15));
}
.contact-logo{
    width: 100%;
    margin-bottom: 20px;
}

.contact-note{
    margin-top: 500px;
}

.vl{
    width: 4px;
    height: 700px;
    background-color: var(--brand-gold);
}

form{
    width: 100%;

}
.form{
    width: 100%;
}
.form-row{
    margin-bottom: 20px;
}
.form-actions{
    margin-bottom: 50px;
}
input{
    border-color: var(--brand-green);
}

.wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 50px;
    margin-top: 50px;
}

.mt{
    margin-top: 50px;
}


@media (max-width: 1080px) {
    .container{
        width: 90%;
        margin-left: 5%;
    }
    .ag-logo{
        width: 90%;
        margin-left: 5%;
        margin-top: 230px;
    }

    .lead{
        margin-top: 500px;
        width: 100%;
    }

}

@media (max-width: 520px){

    .container{
        width: 90%;
        margin-left: 5%;
    }
    .ag-logo{
        width: 90%;
        margin-left: 5%;
        margin-top: 50px;
    }
    .lead{
        margin-top: 250px;
    }
    .wrapper{
        display: flex;
        flex-wrap: wrap-reverse;
    }
    .vl{
        width: 100%;
        height: 2px;
    }
    


}
@media (min-width: 2560px){

    /* glabals */
    .container{
        width: 80%;
        margin-left: 10%;
    }
    p, li{
        font-size: 20px;
    }

    /* hero section */
    .hero-section h1{
        font-size: 50px;
    }
    .hero-img{
        width: 100%;
    }
    .lead{
        font-size: 20px;
    }
    
    .ag-logo{
        width: 80%;
        margin-left: 10%;
        margin-top: 300px;
    }

    .lead{
        margin-top: 1200px;
    }
    .contact-logo{
        width: 50%;

    }

}

