/*---------------------------------------------------------------------------------------------*/
/*   General                                                                    */
/*---------------------------------------------------------------------------------------------*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix { zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 180px;
    margin-bottom: 20px;
    color: #d92820;
    font-size: 240%;
    word-spacing: 3px;
    letter-spacing: 1px;
    display: block;
}
    
h2 {
    font-size: 180%;    
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #e67e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

h3 {
    font-size: 110%;    
    margin-bottom: 15px;
}

/*---------------------------------------------------------------------------------------------*/
/*           Paragraphs                                                          */
/*---------------------------------------------------------------------------------------------*/

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/*---------------------------------------------------------------------------------------------*/
/*         Header                                                            */
/*---------------------------------------------------------------------------------------------*/

header {
    background-image: url(img/smaller.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*---------------------------------------------------------------------------------------------*/
/*         Buttons                                                            */
/*---------------------------------------------------------------------------------------------*/

.btn:link,
.btn:visited {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn:hover,
.btn:active {
    background-color: #8dc8e6;
    border: 1px solid #8dc8e6;
}

.btn-full:link,
.btn-full:visited {
    background-color: #4324c6;
    border: 1px solid #4324c6;
    color: #fff;
    margin-right: 15px;
}

.btn-full:hover,
.btn-full:active,
input[type=submit]:hover,   
input[type=submit]:active {
    background-color: #8dc8e6;
    border: 1px solid #8dc8e6;
}

