html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 400;
  src:  url('../fonts/TildaSans-VF.woff2') format('woff2');
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'TildaSans', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
strong, em {
  color: initial;
}
p {
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  text-transform: initial;
  color: unset;
}
.rotate180 {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.hidden {
  overflow: hidden;
}
.container {
  max-width: 1200px;
  padding: 0px 20px;
  margin: 0 auto; 
}
.section__title {
  color: #4d4d4d;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 42px;
  line-height: 1.23;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  margin-bottom: 40px;
}
.section__title span {
  color: #ed1c24;
}
.section__subtitle {
  max-width: 560px;
  font-size: 18px;
  color: #6e6e6e;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'TildaSans', sans-serif;
}
.section__bricks-image {
  display: block;
  margin: 0px auto;
  margin-bottom: 60px;
}
@media( max-width: 1200px ) {
  .section__title {
    font-size: 38px;
  }
}
@media( max-width: 768px ) {
  .section__title {
    font-size: 30px;
  }
  .section__subtitle {
    line-height: 1.4;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background-color: transparent;
  padding: 6px 40px;
}
header.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  transition: 1s;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
  animation: headerFixed 0.3s;
}
@keyframes headerFixed {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media( max-width: 1200px ) {
  .header {
    padding: 6px 20px;
  }
}
.header__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.header__image {
  width: 200px;
  min-width: 357px;
  height: auto;
}
.header__image img {
  display: block;
  width: 200px;
  height: 100%;
}
.header__image-fixed {
  display: none !important;
}
.header__cabinet-fixed {
  display: none !important;
}
.header.fixed .header__image-default {
  display: none !important;
}
.header.fixed .header__cabinet-default {
  display: none !important;
}
.header.fixed .header__image-fixed {
  display: block !important;
}
.header.fixed .header__cabinet-fixed {
  display: block !important;
}
.header__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 5px;
}
.header__links-item {
  padding: 0px 15px;
  display: flex;
  align-items: center;
  column-gap: 5px;
  position: relative;
}
.header__links-item:first-child {
  padding-left: 0;
}
.header__links-item:last-child {
  padding-right: 0;
}
.header__links-item a {
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
.header__links-item a:hover {
  color: #cccccc;
}
.header__links-item__current a {
  color: #b8b8b8;
  font-weight: 400;
  position: relative;
}
.header__links-item__current a:hover {
  color: #b8b8b8;
}
.header__links-item__current a::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: #b8b8b8;
}
.header__links-arrow {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 3px 4px 3px;
  border-color: transparent transparent #FFFFFF transparent;
  transition: all 0.3s ease;
}
.header.fixed .header__links-item a {
  color: #4d4d4d;
  font-weight: 400;
}
.header.fixed .header__links-arrow {
  border-color: transparent transparent #4d4d4d transparent;
}
.header.fixed .header__links-item a:hover {
  color: #ed1c24;
}
.header.fixed .header__links-item__current a {
  color: #ed1c24;
}
.header.fixed .header__links-item__current a::after {
  background-color: #ed1c24;
}
.header__links-menu {
  position: absolute;
  top: 40px;
  left: -333px;
  max-width: 900px;
  background-color: #fff;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  z-index: 1;
}
.header.fixed .header__links-menu  {
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.header__links-menu::before {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 12px 17px 12px;
  border-color: transparent transparent #FFFFFF transparent;
  position: absolute;
  top: -17px;
  left: 50%;
}
.header__links-menu::after {
  content: '';
  width: 100%;
  height: 33px;
  background-color: transparent;
  position: absolute;
  top: -33px;
}
.header__links-menu a {
  color: #4d4d4d;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  width: max-content;
  text-transform: none;
}
.header__links-menu a::after {
  display: none;
}
.header__links-menu a:hover {
  color: #4d4d4d !important;
}
.header__links-menu__item {
  display: flex;
  align-items: start;
  column-gap: 15px;
}
.header__links-menu__item p {
  color: #4d4d4d;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  width: max-content;
  text-transform: none;
}
.header__links-menu__item img {
  width: 64px;
  height: 64px;
}
.header__links-menu__price {
  max-width: 350px;
  min-width: 350px;
  grid-template-columns: 1fr;
  left: -146px;
}
.header__links-menu__title {
  color: #ed1c24;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  cursor: default;
}
.header__links-menu__price img {
  width: 32px;
  height: 32px;
}
.header__links-menu__price p {
  font-weight: 300;
}
.header__links-menu__price .header__links-menu__item {
  align-items: center;
}
.header__links-menu__price .header__links-menu__item:hover p {
  color: #ed1c24;
}
.header__group {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 30px;
  min-width: 357px;
}
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.header__phone-item a {
  color: #ed1c24;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.header.fixed .header__phone-item a {
  font-weight: 500;
}
.header__cabinet {
  width: 30px;
  height: 30px;
}
.header__cabinet img {
  display: block;
  width: 100%;
  height: 100%;
}
.header__lang {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.header__lang-button {
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
}
.header.fixed .header__lang-button {
  color: #4d4d4d;
  font-weight: 400;
}
.header__links-menu__product .header__links-menu__item p {
  font-weight: 300;
  color: #000;
}
.header__links-menu__product .header__links-menu__item:hover p {
  color: #ed1c24;
}
@media( max-width: 1200px ) {
  .header__image {
    min-width: 300px;
  }
}
@media( max-width: 992px ) {
  .header {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    height: 64px;
  }
  .header__block {
    display: none;
  }
  .header__image {
    min-width: 1px;
    margin-bottom: 40px;
  }
  .header__links {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 40px;
    width: 100%;
    align-items: center;
  }
  .header__links-item {
    padding: 0;
    width: 100%;
    justify-content: center;
  }
  .header__group {
    min-width: 1px;
    flex-direction: column;
    row-gap: 20px;
  }
  .header__lang {
    column-gap: 20px;
  }
  .header__links-menu__product {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    left: 20px;
    right: 20px;
    z-index: 1;
    grid-template-columns: 1fr;
    max-height: 300px;
    overflow-y: auto;
    top: 22px;
  }
  .header__links-menu__product::-webkit-scrollbar {
    display: none;
  }
  .header__links-menu__price {
    left: 48%;
    transform: translateX(-50%);
  }
}
@media( max-width: 425px ) {
  .header__links-menu__product {
    padding: 10px;
  }
  .header__links-menu__price {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    min-width: 1px;
    left: initial;
    transform: none;
  }
  .header__links-menu__title {
    width: inherit;
  }
  .header__links-menu__price .header__links-menu__item {
    width: inherit;
  }
}
.burger__button {
  display: none;
  border: none;
  padding: 0;
  background-color: transparent;
  flex-direction: column;
  row-gap: 5px;
  cursor: pointer;
  margin-left: auto;
  margin-top: 15px;
}
@media( max-width: 992px ) {
  .burger__button {
    display: flex;
  }
}
.burger__button span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.burger__button:hover span:nth-child(1){
  transform: translateY(1px);
  transition: all 0.3s;
}
.burger__button:hover span:nth-child(3){
  transform: translateY(-1px);
  transition: all 0.3s;
}
.burger__button.open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
  transition: all 0.3s;
}
.burger__button.open span:nth-child(2){
  opacity: 0;
  transition: all 0.3s;
}
.burger__button.open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
  transition: all 0.3s;
}
.burger {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 100px 0;
  display: none;
  z-index: -1;
  background-color: black;
  overflow-y: auto;
}
.burger::-webkit-scrollbar {
  display: none;
}
@media( max-width: 576px ) {
  .burger {
    padding: 50px 0;
  }
}
.burger.active {
  display: block;
  z-index: 9999;
}
.burger__button-close {
  width: 34px;
  height: 34px;
  display: none;
}
.burger__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main {
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  cursor: default;
}
.main__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.main__slider-cover {
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.main__slider-item {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  -webkit-transition: opacity 3s,-webkit-transform 8s;
  transition: opacity 3s,-webkit-transform 8s;
  -o-transition: opacity 3s,transform 8s;
  transition: opacity 3s,transform 8s;
  transition: opacity 3s,transform 8s,-webkit-transform 8s;
}
.main__slider-item:nth-child(1) {
  background-image: url('../../zhd/image/img/zavod_XCM_02_1680x90.png');
}

.main__slider-item:nth-child(2) {
  background-image: url('../../zhd/image/img/zavod_XCM_03_1680x90.png');
}

.main__slider-item:nth-child(3) {
  background-image: url('../../zhd/image/img/zavod_XCM_09_1680x90.png');
}

.main__slider-item:nth-child(4) {
  background-image: url('../../zhd/image/img/zavod_XCM_10_1680x90.png');
}

.main__slider-item:nth-child(5) {
  background-image: url('../../zhd/image/img/zavod_XCM_11_1680x90.png');
}

.main__slider-item:nth-child(6) {
  background-image: url('../../zhd/image/img/zavod_XCM_12_1680x90.png');
}
.main__slider-item.slide__scale {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.main__slider-item.slide__opacity:first-child {
  opacity: 1
}
@media( max-width: 1200px ) {
  .main {
    min-height: 580px;
  }
}
@media( max-width: 768px ) {
  .main {
    min-height: 600px;
  }
}
.main__text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 72px 0;
}
.main__text-name {
  color: #ed1c24;
  font-size: 26px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px;
  line-height: 40px;
}
.main__text-subname {
  color: #cccccc;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 84px;
}
.main__text-title {
  color: #ffffff;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.80);
  letter-spacing: .5px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-align: center;
  font-size: 72px;
  line-height: 1.17;
  margin-bottom: 38px;
}
.main__text-subtitle {
  color: #f5f5f5;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.80);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.main__arrow {
  position: absolute;
  bottom: 40px;
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: center;
}
.main__arrow a {
  animation: arrowDown 1.7s infinite ease; 
  cursor: pointer;
}
.main__arrow a:hover {
  opacity: 0.7;
}
.main__arrow svg {
  fill: #fff;
}
@keyframes arrowDown {
  0%,to {
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0)
  }

  50%,55% {
      -moz-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
      -webkit-transform: translateY(-7px);
      -o-transform: translateY(-7px);
      transform: translateY(-7px)
  }
}
@media( max-width: 768px ) {
  .main__text-title {
    font-size: 60px;
  }
}
@media( max-width: 576px ) {
  .main__text {
    padding-top: 0;
  }
  .main__text-title {
    font-size: 32px;
  }
  .main__text-subtitle {
    font-size: 14px;
  }
}
.ourProduct {
  padding: 60px 0;
}
.ourProduct__block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 3fr));
  gap: 90px 40px;
  margin-top: 30px;
}
.ourProduct__block-item__image {
  display: block;
  width: 100%;
  max-height: 340px;
  margin-bottom: 20px;
}
.ourProduct__block-item__title {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  color: #4d4d4d;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  margin-bottom: 8px;
}
.ourProduct__block-item__title span {
  color: #ed1c24;
}
.ourProduct__block-item__subtitle {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #4d4d4d;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'TildaSans';
}
.ourProduct__block-item__button {
  display: block;
  margin: 0px auto;
  font-family: 'Oswald', sans-serif;
  color: #ed1c24;
  border: 1px solid #ed1c24;
  font-weight: 400;
  font-size: 14px;
  height: 45px;
  padding: 0px 30px;
  text-transform: uppercase;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.ourProduct__block-item__button:hover {
  color: #fff;
  background-color: #ed1c24;
  transition: all 0.2s ease-in-out;
}
@media( max-width: 992px ) {
  .ourProduct__block {
    row-gap: 60px;
  }
}
.nav-tabs>li>a{
    font-weight: 500;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4d4d4d;
    font-size: 19px;
}


.aboutUs {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.aboutUs__text {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: #4d4d4d;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.aboutUs__text:last-of-type {
  margin-bottom: 80px;
}
.aboutUs__block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 3fr));
  gap: 40px;
  margin-bottom: 120px;
}
.aboutUs__block-item {
  display: block;
  width: 100%;
}
.aboutUs__link {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 0;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  background-color: #ed1c24;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  width: 250px;
  transition: all 0.2s ease-in-out;
}
.well .aboutUs__link {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  background-color: #ed1c24;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  width: 150px;
  transition: all 0.2s ease-in-out;
  border: none;
}

