/*!
 * Title: Custom Stylesheet
 * Version: v1.0.0
 * Copyright: 2015-2016 by @tschentscher
 * License: None
 * Library: None

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Bootstrap Addons
2.0 Typography
3.0 General Layout
    3.1 Header
    3.2 Modules
--------------------------------------------------------------*/


/*--------------------------------------------------------------
0.0 General Styles
--------------------------------------------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    padding-top: 78px;
    color: black;
    background: #fff;
}

body.home {
    background: #efefef;
}

/*--------------------------------------------------------------
1.0 Bootstrap Addons
--------------------------------------------------------------*/

.no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.6em;
}

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

a:active,
a:focus,
a:hover,
a:active:hover {
    color: #EA7063;
}

article p {
    margin: 0 0 2em;
}

/*--------------------------------------------------------------
3.0 General Layout
--------------------------------------------------------------*/

@media (min-width: 1200px) {
    .container {
        width: 1050px;
    }
}

article,
aside {
    margin: 3em 0;
}

img.size-full {
    display: block;
    width: 100%;
    height: auto;
}
/*--------------------------------------------------------------
3.1 Header
--------------------------------------------------------------*/

header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 2em 0 0 0;
    border-top: 1px solid #434343;
    background: white;
    box-shadow: 0 0 10px -5px black;
}

.navbar-default {
    margin: 0;
    border: none;
    border-color: transparent;
    background-color: transparent;
}

.navbar-default .navbar-nav > li > a {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    color: #000;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #000;
    background-color: transparent;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    text-decoration: underline;
    color: #EA7063;
    background: transparent;
}

.navbar-brand {
    font-size: 15px;
    line-height: 0;
    float: left;
    max-width: 100%;
    height: 30px;
    padding: .6em 15px;
}

.navbar-brand > img {
    display: block;
    width: 100%;
    max-width: 230px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.navbar-brand > img:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}


.navbar-toggle {
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
}

.navbar-toggle:hover {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
}

.dropdown-menu {
    border: none;
    border-radius: 0;
}

.dropdown-menu > li > a {
    font-weight: 100;
    padding: 8px 20px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border-top: 1px solid #f7f7f7;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color: #EA7063;
    background-color: transparent;
}
@media (min-width: 992px) {
    .navbar-default .navbar-nav > li > a:focus,
    .navbar-default .navbar-nav > li > a:hover {
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
    }
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    background-color: #EA7063;
}
.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active > a {
    color: #EA7063;
    background-color: transparent;
}

@media (min-width: 992px) {
    .navbar-default .navbar-nav > li.active > a,
    .navbar-default .navbar-nav > li.active > a {
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
        -webkit-transform: scale(1.05);
                transform: scale(1.05);
        color: #EA7063;
        background-color: transparent;
    }
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    text-decoration: none;
    color: #fff;
    background-color: #EA7063;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        z-index: 200;
        right: auto;
        left: 0;
        padding: 0;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 60px;
    }
    header {
        padding-top: 1em;
    }

    .navbar-brand {
        max-width: 75%;
        padding: .2em 15px;
    }
}

/*--------------------------------------------------------------
3.2 Modules
--------------------------------------------------------------*/


.module-hero {
    padding-top: 9em;
    padding-bottom: 9em;
    border-bottom: 1px solid #EA7063;
    background: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center 50%;
    background-size: cover;
    margin-bottom: 3em;
}
.module-hero h1 {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: .2em;
    color: rgb(70, 70, 70);
}
.module-hero h2 {
    font-size: 1.75em;
    font-weight: 100;
    margin-bottom: .75em;
    letter-spacing: 1px;
    color: #EA7063;
}

