::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #17385A; 
  border-radius: 50px;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.08em;
    color: #000000;
    background: #EFEFEF;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    color: #17385A;
}
a, a:hover {
    text-decoration: none;
}
ul,
li {
    list-style: none;
}
.container {
    max-width: 1245px;
}
/*====================HEADER SECTION CSS*/
.top_header {
    background: #17385A;
}
.soc_add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 55px;
}
.socials ul {display: -webkit-box;display: -ms-flexbox;display: flex;}
.address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 46.8%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46.8%;
            flex: 0 0 46.8%;
    padding: 0 15px;
}
.emails {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 43.2%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43.2%;
            flex: 0 0 43.2%;
    padding: 0 15px;
}
.nav {
    /* height: 105px; */
    position: relative;
}
.nav .menu_list {
    max-width: calc(100% - 225px);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-left: 65px;
    margin-top: 58px;
}
.nav .menu_list > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}
.address p {
    margin: 0;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.emails p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin: 0;
}
.address img {
    margin-right: 10px;
    width: 18px;
}
.emails img {
    margin-right: 13px;
    width: 18px;
}
.header {
    background: #fff;
    position: relative;
    z-index: 1;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
}
.header .container {
    max-width: 1375px;
}
.socials {
    max-width: 10%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    padding: 0 15px;
}
.socials ul {
    margin: 0;
}
.socials ul li {
    margin-left: 15px;
}
.socials ul li a {
    display: block;
}
.socials ul li:first-child {
    margin-left: 0;
}
.logo_brand {
    max-width: 225px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 225px;
            flex: 0 0 225px;
    padding-top: 35px;
}
.nav .menu_list ul li a {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    padding: 7px 28px;
    color: #17385A;
    display: block;
}
.nav .menu_list ul li.active > a {
    background: #17385A;
    color: #fff;
}
.nav .menu_list > ul li.hover {}

.nav .menu_list > ul > ul {
    width: auto;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 59px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 59px 4px rgba(0, 0, 0, 0.25);
}


.nav .menu_list > ul ul {
    width: auto;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 59px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 59px 4px rgba(0, 0, 0, 0.25);
    margin-top: 76px;
    -webkit-transition: all .5s linear;
    -o-transition: all .5s linear;
    transition: all .5s linear;
    opacity: 0;
    visibility: hidden;
    padding: 15px 0;
    position: absolute;
}

.nav .menu_list > ul ul li {}

.nav .menu_list > ul ul li a {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    padding: 7px 28px;
    font-size: 15px;
    line-height: 20px;
    text-transform: capitalize;
    color: #0D0D0D;
    display: block;
}

.nav .menu_list > ul li:hover ul {
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
}
.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 20px rgb(23 56 90 / 12%);
            box-shadow: 0 10px 20px rgb(23 56 90 / 12%);
    border-bottom: 1px solid rgb(23 56 90 / 20%);
}

.header.sticky .top_header {
    display: none;
}

.header.sticky .logo_brand {
    padding: 10px 0;
}

.header.sticky .menu_list {
    margin: 28px 0;
}
/*====================BANNER SECTION CSS*/
.pdt_circle {
    position: relative;
}
.t2box .col-sm-6 {
    padding: 0px 30px;
}
.banner {
    padding: 85px 0 325px;
    background: #FFFFFF;
    border-radius: 0px 0px 0px 400px;
    position: relative;
    z-index: 0;
}
.banner .container {
    max-width: 1280px;
}

.banner .col-sm-5 {
    max-width: 675px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 675px;
            flex: 0 0 675px;
}

.banner .col-sm-7 {
    max-width: 605px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 605px;
            flex: 0 0 605px;
}

