/* BASIC SETUP */
* {
    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;
}

h2 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

/* REUSABLE SETUP */
.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

/* BUTTONS */
.btn:link,
.btn:visited,
input[type=submit] {
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
    text-align: center;
}

.hero-text-box a {
    display: block;
    width: 50%;
    margin: 0 25% 15px 25%;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #2ecc71;
    border: 1px solid #2ecc71;
    color: #FFF;
/*    margin: 0 15px 0 0;*/
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #2ecc71;
    color: #27ae60;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #27ae60;
    border: 1px solid #27ae60;
    color: #FFF;
}

/* HEADER */
header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) ,url(img/bg-min.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-attachment: fixed;
}

.box {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}

.hero-text-box h1 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-size: 250%;
    word-spacing: 4px;
}

.hero-img-box img {
    width: 150px;
    height: auto;
    
    display: block;
    margin: auto;
}

/* CONTACT */
.contact-form {
    width: 70%;
    margin: 0 auto;
/*
    margin-left: 20%;
    margin-right: 20%;
*/
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 7px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
}

*:focus {
    outline: none;
}

.form-msg {
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 30px;
}

.success { 
    background-color: rgba(38, 191, 68, 0.8);
    color: #333;
}

.error { 
    background: rgba(209, 46, 46, 0.8);
    color: #FFF;
}