/*=== GENERAL ===*/
#main,
#footer,
#alert,
.search-popup {
    padding-left: 140px;
}
#header .header-wrapper {
    left: 140px;
}
#nav-btn,
.search-btn,
.social a {
    font-size: 35px;
    display: block;
}
body.search-open #search:before,
body.open #nav-btn:before {
    content: '\f00d';
}
#menu .close-btn,
#search-box .close-btn {
    display: none;
    font-size: 32px;
}
/*=== NAVIGATION SIDEBAR ===*/
.nav-sidebar {
    width: 140px;
    background: #ffffff;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 150;
    min-height: 650px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.16);
}
.nav-sidebar .relative {
    height: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#nav-btn {
    margin: 0 auto 50px;
}

.nav-sidebar .contact-bar {
    text-align: center;
    margin-top: auto;
}
.nav-sidebar .nav-side-menu {
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: left top;
    line-height: 35px;
    /*margin-left: ;*/
}
.nav-sidebar .nav-side-menu a {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
}
.nav-sidebar .social {
    margin-top: 30px;
}
.nav-sidebar .social a:not(:last-child) {
    margin-bottom: 30px;
}
/*=== MAIN NAVIGATION ===*/
#menu{
    position: fixed;
    left: 140px;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 900;
    background-color: #001A31;
    color: #ffffff;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
}
body.open #menu{
    opacity: 1;
    visibility: visible;
}
.menu-wrapper .top-bar {
    flex-wrap: nowrap;
    padding: 100px 0 50px;
    justify-content: space-between;
    align-items: center;
}
.menu-wrapper .top-bar .logo-wrapper {
    width: 100%;
    max-width: 440px;
}
.contact-menu i {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #98262B;
    margin-right: 18px;
}
.contact-menu a {
    display: flex;
    align-items: center;
}
.main-nav-wrapper {
    padding: 120px 0 70px;
}
.main-nav-wrapper > .flexbox > div:last-child {
    width: 400px;
    flex-shrink: 0;
}
.main-nav-wrapper h4 {
    color: inherit;
}
.main-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 1;
}
.main-nav .nav-menu {
    flex-grow: 1;
    padding-right: 30px;
}
.nav-menu > li:not(:last-child),
.main-nav .top-menu li:not(:last-child) {
    /*margin-bottom: 15px;*/
}
.nav-menu > li.has-child {
    position: relative;
}
.nav-menu > li:first-child {
    padding-left: 0;
}
.nav-menu > li > a,
.main-nav .top-menu a,
.main-nav .header-sidebar a {
    font: 800 30px/1 eurostile-condensed, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}
