/*
 Theme Name:   Image Direct Boilerplate Child
 Theme URI:    http://wpbp.dev.imagedirect.com/
 Description:  ID-Boilerplate Child CSS
 Author:       Image Direct Pty Ltd
 Author URI:   http://www.imagedirect.com.au
 Template:     id-boilerplate-master
 Version:      3.5.2
Tags:
Copyright:     ©2014 Image Direct Pty Ltd
Text Domain:   id-boilerplate-child
*/

/*@import url("../id-boilerplate-master/style.css");*/

/* =Theme customization starts here
-------------------------------------------------------------- */



/*
 * -----------------------------------------------------------------------------
 *
 *  colours
 *
 * -----------------------------------------------------------------------------
 */

.bjb-light-grey {
    color: #E9EdF2;
}

.bjb-grey {
    color: #797d82;
}

.bjb-burgundy {
    color: #892A2E;
}

.bjb-dark-burgundy {
    color: #690A0E;
}


/*
* -----------------------------------------------------------------------------
*
* # Root
*
* -----------------------------------------------------------------------------
*/


html {
    font-size: 1em;
}

body {
    padding-top: 60px;
    background-color: #E9EdF2;
    color: #222;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont,
        "Segoe UI", "Roboto", "Oxygen",
        "Ubuntu", "Cantarell", "Fira Sans",
        "Droid Sans", "Helvetica Neue", sans-serif;
}

@media screen and (min-width: 992px) {
    body {
        padding-top: 100px;
    }
    #content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}



/*
* -----------------------------------------------------------------------------
*
* # Typography
*
* -----------------------------------------------------------------------------
*/



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight:  600;
    text-transform: none;
    letter-spacing: 0.25px;
}

.content-main {
    font-size: 1em;
    line-height: 1.7;
}

.content-main h1,
.content-main  h2,
.content-main  h3,
.content-main  h4,
.content-main  h5,
.content-main  h6 {
    color: #892A2E;
    text-transform: none;
    margin-bottom: 1ex;
}

hr {
    border-top: 1px solid rgba(128,128,128,1);
}


a {
    color: #892A2E;
}

a:hover,
a:focus,
a:active {
    color: #777;
    text-decoration: none;
}


.hentry > .lead {
    font-size: 1.3em;
    margin: 1em 0;
}


h4.widgettitle {
    font-weight: 600;
    margin-bottom: 2ex;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    border-bottom: 1px dotted rgba(0,0,0,0.15);
    padding-bottom: 1ex;
}

/*
* ----------------------------------------------------------------
*
* overlapped images
*
* ----------------------------------------------------------------
*/

.id-overlap-images {
    position: relative;
}

.id-overlap-images:before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

@media screen and (min-width: 992px) {
    .id-overlap-images:before {
        padding-bottom: 85%;
    }
}

.id-overlap-images figure {
    position: absolute;
    max-width: 70%;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
}

.id-overlap-images figure:first-of-type {
    top: 0;
    z-index: 2;
}

.id-overlap-images figure:last-of-type {
    right: 0;
    bottom: 0;
    z-index: 1;
}


.id-single-post-image {
    display: block;
    float: left;
    width: 100%;
    margin-top: 0.5ex;
    margin-bottom: 15px;
}

.id-single-post-image>img {
    display: block;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .id-single-post-image {
        width: auto;
        margin-right: 15px;

    }
    .id-single-post-image>img {
        width: auto;
    }
}

/*
* ----------------------------------------------------------------
*
* Lists
*
* ----------------------------------------------------------------
*/
ul.id-unordered-list{
    box-shadow: none;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 8px 15px;
    margin-bottom: -1px;
    background-color: transparent;
    border: 1px solid transparent;
}

.list-group-item:not(:last-of-type){
    border-bottom: 1px dashed rgba(145, 106, 68, 0.3);
}

ul.id-unordered-list>li::before {
    content: "\f00c";
    font-family: fontawesome;
    margin-top: -6px;
}

ul.id-unordered-list>li::before,
ol.id-ordered-list>li::before {
    display: inline-block;
    font-size: 1em;
    font-weight: normal;
    line-height: 1;
    color: #892A2E;
    margin-right: 0;
    left: 0.4em;
}

.list-group-item:last-child:after {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom: none !important;
}


/*
* -----------------------------------------------------------------------------
*
* #Navbar-nav Affix
*
* -----------------------------------------------------------------------------
*/

