/*=== HEADER ===*/
#header{
    height: 39px;
    background-color: #0a0a0a;
}
.header-wrapper{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
}
.top-bar{
    font-size: 12px;
    color: #fff;
    position: relative;
    height: 39px;
    background-color: #1a1b1d;
    z-index: 0;
}
.top-bar .container{
    max-width: 1100px;
    padding-right: 0;
}
.top-bar .flexbox{
    align-items: center;
    justify-content: flex-end;
}
.top-bar .flexbox div{
    height: 100%;
}
.top-bar a{
    vertical-align: middle;
    margin-right: 15px;
}
.top-bar a:not([class*="btn"]) i{
    vertical-align: middle;
    color: #ed1c24;
    margin-right: 10px;
}
.top-bar .search-btn{
    font-size: 18px;
    text-align: center;
    display: inline-block;
    width: 90px;
    height: 100%;
    line-height: 42px;
    margin-left: 18px;
    background: #ed1c24;
}
.top-bar .search-btn:hover{
    background: #212121;
    color: #ed1c24;
}
.rep-link {
	display: inline-block;
	padding-right: 16px;
	position: relative;
}

.rep-link:after {
	content: "";
	display: inline-block;
	position: absolute;
	right: -3px;
	top: -5px;
	height: 20px;
	width: 2px;
	background-color: #fff;
}
/* Search Box */
.search-box{
    padding: 10px;
    background-color: #808080;
    position: relative;
    visibility: visible;
    opacity: 1;
}
.search-box input[type=text]{
    vertical-align: middle;
    text-align: left;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #000;
    padding-right: 55px;
    background-color: #fff;
}
.search-box button{
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    overflow: visible;
    transform: translateY(-50%);
    z-index: 99999;
}
.search-box .fa-search{
    display: block;
    font-size: 18px;
    color: #ed1c24;
    position: relative;
    top: 0;
    left: 0;
    z-index: 99999;
}
/*=== MAIN NAVIGATION ===*/
.header-menu > .flexbox{
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1100px;
    padding: 28px 0 0 0;
    transition: all 0.3s ease 0s;
}
.header-menu > .flexbox > .flexbox{
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 0;
}
.logo-wrapper{
    width: 206px;
}
.logo-wrapper .logo,
.logo-wrapper .logo img{
    display: block;
}
.logo-wrapper .logo {
	padding-bottom: 16px;
}
.logo-wrapper .logo img + img{
    display: none;
}
/*
#nav-btn,
#nav-close-btn{
    display: none;
}
*/
.nav-menu{
    font-size: 0;
}
.nav-menu > li{
    display: inline-block;
    vertical-align: middle;
    margin: 0 26px;
    position: relative;
    z-index: 0;
}
.nav-menu > li:first-child{
    margin-left: 15px;
}
.nav-menu > li:last-child{
    margin-right: 10px;
}
.nav-menu li a{
    color: #fff;
}
.nav-menu > li > a{
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: bold;
    display: block;
    padding: 33px 0 20px 0;
}
.nav-menu > li.active > a,
.nav-menu > li:hover > a{
    color: #ed1c24;
}
.sub-menu{
    width: 258px;
    padding: 15px 0 20px;
    text-align: left;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: -25px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    box-shadow: 3px 2px 8px -4px rgba(0,0,0,0.2);
}
li.has-child:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}
.sub-menu li a{
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    padding: 11px 25px 10px;
}
.sub-menu li a:hover{
    color: #ed1c24;
}
.sub-menu li:last-child{
    margin-bottom: 0;
}
/* Side Menu */
.side-menu{
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 56px;
    background: #ed1c24;
    color: #fff;
    -webkit-border-radius: 6px 0 0 6px;
    -moz-border-radius: 6px 0 0 6px;
    border-radius: 6px 0 0 6px;
    transition: all 0.3s ease 0s;
}
.side-menu li{
    border-bottom: 2px solid rgba(0, 0, 0, 0.25)
}
.side-menu li:last-child{
    border-bottom: none;
}
.side-menu a{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.side-menu li:first-child a{
    -webkit-border-radius: 6px 0 0 0;
    -moz-border-radius: 6px 0 0 0;
    border-radius: 6px 0 0 0;
}
.side-menu li:last-child a{
    -webkit-border-radius: 0 0 0 6px;
    -moz-border-radius:  0 0 0 6px;
    border-radius: 0 0 0 6px;
}
.side-menu a i{
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}
.side-menu a:hover{
    background: #0a0a0a;
}
.side-menu a:hover i{
    color: #ed1c24;
}

/*=== FIXED AND INNER HEADER ===*/
#inner #header{
    height: 110px;
}
.fixed .header-wrapper,
#inner .header-wrapper{
    -webkit-box-shadow: 0 2px 10px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 2px 10px -3px rgba(0,0,0,0.2);
    box-shadow: 0 2px 10px -3px rgba(0,0,0,0.2);
}
.fixed .header-menu,
#inner .header-menu{
    height: 72px;
    background-color: #fff;
}
.fixed .header-menu > .flexbox,
#inner .header-menu > .flexbox{
    padding-top: 0;
}
.fixed .logo-wrapper,
#inner .logo-wrapper{
    width: 99px;
}
/*
#inner .nav-menu,
.fixed .nav-menu{
    padding-top: 10px;
}
*/
#inner .logo-wrapper .logo img,
.fixed .logo-wrapper .logo img{
    display: none;
}
#inner .logo-wrapper .logo img + img,
.fixed  .logo-wrapper .logo img + img{
    display: block;
}
#inner .nav-menu > li > a,
.fixed .nav-menu > li > a{
    color: #0a0a0a;
}
.fixed .nav-menu > li.active > a,
.fixed .nav-menu > li:hover > a,
#inner .nav-menu > li.active > a,
#inner .nav-menu > li:hover > a{
    color: #ed1c24;
}
/*=== TOP BANNER ===*/
.banner{
    position: relative;
    min-height: 550px;
    z-index: 0;
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
    background-position: top center;
    background-attachment: fixed;
}
.banner .single-banner:before{
    background-color: rgba(32, 34, 33, 0.3);
}
.banner .single-banner:after{
    background: -moz-linear-gradient(45deg,  rgba(0,0,0,0.8) 0%, rgba(255,255,255,0) 50%);
    background: -webkit-linear-gradient(45deg,  rgba(0,0,0,0.8) 0%,rgba(255,255,255,0) 50%);
    background: linear-gradient(45deg,  rgba(0,0,0,0.8) 0%,rgba(255,255,255,0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#00ffffff',GradientType=1 );
}
.banner .container,
.sub-banner .container{
    justify-content: flex-start;
    align-items: center;
    max-width: 1060px;
    height: 100%;
    z-index: 2;
}
.banner-text{
    color: #fff;
    width: 100%;
    max-width: 540px;
    padding: 130px 0 40px 55px;
}
.banner .large-text:before{
    content: "";
    display: block;
    width: 150px;
    height: 10px;
    background: #ed1c24;
    margin-bottom: 35px;
}
.banner-text p{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.banner-content{
    margin-bottom: 25px;
}
.banner .slick-arrow{
    width: 52px;
    height: 102px;
}
.banner .slick-arrow:after{
    content: none;
}
.banner .slick-arrow.slick-prev{
    display: none !important;
    left: calc(50% - 500px);
    background: url(../images/layout/arrow-banner-lt.png);
}
.banner .slick-arrow.slick-next{
    right: calc(50% - 500px);
    background: url(../images/layout/arrow-banner-rt.png);
    transform: none;
    margin-top: -10px;
    opacity: 0;
    visibility: hidden;
}
.banner:hover .slick-arrow.slick-next{
    opacity: 1;
    visibility: visible;
}
.banner .slick-list,
.banner .slick-track{
    height: 100%;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}
.banner .slick-dots{
    bottom: 80px;
}
.move-down{
    position: absolute;
    bottom: -50px;
    z-index: 9;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    right: calc(50% - 510px);
}
.move-down i{
    display: block;
    font-size: 34px;
    margin-bottom: 10px;
}
.move-down:after{
    content: '';
    display: block;
    height: 115px;
    width: 2px;
    background: #e11c24;
    margin: 20px auto 0;
}
/* QUICK LINKS */
.quick-links-wrapper{
    height: 340px;
    margin-top: -25px;
    position: relative;
    z-index: 8;
}
.quick-links-wrapper .flexbox{
    flex-wrap: nowrap;
    max-width: 1200px;
    padding: 0;
    height: 100%;
}
.ql-box{
    position: relative;
    z-index: 0;
}
.ql-box h3{
    color: #fff;
}
.quick-links-wrapper .ql-box.slider{
    max-width: 640px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.quick-links-wrapper .ql-box.featured,
.quick-links-wrapper .ql-box.news{
    width: 280px;
    flex-grow: 1;
    position: relative;
    top: 25px;
    z-index: 0;
}
.ql-box.featured{
    background: #2d0103;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}
.ql-box.news{
    background: url(../images/layout/map-dots.png) right top #212121 no-repeat;
}
.ql-box .ql-content{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.ql-box.featured .ql-content{
    padding: 30px 35px 35px;
}
.ql-box.news .ql-content{
    padding: 30px 35px 75px 25px;
}
.ql-box.featured h3{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.23);
}
.ql-category{
    font-size: 12px;
    font-weight: 900;
    color: #ed1c24;
}
.ql-slider,
.ql-slider .slick-list,
.ql-slider .slick-track,
.ql-slider .slick-slide{
    height: 100%;
}
.ql-box.slider .ql-category{
    position: absolute;
    z-index: 1;
    top: 35px;
    left: 75px;
}
.ql-slider .ql-content{
    padding: 60px 15px 50px 75px;
    max-width: 400px;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}
.ql-slider .slick-dots{
    padding-left: 75px;
    text-align: left;
}
.ql-box p{
    margin-bottom: 20px;
}
.ql-box .more-link{
    font-weight: 500;
}
/*=== ABOUT SECTION ===*/
.about-wrapper{
    background: url(../images/layout/bg-figures.jpg) center top no-repeat;
    padding: 65px 0 70px;
}
.about-wrapper .container{
    max-width: 790px;
}
.about-text{
    max-width: 545px;
}
.about-text p{
    font-size: 16px;
}
.about-text .more-link,
.about-text .more-link:after{
    font-size: 16px;
     font-weight: 500;
}
.about-text .more-link:hover{
    color: #0a0a0a;
}
/*=== SOCIAL SECTION ===*/
.project-wrapper{
    background: #e6e6e6;
    padding: 80px 0 50px;
}
.project-slider{
    overflow-y: hidden;
    overflow-x: scroll;
    max-width: 100%;
    height: 270px;
}
.project-slider .empty-space{
    width: calc(50vw - 570px);
    flex-shrink: 0;
}
.project-slider .mCSB_scrollTools_horizontal{
    max-width: 565px;
    left: calc(50% + 20px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.project-slider .mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal{
    bottom: -62px;
    opacity: 1;
    height: 6px;
}
.project-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
    height: 6px;
    background: #d6d3d3;
    margin: 0;
    border-radius: 16px;
}
.project-slider .mCSB_container{
    display: flex;
    flex-wrap: nowrap;
}
.project-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
    width: 90px;
}
.project-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger_bar{
    background: #ed1c24;
    height: 6px;
    border-radius: 0;
    margin: 0;
}
.project-controls .ico-mouse{
    display: inline-block;
    vertical-align: top;
    width: 21px;
    height: 31px;
    background: url(../images/icons/mouse.png) no-repeat;
    margin-bottom: 5px;
}
.project-controls{
    padding: 16px 15px 0;
    max-width: 895px;
    text-align: left;
    margin: 0 auto;
}
.project-controls > div{
    display: inline-block;
    vertical-align: top;
}
.project-controls span{
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
    color: #777777;
}
.project-controls span:before,
.project-controls span:after{
    font: 12px Font Awesome\ 5 Pro;
}
.project-controls span:before{
    content: '\f060';
    margin-right: 18px;
}
.project-controls span:after{
    content: '\f061';
    margin-left: 18px;
}
.project-wrapper h2{
    margin-bottom: 15px;
}
.project-box{
    text-align: left;
    position: relative;
    height: 270px;
	width: 370px;
    margin: 0 17px;
    color: #fff;
    flex-shrink: 0;
    z-index: 0;
}
.project-box .img-box{
    width: 100%;
    height: 100%;
    z-index: 0;
    position: relative;
}
.project-box .img-box .relative{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%; 
    padding: 20px 15px 20px 44px;
}
.project-box i{
    font-size: 28px;
    color: #ed1c24;
    width: 76px;
    height: 76px;
    line-height: 76px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #0a0a0a;
    margin-bottom: 10px;
}
.project-box h3{
    color: #fff;
/*
    max-width: 190px;
    height: 56px;
*/
    display: flex;
    align-items: flex-end;
}
.project-box .img-box:after{
    background-color: rgba(32, 34, 33, 0.38);
}
.project-box:hover .img-box:after{
    opacity: 1;
    visibility: visible;
}
.project-box .more-link{
    padding: 8px 0 0 20px;
    position: relative;
    font-size: 0;
    min-height: 22px;
    z-index: 0;
}
.project-box .more-link:after{
    font-size: 0;
}
.project-box .more-link:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 29px;
    width: 2px;
    background: #ed1c24;
    transform: rotate(-90deg);
    transform-origin: left top;
}
.project-box:hover .more-link,
.project-box:hover .more-link:after{
    font-size: 12px;
}
.project-box:hover .more-link:before{
     transform: rotate(0deg);
}
.project-box:hover .img-box:after{
    background-color: rgba(32, 34, 33, 0.75);
}
/*=== EVENT SECTION ===*/
.events-wrapper{
    background: #212121;
    margin-top: 65px;
}
.events-wrapper .container{
    max-width: 915px;
    background: #fff;
    -webkit-border-radius: 0 0 7px 7px;
    -moz-border-radius: 0 0 7px 7px;
    border-radius: 0 0 7px 7px;
    padding-bottom: 25px;
}
.event-header{
    text-align: center;
    position: relative;
    top: -12px;
    z-index: 0;
}
.event-header h3{
    margin-bottom: 0;
}
.event-control{
    padding-right: 75px;
    position: relative;
    z-index: 0;
}
.event-control:after{
    content: '\f067';
    font-family: Font Awesome\ 5 Pro;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: -15px;
    color: #fff;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #0a0a0a;
}
.events-open .event-control:after{
    content: '\f068';
}
.event-content{
    display: none;
    padding: 75px 75px 0;
    font-size: 12px;
    line-height: 1.5;
}
.event-content .flexbox{
    width: 100%;
    justify-content: space-between;
}
.event-category{
    font-size: 12px;
    color: #ed1c24;
    font-weight: 900;
    margin-bottom: 30px;
}
.event-box{
    width: 100%;
    max-width: 300px;
}
.event-box h4 + p{
    text-transform: uppercase;
    margin: 10px 0 20px;
}
.event-box p span{
    text-transform: uppercase;
}
.event-box strong{
    color: inherit;
    font-weight: 900;
}
.event-box .more-link{
    text-transform: capitalize;
}
.event-box .more-link:after{
    margin-left: 10px;
}
.event-footer{
    text-align: center;
    padding-top: 35px
}
.event-footer .more-link{
    color: #777777;
    font-weight: 900;
}
.event-footer .more-link:hover{
    color: #ed1c24;
}
.event-slider-arrows{
    position: absolute;
    right: 50px;
    top: 0;
}
/*=== BAR CALLOUT ===*/
.bar-callout{
    color: #fff;
    background: #212121;
}
.bar-callout .flexbox{
    justify-content: space-between;
    align-items: flex-start;
    max-width: 945px;
    padding: 100px 40px 50px 90px;
    border-bottom: 1px solid #3c3c3c;
}
.bar-callout .medium-title{
    color: #fff;
    margin-bottom: 15px;
}
.bar-callout span{
    line-height: 1.5;
}
.bar-callout span a{
    color: #ed1c24;
}
.bar-callout .btn{
    margin-top: 5px;
}
/*=== FOOTER ===*/
.footer-wrapper{
    font-size: 12px;
    line-height: 1.7;
    color: #fff;
    height: 200px;
}
.footer-wrapper p{
    margin-bottom: 0;
}
.footer-top{
    background: #212121;
    color: #fff;
    padding: 35px 0;
}
.footer-top .flexbox{
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1020px;
}

.footer-top .flexbox span{
	color: #ed1c24;
}
.footer-top .social a{
    font-size: 16px;
    height: 35px;
    line-height: 34px;
    text-align: center;
    width: 35px;
    border: 2px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 4px;
}
.footer-top .social a:last-child{
    margin-right: 0;
}
.footer-top .social a:hover{
    border-color: #ed1c24;
    color: #ed1c24;
}
.footer-top li{
   display: inline-block;
}
.footer-top li:after{
    content: "|";
    color: #ed1c24;
    display: inline-block;
    vertical-align: middle;
    margin: 0 9px;
}
.footer-top li:last-child:after{
    content: none;
}
.footer-top li span{
    color: #ed1c24;
}
.footer-btm{
    background: #0a0a0a;
    padding: 30px 0 25px;
}
.footer-btm .flexbox{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}
.footer-btm .flexbox a{
	color: #ed1c24;
}
.footer-btm .flexbox > div:first-child{
    padding-right: 15px;
}
.footer-btm p a + span{
    margin: 0 4px;
}
.footer-btm p {
	display: inline-block;
}
.footer-btm ul,
.footer-btm ul li  {
	display: inline;
}
.footer-btm ul li + li {
	border-left: 1px solid #fff;
	margin-left: 2px;
	padding-left: 6px;
}

.jbsystems{
    display: inline-block;
    vertical-align: middle;
    background: url(/images/icons/logo-jb.png) no-repeat;
    width: 88px;
    height: 33px;
}
/*=== INNER PAGES ===*/
/* Sub Banner */
.sub-banner{
    height: 300px;
    position: relative;
    z-index: 0;
}
.sub-banner:after{
    background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.7) 0%, rgba(255,255,255,0) 35%);
    background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.7) 0%,rgba(255,255,255,0) 35%);
    background: linear-gradient(135deg,  rgba(0,0,0,0.7) 0%,rgba(255,255,255,0) 35%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00ffffff',GradientType=1 );
}
.sub-banner .banner-text{
    padding: 34px 45px 30px 55px;
}
.sub-banner .large-text{
    font-size: 36px;
    margin-bottom: 0;
}
.top-content{
    height: 148px;
    background: url(../images/layout/bg-figures-short.jpg) top center no-repeat #fff;
}
.top-content .flexbox{
    justify-content: space-between;
}
.top-content .flexbox > div{
    width: 50%;
}
.top-content .flexbox > div:first-child{
    padding-left: 40px;
    flex-grow: 1;
    width: 100%;
}
.top-content .flexbox > div:last-child{
    align-self: flex-end;
    text-align: right;
/*     max-width: 500px; */
    width: 100%;
}
.top-content .breadcrumbs{
    margin-bottom: 35px;
}
/* BREADCRUMBS */
.breadcrumbs{
    padding: 25px 0 15px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.2;
}
.breadcrumbs li{
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}
.breadcrumbs li:after{
    content: "|";
    display: inline-block;
    margin: 0 4px;
}
.breadcrumbs li:last-child:after{
    content: none;
}
.breadcrumbs li:last-child{
    color: #212121;
}
/*=== MAIN CONTENT ===*/
.main-content{
    position: relative;
    padding: 20px 0 50px;
    z-index: 0;
}
.main-content .inner-box{
    max-width: 930px;
}
.main-content .content ul{
    margin-bottom: 30px;
    text-align: left;
}
.main-content .content li,
.product-details li{
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 14px;
    z-index: 0;
}
.main-content .content li:before,
.product-details li:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ed1c24;
}
.main-product-wrapper .product-details .container {
	padding-top: 60px;
}
.main-content .sidebar{
    width: 380px;
    padding-left: 80px;
}
.col-right.sidebar > *:not(:last-child):not(.more-link){
    margin-bottom: 30px;
}
.col-right.sidebar > .more-link {
	display: block;
	font-size: 15px;
}
.col-right.sidebar > .more-link + .more-link {
	margin-top: 16px;
}
.img-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
    padding: 40px 15px;
    text-align: center;
    color: #fff;
    background-color: #333;
}
.img-banner.project-box{
    width: 100%;
    min-width: 0;
    margin: 0;
}
.img-banner.project-box i{
    margin-bottom: 15px;
}
.img-banner.project-box .more-link,
.img-banner.project-box .more-link:after{
    font-size: 12px;
}
.img-banner.project-box .more-link:before{
    content: none;
}
/*=== RPODUCT PAGE DETAILS ===*/
.main-product-wrapper .container{
    max-width: 1045px;
    padding-top: 40px;
    padding-bottom: 75px;
}
.main-product-wrapper .top-product-content + .flexbox,
.main-product-wrapper > .flexbox{
    align-items: flex-start;
    flex-wrap: nowrap;
}
.main-product-wrapper > .flexbox > div{
    width: 50%;
}
.main-product-wrapper .line-after:after{
    bottom: -43px;
}
.main-product-wrapper > .flexbox > div:first-child{
    padding-right: 60px;
}
.main-product-wrapper h1:after{
    content: "";
    display: block;
    height: 8px;
    width: 150px;
    background: #ed1c24;
    margin: 15px 0 25px;
}
.zoom-box-contain {
	position: relative;
	width: 100%;
/*
	top: 0;
	left: 0;
	
	z-index: 999;
*/
}
.main-product-photo {
	display: block;
	padding: 8px;
}

