`/*
  Theme Name: Isolatie
  Version: 1.0
  Author: Richard Mauritz
  Created Date: 22/02/2016
  License: GNU General Public License version 3.0
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300);

html, body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    padding: 0 !important;
    margin: 0 !important;
}

article {
    
}

h1, h2, h3 {
    color: #ed2635;
    font-weight: 300;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 26px;
}

/* Classes */
.box-shadow {
    -webkit-box-shadow: 0px 0px 5px 0px #ccc;
       -moz-box-shadow: 0px 0px 5px 0px #ccc;
            box-shadow: 0px 0px 5px 0px #ccc;
}

.page-title {
    color: #ed2635;
}

.light-title {
    font-weight: 400;
}

.overlay {
    background: rgba( 0, 0, 0, .5 );
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.overlay-darker {
    background: rgba( 0, 0, 0, .7 );
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.button {
    display: block;
    background: #400010;
    padding: 15px;
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
       -moz-box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
            box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.75);
}

/* Header */
    /* Logo */
    #header-image img {
        max-width: 300px;
        padding: 15px;
    }

    /* Navigation */
    header nav {
        position: absolute;
        z-index: 999;
        width: 100%;
        left: 0;
    }
    
    header nav #header-image {
        float: left;
    }
    
    header nav .menu {
        float: right;
    }
    
    header nav ul,
    header nav ul li,
    header nav ul li a {
        display: block;
        margin: 0;
        padding: 0;
    }
    
    header nav ul {
        float: right;
    }
    
    header nav ul li {
        float: left;
    }
    
    header nav ul li a {
        text-decoration: none;
        padding: 15px;
        color: #fff;
    }
    
    header nav ul li.current_page_item,
    header nav ul li:hover {
        background: #ed2635;
    }
    
    header nav ul li.current_page_item > a,
    header nav ul li:hover > a {
        color: #fff;
    }
    
    header nav ul ul {
        background: #ed2635;
        position: absolute;
        display: none;
        z-index: 9999;
    }
    
    header nav ul li:hover ul {
        display: block;
    }
    
    header nav ul ul li {
        float: none;
    }
    
    header nav ul ul li:hover {
        background: #960025;
    }
    
    header nav ul ul li {
        display: block;
    }
    
    /* Slider */
    header .slider {
        background: url( 'http://www.polygum-nederland.nl/wp-content/uploads/2015/03/Isolatie_ref.jpg' ) no-repeat;
        background-size: cover;
        height: 400px;
        overflow: hidden;
    }
    
    header .slider .slider-content {
        background: rgba( 0, 0, 0, .5 );
        width: 100%;
        height: 100%;
    }
    
/* Content */
.wrapper {
    max-width: 1170px;
    margin: 0 auto;
}

@media screen and (max-width: 1290px) {
    .wrapper {
        padding: 25px;
    }
}

.content {
    padding: 40px 0;
    margin: 0 0;
    overflow: hidden;
}

.page-header h1 {
    font-weight: 400;
}

.container {
    overflow: hidden;
}

.container h2 {
    font-size: 18px;
    font-weight: 400;
    margin: 25px 0 5px;
}

.container #primary,
.container #secondary {
    float: left;
    box-sizing: border-box;
}

.container #primary {
    width: 75%;
    padding-right: 60px;
}

.container #secondary {
    width: 25%;
}

@media screen and (max-width: 1020px) {
    .container #primary {
        width: 65%;
        padding-right: 60px;
    }
    
    .container #secondary {
        width: 35%;
    }
}

@media screen and (max-width: 700px) {
    .container #primary,
    .container #secondary {
        float: none;
        box-sizing: border-box;
    }
    
    .container #primary {
        width: 100%;
        padding-right: 0;
    }
    
    .container #secondary {
        width: 100%;
    }
}

.container #primary img,
.container #secondary img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.container .content {
    padding-top: 0;
}

    /* Front page */
        /* Features box */
        #features {
            background: #fff;
            text-align: center;
            overflow: hidden;
            border-bottom: 1px solid #f1f1f1;
        }
        
        #features section {
            display: inline-block;
            vertical-align: top;
            background: #fff;
            width: calc( 33% - 60px );
            margin: 0 30px;
            height: 100%;
            box-sizing: border-box;
            border: 1px solid #f1f1f1;
        }
        
        #features section {
            padding: 20px 40px;
        }
        
        #features section > i {
            font-size: 46px;
        }
        
        #features section h3 {
            font-size: 28px;
            margin: 5px 0;
        }
        
        #features section p {
            font-weight: 300;
            font-size: 18px;
            margin: 5px 0;
        }
        
        @media screen and (max-width: 1080px) {
            #features section {
                width: calc( 50% - 100px );
                margin: 0 0;
            }
        }
        
        @media screen and (max-width: 700px) {
            #features section {
                width: 100%;
                margin: 0 0;
            }
        }              
        
        /* Benefits */
        #benefits {
            background: url( '../../uploads/2016/01/cropped-foto-2-woning-isolatie-2.jpg' ) no-repeat;
            background-size: cover;
            text-align: center;
            overflow: hidden;
        }
        
        #benefits h1 {
            color: #fff;
            font-size: 42px;
            margin: 0 0 35px;
            text-shadow: 0px 1px #000;
        }
        
        #benefits i {
            font-size: 88px;
        }
        
        #benefits i,
        #benefits h2 {
            color: #f1f1f1;
            text-shadow: 0px 1px #000;
        }
        
        #benefits section {
            display: inline-block;
            vertical-align: top;
            width: calc( 20% - 60px );
            margin: 0 30px;
            height: 100%;
            box-sizing: border-box;
            opacity: 1;
        }
        
        #benefits section img {
            max-width: 100%;
        }
        
        @media screen and (max-width: 1080px) {
            #benefits section {
                width: calc( 50% - 100px );
                margin: 0 0;
            }
        }
        
        @media screen and (max-width: 800px) {
            #benefits section {
                width: 100%;
                margin: 0 0;
            }
        } 
        
        /* Front page content */
        #frontpage {
            text-align: center;
        }
        
        #frontpage b,
        #frontpage strong {
            color: #ed2635;
        }
        
        #frontpage h1 {
            margin-top: 0;
            font-weight: 300;
            font-size: 42px;
        }
        
        #content h1 {
            margin-top: 0;
        }
        
        /* Front page blockquote */
        #blockquote {
            background: url( 'images/blockquote.jpg' ) no-repeat;
            background: #ed2635;
            background-size: cover;
        }
        
        #blockquote {
            color: #fff;
            font-size: 22px;
            font-weight: 300;
        }
        
        /* Sidebar */
        #sidebar {
            background: #ed2635;
            border-radius: 3px;
            padding: 20px;
            text-shadow: 0 1px #000;
        }
        
        #sidebar aside {
            padding: 10px 0;
        }
        
        #sidebar h1 {
            color: #fff;
            font-size: 18px;
            font-weight: 400;
        }
        
        #sidebar p {
            color: #fff;
            font-size: 14px;
            padding: 10px;
        }
        
        #sidebar #sow-editor-5 p {
            border-top: 1px solid #ccc;
            border-bottom: 1px solid #ccc;
        }
        
        #sidebar .fa {
            padding-right: 10px;
        }
        
        #sidebar ul {
            padding: 0;
            margin: 0;
        }
        
        #sidebar ul li {
            display: block;
        }
        
        #sidebar ul li a {
            color: #fff;
            text-decoration: none;
        }
        
        #sidebar ul li:before {
            font-family: FontAwesome;
            font-weight: normal;
            font-style: normal;
            display: inline-block;
            text-decoration: inherit;
        }
        
        #sidebar ul li:before {
            content: "\f105";
            color: #fff;
            padding: 0 10px;
        }
        
/* Footer */
.main-footer #footerWidgets {
    background: #383838;
}

.main-footer #copyright {
    background: #333;
}

.main-footer #copyright p {
    font-size: 14px;
    margin: 0;
    padding: 10px;
    color: #ccc;
    text-align: center;
    text-shadow: 0 1px #000;
}

.main-footer #copyright a {
    color: #fff;
}