nav.affix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 9999;
    -webkit-transition: all .5s ease-in-out .5s;
    transition: all .5s ease-in-out .5s;
}

nav.affix .nav {
    box-shadow: 0 0 3px rgba(0,0,0,0.25);
}

nav.affix-top {
    position: static;
    top: -100px;
}

.affix + .menu-affix-sizer {
    height: 60px;
}

/*
* -----------------------------------------------------------------------------
*
* Fixed navbar hide/show on scroll
*
* -----------------------------------------------------------------------------
*/

/*
.scroll-small .id-scroll-up.navbar-fixed-top {
    top: 0;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}

.scroll-small .navbar-fixed-top {
    top: -200px;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}
*/

/*
* -----------------------------------------------------------------------------
*
* Navbar Logo
*
* -----------------------------------------------------------------------------
*/

.navbar-logo  {
    width: 150px;
    padding: 10px;
    display: inline-block;
}

.navbar-logo img {
    width: 100%;
}

@media screen and (min-width: 992px) {
    .navbar-logo {
        width: 220px;
        padding: 20px;
    }
    .scroll-small .navbar-logo {
        width: 185px;
        padding: 10px;
    }
}

/*
* ------------------------------------------------------------------------------
*
* @ Affix Pseudo Logo
*
* ------------------------------------------------------------------------------
*/



/*.affix.header.offcanvas-navbar > .open.container::before {
    content: none;
}*/
.navbar-header {
    position: relative;
}

.affix-top.id-pseudo-logo {
    display:none;
}

