/*=== HEADER ===*/
#header {
    height: 0;
}
.header-wrapper{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 166px;
    z-index: 120;
}
.header-wrapper .container{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1920px;
    padding: 0 0 0 80px;
}
.header-left {
    display: flex;
    flex-grow: 1;
    align-items: center;
    padding: 40px 0 20px;
}
.logo-wrapper{
    width: 230px;
    flex-shrink: 0;
    position: relative;
}
.logo-wrapper .logo,
.logo-wrapper .logo img{
    display: block;
    width:  177px;
}
.logo-wrapper .logo img + img {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top:  0;
}
.header-right {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 80px 0 60px;
    font-size: 20px;
    flex-shrink: 0;
    width: 635px;
    justify-content: flex-end;
}
.header-right a[href^=tel] {
    margin-right: 65px;
}
#nav-btn,
#nav-close-btn{
    display: none;
}
.main-nav{
    flex-grow: 1;
    padding-left: 15px;
    margin-left: auto;
    text-align: center;
}
.nav-menu{
    font-size: 0;
    color: #fff;
}
.nav-menu > li{
    display: inline-block;
    position: relative;
    margin-right: 80px;
}
.nav-menu > li:last-child{
    margin-right: 0;
}
.nav-menu > li > a{
    padding: 15px 0;
    font-size: 22px;
}
.nav-menu > li.active > a,
.nav-menu li a:hover,
.sub-menu li a:hover {
    color: #FF0000;
}
.nav-menu > li > a {
    white-space: nowrap;
    position: relative;
}
.sub-menu {
    width: 335px;
    padding: 40px 30px 35px;
    text-align: left;
    position: absolute;
    top: 100%;
    left: -50px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.19);
}
.sub-menu.extend-nav {
	width: 700px;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}
li.has-child:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}
.sub-menu li{
    margin-bottom: 12px;
}
.sub-menu li a{
    display: block;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}
.sub-menu li:last-child{
    margin-bottom: 0;
}
/*=== FIXED AND INNER HEADER ===*/
.fixed .header-wrapper {
    background: #fff;
    box-shadow: 2px 0px 25px rgba(0, 18, 49, 0.19);
}
#inner #header,
#inner .header-wrapper {
     height: 160px;
}
#inner.fixed .header-wrapper, 
.fixed .header-wrapper {
    height: 140px;
}
.fixed .nav-menu,
#inner .nav-menu {
    color:  #000;
}
.fixed  .logo-wrapper .logo img,
#inner  .logo-wrapper .logo img  {
    width: 154px;
}
.fixed  .logo-wrapper .logo img:first-child,
#inner  .logo-wrapper .logo img:first-child {
    opacity: 0;
    visibility: hidden;
}
.fixed .logo-wrapper .logo img + img,
#inner .logo-wrapper .logo img + img {
    opacity: 1;
    visibility: visible;
}