.pdt_circle {
    height: 550px;
    width: 550px;
    border-radius: 50%;
    background: #363737;
    margin-left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.product_img {
    width: 320px;
}
.product_img img {
    width: 100%;
}
.pdt_circle:before {
    position: absolute;
    left: -45px;
    top: 25px;
    width: 147px;
    height: 147px;
    content: '';
    background: transparent;
    border-radius: 50%;
    border: 5px solid #17385A;
}
.pdt_circle:after {
    position: absolute;
    right: 55px;
    bottom: -15px;
    width: 103px;
    height: 103px;
    content: '';
    background: rgba(23, 56, 90, 0.85);
    border-radius: 50%;
}
.banner .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.banner h1 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 800;
    font-size: 60px;
    line-height: 79px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #17385A;
    margin: 0;
}
.banner h2 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #17385A;
    margin: 0 0 15px;
}
.banner p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.08em;
    color: #17385A;
    margin: 0;
}
/*====================TWO BOX SECTION CSS*/
.two2box {
    background: #FFFFFF;
    -webkit-box-shadow: 5px 5px 19px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 5px 5px 19px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    height: 695px;
}
.two2box-img {
    background: #F5F5F5;
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px 15px 0px 0px;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.two2box-text {
    padding: 60px 38px 80px;
}
.t2box {
    padding: 0 0 75px;
    margin: -210px 0 0;
    position: relative;
    z-index: 0;
}
.t2box .container {
}
.two2box-text h3 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 34px;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    color: #17385A;
    margin: 0 0 20px;
}
.two2box-text p {
    margin: 0;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.08em;
    color: #000000;
}
.two2box-img img {
    max-width: 255px;
}
/*====================BAYEROL dein Motor SECTION CSS*/
.pro-des {
    padding: 100px 0 65px;
    position: relative;
    z-index: 0;
}
.pro-des-img {
    width: 598px;
    height: 598px;
    border-radius: 50%;
    margin: 0 0 0 -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #232F3E;
    position: relative;
}
.pro-des-img img {
    max-width: 360px;
    width: 100%;
}
.pro-des-img:before {
    position: absolute;
    left: 35px;
    bottom: 45px;
    width: 105px;
    height: 105px;
    content: '';
    background: rgba(23, 56, 90, 0.85);
    border-radius: 50%;
}
.pro-des-img:after {
    position: absolute;
    right: -15px;
    top: 70px;
    width: 147px;
    height: 147px;
    content: '';
    background: transparent;
    border-radius: 50%;
    border: 5px solid #17385A;
}
.pro-des-text {
    padding-top: 40px;
}
.pro-des-text h2 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 46px;
    letter-spacing: 0.08em;
    color: #17385A;
}
.pro-des-text ul {
    margin: 55px 0 55px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid #555556;
}
.pro-des-text ul li {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 55px;
    letter-spacing: 0.08em;
    color: #000000;
}
.pro-des-text .anchor-btn {
    position: relative;
    width: 190px;
}
.pro-des-text .anchor-btn a {background: #17385A;border-radius: 40px;display: -webkit-box;display: -ms-flexbox;display: flex;font-family: 'Red Hat Display';font-style: normal;font-weight: 400;font-size: 18px;
letter-spacing: 0.08em;color: #FFFFFF;text-align: center;height: 54px;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;}
/*====================NEUE PRODUKTE SECTION CSS*/
.product-lists {
    background: #EFEFEF;
    border-radius: 400px 0 0 0;
    padding: 125px 0 40px;
    padding-bottom: 0;
    position: relative;
    z-index: 0;
}
.product-lists .item {
    margin: 20px 0px 45px;
    background: #FFFFFF;
    -webkit-box-shadow: 5px 5px 19px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 5px 5px 19px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.pro-list-img-box {
    background: url(../img/prosliderbg.png);
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    height: 238px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    background-size: 100%;
}

.pro-list-text-box {
    padding: 20px 18px 30px;
    height: 277px;
    position: relative;
    margin-top: -20px;
}

.pro-list-img-box img {}

.pro-list-img-box img {
    max-width: 130px;
    margin-right: 38px;
    margin-top: 5px;
}

.pro-list-text-box h3 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    color: #17385A;
    margin: 0 0 8px;
}

.pro-list-text-box ul {
    margin: 0;
}

.pro-list-text-box ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
/* or 147% */
    letter-spacing: 0.08em;
    color: #000000;
    margin: 0;
}

.pro-list-text-box ul li img {
    width: 17px !important;
    height: 13px;
    margin-right: 5px;
}

.product-lists .container {
    max-width: 1384px;
}
.titleCenter {
    text-align: center;
    margin-bottom: 55px;
}

.titleCenter h2 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;
/* identical to box height */
    letter-spacing: 0.08em;
    color: #17385A;
    margin: 0;
}

.titleCenter p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
/* identical to box height */
    letter-spacing: 0.08em;
    color: #000000;
    margin: 0;
}