.id-pseudo-logo  {
    content: '';
    display: block;
    width: 70px;
    position: absolute;
    top: 0;
    left: -100%;
    right: auto;
    bottom: 0;
    background-image: url(img/icons/favicon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0 5px rgba(0,0,0,0);
}


.affix.navbar .id-pseudo-logo {
    left: 0;
    background-color: rgba(0,0,0,0.15);
}


/*
* -----------------------------------------------------------------------------
*
* Navbar Toggle
*
* -----------------------------------------------------------------------------
*/

.id-navbar-close {
    color: #777;
}

.navbar-toggle {
    border: none;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}

.navbar-toggle .fa:before {
    color: #999;
}

.navbar-inverse .navbar-toggle {
    border-color: rgba(0,0,0,0.25);
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: rgba(0,0,0,0.5);
}

.navbar-inverse .navbar-toggle .fa:before {
    color: #777;
}


.navbar-inverse .navbar-toggle:focus .fa:before,
.navbar-inverse .navbar-toggle:hover .fa:before {
    color: #fff;
}

@media screen and (min-width: 992px) {
    .navbar-toggle {
        position: relative;
        float: right;
    }
}

/*
* -----------------------------------------------------------------------------
*
* # Search Box
*
* -----------------------------------------------------------------------------
*/

.navbar-search-toggle[aria-expanded="true"],
.search-toggle[aria-expanded="true"] {
    background-color: #892A2E !important;
    color: #fff;
}

.navbar-search-toggle {
    background-color: transparent;
}

.navbar-inverse .navbar-search-toggle {
    color: #777;
}

.navbar-fixed-top .id-search-box-wrapper {
    margin-top: 65px;
}


@media (min-width: 991px) {
    .navbar-fixed-top .id-search-box-wrapper {
        margin-top: 105px;
    }
}

@media screen and (min-width: 1200px) {
    .navbar-fixed-top .id-search-box-wrapper {
        margin-top: 0;
    }
}


/*
* ----------------------------------------------------------------
*
* id-custom-header-before
*
* ----------------------------------------------------------------
*/
.input-group .form-control,
.input-group-addon,
.input-group-btn {
    height: 36px;
}

.input-group-addon:first-child {
    position: relative;
    top: -0.25px;
}

/*
* -----------------------------------------------------------------------------
*
* #Navbar Padding
*
* -----------------------------------------------------------------------------
*/
@media screen and (min-width: 992px) {

    .scroll-small .navbar-search-toggle {
        padding: 15px 15px;
    }

    .sidebar-shop .navbar-toggle {
        padding: 15px 15px;
    }

    .navbar-toggle {
        padding: 35px 15px;
    }
}

.navbar-widget-toggle i.fa,
.navbar-search-toggle i.fa {
    line-height: 1;
}


@media screen and (min-width: 1200px) {
    .navbar-nav > li > a  {
        padding: 42.5px 15px;
    }

    .scroll-small .navbar-nav > li > a {
        padding: 28.5px 15px;
    }

    .navbar-nav > li > a.id-navbar-phone-icon {
        padding: 31px 15px;
    }

    .scroll-small .navbar-nav > li > a.id-navbar-phone-icon {
        padding: 18px 15px;
    }

    .btn.navbar-widget-toggle,
    .btn.navbar-search-toggle {
        padding: 35px 35px;
        font-size: 1.5em;
        margin: auto;
    }

    .btn.navbar-widget-toggle i.fa {
        font-size: 24px;
    }

    .scroll-small .navbar-widget-toggle,
    .scroll-small .navbar-search-toggle {
        padding: 17.5px 20px;
    }
}

/*
* -----------------------------------------------------------------------------
*
* #Navbar: menu-items
*
* -----------------------------------------------------------------------------
*/


@media (min-width: 1200px) {
    .navbar-full-width > .container {
        padding: 0 0;
        width: 100%;
    }
}

.navbar-nav > li > a {
    font-weight: 600;
    font-size: 80%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*.navbar-nav > li > a.id-navbar-phone-icon {
        font-size: 1.3em;
}*/

/*
* -----------------------------------------------------------------------------
*
* #Navbar: navbar-default
*
* -----------------------------------------------------------------------------
*/

.navbar-default {
    background-color: #fff;
    border-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.navbar-default .navbar-nav>li>a {
    color: #222;
}

@media screen and (min-width: 1200px) {
    a.id-navbar-phone-icon .fa {
        color: inherit;
    }

    /*@ACTIVE*/
    .navbar-default .navbar-nav>.active>a,
    .navbar-default .navbar-nav>.active>a:focus,
    .navbar-default .navbar-nav>.active>a:hover,
    /*@DEFAULT */
    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li.active > a,
    .navbar-default .navbar-nav > li > a:focus {
        background-color: transparent;
        color: #892A2E;
    }
}

/**
* -----------------------------------------------------------------------------
*
* navigation phone icon
*
* -----------------------------------------------------------------------------
*/
.navbar-nav > li > a.id-navbar-phone-icon .id-phone-label  {
    display: none;
    -webkit-transition: all 500ms ease-out .2s;
    -moz-transition: all 500ms ease-out .2s;
    -o-transition: all 500ms ease-out .2s;
    transition: all 500ms ease-out .2s;
}
@media screen and (min-width: 992px) {
    .navbar-nav > li > a.id-navbar-phone-icon .id-phone-label {
        font-size: 12px;
        font-weight: normal;
        letter-spacing: 1px;
        display: block;
        text-align: left;
        padding-left: 55px;
        margin-bottom: -5px;
        display: block;
    }
    .scroll-small .navbar-nav > li > a.id-navbar-phone-icon .id-phone-label  {
        display: none;
    }
}

.id-navbar-icon .id-navbar-telephone {
    font-size: 2em;
    letter-spacing: normal;
}

a.id-navbar-phone-icon .fa{
    color: #892A2E;
    background-color: transparent;
    background: #F2F3F5 !important;
    border-radius: 50%;
    font-size: 24px;
    height: 1.8em;
    width: 1.8em;
    padding: 0.40em;
    margin-right: 10px;
}
a.id-navbar-phone-icon .fa:before {
    margin: 2px;
}


/*
* -----------------------------------------------------------------------------
*
* #Navbar: navbar-inverse
*
* -----------------------------------------------------------------------------
*/

.navbar-inverse {
    background-color: #892A2E;
    border-color: #111;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.navbar-inverse .navbar-nav>li>a {
    color: #777;
}

.navbar-inverse .navbar-nav>li>.dropdown-menu,
.navbar-inverse .dropdown-menu {
    background-color: #892A2E;
}

@media screen and (min-width: 1200px) {
    .navbar-inverse .navbar-nav > li.active > a,
    .navbar-inverse .navbar-nav > li > a:hover,
    .navbar-inverse .navbar-nav > li > a:focus {
        background-color: transparent;
        color: #fff;
    }
}


/*
* -----------------------------------------------------------------------------
*
* # DropDown
*
* -----------------------------------------------------------------------------
*/

.dropdown-menu > li > a {
    color: #892A2E;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.9em;
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #fff;
        background-color: #892A2E;
    }
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:hover,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:hover {
    background-color: #892A2E;
    color: #fff;
}

.dropdown-menu>.active>a {}

.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #892A2E;
    outline: 0;
}


.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    border-color: #892A2E;
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #892A2E;
    }

    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        background-color: #892A2E;
        color: #fff;
    }
}