.module-hero .lead {
    font-size: 1.25em;
    font-weight: 100;
    margin-bottom: 1em;
}
.module-featured {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.module-featured .embed-responsive-16by9 {
    margin: 0;
}

.module-featured .aside-item.aside-product {
    padding: 10em 3em 3em 3em;
}

@media (max-width:992px) {
    .module-featured .aside-item.aside-product {
        margin:2em 0;
    } 
} 


.hero-title {
    display: block;
    max-width: 380px;
    width: 100%;
}
.module-content {
    padding: 0;
}
.boxed {
    padding: 4em;
}

.module-boxes .row {
    overflow: hidden;
    margin-top: 2em;
    margin-bottom: 3em;
    border-radius: 10px;
}
.module-boxes .boxed {
    position: relative;
    padding: 3em;
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;
    border-right: 1px solid #efefef;
    background: white;
}

.module-boxes .boxed:hover {
    position: relative;
    z-index: 1;
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
    box-shadow: 0 0 8px -5px black;
}
.module-boxes .boxed:last-child {
    border-right: none;
}

.module-boxes .boxed .boxed-content {
    padding-top: 1.5em;
}

.boxed {
    max-width: 97%;
    margin: 0 auto;
}

.boxed-primary {
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #EA7063;
    background-position: top right;
}

.boxed-secondary {
    color: white;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: rgb(70, 70, 70);
}

.boxed small {
    display: block;
    margin-bottom: 1.3em;
    color: rgba(255, 255, 255, .7);
}


@media (max-width: 768px) {
    .module.module-hero {
        overflow: hidden;
        padding: 4em 0 4em 0;
        text-align: center;
    }
    .module.module-hero {
    background-image: none!important;
    }
    .boxed {
        padding: 3em;
    }
    .boxed .btn {
        float: none!important;
        margin-top: 1em;
    }
}

@media (min-width:992px) {
    .boxed {
        max-width: 100%;
        margin: 0 auto;
    }
    .boxed-primary {
        border-top-left-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
    }
    .boxed-secondary {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 0;
    }
}


/*--------------------------------------------------------------
3.4 Text Sections
--------------------------------------------------------------*/

.section.section-boxed {
    margin-bottom: 2em;
    padding: 3em;
    background: #fafafa;
}
.section.section-boxed p:last-child {
    margin: 0;
}

/*--------------------------------------------------------------
5.0 Buttons
--------------------------------------------------------------*/

.btn {
    padding-top: .5em;
    padding-right: 1.75em;
    padding-bottom: .5em;
    padding-left: 1.75em;
    border-radius: 10em;
}

.btn-primary {
    color: #fff;
    border-color: #EA7063;
    background-color: #EA7063;
}
.btn-primary:hover {
    color: #fff;
    border-color: #EA7063;
    background-color: #EA7063;
    opacity: 0.8;
}
/*--------------------------------------------------------------
6.0 Footer
--------------------------------------------------------------*/

.breadcrumbs {
    font-size: .75em;
    margin-bottom: 1.5em;
}

footer {
    padding: 4em 0 0 0;
    a
    background: #fff;
    background-repeat: no-repeat;
    background-position: -30% 30%;
    background-size: 50%;
    background: #FFFFFF;
    border-top: 1px solid rgb(235, 235, 235);
}

.copyright {
    margin-top: 6em;
    padding: 2em 0;
    color: rgba(255, 255, 255, .75);
    background: rgb(67, 67, 67);
}

.copyright a {
    color: inherit;
}

footer form {
    padding: 3em;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.02);
}

.policies {
    font-size: .8em;
    position: relative;
    top: -3px;
    display: inline-block;
    padding: .5em;
}
.creditcards {
    font-size: 1em;
    text-align: right;
}

.creditcards i {
    font-size: 1.4em;
    display: inline-block;
    margin-left: .2em;
}

.facebook-area {
    margin-top: 3.8em;
}


.socialicons {
    font-size: 1.75em;
    position: relative;
    margin-top: -5px;
}

.socialicons a {
    display:inline-block;
    padding: 0 0.12em;
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    footer form {
        margin-top: 2em;
    }
    .creditcards {
        text-align: center;
    }
    .creditcards i {
        display: none;
    }
}

/*--------------------------------------------------------------
7.0 Newsletter
--------------------------------------------------------------*/

footer input.form-control,
aside input.form-control {
    height: 2.55em;
    padding-left: 1.5em;
    color: black;
    border: 1px solid #EA7063;
    border-top-left-radius: 5em;
    border-bottom-left-radius: 5em;
    background: #fff;
}

footer button.btn,
aside button.btn {
    color: white;
    border: 1px solid #EA7063;
    background: #EA7063;
}

/*--------------------------------------------------------------
8.0 Sidebar
--------------------------------------------------------------*/

.aside-item {
    margin-bottom: 2em;
}

.aside-item img {
    width: 100%;
    height: auto;
}

.aside-item.aside-newsletter {
    padding: 2.5em 2em;
    text-align: center;
    border-radius: 4px;
    background: #fafafa;
}

.aside-item.aside-newsletter p {
    font-size: .8em;
    margin-bottom: 1.5em;
}

.aside-item.aside-newsletter p.h4 {
    font-size: 1.5em;
    margin-bottom: .5em;
}

.aside-item.aside-contact {
    padding: 3em;
    text-align: center;
    color: white;
    border-radius: 4px;
    background: rgb(234, 112, 99);
    background-position: 20% 20%;
    background-size: 100%;
}

.aside-item.aside-contact  a {
    color: white;
}


