:root{
    --gray : #9a9a9a;
    --green :  #37471e;
    --tan : #91734f;
    
}

body{
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;    
}
b{
    font-weight: 700;
}
.page{
    max-width: 1680px;
    margin: auto;    
}        
p, li{         
    line-height: 1.5;
}

.gray{
    color: var(--gray);
}


.white{
    color: white;
}

.h1{ font-size: 32px;}

@media(min-width: 960px){
    .h1{ font-size: 48px;}
}

@media(min-width: 1240px){
    .h1{ font-size: 64px;}
}

header{
    margin-bottom: 24px;
}


@media(min-width: 760px){
    header{
        display: flex;
        padding: 16px;
        margin-bottom: 0;
    }

    header .contact-links{
        flex: 1;
        display: flex;
        flex-direction: column;        
        align-items: flex-end;
        justify-content: center;
    }       
}

@media(min-width: 960px){
    header .contact-links{
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }
}

.logo{
    width: 140px;    
    margin: 24px auto;
}

.logo img{
    display: block;
    width: 100%;
}

.contact-links > div{
    margin: 8px 16px;
    font-size: 14px;
}

@media(min-width: 760px){
    .contact-links > div{     
        font-size: 18px;
    }
}

.contact-links > div > span{
    text-transform: uppercase;
    color: var(--gray);
    margin-right: 12px;
}

.contact-links > div > a{
    color: black;
}

footer .contact-links > div{
    margin: 16px 0;
}

footer .contact-links > div > span{
    color: white;
}


.section .section__img img{
    display: block;
    width: 100%;
}

.section__branding .section__content{    
    background-color: #91734f;
    position: relative;
    padding: 24px 32px;
    margin:-32px 24px 0 24px;    
    border: 10px solid white;
    color:white;
    z-index: 3;
    box-shadow: 0 2px 4px 1px rgba(0,0,0,0.25);
}

.section__services .section__content{
    padding:16px;
    background-color: var(--green);
    color: white;
}


/**
    Grid
**/
@media(min-width: 775px){
    .section{
        display: grid;
        grid-template-columns: 1fr 64px 64px 1fr;    
    }

    .section .green-bg{   
        background-color: var(--green);
        position: relative;
        z-index: 0;
    }

    .section .section__img{
        position: relative;
        z-index: 1;
    }


    .section .section__content{
        position: relative; 
        z-index: 3;
        color: white;
    }

    /**
        Branding
    **/

    .section__branding .green-bg{
        grid-column: 2 / -1;
        grid-row: 1 / 2;       
    }

    .section__branding .section__img{
        grid-column: 1 / 4;
        grid-row: 1;
        margin: 64px 0;
        border: 10px solid white;
    }


    .section__branding .section__content{
        grid-column: 3 / -1;
        grid-row: 1;        
        max-width: 576px;    
        padding: 32px 50px;
        margin: auto 32px auto 0;                
    }

    /**
        Services
    **/
    .section__services .green-bg{
        grid-column: 1 / 4;
        grid-row: 1 / 2;
        background-color: var(--green);
        position: relative;
        z-index: 0;
    }

    .section__services .section__img{
        grid-column: 2 / -1;
        grid-row: 1;
        margin: auto;    
        border: 10px solid white;
    }


    .section__services .section__content{
        grid-column: 1 / 2;
        grid-row: 1;
        padding: 32px 50px;
        margin: 64px 0;  
        background-color: none;  
    }
}

@media(min-width: 960px){
    .section__branding .section__img{        
        margin: 64px 0 64px 32px;
    }
}

/**
    Text Block
**/
.text-block{
    padding: 24px 16px;    
}

@media(min-width: 860px){
    .text-block{
        padding: 64px 16px;    
    }
}

.text-block > div{
    max-width: 740px;
    margin: auto;
    text-align: center;
}

footer{
    background:var(--tan);
    padding: 24px;
    text-align: center;        
}