body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, Verdana, sans-serif, Geneva;
}
div.main {
    width: 94%;
    margin: 0 auto;
    padding: 0 10px;
    min-width: 320px;
    box-shadow: 3px 1px 6px rgba(0, 0, 0, .3);
}
div.clear {
    font-size: 1px;
    clear: both;
}
.right {
    text-align: right;
}
.bold {
    font-weight: bold;
}
a {
    color: gray;
}
a:hover {
    color: #ffa50c;
    text-decoration: none;
}
#header-image {
    background-image: url('../media/wp-head.jpg');
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 210px;
    font-size: 1px;
}
.header-text {
    display: flex;
    justify-content: space-between;
}
.header-text .large {
    font-size: 2.25rem;
    color: #d3c361;
}
.header-text .normal {
    font-size: 1.25rem;
}

#top-nav-container {
    margin-bottom: -21.5rem;
}
#menu-toggle {
    opacity: 0;
}
#menu-toggle:checked + #menu-button > span {
    transform: rotate(45deg);
}
#menu-toggle:checked + #menu-button > span::before {
    top: 0;
    transform: rotate(0deg);
}
#menu-toggle:checked + #menu-button > span::after {
    top: 0;
    transform: rotate(90deg);
}
#menu-toggle:checked ~ ul.menu {
    left: 0 !important;
}
#menu-button {
    position: relative;
    display: block;
    top: 20px;
    left: 20px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 999;
}
#menu-button > span, #menu-button > span::before, #menu-button > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #717171;
    transition-duration: .5s;
}
#menu-button > span::before {
    content: '';
    top: -8px;
}
#menu-button > span::after {
    content: '';
    top: 8px;
}
ul.menu {
    display: block;
    position: relative;
    top: -30px;
    left: -100%;
    width: 275px;
    margin: 0;
    padding: 40px 0;
    list-style: none;
    background-color: #ECEFF1;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    transition-duration: .5s;
    z-index: 998;
}
ul.menu li a {
    display: block;
    padding: 12px 24px;
    color: #d3c361;
    font-size: 1.75rem;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .5s;
}
ul.menu li a:hover {
    background-color: #CFD8DC;
}

#content {
    font-size: 1.1rem;
}
#content .content-right, #content .content-half-right, #content .content-right-390 {
    margin-top: 35px;
}
#content h1, #content h2, #content h3 {
    color: #d3c361;
}
#content p {
    text-align: justify;
}
#content p.center {
    text-align: center;
}
#content p.new {
    background-image: url('../media/neu_sm.jpg');
    background-position: right;
    background-repeat: no-repeat;
    min-height: 28px;
    vertical-align: bottom;
}
#content p.new span.new {
    color: red;
}
#content .bordered {
    border: 1px solid gray;
}
#content img.portrait {
    float: left;
    margin: 0 13px 8px 0;
    width: 230px;
}
#content .image-container {
    clear: both;
    margin: 30px 0;
}
.image-container img.image {
    float: left;
    margin: 0 6px 6px 0;
}
ul.normal {
    list-style-type: circle;
    padding-left: 18px;
}
table.pricing {
    min-width: 300px;
    width: 60%;
    margin: 10px auto;
}
table.pricing caption {
    text-align: left;
    font-weight: bold;
}
.logo-container .logo {
    text-align: center;
    margin: 10px 0;
    padding: 10px 0;
    max-width: 240px;
}
.contact .contact-header {
    font-size: 1.1rem;
}
.contact .contact-header .contact-small {
    font-size: 0.9rem;
}
.contact .contact-detail .label {
    display: inline-block;
    width: 5rem;
}
.contact a.tel {
    color: unset;
    text-decoration: none;
}
.contact a.tel:hover {
    color: #ffa50c;
}
.slideshow-container {
    margin: auto;
    text-align: center;
}
.slideshow-container .slide {
    display: none;
}
.slideshow-container .fading {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

#footer {
    margin-top: 0.5rem;
    text-align: center;
    white-space-collapse: collapse;
}
#footer-content {
    clear: both;
    min-height: 8px;
}
#footer-content span {
    font-size: 0.75rem;
    padding: 0 8px;
    border-left: 1px solid black;
    float: left;
}
#footer-content span.last {
    border-right: 1px solid black;
}
#footer-spacer {
    min-height: 25px;
    background-image: linear-gradient(white, beige, beige);
    margin: 5px -8px;
}

@media only screen and (min-width: 992px) {
    div.main {
        width: 640px;
    }
    #top-nav-container {
        margin-bottom: unset;
    }
    .header-text .large {
        font-size: 1.2rem;
    }
    .header-text .normal {
        font-size: 0.75rem;
    }
    #menu-toggle {
        display: none;
    }
    #menu-button {
        display: none;
    }
    ul.menu {
        position: unset;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        background-color: unset;
        box-shadow: unset;
        width: unset;
    }
    ul.menu li a {
        font-size: 1rem;
        white-space: nowrap;
        padding: 5px 12px;
    }
    ul.menu li.selected a {
        box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    }
    ul.menu li a:hover {
        background-color: #ECEFF1;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
    }
    .page-title {
        display: none;
    }
    #content {
        font-size: 0.75rem;
    }    
    #content .content-left {
        float: left;
        width: 65%;
    }
    #content .content-right {
        float: right;
        width: 33%;
        margin-top: unset;
    }
    #content .content-left-240 {
        float: left;
        width: 240px;
    }
    #content .content-right-390 {
        float: right;
        width: 390px;
        margin-top: unset;
    }
    #content .content-half-left {
        float: left;
        width: 49%;
    }
    #content .content-half-right {
        float: right;
        width: 49%;
    }
    .contact .contact-header {
        font-size: 0.9rem;
    }
    .contact .contact-header .contact-small {
        font-size: 0.75rem;
    }
    .contact .contact-detail .label {
        width: 50px;
    }
    #footer-content span {
        font-size: 0.6rem;
        float: unset;
    }
}