.top-menu .sub-menu {
    display: none;
    position: absolute;
    transition: all 2s ease 1s;
    z-index: 300;
    left: -200px;
}
.top-menu li:hover .sub-menu{
    display: block;
}
.sub-menu {
    padding-top: 20px;
}
.sub-menu li a{
    display: block;
    position: relative;
}
.search-box.short-box form {
    display: flex;
}
.search-box.short-box input {
    border-color: #fff !important;
    color: #fff !important;
    margin-right: 18px !important;
    background-color: black !important;
}
.search-box.short-box input::-webkit-input-placeholder {
    color: #fff;
}
.search-box.short-box input::-webkit-input-placeholder {
    color: #fff;
}
.search-box.short-box input:-webkit-autofill,
.search-box.short-box input:-webkit-autofill:hover,
.search-box.short-box input:-webkit-autofill:focus,
.search-box.short-box input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff;
}
/*=== ALERT ===*/
.alert {
    background: #98262B;
    color: #fff;
    font-size: 18px;
    padding: 13px 0;
}
.alert .close-btn {
    font-size: 20px;
    position: absolute;
    right: 70px;
    top: 5px;
}
.alert .inner-box {
    padding: 0 30px;
}
/*=== SEARCH ===*/
.search-popup {
    background-color: #001A31;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 125;
    opacity: 0;
    visibility: hidden;
    align-items: center;
}
body.search-open .search-popup {
    opacity: 1;
    visibility: visible;
}
.search-popup .mynewcontainer {
    width: 100%;
    text-align: center;
}
.search-popup .search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.search-popup .search-box input[type=text]{
    width: 100%;
    background-color: transparent;
    border: none;
    background: #ffffff;
    padding: 17px 20px;
}
.search-popup .search-box button[type=submit]{
    font-size: 28px;
    color: #001A31;
    background: none;
    border: none;
    margin-left: 15px;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
/*=== HEADER ===*/
#header {
    height: 0;
}
.header-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 120;
}
.header-menu {
    font-size: 20px;
    font-weight: 500;
    padding-top: 35px;
    color: #fff;
}
.header-menu .top-menu > li:hover{
    background-color: #00467F;
    color: #FFF;
}
.header-menu .top-menu > li {
    position: relative;
}
.header-menu .sub-menu li {
    width: 300px;
    background: #FFF;
    color: #000000;
    margin-bottom: 5px;
    border: solid;
    border-color: #00467F;
}
.header-menu .sub-menu li a {
    font-size: 15px;
}
.header-menu .sub-menu li a:hover {
    font-weight: bold;
}
.header-menu .has-child {
    position: relative;
}
.header-menu li {
    padding: 15px 20px 15px 20px;
}
.header-menu .mynewcontainer {
    align-items: center;
    justify-content: space-between;
}
.header-menu .logo-wrapper{
    max-width: 335px;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
}
.logo-wrapper .logo {
    display: block;
    width: 100%;
}
.logo-wrapper .logo img{
    display: block;
}
.logo-wrapper .logo img + img {
    display: none;
}
.header-menu .top-menu {
    margin-left: auto;
    display: flex;
}
.header-menu  a {
    transition: none;
    text-transform: uppercase;
}
.has-child .sub-menu a {
    text-transform: none;
}
.header-sidebar i {
    margin-right: 15px;
}
.header-sidebar {
    margin-left: 55px;
}
.header-sidebar:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 60px;
    width: 1px;
    background: #fff;
    margin-right: 50px;
}
.main-nav .sub-menu li{
    margin-bottom: 25px;
}
.main-nav .sub-menu li a:hover {
    font-weight: bold;
}
/*=== FIXED AND INNER HEADER ===*/
#inner #header {
    height: 100px;
}
.fixed .header-wrapper {
    position: fixed;
    z-index: 500;
    top: 0;
}
.header-wrapper {
    padding-bottom: 40px;
}
#inner .header-wrapper,
.fixed .header-wrapper {
    background: #fff;
    box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.16);
    padding-bottom: 40px;
}
#inner .header-menu .logo-wrapper,
.fixed .header-menu .logo-wrapper {
    max-width: 290px;
}
.fixed .header-menu .logo-wrapper .logo img,
#inner .header-menu .logo-wrapper .logo img {
    display: none;
}
.fixed .header-menu .logo-wrapper .logo img + img,
#inner .header-menu .logo-wrapper .logo img + img {
    display: block;
}
.fixed .header-menu,
#inner .header-menu {
    padding-top: 0;
    height:  100px;
    color: #001A31;
}
.fixed .header-sidebar:before,
#inner .header-sidebar:before{
    background: #001A31;
}
/*=== TOP BANNER ===*/
.banner{
    position: relative;
    min-height: 650px;
    height: 100vh;
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
    background-position: top center;
    background-attachment: fixed;
    border-radius: 0;
}
.banner .single-banner:after,
.sub-banner:after {
    background: rgba(0, 26, 49, .8);
}

