html{
    -moz-transition: all .3s ease-out;
    -ie-transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body {
	font-size: 16px;
}

.header_wrapper{
	padding: 20px 0 0;
}

main ul{
    margin-left: 1em;
}

main ul, main ul li {
    list-style: disc outside;
}

ul.collapsible, ul.collapsible > li{
    list-style-type:none;
}

img{
    max-width: 100%;
}

a{
    color: #f69139;
}

h1{
    color: #f69139;
    font-size: 3rem !important;
}

h2{
	color: #f69139;
	font-size: 39px;
    margin-bottom: 2.424rem;
    margin-top: 0;
}

#search {
    position: relative;
    float: right;
    width: 36px;
    height: 36px;
    margin-top: 15px;
}

@media(min-width:992px){
    #search{
        margin-top: 0px;
    }
}

#search-label-wrapper {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 20;
}

#search-label-wrapper label {
    display: block;
    width: 36px;
    height: 36px;
    background: url("../img/search.png") 0 0;
    font-size: 0;
    color: rgba(0, 0, 0, 0);
    text-indent: -9999px;
    cursor: pointer;
}
// #search-label-wrapper label:hover {
//     background: url("../img/search.png") 0 36px;
// }
#search-label-wrapper.active label {
    background: url("../img/search.png") 0 36px;
}


#input {
    position: absolute;
    top: 0;
    left: auto;
    width: 350px;
    height: 36px;
    z-index: 5;
    overflow: hidden;
}

@media(min-width:992px){
    #input{
        left: -350px;
    }
}


#input input {
    display: block;
    position: absolute;
    top: 0;
    left: 350px;
    width: 350px;
    height: 100%;
    margin: 0;
    padding: 0 10px;
    border: none;
    background-color: #00245d;
    color: #fff;
    -webkit-backface-visibility: none;
    -moz-backface-visibility: none;
    -ms-backface-visibility: none;
    backface-visibility: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: left 0 ease-in-out;
    -moz-transition: left 0 ease-in-out;
    -ms-transition: left 0 ease-in-out;
    -o-transition: left 0 ease-in-out;
    transition: left 0 ease-in-out;
    box-sizing: border-box;
}
#input input:focus {
    outline: none
}
#input.focus {
    z-index: 20
}
#input.focus input {
    left: 0;
    -webkit-transition: left 0.3s ease-in-out;
    -moz-transition: left 0.3s ease-in-out;
    -ms-transition: left 0.3s ease-in-out;
    -o-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
}

.nav>li {
    display: inline-block;
}

.column1-2{
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.other-links{
    border-top: 1px solid #f3c7a0;
}

ul.mega-menuh div.sub-container div.mmccont .other-links li a{
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #f3c7a0;
    padding: 15px 0;
    color: #00245d;
}

.bg-grey{
    background-color: #f0f0f0;
}

.footer-wrap{
    background-color: #f69139;
    padding: 20px 0;
}

.site-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-right{
    color: #fff;
    font-size: 0.8rem;
}

.copy-right a{
    color: #fff;
}

.site-by{
    color: #fff;
    font-size: 0.8rem;
}

.site-by a{
    color: #fff;
}

.social a{
    color: #f69139;
    display: inline-block;
    font-size: 23px;
    background-color: #0f2b5b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
}

.footer-menu a{
    color: #fff;
    display: inline-block;
    margin-right: 20px;
}

#mainmenu .social a{
    color: #0f2b5b;
    display: inline-block;
    font-size: 23px;
    background-color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
}

/*=== hambuger nav ===*/

.hamburger_nav{
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: 10px;
    position: fixed;
    right: 30px;
    z-index: 99;
    padding: 8px;
    box-sizing: content-box;
}

.hamburger_nav .bars{
    display: block;
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #00245d;
    margin: 14px 0;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}

.hamburger_nav .bars::before,
.hamburger_nav .bars::after{
    content: " ";
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    background-color: #00245d;
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    -ms-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}

.hamburger_nav .bars::before{
    top: -8px;
}

.hamburger_nav .bars::after{
    bottom: -8px;
}

.nav_open .hamburger_nav .bars{
    background-color: transparent;
}