.aboutUs__link:hover {
  color: #ffffff;
  background-color: #4d4d4d;
  transition: all 0.2s ease-in-out;
}
.well  .aboutUs__link:hover {
  background-color: #4d4d4d;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

@media( max-width: 768px ) {
  .aboutUs__block {
    row-gap: 20px;
  }
}
.certificate {
  padding: 60px 0;
}
.certificate__title {
  padding: 0px 20px;
}
.certificate__subtitle {
  padding: 0px 20px;
}
.certificate__block {
  position: relative;
}
.certificate__slider {
  height: 500px;
  position: relative;
}
.certificate__slider .owl-stage-outer {
  height: 100%;
}
.certificate__slider .owl-stage {
  height: 100%;
}
.certificate__slider .owl-item {
  height: 100%;
}
.certificate__slider-item {
  height: 100%;
  display: flex;
  justify-content: center;
  cursor: zoom-in;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.certificate__slider-item img {
  display: block;
  width: 100%;
  height: 100%;
}
.certificate__slider-nav {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 33%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.certificate__slider-nav::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  z-index: -1;
  opacity: 0.5;
}
.certificate__slider-prev {
  left: 0;
  justify-content: end;
}
.certificate__slider-next {
  right: 0;
  justify-content: start;
}
.certificate__slider-nav svg {
  width: 39px;
  height: 39px;
  padding: 11px 15px;
  background-color: #ccc;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.certificate__slider-nav:hover svg {
  background-color: #ed1c24;
  stroke: #fff;
  transition: all 0.2s ease-in-out;
}
.certificate__slider-nav:hover svg polyline{
  stroke: #fff;
  transition: all 0.2s ease-in-out;
}
.certificate__slider .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 25px;
}
.certificate__slider .owl-dot {
  width: 8px;
  height: 8px;
  background-color: #cccccc !important;
  border-radius: 50%;  
  transition: all 0.2s ease-in-out;
}
.certificate__slider .owl-dot.active {
  background-color: #ed1c24 !important;  
}
.certificate__slider .owl-dot:hover {
  background-color: #ed1c24 !important;  
  transition: all 0.2s ease-in-out;
}
.certificate__slider-zoom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  background-color: rgb(255, 255, 255);
}
.certificate__slider-zoom.active {
  opacity: 1;
  z-index: 999;
}
.certificate__slider-zoom__inner {
  position: absolute;
  top: 15px;
  bottom: 15px;
  overflow: hidden;
}
.certificate__slider-zoom__inner .owl-stage-outer {
  height: 100%;
}
.certificate__slider-zoom__inner .owl-stage {
  height: 100%;
}
.certificate__slider-zoom__inner .owl-item {
  height: 100%;
}
.certificate__slider-zoom__item {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.certificate__slider-zoom__item img {
  display: block;
  width: 100%;
  max-width: 360px;
  max-height: 500px;
}
.certificate__slider-zoom__close {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.certificate__slider-zoom__close:hover {
  opacity: 0.7;
}
.certificate__slider-zoom__nav {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 50px;
  bottom: 50px;
  width: 15%;
  z-index: 1;
  display: flex;
  align-items: center;
  transition: opacity ease-in-out .3s;
}
.certificate__slider-zoom__nav:hover {
  opacity: 0.6;
  transition: opacity ease-in-out .3s;
}
.certificate__slider-zoom__prev {
  padding-left: 25px;
}
.certificate__slider-zoom__next {
  right: 0;
  justify-content: end;
  padding-right: 25px;
}
.certificate__slider-zoom__arrow {
  width: 18px;
  height: 18px;
}
.certificate__slider-zoom__prev .certificate__slider-zoom__arrow {
  border-left: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.certificate__slider-zoom__next .certificate__slider-zoom__arrow {
  border-top: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media ( max-width: 1200px ) {
  .certificate__slider-nav {
    width: 30%;
  }
  .certificate__slider .owl-stage {
    display: flex;
  }
  .certificate__slider .owl-item:first-child {
    order: 1;
  }
}
@media ( max-width: 992px ) {
  .certificate__slider-nav {
    width: 12%;
  }
  .certificate__slider-prev {
    left: 20px;
    justify-content: start;
  }
  .certificate__slider-next {
    right: 20px;
    justify-content: end;
  }
  .certificate__slider-item {
    min-width: 300px;
  }
}
@media ( max-width: 576px ) {
  .certificate__slider-nav {
    width: 25px;
  }
  .certificate__slider-nav svg {
    width: 25px;
    height: 24px;
    padding: 5px 8px
  }
  .certificate__slider-item {
    min-width: 1px;
    padding: 0px 50px;
  }
  .certificate__slider .owl-item {
    min-width: 1px;
  }
  .certificate__slider {
    height: 400px;
  }
}
@media ( max-width: 450px ) {
  .certificate__slider {
    height: 350px;
  }
  .certificate__slider-zoom__item {
    padding: 0px 25px;
  }
  .certificate__slider-zoom__prev {
    padding-left: 15px;
  }
  .certificate__slider-zoom__next {
    padding-right: 15px;
  }
  .certificate__slider-zoom__arrow {
    width: 13px;
    height: 13px;
  }
}
.partners {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.partners__block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 20px;
  gap: 20px 80px;
}
.partners__block-item {
  display: flex;
  align-items: center;
  height: 160px;
}
.partners__block-item img {
  display: block;
  width: 100%;
}
@media( max-width: 768px ) {
  .partners__block {
    row-gap: 0px;
  }
}
.whyUs {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.whyUs__block {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 2fr));
  gap: 90px 60px;
}
.whyUs__block-item {
  display: flex;
  align-items: start;
  column-gap: 30px;
}
@media ( max-width: 768px) {
  .whyUs__block {
    row-gap: 40px;
  }
}
@media ( max-width: 576px) {
  .whyUs__block {
    grid-template-columns: 1fr;
  }
  .whyUs__block-item {
    flex-direction: column-reverse;
    row-gap: 20px;
    align-items: center;
  }
}
.whyUs__block-title {
  color: #4d4d4d;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 25px;
}
.whyUs__block-title span {
  color: #ed1c24;
}
.whyUs__block-subtitle {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #4d4d4d;
}
.whyUs__block-image {
  display: block;
  max-width: 100px;
}
@media ( max-width: 1200px) {
  .whyUs__block-subtitle {
    font-size: 12px;
  }
}
@media ( max-width: 576px) {
  .whyUs__block-subtitle {
    font-size: 10px;
  }
}
.help {
  padding: 90px 0;
  /* background-color: #f5f5f5; */
}
.help__block {
  display: flex;
  column-gap: 40px;
}
.help__title {
  max-width: 360px;
  text-align: left;
}
.help__contacts {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
  align-items: flex-start;
}
.help__contacts-title {
  font-size: 26px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  line-height: 1.55;
  color: #4d4d4d;
}
.help__contacts-link {
  font-size: 26px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  line-height: 1.55;
  color: #ed1c24;
}
.help__contacts-label {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Oswald', sans-serif;
  line-height: 1.55;
  color: #4d4d4d;
  margin: 5px 0;
}
@media ( max-width: 992px) {
  .help__contacts {
    padding-left: 0px;
  }
}
@media ( max-width: 768px) {
  .help__block {
    flex-direction: column;
  }
}
.footer {
  background-color: #4d4d4d;
  padding: 30px 0;
}
.footer__block {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.footer__group img {
  display: block;
  width: 150px;
  margin-bottom: 40px;
}
.footer__group p {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 1.55;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}
.footer__nav {
  display: flex;
  align-items: start;
  column-gap: 40px;
}
.footer__nav-item {
  max-width: 160px;
  width: 160px;
}
.footer__nav-title {
  color: #ed1c24;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.35;
  font-family: 'Oswald' ,sans-serif;
  font-weight: 500;
  margin-bottom: 14px;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer__nav-list__item a {
  color: #f5f5f5;
  font-size: 14px;
  line-height: 1.55;
  font-family: 'Oswald' ,sans-serif;
  font-weight: 100;
}
@media ( max-width: 768px) {
  .footer__block {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media ( max-width: 475px) {
  .footer__nav {
    flex-direction: column;
    row-gap: 20px;
  }
}
#scrollTopButton {
  display: none;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 100;
  border: none; 
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
@media ( max-width: 475px) {
  #scrollTopButton {
    right: 10px;
    left: initial;
  }
}
.cart-fix{
  position: fixed;
  z-index: 997;
  background-color: rgba(255,255,255,.8);
  right: 50px;
  top: 100px;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
  will-change: transform;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out,-webkit-transform 0.2s ease-in-out;
  
}
.cart-fix.hidden {
  display: none;
}


#cart-total{
  min-width: 30px;
    width: initial;
    height: 30px;
    z-index: 9999;
    padding: 0 5px;
    background-color: red;
    color: #fff;
    border-radius: 30px;
    position: fixed;
    right: -3px;
    bottom: -3px;
    text-align: center;
    line-height: 30px;
}
.cart-fix button{
    border: none;
    background: none;
    padding: 0;
}
.cart-fix button svg {
  stroke: #000;
  width: 80px;
  height: 80px;
  padding: 18px 20px 22px;
}
@media ( max-width: 576px) {
  .cart-fix {
    right: 10px;
    width: 60px;
    height: 60px;
  }
  .cart-fix button[type="button btn-cart-fix"] {
    padding: 10px 13px;
  }
  .cart-fix button[type="button btn-cart-fix"] svg {
    width: 33px;
    height: 34px;
    padding: 0;
  }
  #cart-total {
    right: -4px;
    bottom: -6px;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
  }
}
.btn-primary{
  color: #ffffff;
    font-family: 'Oswald', sans-serif;
    background-color: #ed1c24 !important;
}
#search .input-lg{
  height: 30px !important;
}
#search .btn-lg{
  padding: 5px 15px !important;
}

.swiper-viewport .swiper-button-next{
    opacity: 0.7 !important;
    right: 10px !important;
}
.swiper-viewport .swiper-button-prev{
  opacity: 0.7 !important;
  left: 10px !important;
}
.swiper-pagination{
  bottom: 0px !important;
}

#product-product{
  margin-top: 100px;
}

#input-quantity{
border: none;
box-shadow: none;
}
body.hidden{
  display: block !important;
}