/*=== TOP BANNER ===*/
.banner{
    position: relative;
    min-height: 800px;
    height:  100vh;
}
#inner .banner {
    height: calc(100vh - 208px);
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
}
.banner .single-banner > .img-box {
    position: absolute;
    width: calc(100% - 635px);
    background-position: top center;
    background-attachment: fixed;
    top:  0;
    bottom: 0;
    left: 0;
}
.banner .container{
    height: 100%;
    padding: 166px 0 40px;
    z-index: 2;
    align-items: flex-start;
    background-size: 70% 100%;
}
.banner-content-left {
    width:  calc(50% - 50px);
    align-self: center;
    padding-left: 80px;
}
.banner .container .img-box {
    width:  calc(50% + 50px);
    height: 670px;
}
.banner-text{
    width: 100%;
    color: #fff;
    position: relative;
    max-width: 710px;
    float: right;
}
.banner-content{
    display: block;
    max-width: 510px;
    margin-bottom: 25px;
}
.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{
    height: auto;
    left: 50%;
    bottom: 70px;
    width: auto;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
}
/*=== ABOUT SECTION & SECTIONS CONTENT ===*/
.about-wrapper {
    padding: 115px 0 100px;
}
.about-wrapper .container {
   max-width: 1720px;
}
.about-wrapper .flexbox > div {
    width: 50%;
}
.about-wrapper .flexbox > div:first-child {
    padding-right: 55px;
    display: flex;
    justify-content: flex-end;
}
.about-wrapper .flexbox > div:last-child {
    padding: 80px 50px 0 65px;
}
.about-wrapper .img-box {
    width: 100%;
}
.about-wrapper .img-box {
    max-width: 715px;
    height: 715px;
    position: relative;
    z-index: 1;
}
.about-wrapper .img-box:nth-child(2) {
    max-width: 690px;
    height: 690px;
    position: absolute;
    top: 0;
    z-index: 0;
    transform: translate(-105px, 85px );
}
.about-wrapper .btn {
    margin-top: 40px;
}
/*=== QUICK LINKS SECTION ===*/
.quick-links-wrapper {
    padding: 110px 0 75px;
}
.quick-links-wrapper .container {
    max-width: 1810px;
}
.quick-links-wrapper .align-center:first-child {
    max-width: 1370px;
    margin: 0 auto 65px;
}
.quick-links-wrapper h2 {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}
.quick-links-wrapper .align-center p {
    font-size: 18px;
}
.ql-box {
    width: calc(25% - 45px);
    height: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 20px 30px 30px;
    color: #fff;
    transform-origin: left top;
    margin-bottom: 60px;
}
.ql-box:before {
    background: rgba(0, 0, 0, 0.15);
}
.ql-box:hover:before {
    background: rgba(255, 0, 0, 0.79);
}
.ql-box:not(:nth-child(4n)) {
    margin-right: 60px;
}
.ql-box h4 {
    color: #FF0000;
}
.ql-box:hover {
    transform: scale(1.05);
}
.ql-box:hover h4 {
    color: #fff;
    margin-bottom: 5px;
}
.ql-box:hover .more-link:after {
    margin-left: 30px;
}
/*=== TESTIMONIALS SECTION ===*/
.testimonials-wrapper{
    position: relative;
    padding: 40px 0 110px;
    min-height: 710px;
    text-align: center;
    color: #fff;
    align-items: center;
}
.testimonials-wrapper:before {
    background: rgba(26,26,26,0.501);
}
.testimonials-wrapper .container{
    width: 100%;
    max-width: 1340px;
    padding: 0 40px;
}
.testimonials-wrapper .medium-text {
    margin-bottom: 65px;
}
.testimonials-wrapper .author{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}
/*=== CALLOUT BANNERS ===*/
.bar-callout {
    background: #000000;
    color: #fff;
    max-width: 700px;
    padding: 70px 70px 40px 80px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.bar-callout h2 > span:after {
    background: rgba(255,255,255,0.25);
}
.bar-callout p:last-of-type {
    margin-bottom: 40px;
}
.bar-callout:before,
.bar-callout:after {
    content: '';
    width: 100%;
    background: #000000;
    position: absolute;
    left: 0;
}
.bar-callout:before {
    height: 75px;
    top: -75px;
}
.bar-callout:after {
    height: 125px;
    bottom: -125px;
}
.bar-callout .btn:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}
/*=== FOOTER ===*/
.footer-wrapper {
    height: auto;
}
.footer-top {
    background: #fff;
    box-shadow: 0px 0px 99px rgba(0,0,0,0.129);
}
.footer-top .container {
    padding-left: 0;
    align-items: center;
    flex-wrap: nowrap;
}
.footer-columns {
    flex-wrap: nowrap;
    flex-grow: 1;
    padding: 30px 0 30px 50px;
    line-height: 1.35;
}
.footer-columns h3,
.footer-columns li a:hover,
.footer-copyright li a:hover {
    color: #FF0000;
}
.footer-columns h3 {
    font-size: 36px;
    white-space: nowrap;
}
.footer-columns > div {
    width: 33.333%;
    padding: 0 30px;
}
.footer-columns > div:nth-child(2) {
    width: 36%;
}
.footer-columns > div:last-child {
    padding-right: 0;
}
.footer-columns p:not(:last-child) {
    margin-bottom: 30px;
}
.footer-columns li:not(:last-child) {
    margin-bottom: 10px
}
.footer-copyright {
    background: #F1F1EF;
    min-height: 200px;
    padding: 55px 0 30px;
}
.footer-copyright .container {
    display: flex;
    align-items: center;
    padding-left: 740px;
}
.footer-copyright li {
    display: inline-block;
    margin-left: 25px;
}
.footer-copyright li a {
    font-weight: bold;
}
.jbsystems {
    font-size: 16px;
    padding-left: 15px;
    white-space: nowrap;
    margin-left: auto;
}
/*=== MAIN CONTENT ===*/

/* Sub Banner */