.product-lists .anchor-btn a {
    background: #17385A;
    border-radius: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    text-align: center;
    height: 49px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.product-lists .anchor-btn {
    margin-top: 15px;
    width: 160px;
    position: absolute;
    bottom: 30px;
}
/*====================BAYEROL WERBEVIDEO SECTION CSS*/
.videoBg iframe {
    /*background: url(../img/video-sec-bg.svg); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    border-radius: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;

}
.videoBtn {max-width: 337px;width: 100%;}
.videoBtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 67px;
    background: #17385A;
    border-radius: 50px;
    padding-left: 35px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.playbtn {
    width: 75px;
    height: 67px;
    position: absolute;
    right: 0;
    background: #232F3E;
    border-radius: 0px 50px 50px 0px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.playbtn img {width: 100%;}
.playIcobg {
    width: 32px;
    height: 32px;
    background: #D9D9D9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    padding: 10px 7px 10px 12px;
}
.videoSec {
    padding: 0px 0 50px;
    background: #FFFFFF;
   /* border-radius: 400px 0px 0px 0px;*/
    position: relative;
    z-index: 0;
}
/*====================FOOTER SECTION CSS*/
.footer {
    background: #17385A;
}
.footer h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    background: #CA2D25;
    padding: 0;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
}
.col_custom-1 ul li a,.col_custom-3 ul li a {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.footer {
    padding: 33px 0;
    background: #17385A;
    border-radius: 200px 0px 0px 0px;
    position: relative;
    z-index: 0;
}
.bottom_footer {padding-top: 40px;text-align: center;}
.bottom_footer p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 32px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin: 0;
}
.col_custom ul {
    margin: 0;
}
.col_custom-1 ul li a,.col_custom-3 ul li a {
    display: block;
}
.social-footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.social-footer li a {
    display: block;
}
.social-footer li {
    margin-right: 20px;
}
.address-footer {
    margin-top: 35px;
}
.address-footer ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin: 0 0 5px;
}
.col_custom-1 {
    max-width: 26%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26%;
            flex: 0 0 26%;
}
.col_custom-2 {
    max-width: 30%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
}
.col_custom-3 {
    max-width: 18%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18%;
            flex: 0 0 18%;
}
.col_custom-4 {
    max-width: 26%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 26%;
            flex: 0 0 26%;
}
.address-footer ul li p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    font-family: 'Red Hat Display';
}
.address-footer ul li img {
    margin-right: 20px;
}
.address-footer ul li p a {
    color: #FFFFFF;
}
.footer-logo img {
    max-width: 310px;
    width: 100%;
    margin-bottom: 20px;
    margin-left: -10px;
}
.footer-logo p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    margin: 0;
}
.col_custom-1 ul li {
    padding-left: 15px;
    position: relative;
    margin-bottom: 1px;
}
.col_custom-1 ul li:before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    content: '';
    background: #fff;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}


/*=====================ROUGH CSS*/
.background-white {
    background: #EFEFEF;
}

.pro-des:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: #FFFFFF;
    width: 100%;
    height: 200%;
    border-radius: 0px 400px 0px 0px;
}
/*====================================PAGE TITLE SECTION CSS HERE*/
.pagetitleText h2 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 900;
    font-size: 60px;
    line-height: 79px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.pagetitleText p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0.08em;
    text-transform: capitalize;
    color: #FFFFFF;
}
.pagetitle {
    padding: 120px 0;
    height: 450px;
}
.pagetitleText span {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    display: block;
}
/*====================================ABOUT US PAGE CSS HERE*/
.aboutus {
    padding: 100px 0;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
}
.pagetitle-ab {
    background: url(../img/about-us/about-us-pagetitle-bg.svg);
    background-size: cover;
}

.aboutus:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}

.aboutus .container {
    position: relative;
    z-index: 1;
}

.abRows1 {
    margin-bottom: 70px;
}

.aboutus h2 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 50px;
/* or 156% */
    letter-spacing: 0.08em;
    color: #17385A;
}

.aboutus p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0.08em;
    /*text-transform: normal;*/
    color: #000000;
}

.abRows2 {}

.abRows2 h2 {
    margin-bottom: 40px;
}

.abRows1 h2 {
    margin-bottom: 60px;
}

.abRows2 .col-sm-7 {
    padding-left: 53px;
    max-width: 56.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56.5%;
            flex: 0 0 56.5%;
}

.abRows2 .col-sm-5 {
    max-width: 43.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 43.5%;
            flex: 0 0 43.5%;
}