#account-login{
  margin-top: 100px;
}

.breadcrumb{
  display: none;
}
.simple-content{
  margin-top: 100px !important;
}
.custom-header-style{
        background-color: #4d4d4d;
}
.hide__block {
  display: none;
}
.center__block {
  float: none;
  margin: 0px auto;
}
.product-category__block {
  display: flex;
  column-gap: 40px;
}
.product-category__block-item {
  width: 25%;
}
#product-search{
    margin-top: 100px;
}
button.active.header__lang-button {
  color: red !important;
}
.tabs {
  cursor: pointer;
  padding: 10px;
  margin: 5px;
  border: 1px solid #ccc;
  display: inline-block;
}

dd {
  border: 1px solid #ccc;
  padding: 10px;
  display: none;
}
header ul, 
header ol {
  list-style: none !important;
  padding: 0 !important;
}
footer ul,
footer ol {
  list-style: none !important;
  padding: 0 !important;
}
table.v2-our-partners td {
  padding: 0;
}
#boc_message {
  resize: none;
}
#boc_submit {
  border: none;
  box-shadow: none;
  border-radius: 0px;
  transition: all 0.2s ease-in-out;
}
#boc_submit:hover {
  background-color: #4d4d4d !important;
  transition: all 0.2s ease-in-out;
}

