/* 

    ### DESKTOP LAYOUT CSS CODE

*/

.evaload {
    width: 100%;
}

.index-header {
    width:100%;
    height: 100vh;
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)),
    url('../images/hamburger-1414427_1920.jpg');
    background-repeat: no-repeat;
    background-origin: content-box;
    background-size: cover;
}

.hd-idx-wrapper {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 88vh;
} 


.hd-msg {
    width: 100%;
    margin-bottom: 24px;
}


.hd-msg h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 3.5em;
    color: #fff;
    text-align: center;
    letter-spacing: 0.3em;
    word-spacing: 0.1em;
    margin-bottom: 0.5em;
}

.hd-msg h3 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    color: #FFFFFF; 
    text-align: center;
    word-wrap: wrap;
}




/*

  ### Button group styling

*/

.hd-btn-wrapper {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
}

.btn-holder {
    width: 50%;
    display: flex;
    justify-content: center;
}

.btn-consult {
    background: #8DE3C5;
    width: 250px;
    height: 75px;
    border: 0;
}

.btn-pricing {
    background: #FFFFFF;
    width: 250px;
    height: 75px;
    border: 0;
}

.btn-consult a {
    text-align: center;
    color: #FFFFFF;
    font-size: 1.5em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

.btn-pricing a {
    text-align: center;
    color: #020000;
    font-size: 1.5em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}


/*
    ###  Button effects
*/

.btn-consult:hover {
    background: #1B2221;
}

.btn-consult a:hover {
    color: #ccc;
}

.btn-pricing a:hover {
    color: #fff;
}

.btn-pricing:hover {
    background: #8DE3C5;
}



@media(max-width: 750px) {

    /*

    ### top header styling

    */

    .hd-idx-wrapper {
        display: flex; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 88vh;
    }

    .hd-msg {
        width: 80%;
        margin-bottom: 24px;
    }
    
    
    .hd-msg h1 {
        font-family: 'Courier New', Courier, monospace;
        font-size: 3.5em;
        color: #fff;
        text-align: center;
        letter-spacing: 0.1em;
        word-wrap: wrap;
        word-spacing: 0.1em;
        margin-bottom: 0.5em;
    }
    
    .hd-msg h3 {
        font-family: 'Courier New', Courier, monospace;
        font-size: 1.5em;
        color: #FFFFFF; 
        text-align: center;
        word-wrap: wrap;
        line-height: 1.5em;
    }


    .hd-btn-wrapper {
        width: 100%;
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .btn-holder {
        width: 50%;
        display: flex;
        justify-content: center;
    }
    
    .btn-consult {
        background: #8DE3C5;
        width: 180px;
        height: 90px;
        border: 0;
        margin-bottom: 1.7em;
    }
    
    .btn-pricing {
        background: #FFFFFF;
        width: 180px;
        height: 90px;
        border: 0;
    }

    .btn-consult a {
        text-align: center;
        color: #FFFFFF;
        font-size: 1.5em;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: bold;
    }
    
    .btn-pricing a {
        text-align: center;
        color: #020000;
        font-size: 1.5em;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: bold;
    }
}