.abRows1 .col-sm-5 {
    max-width: 41.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.5%;
            flex: 0 0 41.5%;
}

.abRows1 .col-sm-7 {
    max-width: 58.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.5%;
            flex: 0 0 58.5%;
    padding-right: 30px;
}
/*====================================PRODUCTS PAGE CSS HERE*/
.products {
    padding: 35px 0 65px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
}
.pagetitle-product {
    background: url(../img/products/products-pagetitle-bg.svg);
    background-size: cover;
}
.products .abRows {
    max-width: 980px;
    margin: 0 auto;
}

.products:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}

.products .container {
    position: relative;
    z-index: 1;
}

.prod_lists {
    background: #FFFFFF;
    border: 1px solid #17385A;
    -webkit-box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 0;
    height: 281px;
    max-width: calc(33.33% - 30px);
    margin: 15px;
}

.p_lists-anchor {
    background: #17385A;
    border: 1px solid #17385A;
    -webkit-box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
}
.p_lists-anchor a {
    height: 89px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.p_lists-image {
    padding: 39px 18px;
    height: 192px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.p_lists-anchor a img {
    margin-left: 8px;
}
.p_lists-image img {
    width: 100%;
    height: 137px;
}
/*====================================EVENTS PAGE CSS HERE*/
.pagetitle-events {
    background: url(../img/events/events-pagetitle-bg.svg);
    background-size: cover;
}
.pagetitle-events {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.eventspara p {
    margin: 0;
}
.eventspara p a {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 50px;
    letter-spacing: 0.08em;
    color: #17385A;
}
.events {
    padding: 85px 0;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
}
.events:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}
.events .container{
    position: relative;
    z-index: 1;
}
.events .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.events .abRows1 .col-sm-5 {
    max-width: 45%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
}
.events .abRows1 .col-sm-7 {
    max-width: 55%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
}
.events .abRows1 {
    margin-bottom: 55px;
}
/*====================================CONTACT US PAGE CSS HERE*/
.pagetitle-contact {
    background: url(../img/contact/contact-pagetitle-bg.svg);
    background-size: cover;
}
.pagetitle-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.contact-box {
    width: 1106px;
    background: #FFFFFF;
    border: 1px solid #17385A;
    border-radius: 15px;
    margin: 0 auto 60px;
    padding: 0 15px;
}
.contact-form {
    padding-top: 85px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
    padding-bottom: 50px;
}
.contact-form:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}
.contact-form .container {
    position: relative;
    z-index: 1;
}
.contact-map {
    position: relative;
    z-index: 0;
}
.contact-map img {
    width: 100%;
}
.contact-box .col-sm-7 {
    max-width: 53%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 53%;
            flex: 0 0 53%;
    padding: 30px 30px;
}
.contact-box .col-sm-5 {
    max-width: 47%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    padding: 30px 30px;
}
.cont_form .input-group input {
    height: 70px;
}
.cont_form .input-group input,.cont_form .input-group textarea {
    width: 100%;
    border: 0.5px solid #17385A;
    border-radius: 5px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 10px;
    letter-spacing: 0.08em;
    color: #17385A;
    padding: 18px 12px;
    display: block;
    margin-bottom: 12px;
}
.submi-tbtn input {
    width: 137px;
    height: 50px;
    background: #17385A;
    border-radius: 25px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 0px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
}
.infoContact ul {
    margin: 0;
}
.infoContact ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 30px;
}
.infoContact ul li img {
    width: 30px;
}
.info_icon {
    width: 66px;
    height: 66px;
    background: #17385A;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 15px;
}

.infoContact ul li p {
    margin: 0;
}
.infoContact ul li p,.infoContact ul li a {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #17385A;
}
.input-group-message textarea {
    height: 160px;
}
/*====================================IMPRINT PAGE CSS HERE*/
.pagetitle-imprint {
    background: url(../img/imprint.svg);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.imprint {
    padding-top: 62px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
    padding-bottom: 62px;
}

.imprint:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}

.imprint .container {
    position: relative;
    z-index: 1;
}

.imprintAddress {
    max-width: 1078px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 1px solid #17385A;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.impt_add {
    margin-bottom: 20px;
}

.impt_add h3 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
    color: rgba(23, 56, 90, 1);
    line-height: 30px;
    margin: 0 0 5px;
}