@media (max-width: 1199px) {
    .navbar-nav .open .dropdown-menu {
        background-color: rgba(0,0,0,0.05);
    }
}

@media (min-width: 992px) {
    .navbar-right {
        margin-right: auto;
    }
}

/*
 * -----------------------------------------------------------------------------
 *
 *  off canvas
 *
 * -----------------------------------------------------------------------------
 */
.nav>li.menu-item-toggle {
    float: none;
}
@media only screen and (min-width: 1200px){
    .nav>li.menu-item-toggle {
        float: right;
    }
}

/*
 * -----------------------------------------------------------------------------
 *
 *  custom header
 *
 * -----------------------------------------------------------------------------
 */
.custom-header-content{
    color: #fff;
    background-color: rgba(0,0,0,0.15);
    padding: 10px 20px;
    max-width: 640px;
    min-width: 300px;
}
.custom-header-content h1,
.custom-header-content h2,
.custom-header-content h3,
.custom-header-content h4,
.custom-header-content h5
{
    font-weight: bold;
    text-shadow: 0px 2px 0px rgba(0,0,0,0.15);
    margin-top: 5px;
    margin-bottom: 10px;
}

.id-custom-header-page-title{
    font-size: 2em;
}

.id-custom-header-page-sub-title{
    font-size: 1.5em;
}


/*
* -----------------------------------------------------------------------------
*
* # Slideshow
*
* -----------------------------------------------------------------------------
*/

.id-slideshow-caption-outer > .id-slideshow-caption-inner{
    text-align: center;
}

.slideshow-caption-inverse {
    background-color: transparent !important;
    color: white;
}

body .carousel .id-slideshow-caption h2 {
    font-size: 2em;
    text-shadow: 1px 1px 6px rgba(34, 34, 34, 0.6);
}

@media screen and (min-width: 768px) {

    body .carousel .id-slideshow-caption h2 {
        font-size: 3em;
    }
}

@media screen and (min-width: 992px) {

    body .carousel .id-slideshow-caption h2 {
        font-size: 3.5em;
    }
}

@media screen and (min-width: 1200px) {

    body .carousel .id-slideshow-caption h2 {
        font-size: 4em;
    }
}

.id-slideshow-message {
    font-size: 1em;
    max-width: 600px;
    margin: 20px auto;
    text-shadow: 1px 1px 6px rgba(34, 34, 34, 0.6);
}

@media screen and (min-width: 768px) {
    .id-slideshow-message {
        font-size: 1.3em;
    }
}


/*
 * -----------------------------------------------------------------------------
 *
 *  slideshow mobile
 *
 * -----------------------------------------------------------------------------
 */
.id-slideshow-title-mobile, .id-slideshow-message-mobile{
    color: #fff;
    text-shadow: 1px 1px 6px rgba(34, 34, 34, 0.6);
}

.id-mobile-caption form.search > .glyphicon-search{
    display:none;
}
.id-mobile-caption form.search .search-input{
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
}

.id-mobile-caption .search-submit{
    border-top-right-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
    padding: 6px 15px;
}


/*
* -----------------------------------------------------------------------------
*
* # social
*
* -----------------------------------------------------------------------------
*/

.widget .id-social-media .fa {
    background-color: #892A2E;
    background-image: none;
}

#footer .widget .id-social-media .fa {
    background-color: #fff;
    color: #892A2E;
}


/*
* -----------------------------------------------------------------------------
*
* # Footer
*
* -----------------------------------------------------------------------------
*/

#footer .logo img {
    width: 250px;
}

#footer {
    background-color: #690A0E;
    color: #E9EdF2;
    padding-top: 50px;
    padding-bottom: 0;
    font-size: 80%;
    border-top: #bbb 10px solid;

}


@media screen and (min-width: 768px) {
    #content,
    #footer {
        position: relative;
        overflow: hidden;
    }

    .id-custom-header-before,
    #content::before,
    #footer::before {
        content: '';
        position: absolute;
        top: auto;
        left: -10%;
        right: 50%;
        bottom: 0;
        background-image: url(img/brendan-jones-building-houses-white-o.svg);
        background-position: left bottom;
        background-size: auto 80%;
        background-repeat: no-repeat;
        opacity: .15;
        height: 66%;
    }
    .id-custom-header-before {
        height: 100%;
        left: 0;
    }
    #content::before {
        background-image: url(img/brendan-jones-building-houses-white.svg);
        left: 50%;
        background-position: left bottom;
        right: 0%;
        opacity: 1;
        z-index: -1;
    }
}