.aside-item.aside-about {
    overflow: hidden;
    text-align: center;
    color: white;
    border-radius: 4px;
    background: rgb(70, 70, 70);
    display: block;
}

.aside-item .aside-about-content {
    padding: 3em 3em 2.5em 3em;
}

.aside-item.aside-product {
    position: relative;
    display: block;
    padding: 8em 3em 3em 3em;
    border-radius: 4px;
    background-size: cover;
}

.aside-product .title {
    font-size: 1.5em;
    line-height: 1.2em;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-bottom: .25em;
    color: white;
    background: transparent;
    text-shadow: 0 1px 0 rgba(11, 38, 76, .50);
}

.aside-product .desc {
    font-size: .8em;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-bottom: 1.5em;
    color: white;
    background: transparent;
    text-shadow: 0 1px 0 rgba(11, 38, 76, .50);
}

.aside-product .date {
    font-size: .75em;
    font-weight: 700;
    position: absolute;
    top: 3em;
    right: 3em;
    display: block;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 0 rgba(11, 38, 76, .50);
}

.aside-product .btn {
    position: relative;
    top: 0;
    left: 0;
    color: white;
    border: 1px solid white;
    background: transparent;
}

/*--------------------------------------------------------------
9.0 404 errors
--------------------------------------------------------------*/


.template-404 {
    padding-top: 3em;
    padding-bottom: 3em;
}




/*--------------------------------------------------------------
10.0 Comments
--------------------------------------------------------------*/


.form-submit {
    display:none;
}
.comment {
    list-style: none;
    padding: 1em;
    background-color: rgb(249, 249, 249);
    margin-bottom: 1em;
    border-top: 1px solid #EFEFEF;
}

.depth-3,
.depth-4,
.depth-5,
.depth-6,
.depth-7,
.depth-8,
.depth-9,
.depth-10 {
    padding: 0em 0;
    margin: 0;
}

.comment>.children {
    padding-left:0em;
}

.comment>.children li{
    padding: 2em 0 0em 0;
}

    .comment-body a {
        text-decoration: none;
        color: black;
    }
    .comment-metadata a {
        font-size: 0.9em;
        color: #888;
        text-decoration: none;
        margin-bottom: 1em;
        display: block;
    }
    .comment-author.vcard {
        font-size: 1.1em;
    }
    .reply a {
        text-decoration:underline;
        color:#944822;
        margin-bottom: 1em;
        display: block;
    }
    .reply a:hover {
        text-decoration:none;       
    }

        .comment-body .avatar {
        width:1.4em;height:1.4em;
        border-radius: 50%; margin-right:0.2em;
    }

@media (min-width: 768px) { 

.comment>.children>li{
    padding: 1em 1em;
}

.comment>.children>li.comment>.children>li{
    padding: 2em 0em;
}

    .children .comment {
        background: white;
        border-top: 1px solid #EFEFEF;
        margin-bottom: 0;
        margin-top: 1.5em;
        padding-top: 2em;
    }

    .comment>.children {
        padding-left: 1em;
    }
    .children .parent .children {
        padding-left: 0;
    }
    .children {
        margin-bottom: 0;
    }
    form.search {
        padding: 1em 1em 0.5em 1em;
        border-bottom: 1px solid #262626;
    }

    .comment-body .avatar {
        width:4em;
        height:4em;
        border-radius: 50%;
        position:absolute;
        top:0;
        left:0;
        display: none;
    }

    .comment-body {
        padding-left: 0;
        position: relative;
        padding-left: 90px;
        padding: 0 1em 0 1em;
        border: none;
    }
}


.post {
    border-bottom: 1px solid #efefef;
    padding-bottom:3em;
}
.post h1 {margin-top:0.5em;}

.post-meta {
    font-size:0.75em;
    font-style:italic;
}




.page-numbers {
    display: inline-block;
    min-width: 34px;
    padding: .4em .7em;
    text-align: center;
    text-decoration: none;
    color: #ea7063;
    border-radius: 10em;
    background: #eeeeee;
}

.page-numbers.dots,
.page-numbers.dots:hover {
    color: inherit;
    background: transparent;
}

.page-numbers.prev {
    padding: .5em 1.5em;
}
.page-numbers.next {
    padding: .5em 1.5em;
}
.page-numbers.current {
    color: white;
    border: 1px solid #ea7063;
    background: rgb(234, 112, 99);
}

.page-numbers:hover {
    text-decoration: none;
    color: white;
    background: rgb(234, 112, 99);
}

.navigation h2 {display:none;}

@media (min-width:768px) {
    .row-flex {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
}