body {
    background-color: #fff;
    color: #666;
    font: normal 17px "Verdana";
}

p {
    line-height: 20px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Crete Round', serif;
    font-weight: bold;
    color: #5B7A9F;
    font-size: 35px;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-weight: 300;
    color: #444;
    font-size: 55px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-size: 30px;
    color: #444;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    color: #5B7A9F;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h5 {
    font-size: 15px;
    color: #444;
    font-weight: bold;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #444;
}

a:hover {
    color: #5B7A9F;
}

strong {
    font-weight: bold;
}

small {
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.clear {
    clear: both;
}

.wrapper {
    margin: 0 auto;
    padding: 0 15px;
    width: 940px;
}

header {
    height: 80px;
}

header h1 {
    float: left;
    margin-top: 32px;
}

header h1 .color {
    color: #02b8dd;
}

header nav {
    float: right;
}

header nav ul li {
    float: left;
    display: inline-block;
    margin-top: 50px;
}

header nav ul li a {
    color: #444;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-right: 20px;
}

#hero {
    height: 350px;
    padding-top: 1px;
    background: #e8eced url('../images/hero.jpg') no-repeat center;
}

#features ul {
    margin: 0;
}

#features ul {
    width: 100%;
    float: left;
    margin-right: 10px;
    text-align: left;
}

#features ul.feature-1 {
    background: url('../images/features-icon-1.png') no-repeat top center;
}

#features ul .feature-2 {
    background: url('../images/features-icon-2.png') no-repeat top center;
}

#features ul.feature-3 {
    background: url('../images/features-icon-1.png') no-repeat top center;
}

#footer-content {
    padding: 40px 0 40px 100px;
    text-align: center;
}

#footer-content article {
    width: 31%;
    height: 240px;
    float: left;
    background-color: #EDBB99;
    margin-right: 15px;
}

/* LOGO AND TEXT CENTERING */

#top-box {
    background-color: #f0f0f0;
    width: 100%;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 80px;
    vertical-align: middle;
    margin-left: 10px;
}

h1 {
    font-family: 'Crete Round', serif;
    font-weight: bold;
    color: #5B7A9F;
    font-size: 35px;
    text-align: center;
    margin: 0;
    flex-grow: 1;
}

.favicon {
    width: 30px;
    margin-right: 10px;
}

/* END OF LOGO AND TEXT CENTERING */

#content {
    position: relative;
}

#content img {
    position: absolute;
    top: 20px;
    left: 30px;
}

#logo {
    position: relative;
}

#logo img {
    position: absolute;
    top: 8px;
    right: 30px;
}

#image {
    height: 600px;
    padding-top: 1px;
    background: #e8eced url('../images/hero.jpg');
}

input[type=text],
select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #444;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #ccc;
}

#prd {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

#squaredThree {
    width: 20px;
    position: relative;
    margin: 20px auto;
    label {
        width: 20px;
        height: 20px;
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(top, #222 0%, #45484d 100%);
        border-radius: 4px;
        box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, .4);
        &:after {
            content: '';
            width: 9px;
            height: 5px;
            position: absolute;
            top: 4px;
            left: 4px;
            border: 3px solid #fcfff4;
            border-top: none;
            border-right: none;
            background: transparent;
            opacity: 0;
            transform: rotate(-45deg);
        }
        &:hover::after {
            opacity: 0.3;
        }
    }
    input[type=checkbox] {
        visibility: hidden;
        &:checked+label:after {
            opacity: 1;
        }
    }
}

