@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800);
*,
*:after,
*::before {
    box-sizing: border-box;
}

/* General styles and layout */
body {
    background: #f5f1e6; /* light khaki background */
    color: #4b3b2a; /* dark brown text */
    font-family: 'Open Sans', Arial, sans-serif;
    max-width: 100%;
}

.container {
    overflow: hidden;
    max-width: 960px;
}

.container svg {
    display: block;
}

section {
    position: relative;
    text-align: center;
    color: #4b3b2a;
}

/* Section pseudo-elements */
section::before,
section::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

/* Header styles */
header section {
    min-height: 250px;
}

header h1 {
    margin-bottom: 0px;
}

header i.fa {
    font-size: 2em;
    color: #8b5e3c !important; /* warm brown */
}

header h2 {
    font-family: 'Open Sans';
    font-weight: 800;
    color: #5a3e2b; /* dark khaki-brown */
    text-transform: uppercase;
    font-size: 36px;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.2);
}

header p {
    font-family: 'Open Sans';
    font-size: 18px;
    color: #6b4d35; /* medium brown */
    text-transform: capitalize;
}

.color {
    background-color: #a67c52; /* khaki-brown warm header */
}

/* Main content section */
.ss-style-doublediagonal {
    z-index: 1;
    padding-top: 2em;
    background: #f5f1e6; /* khaki-light background */
}

.ss-style-doublediagonal::before,
.ss-style-doublediagonal::after {
    top: 0;
    left: -25%;
    z-index: -1;
    width: 150%;
    height: 75%;
    background: #f5f1e6;
    transform: rotate(-2deg);
    transform-origin: 0 0;
}

section.main-content p {
    color: #4b3b2a; /* dark brown text */
    max-width: 70%;
    margin: 0 auto;
}

section.main-content .input-group {
    max-width: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    section.main-content .input-group {
        max-width: 90%;
        margin: 0 auto;
    }
}

section.main-content .btn-danger {
    background-color: #8b5e3c; /* warm brown button */
    min-width: 69px;
    font-size: 23px;
    padding: 0;
    border-color: #8b5e3c;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

section.main-content .btn-danger:hover {
    background-color: #5a3e2b; /* darker brown on hover */
    border-color: #5a3e2b;
    color: #f5f1e6;
}

section.main-content .form-control {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-color: #8b5e3c;
}

section.main-content .form-control:focus {
    border-color: #a67c52;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(166, 124, 82, 0.3);
}

section.main-content ul li {
    margin-right: 4%;
}

section.main-content ul li a {
    color: #4b3b2a;
    font-size: 18px;
}

section.main-content ul li a:hover {
    color: #8b5e3c;
    font-size: 18px;
}

/* Footer */
section.footer p {
    margin-bottom: 0;
}

section.footer p a {
    text-decoration: none;
    color: #a67c52;
    font-weight: bold;
}

.footer {
    z-index: 1;
    margin-top: 10%;
    padding-top: 5px;
    background: #8b5e3c; /* warm brown */
    color: white;
    padding-bottom: 10px;
}

.footer::before,
.footer::after {
    top: 0;
    left: -25%;
    z-index: -1;
    width: 125%;
    height: 105%;
    background: #8b5e3c;
    transform: rotate(-2deg);
    transform-origin: 0 0;
}