.banner .top-slider .mynewcontainer {
    height: 100%;
    padding-top: 150px;
    padding-bottom: 50px;
    z-index: 2;
    align-items: center;
}
.banner-text{
    width: 100%;
    color: #fff;
    position: relative;
    z-index: 1;
    max-width: 770px;
    padding-left: 30px;
}
.banner-text .large-text,
.banner-text .large-text span {
    color: #fff;
}
.banner-content{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 50px;
}
.banner-text .large-text + .btn {
    margin-top: 40px;
}
.banner .slick-list,
.banner .slick-track{
    height: 100%;
    -webkit-transform: none !important;
    transform: none !important;
}
.banner .slick-dots {
    height: auto;
    right: calc(50% - 780px);
    top: 50%;
    width: auto;
    transform: translateY(-50%);
    bottom: auto;
}
.banner .slick-dots li {
    display: block;
    margin: 8px auto;
}
.banner .slick-arrow {
    border-color: #fff;
    color: #fff;
}
/*=== PARTNERS SECTION ===*/
.logos-wrapper {
    padding: 45px 0 50px;
}
.logos-slider {
    border-bottom: 2px solid #D1D2D4;
    padding: 0 50px 40px;
}
.logos-slider .slick-list {
    padding-right: 150px;
}
.logos-slider .slick-slide {
    padding: 0 20px;
}
.logos-slider a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    height: 140px;
    margin: 0 auto;
    opacity: 0.5;
    filter: grayscale(1);
}
.logos-slider a img {
    max-height: 100%;
}
.logos-slider a:hover {
    filter: grayscale(0);
    opacity: 1;
}
/*=== QUICK LINKS ===*/
.quick-links-wrapper {
    padding: 50px 0;
}
.quick-links-wrapper .inner-box {
    max-width: 1365px;
    margin-left: auto;
}
.quick-links-wrapper h2 {
    margin-bottom: 50px;
}
.quick-links-wrapper .ql-box {
    width: 33.333333%;
}
.ql-box {
    height: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 25px;
}
.ql-box:after {
    background: rgba(0, 26, 49, 0.2);
}
.ql-box:hover:after {
    background: rgba(0, 70, 127, 0.8);
}
.ql-box > * {
    position: relative;
    color: #fff;
    z-index: 1;
}
.ql-box h3 {
    margin-bottom: 0;
}
/*=== ABOUT SECTION & PAGE SECTION ===*/
.page-sections-parts {
    padding-top: 50px;
}
#home .page-sections {
    padding-top: 100px;
}
.info-section,
.about-wrapper {
    padding: 50px 0 !important;
}
.about-wrapper .mynewcontainer {
    padding: 0;
}
.info-section h2 {
    margin-bottom: 50px;
}
.about-wrapper .img-box,
.info-section .img-box {
    min-height: 460px;
    height: 100%;
    width: 100%;
}
.about-wrapper .img-box:after,
.info-section .img-box:after {
    content: none;
}
.info-section .section-image,
.about-wrapper .section-image {
    width: calc(50% + 110px);
}
.info-section .section-content,
.about-wrapper .section-content {
    display: flex;
    align-items: center;
    padding: 50px 0;
    width: calc(50% - 110px);
}
.info-section .inner-box,
.about-wrapper .inner-box {
    width: 100%;
    max-width: 760px;
    position: relative;
}
.info-section .text-box,
.about-wrapper .text-box {
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
}
.info-section .text-box .btn,
.about-wrapper .text-box .btn {
    margin-top: 50px;
    text-align: left;
    float: left;
}
.brand-wrapper table {
    margin-left: 50px;
}
.date-filter header,
.cat-filter header {
    font-family: 'Roboto' !important;
}
.info-section .vertical-text {
    transform: rotate(-90deg) translateX(calc(-100% + 180px));
    -webkit-transform: rotate(-90deg) translateX(calc(-100% + 180px));
}
.about-wrapper .img-box,
#home .info-section:nth-child(even) .img-box,
#inner .info-section:nth-child(odd) .img-box {
    clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
}
#home .info-section:nth-child(odd) .img-box,
#inner .info-section:nth-child(even) .img-box {
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%)
}
#home .info-section:nth-child(even),
#inner .info-section:nth-child(odd) {
    flex-direction: row-reverse;
}
#home .info-section:nth-child(odd) > .section-content,
#inner .info-section:nth-child(even) > .section-content {
    padding-left: 70px;
    padding-right: 40px;
    justify-content: flex-end;
}
.brand .page-sections {
    display: none;
}
.brand .page-sections-brand{
    display: block;
}
.brand .page-sections-brand .info-section {
    flex-direction: row !important;
}
.brand .page-sections-brand .info-section .img-box {
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
}
.brand .page-sections-brand .info-section:nth-child(even) .img-box {
    clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%) !important;
}
#home .info-section:nth-child(odd) > .section-image,
#inner .info-section:nth-child(even) > .section-image {
    padding-right: 70px;
}
.about-wrapper .section-content,
#home .info-section:nth-child(even) > .section-content,
#inner .info-section:nth-child(odd) > .section-content {
    padding-right: 70px;
    padding-left: 40px;
}
/*=== FEATURED PRODUCTS ===*/
.featured-products {
    padding: 50px 0;
}
.featured-products h2 {
    margin-bottom: 65px;
}
.featured-products .product-slider {
    margin-bottom: 50px;
}
/*=== CALLOUTS ===*/
.icon-mynewcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    padding-top: 100px;
    margin: 0 auto;
    padding-bottom: 150px;
}
.icon-mynewcontainer a {
    width: 25%;
    height: 250px;
    margin: 20px;
}
.icon-box {
    width: 100%;
    height: 350px;
    border: solid;
    border-color: #00467F;
    position: relative;
    border-width: 5px;
}
.icon-content,
.icon-overlay {
    width: 100%;
    height: 100%;
}
.icon-overlay {
    opacity: 0;
    z-index: 700;
}
.icon-mynewcontainer a:hover .icon-overlay{
    display: block !important;
    background-color: #00467F;
    transition: all .2s ease 0s;
    opacity: 1;
}
.icon-mynewcontainer a:hover {
    transform: translateY(-10px);
}
.icon-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 200px;
    height: 200px;
    position: relative;
    top: 30px;
    margin: 0 auto;
}
.icon-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
}
.icon-overlay p {
    text-align: center;
    color: #FFF;
    font-size: 15px;
    padding: 0 15px 0 15px;
}
.icon-content h3{
    text-align: center;
    font-size: 35px;
    position: absolute;
    width: 100%;
    bottom: 15px;
}
.icon-overlay h3 {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    position: absolute;
    width: 100%;
    bottom: 20px;
    margin-bottom: 0px;
}
.top-head {
    top: 0px;
    font-size: 30px !important;
    position: relative !important;
    margin-top: 25px;
}
.bar-callout {
    background: #00467F;
    color: #fff;
    padding: 40px 0;
    min-height: 240px;
    display: flex;
    align-items: center;
}
.bar-callout .mynewcontainer {
    width: 100%;
}
.bar-callout .inner-box {
    max-width: 1250px;
    flex-wrap: nowrap;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.bar-callout .inner-box > div:first-child {
    flex-grow: 1;
    padding-right: 30px;
    max-width: 970px;
}
.bar-callout .large-text {
    color: #fff;
    margin-bottom: 0;
}
.bar-callout-image {
    padding: 50px 0 110px;
}
.bar-callout-image .mynewcontainer {
    padding-left: 0;
}
.bar-callout-image .img-box {
    min-height: 550px;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bar-callout-image .inner-box {
    max-width: 950px;
    padding: 0 15px;
    margin: 0 auto;
}
.bar-callout-image .large-text {
    color: #fff;
}
.bar-callout-image .search-box {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}
/*=== NEWSLETTER SECTION===*/
.newsletter-wrapper {
    background: #F2F2F2;
    padding: 70px 0;
}
.newsletter-wrapper .flexbox {
    flex-wrap: nowrap;
    align-items: center;
}
.newsletter-wrapper .flexbox  > div {
    flex-grow: 1;
}
.newsletter-wrapper .flexbox  > div:first-child {
    padding-right: 40px;
}
.newsletter-wrapper .flexbox > div:last-child {
    max-width: 535px;
    width: 100%;
}
.newsletter-wrapper .large-text {
    color: #98262B;
    margin-bottom: 0;
}
.newsletter-box {
    width: 100%;
}
.newsletter-box form {
    display: flex;
    align-items: flex-end;
}
.newsletter-box input {
    padding: 0 0 8px;
    height: auto;
    border: none;
    border-bottom: 2px solid #001A31;
    flex-grow: 1;
}
.newsletter-box button {
    font-size: 22px;
    color: #98262B;
    background: transparent;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    flex-shrink: 0;
}
/*=== FOOTER ===*/
.footer-wrapper{
    height: auto;
    background: #001A31;
    color: #fff;
}
.footer-wrapper .flexbox {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.footer-wrapper .footer-top {
    padding-top: 55px;
    padding-bottom: 40px;
}
.footer-wrapper .footer-top > div:nth-child(2) {
    flex-grow: 1;
    padding: 0 40px;
}
.footer-wrapper .logo {
    max-width: 260px;
    flex-shrink: 0;
}
.footer-wrapper .contact-menu {
    display: flex;
    width: 90%;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-wrapper .contact-menu li {
    width: 300px;
    margin-top: 10px;
}
.contact-menu li strong {
    margin-left: 62px;
    margin-bottom: 5px;
}
.footer-wrapper .social {
    display: flex;
    margin-top: 20px;
    margin: 0 auto;
}
.footer-wrapper .social a {
    font-size: 32px;
}
.footer-wrapper .social a:not(:last-child) {
    margin-right: 30px;
}
.footer-btm {
    border-top: 2px solid #FFFFFF;
    ;
}
.footer-btm > .flexbox > div {
    padding: 30px 40px;
    flex-grow: 1;
}
.footer-btm > .flexbox > div:first-child {
    padding-left: 0;
}
.footer-btm > .flexbox > div:last-child {
    padding-right: 0;
    text-align: right;
}
.footer-btm > .flexbox > div:not(:last-child) {
    border-right: 2px solid #fff;
}
/*=== MAIN CONTENT ===*/
/* Sub Banner */
.sub-banner {
    height: 500px;
}
.sub-banner .mynewcontainer{
    padding-top: 50px;
    padding-bottom: 50px;
    flex-direction: column;
    justify-content: center;
}
.sub-banner .banner-text{
    max-width: 810px;
    padding-left: 0;
    float: none;
    margin: 0 auto;
    text-align: center;
}
.sub-banner .large-text {
    margin-bottom: 10px;
}
/* Breadcrumbs */
.breadcrumbs li{
    display: inline-block;
    vertical-align: middle;
}
.breadcrumbs li:after{
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #98262B;
    margin-right: 4px;
    position: relative;
    top: 10px;
    margin: 0 5px 0 6px;
}
.breadcrumbs li:last-child {
    color: #98262B;
    font-weight: bold;
}
.breadcrumbs li:last-child:after{
    content: none;
}
/* Main Content */
.main-content {
    padding: 0 0 50px;
    min-height: 500px;
    max-width: 1600px;
    margin: 0 auto;
}
.main-content .content {
    width: calc(50% + 300px);
    padding-right: 70px;
}
.main-content .sidebar {
    width: 25%;
}
.main-content .mynewcontainer {
    max-width: 100%;
}
.main-content .content .inner-box {
    width: 100%;
    max-width: 1100px;
    padding: 65px 140px 50px 0;
    float: right;
}
.main-content .sidebar .inner-box {
    max-width: 500px;
    padding: 110px 20px 50px 130px;
}
.main-content.full-width > .flexbox {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
}
.main-content.full-width .content {
    width: 100%;
    padding-left: 0;
}
.main-content.full-width .content .inner-box {
    max-width: 90%;
    float:  none;
    padding: 0 140px 50px 0;
}
.main-content .content ul:not(:last-child):not([class]),
.main-content .content ol:not(:last-child):not([class]) {
    margin-bottom: 30px;
    text-align: left;
}
.main-content .content p:last-of-type:not(:last-child) {
    margin-bottom: 30px;
}
.main-content .content .btn + .btn {
    margin-left: 35px;
}
.main-content .sidebar h4 {
    margin-bottom: 30px;
}
.sidebar > *:not(:last-child){
    margin-bottom: 40px;
}
.main-content .sidebar .side-menu > ul > li > a {
    font-size: 20px;
    font-weight: bold;
}
.main-content .sidebar .side-menu ul ul {
    font-size: 16px;
    margin: 8px 0;
}
.main-content .sidebar .side-menu li {
    margin-bottom: 8px;
}
/*=== PRODUCT CONTENT ===*/
.product-box {
    width: 100%;
    max-width: 260px;
}
.product-box a {
    display: block;
}
.product-box .img-box {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}
.product-box .img-box:after,
.product-box .img-box span {
    opacity: 0;
    visibility: hidden;
}
.product-box a:hover .img-box:after,
.product-box a:hover span {
    opacity: 1;
    visibility: visible;
}
.product-box .img-box span {
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: underline;
    position: relative;
    z-index: 1;
}
.product-box .product-label {
    font: 800 20px/1.2 'eurostile-condensed';
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
    background: #98262B;
    color: #fff;
    padding: 7px 26px;
}
.product-box .product-name,
.product-box .product-code {
    font-size: 20px;
    line-height: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
}
.product-box .product-code {
    font-weight: normal;
    color: #AAAAAA;
}
.product-slider {
    padding: 0 80px;
}
.product-slider .slick-slide {
    padding: 0 10px;
}
.product-slider .slick-slide .product-box {
    margin: 0 auto;
}
.product-slider .slick-arrow.slick-prev {
    left: 0;
}
.product-slider .slick-arrow.slick-next {
    right: 0;
}
.product-wrapper > div {
    width: 50%;
}
.product-wrapper > div:last-child {
    padding-left: 140px;
}
.product-wrapper .product-photo {
    display: block;
    height: 570px;
}
.product-wrapper .img-box {
    transition: none;
}
.product-wrapper .img-box:after {
    content: none;
}
.product-image-bottom {
    display: flex;
    margin: 20px 0 45px;
}
.product-image-bottom > div:first-child  {
    width: calc(100% - 120px);
}
.product-gallery .img-box {
    height: 100px;
    margin-right: 20px;
    cursor: pointer;
}
.product-gallery .slick-track {
    display: flex;
}
.product-image-arrows {
    display: flex;
    align-items: center;
    width: 120px;
    position: relative;
    justify-content: space-between;
}
.product-image-arrows .slick-arrow {
    position: static;
    transform: none;
}
.product-wrapper h5 {
    color: #001A31;
}
.product-wrapper .product-code {
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 10px;
}
.product-wrapper .product-description {
    margin-bottom: 70px;
}
/* Listings */
.listing-tabs {
    display: flex;
    border-bottom: 2px solid #D1D2D4;
    padding-bottom: 15px;
    justify-content: space-between;
    margin-bottom: 60px;
}
.listing-tabs a {
    font-size: 16px;
    color: #000000;
}
.listing-tabs li:not(:last-child) {
    margin-right: 15px;
}
.listing-tabs li a.active {
    font-weight: bold;
    color: #98262B;
}
.listing-items {
    margin-bottom: -50px;
}
.listing-items .product-box {
    margin: 0 50px 50px 0;
}
.listing-items .product-box:nth-child(3n) {
    margin-right: 0;
}
.full-width .listing-items .product-box:nth-child(3n) {
    margin-right: 50px;
}
/* Toggle Styles */
.toggle-box + .toggle-box {
    margin-top: -2px;
}
.toggle-box:not(:last-child) {
    border-bottom: none;
}
.toggle-head{
    font: 800 25px/1.2 'eurostile-condensed';
    text-transform: uppercase;
    position: relative;
    padding: 11px 60px 10px 20px;
    cursor: pointer;
    border: 2px solid #001A31;
}
.toggle-open .toggle-head{
    border-bottom: 2px solid #001A31;
}
.toggle-ctrl{
    position: absolute;
    right: 21px;
    top: 11px;
}
.toggle-ctrl:after{
    content: '\f067';
    font-family: Font Awesome\ 5 Pro;
    font-size: 26px;
    font-weight: 300;
}
.toggle-open .toggle-ctrl:after{
    content: '\f068';
}
.toggle-content{
    display: none;
    padding: 35px 30px 40px 20px;
}
.toggle-content p:not(:last-child) {
    margin-bottom: 20px;
}
/* Testimonials */
.testimonial-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 50px;
}
.testimonial-bg {
    width: 100%;
    height: 450px;
    position: relative;
}
.testimonial-section .testimonial-bg .bg-slant {
    width: 80%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #00467F;
    height: 400px;
    z-index: 100;
    clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
}
.testimonial-section .testimonial-bg .bg-solid {
    width: 80%;
    position: absolute;
    right: 0px;
    background-color: #D1D2D4;
    height: 400px;
    bottom: 0px;
    z-index: 90;
}
.testimonial-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 140;
    position: relative;
}
.testimonial-wrapper h2 {
    color: #FFF;
    text-align: center;
}
.testimonial-slider {
    height: 100%;
}
.testimonial-box {
    background-color: #FFF;
    height: 250px;
    padding: 10px;
    margin: 25px;
    padding: 25px;
    position: relative;
}
.testimonial-box p {
    font-size: 15px;
    margin-bottom: 0px;
    margin-top: 30px;
    z-index: 400;
    position: relative;
}
.testimonial-box h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 22px;
    color: #98262B;

}
.testimonial-box span {
    color: #D1D2D4;
    font-size: 15px;
}
.testimonial-margin {
    height: 200px;
}
.box-quote {
    position: absolute;
    top: 15px;
    left: 5px;
    width: 100px;
    height: 100px;
    background-size: contain;
    z-index: 350;
    background-repeat: no-repeat;
}
.testimonial-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 11;
}
.testimonial-video i {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 60px;
    color: #FFF;
    transition: all 0.4s ease 0s;
}
.testimonial-video:hover i {
    font-size: 75px;
}
.testimonial-video-mynewcontainer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
    background-repeat: no-repeat;
    background-size: cover;
}
/* Timeline */
.timeline-left {
    width: 15%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    padding-top: 400px;
}
.timeline-right {
    width: 80%;
    height: 100%;
    display: inline-block;
    position: relative;
}
.timeline-right .page-sections {
    padding: 50px 0;
}
.timeline-right .fullImg {
    margin: 50px 0 50px 0;
}
.timeline-right .page-sections .info-section {
    flex-direction: row !important;
}
.timeline-right .page-sections .info-section .img-box {
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
}
.timeline-right .fullImg {
    width: 100%;
    min-height: 450px;
    position: relative;
}
.timeline-right .fullImg .fullImgBox,
.timeline-right .fullImg .fullImgOverlay {
    height: 100%;
    min-height: 450px;
    width: 100%;
}
.timeline-right .fullImg .fullImgOverlay {
    background-color: rgba(0, 70, 127, .8);
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 90px 50px 0 50px;
}
.timeline-right h2 {
    color: #000000;
    margin-bottom: 20px;
}
.timeline-right .text-box {
    text-align: left;
    margin-top: 100px;
}
.timeline-right .text-box span {
    font-size: 15px;
}
.timeline-right .text-box h3 {
    font-size: 22px;
    color: #D1D2D4;
    text-transform: none;
    font-family: 'Roboto', serif;
}
.timeline-right .fullImg .fullImgOverlay h2,
.timeline-right .fullImg .fullImgOverlay h3,
.timeline-right .fullImg .fullImgOverlay span {
    color: #FFF;
}
.timeline-right .fullImg .fullImgOverlay h3 {
    font-size: 22px;
    text-transform: none;
    font-family: 'Roboto', serif;
}
.timeline-right .info-section, .about-wrapper {
    padding: 100px 0;

}
.timeline-right .fullImg .fullImgOverlay p {
    font-size: 15px;
}
.timeline-right .fullImg .fullImgOverlay i {
    color: #D1D2D4;
    font-size: 27px;
}
.timeline-right .page-sections i {
    color: #000000;
    font-size: 30px;
    border: solid;
    border-width: 2px;
    padding: 10px;
    position: relative;
    top: 40px;
}
.timeline-right .fullImg .grey-bar {
    position: absolute;
    height: 225px;
    border-left: solid;
    border-color: #D1D2D4;
    left: 50%;
    transform: translateX(-50%);
    z-index: 400;
    top: -116px;
    border-width: 2px;
}
.timeline-left .time {
    list-style-type: none;
}
.time li a {
    color: #D1D2D4;
    display: inline-block;
}
.time li .active-bar {
    width: 60px;
    border-bottom: solid;
    border-color: #98262B;
    display: inline-block;
    margin-right: 4px;
    position: relative;
    bottom: 4px;
    opacity: 0;
}
.time li {
    margin-bottom: 10px;
}
.activeLink a {
    color: #98262B !important;
}
.activeLink div {
    opacity: 1 !important;
}
.time {
    top: 50%;
    transform: translateY(-50%);
}
.fixedTime {
    position: fixed;
    left: 13%;
}
.timeline-head {
    text-align: left;
    position: absolute;
    left: -135px;
    top: 45px;
    width: 400px;
}
.mini-image-holder {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 150px;
    width: 70%;
    bottom: -75px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.mini-image-holder img {
    opacity: 0;
    visibility: hidden;
}

.timeline-right .section-image {
    position: relative;
}
.mini-image-box {
    background-size: contain;
    background-repeat: no-repeat;
    /*width: 33%;*/
    height: 100%;
    margin: 5px;
}
.timeline-link:hover {
    transform: scale(1.1);
}
.current-sort:hover {
    transform: scale(1.1);
}
/* Grid layout */
.logo-list-mynewcontainer {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-list-mynewcontainer a {
    width: 350px;
    height: 350px;
    margin: 10px;
}
.logo-list-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .2s ease 0s;
}
.logo-list-image:hover,
.logo-list-image-no-link:hover {
    transform: scale(1.05);
}
.logo-list-image-no-link {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .2s ease 0s;
    width: 350px;
    height: 350px;
    margin: 10px;
}
.logo-part-image {
    width: 60%;
    height: 90%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .2s ease 0s;
    margin: 0px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 90;
}
.equipment .logo-part-image {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.logo-parts-mynewcontainer {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-list-wrapper:hover{
    transform: scale(1.05);
}
.logo-list-wrapper {
    width: 400px;
    height: 400px;
    margin: 10px;
    border: solid;
    border-color: #00467F;
    transition: all .2s ease 0s;
}
.logo-list-wrapper .logo-list-body {
    width: 100%;
    display: block;
    height: 40%;
    position: relative;
}
.logo-list-top {
    width: 100%;
    height: 60%;
    display: block;
    position: relative;
    background-color: #ededed;
}
.logo-list-brand {
    width: 30%;
    height: 40%;
    position: absolute;
    top: 10px;
    left: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 100;
}
.logo-list-body h2 {
    text-align: left;
    font-size: 32px;
    padding-left: 10px;
    margin-bottom: 0px;
}
.logo-list-body p {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 11px;
    color: #98262B;
    font-weight: bold;
    position: relative;
    top: -10px;
}
.logo-list-body a {
    background-color: #00467F;
    color: #FFF;
    text-transform: uppercase;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 10px 5px 10px;
    transition: all .2s ease 0s;
}
.logo-list-body a:hover {
    background-color: #98262B !important;
}
.brand-logo {
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
    position: absolute;
    background-position: center;
    top: -425px;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px;
}
.brand-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.brand-wrapper .logo-parts-mynewcontainer {
    max-width: 900px;
    margin-top: 50px;
}
.brand-wrapper .logo-part-image {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px;
    left: 0px;
}
.brand-wrapper .logo-list-body p {
    top: 8px;
    padding: 0px !important;
}
.brand-wrapper .logo-list-body span {
    text-align: left;
    color: #98262B;
    position: relative;
    font-size: 11px;
    color: #000000 !important;
    line-height: 1 !important;
    display: block;
    top:-10px;
}
.brand-wrapper .logo-list-body {
    text-align: left !important;
    padding-left: 10px;
    padding-right: 10px;
}
.brand-wrapper .logo-list-body h2 {
    padding-left: 0px;
}
.brand-wrapper .info-section:nth-child(even) {
    flex-direction: row-reverse !important;
}
.page-sections-equipment .info-section:nth-child(even) {
    flex-direction: row !important;
}