html {
    font-size: 100%;
}

body {
    background: #D9E9BA;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
/*    color: #FFF;*/
    color: rgb(12, 121, 77);
    line-height: 28px;
    text-align: center;
    overflow-x: hidden !important;
    margin: auto !important;
}


/* Internet Explorer 10 in Windows 8 and Windows Phone 8 Bug fix */

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

a {
    -webkit-transition: all ease 0.25s;
            transition: all ease 0.25s;
}

a:hover {
    text-decoration: none;
}

.btn:focus,
.btn:active {
    outline: inherit;
}

textarea:focus, input:focus {
    color: #ffffff;
}
/* Other fixes*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
            box-sizing: border-box;
}

ul,
ol {
    padding-left: 0 !important;
}

li {
    list-style: none;
}


/*---------------------------------------
   Typography                
-----------------------------------------*/

/* FONT FACE LOADER */
@font-face {
    font-family: 'Lane';
    src: url('fonts/lanenar_Lane.eot');
    src: url('fonts/lanenar_Lane.eot?#iefix') format('embedded-opentype'), url('fonts/lanenar_Lane.woff') format('woff'), url('fonts/lanenar_Lane.ttf') format('truetype'), url('fonts/lanenar_Lane.svg#Lane') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
 
    @font-face {
        font-family: 'Lane';
        src: url('fonts/lanenar_Lane.svg#Lane') format('svg');
    }
}

/* HEADINGS */

h1 {
    font-family: 'Lane', sans-serif;
    font-weight: normal;
    font-size: 3.75rem;
    line-height: 4.688rem;
}

.logo {
  padding: 60px;
  max-width: 100%;
}

.buttons a {
    font-size: 18px;
    font-weight: 400 !important;
    border-radius: 4px !important;
    text-shadow: 0 !important;
    color: #ffffff;
    min-width: 150px;
    border: none;
    padding: 16px 25px 16px 25px;
    margin: 5px;
    -webkit-transition: all ease 0.25s;
            transition: all ease 0.25s;
    line-height: 1.33;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    text-decoration: none;
    background: rgb(12, 121, 77);
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.buttons a:hover, .buttons a:focus, .buttons a:active {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad;
}


/* ********* */
/* --------------------------------------
=========================================
RESPONSIVE FIXES
=========================================
-----------------------------------------*/
 

@media (max-width: 991px) {
 
    
    body {
        font-size: 15px;
        line-height: 26px;
    }

    header .solid-color {
        min-height: 800px;
    }

    .app-brief .left-align {
        text-align: center;
    }

    .colored-line-left {
        float: none;
        margin: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
 
    
    html {
        font-size: 90%;
    }

    .intro-section {
        padding-top: 10%;
    }

}

@media (max-width: 767px) {
 
    
    html {
        font-size: 80%;
    }

    body {
        font-size: 15px;
        line-height: 26px;
    }
    
    h1 {
      font-size: 2.2rem;
      line-height: 3.5rem;
    }

    .intro-section {
        padding-top: 9%;
    }
}

@media (max-width: 480px) {
 
    
    html {
        font-size: 65%;
    }
    
    h1 {
      font-size: 2.2rem;
      line-height: 3.5rem;
    }

    .intro-section {
        padding-top: 2%;
    }

    .intro-section .intro {
        margin-bottom: 16px;
    }

    .intro-section .buttons {
        margin-top: 15px;
    }

    .buttons a {
        font-size: 15px;
        min-width: 100px;
        padding: 11px 20px 11px 20px;
    }
}

@media (max-width: 320px) {
 
    html {
        font-size: 60.5%;
    }
    
    h1 {
      font-size: 2.2rem;
      line-height: 3.5rem;
    }
}



