a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000E19;
  font-family: 'TT Norms';
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  width: 100%;
}

header {
  padding: 35px 0;
  position: absolute;
  width: 100%;
}

.hidden {
  display: none;
}

.menumain {
	width: 100%;
}

.logo {
  margin-right: 48px;
}

.logo a {
  display: block;
}

.header .callback {
  margin-left: auto;
}

.container {
  max-width: 1270px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 15px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.display-f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.jc {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ai {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.callback .btn {
  background-color: transparent;
  color: #fff;
  font-weight: 500;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #FFE61B;
  border-radius: 8px;
  background-color: #FFE61B;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  text-align: center;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}
.btn.transpatent:hover {
  background-color: #FFE61B;
  color: #000;
}

.btn span {
  display: contents;
  font-size: 15px;
}

.menu-container {
  max-width: 640px;
  width: 100%;
}

.mainmenu li {
  margin: 0 16px;
  white-space: nowrap;

  display: block;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  text-align: center;
  padding: 8px 0;
}

.mainmenu li:after,
.mainmenu li:before {
  content: "";
  position: absolute;
  display: block;
  border: 0px solid transparent;
  border-radius: 8px;
}

.mainmenu li:after {
  width: 0%;
  height: 80%;
  border-top: 1px solid #FFE61B;
  border-bottom: 1px solid #FFE61B;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mainmenu li:before {
  width: 120%;
  height: 0%;
  border-left: 1px solid #FFE61B;
  border-right: 1px solid #FFE61B;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mainmenu li:hover::before {
  height: 80%;
}

.mainmenu li:hover::after {
  width: 120%;
}

.mainmenu a {
  position: relative;
  z-index: 10;
}

.first_screen {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  color: #fff;
}

.first_screen h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
}

.first_screen p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

.first_screen .content {
  width: 50%;
}

.first_screen .content h1,
.first_screen .content p {
  margin-bottom: 32px;
}

main .container {
  width: 100%;
}

h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 72px;
  color: #fff;
}

h5 {
  font-family: 'TT Norms';
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFE61B;
  margin: 0 0 16px;
}

section {
  padding-top: 150px;
}

section h2 {
  margin-bottom: 80px;
}

.border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 1px;
}

.border span {
  width: 50%;
}

.border .border-left {
  background: -webkit-gradient(linear, right top, left top, color-stop(6.24%, #FFE61B), color-stop(100.86%, rgba(255, 230, 27, 0)));
  background: -o-linear-gradient(right, #FFE61B 6.24%, rgba(255, 230, 27, 0) 100.86%);
  background: linear-gradient(270deg, #FFE61B 6.24%, rgba(255, 230, 27, 0) 100.86%);
}

.border .border-right {
  background: -webkit-gradient(linear, left top, right top, color-stop(4.52%, #FFE61B), color-stop(100.86%, rgba(255, 230, 27, 0)));
  background: -o-linear-gradient(left, #FFE61B 4.52%, rgba(255, 230, 27, 0) 100.86%);
  background: linear-gradient(90deg, #FFE61B 4.52%, rgba(255, 230, 27, 0) 100.86%);
}

.calc {
  padding-top: 65px;
}

.calc > div {
  width: 50%;
}

.calc > div:first-of-type {
  margin-right: 68px;
}

.calc > div:last-of-type {
  margin-left: 68px
}

*:focus {
  outline: none;
}

* {
  -webkit-box-sizing:border-box;
          box-sizing:border-box
}

.js-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.left > div:not(:last-of-type) label {
  position: absolute;
  top: -14px;
  left: 15px;
  padding: 0 5px;
  background-color: #000E19;
}

.calc label,
.right-block span {
  color: rgba(255, 255, 255, .4);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.right-block span {
  position: relative;
  color: #fff;
}

.right-block div > span::before {
  content: '$ ';
}

.calc .left > div {
  position: relative;
}

.calc input,
.calc select {
  color: #fff;
  background-color: transparent;
  border: none;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.left > div:not(:last-of-type),
.right-block {
  border-radius: 12px;
  border: 1px solid #303030
}

.left > div:not(:last-of-type) {
  margin-bottom: 24px;
}

.calc .left input,
.calc .left select {
  padding: 20px 16px 16px;
  width: 100%;
}

.right-block {
  border: 1px solid #303030;
  padding: 32px;
  background: #031421;
  margin-bottom: 30px;
}

.right-block > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.calc .left [type="radio"]:checked,
.calc .left [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.calc .left [type="radio"]:checked + label,
.calc .left [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
}
.calc .left [type="radio"]:checked + label:before,
.calc .left [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #303030;
    border-radius: 100%;
}
.calc .left [type="radio"]:checked + label:after,
.calc .left [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #FFE61B;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.calc .left [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
        transform: scale(0);
}
.calc .left [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
        transform: scale(1);
}

.calc .left .engine {
  padding-top: 6px;
}

.calc .left .engine > div:not(:last-of-type) {
  margin-right: 48px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-image: url('../image/chevron_down.png');
  background-repeat: no-repeat;
  background-position: 98%;
}

select option {
  color: #000;
}

.right-block label {
  display: inline-block;
  width: 155px;
}

.right-block select {
  max-width: 245px;
  min-width: 245px;
  width: 100%;
  font-size: 12px;
  padding: 8px 18px;
  border: 1px solid #303030;
  border-radius: 12px;
}

.right-block > div:not(:last-of-type) {
  margin-bottom: 16px;
}

.pos-right {
  margin-left: auto;
}

.buttons > div {
  max-width: 200px;
  min-width: 200px;
  width: 100%;
}

.right_side .buttons > div {
  max-width: 240px;
}

.right_side .callback .btn {
  width: 100%;
  color: #FFE61B;
  justify-content: space-between;
}

.buttons a {
  display: block;
  width: 100%;
}

.buttons .callback {
  margin-right: 30px;
}

.right .buttons {
  margin-bottom: 64px;
}

.calculated h2,
.calculated h5 {
  text-align: center;
}

.headers_wrap {
  position: relative;
  padding-right: 150px;
}

.headers_wrap .button_slider {
  position: absolute;
  top: 0;
  right: 0;
}

.headers_wrap .button_slider > div {
  width: 64px;
  height: 64px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, .2);
  border-radius: 12px;
  opacity: 0.6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.headers_wrap .button_slider > div:hover {
  opacity: 1;
}

.headers_wrap .button_slider span {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('../image/arrow-right.png');
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../image/arrow-right.png);
  color: transparent;
}
.swiper-button-prev:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.button_slider .prev {
  margin-right: 16px;
}

.button_slider .prev span {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.slider_car-wrap {
  background-color: #031421;
  border: 1px solid #303030;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.car_content-wrap {
  padding:  24px 32px 32px;
  color: #FFFFFF;
}

.car_content-wrap ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.car_content-wrap hr {
  border: none;
  height: 1px;
  background-color: #303030;
  margin: 16px 0;
}

.car_content-wrap h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 4px;
}

.car_content-wrap .car_content p {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  color: #FFE61B;
}

.car_content-wrap .car_content p::before {
  content: '$';
}
.car_content-wrap li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-left: 32px;
  margin-bottom: 12px;
}

.car_content-wrap li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


.car_content-wrap li.calendar::before {
  background-image: url('../image/calendar_month.png');
}
.car_content-wrap li.mile::before {
  background-image: url('../image/clock.png');
}
.car_content-wrap li.gas::before {
  background-image: url('../image/gas_station.png');
}
.car_content-wrap li.settings::before {
  background-image: url('../image/settings.png');
}
.car_content-wrap li.value::before {
  background-image: url('../image/value.png');
}
.car_content-wrap li.run::before {
  background-image: url('../image/run.png');
}
.car_content-wrap li.oil::before {
  background-image: url('../image/oil.png');
}
.car_content-wrap li.color::before {
  background-image: url('../image/color.png');
}
.car_content-wrap li.status::before {
  background-image: url('../image/status.png');
}
.car_content-wrap li.manual::before {
  background-image: url('../image/manual.png');
}

.car_content-wrap ul {
  padding-bottom: 12px;
}

.car_content-wrap .btn {
  width: 100%;
}
.car_content-wrap li span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.4;
}

.car_image {
  width: calc(100%+2px);
  position: relative;
  left: -2px;
  height: 270px;
}

.car_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.call_section {
  background-image: url('../image/image.png');
  background-position: right bottom;
  background-repeat: no-repeat;
}

.call_section .content-wrap {
  padding: 170px 0;
}

.call_section h2 {
  margin-bottom: 16px;
}

.call_section p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  opacity: 0.8;
  margin-bottom: 32px;
}

footer {
  padding: 80px 0;
}

footer .first-block {
  margin-bottom: 32px;
}

footer .second-block p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.4;
}

footer .social a {
  display: block;
}

footer .social > div {
  width: 24px;
  height: 24px;
}

footer .social > div:not(:last-of-type) {
  margin-right: 24px;
}

footer .social svg path {
  fill: #fff;
  opacity: .2;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

footer .social svg:hover path {
  fill: #FFE61B;
  opacity: 1;
}

.swiper-pagination-bullet {
  width: 9px;
  height: 6px;
  border-radius: 3px;
  background-color: rgba(255,255,255, .2);
  margin: 0 4px;
}

.swiper-pagination {
  padding-top: 48px;
}

.swiper-pagination-bullet-active {
  width: 32px;
  background-color: #FFE61B;
}

.about-wrap > div:first-of-type {
  margin-right: 150px;
}

.about-wrap .about-left h2 {
  margin-bottom: 32px;
}

.about-item_wrap span {
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: #FFE61B;
  margin-right: 32px;
}

.about-item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.about-item_wrap,
.about-item {
  padding-bottom: 32px;
}

.about-wrap > div {
  width: 50%;
  color: #fff;
}

.about-wrap .about-left p {
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
}

.about-wrap .about-right p {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.review-wrap {
  padding: 64px 48px 48px;
  color: #fff;
  position: relative;
  max-width: 605px;
  width: 100%;
}

.reviews-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: url('../image/reviews.png'), #FFE61B;
  background-position: center;
  background-repeat: no-repeat;
  background-size: unset;
  -webkit-border-top-right-radius: 12px;
  -webkit-border-bottom-left-radius: 12;
  -moz-border-radius-topright: 12px;
  -moz-border-radius-bottomleft: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.review-wrap span {
  display: block;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.4;
  margin-bottom: 24px;
}

.review-wrap h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
}

.review-wrap h4,
.review-wrap hr {
  margin-bottom: 40px;
}

.review-wrap hr {
  opacity: .2;
}

.review-wrap p {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

body.popup-active-overflow {
  overflow: hidden;
}
.popup-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  z-index: 101;
}
.popup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1%;
  height: 100%;
}
.popup-close,
.popup-close:after,
.popup-close:before {
  position: absolute;
  content: '';
}
.popup-close {
  top: 32px;
  right: 32px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.popup-close:after,
.popup-close:before {
  top: 50%;
  left: 50%;
  margin-top: -0.0625rem;
  margin-left: -0.5625rem;
  width: 1.125rem;
  height: 0.125rem;
  border-radius: 0.0625rem;
  background-color: #FFE61B;
}
.popup-close:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close:before {
   -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.popup-block.popup-active {
  display: block;
}

.contact-wrap {
  position: relative;
  padding: 80px 64px;
  max-width: 604px;
  width: 100%;
  background: #051929;
  border: 1px solid #303030;
  border-radius: 12px;
  color: #fff;
  text-align: center;
}

.popup-block h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 32px;
}

.popup-block .contact-wrap .text {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.8;
  margin-bottom: 48px;
}

.popup-block input {
  border: 1px solid #303030;
  background: rgba(0, 14, 25, 0.4);
  border-radius: 8px;
  padding: 16px 20px;
  width: 100%;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

.popup-block form span {
  margin-bottom: 24px;
  display: block;
}

.wpcf7-spinner {
  display: none!important;
}

.popup-block input.wpcf7-submit {
  background-color: #FFE61B;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000E19;
}
.right-block span {
	min-width: 50px;
}
.develop {
	display: none;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  position: relative;
}

.reviews_section {
  overflow: hidden;
}

.contaiter_review {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}

.content-page {
  padding-top: 215px;
}
.side_wrap .left_side {
  max-width: 605px;
  width: 100%;
  margin-right: 135px;
}
.side_wrap .right_side {
  max-width: 500px;
  width: 100%;
}
.left_side .car_gallery .swiper-slide {
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
}
.car_gallery {
  margin-bottom: 15px;
}
.car_gallery .swiper-wrapper,
.car_gallery {
  height: 450px;
}

.car_nav .swiper-wrapper,
.car_nav {
  height: 80px;
}
.gallery_slider {
  margin-bottom: 32px;
}
.left_side .car_nav .swiper-slide img {
  position: relative;
  border-radius: 4px;
  height: 100%;
  overflow: hidden;
  opacity: 0.6;
}
.left_side .car_nav .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.left_side .car_nav .swiper-slide.swiper-slide-thumb-active img {
  opacity: 0.8;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

.left_side .car_nav .swiper-slide.swiper-slide-thumb-active:after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #FFE61B;
  border-radius: 6px;
}

.right_side {
  color: #fff;
}
.right_side h1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 8px;
}
.right_side span {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  color: #FFE61B;
  margin-bottom: 32px;
}
.info-block > h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 16px;
}
.info-block {
  font-size: 16px;
  line-height: 24px;
}
.info-block h3 {
  font-weight: 400;
  opacity: 0.4;
}
.info-block p {
  font-weight: 500;
}
.content-page .content p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
}
.characteristik li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-getcalcresult {
  width: 100%;
}
.btn-disable {
  opacity: 0.7;
}
.btn-disable:hover {
  background-color: #FFE61B;
  color: black;
}

.calculated .active_fields {
  align-items: center;
}

.calculated select, .calculated input {
  width: calc(100%-20px)
}

.shrot-category {
  color: #fff;
}

.shrot-category h1 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 32px;
}

.shrot-cat {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.shrot-cat li {
  width: 145px;
  margin: 0 5px 10px;
}

.shrot-cat li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
  border: 1px solid #303030;
  padding: 15px;
  background: #031421;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
}

.shrot-cat li a:hover {
  color: #FFE61B;
  border-color: #FFE61B;
}

.shrot-cat li a img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.shrot-cat li a:hover img.invert {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.category-wrap {
  margin-bottom: 60px;
}

.shrot-items-wrap {
  padding-top: 50px;
}

.shrot-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.shrot-items-wrap h2 {
  text-align: center;
  margin-bottom: 50px;
}

.shrot-items .shrot-item {
  margin: 0 10px;
  width: 20%;
  border: 1px solid #303030;
  background: #031421;
  border-radius: 12px;
  padding: 15px;
}

.shrot-items .shrot-item {
  margin: 0 5px 10px 5px;
  width: calc(20% - 10px);
  border: 1px solid #303030;
  background: #031421;
  border-radius: 12px;
  padding: 15px;
  transition: .3s;
}

.shrot-items .shrot-item:hover {
  border-color: #FFE61B;
}

.shrot-items .shrot-item .image {
  height: 150px;
  margin-bottom: 15px;
}

.shrot-items .shrot-item .image a,
.shrot-items .shrot-item .image img {
  display: block;
  width: 100%;
  height: 100%;
}

.shrot-items .shrot-item .title {
  display: block;
  margin-bottom: 10px;
  transition: .3s;
}

.shrot-items .shrot-item .price {
  display: block;
  margin-top: 10px;
  color: #FFE61B;
  font-size: 16px;
}

.shrot-items .shrot-item .price .small-price {
  font-size: 12px;
  margin-left: 5px;
}

.shrot-items .shrot-item .title:hover {
  color: #FFE61B;
}

.shrot-items .shrot-item .image img {
  object-fit: cover;
}

.shrot-items .shrot-item .details {
  margin-bottom: 20px;
}

.shrot-items .shrot-item .button a {
  width: 100%;
}

.tax-category-shrot .shrot-cat li a img,
.tax-details .shrot-cat li a img {
  object-fit: contain;
  width: 100%;
  height: 90px;
}

.tax-category-shrot .shrot-cat li a,
.tax-details .shrot-cat li a {
  font-size: 14px;
}

@media screen and (max-width: 1250px) {
	.side_wrap .left_side {
    margin-right: 30px;
  }
  .side_wrap .right_side {
    max-width: 100%;
  }
  .side_wrap .left_side {
    max-width: 500px;
  }

  .shrot-items .shrot-item {
    width: calc(25% - 10px);
  }
}

@media screen and (max-width: 1130px) {
	.header .logo {
		margin-right: 10px;
	}
	.header .mainmenu a {
		font-size: 16px;
	}
}

@media screen and (max-width: 1024px) {
	.burger-menu {
		width: 24px;
		height: 24px;
		margin-left: auto;
		position: relative;
		z-index: 1;
	}
	body.active-menu {
		overflow: hidden;
	}
	.menumain.active {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.burger-menu span {
		display: block;
		width: 100%;
		height: 1px;
		background-color: #FFE61B;
	}
	.burger-menu span:not(:last-of-type) {
		margin-bottom: 5px;
	}
	.menumain {
		display: none;
		position: fixed;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		background-color: #333;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		padding-top: 48px;
	}
	.mainmenu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin-bottom: 20px;
	}
	.header .callback {
		margin-left: 15px;
	}
	.first_screen .content {
		width: 100%;
	}
	.first_screen .content h1, .first_screen .content p {
		margin-bottom: 16px;
	}
	.first_screen h1 {
		font-size: 42px;
	}
	.first_screen p {
		font-size: 18px;
	}
	section h2 {
		margin-bottom: 30px;
		padding-right: 0;
		font-size: 36px;
	}
	.headers_wrap {
		padding-right: 0;
	}
	section {
		padding-top: 60px;
	}
	footer {
		padding: 40px 0;
	}
	.about-wrap {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	.about-wrap > div {
		width: 100%;
	}
	.about-wrap .about-left {
		margin-bottom: 40px;
	}
	.about-item_wrap span {
		font-size: 40px;
	}
	.about-wrap .about-right p {
		font-size: 16px;
	}
	.calc > div:first-of-type {
		margin-right: 15px;
	}
	.calc > div:last-of-type {
		margin-left: 15px;
	}
  .content-page {
    padding-top: 100px;
  }
  .side_wrap.display-f {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .side_wrap .left_side,
  .side_wrap .right_side {
    max-width: 100%;
    margin-right: 0;
  }
  .car_content-wrap {
    padding: 0;
  }
  .right_side {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
	.calc {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.calc > div {
		width: 100%;
	}
	.calc > div:first-of-type {
		margin-right: 0;
		margin-bottom: 30px;
	}
	.calc > div:last-of-type {
		margin-left: 0;
	}
	.about-wrap > div:first-of-type {
		margin-right: 0;
	}

  .shrot-items .shrot-item {
    width: calc(33.33% - 10px);
  }
}

@media screen and (max-width: 767px) {
	.contact-wrap {
		padding: 40px 30px;
	}
	.popup-close {
		top: 15px;
		right: 15px;
	}
	.button_slider,
	footer .callback{
		display: none;
	}
	.call_section .content-wrap {
		padding: 80px 0;
	}
	.review-wrap {
		padding: 46px 15px 20px;
	}
	.calc .buttons,
  .right_side .buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
  .right_side .buttons {
    align-items: flex-end;
  }
	.buttons .callback {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.calc .buttons > div {
		max-width: 100%;
	}
	.engine {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.engine > div:not(:last-of-type) {
		margin-bottom: 10px;
	}
	.calc .left label {
		font-size: 12px!important;
	}
	.right-block {
		padding: 15px;
	}
  .car_gallery .swiper-wrapper, .car_gallery {
    height: 280px;
  }
  .shrot-items .shrot-item {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 500px) {
  .info-block .right-block > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .characteristik.car_content-wrap ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  .right_side .buttons > div {
    max-width: 100%;
  }

  .shrot-items .shrot-item {
    width: calc(100% - 10px);
  }
}