.id-footer-widget-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 992px) {
    .id-footer-widget-wrapper {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.id-footer-widget-wrapper .id-dynamic-widget-item {
    margin-bottom: 30px;
}

#footer .widget:not(:last-of-type) {
    margin-bottom: 30px;
}

#footer h4.widgettitle {
    border-bottom: 2px solid rgba(145, 106, 68, 0.75);
    color: #ece4d9;
}


#footer .widget a {
    color: #ece4d9;
}

#footer .widget a:hover,
#footer .widget a:focus,
#footer .widget a:active {
    color: #999;
    text-decoration: none;
}

.footer ul.menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer ul.menu li > a {
    padding: 1em;
    display: block;
}

.footer ul.menu li:not(:last-of-type) {
    border-bottom: 1px dashed rgba(145, 106, 68, 0.5);
}

.footer li ul li {
    border-bottom: none;
}


.id-copyright-wrapper {
    padding: 30px 15px;
    background-color: rgba(0,0,0,0.0);}

.footer .footer-widget-01 p {
    padding: 2ex 0;
    margin: 0;
}

.footer .footer-widget-01 p {
    border-bottom: 1px dashed rgba(145, 106, 68, 0.5);
}

.footer .footer-widget-04 li {
    border-bottom: 1px dashed rgba(145, 106, 68, 0.5);
    margin: 0;
    padding: 0;
}

.footer .footer-widget-04 li span {
    padding: 2ex 0;
    margin: 0;
}

.footer .footer-widget-01 ul>li i {
    margin: 2ex 0;
}


/*
* -----------------------------------------------------------------------------
*
* # Buttons
*
* -----------------------------------------------------------------------------
*/
input[type="submit"],
input[type="button"],
.btn {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 6px 12px;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}

input[type="submit"].btn-lg,
input[type="button"].btn-lg,
.btn-lg {
    padding: 11px 30px;
}

.btn-xl {
    padding: 30px 50px;
}

input[type="submit"],
input[type="button"],
.btn-primary {
    background-color: #892A2E;
    border-color: #892A2E;
    color: white;
}

input[type="submit"]:active,
input[type="button"]:active,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #222;
    border-color: #222;
}

/*
* -----------------------------------------------------------------------------
*
* _Btn Outline
*
* -----------------------------------------------------------------------------
*/

.btn-outline  {
    background-color: transparent;
    border-color: #892A2E;
    color: #892A2E;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    background-color: #892A2E;
    border-color: #892A2E;
    color: #fff;
}

.btn-outline-inverse  {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-outline-inverse:hover,
.btn-outline-inverse:focus,
.btn-outline-inverse:active {
    background-color: #fff;
    border-color: #fff;
    color: #892A2E;
}



/*
* ----------------------------------------------------------------
* DDownload Buttons
* ----------------------------------------------------------------
*/

.ddownload-button {
    padding: 1ex 2ex;
    font-size: 1.25em;
    background-image: none;
    background-color: #999;
    color: #fff!important;
    text-shadow: none;
}

.ddownload-button:hover,
.ddownload-button:active,
.ddownload-button:focus {
    background-image: none;
}


.ddownload-button.button-blue {
    background-color: #0080A2;
    border-color: #0080A2;
}

.ddownload-button.button-blue:hover {
    background-color: transparent;
    border-color: #0080A2;
    color: #0080A2 !important;
}

.ddownload-button.button-green {
    background-color: #2ECC71;
    border-color: #2ECC71;
}

.ddownload-button.button-green:hover {
    background-color: transparent;
    border-color: #27AE60;
    color: #27AE60 !important;
}




/*
* -----------------------------------------------------------------------------
*
* # Image
*
* -----------------------------------------------------------------------------
*/

img.alignright {float:right; margin:0 0 1em 1em;}
img.alignleft {float:left; margin:0 1em 1em 0;}
img.aligncenter {display: block; margin-left: auto; margin-right: auto;}
a img.alignright {float:right; margin:0 0 1em 1em;}
a img.alignleft {float:left; margin:0 1em 1em 0;}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto;}


@media screen and (max-width: 767px) {
    .content-main img[class*="wp-image-"] {
        width: 100%;
        float: none !important;
        margin: 1em auto !important;
    }
}


