@charset "UTF-8";
/*
Theme Name: autolive
Theme URI:  http://web-dev.org.ua/
Description: autolive
Author: autolive
Author URI:  http://web-dev.org.ua/
Version: 0.0.1
*/

@font-face {
  font-family: 'Exo2-Regular';
  src: url('fonts/Exo2-Regular.otf');
}
@font-face {
  font-family: 'Exo2-Bold';
  src: url('fonts/Exo2-Bold.otf');
}
@font-face {
  font-family: 'Exo2-Medium';
  src: url('fonts/Exo2-Medium.otf');
}
body {
  font-family: 'Exo2-Regular', sans-serif;
  font-size: 16px;
  padding-top: 120px;
  color: #212529;
}

#wpadminbar {
  display: none;
}

.container {
  padding: 0 12px;
  margin: 0 auto;
  max-width: 1320px;
  width: 100%;
}

.search-title {
  margin: 35px 0 60px 0;
}
.search-item {
  margin-bottom: 25px;
}

/* -------------------------------- BASE -------------------------------- */

.main-title {
  font-family: 'Exo2-Bold';
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 32px;
  position: relative;
  padding-left: 20px;
  line-height: 46px;
}
.main-title:after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: #c10c0c;
}
section.section {
  margin-bottom: 96px;
}
.modal-header .close {
  border: none;
  background-color: transparent;
}

.form-group p {
  margin: 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group-default p {
  display: flex;
  align-items: center;
  margin: 0;
}

.form-group label {
  font-family: 'Exo2-Bold';
  margin-bottom: 4px;
  font-size: 16px;
}

a:hover {
  color: #17a2b8;
}

.btn-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info-white {
  color: #fff;
}
.btn-info-white:hover {
  color: #fff;
}

/* -------------------------------- END BASE -------------------------------- */

/* -------------------------------- HEADER -------------------------------- */

.header {
  padding-top: 30px;
  padding-bottom: 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  transition: all 0.3s ease;
}
.header__logo {
  width: 100%;
  height: 100px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  max-width: 100%;
}
.header__head {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .header__logo {
  height: 60px;
}
.header .header__head-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 24px;
}
.header .header__head {
  flex: 1;
}
.header .main-menu {
  width: auto;
}

.form-search-header__input {
  height: 50px;
}

.header__btn {
  display: flex;
  align-items: center;
  height: 50px;
  white-space: nowrap;
}
.header__btn svg {
  display: flex;
  margin-right: 8px;
  fill: #000;
}
.header__btn:hover svg {
  fill: #fff;
}

/*
***** main-menu
*/
.main-menu {
  width: 100%;
  height: 60px;
  z-index: 100;
}
.main-menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.main-menu__menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
}
.main-menu__menu li:not(:last-child) {
  margin-right: 25px;
}
.main-menu__menu li a {
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  /* padding-right: 15px; */
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(
    to bottom,
    transparent 20%,
    currentColor 21%
  );
  background-position: 0 25px;
  background-repeat: no-repeat;
  background-size: 0 2px;
  text-transform: uppercase;
  display: block;

  transition: background-size 0.5s ease-in-out 0.2s;
}
.main-menu__menu li:hover > a {
  color: #c10c0c;
  background-size: 100% 2px;
  transition-delay: 0s;
}
.main-menu__menu .menu-item.menu-item-has-children:hover:after {
  border-right: 2px solid#c10c0c;
  border-bottom: 2px solid #c10c0c;
}
.main-menu__mobile {
  align-items: center;
  display: none;
  width: 36px;
  cursor: pointer;
}
.main-menu__mobile i {
  font-size: 36px;
}
.main-menu__menu .menu-item {
  position: relative;
}
.main-menu__menu .menu-item.current-menu-item a {
  color: #c10c0c;
}
.main-menu__menu .sub-menu {
  visibility: hidden;
  z-index: 9999;
  width: 280px;
  border-top: 3px solid #c10c0c;
  opacity: 0;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: absolute;
  padding: 20px 0;
  top: 62px;
}
.main-menu__menu .sub-menu li {
  margin: 0;
  padding: 10px 20px;
}
.main-menu__menu .sub-menu li a {
  padding: 0;
}
.main-menu__menu .sub-menu.show {
  visibility: visible;
  opacity: 1;
  display: block;
}
.form-search-header {
  display: flex;
  width: 100%;
}

