﻿a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*html.fixed {
  overflow-y: hidden;
} */
body {
  font-size: 20px !important;
  min-width: 320px;
  position: relative;
  padding-right: 0 !important;
  line-height: 28px !important;
/*  overflow: hidden; */
  font-family: Roboto;
  font-weight: 400;
  color: #373737;
  margin: 0;
  background-color: #f8f8f8;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.hidden {
  display: none;
}
body a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-decoration: none;
}
body a:focus,
body a:hover {
  color: #f5b35d;
  outline: 0;
}
body :focus {
  outline: 0;
}
img {
  vertical-align: middle;
  border: 0;
}
b {
  font-weight: 900;
}
p {
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1230px) {
  .container {
    width: 1200px;
  }
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .hidden-sm {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
.click_disable {
  pointer-events: none;
}
.center_wrap {
  text-align: center;
}
.btn_wrap_right {
  text-align: right;
}
::-webkit-scrollbar {
  width: 10px;
  background: 0 0;
}
::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #e8a145;
}
header {
  position: relative;
  width: 100%;
  -webkit-transition: all 1.4s;
  -o-transition: all 1.4s;
  transition: all 1.4s;
  z-index: 20;
}
.head_menu {
  padding: 26px 0 6px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
.head_menu > ul {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.head_menu > ul > li {
  display: inline-block;
  position: relative;
  line-height: 27px;
  padding: 24px 16px;
  margin: 0 !important;
}
.head_menu > ul > li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #373737;
}
.head_menu > ul > li > a {
  color: #000;
  position: relative;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
}
.head_menu > ul > li > a img {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.head_menu > ul > li:hover > a {
  color: #fff;
}
.head_menu > ul > li:hover > a img {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-filter: invert(1);
  filter: invert(1);
}
.head_menu > ul > li:hover:before {
  height: 100%;
}
.mobile_menu {
  background-color: #f8f8f8;
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
  height: -webkit-calc(100vh - 96px);
  height: calc(100vh - 96px);
  z-index: 20;
  padding: 0 20px;
  display: none;
  overflow-y: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.mobile_menu.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mobile_menu > ul {
  margin-bottom: 25px;
}
.mobile_menu > ul > li {
  display: block;
  position: relative;
  width: 100%;
}
.mobile_menu > ul > li > a {
  color: #000;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 44px;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile_menu > ul > li:hover > a {
  color: #ef4130;
}
.toggle_mnu {
  width: 75px;
  height: 40px;
  z-index: 110;
  border: none;
  right: 0;
  top: 0;
  z-index: 100;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  background: 0 0;
}
.toggle_mnu:focus {
  outline: 0;
}
.toggle_mnu span {
  display: block;
}
.burger_text {
  font-weight: 500;
  margin-right: 10px;
  font-size: 16px;
  line-height: 19px;
}
.sandwich {
  width: 18px;
  height: 14px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 200;
}
.sw-topper {
  position: relative;
  top: 0;
  width: 18px;
  height: 2px;
  background: #373737;
  border: none;
  -webkit-transition: -webkit-transform 0.5s, top 0.2s;
  -webkit-transition: top 0.2s, -webkit-transform 0.5s;
  transition: top 0.2s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, top 0.2s;
  transition: transform 0.5s, top 0.2s;
  transition: transform 0.5s, top 0.2s, -webkit-transform 0.5s;
  display: block;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.sw-bottom {
  position: relative;
  width: 18px;
  height: 2px;
  left: 0;
  top: 4px;
  background: #373737;
  border: none;
  -webkit-transition: -webkit-transform 0.5s, top 0.2s;
  -webkit-transition: top 0.2s, -webkit-transform 0.5s;
  transition: top 0.2s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, top 0.2s;
  transition: transform 0.5s, top 0.2s;
  transition: transform 0.5s, top 0.2s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0.2s, 0;
  -o-transition-delay: 0.2s, 0;
  transition-delay: 0.2s, 0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.sw-footer {
  position: relative;
  width: 18px;
  height: 2px;
  left: 0;
  top: 8px;
  background: #373737;
  border: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.sandwich.active .sw-topper {
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.sandwich.active .sw-footer {
  top: 2px;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.sandwich.active .sw-bottom {
  opacity: 0;
  top: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
#ascrail2000-hr {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .toggle_mnu {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .head_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: none !important;
  }
  .head_menu .logo_wrap {
    margin-right: 50px;
  }
  .toggle_mnu {
    display: none;
  }

}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  header {
    padding: 20px 0;
  }
}
::-webkit-input-placeholder {
  color: #626262;
}
:-moz-placeholder {
  color: #626262;
}
::-moz-placeholder {
  color: #626262;
}
:-ms-input-placeholder {
  color: #626262;
}
body input:focus::-webkit-input-placeholder,
body textarea:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
body input:focus:-moz-placeholder,
body textarea:focus:-moz-placeholder {
  opacity: 0.5;
}
body input:focus::-moz-placeholder,
body textarea:focus::-moz-placeholder {
  opacity: 0.5;
}
body input:focus:-ms-input-placeholder,
body textarea:focus:-ms-input-placeholder {
  opacity: 0.5;
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Regular/Roboto-Regular.eot?#iefix)
      format("embedded-opentype"),
    url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Regular/Roboto-Regular.woff) format("woff"),
    url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Regular/Roboto-Regular.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Black/Roboto-Black.eot?#iefix)
      format("embedded-opentype"),
    url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Black/Roboto-Black.woff) format("woff"),
    url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Black/Roboto-Black.ttf) format("truetype");
}
@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Medium/Roboto-Medium.eot?#iefix)
      format("embedded-opentype"),
    url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Medium/Roboto-Medium.woff) format("woff"),
    url(https://u2autoparts.com/ebay/gentwer/fonts/Roboto-Medium/Roboto-Medium.ttf) format("truetype");
}
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .hidden-sm {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
.page_content {
  padding: 0 0 80px;
}
.page_content .section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page_content .section_content .left_sidebar {
  width: 540px;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 70px;
}
.page_content .section_content .left_sidebar .logo_wrap {
  padding: 50px 0;
  text-align: center;
  position: relative;
  width: 100%;
  display: block;
}
.page_content .section_content .left_sidebar .logo_wrap img {
  display: inline-block;
}
.page_content .section_content .left_sidebar .sidebar_img {
  position: relative;
  border: 3px solid #373737;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 30px;
}
.page_content .section_content .left_sidebar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 385px;
  height: 100%;
  background-color: #373737;
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-position: right -webkit-calc(100% - 150px);
  background-position: right calc(100% - 150px);
  background-image: url(https://u2autoparts.com/ebay/gentwer/img/sidebar_bg.png);
  background-repeat: no-repeat;
}
.page_content .section_content .content {
  width: -webkit-calc(100% - 610px);
  width: calc(100% - 610px);
}
.page_content .section_content .content .advantages {
  margin-bottom: 50px;
}
.page_content .section_content .content h1 {
  font-size: 51px;
  line-height: 60px;
  margin-bottom: 30px;
  font-weight: 900;
}
.page_content .section_content .content .sidebar_img {
  display: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 40px;
  width: 100%;
  border: 1px solid rgba(55, 55, 55, 0.2);
}
.page_content .section_content .content .desc {
  margin-bottom: 50px;
}
.page_content .section_content .content h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page_content .section_content .content .params_list {
  margin-bottom: 50px;
  border-top: 1px solid #d9d9d9;
}
.page_content .section_content .content .params_list li {
  border-bottom: 1px solid #d9d9d9;
  padding: 20px 0;
}
.page_content .section_content .content .dot_list {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding-top: 20px;
  padding-left: 15px;
  margin-bottom: 50px;
  list-style-type: disc;
}
.page_content .section_content .content .dot_list li {
  margin-bottom: 20px;
}
.page_content .section_content .content .info {
  padding: 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
}
.page_content .section_content .content .info .icon {
  margin-right: 20px;
}
.page_content .section_content .content .info .text {
  margin-right: 30px;
  font-size: 18px;
  line-height: 25px;
}
.page_content .section_content .content .info .btn {
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
  padding: 14px 10px;
  background-color: #373737;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 143px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.page_content .section_content .content .tab_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
}
.page_content .section_content .content .tab_links .link {
  line-height: 66px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.page_content .section_content .content .tab_links .link.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #373737;
}
.page_content .section_content .content .tabs .tab {
  display: none;
}
.page_content .section_content .content .tabs .tab.active {
  display: block;
}
.page_content .section_content .content ol {
  padding-left: 20px;
  list-style-type: decimal;
}
.advantages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  background-color: #373737;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantages .item {
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
}
.advantages .line {
  height: 20px;
  width: 1px;
  opacity: 0.5;
  display: block;
  background-color: #f5f5f5;
}
footer .section_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
footer .section_content .logo_wrap {
  margin-right: 100px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
footer .section_content .footer_content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
footer .section_content .footer_content .logo_wrap {
  display: none;
}
footer .section_content .footer_content .copyright {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.3;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 365px;
  padding-right: 15px;
}
footer .section_content .footer_content .advantages {
  width: 100%;
  padding: 25px 75px;
}
footer .section_content .footer_content .footer_menu {
  width: -webkit-calc(100% - 365px);
  width: calc(100% - 365px);
  padding: 16px 0 7px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
footer .section_content .footer_content .footer_menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .section_content .footer_content .footer_menu > ul > li {
  display: inline-block;
  position: relative;
  line-height: 27px;
  padding: 24px 6px;
  text-align: center;
}
footer .section_content .footer_content .footer_menu > ul > li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #373737;
}
footer .section_content .footer_content .footer_menu > ul > li > a {
  color: #000;
  position: relative;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
}
footer .section_content .footer_content .footer_menu > ul > li > a img {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
footer .section_content .footer_content .footer_menu > ul > li:hover > a {
  color: #fff;
}
footer .section_content .footer_content .footer_menu > ul > li:hover > a img {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-filter: invert(1);
  filter: invert(1);
}
footer .section_content .footer_content .footer_menu > ul > li:hover:before {
  height: 100%;
}
@media only screen and (max-width: 1230px) {
  .page_content .section_content .left_sidebar {
    width: 340px;
    margin-right: 30px;
  }
  .page_content .section_content .left_sidebar:before {
    width: 250px;
  }
  .page_content .section_content .left_sidebar .sidebar_img {
    width: 100%;
  }
  .page_content .section_content .content {
    width: -webkit-calc(100% - 380px);
    width: calc(100% - 380px);
  }
  footer .section_content .footer_content .copyright {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  footer .section_content .footer_content .footer_menu {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .page_content .section_content .left_sidebar {
    display: none;
  }
  .page_content .section_content .content {
    width: 100%;
  }
  .page_content .section_content .content .sidebar_img {
    display: block;
  }
  footer .section_content .logo_wrap {
    display: none;
  }
  footer .section_content .footer_content .logo_wrap {
    display: block;
    margin-right: 15px;
    margin-bottom: 40px;
  }
  footer .section_content .footer_content .logo_wrap img {
    width: 160px;
  }
  footer .section_content .footer_content .copyright {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    padding: 20px 0;
    text-align: center;
  }
  footer .section_content .footer_content .footer_menu {
    width: -webkit-calc(100% - 175px);
    width: calc(100% - 175px);
    margin-bottom: 40px;
  }
  footer .section_content .footer_content .footer_menu > ul {
    display: block;
  }
  footer .section_content .footer_content .footer_menu > ul > li {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: left;
    border-top: 1px solid #d9d9d9;
  }
  footer .section_content .footer_content .footer_menu > ul > li > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .page_content {
    padding: 0 0 40px;
  }
  .page_content .section_content .content h1 {
    font-size: 25px;
    line-height: 29px;
    margin-bottom: 20px;
  }
  .page_content .section_content .content h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .page_content .section_content .content .info {
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page_content .section_content .content .info .text {
    width: -webkit-calc(100% - 44px);
    width: calc(100% - 44px);
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page_content .section_content .content .info .btn {
    width: 100%;
  }
  .advantages {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -3px 30px;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: transparent;
  }
  .advantages .item {
    margin: 0 3px 6px;
    padding: 14px;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #373737;
  }
  .advantages .item:nth-child(1) {
    width: -webkit-calc(60% - 6px);
    width: calc(60% - 6px);
  }
  .advantages .item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: -webkit-calc(100% - 6px);
    width: calc(100% - 6px);
  }
  .advantages .item:nth-child(5) {
    width: -webkit-calc(40% - 6px);
    width: calc(40% - 6px);
  }
  .advantages .line {
    display: none;
  }
  footer .section_content .footer_content .advantages {
    padding: 0;
    margin: 0;
  }
}

@media only screen and (max-width: 360px) {
  .page_content .section_content .content .tab_links .link {
    font-size: 14px;
  }
  .menu {
    display: none !important;
  }
}
*@media only screen and (min-width: 768px) {
  .visible-xs .menu {
    display: none !important;
  }

}

@media only screen and (min-width: 992px) {
  .visible-sm {
    display: none !important;
  }
}

.tab_links, .tabs, .productlink  { display: none !important; }

.special { font-weight: bold; }


 .lang_de, .lang_fr, .lang_it, .lang_es, .lang_da, .lang_sv, .lang_fi, .lang_pt { display: none !important; }