.main-product-photo.no-photo {
	min-height: 400px;
	width: 100%;
	position: relative;
}

.main-product-photo.no-photo:after {
	content: "NO PHOTO AVAILABLE";
	display: inline-block;
	position: absolute;
	top:50%;
	left: 50%;
	font-size: 40px;
	line-height: 52px;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform:    translate(-50%, -50%);
	-ms-transform:     translate(-50%, -50%);
	-o-transform:      translate(-50%, -50%);
	transform:         translate(-50%, -50%);
}

.main-product-photo > figcaption {
	position: relative;
	width: calc(100% + 16px);
	left: -8px;
	top: 8px;
	min-height: 40px;
	transition: opacity 0.3s ease 0s;
	overflow: hidden;
}

.main-product-photo:hover > figcaption {
	opacity: 0.4;
}
.main-product-photo > figcaption.hasFile {
	opacity: 1;
}
.main-product-photo > figcaption.hasFile .product-label-ship,
.main-product-photo > figcaption.hasFile .product-label-ship i {
	transition: all 0.3s ease 0s;
}

.main-product-photo > figcaption.hasFile:hover .product-label-ship {
	background-color: #1a1b1d;
}

.main-product-photo > figcaption.hasFile:hover .product-label-ship i {
	color: #ed1c24;
}