.sub-banner{
    height: 490px;
    background-color: #1A1A1A;
    background-size: contain;
    background-position: right 80px center;
}
.sub-banner .container{
    padding-top: 40px;
    padding-bottom: 120px;
    flex-direction: column;
    justify-content: center;
}
.sub-banner .banner-text{
    max-width: 910px;
    float: none;
    padding: 0 0 0 120px;
}
.sub-banner .large-text {
    margin-bottom: 20px;
}
.sub-banner h3 {
    color: #FF0000;
    font-size: 36px;
}
/* Breadcrumbs */
.breadcrumbs-wrapper {
    background: #FF0000;
    color: #fff;
    padding: 3px 0 5px;
}
.breadcrumbs{
    font-weight: 600;
}
.breadcrumbs li{
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
}
.breadcrumbs li:after{
    content: "//";
    display: inline-block;
    vertical-align: baseline;
    margin: 0 3px 0 4px;
}
.breadcrumbs li:last-child:after{
    content: none;
}
/* Sub Nav */
.sub-nav {
    background: #F1F1EF;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
    padding-top: 35px;
}
.sub-nav-menu {
    position: relative;
    display: flex;
    justify-content: center;
}
.sub-nav-menu li:not(:last-child) {
    margin-right: 45px;
}
.sub-nav-menu a {
    border-bottom: 4px solid transparent;
    padding-bottom: 35px;
    white-space: nowrap;
}
.sub-nav-menu .active a {
    border-bottom-color: #FF0000;
    font-weight: bold;
}
/* Main Content */
.main-content {
    padding: 120px 0 110px;
    min-height: 500px;
}
.main-content.quick-links {
    padding: 0px 0 110px;
    min-height: 500px;
}
.main-content .content .inner-box {
    padding-left: 45px;
}
.main-content .full-size .inner-box {
    max-width: 1500px;
}
.main-content .inner-box {
    max-width: 960px;
}
.main-content .col-left:only-child .inner-box {
	max-width: 100%;
}
.main-content .content ul,
.main-content .content ol{
    margin-bottom: 30px;
    text-align: left;
}
.main-content .sidebar{
    width: 530px;
    padding: 90px 0 0 40px;
}
.sidebar > *:not(:last-child){
    margin-bottom: 30px;
}
.sidebar h3 {
    color: #FF0000;    
}
.sidebar .links-box ul {
    max-width: 310px;
}
.sidebar .links-box h3 {
    border-bottom: 1px solid rgba(0,0,0,0.4);
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.sidebar .links-box {
    font-size: 22px;
    display: flex;
    flex-direction: column;
/*     align-items: flex-end; */
}
.sidebar .links-box a:before {
    content: '\f1c1';
    font: bold 54px/1 Font Awesome\ 5 Pro;
    color: rgba(0,0,0,0.5);
    margin-right: 15px;
    position: relative;
    top: -2px;
}
.sidebar .links-box li:not(:last-child) {
    margin-bottom: 25px;
}
.sidebar .links-box a {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}
.sidebar .links-box a:hover {
    font-weight: bold;

}
.sidebar .links-box a:hover:before {
    color: #FF0000;  
}
/* Content Slider */
.content-slider-wrapper{
    position: relative;
}
.content-slider {
    height: 890px;
    margin-top: 85px;
}
.content-slider .slick-track,
.content-slider .slick-list,
.content-slider .slick-slide,
.content-slider .img-box {
    height: 100%;
}

/*=== SECTION CONTENT===*/
.page-sections {
    padding-bottom: 210px;
}
.section {
    padding-bottom: 65px;
}
.section > div {
    width: 50%;
}
.section .inner-box {
    max-width: 1500px;
}
.section-content {
    padding: 50px 55px 0 0;
}
.section-content h6 {
    padding-left: 20px;
}
.section-photo {
    display: flex;
    justify-content: flex-end;
}
.section .img-box {
    width: 100%;
}
.section .img-box  {
    max-width: 715px;
    height: 715px;
    position: relative;
}
.section .img-box:first-child {
    z-index: 1;
    transform: translate(-85px, 65px );
}
.section .img-box:nth-child(2) {
    max-width: 690px;
    height: 690px;
    position: absolute;
    right: 0;
    top: 0;   
}
.section + .section{
    margin-top: 110px;
}
.section:nth-child(even) {
    flex-direction: row-reverse;
}
.section:nth-child(even) .section-content {
    padding: 50px 0 0 55px;
}
.section:nth-child(even) .section-photo {
    justify-content: flex-start;
}
.section:nth-child(even) .img-box:first-child {
    transform: translate(85px, 65px );
}
.section:nth-child(even) .img-box:nth-child(2) {
    right: auto;
    left: 0;
}
.section.full-size > div {
    width: 100%;
}
.section.full-size .section-content {
    padding: 0;   
}
.section h3 {
    color: #FF0000;
    max-width: 760px;
    margin-bottom: 35px;
}
.section.full-size {
    padding-bottom: 0;
}
.section .btn {
    margin-top: 40px;
}
#quick-links {
    margin-top: -100px;
}