/*Obnuleniye*/

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

ul,
ol,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
}

html,
body {
    height: 100%;
    font-size: 14px;
    color: #303031;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    /*    font-family: 'Source Sans Pro', sans-serif;*/
}

body.lock {
    overflow: hidden;
}

/*  Container */
.wrapper {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.main {
    /*   flex: 1 1 auto;*/
}

._container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

/* Page Header Styles */

.header {
}
.header__body {
    /*   position: relative;*/
}
.header__top {
}
.top-header {
    /*    background-color: darkblue;*/
    /*   background-color: #d9123d;*/
    background-color: rgba(0, 0, 0, 0.33);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 15;
}
.top-header__container {
    padding: 12px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 43px;
}
._container {
}
.top-header__column {
    display: flex;
    align-items: center;
}
.top-header__list {
    display: flex;
    align-items: center;
}
.top-header__link {
    padding-right: 15px;
    font-weight: 700;
    color: white;
}
.top-header__lanselect {
    margin-right: 30px;
    display: flex;
    /*   margin-left: auto;*/
    align-items: center;
}
.top-header__language {
    padding-right: 15px;
    font-weight: 700;
    color: white;
}

.header__main {
}
.main-header {
    background-color: rgba(0, 0, 0, 0.33);
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    z-index: 2;

}
.main-header__container {

    padding: 12px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.main-header__logo {
    /*    flex: 0 1 100px;*/
    margin-right: 50px;
}
.header__logo-link {
}
.main-header__navigation {
    flex: 1 1 auto;
    position: relative;
}
.header__navigation-list {

    display: flex;
    align-items: center;
}

.header__navigation-link {
    padding-right: 15px;
    font-weight: 700;
    color: white;
    padding-bottom: 10px;
}
.main-header__search {
    flex: 0 1 100px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.header__search-icon_f,
.header__search-icon_c {
    display: none;
}

.header__search-input {
    background-color: transparent;
    /*   border: 1px solid rgba(255, 255, 255, 0.6);*/
    padding: 10px 5px 10px 10px;
    /*   background: url("../img/icons/search_icon.png") 95% 50% no-repeat;*/
    outline: none;
    color: white;
}

.header__search-icon {

    padding: 5px;
}

.header__search-icon1 {
    padding: 5px;
}

@media (max-width: 860px) {
    .main-header__navigation {
        display: none;
    }

    .header__navigation-list {
        flex-direction: column;
        /*      justify-content: flex-start;*/
        align-items: flex-start;
        /*      justify-content: space-around;*/
    }

    .header__navigation-list li {
        padding-bottom: 30px;
    }

    .header__navigation-link {
        font-size: 18px;
        text-align: left;
        line-height: 22px;
        letter-spacing: 2px;
        padding-left: 20px;
    }



}

@media (max-width: 767px) {
    .top-header__list {
        flex-direction: column;
        align-items: flex-start;

    }

    .top-header__list li {
        padding-bottom: 30px;
    }

    .top-header__link {
        padding-left: 20px;
        font-weight: 700;
        color: white;
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 520px) {

    .main-header__logo {
        margin-right: 10px;
    }

    .main-header__search {
        /*      flex: 1 1 100%;*/
        box-shadow: 0 0 5px grey;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 25;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease 0s;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .header__search-input {
        width: 91%;
        /*      display: none;*/
    }


    .search-form__item {
        box-shadow: 0 0 5px grey;
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        z-index: 25;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease 0s;
        background-color: rgba(0, 0, 0, 0.94);
        border-radius: 5px;
    }

    .header__search-icon_f {
        display: inline-block;
    }

    .main-header__search._actives {
        opacity: 1;
        visibility: visible;
        top: 100%;
        width: 100%;
    }

    .header__search-icon_c {
        display: none;
    }

    .header__search-icon1._actives .header__search-icon_c {
        display: inline-block;
    }

    .header__search-icon1._actives .header__search-icon_f {
        display: none;
    }
}

@media (max-width: 860px) {
    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        right: -100%;
        /*    left: -100%;*/
        top: 0;
        width: 60%;
        height: 100%;
        overflow: auto;
        background-color: rgb(137, 111, 0);
        transition: all 0.7s ease 0s;
        padding-top: 50px;
        padding: 70px 10px 20px 10px;
        z-index: 11;

    }

    .nav.active {
        right: 0;
    }

}

/*  Mega menu Styles */

.nav-link__drop {
    display: flex;
    align-items: center;
    margin-bottom: -10px;
}

.dropdown__navigation-list1 {
    position: absolute;
    top: 150%;
    background-color: white;
    color: grey;
    z-index: 15;
    width: 100%;
    /*   display: flex;*/
    /*   flex-direction: column;*/
    padding: 20px 20px 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}

.dropdown__navigation-linkli {
    display: flex;
    padding: 5px;
    width: 100%;
    justify-content: space-between;
}

.navigation-link__back {
    display: none;
}
.subdropdown-navigation__container {
    flex: 0 1 45%;
    /*   width: 90%;*/
    display: flex;
    flex-direction: column;
}
.subdropdown-menu__title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid grey;
    padding-bottom: 5px;
}
.subdropdown__navigation-list li {
    padding-bottom: 9px;
}

.subdropdown__navigation-linkli {
    /*   margin-bottom: 10px;*/
    /*   padding-bottom: 10px;*/
}

.subdropdown__navigation-link {
    color: inherit;
}

.subdropdown-navigation__container {
    margin-bottom: 15px;
}

.nav-link__dropli {
    cursor: pointer;
    padding-bottom: 0px;
}

.menu__arrow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transition: transform 0.3s ease 0s;
    transform: rotate(135deg);
    margin: 0 0 3px 5px;
}

.menu__arrow_back {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transition: transform 0.3s ease 0s;
    transform: rotate(225deg);
    margin: 0 10px 3px 5px;
}

@media (min-width: 860px) {
    .nav-link__dropli:hover .dropdown__navigation-list1 {
        opacity: 1;
        visibility: visible;
    }


}

@media (max-width: 860px) {
    .dropdown__navigation-list1 {
        position: fixed;
        display: flex;
        flex-direction: column;

        right: -100%;
        /*    left: -100%;*/
        top: 0px;
        width: 60%;
        height: 100%;
        overflow: auto;
        background-color: rgb(137, 111, 0);
        transition: all 0.7s ease 0s;
        padding-top: 10px;
        padding: 70px 10px 20px 10px;
        z-index: 150;
        opacity: 1;
        visibility: visible;
    }

    .nav-link__drop_on_off._active ~ .dropdown__navigation-list1 {
        right: 0;

    }

    .navigation-link__back {
        display: block;
        font-size: 18px;
        color: white;
        padding-bottom: 10px;
        border-bottom: 2px solid white;
        letter-spacing: 2px;
        font-weight: 900;
    }

    .dropdown__navigation-linkli {
        flex-direction: column;
        font-size: 18px;
        color: white;
    }

    .menu__arrow {
        width: 9px;
        height: 9px;
        margin: 0 0 0px 5px;
        transform: rotate(45deg);
    }

    .subdropdown-menu__title {
        margin-bottom: 9px;
        margin-right: 15px;
        font-size: 16px;
        font-weight: 700;
        border-bottom: 1px dotted white;
        padding-bottom: 5px;
    }

    .subdropdown__navigation-link {
        color: white;
        font-size: 16px;
        padding-bottom: 7px;
        margin-bottom: 9px;
    }

    .subdropdown__navigation-link:hover {
        color: #f0f0f0;
    }

}

@media (max-width: 500px) {
    .nav,
    .dropdown__navigation-list1 {
        width: 70%;
    }


}

@media (max-width: 400px) {
    .nav,
    .dropdown__navigation-list1 {
        width: 100%;
    }
}

/* Page Slider Styles */

.page__slider {
    /*   height: 500px;*/

}
.mainslider {
}
.mainslider__body {
    overflow: hidden;
    /*    overflow-y: hidden;*/
}
._swiper {
    /*    width: 600px;*/
    /*  height: 500px;*/
}
.mainslider__slide {
    position: relative;
    /*   height: 80px;*/
}
.mainslider__content {
    position: relative;
    z-index: 2;
}
.content-mainslider {
    /*   height: 80vh;*/
    height: 530px;
    padding: 20px 35px 20px 35px;
    margin-bottom: 90px;
}
.content-mainslider__title {
    /*    display: inline-block;*/
    max-width: 800px;
    width: 100%;
    padding: 15px;
    font-size: 54px;
    line-height: 50px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-top: 100px;
    margin-bottom: 20px;
    /*    text-align: center;*/
    margin-left: 30%;
    background-color: rgba(0, 0, 0, 0.0);

}


.content-mainslider__text {
}

.text-mainslider {
    width: 550px;
    height: 67px;
    color: #333333;
    font-weight: 900;
    font-size: 24px;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-left: 30%;

}


.text-mainslider__text1 {
    color: red;
    font-size: 28px;
}


.content-mainslider__footer {
    text-align: center;
}

.content-mainslider__price {
    color: white;
    font-weight: 900;
    font-size: 34px;
    line-height: 24px;
    /*    text-transform: uppercase;*/
    margin-bottom: 18px;
}

.content-mainslider__button {
    position: absolute;
    height: 46px;
    border: 3px solid black;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    /*    margin-bottom: 20px;*/
    color: black;
    left: 35%;
    bottom: -65px;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.content-mainslider__button span {
    font-weight: 500;
    text-transform: uppercase;
    color: black;
    cursor: pointer;
}
.mainslider__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    /*   object-fit: contain;*/
}

.mainslider__image img {

}

.mainslider__image1 {
    position: absolute;
    width: 100%;
    /*    height: 100%;*/
    bottom: -90px;
    left: 10px;
    z-index: 1;
}

@media (max-width: 991px) {
    .content-mainslider__title {
        font-size: 36px;
        margin-top: 90px;
        margin-bottom: 30px;
        max-width: 500px;
    }
}

@media (max-width: 750px) {

    .content-mainslider {
        /*      height: 50vh;*/
        height: 300px;
    }

    .mainslider__image1 img {
        max-width: 130px;
    }

    .content-mainslider__title {
        max-width: 350px;
        padding: 5px;
        font-size: 22px;
        margin-top: 85px;
        margin-bottom: 10px;
        line-height: 38px;
        font-weight: 700;
    }

    .text-mainslider {
        width: 350px;
        height: 37px;
        color: #333333;
        font-weight: 700;
        font-size: 14px;
        line-height: 26px;
        text-transform: uppercase;
        margin-bottom: 40px;
        margin-left: 30%;

    }

    .text-mainslider__text1 {
        color: yellow;
        font-size: 20px;
    }

}

@media (max-width: 520px) {
    .mainslider__image1 img {
        margin-left: 10px;
        max-width: 110px;
    }

    .content-mainslider__title {
        max-width: 280px;
        padding: 5px;
        font-size: 16px;
        margin-top: 85px;
        margin-bottom: 20px;
        line-height: 30px;
        font-weight: 700;
    }

    .text-mainslider {
        width: 250px;
        height: 25px;
        color: #333333;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        text-transform: uppercase;
        margin-bottom: 40px;
        margin-left: 30%;

    }

    .text-mainslider__text1 {
        color: yellow;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .content-mainslider {
        /*      height: 33vh;*/
        height: 300px;
    }

    .mainslider__image1 img {
        margin-left: 10px;
        max-width: 90px;
    }

    .content-mainslider__title {
        max-width: 200px;
        padding: 5px;
        font-size: 14px;
        margin-top: 90px;
        margin-bottom: 10px;
        line-height: 24px;
        font-weight: 700;
    }

    .text-mainslider {
        width: 200px;
        height: 20px;
        color: #333333;
        font-weight: 700;
        font-size: 12px;
        line-height: 20px;
        text-transform: uppercase;
        margin-bottom: 40px;
        margin-left: 30%;

    }

    .text-mainslider__text1 {
        color: yellow;
        font-size: 12px;
    }

    .content-mainslider__button {
        position: absolute;
        height: 36px;
        border: 3px solid black;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 15px 30px;
        /*    margin-bottom: 20px;*/
        color: black;
        bottom: -65px;
        font-size: 16px;
        cursor: pointer;
        z-index: 2;
    }
}



/*
._ibg {
    position: relative;
}
*/

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 2;
}

.mainslider__dotts1 {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: -22px 0px 0 0px;
    text-align: center;
    counter-reset: item;


}

.mainslider__dotts1 .swiper-pagination-bullet1 {
    /*    display: block*/
    width: 55px;
    height: 55px;
    margin: 0 23px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    /*    background-color: #ff0000;*/
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    opacity: 1;
}

.swiper-pagination-bullet::after {

}

/*
.swiper-pagination-bullet  {
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 20px;
        font-size: 12px;
        color: #000;
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);

}
*/

.swiper-pagination-bullet::after {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    counter-increment: item;
    content: counter(item);
    background-color: orange;
    color: white;
    font-size: 16px;
    font-weight: 900;
    opacity: 0;
    transition: all 0.3s ease 0s;
}

.swiper-pagination-bullet-active::after {
    opacity: 1;
}

/* Products Items Section */

.products__section {
}
.section-products {
}
.section-products__container {
}
._container {
}
.section-products__row {
    margin: 20px 0;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.section-products__column {
    /*   display: flex;*/
    padding: 3px;
    flex: 0 1 33.333%;
    justify-content: space-between;
    align-items: center;

}

.section-products__item-body {
    position: relative;
    width: 100%;
    /*    height: 100%;*/
    z-index: 10;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-products__item {
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    padding: 30px 0px;
    z-index: 9;
    justify-content: center;
    width: 100%;
    height: 100%;

}

.section-products__item:hover {
    border: 2px solid red;
    background-color: rgba(0, 0, 185, 0.34);
}

.products-item__image {
    position: relative;
    flex: 0 0 50%;
    padding: 10px 10px 10px 10px;
    /*    max-width: 110px;*/
    height: 200px;
    /*   width: 100%;*/
    /*   height: 100%;*/
    /*max-height: 50px;*/
    background-color: transparent;
}

.products-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    object-fit: contain;
}


.products-item__title {
    /*    width: 50%;*/
    flex: 0 0 50%;
    /*    display: block;*/
    padding: 10px;
    font-size: 26px;
    font-weight: 700;
    /*    white-space: nowrap;*/
    color: white;
}

.products-item__back {
    position: absolute;
    z-index: -1;
    background-color: black;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 850px) {
    .products-item__title {
        font-size: 22px;
    }
}

@media (max-width: 750px) {
    .products-item__title {
        font-size: 20px;
    }
    .section-products__item-body {
        height: 230px;
    }
}

@media (max-width: 700px) {
    .section-products__column {
        flex: 0 1 50%;
    }

}

@media (max-width: 500px) {
    .section-products__item {
        flex-direction: column;
    }

    .products-item__image {
        /*      max-width: 80px;*/
        height: 150px;
    }
    .products-item__title {
        text-align: center;
        font-size: 16px;
    }
}


/* COMPATIBILITY Section Styles */

.section-compatibility {
    background: url("../img/backrounds/0000030.jpeg") center no-repeat;
    background-size: cover;
    margin-top: 30px;
    margin-bottom: 30px;
}

.section-compatibility__container {
    text-align: center;
    padding: 190px 0px;

}

.section-compatibility__text {
    text-align: center;
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-compatibility__button {
    text-align: center;
    margin: 100px auto;
    padding: 15px 50px;
    border: 2px solid black;
    font-weight: 700;
    color: black;
    font-size: 18px;
    text-transform: uppercase;
}

@media (max-width: 600px) {

    .section-compatibility__container {
        text-align: center;
        padding: 150px 0px;

    }
    .section-compatibility__text {
        font-size: 60px;
        margin-bottom: 15px;
    }
    .section-compatibility__button {
        text-align: center;
        margin: 100px auto;
        padding: 15px 30px;
        border: 2px solid black;
        font-weight: 700;
        color: black;
        font-size: 16px;
        text-transform: uppercase;
    }

}

@media (max-width: 420px) {

    .section-compatibility__container {
        text-align: center;
        padding: 130px 0px;

    }

    .section-compatibility__text {
        font-size: 46px;
        margin-bottom: 15px;
    }
    .section-compatibility__button {
        text-align: center;
        margin: 100px auto;
        padding: 10px 20px;
        border: 2px solid black;
        font-weight: 700;
        color: black;
        font-size: 14px;
        text-transform: uppercase;
    }

}

/* APPLICATIONS Section Styles */

.applications__section {
    margin-bottom: 20px;
}
.section-applications {

}
.section-applications__container {
}
._container {
}
.section-applications__title {
    text-transform: uppercase;
    color: #0a0a0a;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px
}

.section-applications__items {
}
.section-applications__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.section-applications__column {

    flex: 0 1 25%;
    padding: 5px;
}

.applications__item-body {
    position: relative;
}
.section-applications__item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-applications__image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    /*    padding:  10px 5px;*/
}

.section-applications__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-applications__item-title {
    /*    display: block;*/
    padding: 170px 0px 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

@media (max-width: 900px) {
    .section-applications__item-title {
        /*    display: block;*/
        padding: 120px 0px 20px;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        color: white;
    }
}

@media (max-width: 700px) {
    .section-applications__item-title {
        /*    display: block;*/
        padding: 100px 0px 15px;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        color: white;
    }
}

@media (max-width: 550px) {
    .section-applications__column {
        flex: 0 1 50%;
        padding: 5px;
    }
    .section-applications__item-title {
        /*    display: block;*/
        padding: 140px 0px 15px;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        color: white;
    }

}

@media (max-width: 400px) {
    .section-applications__column {
        flex: 0 1 100%;
        padding: 5px;
    }
    .section-applications__item-title {
        /*    display: block;*/
        padding: 180px 0px 20px;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        color: white;
    }

}

* Brands Slider Section Styles */


.page__brands {
}

.brands-slider {
    border-bottom: 2px dashed #bebebe;
    border-top: 2px dashed #bebebe;
    padding: 20px 0;
    margin-bottom: 20px;
}

.brands-slider__container {
    position: relative;
}
._container {
}
.brands-slider__body {
    display: flex;
    /*    min-width: 0;*/
    overflow: hidden;
    /*    padding: 0 40px;*/
    margin: 0 60px;
    align-items: center;
}

._swiper {
}

.brands-slider__slide {
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    padding: 10px 10px;
}

.brands-slider__slide-body {
    height: 300px;
    padding: 60px 10px;
    /*    background-color: rgba(227, 227, 227, 0.42);*/
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.8995973389355743) 45%, rgba(235,235,235,0.8575805322128851) 100%);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brands-slider__info {
    padding: 5px;
    text-align: left;
    text-decoration: none;
    color: dimgrey;
}

.info-slider__title {
    font-size: 36px;
    font-weight: 500;
    text-align: left;
    line-height: 44px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #b1b1b1;
    text-decoration: none;
}

.info-slider__text {
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
}

.brands-slider__slide img {
    transition: all 0.5s ease 0s;
    max-height: 160px;
    text-align: center;
}

.info-slider__link {
    font-size: 14px;
    text-align: left;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 700;
}

.brands-slider__arrows {
}

.brands-slider__arrows-prev {
    padding: 0 10px;
    background: url("../img/slider-left.png") center no-repeat;
    width: 45px;
    height: 29px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    /*    transform: translate(0, -50%);*/
    left: 0;
    z-index: 3;
}

.brands-slider__arrows-next {
    padding: 0 10px;
    background: url("../img/slider-right.png") center no-repeat;
    width: 45px;
    height: 29px;
    cursor: pointer;
    position: absolute;
    top: 45%;
    /*    transform: translate(0, -50%);*/
    right: 0;
    z-index: 3;
}

@media (max-width: 500px) {

    .brands-slider__slide-body {
        padding: 30px 10px;
        background-color: rgba(227, 227, 227, 0.42);
        display: flex;
        align-items: center;
    }

    .info-slider__title {
        font-size: 30px;
        font-weight: 500;
        text-align: left;
        line-height: 40px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 2px solid #b1b1b1;
    }
}

/*  Footer Styles */

/*  Footer Styles */

.footer {
   margin-top: auto;
    background-color: #1e1e1e;
}

.footer__top {
   border-bottom: 1px solid grey;
    padding: 30px 0;
}

.footer__top_container {
    max-width: 1200px;

}

.footer__row {
    display: flex;
    flex-wrap: wrap ;
    margin: 0 -15px;
/*   justify-content: space-between;*/
   margin-bottom: 20px;
}

.footer__column {
    flex: 0 0 35%;
    padding: 20px 15px;
/*    min-width: 200px;*/
}

.footer__column:first-child {
    flex: 0 0 30%;
}

.footer__clients {
   max-width: 220px;
   max-height: 100px;
   margin-bottom: 10px;
}

.footer__clients img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

@media (max-width: 870px) {
   .footer__column {
    flex: 0 1 50%;
    padding: 20px 15px;
    min-width: 160px;
}
}
   
@media (max-width: 500px) {
   .footer__column {
    flex: 0 1 90%;
}
   

}


.footer__label {
    color: white;
    font-weight: 700;
    line-height: 150%;
    font-size: 16px;
    margin: 0 0 15px 0;
}
.footer__menu {
}
.menu-footer {
}
.menu-footer__list {
}
.menu-footer__item {
}

.menu-footer__item:not(:last-child) {
    margin: 0 0 10px 0;
}

.menu-footer__link {
    font-size: 14px;
    font-weight: 400;
    color: white;
}

.menu-footer__link:hover {
    font-weight: 600;
   border-bottom: 2px solid #d9123d;
}
.contacts__footer {
}
.footer-contacts {
    display: flex;
    flex-direction: column;
}
.footer-contacts__item {
    padding: 0 0 0 34px;
    display: flex;
    align-items: center;
    min-height: 30px;
    color: white;
    line-height: 142%;
    font-size: 14px;
    font-weight: 400;
}

.footer-contacts__item:not(:last-child) {
    margin: 0 0 10px 0;
}

.footer-contacts__item:hover {
    text-decoration: underline;
}

.footer-contacts__text {
   color: #bbb;
   line-height: 1.4;
   margin-bottom: 7px;
   font-weight: 500;
}

.footer-contacts__item__phone {
    background: url("../img/footer/f1.svg") left no-repeat;
}
.footer-contacts__item__map {
    background: url("../img/footer/f2.svg") left no-repeat;
}
.footer-contacts__item__mail {
    background: url("../img/footer/f3.svg") left no-repeat;
}
.footer__bottom {
    padding: 25px 0;
}


.footer__bottom__container {
    display: flex;
    justify-content: center;
    align-items: center;
    }
.footer__bottom__container a {
/*   text-decoration: none;*/
   color: white;
   font-weight: 700;
}

.footer__bottom__copy {
    line-height: 170%;
   text-align: center;
   color: darkgrey;
}
.footer__bottom__social {
    display: flex;
    align-items: center;

}
.footer__bottom__social_item:not(:last-child) {
    margin: 0 15px 0 0;
}
.footer__bottom__social__icon {
   width: 16px;
   height: 16px;
}

@media (max-width: 767px) {
    .footer__bottom__container {
    flex-direction: column;
    text-align: center;
    margin: 0 0 15px 0;
    }
    .footer__bottom__copy {
    margin: 0 0 15px 0;
    }
}
/*  Subsribe Styles  */

.subscribe {
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.subscribe__input {
    background-color: transparent;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    outline: 0;
    color: #fefefe;
    border: 1px solid #727272;
}

.subscribe__input::placeholder {
    color: #b2b2b2;
}

.subscribe__btn {
    border: 0;
    padding: 12px 15px;
    /*    line-height: 1;*/
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    outline: 0;
    color: #fefefe;
    background: #d9123d;
    /*   border: 1px solid transparent;*/
    transition: background .2s linear;
}

.subscribe__btn:hover {
    background-color: #ce3858;
}

/*  burger menyu styles   */

@media (max-width: 860px) {

    .header_burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 100;
        order: 3;
    }

    .header_burger.active {
        margin-top: 0px;
        z-index: 100;
    }

    .header_burger span {
        background-color: white;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        top: 9px;
        transition: all 0.3s ease 0s;
        z-index: 100;
    }

    .header_burger::before,
    .header_burger::after {
        content: '';
        background-color: white;
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
        z-index: 100;
    }

    .header_burger.active span {
        transform: scale(0);
    }

    .header_burger::before {
        top: 0;
    }

    .header_burger::after {
        bottom: 0;
    }

    .header_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header_burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

}

/* Motor Oil page Styles*/

.motoroil-header__banner {
}

.header-banner {
    /*   background: url("../img/backrounds/motor-oil-banner1.png") center no-repeat;*/
    /*   background-size: cover;*/
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid red;
    z-index: 1;
}

.main_banners {
    height: 340px;
    width: 100%;
    background-color: #2c2e48;
    position: absolute;
    top: 0px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);

}

.dealer_banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

}

.header-banner_container {
}

.header-banner__body {
    display: inline-block;
    height: 340px;
    z-index: 2;
    position: relative;
    top: 108px;

}

.header-banner__body-inner {
    padding: 10px 20px;
}
.header-banner__title {
    padding-top: 0px;
    margin-top: 0px;
    color: #fefefe;
    text-transform: uppercase;
    text-align: left;
    font-size: 40px;
    line-height: 44px;
    font-weight: 900;
}

.header-banner__text {
    font-size: 15px;
    color: white;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 10px;
}
.header-banner__link {
    display: inline-flex;
    text-decoration: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    align-items: center;
}

.header-banner__link img {
    max-width: 100px;
    margin-right: 10px;
}

@media (max-width: 500px) {
    .header-banner__title {
        /*     padding-top: 40px;*/
        font-size: 34px;
    }
    .header-banner__text {
        max-width: 250px;
        font-size: 12px;
    }
}

/*  Bread Crumbs section Styles */

.breadcrumbs {
    overflow: auto;
    margin: 25px 0 25px 30px;
    height: 20px;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumbs__list li {
    padding: 0 24px 0px 0;
    margin: 0 7px 0px 0;
    background: url("../img/li-1.png") right / 10px no-repeat;
}

.breadcrumbs__list li:last-child {
    margin: 0 0px 0px 0;
    background: none;
}

.breadcrumbs__link {
    border-bottom: 1px dotted;
    color: #d9123d;
    font-weight: 500;
    font-size: 16px;
}


.breadcrumbs__item {
    color: #3b3b3b;
    font-weight: 500;
    font-size: 16px;
}

/* MotorOil Series Section Styles*/

.motoroil-series {
}
.motoroil-series__container {
}
._container {
}
.motoroil-series__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.motoroil-series__column {
    display: flex;
    flex-direction: column;
    flex: 0 0 33.333%;
    padding: 20px;
}

@media (max-width: 991px) {
    .motoroil-series__column {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .motoroil-series__column {
        flex: 0 0 100%;
    }
}
.series-column {

}
.series-column__top {
    overflow: hidden;
    flex: 0 0 250px;
    /*
       max-height: 250px;
       height: 100%;
    */
    background: url("../img/products_back/product_series_back.png") center no-repeat;
    background-size: cover;
}
.series-column__title {
    color: #fefefe;
    text-transform: uppercase;
    font-weight: 700;
    padding: 40px 10px 40px;
    font-size: 30px;
    text-align: center;
}
.series-column__image {
    position: absolute;
    top: -140px;
    left: 50%;
    max-width: 200px;
    transform: translateX(-50%);
}

.series-column__image img {
    max-width: 150px;
    height: 170px;
}
.series-column__bottom {
    display: flex;
    flex-direction: column;
    flex: 0 0 150px;
    position: relative;
    background-color: #ebebeb;
    text-align: center;
    justify-content: space-between;
}
.series-column__text {
    display: block;
    padding: 50px 30px 10px;
    text-align: center;
    color: #484848;
    font-weight: 700;
    flex: 0 0 100px;
    max-height: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.series-column__btn {
    display: inline-block;
    border: 2px solid #363636;
    text-align: center;
    padding: 7px 17px;
    color: #484848;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    margin: 10px auto 20px;
    flex: 0 0 30px;
}

.series-column__btn:hover {
    background-color: #363636;
    color: white;
}

/* Motor Oil List page Styles */

.motor_oil_list {
    margin-top: 40px;
}
.oil_list__container {
}

.oil_list__row {
}

.oil_list__column {
    display: flex;
    background: linear-gradient(90deg,#fefefe,#f4f4f4);
    align-items: center;
    padding: 10px;
    width: 90%;
    margin: 20px auto;
    text-decoration: none;
    color: #313131;
}
.oil_list__image {
    max-width: 130px;
    margin: 10px;
}

.oil_list__image img {
    width: 100%;
}

.oil_list__body {
    display: flex;
    justify-content: space-between;
    flex: 1 1 auto;
    align-items: center;
    margin: 10px 20px 10px 50px;
}
.oil_list__body_description {
    flex: 1 1 auto;
    padding: 0 20px;
    margin: 0px 40px 0px 20px;
}
.oil_list__body_title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 33px;
    border-bottom: 3px solid #d6d6d6;
    margin-bottom: 10px;

}
.oil_list__body_text {
    font-weight: 700;
}
.oil_list__link {
    flex: 0 0 150px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid black;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #313131;
    transition: all 0.5s ease;
}

.oil_list__link:hover {
    background-color: #363636;
    color: white;
}

@media (max-width: 820px) {
    .oil_list__column {
        width: 95%;
    }
    .oil_list__body_title {
        font-size: 23px;
    }

    .oil_list__body {
        margin: 10px 10px 10px 10px;
    }

    .oil_list__body_description {
        margin: 0px 10px 0px 10px;
        padding: 0 10px;
    }
}

@media (max-width: 650px) {

    .motor_oil_list {
        margin-top: 15px;
    }
    .oil_list__row {
        display: flex;
        flex-wrap: wrap;
    }
    .oil_list__column {
        width: 50%;
        margin: 10px auto;
    }
    .oil_list__image {
        max-width: 80px;
    }
    .oil_list__body {
        flex-direction: column;
        margin: 5px;
        justify-content: flex-start;
        text-align: left;
        align-items: flex-start;
    }

    .oil_list__body_description {
        margin: 0px 5px 0px 5px;
        padding: 0 0px;
    }
    .oil_list__body_title {
        font-size: 16px;
    }
    .oil_list__body_text {
        font-weight: 500;
        font-size: 12px;
    }
    .oil_list__link {
        border: none;
        flex: 1 1 auto;
        padding: 10px 10px;
        text-align: left;
        font-size: 12px;
        text-decoration: underline;
    }
}

@media (max-width: 500px) {
    .oil_list__column {
        width: 100%;
    }

}

/* Oil Product Page Styles */

.oil_product {
    margin-top: 20px;
    margin-bottom: 20px;
}
.oil_product__container {
}
._container {
}
.oil_product__top {
}
.oil_product__top-row {
    display: flex;
    width: 80%;
    justify-content: center;
    margin: 0 auto;
}
.oil_product__gallery {
    flex: 0 1 40%;
}
.product__gallery-image {
    max-width: 250px;
}

.product__gallery-image img {
    width: 100%;
}
.product__gallery-thumbinals {
    display: flex;
}
.product__gallery-thumb {
    max-width: 60px;
    margin: 15px;
}

.product__gallery-thumb img {
    width: 100%;
}
.oil_product__description {
    margin: 0px 10px 0px 120px;
    flex: 1 1 60%;
}
.oil_product__name {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}
.oil_product__text {
    padding: 0px 10px 0px 20px;
    list-style: circle;
    margin-bottom: 30px;
}

.oil_product__text li {
    list-style: disc;
    font-weight: 700;
    line-height: 22px;
    font-size: 15px;
}

.oil_product__price {
    font-weight: 900;
    font-size: 30px;
    border-bottom: 3px solid #d6d6d6;
    padding: 10px 10px;
    margin-bottom: 10px;
}
.oil_product__retailers {
}
.retailers__title {
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 5px;
    margin-bottom: 15px;
}
.retailers__links {
    display: flex;
}
.retailers__link {

}

.retailers__logo {
    max-width: 140px;
}

.retailers__logo img {
    width: 100%;
}

@media (max-width:880px) {
    .oil_product__top-row {
        width: 95%;
    }
    .oil_product__description {
        margin: 0px 10px 0px 40px;
    }
}

@media (max-width:650px) {
    .oil_product__top-row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .oil_product__gallery {
        /*      margin: 0 auto;*/
        /*   flex: 1 1 95%;*/
    }
    .oil_product__description {
        margin: 0px 10px 0px 10px;
        flex: 1 1 95%;
    }
}

@media (max-width:450px) {
    .oil_product__name {
        text-align: center;
        font-size: 24px;
    }
    .oil_product__text li {
        font-size: 12px;
    }
    .oil_product__text {
        margin-bottom: 15px;
    }
}

/* Product Tabs Styles */

.product__info {
}
.info-product {
    margin-bottom: 30px;
}
.info-product__nav {
    display: flex;
    align-items: center;
}


.info-product__item {
    height: 49px;
    color: #8a8a8a;
    text-transform: uppercase;
    font-weight: 900;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #d8d8d8;
    margin: 0px 10px;
}

.info-product__item span {
    border-bottom: 1px dashed;
}

.info-product__item._active {
    color: #4a4a4a;
    background-color: #f5f5f5;
}

.info-product__item._active span {
    border-bottom: 1px dashed transparent;
}

.info-product__body {
    padding: 35px 30px;
    background-color: #f4f4f4;
}

.info-product__body p {
    color: #666666;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.info-product__block {
    display: none;
}

.info-product__block._active {
    display: block;
}

.product_details__body {
    display: flex;
}

.product_details__textlist {
    flex: 1 1 55%;
    padding: 20px;
    margin: 0px 30px 0px 0px;
}
.product_details__table {
    flex: 0 1 45%;

}

.product_details__text {
    font-weight: 700;
    line-height: 22px;
    font-size: 14px;
    color: #5f5f5f;
    margin-bottom: 20px;
}
.product_details__list li {
    list-style: disc;
    font-weight: 700;
    line-height: 22px;
    font-size: 14px;
    color: #5f5f5f;
    margin: 0px 15px;
}

@media (max-width: 800px) {
    .info-product__nav1 {
        flex-direction: column;
    }

    .product_details__body {
        flex-wrap: wrap;
    }

    .product_details__textlist {
        flex: 1 1 90%;
        margin: 0px 0px 0px 0px;
        padding: 10px;
    }

    .product_details__table {
        flex: 0 1 80%;

    }
}

@media (max-width: 650px) {
    .info-product__body {
        padding: 15px 10px;
    }
    .product_details__textlist {
        flex: 1 1 100%;
    }
    .product_details__table {
        flex: 0 1 100%;

    }

}

@media (max-width: 450px) {
    .info-product__item {
        margin: 0px 5px;
        padding: 5px 15px;
    }

    .product_details__list li {
        margin: 0px 5px;
    }
}


/* Tabs Table Styles */


.product_details__table {

}

.product_details__table-body {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
}

.details__table-body-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.product_details_datasheet {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 7px;
    color: #2e2ebf;
}

.info-product__table {
    border-collapse: collapse;
    width: 100%;

    padding: 20px;
}



.info-product__table tr {
    /*   border-bottom: 1px solid #d3d3d3;*/
}

.info-product__table td {

    font-weight: 300;
    width: 40%;
    color: grey;
    padding: 10px 15px;
}

.info-product__table tr:nth-child(even) {
    background-color: #f0f0f0;
}

.info-product__label {

    font-weight: 700;
}
.info-product__value {
    text-align: end;
}

/* News Page Styles */

.news_list {
    margin: 20px 0px;
}
.news_list__container {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}
.news_list__items {
    margin-bottom: 50px;
}
.news_list__item {
    margin: 20px;
    padding: 20px;
    display: block;
    border-bottom: 3px solid #d6d6d6;
}

.news__title {
    color: #0a0a0a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}
.news__date {
    color: #454545;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}
.news__subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    color: #606060;
    font-weight: 400;
}
.news__link {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid black;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    color: #313131;
    transition: all 0.5s ease;
    cursor: pointer;
}

.news__link:hover {
    background-color: #363636;
    color: white;
}

@media (max-width: 400px) {
    .news_list__item {
        margin: 10px;
        padding: 10px;
    }
    .news__title {
        font-size: 28px;
    }
    .news__link {
        padding: 5px 15px;
    }
}

/* WHy We section Styles*/

.whywe {
}
.whywe_row1 {
    background: url("../img/backrounds/Why%20Red%20Line%20bottles.png") right no-repeat;
    object-fit: cover;
    background-size: cover;
}

.whywe_row-video {
    background: url("../img/backrounds/whywe2.jpg") right no-repeat;
    object-fit: cover;
    height: 400px;
    background-size: cover;
}

.whywe_row3 {
    background: url("../img/backrounds/whywe_tech.jpg") right no-repeat;
    object-fit: cover;
    background-size: cover;
}

.whywe_container {
}
._container {
}
.whewe__column {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    padding-right: 40px;
}

.whewe__column-left {
    margin-right: auto;
    width: 100%;
    max-width: 450px;
    padding-right: 20px;
}

.whewe__title {
    text-transform: uppercase;
    font-size: 56px;
    font-weight: 700;
    padding: 120px 10px 10px;
}

.whewe__title iframe {
    height: 240px;
}
.whewe__subtitle {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    padding: 5px 10px 5px;
}
.whewe__text {
    padding: 5px 10px 120px;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: #5f5f5f;
}

@media (max-width: 500px) {
    .whewe__column {
        padding-right: 20px;

    }

}

/* Contact US Styles*/

/*  Contact Us  */

.contact_us {
    background-color: white;
    width: 100%;
}

.contact_us_parts {
    display: flex;
    justify-content: space-between;
    padding: 40px 0px 40px 0px;
    /*    margin: 40px auto;*/


}

.contact_us_text_part {
    width: 50%;
    padding: 0 40px;
}

.contact_us_text_title {
    margin-bottom: 20px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}



.contact_us_text {

}

.contact_us_input_part {
    width: 50%;
    padding: 0 40px;
    margin: 20px auto;
}

.contact_us_input {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.name_mail_flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.input_name_mail {
    /*    max-width: 48%;*/
    width: 48%;
    margin: 5px 5px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid grey;
    outline: none;
}

.input_subject {
    width: 100%;
    margin: 5px 5px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid grey;
    outline: none;
}

.input_textarea {
    width: 100%;
    margin: 5px 5px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid grey;
    outline: none;
    overflow: auto;
    resize: none;
    font-family: inherit;
}

.btn_input {

    display: inline-block;
    margin: 5px 5px;
    padding: 10px 35px;
    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: right;
    /*    text-align: left;*/
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s linear;
}

.btn__white {
    background-color: white;
    margin-bottom: 5px;
    color: black;
    border: 2px solid black;

}

.btn__white:hover {
    background-color: black;
    color: white;
}

@media (max-width: 991px) {

    .contact_us_text_part {
        padding: 0 20px;
    }
    .contact_us_input_part {
        padding: 0 20px;
    }

}

@media (max-width: 767px) {
    .contact_us_parts {
        flex-wrap: wrap;
    }

    .contact_us_text_part {
        width: 100%;
        padding: 0 20px;
    }
    .contact_us_input_part {
        width: 100%;
        padding: 0 20px;
    }
}

/* News Section Styles */

.redline_news {
    margin: 40px auto;
}
.news_container {
    max-width: 800px;
    width: 100%;
}
._container {
}
.news__body {
    padding: 10px;
}
.news__title {
    color: #0a0a0a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.news__subtitle {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.news__text {
    line-height: 22px;
    font-size: 14px;
    color: #434343;
    margin-bottom: 10px;
}
.news__link_news {
    color: red;
    font-size: 16px;
}


/*  Tech Info Styles */

.techinfo {
}
.techinfo_container {
    margin-top: 70px;
}
._container {
}
.techinfo__body {
    padding: 5px 15px;
    margin-bottom: 20px;

}
.techinfo__title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    color: black;
    padding: 7px 3px;
    border-bottom: 3px solid #cccccc;
    margin-bottom: 20px;
}

.techinfo__files {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.techinfo__files_link {
    flex: 0 0 50%;
    padding: 0px 5px 0px 30px;
    color: #0063be;
    font-weight: 700;
    font-size: 16px;
    /*   letter-spacing: 1px;*/
    background: url("../img/icons/file_blue.png") top left no-repeat;
    /*   background-size: contain;*/
    margin-bottom: 20px;
}

@media (max-width: 650px) {
    .techinfo__files_link {
        flex: 0 0 100%;
    }
}

@media (max-width: 650px) {
    .techinfo_container {
        margin-top: 40px;
    }
    .techinfo__body {
        padding: 5px 5px;
        margin-bottom: 20px;

    }
}

/* 404 page Styles*/

.redline_404 {
}

.redline404_container {
}

.redline404__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.redline404__title {
    color: #34495e;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 10px 0px;
    text-align: center;
}

.redline404__text {
    color: #34495e;
    font-size: 16px;
    font-weight: 500;
    margin: 20px 10px;
    text-align: center;
}

.redline404__btn {
    display: inline-block;
    margin: 10px auto 50px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    background-color: #34495e;
    padding: 7px 15px;
    border-radius: 5px;
    line-height: 1.5;
}

.redline404__btn:hover {
    box-shadow: 1px 3px 10px #34495e;
}

/* Faq section Styles */

.redline-fag {
}

.redline-fag__container {
    margin: 50px auto 90px;
    max-width: 1220px;

}

.redline-fag__item {
    padding: 0px 10px 10px;
    border-bottom: 2px solid #d6d6d6;
    margin-bottom: 20px;
}

.redline-fag__question {
    color: #0a0a0a;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.redline-fag__answer {
    line-height: 22px;
}

.redline-fag__answer span {
    color: red;
}

/* News List Moto Section*/

.news_list__item_moto {
    margin: 15px;
    padding: 15px;
    display: flex;
    border-bottom: 3px solid #d6d6d6;
}

.news_list__item_moto_photo {
    flex 0 1 20%;
    padding: 20px;
    /*   max-width: 250px;*/
}

.news_list__item_moto_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_list__item_moto_body {
    flex 1 1 80%;
    padding: 20px;
}


.news__moto_text {
    font-size: 16px;
    margin-bottom: 10px;
    color: #606060;
    font-weight: 400;
}

@media (max-width: 550px) {
    .news_list__item_moto {
        margin: 5px;
        padding: 5px;
        flex-wrap: wrap;
    }

    news_list__item_moto_photo {
        flex 0 1 100%;
        padding: 10px;
    }

    .news_list__item_moto_body {
        flex 1 1 100%;
        padding: 10px;
    }
}

.news_moto__photo_big {
    padding: 0px;
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
}

.news_moto__photo_big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_moto__photo_smalls {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    margin: 0 -5px 20px;
    cursor: pointer;
}

.news_moto__photo_mini {
    flex: 0 1 25%;
    padding: 5px;
}

.news_moto__photo_mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid transparent;
}

.news_moto__photo_mini img:hover {
    border: 2px solid red;
}

@media (max-width: 550px) {
    .news_moto__photo_mini {
        flex: 0 1 50%;
    }
}