.main-product-photo > .new-tag {
	position: relative;
	width: calc(100% + 16px);
	left: -8px;
	top: -8px;
}
#image-zoom-box {
  position: absolute; 
  left: calc(100% + 50px);
  top: -20px;
  width: 100%;
  padding-bottom: 100%;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border: 1px solid #52879e;
  z-index: 100;
}
#image-zoom-box.show {
  opacity: 1;
  visibility: visible;
}

#image-zoom-box img {
  max-width: none;
}
.product-prime-photo{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e6e6e6;
    margin: 9px 0 15px;
    flex-direction: column;
}
.product-prime-photo .product-label-ship{
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
}
.product-label-ship{
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    background: #ed1c24;
    color: #fff;
    padding: 10px 20px;
    white-space: nowrap;
}
.product-label-ship i{
    margin-right: 7px;
}
.product-label{
    position: absolute;
    left: 0;
    top: 0;
    width: 77px;
    height: 77px;
    z-index: 1;
}
.product-label:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 77px 77px 0 0;
    border-color: #000000 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.product-label.label-sm{
    width: 51px;
    height: 51px;
}
.product-label.label-sm:before{
    border-width: 51px 51px 0 0;
}
.product-label.label-sm span{
    background-size: 80%;
    font-size: 9px;
    padding-top: 10px;
    left: 3px;
}
.product-prime-photo .product-label{
    top: -2px;
    left: -2px;
}
.product-label span{
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    background: url(../images/layout/label.png) no-repeat center top;
    padding-top: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 6px;
    left: 1px;
}
.product-gallery{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.product-gallery > a{
    width: 25%;
    border: 2px solid #e6e6e6;
    height: 80px;
    margin-right: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-gallery > a:last-child{
    margin-right: 0;
    position: relative;
    z-index: 0;
}
.product-gallery > a:last-child:after{
    background: rgba(33, 33, 33, 0.5);
    z-index: 2;
}
.product-gallery > a:last-child:before{
    content: "View All";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    z-index: 3;
}
.product-gallery > a > img {
	max-width: 95%;
	max-height: 95%;
}
.product-video{
    background: #212121;
    color: #fff;
    padding: 25px 30px 20px 36px;
    align-items: flex-start;
}
.product-video div:last-child{
    padding-top: 6px;
}
.product-video .btn-play{
    margin-right: 28px;
}
.product-video h3{
    color: #fff;
    margin-bottom: 5px;
}
.product-description li{
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 900;
}
.product-description li:last-child{
    margin-bottom: 0;
}
.product-description li .fa-file{
    font-size: 28px;
    margin-right: 12px;
    vertical-align: middle;
}
.product-description  .toggle-list{
    margin-top: 30px;
}
.toggle-list.padding {
	padding: 10px 20px 0 25px;
}
.toggle-list + h3 {
	margin-top: 20px;
	padding-top: 20px !important;
	display: block;
/* 	border-top: 1px solid #bfbcbc; */
}
.product-description  .toggle-box{
    background: #e6e6e6;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    margin-bottom: 9px;
}
.product-description  .toggle-box:last-child{
    margin-bottom: 0;
}
.product-description  .toggle-head{
    font-size: 18px;
    font-weight: bold;
    color: #212121;
    background: #e6e6e6;
    text-transform: uppercase;
    position: relative;
    padding: 20px 90px 16px 37px;
    cursor: pointer;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    z-index: 0;
}
.product-description  .toggle-open .toggle-head{
    color: #ed1c24;
    padding-bottom: 15px;
}
.product-description  .toggle-head span:after{
    margin-top: 0;
    height: 0;
}
.product-description  .toggle-open .toggle-head span:after{
    content: '';
    display: block;
    width: 29px;
    height: 2px;
    background: #ed1c24;
    margin-top: 15px; 
    position: static;
}
.product-description .toggle-ctrl {
    width: 31px;
    height: 31px;
    line-height: 29px;
    text-align: center;
    background: #0a0a0a;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    right: 21px;
    top: 11px;
}
.product-description  .toggle-ctrl:after{
    content: '\f067';
    font-family: Font Awesome\ 5 Pro;
    font-size: 10.5px;
    
}
.product-description  .toggle-open .toggle-ctrl{
    background: #ed1c24;
}
.product-description  .toggle-open .toggle-ctrl:after{
    content: '\f068';
}
.product-description  .toggle-open .toggle-ctrl:after{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
}
.product-description  .toggle-box.toggle-open .toggle-head span{
    max-width: 500px;
}
.product-description  .toggle-content{
    display: none;
    position: relative;
    padding: 0 90px 50px 37px;
    color: #0a0a0a;
    z-index: 0;
}

.product-description  .toggle-content p:last-child{
    margin-bottom: 0;
}
.product-details{
    background: #e6e6e6;
}
.product-details h4{
    font-weight: 900;
    color: #ed1c24;
    margin-bottom: 15px;
}
.toggle-type {
	display: flex;
	padding: 16px 38px 0px 30px;
}
.toggle-type li {
	margin: 0 !important;
	font-size: 16px;
	font-family: "Metropolis", sans-serif;
	font-weight: 700;
	color: rgb(10, 10, 10);
}
.toggle-type li:first-child {
	flex-grow: 1;
}
.toggle-type li:first-child label {
	display: block;
	width: 100%;
	cursor: pointer;
}
.type-list .form-check input[type="checkbox"] + label {
	padding-left: 0 !important;
}
.type-list .form-check input[type="checkbox"] + label:before {
	margin: 0 !important;
}
/*=== RPODUCT LISTING PAGE ===*/
#filters-btn,
#filters-close-btn{
    display: none;
}
.top-product-content{
    margin-bottom: 40px;
}
.top-product-content .inner-box{
    max-width: 730px;
}
.filter-side-wrapper{
    width: 248px;
    flex-grow: 0;
    flex-shrink: 0;
    border: 1px solid #bfbcbc;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 30px 0 32px;
}
.filter-side-wrapper h3{
    white-space: nowrap;
    padding: 0 20px 0 25px;
    margin-bottom: 10px;
}
.filter-side-wrapper .toggle-box{
    border-bottom: 1px solid #bfbcbc;
}
.filter-side-wrapper .toggle-head{
    font-size: 16px;
    font-weight: bold;
    color: #0a0a0a;
    cursor: pointer;
    position: relative;
    padding: 18px 50px 18px 30px;
    z-index: 0;
}
.filter-side-wrapper .toggle-head:after{
    content: '\f107';
    font: 24px Font Awesome\ 5 Pro;
    font-weight: bold;
    position: absolute;
    right: 25px;
    top: 13px;
}
.filter-side-wrapper .toggle-content{
    padding: 10px 50px 15px 30px;
}
.filter-side-wrapper li{
    margin-bottom: 10px;
}
.filter-side-wrapper .toggle-content a:hover,
.filter-side-wrapper .toggle-content a.selected {
	color: #ed1c24;
}
.filter-side-wrapper .toggle-content a.selected {
	font-weight: 900;
}
.listing-wrapper{
    width: 100%;
    padding-left: 18px;
}
.listing-top{
    border-top: 1px solid #bfbcbc;
    border-bottom: 1px solid #bfbcbc;
    padding: 12px 19px 12px 19px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.filter-views{
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.filter-views a{
    font-size: 22px;
    color: #aba7a7;
}
.filter-views a:first-child{
    margin-right: 15px;
}
.filter-views a.active{
    color: #0a0a0a;
}
.listing-top .listing-pagingation{
    display: inline-block;
    vertical-align: middle;
    color: #0a0a0a;
    margin-left: 6px;
    min-width: 200px;
}
.listing-pagingation .prev-items:after,
.listing-pagingation .next-items:after{
    display: inline-block;
    vertical-align: middle;
    font: 18px Font Awesome\ 5 Pro;
}
.listing-pagingation .prev-items:after{
    content: "\f060";
    margin-right: 7px;
}
.listing-pagingation .next-items:after{
    content: "\f061";
    margin-left: 7px;
}
.listing-pagingation .prev-items.disabled{
    color: #aba7a7;
}
.listing-top label{
    font-weight: bold;
    color: #0a0a0a;
    margin-right: 10px;
}
.listing-top .select2-container{
    min-width: 150px;
    margin-left: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: inherit !important;
}
.select2-container--default .select2-selection--single{
    border: none;
    background: #ebebeb;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
.select2-container .select2-selection--single{
    height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    line-height: 50px;
    color: #0a0a0a;
    padding: 1px 55px 0 19px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 12px;
    right: 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after{
    content: '\f107';
    font: 24px Font Awesome\ 5 Pro;
    font-weight: bold;
    color: #0a0a0a;
}
.product-box{
    position: relative;
    z-index: 0;
}
.product-box .img-box{
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding-bottom: 40px;
}
.product-box .img-box:after{
    content: '\f067';
    font-family: Font Awesome\ 5 Pro;
    font-size: 28px;
    width: 76px;
    height: 76px;
    line-height: 76px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #0a0a0a;
    color: #ed1c24;
    position: absolute;
    top: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
}
.product-box .img-box img{
    max-height: 100%;
    width: auto;
}
.listing-items .product-box{
    width: 33.333%;
    padding-right: 20px;
    text-align: center;
    margin-bottom: 45px;
    display: inline-flex;
}
.search-page .product-box {
	border: 2px solid #cbcbcb;
	margin: 10px 12px;
	padding: 0 0 20px 0;
	width: 31%;
}
.search-page .product-box .img-box {
	height: 224px;
	padding-bottom: 0px;
	background: #f0f0f0;
}
.search-page .product-box .img-box:after {
	display: none;
}
#search .inner-box {
	max-width: 100%;
}
.search-heading {
    text-transform: uppercase;
}
.search-heading span {
	text-transform: uppercase;
	display: inline-block;
	vertical-align: middle;
	float: right;
}
.search-data {
    margin-bottom: 40px;
}
.search-result {
	border: 2px solid #cbcbcb;
    background-color: #f0f0f0;
	color:#000;
    padding: 8px 20px 6px;
    font-size: 18px;
}
.search-result i {
    color: #ed1c24;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
}
.search-result .links {
    float: right;
}
.search-result .links span {
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}
.search-result .links a {
    color: #ed1c24;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
}
.search-results-list + .search-results-list {
    margin-top: 45px;
    padding-top: 45px;
    border-top: 2px solid #424141;
}
.search-results,
.search-results li {
	list-style: none;
}
.search-results > li {
    padding: 12px;
}
.search-results header {
    font-size: 18px;
    color: rgba(37, 37, 38, 0.75);
    text-decoration: underline;
}
.search-results header + small {
    display: block;
    font-size: 12px;
    padding-top: 6px;
}
.search-results li:before {
	display: none;
}
.search-results > li p {
	padding: 0;
	margin: .25em 0 0 0;
	font-size: 16px;
}
.search-results > li:nth-child(2n+2) {
    background-color: #e0e0e0;
}
.search-results > li + li {
    margin-top: 10px;
}
.search-results > li.flex {
	display: flex;
	flex-wrap: wrap;
}
.search-results > li.flex > a:first-child {
	flex-grow: 1;
}
.btn-contain {
	padding-top: 36px;
}
.listing-items .product-box > a {
	width: 100%;
}
.listing-items .product-box .product-label-ship{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.listing-items .product-box h5{
    font-size: 18px;
    font-weight: bold;
    color: #212121;
    display: inline-block;
    margin-bottom: 20px;
}
.listing-items .product-box .line-after-sm:after{
    margin: 7px auto 0;
}
.listing-items .product-content-box{
    padding: 0 15px 0 10px;
    height: 92px;
    overflow: hidden;
}
.listing-items .product-box p{
    text-align: left;
    margin-bottom: 0;
}
/* Products List View  */
.listing-items.th-list{
    padding-top: 20px;
    flex-direction: column;
}
.listing-items.th-list .product-box{
    width: 100%;
    border-bottom: 1px solid #dddcdc;
    padding-bottom: 30px;
    margin-bottom: 15px;
    text-align: left;
}
.listing-items.th-list .product-box a{
    display: flex;
}
.listing-items.th-list .product-box .img-box{
    width: 238px;
    height: 170px;
    margin-bottom: 0;
    flex-grow: 0;
    flex-shrink: 0;
}
.listing-items.th-list .product-content-box{
    padding: 20px 25px 0 30px;
    height: auto;
    overflow: visible;
}
.listing-items.th-list .product-content-box p:nth-child(2){
    font-size: 16px;
    margin-bottom: 3px;
}
.listing-items.th-list .product-box h5{
    display: block;
    margin-bottom: 10px;
}
.listing-items.th-list .line-after-sm:after{
    margin: 10px 0 0 0;
}
.listing-items .product-box .short-desc {
	display: none;
}
.listing-items.th-list .product-box .short-desc {
	display: block;
}
.listing-items .product-box h5 + p {
	text-align: center !important;
}
.listing-items.th-list .product-box h5 + p {
	text-align: left !important;
}
/*=== RELATED SLIDER ===*/
.product-related-wrapper{
    padding: 30px 0 50px;
}
.product-related-wrapper h2{
    margin-bottom: 10px;
}
.product-related-wrapper h2 + p{
    margin-bottom: 20px;
}
.product-related-wrapper .product-box h5{
    color: #ed1c24;
}
.product-related-wrapper .product-box .img-box{
    height: 120px;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.product-related-wrapper .product-box .img-box img {
	max-width: 200px;
}

.product-related-wrapper .product-box .img-box:after{
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slider-arrows.product-slider-arrows{
    margin: 0 0 30px auto;
}
.cats-container {
	display: flex;
	flex-wrap: wrap;
}
#pg + .select2 {
	width: 85px !important;
	min-width: 0 !important;
	margin-left: 3px !important;
}
.main-product-wrapper > hr {
	background: #e6e6e6;
	height: 4px;
	width: 100%;
}

.popup-link {
	display: inline-block;
	text-align: center;
	font-size: 14px;
	margin-top: 10px;
	padding: 10px 10px 0;
}

.popup-modal {
	padding: 20px;
	background-color: #fff;
}

.multi-video-display {
	font-size: 0 !important;
	display: flex !important;
	flex-wrap: wrap;
}

.multi-video-display .product-video {
	max-width: 180px;
	display: inline-flex;
	text-align: center;
	padding: 12px;
	margin: 5px;
	background-attachment: scroll;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: relative;
	z-index: 0;
}
.multi-video-display .product-video:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	height: 100%;
	width: 100%;
	z-index: -1;
}
.multi-video-display .product-video .btn-play {
	margin: 0 auto;
}

.multi-video-display .product-video .line-after-sm {
	display: inline-block;
}

.multi-video-display .product-video .line-after-sm:after {
	margin:15px auto 0;
}
.prod-list .prod-name {
	font-size: 16px;
}
.add-link i {
	margin: 0 10px 0 0;
	color: #ed1c24;
}