/*
* -----------------------------------------------------------------------------
*
* @Large Google MAP
*
* ----------------------------------------------------------------------------
*/

.id-google-map-wrapper .acf-map {
    margin: auto;
    height: 400px;
}


@media screen and (min-width: 992px) {
    .id-google-map-wrapper .acf-map {
        height: 600px;
    }
}

.id-google-map-wrapper address {
    display: none;
}

.acf-map,
.acf-os-map .leaflet-tile-pane {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: grayscale(100%) contrast(130%);
    -webkit-filter: grayscale(100%) contrast(130%);
}

.leaflet-popup-content .id-btn-direction{
    display: block;
    margin-top: 20px;
}

/**
* -----------------------------------------------------------------------------
*
* default height
*
* -----------------------------------------------------------------------------
*/
.acf-map,
.acf-os-map{
    height: 500px;
    margin: 0;
}

/*
* ----------------------------------------------------------------
*
* ID Scroll Top
*
* ----------------------------------------------------------------
*/

.id_scroll_top.id-scroll-top-icon:hover,
.id_scroll_top.id-scroll-top-icon:focus,
.id_scroll_top.id-scroll-top-icon:active {
    background-color: #d33;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}

.id_scroll_top.id-scroll-top-icon {
    display: none;
    position: fixed;
    z-index: 99999;
    right: 0;
    bottom: 125px;
    line-height: 1;
    padding: 10px 15px;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.id_scroll_top:before {
    content: "";
}

.id_scroll_top.id-scroll-visible {
    opacity: 1;
    -webkit-animation: fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeInRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}

.id_scroll_top.id-scroll-hidden {
    opacity: 0;
    -webkit-animation: fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeOutRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}

/*
* ----------------------------------------------------------------
*
* Silence .grecaptcha
* (as per https://developers.google.com/recaptcha/docs/faq ,
* this is allowed if alt. text shown on	contact	page)
*
* ----------------------------------------------------------------
*/

.grecaptcha-badge {
    visibility: hidden !important;
}
.grecaptcha-error {
    visibility: initial;
}
.well.cf7recaptcha_notice,
.cf7recaptcha_notice {
    color: #888;
    font-size: 80%;
}


/*
* ----------------------------------------------------------------
*
* Post Thumbnail
*
* ----------------------------------------------------------------
*/

.post-thumbnail-wrapper {
    position: relative;
    margin: 1em auto;
    height: 100%;
    max-height: 400px;
    width: auto;
    text-align: center;
}

.post-thumbnail-wrapper::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}


.post-thumbnail-wrapper > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    -ms-background-size: contain;
    background-size: contain;
    background-position: center;
    /*    -webkit-background-size: cover;
        -moz-background-size: cover;
        -ms-background-size: cover;
        -o-background-size: cover;
        background-size: cover;*/
}


/*
* ----------------------------------------------------------------
*
* Call to action
*
* ----------------------------------------------------------------
*/

.well {
    color: white;
    margin-bottom: 0px;
    background-color: rgba(0,0,0,0.05);
    border: none;
}

/*
 * -----------------------------------------------------------------------------
 *
 *  feature pages
 *
 * -----------------------------------------------------------------------------
 */