.form-search-header .btn-outline-dark {
  border: 1px solid #ced4da;
}
.form-search-header .btn-outline-dark:hover {
  background-color: transparent;
}

/* mobile-main-menu */
.mobile-main-menu {
  position: fixed;
  width: 100%;
  height: calc(100% - 100px);
  left: 0;
  top: 75px;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 0 44px -15px rgba(0, 0, 0, 0.25);
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  padding: 30px 12px;
}

.mobile-main-menu__menu {
  padding: 0;
}
.mobile-main-menu__menu > li {
  position: relative;
  border-bottom: 1px solid #4d4d4d;
  padding: 20px 0;
}
.mobile-main-menu__menu li a {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 30px;
  text-decoration: none;
}
.mobile-main-menu__menu li .sub-menu {
  display: none;
}
.mobile-main-menu__menu li.menu-item-has-children:after {
  content: '';
  top: 27px;
  right: 10px;
  border-right: 2px solid#4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  height: 9px;
  width: 9px;
  position: absolute;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mobile-main-menu__menu li.menu-item-has-children.open:after {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -o-transform: rotate(2255deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.mobile-main-menu__menu li.menu-item-has-children.open > a {
  font-weight: 700;
  font-size: 20px;
}
.mobile-main-menu__menu .sub-menu li {
  padding: 10px 0;
}
.mobile-main-menu.active {
  transform: translateX(0);
}

/* breadcrumbs */
.breadcrumbs {
  margin: 25px 0 35px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}
.breadcrumbs__item {
  margin-right: 20px;
  position: relative;
  font-size: 18px;
}
.breadcrumbs__item.active {
  color: #c7c7c7;
}
.breadcrumbs__item a {
  color: #222;
}
.breadcrumbs__item:after {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #c10c0c;
  top: 50%;
  transform: translateY(-50%);
  right: -11px;
}

/* header-image */
.header-image {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 780px;
  position: relative;
  background-position: center;
  margin-bottom: 50px;
}
.header-image.header-image--center .header-image__img {
  width: auto;
}
.header-image__helper {
  height: 100%;
}
.header-image.header-image--center .col {
  align-items: center;
  text-align: center;
}
.header-image .col {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.header-image__img {
  position: relative;
  z-index: 1;
  transform: scale(0.8);
  transition: all 0.8s ease 0s;
  opacity: 0;
}
.header-image__img.header-image__img--logo {
  max-width: 95%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 15%;
}
.header-image:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
}
.header-image__header {
  font-family: 'Exo2-Bold', sans-serif;
  font-size: 66px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  line-height: 74px;
  transform: translate(0px, -40px);
  transition: all 0.8s ease 0s;
  opacity: 0;
}
.header-image__text {
  font-family: 'Exo2-Medium', sans-serif;
  font-size: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  width: 60%;
  transform: translate(0px, -30px);
  transition: all 0.8s ease 0s;
  opacity: 0;
}
.header-image__button {
  position: relative;
  z-index: 1;
  transition: all 0.8s ease 0s;
  opacity: 0;
  transform: translate(0px, -20px);
}

.header-image-slider .owl-dots {
  margin-top: 0 !important;
}
.header-image-slider .owl-dots button.owl-dot {
  cursor: pointer;
}
.header-image-slider .owl-dots button.owl-dot span {
  width: 48px;
  height: 6px;
  background-color: #4d4d4d;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.25s ease;
}

.header-image-slider .owl-dots button.owl-dot.active span {
  background-color: #c10c0c;
}

.owl-item.active .header-image__img {
  transition: all 0.8s ease 0.2s;
  transform: scale(1);
  opacity: 1;
}
.owl-item.active .header-image__header {
  transition: all 0.8s ease 0.6s;
  transform: translate(0px, 0px);
  opacity: 1;
}

.owl-item.active .header-image__text {
  opacity: 1;
  transition: all 0.8s ease 0.8s;
  transform: translate(0px, 0px);
}

.owl-item.active .header-image__button {
  opacity: 1;
  transition: all 0.8s ease 1.2s;
  transform: translate(0px, 0px);
}

/* -------------------------------- END HEADER -------------------------------- */

/* -------------------------------- INDEX ------------------------------- */

/* product-categories */
.product-categories__img {
  height: 150px;
  border-radius: 16px;
  border: 1px solid #dbdbdb;
  margin-bottom: 10px;
  background-position: center;
  background-size: cover;
}
.product-categories__img img {
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 15px;
}
.product-categories__name {
  margin-bottom: 40px;
  line-height: 24px;
  text-align: center;
}
.product-categories__name a {
  font-family: 'Exo2-Bold';
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  color: #222;
}

/* new-product */
.new-product {
  background-color: #f7f7f7;
  padding: 50px 0 80px 0;
}
.new-product__item a {
  text-align: center;
  text-decoration: none;
}
.new-product__item-image {
  width: 350px;
  height: 350px;
  border: 2px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 10px;
}
.new-product__item-image img {
  max-width: 80%;
  max-height: 80%;
  width: auto !important;
  height: auto;
}
.new-product__item-title {
  font-size: 18px;
  color: #222;
}

.new-product__slider .owl-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product__slider .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  margin: 0 10px;
  outline: none;
}
.new-product__slider .owl-dots .owl-dot.active {
  border: 5px solid #17a2b8;
}

/* bestsellers */
.bestsellers__item {
  margin-bottom: 35px;
}
.bestsellers__item-image {
  border: 2px solid #eee;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  height: 314px;
  border-radius: 16px;
}
.bestsellers__item-image img {
  max-width: 100%;
  max-height: 100%;
}
.bestsellers__item-name {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bestsellers__item-button {
  width: 100%;
  text-align: center;
}
.bestsellers-title-filter {
  font-size: 32px;
  line-height: 1;
  color: #222;
  margin-bottom: 25px;
}

/* brand */
.brand__title {
  font-family: 'Exo2-Bold';
  font-weight: 700;
  font-size: 34px;
  line-height: 41px;
  margin-bottom: 30px;
  text-transform: uppercase;
  padding-left: 26px;
  position: relative;
}
.brand__title:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  height: calc(100% - 12px);
  width: 4px;
  background: #c10c0c;
}

.brand__item {
  min-height: 280px;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 25px 25px;
  border-right: 5px solid #c10c0c;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.brand__item:hover {
  transform: translateY(-10px);
}
.brand__item-title {
  font-family: 'Exo2-Bold';
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 32px;
}
.brand__item-icon {
  margin-bottom: 15px;
}
.brand__item-description p {
  font-weight: 700;
  font-family: 'Exo2-Bold';
  margin-bottom: 5px;
}

/* where-buy */
.where-buy__description {
  font-size: 16px;
  margin-bottom: 40px;
}
.where-buy__items {
  display: flex;
  margin-bottom: 50px;
  background-image: url(/wp-content/themes/autolive/images/where-buy-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 31.5%;
}

.where-buy__partner {
  background-color: #f7f7f7;
  padding: 24px 24px 24px 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.where-buy__partner-text {
  font-size: 28px;
}
.where-buy__partner-button {
  white-space: nowrap;
  background-color: #c10c0ced;
  border-color: #c10c0ced;
}

/* main-news */
.main-news-wrap {
  display: flex;
  align-items: center;
  gap: 96px;
  margin-bottom: 32px;
}
.main-news-wrap .main-title {
  margin: 0;
}
.main-news__link {
  font-family: 'Exo2-Medium';
  text-decoration: underline;
  font-size: 28px;
  line-height: 28px;
  color: #4d4d4d;
}
.main-news__item-bg {
  width: 100%;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px 8px 0 0;
}
.main-news__items {
  position: relative;
}
.main-news__item {
  background-color: #f7f7f7;
}
.main-news__item img {
  border-radius: 8px 8px 0 0;
}
.main-news__item-image img {
  max-width: 100%;
}
.main-news__item-wrap {
  padding: 16px;
}
.main-news__item-view {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-news__item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.main-news__item-title {
  margin-bottom: 15px;
  font-family: 'Exo2-Bold';
  font-size: 18px;
}
.main-news__item-desc {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 15px;
}
.main-news__item-more {
  display: flex;
  align-items: center;
  font-family: 'Exo2-Bold';
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  color: #212529;
  text-decoration: none;
}
.main-news__item-more svg {
  transition: all 0.3s ease;
}
.main-news__item-more:hover svg {
  transform: translateX(10px);
}
.main-news__items .owl-nav {
  position: absolute;
  right: 0;
  top: -55px;
}
.main-news__items .owl-nav span {
  font-size: 44px;
  padding: 0 10px;
  line-height: 34px;
}

/* -------------------------------- END INDEX -------------------------------- */

/* footer */
.footer {
  background: #333;
  padding: 40px 0;
  width: 100%;
}
.footer__logo {
  margin-bottom: 16px;
  display: block;
}
.footer__logo img {
  max-width: 70%;
}
.footer__title {
  font-family: 'Exo2-Bold', sans-serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 2px solid #c10c0c;
  padding-bottom: 10px;
}
.footer__text {
  font-family: 'Exo2-Regular', sans-serif;
  color: #ccc;
  font-size: 16px;
  padding-right: 26px;
}
.footer__menu {
  padding: 0;
}
.footer__menu li {
  margin-bottom: 10px;
}
.footer__menu li a {
  font-family: 'Exo2-Medium', sans-serif;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.footer__contact {
  position: relative;
  line-height: 24px;
  margin-bottom: 24px;
  color: #fff;
  display: flex;
}
.footer__contact i {
  position: relative;
  top: 5px;
}
.footer__contact a {
  color: #fff;
}
.footer__contact-text {
  margin-left: 10px;
}
.footer__copyrights {
  text-align: center;
  color: #fff;
  margin-top: 12px;
}

/* category-post-item */
.category__text {
  padding-bottom: 25px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 40px;
}
.category__text ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.category__text ul li {
  font-size: 16px;
  line-height: 1.6;
}
.category__text img {
  max-width: 100%;
  height: 100%;
}

.main-header-custom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 5;
  width: 100%;
  background-size: cover !important;
  background-position: center;
  background-color: #eee;
  height: 280px;
  /* margin-bottom: 50px; */
}
.main-header-custom:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.main-header-custom__title {
  font-family: 'Exo2-Bold', sans-serif;
  position: relative;
  color: #fff;
  z-index: 5;
  text-align: center;
  font-size: 68px;
}

/* post style */
.post-main-title {
  margin-bottom: 16px;
  font-family: 'Exo2-Bold', sans-serif;
}
.post-main-title a {
  color: #212529;
}
.post-title {
  text-transform: uppercase;
  font-size: 18px;
  font-family: 'Exo2-Bold', sans-serif;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.post-title:after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #c10c0c;
}
.post-image {
  text-align: center;
  border: 2px solid #ddd;
  padding: 25px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 12px;
}
.post-buy {
  margin-bottom: 24px;
}
.post-capacity {
  margin-bottom: 24px;
}
.post-capacity__items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.post-capacity__item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  color: #212529;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.post-capacity__item:hover {
  border-color: #212529;
  color: #17a2b8 !important;
}
.post-capacity__item.active {
  border-color: #212529;
}
.post-article {
  font-family: 'Exo2-Medium', sans-serif;
  font-size: 16px;
  margin-bottom: 24px;
}
.post-article span {
  color: #ccc;
}
.post-meets-requirements {
  margin-bottom: 30px;
}
.post-desc {
  margin-bottom: 96px;
}
.post-image-slider {
  text-align: center;
  border: 2px solid #ddd;
  padding: 25px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 12px;
}
.post-image a,
.post-image img {
  outline: none;
}
.post-image img {
  transition: all 0.4s ease-in-out;
}
.post-image:hover img {
  transform: scale(1.05);
}
.post-pdf {
  margin-bottom: 40px;
}
.post-image-slider .owl-nav button {
  position: absolute;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  border: 0;
  background: 0;
  text-indent: -9999px;
  outline: none;
  width: 25px;
  height: 25px;
}
.post-image-slider .owl-nav .owl-prev {
  left: 0;
}
.post-image-slider .owl-nav .owl-next {
  right: 0;
}
.post-image-slider .owl-nav .owl-prev span {
  display: block;
  border-right: 2px solid #353535;
  border-bottom: 2px solid #353535;
  transform: rotate(135deg);
  height: 14px;
  width: 14px;
  left: 7px;
  position: relative;
}
.post-image-slider .owl-nav .owl-next span {
  display: block;
  border-right: 2px solid #353535;
  border-bottom: 2px solid #353535;
  transform: rotate(-45deg);
  height: 14px;
  width: 14px;
}
.post-image-slider .owl-nav .owl-next.disabled span,
.post-image-slider .owl-nav .owl-prev.disabled span {
  border-right: 2px solid gray;
  border-bottom: 2px solid gray;
  cursor: default;
}
.post-image-slider .owl-carousel .owl-item,
.post-image-slider .owl-carousel .owl-stage,
.post-image-slider .owl-carousel .owl-stage-outer {
  height: 100%;
}
.post-image-slider .owl-carousel .owl-item img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}
.post-image__slider {
  height: 350px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-image__slider-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.post-tag {
  font-family: 'Exo2-Medium', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
}

/* -------------------------------- PAGE STYLES -------------------------------- */
.page-header {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  width: 85.5%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 152px;
  margin: 0 auto 50px;
  text-align: center;
}
.page-header img {
  max-width: 100%;
  border-radius: 8px;
}
/* -------------------------------- END PAGE STYLES -------------------------------- */

/* -------------------------------- CONTACT PAGE -------------------------------- */
.contact-page {
  padding-top: 70px;
}
.contact-page__title {
  font-family: 'Exo2-Bold', sans-serif;
  font-size: 68px;
  color: #222;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.contact-page__description {
  font-family: 'Exo2-Medium', sans-serif;
  font-size: 20px;
  color: #222;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  width: 100%;
}
.contact-page__item {
  min-height: 210px;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 25px;
  border-right: 5px solid #c10c0c;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.contact-page__item-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-page__item-city {
  font-family: 'Exo2-Bold', sans-serif;
  font-size: 22px;
  margin-bottom: 0;
  line-height: 26px;
}
.contact-page__item-city span {
  font-size: 28px;
}
/* -------------------------------- END CONTACT PAGE -------------------------------- */

/* -------------------------------- CATALOG PAGE ------------------------------- */
.catalog-menu {
  padding: 0;
}
.catalog-menu__item {
  margin-bottom: 64px;
  border: 1px solid #4d4d4d;
  border-radius: 12px;
  padding: 24px;
}
.catalog-menu__item a:hover {
  color: #17a2b8 !important;
}
.catalog-menu__item > a {
  font-size: 36px;
  margin-bottom: 32px;
  display: inline-block;
  font-family: 'Exo2-Bold', sans-serif;
  color: #4d4d4d;
  padding-left: 20px;
  position: relative;
  text-decoration: none;
}
.catalog-menu__item > a:after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: #c10c0c;
}
.catalog-menu-step-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0;
  flex-wrap: wrap;
  gap: 36px;
}
.catalog-menu-step-1__item {
  /* margin-bottom: 36px; */
}
.catalog-menu-step-1__item .wrap > a {
  font-size: 24px;
  font-family: 'Exo2-Medium';
  color: #4d4d4d;
  line-height: 32px;
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}
.catalog-menu-step-1__item .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.catalog-menu-step-1__item .wrap .toggle {
  margin-left: 12px;
  position: relative;
}
.catalog-menu-step-1__item .wrap .toggle:after {
  content: '';
  position: absolute;
  right: 13px;
  margin-top: -8px;
  border-right: 2px solid #4d4d4d;
  border-bottom: 2px solid #4d4d4d;
  pointer-events: none;
  top: 50%;
  height: 12px;
  width: 12px;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.catalog-menu-step-2 {
  padding: 0;
  /* display: none; */
}
.catalog-menu-step-2__item > a {
  color: #4d4d4d;
  text-decoration: none;
}
/* -------------------------------- END CATALOG PAGE ------------------------------- */

/* Index search catalog form styles */
#catalog_code_form {
  width: 100%;
}
#search_model_reset,
#search_model_btn,
#search_code_reset,
#search_code_btn {
  background-color: #b60000;
  color: white;
  font-weight: bold;
  border: 1px solid #b60000;
}
#search_model_reset:hover,
#search_model_btn:hover,
#search_code_reset:hover,
#search_code_btn:hover {
  background-color: white;
  color: #b60000;
}
.catalog_body {
  padding: 10px 0px 15px 0px;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 25px;
}
.nav-tabs > li > a:focus {
  cursor: default;
}
.nav-tabs > li > a:focus,
.nav-tabs > li > a:hover {
  background-color: #555555;
  color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  text-decoration: none;
  transition: 0.3s;
}
.nav-tabs > li > a {
  color: #555555;
  font-weight: bold;
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  transition: 0.3s;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.catalog_header .nav-tabs li {
  width: 50%;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 992px) {
  .col-lg-3 {
    float: left;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
}
.catalog_model_result,
.catalog_model_result_item,
.catalog_code_result,
.catalog_code_result_item {
  padding: 10px 0;
}
.catalog_model_result_item,
.catalog_code_result_item {
  border-top: 1px solid #dee2e6;
}
.catalog_model_result_item img,
.catalog_code_result_item img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.catalog_model_result_item h1,
.catalog_code_result_item h1 {
  font-size: 22px;
  font-family: RobotoMedium;
  padding: 5px 0px;
}
.catalog_model_result_item h2,
.catalog_code_result_item h2 {
  display: inline;
  font-size: 14px;
  background-color: #f9e7e3;
  color: #bc5a5b;
  padding: 5px;
}
.catalog_model_result_item h3,
.catalog_model_result_item h4,
.catalog_code_result_item h3,
.catalog_code_result_item h4 {
  font-size: 18px;
  font-family: RobotoMedium;
  color: #000000;
  padding: 10px 0px;
}
/* *************************** */

/* -------------------------------- NEWS -------------------------------- */

/* news single */

/* single news */
.news-article .entry-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: flex-end;
}
.news-article .entry-title {
  margin-bottom: 25px;
}
.news-article .entry-meta .posted-on {
}

.news-article .entry-meta .views {
}
.news-article .entry-meta .tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.news-article .entry-meta .tags p {
  margin: 0;
  font-family: 'Exo2-Bold';
}

.news-article .entry-content {
  font-size: 18px;
  line-height: 32px;
}

.news-article .entry-content .alignleft {
  float: left;
  margin: 15px 25px 20px 0px;
}

.news-article .entry-content .alignright {
  float: right;
  margin: 15px 0 20px 25px;
}

/* news page */
.news-page-item {
  display: flex;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #ddd;
}
.news-page-item__image img {
  border-radius: 16px;
}
.news-page-item-wrap {
  width: 100%;
}
.news-page-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}
.news-page-item__tags {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-size: 14px;
  flex-basis: 100%;
  gap: 8px;
}
.news-page-item__tags p {
  margin: 0;
  font-family: 'Exo2-Bold';
}
.news-page-item-wrap {
  font-size: 18px;
}
.news-page-item__more {
  display: flex;
  align-items: center;
  font-family: 'Exo2-Bold';
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  color: #212529;
  text-decoration: none;
}
.news-page-item__more svg {
  transition: all 0.3s ease;
}
.news-page-item__more:hover svg {
  transform: translateX(10px);
}

