/* dark green: #7d8b37 */
/* light green: #ccd986 */
/* background grey: #dfdfdf */
:root {
    --light-color: #ccd986;
    --dark-color: #7d8b37;
    --text-grey: #515151;
    text-align: left;
}

body {
    font-size: 100%;
    font-family: Arial, sans-serif;
    font-weight: 500;
    background-color: #9c9999;
    margin: 0px;
}

.wrapper {
    font-size: 87.5%;
}

h2,
h3 {
    color: var(--dark-color);
    margin-top: 0px;
}

h3 {
    margin-bottom: 4px;
    font-weight: 450;
    margin-top: 3px;
    font-size: 1.38em;
}

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

ul {
    margin-top: 0px;
    margin-bottom: 6px;
    line-height: 20px;
}

.content h2 {
    margin-bottom: 0px;
    padding-bottom: 16px;
}

.content_subtitle {
    font-style: italic;
    color: #993300;
    margin-top: 7px;
}

.content_body {
    margin-top: 28px;
}

.content h3 {
    margin-top: 19px;
    color: var(--dark-color);
}

a {
    color: blue;
}

.label1 {
    font-size: 13px;
    color: var(--dark-color);
}

#quickcontact scan,
#quickcontact a {
    font-weight: bold;
}

.sidebar {
}

.sidebar h3 {
    border-bottom: 1px solid #dadada;
    padding-bottom: 8px;
}

.sidebar div {
    margin-bottom: 78px;
    padding-top: 18px;
}

input[type=text],
textarea,
select {
    color: var(--text-grey);
}

input[type=submit] {
    background-color: var(--dark-color);
    color: white;
    margin: 8px 0;
    border-radius: 4px;
    cursor: pointer;
    height: 25px;
    width: 72px;
    border: 1px none #000000;
}

input[type=submit]:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid #a7a7a7;
}

.wrapper {
    display: grid;
    grid-gap: 0px;
    grid-template-columns: 260px 1fr 100px;
    max-width: 960px;
    color: #444;
    margin: auto;
    background-color: #ffffff;
}

.box {
    color: var(--text-grey);
    border-radius: 0px;
    padding: 20px;
    font-size: 100%;
}

.header {
    grid-area: 1 / 1 / 2 / 4;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 1px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
    font-weight: bold;
    padding-right: 0px;
}

.phone {
    grid-area: 2 / 1 / 3 / 4;
    text-align: center;
    border-top: 1px none;
    border-right: 1px none;
    font-size: 18px;
    border-style: none;
    font-weight: bold;
    grid-template-columns: 200px 500px 200px;
    padding-left: 0px;
}

.navigation {
    grid-area: 3 / 1 / 4 / 4;
    text-align: center;
    padding: 0px 0px 0px 4px;
    background-color: var(--light-color);
}

.gratuitous {
    grid-area: 4 / 1 / 5 / 4;
    text-align: left;
    padding: 0px;
}

.sidebar {
    grid-area: 6 / 1 / 7 / 4;
    background-color: #efefef;
    padding: 0px 0px 0px 8px;
    border-color: #ffffff;
    border-top: 20px solid #ffffff;
    border-bottom: 20px solid #ffffff;
    border-left: 20px solid #ffffff;
    border-right: 20px none #ffffff;
}

.content {
    grid-area: 5 / 1 / 6 / 4;
    border-right: 1px none;
    padding-bottom: 14px;
    color: var(--text-grey);
}

.footer {
    grid-area: 7 / 1 / 8 / 4;
    font-size: 12px;
    margin-left: 20px;
    margin-right: 20px;
    border-top: 2px solid #dbdbdb;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

button {
    border: 0;
}

.gratuitous img {
    max-width: 100%;
}

.content p {
    margin-bottom: 10px;
}

/* Dropdown Button */
.dropbtn {
    background-color: var(--light-color);
    padding: 8px 16px;
    font-size: 16px;
    cursor: pointer;
    color: var(--dark-color);
    display: block;
    margin-left: -4px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: block;
    margin-top: 0px;
}

/* .dropdown a {
    text-decoration: none;
} */
.navigation a {
    text-decoration: none;
}

/* The "menu" button is not necessary when the navigation bar is in full view. */
.dropdown.menu {
    display: block;
}

.dropdown.selection {
    display: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    /* display will have to be set to "block" for contracted menu. */
    display: block;
    position: relative;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;

    /* text-decoration: none; */
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #dbdada;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.navigation:active .dropdown.selection {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    color: black;
    background-color: #778d00;
}

/* This is set if the screen size is medium or large */
@media only screen and (min-width: 601px){
    .header {
        grid-area: 1 / 1 / 2 / 4;
        text-align: center;
    }

    .phone {
        grid-area: 2 / 1 / 3 / 4;
        text-align: center;
    }

    .navigation {
        grid-area: 3 / 1 / 4 / 4;
        text-align: left;
    }

    .gratuitous {
        grid-area: 4 / 1 / 5 / 4;
    }

    .content {
        grid-area: 5 / 2 / 6 / 4;
    }

    .sidebar {
        grid-area: 5 / 1 / 6 / 2;
        padding-bottom: 8px;
    }

    .footer {
        grid-area: 6 / 1 / 7 / 4;
    }

    .dropdown {
        display: inline-block;
    }

    .dropdown.menu {
        display: none;
    }

    .dropdown.selection {
        display: inline-block;
    }

    .navigation:active .dropdown.selection {
        display: inline-block;
    }

    .dropdown-content {
        position: absolute;
        display: none;
    }
}

/* This is set if the screen size is largest */
@media only screen and (min-width: 901px){
    .header {
        grid-area: 1 / 1 / 2 / 3;
        text-align: left;
    }

    .phone {
        grid-area: 1 / 1 / 2 / 4;
        text-align: right;
    }

    .navigation {
        grid-area: 2 / 1 / 3 / 4;
    }

    .gratuitous {
        grid-area: 3 / 1 / 4 / 4;
    }

    .content {
        grid-area: 4 / 2 / 5 / 4;
    }

    .sidebar {
        grid-area: 4 / 1 / 5 / 2;
        padding-bottom: 8px;
    }

    .footer {
        grid-area: 5 / 1 / 6 / 4;
    }
}

/* The container <div> - needed to position the dropdown content
.dropdown {
    position: relative;
    display: inline-block;
    margin-top: 0px;
}

/* Dropdown Content (Hidden by Default)
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown
.dropdown:hover .dropbtn {
    color: black;
    background-color: #778d00;
} */