html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: “proxima-nova”, Sans-Serif;
    line-height: 28px;
    color: #6f6f6f;
}


/***************************
General
***************************/

.center {
    text-align: center;
}

.italic {
    font-style: italic;
}


/***************************
Mixins
***************************/


/* Media Queries */


/***************************
Typography
***************************/

h1 {
    font-size: 2.3em;
    line-height: 45px;
}

h2 {
    font-size: 1.4em;
}

h3 {
    font-size: 1.17em;
}

h4 {
    font-size: 1em;
}

h5 {
    font-size: .83em;
}

h6 {
    font-size: .75em;
}

p,
li {
    font-size: 1.3em;
    font-weight: 100;
}


/***************************
Margins & Padding
***************************/

.no-marg {
    margin: 0;
}

.half-left-marg {
    margin-left: 50%;
}


/***************************
Floats
***************************/

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear {
    clear: both;
}


/***************************
Container
***************************/

.container {
    width: 1170px;
    margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
    .container {
        width: 970px;
    }
}

@media only screen and (max-width: 992px) {
    .container {
        width: 750px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

.container-2 {
    width: 800px;
    margin: 0 auto;
}

@media only screen and (max-width: 992px) {
    .container-2 {
        width: 750px;
    }
}

@media only screen and (max-width: 768px) {
    .container-2 {
        width: 100%;
        padding: 0 15px;
    }
}


/***************************
Row
***************************/

.row {
    width: 100%;
}


/***************************
Columns
***************************/

.one-half {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .one-half {
        width: 100%;
    }
}


/***************************
Buttons
***************************/

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all .3s ease-in-out 0s;
    text-decoration: none;
    border: none;
    border-radius: 5px;
}

.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
}

.btn-sage-green {
    color: #fff;
    background-color: #0f9a94;
}


/***************************
Jumbotron
***************************/

.jumbotron {
    padding: 200px 0 400px 0;
    margin: 0;
    color: #fff;
    background: #424242;
    background-image: url(../min-image/blue-book-worth-monkey-jumbo.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media only screen and (max-width: 992px) {
    .jumbotron {
        padding: 160px 0;
    }
}

@media only screen and (max-width: 768px) {
    .jumbotron {
        padding: 80px 0 160px 0;
        background-image: url(../min-image/blue-book-worth-monkey-jumbo-mobile.jpg);
    }
}

@media only screen and (max-width: 480px) {
    .jumbotron {
        padding: 50px 0 100px 0;
    }
}

.jumbotron .content {
    padding: 0 0 0 50px;
}

@media only screen and (max-width: 992px) {
    .jumbotron .content {
        padding: 0 0 0 30px;
    }
}

@media only screen and (max-width: 768px) {
    .jumbotron .content {
        padding: 0 0 0 0px;
        text-align: center;
    }

    .jumbotron .content h1 {
        font-size: 2em;
    }
}

.jumbotron .content h1 {
    margin: 20px 0;
}


/***************************
Sections
***************************/

.section-one {
    margin: -50px 0 0px 0;
}

@media only screen and (max-width: 1200px) {
    .section-one {
        margin: -50px 0 0px 0;
    }
}

@media only screen and (max-width: 768px) {
    .section-one {
        margin: -50px 0 0px 0;
    }
}

@media only screen and (max-width: 480px) {
    .section-one {
        margin: -50px 0 0px 0;
    }
}

.section-one .section-one-image-container {
    width: 100%;
    height: auto;
    text-align: center;
}

.section-one .section-one-image-container img {
    width: 100%;
    height: auto;
}

.section-two {
    padding: 50px 0;
}

.section-two .content .btn {
    margin: 60px 0;
}

@media only screen and (max-width: 480px) {
    .section-two .content .btn {
        margin: 35px 0;
    }
}

.section-two .content ul {
    padding: 0;
    list-style: none;
    list-style-position: inside;
}

.section-two .content ul li {
    text-indent: -5px;
}

.section-two .content ul li:before {
    position: relative;
    left: -5px;
    content: "-";
}

.section-two .content .logo-image-container {
    width: 300px;
    height: auto;
    margin: 0 auto 60px auto;
}

@media only screen and (max-width: 480px) {
    .section-two .content .logo-image-container {
        margin: 60px auto;
    }
}

.section-two .content .logo-image-container img {
    width: 100%;
    height: auto;
}