/* -------------------------------- END NEWS -------------------------------- */

/* -------------------------------- PARTNER PAGE -------------------------------- */
.partner-page {
}
.partner-form__title {
  font-size: 28px;
  color: #222;
  margin-bottom: 28px;
  text-align: center;
  font-family: 'Exo2-Bold';
  margin-top: 40px;
}
.partner-form__body {
  max-width: 700px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 12px;
  background-color: #f7f7f7;
}

/* -------------------------------- END PARTNER PAGE -------------------------------- */

/* -------------------------------- CARSERVICE PAGE -------------------------------- */
.carservice-page-contact {
  margin-bottom: 56px;
  margin-top: 32px;
}
.carservice-page-contact__item-name {
  font-size: 18px;
  font-family: 'Exo2-Bold', sans-serif;
}
.carservice-page-contact__item-adres {
  min-height: 48px;
}
.carservice-page-contact__item {
  min-height: 280px;
  background: #f7f7f7;
  border-radius: 6px;
  padding: 25px 25px;
  border-right: 5px solid #c10c0c;
  transition: all 0.3sease-in-out;
  cursor: pointer;
}
.carservice-page-contact__item-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.carservice-page-contact__item-icon {
  min-width: 30px;
}
.carservice-page-contact__item-link {
  color: #17a2b8;
}
.carservice-page-shop {
  margin-bottom: 56px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.carservice-page-shop__item img {
  max-width: 100%;
}
.carservice-page .where-buy__partner {
  margin-bottom: 56px;
}

/* -------------------------------- END CARSERVICE PAGE -------------------------------- */

/* -------------------------------- CATEGORY -------------------------------- */
.category-tabs {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin-bottom: 96px;
}
.category-tabs__item {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 8px 12px;
  min-height: 75px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in;
}
.category-tabs__item:hover {
  border-color: rgba(0, 0, 0, 0.1);
}
.category-tabs__item a {
  text-decoration: none;
  color: #4d4d4d;
  font-family: 'Exo2-Medium', sans-serif;
  font-weight: 600;
}
.category-item {
  cursor: pointer;
}
.category-items {
  /* display: grid; */
  /* align-items: center; */
  /* grid-template-columns: repeat(4, 1fr); */
  gap: 48px 0;
  padding: 0;
  margin-bottom: 56px;
}
.category-item__wrap {
  background-color: #ebebeb;
  height: 160px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 45px;
}
.category-item__wrap:after {
  content: '';
  display: block;
  height: 40px;
  width: 100%;
  background-color: #c10c0ced;
  bottom: -40px;
  position: absolute;
}
.category-item__description {
  position: relative;
  z-index: 1;
}
.category-item__image {
  height: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 12px 8px;
}
.category-item__info {
  padding-top: 24px;
}
.category-item__image img {
  /* max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; */

  width: 100%; /* Заполняем всю ширину контейнера */
  height: 100%; /* Заполняем всю высоту контейнера */
  object-fit: contain; /* Или cover, в зависимости от желаемого результата */
}
.category-item__title {
  font-family: 'Exo2-Bold', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  display: block;
  color: #4d4d4d;
  text-decoration: none;
}

.category-item__title:hover {
  color: #17a2b8 !important;
}
.category-item__article {
  color: #808285;
}

.category-item__btn {
  width: 100%;
}
/* -------------------------------- END CATEGORY -------------------------------- */

/* -------------------------------- COMPONENTS -------------------------------- */
.subscribe-block {
  display: flex;
  position: relative;
  border-radius: 6px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 130px;
  background-color: #f7f7f7;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 0 100px;
}
.subscribe-block__icon {
  position: absolute;
  width: 110px;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
.subscribe-block__icon img {
  max-width: 100%;
}
.subscribe-block__text {
  font-size: 32px;
  line-height: 32px;
  font-weight: 600;
  padding-right: 15px;
}
.subscribe-block__form {
  display: flex;
  align-items: center;
  min-width: 30%;
}
.subscribe-block__form input {
  height: 40px;
  position: relative;
  position: relative;
  left: 5px;
}
.subscribe-block__form .btn {
  white-space: nowrap;
  height: 40px;
  position: relative;
}
.subscribe-block__form .btn svg {
  margin-right: 6px;
}

/* -------------------------------- END COMPONENTS -------------------------------- */