.id-featured-pages.module-wrapper{
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}
.id-featured-pages .module-canvas{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

.factory-grid .module-thumbnail {
    background-color: transparent;
}

.factory-grid.id-featured-pages  .module-thumbnail::before {
    padding-bottom: 0%;
    content: none;
}

.factory-grid.id-featured-pages  .module-image,
.factory-grid.id-featured-pages  .module-overlay {
    position: static;
}
.factory-grid.id-featured-pages  .module-overlay {
    padding-top: 50px;
}

/*[data-feature-icon="true"] .module-image {
    position: absolute !important;
}*/

.module-image svg {
    width: 100px;
}

.module-image svg path {
    fill: #892A2E;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.module-image:hover svg path {
    fill: #666;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.id-featured-pages .module-content{
    text-align: center;
}

.id-featured-pages .module-excerpt {
    padding: 30px;
    padding-top: 0;
    font-size: 100%;
}


.id-featured-pages .module-title{
    font-size: 1.5em;
    color: #222;
}
.id-featured-pages .module-title a {
    color: inherit;
}

.id-featured-pages .module-title::after{
    content: '';
    display: block;
    width: 80px;
    border-bottom: 2px solid hsla(30, 36%, 42%, 0.75);
    margin: 20px auto 10px auto;
}

@media only screen and (min-width: 768px){
    .id-featured-pages.module-wrapper{
        margin-top: -200px;
        padding-top: 5em;
        padding-bottom: 3em;
    }
}

/*@media only screen and (min-width: 992px){
    .id-featured-pages.module-wrapper{
        margin-top: -200px;
    }
}*/
@media only screen and (min-width: 1500px){
    .id-featured-pages.module-wrapper{
        margin-top: -300px;
    }

}

/*
 * -----------------------------------------------------------------------------
 *
 *  call to action
 *
 * -----------------------------------------------------------------------------
 */
.id-call-to-action-wrapper{
    background-color: #892A2E;
    margin-bottom: 0;
    padding: 0;
    border: 0;
}

/*.id-call-to-action-wrapper .id-cta-background-image{
        background-attachment: initial !important;
}*/

.id-call-to-action-container {
    padding: 150px 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.id-call-to-action-content{
    color: #fff;
    background-color: transparent;
    padding: 20px;
    border-radius: 2px;
    text-align: center;
}

@media only screen and (min-width: 992px){
    .id-call-to-action-content{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: left;
    }
}

.id-call-to-action-message {
    /*max-width: 620px;*/
    text-align: center;
}

@media only screen and (min-width: 992px){
    .id-call-to-action-message {
        margin-right: 4em;
        text-align: left;
    }
}

.id-call-to-action-message h1,
.id-call-to-action-message h2,
.id-call-to-action-message h3,
.id-call-to-action-message h4{
    /*font-size: 2.5em;*/
    font-weight: bold;
    text-shadow: 0px 2px 0px rgba(0,0,0,0.15);

    margin-top: 5px;
    margin-bottom: 20px;
}
.id-call-to-action-message h1 > strong,
.id-call-to-action-message h2 > strong,
.id-call-to-action-message h3 > strong,
.id-call-to-action-message h4 > strong{
    font-weight: 500;
    color: #EEB884;
}

/*.id-call-to-action-message p{
        font-size: 1.3em;
}*/
.id-call-to-action-message a{
    text-decoration: none;
    font-weight: bold;
    color: #fff;
}
.id-call-to-action-message a:hover,
.id-call-to-action-message a:focus,
.id-call-to-action-message a:active {
    text-decoration: underline;
}

.id-call-to-action-wrapper .id-cta-background-image:before{
    content: '';
    display: block;
    height: 100%;
    background-color: rgba(0,0,0,0.25);
}
.id-call-to-action-wrapper .call-to-action-btn{
    /*padding: 15px 30px;*/
    border-radius: 2px;
    color: #222;
    background-color: #fff;
    border-color: #fff;
}

.id-call-to-action-wrapper .call-to-action-btn:hover,
.id-call-to-action-wrapper .call-to-action-btn:focus,
.id-call-to-action-wrapper .call-to-action-btn:active{
    color: #fff;
    background-color: #222;
    border-color: #222;
}

/*
 * -----------------------------------------------------------------------------
 *
 *  generic module
 *
 * -----------------------------------------------------------------------------
 */

.module-wrapper {
    padding: 5em 0;
}

.id-post-title > h1 > small,
.module-wrapper .module-section-title > small {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    display: block;
}

.id-post-title > h1,
.module-wrapper .module-section-title{
    color: #892A2E;
    text-transform: capitalize;
}

/*
 * -----------------------------------------------------------------------------
 *
 *  services
 *
 * -----------------------------------------------------------------------------
 */


.id-services-wrapper {
    background-color: #fff;
    padding-bottom: 0;
    margin-bottom: 0;
}

.id-services-wrapper .module-section {
    width: auto;
}

.id-services-wrapper .module-canvas {
    padding-bottom: 0;
    margin-bottom: 0;
}


.id-services-wrapper .module-outer,
.id-services-wrapper module-inner {
    padding: 0;
}



.id-services-wrapper .module-feature-title {
    margin: 0;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    color: #fff;
    background-color: #892A2E;
    display: block;
    padding: 15px;
}
.id-services-wrapper .module-item:hover .module-feature-title ,
.id-services-wrapper .module-item:focus .module-feature-title ,
.id-services-wrapper .module-item:active  .module-feature-title {
    color: #eee;
    background-color: #444;
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.id-services-wrapper .module-item  .module-overlay {
    -webkit-transition: all 500ms;
    transition: all 500ms;
}

.id-services-wrapper .module-item:hover .module-overlay ,
.id-services-wrapper .module-item:focus .module-overlay ,
.id-services-wrapper .module-item:active  .module-overlay {
    background-color: rgba(0,0,0,0.25);
    -webkit-transition: all 500ms;
    transition: all 500ms;
}





.id-services-wrapper a.module-image .module-overlay .fa {
    font-size: 16px;
    font-size: 1rem;
}

.id-services-wrapper a.module-image .module-overlay .fa::before {
    background-color: transparent;
    border-color: transparent;
    color: white;
    /*font-size: 5em;*/
    opacity: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

.id-services-wrapper a.module-image:hover .module-overlay .fa::before,
.id-services-wrapper a.module-image:active .module-overlay .fa::before,
.id-services-wrapper a.module-image:focus .module-overlay .fa::before {
    opacity: 1;
    background-color: rgba(255,255,255,0.25);
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
/*.id-services-wrapper .module-canvas{
    justify-content: center;
}
.id-services-wrapper .module-content{
    color: #fff;
    background-color: #892A2E;
    text-align: center;
    justify-content: center;
}
.id-services-wrapper .module-title,
.id-services-wrapper .module-title a{
    color: #fff;
}

.id-services-wrapper .module-title a:hover,
.id-services-wrapper .module-title a:focus,
.id-services-wrapper .module-title a:active{
    text-decoration: underline;
}

.id-services-wrapper .panel-body{
    padding: 0;
}
.id-services-wrapper .module-content .module-spacer{
    display: none;
}


.id-services-wrapper .module-overlay .fa::before{
    background-color: rgba(255,255,255,0.25);
    color: #ffffff;
}

.id-services-wrapper .module-overlay{
    opacity: 0;
    -webkit-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    background-color: rgba(0, 0, 0, 0.5);
}
.id-services-wrapper .module-image:hover .module-overlay,
.id-services-wrapper .module-image:focus .module-overlay,
.id-services-wrapper .module-image:active .module-overlay{
    opacity: 1;
}*/

/*
 * -----------------------------------------------------------------------------
 *
 *  testimonial module
 *
 * -----------------------------------------------------------------------------
 */
.id-testimonial-wrapper{
    padding: 5em 0;
}
.id-testimonial-wrapper .module-title {
    order: 2;
}

.id-testimonial-wrapper .module-outer,
.id-testimonial-wrapper .module-inner,
.id-testimonial-wrapper .module-body{
    padding: 0;
}
.id-testimonial-wrapper .module-prices,
.id-testimonial-wrapper .module-excerpt{
    font-size: 100%;
    line-height: 2em;
}

.id-testimonial-wrapper .module-excerpt::after{
    content: '';
    display: block;
    width: 80px;
    border-bottom: 2px solid #892A2E;
    margin: 20px 0 10px 0;
}

.id-testimonial-wrapper .module-inner{
    background-color: transparent;
    box-shadow: none;
}
.id-testimonial-wrapper .module-overlay .fa::before {
    background-color: #892A2E;
    color: #fff;
}

.id-testimonial-wrapper .module-canvas.owl-carousel .owl-nav {
    margin-top: 3em;
}
.id-testimonial-wrapper .module-canvas.owl-carousel .owl-prev,
.id-testimonial-wrapper .module-canvas.owl-carousel .owl-next{
    margin-top: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}



/*
* ----------------------------------------------------------------
*
*
*
* ----------------------------------------------------------------
*/

.sidebar .menu {
    padding: 0;
    list-style: none;
}


.sidebar .menu li a {
    position: relative;
    padding: 1em;
    display: block;
    font-weight: 500;
    border-bottom: 1px #892A2E solid;
}

.sidebar .menu li a:hover,
.sidebar .menu li a:focus,
.sidebar .menu li a:active {
    background-color: #892A2E;
    color: #fff;
}

.sidebar .menu li a::before {
    content: '\f105';
    margin-right: 1ex;
    font-family: fontAwesome;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}

.sidebar .menu li a:hover::before,
.sidebar .menu li a:active::before,
.sidebar .menu li a:focus::before {
    content: '\f105';
    margin-right: 1ex;
    color: #ddd;
    -webkit-transition: all 250ms ease-out .1s;
    -moz-transition: all 250ms ease-out .1s;
    -o-transition: all 250ms ease-out .1s;
    transition: all 250ms ease-out .1s;
}
/*
* ----------------------------------------------------------------
*
*
*
* ----------------------------------------------------------------
*/