.nav_open .hamburger_nav .bars::before{
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav_open .hamburger_nav .bars::after{
    bottom: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* ==========================================================================
HOME
========================================================================== */

.top_banner {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 5%;
}

// .home .top_banner{
//     min-height: 393px;
// }

// .parent_product .top_banner{
//     min-height: 536px;
// }

.top_banner {
    // min-height: 185px;
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}

.top_banner img{
    width: 100% !important;
}

.btn{
	text-transform: initial;
}

.btn.white{
	color: #000;
    /*border: 1px solid #f69139;*/
}

.btn.white:hover{
    background-color: #f69139!important;
}

.btn.orange{
    color: #00245d;
    background-color: #f69139!important;
    font-weight: 400;
}

.btn.orange:hover{
    background-color: white!important;
}

.btn.transparent{
    color: #fff;
    border:1px solid #fff;
}

.btn.transparent:hover{
    background-color: #f69139 !important;
    border:1px solid #f69139;
}

.btn.large{
    padding-left: 5em;
    padding-right: 5em;
}

.btn.white, .btn.orange, .btn.transparent, .btn-add-to-cart, .btn-find-a-dealer{
    border-radius: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.custom-content{
	padding: 60px 0;
}

/*.product-item .product-thumb::after{
    border: 4px solid #f69139;
    max-width: 100px;
    content: " ";
    display: block;
    margin-top: -7px;
    margin-bottom: 7px;
}*/

.product-thumbnail{
    overflow: hidden;
}

.product-thumbnail img{
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.product-thumbnail img:hover{
    transform: scale(1.05);
}

.meter{
    height: 4px;
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
}
.meter-bar{
    transition: all 500ms ease;
    height: 4px;
    background: #f69139;
    position: absolute;
    display: inline-block;
}

/*.animate{
   animation: load 5s ease;

}*/

@keyframes load{
    0%{
        width: 0%;
    }
    100%{
        width: 100px;
    }
}



.product-name{
    color: #00245d;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}

a.btn-more{
    color: #000;
    padding: 6px 25px;
    border-radius: 20px;
    border: 1px solid #f69139;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    margin-left: 0.75rem;
}

.product-list-description a.btn-more{
    margin-left: 0px;
}

a.btn-more:hover{
    color: #fff;
    background-color: #f69139;
}

a.btn-view-all {
    color: #fff;
    padding: 6px 25px;
    border-radius: 20px;
    /*border: 1px solid #f69139;*/
    background-color: #f69139;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

a.btn-view-all:hover{
    color: #000;
    background-color: #fff;
}

.product-thumb img{
    display: block;
    width: auto;
    max-height: 400px;
    margin: 0 auto;
}



.product-item p{
    min-height: 48px;
}

@keyframes whitetoorange{
    from{
        background-color: #fff;
    }
    to{
        background-color: #f69139;
    }
}

.waves-effect.btn.white{
    animation-name: whitetoorange;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
    animation-play-state: running;
}



.custom-content.with-background {
    min-height: 600px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 130px 0;
}

.custom-content.with-background {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 5%;
}

.custom-content.with-background .content-body {
    width: 100%;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.custom-content .thumb, .custom-content .locate-content{
    float: left;
}

.custom-content .thumb{
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

@keyframes circle {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(2)
    }
}


.circle {
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border: 4px solid CadetBlue;
    border-radius: 50%;
    position: absolute;
    top: 20%;
    left: 30%;
    z-index: -1;
    opacity: 0.3;
}
.one {
    animation: circle 4.5s infinite linear;
}
.two {
    animation: circle 4.5s infinite linear;
    animation-delay: 1.5s;
}
.three {
    animation: circle 4.5s infinite linear;
    animation-delay: 3s;
}

.locate-heading{
    color: #f69139;
    font-size: 49px;
    font-weight: bold;
    line-height: 1;
}

.locate-content p{
    color: #fff;
}

.locate-content a{
    color: #fff;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.box img{
    width: 100%;
    display: block;
}

.box-content{
    padding: 20px 35px;

}

.box-heading{
    color: #f69139;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.1;
}

.flexbox{
    display: inline-block;
    display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between
}

.box1-3{
    width: 32%;
    background-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
}

/*.top-banner{
    border-top:5px solid #f69139;
}*/



/* ==========================================================================
COMPANY PROFILE
========================================================================== */

.inner-main{
    margin: 50px 0;
}


.inner-main h1{
    color: #f69139;
    font-size: 39px;
    margin-top: 0;
}

.collapsible-body ul{
    padding: 0 2em;
    margin-bottom: 1rem;
}

.collapsible-body p{
    padding: 1rem 2rem;
}

.btn-block {
    display: block!important;
}

.collapsible-header{
    font-size: 1.2em;
    color: #00245d;
    font-weight: 500;
}

.collapsible{
    position: relative;
}

.collapsible-header:after{
    content: "\f067";
    font-family: FontAwesome;
    color: #c2c2c2;
    right: 1rem;
    font-weight: 300;
    position: absolute;
    font-size: 14px
}

.collapsible-header.active:after{
    content: "\f068";
}



/* ==========================================================================
NEW BUILD SYSTEM DESIGN
========================================================================== */

h1.large{
    color: #f69139;
    font-size: 48px;
    margin-top: 0;
    font-weight: 300;
}

h3{
    color: #f69139;
    font-size: 25px;
    font-weight: 500;
}

.the-enl-team-wrapper{
    color: #fff;
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 2% 0;
    min-height: 357px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/enl-team-background.jpg);
}

.the-enl-team-wrapper a{
    color: #f69139;
    font-weight: 500;
    font-size: 17px;
}

.enl-icon{
    background-color: #f69139;
    border-radius: 50%;
    height: 42px;
    width: 42px;
    animation: pulse 2s infinite linear;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.15)
    }
    100% {
        transform: scale(1)
    }
}

.team-info{
    margin-top: 40px;
}

.the-enl-team-wrapper h3{
    font-size: 34px;
}


/* ==========================================================================
PRODUCT LIST
========================================================================== */

.meter-bar2{
    transition: all 500ms ease;
    height: 4px;
    background: #f69139;
    position: absolute;
    display: inline-block;
    animation: loadnew 1.5s ease-in-out;
    width: 100%;
}

@keyframes loadnew{
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}

.product-list-description p{
    margin-top: 0;
    // min-height: 57px;
    line-height: 1.2em;
}

.product-detail-block h1.product-name{
    color: #00245d;
    font-size: 35px;
    font-weight: bold
}

.btn-add-to-cart, .btn-find-a-dealer{
    color: #fff;
    font-weight: 400;
    margin-right: 20px;
    text-transform: uppercase;
}

.btn-add-to-cart{
    background-color: #f69139;
}

.btn-find-a-dealer{
    background-color: #00245d;
}

.thumbnail-container{
    height: 230px;
    text-align: center;
}

.product-thumbnail img{
    display: inline-block;
    vertical-align: middle;
}

.thumbnail-container:before {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    content: " ";
}

.related-product-wrapper{
    margin-top: 50px;
}

.image-thumbnail-container{
    width: 100px;
    border: 1px solid #efefef;
    height: 73px;
    display: inline-block;
    text-align: center;
}

.product-list-price{
    display: none;
    color: #f69139;
    font-weight: bold;
    margin-top: 1em;
}

.ccm-page-list-title{
    margin-top: 0;
    margin-bottom: 0;
}

.list-item{
    margin-bottom: 30px;
}

.pull-right{
    float: right !important;
}

span.marker {
    width: 24px;
    height: 37px;
    padding: 7px 3px;
    display: inline-block;
    color: #fff;
    background-image: url(../img/map-pin.png);
    background-repeat: no-repeat;
    text-align: center;
    font-size: 14px;
}

.left-sidebar .category a{
    color: #00245d;
    font-weight: bold;
    font-size: 1.1em;
}

.left-sidebar .category a.active{
    color: #f69139;
}

.left-sidebar ul{
    display: none;
}

.left-sidebar ul li{
    list-style: none;
}

.left-sidebar ul.active{
    display: block;
}

.left-sidebar>ul{
    margin-left: 0;
}

.left-sidebar ul a.active{
    color: #f69139;
}

// .project-info{
//     padding: 100px 0px;
// }


@media(min-width:992px){
    .main .wrapper{
        margin-top: 50px;
    }
}

.main .wrapper{
    margin-top: 25px;
}

.new-build-system-design .wrapper{
    margin-top: 0px;
}


.project-info tr{
    border-bottom: 1px solid rgb(228, 228, 228);
}

.project-info tr:last-child{
    border-bottom: none;
}

.project-info th {
    width: 33.33%;
    vertical-align: text-top;
}

.project-info .col.m6{
    float: inherit;
}

@media(min-width:1024px){
    .project-info .ccm-image-slider{
    margin: 100px 50px;
    }
}


.project-info .main .row{
    margin-bottom: 100px;
}

.current-projects .main .row{
    margin-bottom: 100px;
}

.project .main .row{
    margin-bottom: 100px;
}

.event .main .inner-main{
    margin-bottom: 100px;
}

.dropdown-content li>a, .dropdown-content li>span{
    color: #00245d;
}

@media(max-width:600px){
    ul.mega-menuh li{
    position: inherit !important;
    }
}

.company-profile h2{
    margin-top: 50px;
}


@media(min-width: 601px){
    .hamburger_nav.hide-on-med-and-up {
        display: inline-block !important;
    }
}

@media(min-width:992px){
    .hamburger_nav.hide-on-med-and-up{
        display: none !important;
    }
    .nav.mega-menuh{
        display: block !important;
    }
}




@media(max-width:991px){
    // .header_wrapper .nav-bar-bg .wrapper #mainmenu ul.nav.mega-menuh{
    //     display: none !important;
    // }
}

a i.fa.fa-angle-right{
    font-size: 0.8em;
    font-color: #0f2b5b !important;
}

.contact .row  .col.m6 img{
    height: 259px;
    object-fit: cover;
}

.contact .col.m5.s12 p:first-of-type{
    margin-top: 0px;
}

.contact .col.m5.s12{
    padding-left: 0px;
}

@media(min-width:768px){
    .form-group.field{
        width: 49%;
        display: inline-block;
    }
    .form-group.captcha{
        width: 18%
    }

    .ccm-block-type-form .fields .form-group{
        padding-right: 50px;
    }
    .form-group.field.field-textarea textarea{
    width: 100%;
    margin-right: 50px;
}

}

.form-actions .btn-primary{
    color: #fff;
    background-color: #f69139!important;
    font-weight: 400;
    border-radius: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

button .btn-orange{
    color: #fff;
    background-color: #f69139!important;
    font-weight: 400;
    border-radius: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

.ccm-block-type-form{
    padding-top: 20px;
}

.form-group.field.field-textarea{
    width: 100%;
}





.form-group.field.field-textarea textarea{
    height: 5rem;
}

input:not([type]), input[type=text], input[type=password], input[type=email], input[type=url], input[type=time], input[type=date], input[type=datetime], input[type=datetime-local], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea{
    height: 2rem;
}

input[type=text] .input-group .form-control.input-number.product-qty{
    height: auto !important;
}

input:not([type]):focus:not([readonly]), input[type=text]:focus:not([readonly]), input[type=password]:focus:not([readonly]), input[type=email]:focus:not([readonly]), input[type=url]:focus:not([readonly]), input[type=time]:focus:not([readonly]), input[type=date]:focus:not([readonly]), input[type=datetime]:focus:not([readonly]), input[type=datetime-local]:focus:not([readonly]), input[type=tel]:focus:not([readonly]), input[type=number]:focus:not([readonly]), input[type=search]:focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #f69139;
    box-shadow: 0 1px 0 0 #f69139;
}

.videos iframe{
    width: 100%;
    height: 250px;
}

.videos h3{
    font-size: 1.3rem;
}

#dealerresults .col.s10 p{
    margin: 5px 0;
}

div#content-sbBlog-date {
    margin-bottom: 10px;
    font-size: 0.8em;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgb(228, 228, 228);
    padding: 0; 
}


button.btn-more{
    color: #000;
    padding: 6px 25px;
    border-radius: 20px;
    border: 1px solid #f69139;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    margin-left: 0.75rem;
    background-color: transparent;
}


.parent_product .wrapper{
    margin-top: 0px;
}

.product-detail-block .row{
    display: flex;
    align-items: center;
}

.product-detail-block .col.s12.m6.product-image{
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(min-width:992px){
        .team-info .col.l4 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .table.project-desc th{
        width: 16.66666666%;
    }
}

.company-profile .sidebar-top img {
    margin-top: 50px;
}

.news .thumbnail img {
    width: 100%;
    height: auto;
}

.center{
    margin: 0 auto;
}

.category-description{
    margin-bottom: 0px !important;
}


@media (min-width: 992px){
    .main .wrapper {
        margin-top: 25px !important;
    }
}

.ccm-custom-style-main.container p.category-description{
    color: #000 !important;
}

.pagination li.active {
    background-color: #f69139;
}