.greeting {
  background-color: rgba(0,0,0,.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: block;
}
.greeting__block {
  background: #fff;
  margin: 0 auto;
  width: 760px;
  max-width: calc(100% - 40px);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 40px 45px;
}
.greeting__close {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: transparent;
  padding: 0;
  outline: none;
  border: none;
  cursor: pointer;
  width: 23px;
  height: 23px;
}
.greeting__uptitle {
  font-weight: 400;
  font-size: 10px;
  color: #4d4d4d;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  text-align: center;
}
.greeting__title {
  font-weight: 500;
  font-family: 'Oswald';
  font-size: 30px;
  line-height: 1.17;
  color: #ed1c24;
  margin-bottom: 17px;
  text-align: center;
}
.greeting__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: #4d4d4d;
  margin-bottom: 16px;
  text-align: center;
}
.greeting__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
.greeting__buttons-item {
  outline: none;
  cursor: pointer;
  font-family: Oswald;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  width: 120px;
  height: 52px;
}
.greeting__buttons-item__ua {
  color: #fce11d;
  background-color: #3886fa;
  border: none;
}
.greeting__buttons-item__ru {
  color: #868686;
  background-color: #fff;
  border: 1px solid #868686;
}
@media ( max-width: 1200px) {
  .greeting__block {
    width: 620px;
  }
  .greeting__title {
    font-size: 28px;
  }
}
@media ( max-width: 992px) {
  .greeting__block {
    padding: 30px;
  }
}
@media ( max-width: 768px) {
  .greeting__block {
    padding: 20px;
  }
  .greeting__uptitle {
    margin-bottom: 6px;
  }
  .greeting__title {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .greeting__buttons-item {
    width: 96px;
    height: 44px;
    font-size: 12px;
  }
}
.greeting__block > * {
  text-align: center;
  margin-bottom: 1rem;
}

.has-warning .input-group-addon {
  color: #555;
  background-color: #eee;
  border-color: #ccc;
}
.has-warning.has-error .form-control {
  border-color: #a94442;
}
.has-warning.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-warning .form-control {
  border-color: #ccc;
}
.has-warning .form-control:focus {
  border-color: #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}
#agreement_checkbox label {
  font-size: 14px;
}
.simplecheckout-cart th {
  vertical-align: middle;
}
a.thumbnail:hover {
  border-color: #ccc; 
}
.promotion__info {
  font-size: 22px;
  line-height: 1.55;
  font-family: 'Oswald',Arial,sans-serif;
  font-weight: 400;
  color: #4d4d4d;
  background: #f5f5f5;
  padding: 30px 20px 28px 55px;
  position: relative;
  text-align: left;
  max-width: 760px;
  width: 100%;
  margin: 60px auto;
}
.promotion__info::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' role='img' x='0px' y='0px' width='24px' height='24px' viewBox='0 0 24 24' style='enable-background:new 0 0 24 24;'%3E%3Ccircle style='fill:%23ff0000;' cx='12.125' cy='12.125' r='12'%3E%3C/circle%3E%3Cg%3E%3Cpath style='fill: %23fff;' d='M10.922,6.486c0-0.728,0.406-1.091,1.217-1.091s1.215,0.363,1.215,1.091c0,0.347-0.102,0.617-0.304,0.81%0Ac-0.202,0.193-0.507,0.289-0.911,0.289C11.328,7.585,10.922,7.219,10.922,6.486z M13.252,17.792h-2.234V9.604h2.234V17.792z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: 20px;
}
.simplecheckout-cart .quantity .input-group-btn button {
  max-width: 34px;
}
.simplecheckout-cart .quantity .input-group-btn button.btn.btn-danger {
  padding: 7.5px 10px;
}
.simplecheckout-cart .quantity .input-group-btn input {
  min-width: 46px;
  padding: 6px 10px;
}