.impt_add p {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Red Hat Display';
    font-style: normal;
}
.impt_add p b {
    color: rgba(23, 56, 90, 1);
}
.impt_add:last-child {
    margin-bottom: 0;
}
/*====================================COOKIE POLICY PAGE CSS HERE*/
.pagetitle-cookie-policy {
    background: url(../img/cookie-policy.svg);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.cookie-policy {
    padding-top: 65px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
    padding-bottom: 65px;
}

.cookie-policy:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}

.cookie-policy .container {
    position: relative;
    z-index: 1;
}

.cookie-policy-box {
    width: 1245px;
    background: #FFFFFF;
    border: 1px solid #17385A;
    border-radius: 10px;
    padding: 30px 20px 0;
}
.cookie-title h3 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #17385A;
    margin: 0 0 10px;
}

.cookie-title p {
    margin-bottom: 15px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-size: 18px;
    line-height: 25px;
    color: #17385A;
}
.cookie-title p, .cookie-title p a {
    color: #17385A;
}
/*====================================DATA PROTECTION PAGE CSS HERE*/
.pagetitle-dataprotection {
    background: url(../img/data-protection.svg);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.dataprotection {
    padding-top: 65px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
    padding-bottom: 65px;
}

.dataprotection:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 250px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}

.dataprotection .container {
    position: relative;
    z-index: 1;
}

.dataprotection-box {
    width: 1245px;
    background: #FFFFFF;
    border: 1px solid #17385A;
    border-radius: 10px;
    padding: 30PX;
}
.dataprotection-box h3 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #17385A;
    margin: 0 0 10px;
}
.dataprotection-box p {
    margin-bottom: 15px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-size: 18px;
    line-height: 25px;
    color: #17385A;
}
.dataprotection-box .cookie-title {
    margin-bottom: 30px;
}
.dataprotection-box h2 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: rgba(23, 56, 90, 1);
    line-height: 30px;
    margin: 0 0 5px;
}
.H2-title {
    margin: 0 0 10px;
}
/*====================================CAR MOTOR OILS PAGE CSS HERE*/
.pagetitle-car-motor-oils {
    background: url(../img/car-motor-oils.svg);
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.proListRow {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 25px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 231px;
}
.proListCol-img {
    max-width: 40%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    padding: 0;
}
.proListCol-img img {
    width: 100%;
}
.proListCol-text {
    padding: 0 10px;
    max-width: 60%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
}
.proListCol-text p {
    margin: 0;
    width: 100%;
    padding: 0 10px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.08em;
    color: #17385A;
}
.proListCol-text a {
    width: 165px;
    height: 37px;
    background: #17385A;
    -webkit-box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 0.08em;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #FFFFFF;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
}
.car-motor-oils {
    padding-top: 85px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
    padding-bottom: 85px;
}
.car-motor-oils .col-sm-4 {
    padding: 15px;
}
.car-motor-oils .container {
    position: relative;
    z-index: 1;
    max-width: 1150px;
}
.car-motor-oils:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}
.trucks .proListCol-img {
    max-width: 35%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
}
.trucks .proListCol-text {
    max-width: 65%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
}
.trucks .proListCol-text p {
}
/*=====================SINGLE PAGE CSS*/
.singleRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -20px;
    padding: 45px 0;
}

.single {
    padding-top: 85px;
    position: relative;
    z-index: 0;
    background: #EFEFEF;
    padding-bottom: 85px;
}

.singleBox {
    width: 1155px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.singleRow .singleCol {}

.singleRow .singleCol-left {
    max-width: 36%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36%;
            flex: 0 0 36%;
    padding: 0 20px;
    padding-top: 15px;
    TEXT-ALIGN: CENTER;
}

.singleRow .singleCol-right {
    max-width: 64%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64%;
            flex: 0 0 64%;
    padding: 0px 20px;
}

.singleBox h3 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.08em;
    color: #17385A;
    margin-bottom: 35px;
}

.text-big {
    margin-bottom: 50px;
}

.text-big h4 {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 33px;
/* identical to box height */
    letter-spacing: 0.08em;
    color: #17385A;
    margin-bottom: 10px;
}

.text-big p {
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
/* or 167% */
    letter-spacing: 0.08em;
    color: #000000;
}
.singleRow .singleCol-left p {
    margin: 20px 0 0;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 30px;
/* identical to box height, or 200% */
    letter-spacing: 0.08em;
    color: #17385A;
}

.anchorBtn {
    padding-top: 100px;
}

.anchorBtn a {
    width: 300px;
    height: 50px;
    background: #17385A;
    -webkit-box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.25);
    /* border-radius: 10px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 800;
    font-size: 19px;
    line-height: 0px;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    MARGIN: 0 0 0 40px;
}
.text-big3 {}

.text-big3 p {
    margin-bottom: 10px;
}

.text-big3 ul {}

.text-big3 ul li {
    padding: 0 0 0 12px;
    position: relative;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
/* or 167% */
    letter-spacing: 0.08em;
    color: #000000;
}

.text-big3 ul li:after {
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    background: black;
    content: '';
    border-radius: 50%;
    display: initial;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.text-center-p {}

.text-center-p p {
    margin: 0 0 40px;
    text-align: center;
}
.s-table {}



.s-table .s-table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #FFFFFF;
    font-family: 'Red Hat Display';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 43px;
/* or 215% */
    letter-spacing: 0.08em;
    color: #000000;
    margin: 20px 20px;
}
.s-table .s-table-bg {
    background: #17385A;
    height: auto;
    color: #FFFFFF;
    padding: 10px;
}
.s-table-col-35px {
    max-width: 34%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
    padding: 0 15px;
       line-height: 25px;
}

.s-table-col-15px {
    max-width: 22%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
    padding: 0 10px;
    text-align: center;
       line-height: 25px;
}
.s-table-col-35px:last-child {
    text-align: center;
    max-width: 20%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
            line-height: 25px;
}
.single .container {
    position: relative;
    z-index: 1;
}

.single:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 150px);
    content: '';
    background: #ffffff;
    z-index: 0;
    border-radius: 0px 400px 0px 0px;
}
.t2box .container .row {
    max-width: 1155px;
    margin: 0 auto;
}

.col_custom-1 h3 {
    max-width: 240px;
    width: 100%;
}

.col_custom-2 h3 {
    max-width: 290px;
    width: 100%;
}

.col_custom-3 h3 {
    width: 100%;
    max-width: 182px;
}

/*=============================OWL CAR*/
 .product-lists .carousel-wrapper {
      position: relative;
    }
    .product-lists .owl-carousel .owl-nav {
      overflow: hidden;
      height: 0px;
    }
    .product-lists .owl-theme .owl-dots .owl-dot.active span,
    .product-lists .owl-theme .owl-dots .owl-dot:hover span {
      background: #5110e9;
    }

    .product-lists .owl-carousel .item {
      text-align: center;
    }
    .product-lists .owl-carousel .nav-button {
      height: 38px;
      width: 38px;
      cursor: pointer;
      position: absolute;
      top: 48% !important;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
    }
    .product-lists .owl-carousel .owl-prev.disabled,
    .product-lists .owl-carousel .owl-next.disabled {
      pointer-events: none;
    }
    .product-lists .owl-carousel .owl-prev {
      left: -35px;
      background: url(../img/leftarrow.svg);
      background-size: contain;
      background-repeat: no-repeat;
    }
    .product-lists .owl-carousel .owl-next {
      right: -35px;
      background: url(../img/rightarrow.svg);
      background-size: contain;
      background-repeat: no-repeat;
    }
    .product-lists .owl-carousel .prev-carousel:hover {
      background-position: 0px -53px;
    }
    .product-lists .owl-carousel .next-carousel:hover {
      background-position: -24px -53px;
    }
    .burgerICon {
    position: absolute;
    right: 0;
    top: 50%;
    width: 36px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
    display: none;
}

.burgerICon span {
    display: block;
    width: 25px;
    height: 4px;
    background: #17385a;
    margin: 0;
    border-radius: 10px;
}

.burgerICon span:nth-child(2) {
    margin: 4px 0;
}
.menu_list.active {
    left: 0;
}
.burgerICon.active {
    display: none;
}
.bg {
    background: #e9be65;
    position: fixed;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 100%;
    height: 100vh;
    z-index: 8;
    display: none;
    transition: all .2s linear;
}

.closebtn {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    border: 2px solid rgb(243 253 255 / 60%);
    line-height: 40px;
    z-index: 1;
    width: 50px;
    height: 50px;
    background: #ff4b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 5px 15px rgb(0 0 0 / 20%);
    border-radius: 50%;
    transition: all .6s linear;
}


.mob-logo,.fa.fa-chevron-down {
    display: none;
}