/*------------------------------ fonts ----------------------------------*/

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff2') format('woff2'), url('../fonts/Gilroy-Regular.woff') format('woff'), url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy Medium';
  src: url('../fonts/Gilroy-Medium.woff2') format('woff2'), url('../fonts/Gilroy-Medium.woff') format('woff'), url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy Semibold';
  src: url('../fonts/Gilroy-SemiBold.woff2') format('woff2'), url('../fonts/Gilroy-SemiBold.woff') format('woff'), url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy Bold';
  src: url('../fonts/Gilroy-Bold.woff2') format('woff2'), url('../fonts/Gilroy-Bold.woff') format('woff'), url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*------------------------------ global ----------------------------------*/

html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
  font-family: 'Gilroy', 'Arial', sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
}

.wrap {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:focus,
button,
button:focus,
input,
input:focus {
  outline: none;
  text-decoration: none;
}

h1 {
  margin: 0 0 30px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

h2 {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

h3 {
  margin: 0 0 30px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #36414F;
}

p {
  margin: 0 0 20px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  margin-bottom: 5px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
}

blockquote {
  margin: 40px 0;
  padding: 0 0 0 20px;
  border-left: 3px solid #E90000;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

blockquote:last-child {
  margin-bottom: 0;
}

blockquote span {
  display: block;
  color: rgba(54, 65, 79, 0.7);
}

blockquote span:first-child {
  margin-top: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

blockquote span:nth-child(2) {
  font-size: 14px;
}

/*------------------------------ form ----------------------------------*/

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 15px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #36414F;
}

.form-group label .red {
  color: #E90000;
}

.form-group label .tooltip {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 4px;
  margin-left: 10px;
  width: 18px;
  height: 18px;
  text-align: center;
  cursor: pointer;
}

.form-group label .tooltip svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.form-group label .tooltip:hover svg {
  fill: #E90000;
}

.form-group input {
  width: 100%;
  height: 60px;
  padding: 0 28px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
}

.form-group input::-webkit-input-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group input::-moz-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group input:-moz-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group input:-ms-input-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group textarea {
  width: 100%;
  min-height: 120px;
  padding: 18px 28px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  resize: vertical;
}

.form-group textarea.lg {
  min-height: 210px;
}

.form-group textarea::-webkit-input-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group textarea::-moz-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group textarea:-moz-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group textarea:-ms-input-placeholder {
  opacity: 1;
  color: #828EA2;
}

.form-group i {
  position: absolute;
  right: 28px;
  bottom: 19px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
}

.form-file {
  position: relative;
}

.form-file input[type="file"] {
  display: none;
}

.form-file label {
  display: block;
}

.form-file label span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  cursor: pointer;
  transition: all 0.3s linear;
}

.form-file label span:hover {
  border-bottom-color: transparent;
  color: #E90000;
}

.form-file label span.filename {
  padding-bottom: 0;
  border-bottom: none;
  letter-spacing: normal;
  text-decoration: underline;
  text-transform: none;
}

.form-password {
  position: relative;
}

.form-password .pass-toggle {
  position: absolute;
  right: 25px;
  top: calc(50% - 11px);
  display: block;
  width: 22px;
  height: 22px;
  background: url(../img/icons/eye-closed.svg) center no-repeat;
  background-size: contain;
}

.form-password .pass-toggle.show {
  background: url(../img/icons/eye.svg) center no-repeat;
  background-size: contain;
}

.form-img {
  position: absolute;
  z-index: 10;
  bottom: -5px;
  right: -10px;
}

.form-img input[type="file"] {
  display: none;
}

.form-img label {
  position: relative;
  z-index: 1;
  display: block;
  width: 30px;
  height: 30px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background-color: #36414F;
  background-image: url(../img/icons/edit.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  cursor: pointer;
}

.form-radio label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 0 !important;
  padding: 0 20px;
  border: 2px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s linear;
}

.form-radio label:hover {
  color: #E90000;
}

.form-radio input {
  display: none;
}

.form-radio input:checked + label {
  border-color: #E90000;
}

.form-checkbox {
  position: relative;
  margin-top: 5px;
  margin-bottom: 19px;
}

.form-checkbox--mb {
  margin-bottom: 50px;
}

.form-checkbox label {
  display: block;
  position: relative;
  margin-bottom: 0 !important;
  padding-left: 34px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #828EA2;
  cursor: pointer;
}

.form-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid #D4DBE1;
  border-radius: 3px;
  background-color: #ffffff;
}

.form-checkbox input {
  display: none;
}

.form-checkbox input:checked + label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  display: block;
  width: 14px;
  height: 14px;
  background: #E90000;
  border-radius: 1px;
}

/*------------------------------ header ----------------------------------*/

.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(19px);
  backdrop-filter: blur(19px);
}

.header--inner {
  position: static;
  margin-bottom: 60px;
  background-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

/*------------------------------ headerbar ----------------------------------*/

.headerbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(130, 142, 162, 0.2);
}

.headerbar__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: center;
}

.headerbar__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 7 - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.headerbar__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5 - 20px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 22px;
}

/*------------------------------ logo ----------------------------------*/

.logo {
  display: block;
  width: 63px;
  height: 60px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*------------------------------ menu ----------------------------------*/

.menu {
  display: flex;
  flex-wrap: wrap;
  column-gap: 62px;
}

.menu__link {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
  transition: all 0.3s linear;
}

.menu__link:hover {
  color: #E90000;
}

/*------------------------------ forum-btn ----------------------------------*/

.forum-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 55px;
  border: 1px solid rgba(54, 65, 79, 0.2);
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.forum-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 11px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.forum-btn:hover {
  background: #36414F;
  border-color: #36414F;
  color: #fff;
}

.forum-btn:hover svg {
  fill: #fff;
}

/*------------------------------ private-link ----------------------------------*/

.private-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
  transition: all 0.3s linear;
}

.private-link svg {
  width: 15px;
  height: 16px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.private-link:hover {
  color: #5A6C83;
}

.private-link:hover svg {
  fill: #5A6C83;
}

/*------------------------------ navbar ----------------------------------*/

.navbar {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: center;
  padding: 5px 0;
}

.navbar__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 9.5 - 20px);
}

.navbar__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 2.5 - 20px);
}

/*------------------------------ auctions-btn ----------------------------------*/

.auctions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 54px;
  margin-left: auto;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.auctions-btn:hover {
  background: #CB0000;
}

/*------------------------------ office ----------------------------------*/

.office {
  position: relative;
  margin-left: 32px;
  margin-right: 60px;
  white-space: nowrap;
}

.office__header {
  margin: 0 0 9px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #36414F;
}

.office__header span {
  margin-left: 7px;
}

.office__header span::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: currentColor;
}

.office__header span.green {
  color: #16D229;
}

.office__header span.red {
  color: #E90000;
}

.office__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.office__tel {
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  color: #36414F;
  transition: all 0.3s linear;
}

.office__tel:hover {
  color: #E90000;
}

.office__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  cursor: pointer;
}

.office__toggle svg {
  width: 10px;
  height: 7px;
  fill: #36414F;
}

.office__whatsapp {
  display: none;
  position: absolute;
  z-index: 100;
  left: -15px;
  top: calc(100% + 5px);
  width: 231px;
  padding: 16px 15px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  box-shadow: 0px 7px 20px -13px rgba(54, 65, 79, 0.2);
  border-radius: 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  color: #36414F;
  transition: all 0.3s linear;
}

.office__whatsapp:hover {
  color: #E90000;
}

.office__whatsapp img {
  width: 17px;
  height: 17px;
  margin-left: 8px;
}

.office--full .office__toggle {
  display: none;
}

.office--full .office__whatsapp {
  position: static;
  display: block;
  width: auto;
  margin-top: 8px;
  padding: 0 20px 0 0;
  border: none;
}

.office--white {
  margin: 0;
}

.office--white .office__header,
.office--white .office__tel {
  color: #fff;
}

.office__text {
  margin: 0 0 10px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #36414F;
}

/*------------------------------ city ----------------------------------*/

.city {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}

.city span {
  margin: 0 10px 0 8px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #36414F;
}

.city__marker {
  width: 12px;
  height: 15px;
  fill: #E90000;
}

.city__arr {
  width: 10px;
  height: 7px;
  fill: #36414F;
}

/*------------------------------ h-social ----------------------------------*/

.h-social {
  margin-right: 45px;
}

.h-social__text {
  margin: 0 0 12px;
  font-size: 11px;
  color: #36414F;
}

.h-social .social {
  column-gap: 14px;
}

.h-social .social__item {
  width: 20px;
  height: 20px;
}

/*------------------------------ social ----------------------------------*/

.social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 25px;
  row-gap: 20px;
}

.social__item {
  width: 25px;
  height: 25px;
}

.social__item svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.social__item:hover svg {
  fill: #E90000;
}

.social--red {
  column-gap: 17px;
}

.social--red .social__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.social--red .social__item svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.social--red .social__item:hover {
  background: #CB0000;
}

.social--red .social__item:hover svg {
  fill: #fff;
}

/*------------------------------ banner ----------------------------------*/

.banner {
  position: relative;
  z-index: 1;
  padding: 330px 0 76px;
  background: url(../img/banner-map.jpg) center no-repeat;
  background-size: cover;
}

.banner__title {
  max-width: 630px;
  margin: 0 0 74px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #36414F;
}

/*------------------------------ selection ----------------------------------*/

.selection {
  padding: 60px 60px 68px;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 10px;
}

.selection__title {
  margin: 0 0 18px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #36414F;
}

.selection__text {
  margin: 0 0 37px;
  font-size: 18px;
  line-height: 22px;
  color: #36414F;
}

.selection__form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 24px;
}

.selection__btn {
  flex: none;
  width: 86px;
  height: 80px;
  background: #E90000;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s linear;
}

.selection__btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.selection__btn:hover {
  background: #CB0000;
}

.selection__btn span {
  display: none;
}

.selection__years {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  width: 100%;
  max-width: 378px;
  height: 80px;
  padding-left: 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
}

.selection__years span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #828EA2;
}

.selection__years span i {
  font-style: normal;
}

.selection__years input {
  width: 50px;
  padding: 0;
  border: none;
  background-color: transparent;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #36414F;
}

.selection .new-select {
  height: 80px;
  padding: 10px 32px;
}

.selection .new-select__list {
  top: 70px;
}

/*------------------------------ select ----------------------------------*/

.select {
  display: block;
  max-width: 382px;
  width: 100%;
  position: relative;
}

.new-select {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  height: 60px;
  padding: 0 28px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #828EA2;
  transition: all 0.3s linear;
}

.new-select.selected {
  color: #36414F;
  border-color: #36414F;
}

.new-select__list {
  position: absolute;
  top: 50px;
  left: 0;
  max-height: 200px;
  padding-top: 5px;
  border: 1px solid #E2E8ED;
  border-top: none;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  width: 100%;
  z-index: 2;
  background: #fff;
  -webkit-user-select: none;
  user-select: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #E90000 #E2E8ED;
  transition: border-color 0.3s;
}

.new-select__list::-webkit-scrollbar {
  width: 3px;
}

.new-select__list::-webkit-scrollbar-track {
  background: #E2E8ED;
}

.new-select__list::-webkit-scrollbar-thumb {
  background-color: #E90000;
  border-radius: 0;
  border: none;
}

.new-select__list.on {
  border-color: #36414F;
}

.new-select__item {
  margin-bottom: 10px;
}

.new-select__item span {
  display: block;
  padding: 0 32px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #36414F;
}

.new-select__item span:hover {
  color: #E90000;
}

.new-select::after {
  content: '';
  display: block;
  width: 15px;
  height: 10px;
  position: absolute;
  right: 30px;
  top: calc(50% - 5px);
  background: url(../img/icons/chevron.svg) no-repeat center;
  background-size: contain;
  transition: all 0.27s ease-in-out;
  transform: rotate(0deg);
}

.new-select.on {
  border-color: #36414F;
  border-bottom-color: transparent;
}

.new-select.on::after {
  transform: rotateX(180deg);
}

/*------------------------------ features ----------------------------------*/

.features {
  padding: 100px 0;
}

.features__header {
  max-width: 965px;
  margin-bottom: 50px;
}

.features__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.features__desc {
  max-width: 946px;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.features__section {
  margin-bottom: 65px;
}

.features__section:last-child {
  margin-bottom: 0;
}

.features__subtitle {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.features__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}

.features__item {
  width: calc(((100% / 16) * 3) - 20px);
}

.features__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
}

.features__name {
  margin: 0 0 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #36414F;
}

.features__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features--company {
  padding-top: 0;
}

.features--company .features__section {
  margin-bottom: 100px;
}

.features--company .features__section:last-child {
  margin-bottom: 0;
}

/*------------------------------ calc ----------------------------------*/

.calc {
  background: #36414F;
}

.calc__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.calc__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 7 - 20px);
  padding: 100px 0;
}

.calc__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5 - 20px);
  padding: 66px 0 50px;
}

.calc__title {
  margin: 0 0 60px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
}

.calc__title img {
  width: 36px;
  height: 36px;
  margin: 0 5px 0 10px;
}

.calc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 332px;
  height: 80px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.calc__btn:hover {
  background: #CB0000;
}

.calc__header {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: 70px;
}

.calc__header .calc__left {
  padding: 0;
}

.calc__header .calc__title {
  margin-bottom: 0;
}

.calc__header .calc__right {
  width: calc(100% / 12 * 3 - 20px);
  margin-left: calc(100% / 12 * 2 + 10px);
  padding: 0;
}

.calc__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
}

/*------------------------------ calc-form ----------------------------------*/

.calc-form {
  padding-bottom: 100px;
}

.calc-form__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
}

.calc-form__text a {
  color: #FFFFFF;
  text-decoration: underline;
  transition: all 0.3s linear;
}

.calc-form__text a:hover {
  color: #CB0000;
}

.calc-form__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  margin-bottom: 30px;
}

.calc-form__col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}

.calc-form__btn {
  width: 100%;
  height: 70px;
  background: #E90000;
  border: none;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}

.calc-form__btn:hover {
  background: #CB0000;
}

/*------------------------------ promo ----------------------------------*/

.promo {
  padding: 100px 0 110px;
  background: url(../img/bg-promo.jpg) center no-repeat;
  background-size: cover;
}

.promo__title {
  max-width: 600px;
  margin: 0 0 36px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
}

.promo__desc {
  max-width: 519px;
  margin: 0 0 67px;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
}

.promo__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 332px;
  height: 80px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.promo__btn:hover {
  background: #CB0000;
}

/*------------------------------ subscribe ----------------------------------*/

.subscribe {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 100px;
}

.subscribe__left {
  width: calc(50% - 170px);
  padding-left: calc((100vw - 1440px) / 2 + 10px);
}

.subscribe__right {
  width: calc(50% + 170px);
  overflow: hidden;
}

.subscribe__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #36414F;
}

.subscribe__text {
  max-width: 330px;
  margin: 0 0 70px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

/*------------------------------ msg ----------------------------------*/

.msg {
  position: relative;
  width: 424px;
  height: 340px;
  margin-left: auto;
  padding-top: 54px;
  padding-left: 74px;
  background: url(../img/icons/message.svg) left center no-repeat;
  background-size: contain;
}

.msg__text {
  position: relative;
}

.msg__text p {
  margin: 0;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.25;
  color: #36414F;
}

.msg__text:first-child {
  width: 255px;
  height: 96px;
  margin-bottom: 18px;
  padding: 21px 14px 0 29px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 42px 48px 48px 0px;
}

.msg__text:first-child::before {
  content: '';
  position: absolute;
  top: -34px;
  left: -42px;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  overflow: hidden;
  background: url(../img/img1.png) center no-repeat;
  background-size: contain;
}

.msg__text:nth-child(2) {
  width: 300px;
  height: 117px;
  margin-left: 43px;
  padding: 21px 20px 0 34px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 58px 42px 0px 58px;
}

.msg__text:nth-child(2)::before {
  content: '';
  position: absolute;
  top: -34px;
  right: -7px;
  width: 71px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  background: url(../img/img2.png) center no-repeat;
  background-size: contain;
}

/*------------------------------ footer ----------------------------------*/

.footer {
  border-top: 1px solid #E2E8ED;
}

/*------------------------------ footerbar ----------------------------------*/

.footerbar {
  border-bottom: 1px solid #E2E8ED;
}

.footerbar__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.footerbar__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
  padding: 49px 0 36px;
  border-right: 1px solid #E2E8ED;
}

.footerbar__center {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4.6 - 20px);
  margin-left: calc(100% / 12 * 0.3 + 10px);
  padding: 49px 0 36px;
}

.footerbar__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 1.1 - 20px);
  padding: 49px 0 36px;
}

/*------------------------------ f-menu ----------------------------------*/

.f-menu {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}

.f-menu__link {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.f-menu__link:hover {
  color: #E90000;
}

/*------------------------------ f-contacts ----------------------------------*/

.f-contacts {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  column-gap: 60px;
}

.f-contacts__email {
  display: inline-block;
  margin-bottom: 22px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-decoration: underline;
  color: #36414F;
  transition: all 0.3s linear;
}

.f-contacts__email:hover {
  color: #E90000;
}

.f-contacts__addr {
  padding-right: 10px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.f-contacts .office {
  margin: 0;
}

/*------------------------------ bottom ----------------------------------*/

.bottom {
  padding: 26px 0 47px;
}

.bottom__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.bottom__row p {
  margin: 0;
}

.bottom__row a {
  color: #36414F;
  text-decoration: underline;
  transition: all 0.3s linear;
}

.bottom__row a:hover {
  color: #E90000;
}

.bottom__copy {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 8.45 - 20px);
}

.bottom__text {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 12 - 20px);
}

.bottom__privacy {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3.55 - 20px);
}

/*------------------------------ breadcrumbs ----------------------------------*/

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 60px;
  column-gap: 8px;
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumbs::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 18px;
  background: linear-gradient(270deg, #FFFFFF 31.94%, rgba(255, 255, 255, 0) 161.82%);
}

.breadcrumbs__item {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #36414F;
}

.breadcrumbs__link {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  color: #868D95;
  transition: all 0.3s linear;
}

.breadcrumbs__link:hover {
  color: #E90000;
}

.breadcrumbs__link::after {
  content: '/';
  display: inline-block;
  height: 10px;
  margin-left: 8px;
  color: #868D95;
}

.breadcrumbs__back {
  font-size: 12px;
  line-height: 14px;
}

.breadcrumbs__back::after {
  content: '|';
  margin-left: 10px;
  font-size: 14px;
  line-height: 14px;
}

.breadcrumbs__back .breadcrumbs__link {
  color: #4E4E4E;
}

.breadcrumbs__back .breadcrumbs__link::after {
  display: none;
}

.breadcrumbs__back .breadcrumbs__link:hover {
  color: #000;
}

/*------------------------------ scheme ----------------------------------*/

.scheme {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.scheme__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.scheme__section {
  max-width: 1060px;
  margin-bottom: 40px;
}

.scheme__section:last-child {
  margin-bottom: 0;
}

.scheme p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.scheme p:last-child {
  margin-bottom: 0;
}

.scheme p strong {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
}

.scheme__subtitle {
  margin: 0 0 25px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.scheme ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.scheme ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.scheme ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E90000;
}

.scheme ul li:last-child {
  margin-bottom: 0;
}

/*------------------------------ warn ----------------------------------*/

.warn {
  max-width: 1060px;
  padding: 40px;
  background: #F2F6F9;
}

.warn__title {
  margin: 0 0 20px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px !important;
  line-height: 1.2;
  color: #36414F;
}

.warn ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 865px;
}

.warn ul li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.warn ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E90000;
}

.warn ul li:last-child {
  margin-bottom: 0;
}

/*------------------------------ contract ----------------------------------*/

.contract {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.contract__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.contract__text {
  padding-bottom: 5px;
}

.contract__text p {
  max-width: 990px;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.contract__text p strong {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
}

/*------------------------------ load ----------------------------------*/

.load {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  display: inline-flex;
}

.load__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-right: 15px;
  border-radius: 50%;
  background: #E90000;
  transition: all 0.3s linear;
}

.load__icon svg {
  width: 21px;
  height: 21px;
  fill: #fff;
}

.load__desc {
  width: calc(100% - 58px);
}

.load__name {
  margin: 0 0 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-decoration: underline;
  color: #36414F;
  transition: all 0.3s linear;
}

.load__file {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
  color: #828EA2;
}

.load:hover .load__icon {
  background: #CB0000;
}

.load:hover .load__name {
  color: #5A6C83;
}

/*------------------------------ promo-carousel ----------------------------------*/

.promo-carousel .slick-slide {
  padding: 0 10px;
}

.promo-carousel .slick-slide a {
  display: block;
  width: 610px;
  height: 325px;
  opacity: 1;
  transition: height 0.3s;
}

.promo-carousel .slick-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.promo-carousel .slick-current + .slick-slide a {
  width: 424px;
  height: 237px;
  opacity: 1;
}

.promo-carousel .slick-current + .slick-slide + .slick-slide a {
  width: 424px;
  height: 237px;
  opacity: 0.2;
}

.promo-carousel .slick-current + .slick-slide + .slick-slide + .slick-slide a {
  width: 424px;
  height: 237px;
  opacity: 0.2;
}

.promo-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  bottom: 18px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.promo-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
}

.promo-carousel .slick-arrow.prev {
  left: 660px;
}

.promo-carousel .slick-arrow.next {
  left: 694px;
}

/*------------------------------ m-news ----------------------------------*/

.m-news {
  margin: 100px 0;
}

.m-news__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.m-news__title {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.m-news__all {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.m-news__all:hover {
  color: #E90000;
}

/*------------------------------ news-grid ----------------------------------*/

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 237px 149px 237px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.news-grid__item:first-child {
  grid-area: 1 / 1 / 4 / 3;
}

.news-grid__item:nth-child(2) {
  grid-area: 1 / 3 / 3 / 4;
}

.news-grid__item:nth-child(3) {
  grid-area: 1 / 4 / 2 / 5;
}

.news-grid__item:nth-child(4) {
  grid-area: 3 / 3 / 4 / 4;
}

.news-grid__item:nth-child(5) {
  grid-area: 2 / 4 / 4 / 5;
}

.news-grid--inverse .news-grid__item:first-child {
  grid-area: 1 / 3 / 4 / 5;
}

.news-grid--inverse .news-grid__item:nth-child(2) {
  grid-area: 1 / 1 / 3 / 2;
}

.news-grid--inverse .news-grid__item:nth-child(3) {
  grid-area: 1 / 2 / 2 / 3;
}

.news-grid--inverse .news-grid__item:nth-child(4) {
  grid-area: 3 / 1 / 4 / 2;
}

.news-grid--inverse .news-grid__item:nth-child(5) {
  grid-area: 2 / 2 / 4 / 3;
}

/*------------------------------ news-card ----------------------------------*/

.news-card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.news-card__img {
  height: 100%;
  transition: all 0.3s linear;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 32px;
  padding: 12px 15px;
  background: rgba(54, 65, 79, 0.4);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 8px;
}

.news-card__title {
  margin: 0 0 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.news-card__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}

.news-card__see {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  margin-right: 10px;
}

.news-card__see svg {
  width: 14px;
  height: 9px;
  margin-right: 7px;
  fill: #fff;
}

.news-card__com {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.news-card__com svg {
  width: 14px;
  height: 12px;
  margin-right: 7px;
  fill: #fff;
}

.news-card__cat::before {
  content: '|';
  position: relative;
  bottom: 3px;
  display: inline;
  vertical-align: middle;
  margin: 0 5px;
}

.news-card--lg .news-card__content {
  bottom: 20px;
  left: 20px;
  max-width: 490px;
  padding: 25px;
}

.news-card--lg .news-card__title {
  font-size: 32px;
  line-height: 40px;
}

.news-card:hover .news-card__img {
  transform: scale(1.2);
}

/*------------------------------ news ----------------------------------*/

.news {
  margin-bottom: 100px;
}

.news__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.news__nav {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  column-gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  overflow-x: auto;
}

.news__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 22px;
  background-color: transparent;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  white-space: nowrap;
  transition: all 0.3s linear;
}

.news__link.active {
  color: #fff;
  background: #E90000;
}

.news__link:hover {
  color: #E90000;
}

.news__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 60px;
}

/*------------------------------ pagination ----------------------------------*/

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.pagination__arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 20px;
  margin: 0 10px;
}

.pagination__arr svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.pagination__arr:hover svg {
  fill: #E90000;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #36414F;
  transition: all 0.3s linear;
}

.pagination__link:hover,
.pagination__link.current {
  color: #E90000;
}

/*------------------------------ m-reviews ----------------------------------*/

.m-reviews {
  position: relative;
  margin-bottom: 100px;
  padding: 100px 0 114px;
  background: #F2F6F9;
}

.m-reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 40px;
  margin-bottom: 52px;
}

.m-reviews__title {
  margin: 0 auto 0 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.m-reviews__all {
  flex: none;
  display: inline-block;
  margin-right: 120px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.m-reviews__all:hover {
  color: #E90000;
}

.m-reviews__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: calc((100% - 1440px) / 2 + 303px);
  top: 100px;
  z-index: 100;
  width: 200px;
  height: 55px;
  margin-right: 63px;
  background: #DA251E;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.m-reviews__btn:hover {
  background: #CB0000;
}

/*------------------------------ reviews-carousel ----------------------------------*/

.reviews-carousel {
  margin: 0 -10px;
}

.reviews-carousel .item {
  padding: 0 10px;
}

.reviews-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -91px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

.reviews-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.reviews-carousel .slick-arrow:hover svg {
  fill: #DA251E;
}

.reviews-carousel .slick-arrow.prev {
  right: 43px;
}

.reviews-carousel .slick-arrow.next {
  right: 10px;
}

/*------------------------------ review ----------------------------------*/

.review {
  border: 1px solid #E2E8ED;
  border-radius: 10px;
}

.review__img {
  height: 186px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

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

.review__content {
  padding: 30px 30px 35px;
  background: #FFFFFF;
  border-radius: 0 0 10px 10px;
}

.review__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.review__author {
  width: calc(100% - 92px);
  margin: 0;
  padding-right: 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #36414F;
}

.review__rating {
  width: 92px;
}

.review__car {
  order: 3;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.review__link {
  order: 4;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
  color: #36414F;
  transition: all 0.3s linear;
}

.review__link:hover {
  color: #E90000;
}

.review__toggle {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E90000;
  transition: all 0.3s linear;
}

.review__toggle:hover {
  color: #CB0000;
}

.review__wrap {
  position: relative;
  height: 148px;
  margin-bottom: 35px;
  overflow: hidden;
  transition: all 0.3s linear;
}

.review__wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 46px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  transition: all 0.3s linear;
}

.review__wrap.open::before {
  opacity: 0;
}

.review__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #36414F;
}

/*------------------------------ rating ----------------------------------*/

.rating {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 92px;
}

.rating__item {
  width: 15px;
  height: 15px;
}

.rating__item svg {
  width: 100%;
  height: 100%;
  fill: #C5CDD5;
}

.rating__item.full svg {
  fill: #16B326;
}

/*------------------------------ reviews ----------------------------------*/

.reviews {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.reviews__title {
  margin: 0 auto 0 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.reviews__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 55px;
  background: #DA251E;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.reviews__btn:hover {
  background: #CB0000;
}

.reviews__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  margin-bottom: 35px;
}

.reviews__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}

.reviews__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 79px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.reviews__more svg {
  width: 17px;
  height: 17px;
  margin-right: 27px;
  fill: #36414F;
}

.reviews__more:hover {
  border-color: #36414F;
}

/*------------------------------ m-instock ----------------------------------*/

.m-instock {
  padding: 100px 0;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.m-instock--bt {
  border-bottom: none;
  border-top: 1px solid rgba(54, 65, 79, 0.2);
}

.m-instock__title {
  margin: 0 0 50px;
  padding-right: 80px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

/*------------------------------ instock-carousel ----------------------------------*/

.instock-carousel {
  margin: 0 -10px;
}

.instock-carousel .slick-list {
  overflow: visible;
}

.instock-carousel .item {
  padding: 0 10px;
}

.instock-carousel .slick-slide {
  opacity: 0.2;
  transition: all 0.3s linear;
}

.instock-carousel .slick-slide.slick-active {
  opacity: 1;
}

.instock-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -91px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

.instock-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.instock-carousel .slick-arrow:hover svg {
  fill: #DA251E;
}

.instock-carousel .slick-arrow.prev {
  right: 43px;
}

.instock-carousel .slick-arrow.next {
  right: 10px;
}

.instock-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 35px;
  background-color: #E2E8ED;
}

.instock-carousel .slick-dots li {
  flex-grow: 1;
  height: 4px;
}

.instock-carousel .slick-dots li button {
  display: block;
  width: 100%;
  height: 4px;
  padding: 0;
  font-size: 0;
  border: none;
  background-color: transparent;
  transition: all 0.3s linear;
}

.instock-carousel .slick-dots li.slick-active button {
  background-color: #E90000;
}

/*------------------------------ card-stock ----------------------------------*/

.card-stock {
  display: block;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.card-stock:hover {
  box-shadow: 0px 7px 40px -13px rgba(54, 65, 79, 0.2);
}

.card-stock__img {
  position: relative;
  height: 249px;
  overflow: hidden;
}

.card-stock__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px 9px 0px 0px;
}

.card-stock__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 15px;
  bottom: 15px;
  height: 32px;
  padding: 0 10px;
  background: #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.card-stock__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 135px;
  bottom: 15px;
  height: 32px;
  padding: 0 10px;
  background: #fff;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #E90000;
}

.card-stock__way {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 135px;
  bottom: 15px;
  height: 32px;
  padding: 0 10px;
  background: #C5CDD5;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.card-stock__sold {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  left: 15px;
  bottom: 15px;
  height: 32px;
  padding: 0 10px;
  background: #545454;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.card-stock__desc {
  padding: 25px 25px 20px;
}

.card-stock__title {
  margin: 0 0 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #36414F;
}

.card-stock__title span {
  display: block;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #828EA2;
}

.card-stock__info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 7px;
}

.card-stock__info span {
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.card-stock__info span::after {
  content: '|';
  position: relative;
  bottom: 1px;
  margin-left: 7px;
}

.card-stock--sold .card-stock__img img {
  opacity: 0.2;
  filter: saturate(0);
}

/*------------------------------ hits ----------------------------------*/

.hits {
  padding: 100px 0;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.hits__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.hits__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 79px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.hits__more svg {
  width: 17px;
  height: 17px;
  margin-right: 27px;
  fill: #36414F;
}

.hits__more:hover {
  border-color: #36414F;
}

.hits__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 25px;
  margin-bottom: 35px;
}

.hits__item {
  width: calc((100% - 25px * 4) / 5);
}

/*------------------------------ card-hit ----------------------------------*/

.card-hit {
  display: block;
  padding: 25px 30px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.card-hit__title {
  margin: 0 0 8px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #36414F;
  transition: all 0.3s linear;
}

.card-hit__info {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.2;
  color: #36414F;
}

.card-hit__info span {
  display: block;
}

.card-hit__img {
  height: 190px;
  margin-bottom: 5px;
}

.card-hit__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-hit__price {
  margin: 0 0 4px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #E90000;
}

.card-hit__offers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #36414F;
}

.card-hit__offers svg {
  width: 5px;
  height: 9px;
  margin-top: 2px;
  margin-left: 10px;
  fill: #36414F;
}

.card-hit:hover {
  box-shadow: 0px 7px 40px -13px rgba(54, 65, 79, 0.2);
}

.card-hit:hover .card-hit__title {
  color: #E90000;
}

/*------------------------------ filter ----------------------------------*/

.filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
  row-gap: 30px;
  margin-bottom: 50px;
}

.filter__menu {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  column-gap: 10px;
  overflow-y: auto;
}

.filter__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 18px;
  border-radius: 86px;
  background-color: transparent;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  white-space: nowrap;
  transition: all 0.3s linear;
}

.filter__item:hover {
  color: #E90000;
}

.filter__item.current {
  background-color: #E90000;
  color: #FFFFFF;
}

.filter__hybrid {
  position: relative;
}

.filter__hybrid label {
  display: block;
  position: relative;
  padding-left: 34px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
  cursor: pointer;
}

.filter__hybrid label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid #D4DBE1;
  border-radius: 3px;
  background-color: #ffffff;
}

.filter__hybrid input {
  display: none;
}

.filter__hybrid input:checked + label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  display: block;
  width: 14px;
  height: 14px;
  background: #E90000;
  border-radius: 1px;
}

/*------------------------------ range-price ----------------------------------*/

.range-price {
  width: 380px;
  height: 4px;
  background: #E2E8ED;
}

.range-price.ui-widget-content {
  border: none;
  border-radius: 0;
}

.range-price .ui-slider-range {
  background-color: #E90000;
}

.range-price .ui-slider-handle {
  top: -30px;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0;
  transform: translateX(-50%);
  padding: 2px 5px;
  border: none;
  border-radius: 0;
  background: #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #FFFFFF;
}

.range-price .ui-slider-handle:focus {
  outline: none;
}

.range-price .ui-slider-handle::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid #E90000;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.range-price .ui-slider-handle::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E90000;
}

/*------------------------------ catalog ----------------------------------*/

.catalog__title {
  max-width: 960px;
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.catalog__text {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.25;
  color: #36414F;
}

.catalog__text strong {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
}

.catalog__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: stretch;
  row-gap: 20px;
  margin-bottom: 70px;
}

.catalog__row .slick-track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.catalog__row .slick-slide {
  width: 340px;
  height: auto;
}

.catalog__row .slick-arrow {
  position: absolute;
  z-index: 10;
  bottom: -40px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.catalog__row .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
}

.catalog__row .slick-arrow.prev {
  right: 34px;
}

.catalog__row .slick-arrow.next {
  right: 0;
}

.catalog__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}

.catalog__footer {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 40px;
  margin-bottom: 100px;
}

.catalog__footer .catalog__text {
  width: calc(100% - 380px);
  max-width: 686px;
}

.catalog__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 74px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.catalog__btn:hover {
  background: #CB0000;
}

/*------------------------------ mobile-header ----------------------------------*/

.mobile-header {
  display: none;
  margin-left: auto;
}

.mobile-header__whatsapp {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 25px;
}

.mobile-header__whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-header__tel {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 25px;
}

.mobile-header__tel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 40px;
  height: 40px;
  row-gap: 5px;
}

.mobile-header__burger span {
  width: 24px;
  height: 2px;
  background: #36414F;
}

/*------------------------------ dropdown ----------------------------------*/

.dropdown {
  position: fixed;
  z-index: 7500;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: #FFFFFF;
  transition: all 0.3s linear;
}

.dropdown.open {
  left: 0;
}

.dropdown__section {
  padding: 15px 0;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.dropdown__section:nth-child(2) {
  padding: 10px 0;
}

.dropdown__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dropdown__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.dropdown__close svg {
  width: 19px;
  height: 19px;
  fill: #36414F;
}

.dropdown__menu {
  padding: 20px 0;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.dropdown__footer {
  padding: 20px 0;
}

.dropdown__email {
  display: inline-block;
  margin: 20px 0;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-decoration: underline;
  color: #36414F;
}

.dropdown__addr {
  margin-bottom: 25px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

/*------------------------------ catalog-filter ----------------------------------*/

.catalog-filter {
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 40px;
  background: #F2F6F9;
  box-shadow: 0px 7px 40px -13px rgba(54, 65, 79, 0.2);
}

.catalog-filter__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  align-items: flex-end;
}

.catalog-filter__item {
  width: calc((100% - 48px) / 4);
}

.catalog-filter__item--lg {
  width: calc((100% - 48px) / 2 + 16px);
}

.catalog-filter__item--hidden {
  display: none;
}

.catalog-filter__item--btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.catalog-filter__item--btns .catalog-filter__btn {
  width: calc(100% - 54px);
}

.catalog-filter__btn {
  width: 100%;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  border: none;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}

.catalog-filter__btn:hover {
  background: #CB0000;
}

.catalog-filter__input {
  display: block;
  width: calc(50% - 17px);
}

.catalog-filter__input span {
  display: block;
  margin-bottom: 5px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #828EA2;
}

.catalog-filter__input input {
  width: 100%;
  height: 60px;
  padding: 0 28px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #828EA2;
}

.catalog-filter__input input::placeholder {
  color: #bbbbbb;
}

.catalog-filter__group {
  display: flex;
  column-gap: 34px;
  position: relative;
  width: 100%;
}

.catalog-filter__group::before {
  content: '\2014';
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
}

.catalog-filter__link {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 24px;
  height: 24px;
  margin: 0;
}

.catalog-filter__link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #E90000;
  stroke-width: 2px;
}

.catalog-filter__col {
  width: calc((100% - 40px) / 3);
}

.catalog-filter__col .select {
  width: 100%;
  max-width: none;
}

.catalog-filter__col .catalog-filter__year {
  width: calc(50% - 17px);
}

.catalog-filter__toggle {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #36414F;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
  transition: all 0.3s linear;
}

.catalog-filter__toggle:hover {
  border-color: #E90000;
  color: #E90000;
}

.catalog-filter__checkbox {
  position: relative;
  margin-bottom: 18px;
}

.catalog-filter__checkbox label {
  display: block;
  position: relative;
  padding-left: 34px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #828EA2;
  cursor: pointer;
}

.catalog-filter__checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border: 1px solid #D4DBE1;
  border-radius: 3px;
  background-color: #ffffff;
}

.catalog-filter__checkbox input {
  display: none;
}

.catalog-filter__checkbox input:checked + label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  display: block;
  width: 14px;
  height: 14px;
  background: #E90000;
  border-radius: 1px;
}

.catalog-filter__radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 15px;
}

.catalog-filter__radio label {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}

.catalog-filter__radio label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.catalog-filter__radio input {
  display: none;
}

.catalog-filter__radio input:checked + label {
  outline: 2px solid #E90000;
}

.catalog-filter__radio--text {
  margin-right: 10px;
}

.catalog-filter__radio--text label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  border: 2px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
  background-color: #fff;
}

.catalog-filter__radio--text input:checked + label {
  border-color: #E90000;
  outline: none;
}

/*------------------------------ company ----------------------------------*/

.company {
  margin-bottom: 100px;
}

.company__img {
  position: relative;
  margin-bottom: 129px;
}

.company__logo {
  position: absolute;
  bottom: -69px;
  left: 50%;
  transform: translateX(-50%);
  width: 184px;
  height: 176px;
}

.company__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.company__text {
  max-width: 1166px;
}

.company__text p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.company__text p:last-child {
  margin-bottom: 0;
}

/*------------------------------ team ----------------------------------*/

.team {
  margin-bottom: 116px;
}

.team__title {
  margin: 0 0 60px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.team__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 60px;
  row-gap: 76px;
}

.team__row .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -58px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
}

.team__row .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
}

.team__row .slick-arrow.prev {
  right: 42px;
}

.team__row .slick-arrow.next {
  right: 0;
}

.team__item {
  position: relative;
  width: 374px;
  height: 428px;
  padding: 14px 24px 0;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
}

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

.team__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.team__info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  position: absolute;
  z-index: 10;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 286px;
  height: 102px;
  padding: 6px 16px;
  background: url(../img/icons/bg-team.svg) center no-repeat;
  background-size: contain;
}

.team__name {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.team__role {
  margin: 0 0 3px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
}

.team__tel {
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #FFFFFF;
}

/*------------------------------ profi ----------------------------------*/

.profi {
  margin-bottom: 100px;
}

.profi__row {
  display: flex;
  flex-wrap: wrap;
}

.profi__left {
  position: relative;
  width: 63.4%;
  padding: 100px 110px 100px 0;
  background: #F2F6F9;
}

.profi__left::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 99%;
  width: 500px;
  height: 100%;
  background: #F2F6F9;
}

.profi__left::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 99%;
  display: none;
  width: 100px;
  height: 100%;
  background: #F2F6F9;
}

.profi__right {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 36.6%;
  padding: 20px 0 20px 90px;
  background: #36414F;
}

.profi__right::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 99%;
  display: none;
  width: 100px;
  height: 100%;
  background: #36414F;
}

.profi__right::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 99%;
  width: 500px;
  height: 100%;
  background: #36414F;
}

.profi__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.profi__text {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.profi__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 16px;
}

.profi__item {
  width: calc(50% - 8px);
  padding-left: 34px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #36414F;
  background: url(../img/icons/check-circle.svg) left 3px no-repeat;
  background-size: 20px;
}

/*------------------------------ call ----------------------------------*/

.call__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #FFFFFF;
}

.call__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 271px;
  height: 74px;
  margin-top: 35px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.call__btn:hover {
  background: #CB0000;
}

/*------------------------------ instock ----------------------------------*/

.instock {
  margin-bottom: 100px;
}

.instock__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.instock__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  margin-bottom: 60px;
  padding-top: 20px;
}

.instock__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}

/*------------------------------ contacts ----------------------------------*/

.contacts {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.contacts__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.contacts__nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 14px;
  margin-bottom: 40px;
}

.contacts__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 22px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  background-color: transparent;
  transition: all 0.3s linear;
}

.contacts__link:hover {
  color: #E90000;
}

.contacts__link.active {
  background: #E90000;
  color: #fff;
}

.contacts__tab {
  display: none;
}

.contacts__tab.active {
  display: block;
}

.contacts__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 60px;
  margin-bottom: 50px;
}

.contacts .office {
  margin: 0;
}

.contacts__addr {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #36414F;
}

.contacts__addr svg {
  width: 18px;
  height: 15px;
  margin-right: 10px;
  margin-top: 4px;
  fill: #E90000;
}

.contacts__email {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #36414F;
  text-decoration: underline;
  transition: all 0.3s linear;
}

.contacts__email svg {
  width: 18px;
  height: 13px;
  margin-right: 10px;
  margin-top: 4px;
  fill: #E90000;
}

.contacts__email:hover {
  color: #E90000;
}

/*------------------------------ map ----------------------------------*/

.map {
  height: 515px;
  border-radius: 10px;
  overflow: hidden;
}

/*------------------------------ statistics ----------------------------------*/

.statistics {
  margin-bottom: 100px;
}

.statistics__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.statistics .brands {
  max-width: 940px;
}

/*------------------------------ brands ----------------------------------*/

.brands {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  max-width: 1180px;
}

.brands__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: none;
  width: 220px;
  height: 70px;
  padding: 0 15px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
  transition: all 0.3s linear;
}

.brands__item img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: contain;
}

.brands__item:hover {
  box-shadow: 0px 7px 18px -13px rgba(54, 65, 79, 0.1);
}

/*------------------------------ alphabet ----------------------------------*/

.alphabet {
  margin-top: 50px;
}

.alphabet__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 60px;
  max-width: 1260px;
}

.alphabet__row:last-child {
  margin-bottom: 0;
}

.alphabet__col {
  width: calc(100% / 7);
}

.alphabet__title {
  margin: 0 0 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
  text-transform: uppercase;
}

.alphabet__wrap {
  max-height: 135px;
  overflow: hidden;
  transition: all 0.3s linear;
}

.alphabet__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.alphabet__link {
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
  transition: all 0.3s linear;
}

.alphabet__link:hover {
  color: #E90000;
}

.alphabet__all {
  display: inline-block;
  margin-top: 5px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #868D95;
  text-decoration: underline;
  -webkit-text-decoration-style: dashed;
  text-decoration-style: dashed;
}

.alphabet__all:hover {
  color: #E90000;
}

/*------------------------------ product ----------------------------------*/

.product {
  padding-bottom: 100px;
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  align-content: start;
  align-items: start;
  margin-bottom: 60px;
}

.product__header {
  grid-area: 1 / 7 / 2 / 13;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.product__header--nobb {
  border-bottom: none;
}

.product__left {
  grid-area: 1 / 1 / 4 / 7;
}

.product__right {
  grid-area: 2 / 7 / 3 / 13;
}

.product__footer {
  grid-area: 3 / 7 / 4 / 13;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(54, 65, 79, 0.2);
}

.product__footer--nobt {
  border-top: none;
  margin-top: 30px;
  padding: 0;
}

.product__instock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}

.product__instock span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #E90000;
}

.product__view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.product__view svg {
  width: 18px;
  height: 10px;
  fill: #36414F;
}

.product__title {
  margin: 0 0 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.product__title--ad {
  max-width: 1130px;
  margin-bottom: 50px;
}

.product__info {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #36414F;
}

.product__bottom {
  display: grid;
  grid-template-columns: 242px auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 30px;
}

.product__price {
  grid-area: 1 / 1 / 2 / 3;
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  color: #36414F;
}

.product__btn {
  grid-area: 2 / 1 / 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 242px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.product__btn:hover {
  background: #CB0000;
}

.product__ask {
  grid-area: 2 / 2 / 3 / 3;
  justify-self: start;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.product__ask:hover {
  border-bottom-color: transparent;
  color: #E90000;
}

.product__date {
  margin-top: 20px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
}

.product__date time {
  margin-left: 3px;
  font-family: 'Gilroy';
  font-weight: 400;
}

.product__bottom-flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 10px;
}

.product__bottom-flex .product__btn {
  width: 218px;
}

.product__b-text {
  width: calc(100% - 244px);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #36414F;
}

.product__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.product__row .product__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
}

.product__row .product__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 6 - 20px);
}

/*------------------------------ data ----------------------------------*/

.data {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 70px;
  grid-row-gap: 20px;
}

.data__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.data__item span {
  display: block;
}

.data__item span:first-child {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.25;
  color: #868D95;
}

.data__item span:nth-child(2) {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #36414F;
}

/*------------------------------ desc ----------------------------------*/

.desc {
  margin-bottom: 70px;
}

.desc__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.desc__subtitle {
  margin: 0 0 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.desc__text {
  margin-bottom: 30px;
}

.desc__text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.desc__text p strong {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
}

.desc__text p a {
  color: #E90000;
  text-decoration: underline;
  transition: all 0.3s linear;
}

.desc__text p a:hover {
  color: #CB0000;
}

.desc__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

/*------------------------------ guide ----------------------------------*/

.guide__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 50px;
  margin-bottom: 40px;
}

.guide__title {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.guide__link {
  display: inline-block;
  margin-top: 4px;
  padding-bottom: 5px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.guide__link:hover {
  border-bottom-color: transparent;
  color: #E90000;
}

.guide__list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-right: 90px;
  column-count: 2;
  column-gap: 90px;
}

.guide__list li {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.guide__list li strong {
  margin-right: 4px;
  font-family: 'Gilroy Semibold';
  font-weight: 600;
}

.guide__toggle {
  display: none;
  margin-top: 15px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #36414F;
  border-bottom: 1px dashed #36414F;
}

/*------------------------------ gallery ----------------------------------*/

.gallery {
  position: relative;
  width: 630px;
}

.gallery__label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  z-index: 10;
  top: 15px;
  left: 15px;
  height: 52px;
  padding: 0 20px;
  background: rgba(54, 65, 79, 0.4);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  border-radius: 8px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}

.gallery__carousel {
  margin-bottom: 10px;
}

.gallery__item {
  display: block;
  height: 412px;
  border-radius: 10px;
  overflow: hidden;
}

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

.gallery__thumbs .slick-list {
  padding: 2px;
}

.gallery__thumbs .item {
  width: 118px;
  height: 80px;
  margin: 0 5px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery__thumbs .item.slick-current {
  outline: 2px solid #E90000;
}

.gallery__thumbs .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__thumbs .slick-arrow {
  position: absolute;
  z-index: 100;
  bottom: -8px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}

.gallery__thumbs .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.gallery__thumbs .slick-arrow:hover svg {
  fill: #E90000;
}

.gallery__thumbs .slick-arrow.prev {
  right: 34px;
}

.gallery__thumbs .slick-arrow.next {
  right: 0;
}

.gallery__thumbs .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: calc(100% - 86px);
  margin-top: 35px;
  background-color: #E2E8ED;
}

.gallery__thumbs .slick-dots li {
  flex-grow: 1;
  height: 3px;
}

.gallery__thumbs .slick-dots li button {
  display: block;
  width: 100%;
  height: 3px;
  padding: 0;
  font-size: 0;
  border: none;
  background-color: transparent;
  transition: all 0.3s linear;
}

.gallery__thumbs .slick-dots li.slick-active button {
  background-color: #E90000;
}

/*------------------------------ seo-text ----------------------------------*/

.seo-text {
  padding: 100px 0;
  background: #F2F6F9;
}

.seo-text__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.seo-text__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

/*------------------------------ stat-catalog ----------------------------------*/

.stat-catalog {
  margin-top: 60px;
  margin-bottom: 80px;
}

.stat-catalog__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  column-gap: 25px;
  row-gap: 25px;
  margin-bottom: 60px;
}

.stat-catalog__item {
  width: calc((100% - 25px * 4) / 5);
}

/*------------------------------ sort ----------------------------------*/

.sort {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  column-gap: 30px;
  margin: 0 -15px 30px;
  padding: 0 15px 10px;
  overflow-x: auto;
}

.sort__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 8px;
}

.sort__label {
  font-size: 16px;
  line-height: 1.25;
  color: #36414F;
}

.sort__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.sort__toggle svg {
  width: 20px;
  height: 16px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.sort__toggle:hover svg {
  fill: #E90000;
}

.sort__toggle.up svg {
  transform: rotateX(180deg);
}

/*------------------------------ card-stat ----------------------------------*/

.card-stat {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
}

.card-stat__header {
  flex: none;
  position: relative;
}

.card-stat__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
  height: 26px;
  padding: 0 8px;
  background: #FFFFFF;
  border-radius: 5px;
}

.card-stat__rating svg {
  width: 15px;
  height: 15px;
  fill: #16B226;
}

.card-stat__rating span {
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #16B226;
}

.card-stat__mileage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  bottom: 10px;
  right: 10px;
  height: 26px;
  padding: 0 8px;
  background: #FFFFFF;
  border-radius: 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #36414F;
}

.card-stat__body {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  padding: 15px 20px;
}

.card-stat__footer {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #E2E8ED;
}

.card-stat__lot {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 5px;
  width: 100px;
}

.card-stat__lot span {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(54, 65, 79, 0.7);
  opacity: 0.7;
}

.card-stat__auction {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.card-stat__auction span {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(54, 65, 79, 0.7);
  opacity: 0.7;
}

.card-stat__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #E90000;
}

.card-stat__question {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.card-stat__question svg {
  width: 16px;
  height: 16px;
  fill: #36414F;
  opacity: 0.7;
  transition: all 0.3s linear;
}

.card-stat__question:hover svg {
  fill: #E90000;
}

.card-stat__auto {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  justify-content: space-between;
  column-gap: 15px;
  margin-bottom: 15px;
}

.card-stat__title {
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.card-stat__year {
  margin-top: 6px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #36414F;
}

.card-stat__info {
  position: relative;
  padding: 0 10px;
  cursor: pointer;
}

/*------------------------------ card-carousel ----------------------------------*/

.card-carousel .item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.65;
  border-radius: 10px 10px 0px 0px;
}

.card-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  position: absolute;
  z-index: 10;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  background: rgba(54, 65, 79, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

.card-carousel .slick-dots li {
  width: 8px;
  height: 8px;
}

.card-carousel .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0.4;
  font-size: 0;
}

.card-carousel .slick-dots li.slick-active button {
  opacity: 1;
}

/*------------------------------ card-data ----------------------------------*/

.card-data {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  column-gap: 15px;
  margin-bottom: 10px;
}

.card-data__col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 5px;
}

.card-data__col span {
  white-space: nowrap;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(54, 65, 79, 0.7);
}

.card-data__col:nth-child(3) span {
  white-space: normal;
}

/*------------------------------ stat-search ----------------------------------*/

.stat-search {
  margin-bottom: 100px;
}

.stat-search__item {
  margin-bottom: 50px;
}

.stat-search__item:last-child {
  margin-bottom: 0;
}

.stat-search__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.stat-search__row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 45px;
}

.stat-search__link {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.stat-search__link:hover {
  color: #E90000;
}

/*------------------------------ total-sum ----------------------------------*/

.total-sum {
  margin-bottom: 30px;
}

.total-sum__warn {
  margin: 0;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: #E90000;
}

.total-sum__table {
  max-width: 520px;
  margin-bottom: 15px;
}

.total-sum__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.total-sum__header span {
  font-size: 16px;
  line-height: 1.25;
  color: #868D95;
}

.total-sum__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
}

.total-sum__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(54, 65, 79, 0.5);
}

.total-sum__item span {
  position: relative;
  top: 3px;
  padding-left: 3px;
  background-color: #fff;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #36414F;
}

.total-sum__item span:first-child {
  padding-left: 0;
  padding-right: 3px;
  font-family: 'Gilroy';
  font-weight: 400;
}

/*------------------------------ translate ----------------------------------*/

.translate {
  margin-bottom: 90px;
  padding: 100px 0;
  background: #F2F6F9;
}

.translate__grid {
  display: grid;
  grid-template-columns: 720px 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 90px;
  grid-row-gap: 0px;
  align-content: start;
  align-items: start;
}

.translate__left {
  grid-area: 1 / 1 / 2 / 2;
}

.translate__right {
  grid-area: 1 / 2 / 3 / 3;
}

.translate__footer {
  grid-area: 2 / 1 / 3 / 2;
}

.translate__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.translate__text {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.translate__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
}

.translate__list li {
  padding-left: 36px;
  margin-bottom: 17px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  color: #36414F;
  background: url(../img/icons/check-circle.svg) 2px 2px no-repeat;
  background-size: 20px;
}

.translate__list li:last-child {
  margin-bottom: 0;
}

.translate__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: 15px;
}

.translate__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 296px;
  height: 74px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.translate__btn:hover {
  background: #CB0000;
}

.translate__price {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #36414F;
}

.translate__img {
  margin-bottom: 20px;
}

/*------------------------------ analogs ----------------------------------*/

.analogs {
  margin-bottom: 100px;
}

.analogs__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.analogs .stat-catalog {
  margin: 0;
}

.analogs__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
  margin-bottom: 35px;
}

.analogs__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}

.analogs__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.analogs__btn svg {
  width: 17px;
  height: 17px;
  margin-right: 27px;
  fill: #36414F;
}

.analogs__btn span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
}

.analogs__btn:hover {
  border-color: #36414F;
}

/*------------------------------ card ----------------------------------*/

.card {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  padding: 25px 25px 30px 35px;
  border: 1px solid #E2E8ED;
  outline: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.card:hover {
  border-color: transparent;
  outline-color: #E90000;
}

.card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: nowrap;
  column-gap: 15px;
  margin-bottom: 7px;
}

.card__title {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #36414F;
}

.card__price {
  flex: none;
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #E90000;
}

.card__info {
  max-width: 240px;
  margin-bottom: 5px;
}

.card__info span {
  display: inline-block;
  margin-right: 4px;
  font-size: 16px;
  line-height: 1.2;
  color: #36414F;
}

.card__info:last-child {
  margin-bottom: 0;
}

.card__info:last-child span {
  display: block;
}

.card__img {
  height: 180px;
  margin: auto 0 10px;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*------------------------------ video ----------------------------------*/

.video {
  margin-bottom: 100px;
  padding: 100px 0;
  background: #F2F6F9;
}

.video__title {
  margin: 0 0 60px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.video__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.video__row .slick-slide {
  width: 340px;
}

.video__row .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -58px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.video__row .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
}

.video__row .slick-arrow.prev {
  right: 34px;
}

.video__row .slick-arrow.next {
  right: 0;
}

.video__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
  position: relative;
  display: block;
  height: 221px;
  border-radius: 10px;
  overflow: hidden;
}

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

.video__item:hover .video__icon svg {
  fill: #CB0000;
}

.video__icon {
  position: absolute;
  top: 76px;
  left: calc(50% - 25px);
  width: 50px;
  height: 38px;
}

.video__icon svg {
  width: 100%;
  height: 100%;
  fill: #FF2F2F;
  transition: all 0.3s linear;
}

.video__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video__desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 63px;
  padding: 10px 20px;
  background: rgba(54, 65, 79, 0.4);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.video__desc p {
  max-width: 250px;
  margin: 0;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

/*------------------------------ price ----------------------------------*/

.price {
  margin-bottom: 100px;
}

.price__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.price__text {
  max-width: 913px;
  margin: 0 0 58px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.price__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  height: 74px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.price__btn:hover {
  background-color: #cb0000;
}

/*------------------------------ condition ----------------------------------*/

.condition {
  margin-bottom: 60px;
}

.condition__title {
  margin: 0 0 45px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.condition__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 20px;
}

.condition__radio {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
}

.condition__radio label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 9px;
  width: 100%;
  height: 105px;
  padding: 20px 25px;
  border: 1px solid #E2E8ED;
  outline: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.condition__radio input {
  display: none;
}

.condition__radio input:checked + label {
  border-color: transparent;
  outline-color: #E90000;
}

.condition__text {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #36414F;
}

.condition__price {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #E90000;
}

.condition__rating {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 100%;
}

/*------------------------------ modification ----------------------------------*/

.modification__title {
  margin: 0 0 25px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.modification__row {
  display: flex;
}

.modification__left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 23px;
  width: 160px;
  padding-top: 76px;
}

.modification__left span {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(54, 65, 79, 0.7);
}

.modification__left span:first-child {
  margin-bottom: 22px;
}

.modification__right {
  width: calc(100% - 160px);
}

/*------------------------------ mod-carousel ----------------------------------*/

.mod-carousel {
  position: relative;
  margin-bottom: 84px;
  padding-left: 1px;
  padding-right: 1px;
}

.mod-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  position: absolute;
  bottom: -34px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #E2E8ED;
}

.mod-carousel .slick-dots li {
  flex-grow: 1;
  height: 100%;
}

.mod-carousel .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 0;
  transition: all 0.3s linear;
}

.mod-carousel .slick-dots li.slick-active button {
  background-color: #E90000;
}

.mod-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -54px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: none;
  background-color: transparent;
  cursor: pointer;
}

.mod-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.mod-carousel .slick-arrow:hover svg {
  fill: #E90000;
}

.mod-carousel .slick-arrow.prev {
  right: 34px;
}

.mod-carousel .slick-arrow.next {
  right: 0;
}

/*------------------------------ mod-radio ----------------------------------*/

.mod-radio label {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 20px;
  position: relative;
  z-index: 10;
  width: 210px;
  height: 293px;
  padding: 20px 28px 13px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
}

.mod-radio label::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -2px;
  top: 20px;
  bottom: 13px;
  width: 1px;
  background-color: #E2E8ED;
}

.mod-radio label::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 20px;
  bottom: 13px;
  width: 1px;
  background-color: #E2E8ED;
}

.mod-radio label span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.42;
  color: #36414F;
}

.mod-radio label span:first-child {
  color: #E90000;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
}

.mod-radio input {
  display: none;
}

.mod-radio input:checked + label {
  border-color: #E90000;
}

.mod-radio input:checked + label::before {
  opacity: 0;
}

/*------------------------------ purchased ----------------------------------*/

.purchased {
  margin-bottom: 100px;
}

.purchased__title {
  margin: 0 0 35px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.purchased__desc {
  max-width: 913px;
  margin: 0 0 60px;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.purchased__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  margin-top: -45px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.purchased__btn svg {
  width: 17px;
  height: 17px;
  margin-right: 27px;
  fill: #36414F;
}

.purchased__btn span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
}

.purchased__btn:hover {
  border-color: #36414F;
}

/*------------------------------ equipment ----------------------------------*/

.equipment {
  padding: 100px 0;
  border-top: 1px solid rgba(54, 65, 79, 0.2);
}

.equipment__title {
  margin: 0 0 30px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.equipment__years {
  margin: 0 0 60px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #36414F;
}

.equipment__subtitle {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.equipment__link {
  display: inline-block;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  border-bottom: 2px solid #E90000;
  transition: all 0.3s linear;
}

.equipment__link:hover {
  color: #E90000;
  border-bottom-color: transparent;
}

/*------------------------------ equipment-carousel ----------------------------------*/

.equipment-carousel {
  margin: 0 -10px 50px;
}

.equipment-carousel .item {
  padding: 0 10px;
}

.equipment-carousel .item img {
  border-radius: 10px;
  aspect-ratio: 2.099;
}

.equipment-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -70px;
  width: 12px;
  height: 20px;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.equipment-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.equipment-carousel .slick-arrow:hover svg {
  fill: #E90000;
}

.equipment-carousel .slick-arrow.prev {
  right: 44px;
}

.equipment-carousel .slick-arrow.next {
  right: 10px;
}

/*------------------------------ equip-table ----------------------------------*/

.equip-table {
  margin-bottom: 60px;
}

.equip-table table {
  width: 100%;
  border-collapse: collapse;
}

.equip-table table thead tr th {
  padding: 0 15px 15px 0;
  border-bottom: 1px solid #E2E8ED;
  white-space: nowrap;
  text-align: left;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #36414F;
}

.equip-table table thead tr th:first-child {
  padding-right: 90px;
}

.equip-table table tbody tr td {
  padding: 18px 15px 15px 0;
  vertical-align: top;
  border-bottom: 1px solid #E2E8ED;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  color: #36414F;
}

.equip-table table tbody tr td:first-child {
  color: #E90000;
  text-transform: uppercase;
  white-space: normal;
}

.equip-table table tbody tr td:last-child {
  padding-top: 15px;
  padding-right: 0;
  text-align: right;
}

.equip-table table tbody tr td:last-child a {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.equip-table table tbody tr td:last-child a svg {
  width: 100%;
  height: 100%;
  fill: #E90000;
}

/*------------------------------ price-breakdown ----------------------------------*/

.price-breakdown {
  display: none;
  position: absolute;
  z-index: 4000;
  top: -5px;
  left: 100%;
  width: 578px;
  padding: 30px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  box-shadow: 0px 7px 44px -13px rgba(54, 65, 79, 0.2);
  border-radius: 10px;
}

.price-breakdown__close {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
}

.price-breakdown__close svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
}

.price-breakdown__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E2E8ED;
}

.price-breakdown__title {
  max-width: calc(100% - 140px);
  margin: 0;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #36414F;
}

.price-breakdown__average {
  margin: 0 0 0 auto;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #36414F;
}

.price-breakdown__section {
  margin-bottom: 25px;
}

.price-breakdown__section-header {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.price-breakdown__section-header:last-child {
  margin-bottom: 0;
}

.price-breakdown__price {
  margin-left: auto;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #868D95;
}

.price-breakdown__price span:last-child {
  margin-left: 20px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  color: #36414F;
}

.price-breakdown__desc {
  max-width: 370px;
}

.price-breakdown__text {
  margin: 0;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #868D95;
}

.price-breakdown__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

.price-breakdown__list:last-child {
  margin-bottom: 0;
}

.price-breakdown__list li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 16px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.price-breakdown__list li:last-child {
  margin-bottom: 0;
}

.price-breakdown__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E90000;
}

.price-breakdown__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.price-breakdown__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 249px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.price-breakdown__btn:hover {
  background: #cb0000;
}

.price-breakdown__total {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 5px;
}

.price-breakdown__total span {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.price-breakdown__total span:nth-child(2) {
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #36414F;
}

/*------------------------------ exchange ----------------------------------*/

.exchange {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 180px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.exchange span:first-child {
  width: 100%;
}

/*------------------------------ modal ----------------------------------*/

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  background-color: rgba(54, 65, 79, 0.7);
  z-index: 9900;
  overflow-y: auto;
}

.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  padding: 60px 70px;
  background: #fff;
  border-radius: 10px;
  z-index: 9999;
}

.modal__inner--lg {
  width: 680px;
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
}

.modal__close svg {
  width: 21px;
  height: 21px;
  fill: #BAC4CF;
}

.modal__title {
  margin: 0 0 20px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.modal__text {
  margin: 0 0 40px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #E90000;
}

.modal .form-group {
  margin-bottom: 20px;
}

.modal__footer {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  padding-top: 10px;
}

.modal__subtitle {
  width: 100%;
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #36414F;
}

.modal__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: calc(50% - 10px);
  height: 70px;
  background: #4CAF50;
  border: none;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}

.modal__whatsapp:hover {
  background: #449d48;
}

.modal__whatsapp img {
  width: 17px;
  height: 17px;
}

.modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: calc(50% - 10px);
  height: 70px;
  background: #E90000;
  border: none;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s linear;
}

.modal__btn:hover {
  background: #cb0000;
}

.modal__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 586px;
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  z-index: 9999;
}

.modal__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding-left: 76px;
  background: url(../img/icons/check-circle-green.svg) left center no-repeat;
  background-size: 46px;
}

.modal__content span {
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: #36414F;
}

.modal__file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 20px;
}

.modal__file .form-group {
  position: relative;
  flex: none;
  width: 262px;
  margin-bottom: 0;
}

.modal__file .form-group::before {
  content: 'или';
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  color: #36414F;
}

.modal .form-file {
  position: relative;
  width: 193px;
  padding-right: 20px;
  overflow: hidden;
}

.modal .form-file label {
  width: 100%;
  overflow: hidden;
}

.modal .form-file::after {
  content: '/';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #36414F;
}

/*------------------------------ article ----------------------------------*/

.article {
  margin-bottom: 100px;
}

.article__title {
  max-width: 765px;
}

.article__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(54, 65, 79, 0.2);
}

.article__date {
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.article__date::after {
  content: '|';
  display: inline-block;
  vertical-align: text-bottom;
  margin: 0 5px;
}

.article__category {
  margin-right: 30px;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
  transition: all 0.3s linear;
}

.article__category:hover {
  color: #E90000;
}

.article__author {
  margin: 0 30px 0 auto;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.article__wrap {
  max-width: 902px;
}

.article__wrap img {
  display: block;
  width: 100%;
  margin: 50px 0 30px;
  border: 1px solid #E2E8ED;
  border-radius: 15px;
}

.article__wrap a {
  color: #E90000;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s linear;
}

.article__wrap a:hover {
  color: #cb0000;
}

.article__wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
  padding-left: 20px;
}

.article__wrap ul:last-child {
  margin-bottom: 0;
}

.article__wrap ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 18px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.article__wrap ul li:last-child {
  margin-bottom: 0;
}

.article__wrap ul li strong {
  display: block;
  margin-bottom: 5px;
}

.article__wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E90000;
}

.article__wrap ol {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
  padding-left: 20px;
  counter-reset: my-awesome-counter;
}

.article__wrap ol:last-child {
  margin-bottom: 0;
}

.article__wrap ol li {
  display: flex;
  position: relative;
  margin-bottom: 15px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
  counter-increment: my-awesome-counter;
}

.article__wrap ol li:last-child {
  margin-bottom: 0;
}

.article__wrap ol li::before {
  content: counter(my-awesome-counter) ". ";
  margin-right: 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  color: #E90000;
}

.article section {
  margin-bottom: 50px;
}

/*------------------------------ view ----------------------------------*/

.view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.view svg {
  width: 18px;
  height: 10px;
  margin-right: 5px;
  fill: #36414F;
}

/*------------------------------ comments-qnt ----------------------------------*/

.comments-qnt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.comments-qnt svg {
  width: 18px;
  height: 12px;
  margin-right: 5px;
  fill: #36414F;
}

/*------------------------------ share ----------------------------------*/

.share {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.share svg {
  width: 20px;
  height: 20px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.share:hover svg {
  fill: #E90000;
}

/*------------------------------ article-carousel ----------------------------------*/

.article-carousel {
  margin: 0 -10px 124px;
}

.article-carousel .item {
  padding: 0 10px;
}

.article-carousel .item a {
  display: block;
}

.article-carousel .item a img {
  display: block;
  aspect-ratio: 1.435;
  border-radius: 10px;
}

.article-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  bottom: -52px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

.article-carousel .slick-arrow.prev {
  right: 49px;
}

.article-carousel .slick-arrow.next {
  right: 15px;
}

.article-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.article-carousel .slick-arrow:hover svg {
  fill: #E90000;
}

.article-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 10px;
  right: 96px;
  bottom: -44px;
  background-color: #E2E8ED;
}

.article-carousel .slick-dots li {
  flex-grow: 1;
  height: 4px;
}

.article-carousel .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  transition: all 0.3s linear;
}

.article-carousel .slick-dots li.slick-active button {
  background-color: #E90000;
}

/*------------------------------ other ----------------------------------*/

.other {
  margin-bottom: 100px;
  padding: 70px 0 80px;
  background: #F2F6F9;
}

.other__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.other__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 15px;
}

.other__item {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
  height: 237px;
}

/*------------------------------ comments ----------------------------------*/

.comments {
  margin-bottom: 100px;
}

.comments__wrap {
  max-width: 880px;
}

.comments__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.comments__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 50px;
}

.comments__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.comments__more {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px dashed #36414F;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
  transition: all 0.3s linear;
}

.comments__more:hover {
  color: #E90000;
  border-bottom-color: #E90000;
}

.comments__write {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.comments__write:hover {
  color: #E90000;
  border-bottom-color: transparent;
}

/*------------------------------ comment ----------------------------------*/

.comment {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
}

.comment__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

.comment__post {
  margin-bottom: 12px;
  padding: 20px;
  background: #F2F6F9;
  border-radius: 10px;
}

.comment__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}

.comment__author {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
}

.comment__date {
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.comment__text {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: #36414F;
}

.comment__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.comment__reply {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #36414F;
  transition: all 0.3s linear;
}

.comment__reply:hover {
  color: #E90000;
}

.comment__response-link {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #36414F;
  transition: all 0.3s linear;
}

.comment__response-link:hover {
  color: #E90000;
}

.comment__response-link::before {
  content: '|';
  display: inline-block;
  vertical-align: text-bottom;
  margin: 0 5px;
  color: #36414F;
}

.comment__response {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 25px;
  padding-top: 30px;
}

.comment__quote {
  margin-bottom: 15px;
  padding: 15px;
  background: #FFFFFF;
  border-radius: 10px;
}

.comment__quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #36414F;
}

.comment__quote p:first-child {
  margin-bottom: 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
}

/*------------------------------ like ----------------------------------*/

.like {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  margin-left: auto;
}

.like__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
}

.like__item span {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #36414F;
}

.like__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.like__item a svg {
  width: 20px;
  height: 19px;
}

.like__item--like a svg {
  fill: #109B1C;
}

.like__item--dislike a svg {
  fill: #36414F;
}

/*------------------------------ response ----------------------------------*/

.response {
  max-width: 700px;
  padding-top: 60px;
}

.response__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 30px;
}

.response__header--mb {
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.response__header--mb .form-group {
  width: 340px;
}

.response__img {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

.response__name {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
}

.response__wrap {
  padding-left: 90px;
}

.response__quote {
  margin-bottom: 20px;
  padding: 15px;
  background: #F2F6F9;
  border-radius: 10px;
}

.response__quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #36414F;
}

.response__quote p:first-child {
  margin-bottom: 10px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
}

.response__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
  margin-top: 20px;
}

.response__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 166px;
  height: 60px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #E90000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.response__btn:hover {
  background: #cb0000;
}

.response__cancel {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.response__cancel:hover {
  color: #E90000;
}

.response__login {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
}

.response__login a {
  color: #36414F;
  transition: all 0.3s linear;
}

.response__login a:hover {
  color: #E90000;
}

/*------------------------------ search-city ----------------------------------*/

.search-city__form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  margin-bottom: 30px;
}

.search-city__form input {
  width: calc(100% - 95px);
  height: 70px;
  padding: 0 28px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
}

.search-city__form input::-webkit-input-placeholder {
  opacity: 1;
  color: #828EA2;
}

.search-city__form input::-moz-placeholder {
  opacity: 1;
  color: #828EA2;
}

.search-city__form input:-moz-placeholder {
  opacity: 1;
  color: #828EA2;
}

.search-city__form input:-ms-input-placeholder {
  opacity: 1;
  color: #828EA2;
}

.search-city__form button {
  width: 75px;
  height: 70px;
  padding: 0;
  background: #E90000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s linear;
}

.search-city__form button svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.search-city__form button span {
  display: none;
}

.search-city__form button:hover {
  background: #cb0000;
}

.search-city__list {
  column-count: 3;
  column-gap: 30px;
}

.search-city__list a {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 22px;
  color: #36414F;
  transition: all 0.3s linear;
}

.search-city__list a:hover {
  color: #E90000;
}

/*------------------------------ place-ad ----------------------------------*/

.place-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 54px;
  margin-left: auto;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.place-ad:hover {
  background: #CB0000;
}

/*------------------------------ sales ----------------------------------*/

.sales {
  padding-bottom: 100px;
}

.sales__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-right: 120px;
}

.sales__title {
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.sales__all {
  display: inline-block;
  padding-bottom: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  border-bottom: 2px solid #E90000;
  transition: all 0.3s linear;
}

.sales__all:hover {
  color: #E90000;
}

/*------------------------------ sales-carousel ----------------------------------*/

.sales-carousel {
  margin: 0 -10px;
}

.sales-carousel .slick-list {
  overflow: visible;
}

.sales-carousel .item {
  padding: 0 10px;
}

.sales-carousel .slick-slide {
  opacity: 0.2;
  transition: all 0.3s linear;
}

.sales-carousel .slick-slide.slick-active {
  opacity: 1;
}

.sales-carousel .slick-arrow {
  position: absolute;
  z-index: 10;
  top: -91px;
  width: 12px;
  height: 20px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

.sales-carousel .slick-arrow svg {
  width: 100%;
  height: 100%;
  fill: #36414F;
  transition: all 0.3s linear;
}

.sales-carousel .slick-arrow:hover svg {
  fill: #DA251E;
}

.sales-carousel .slick-arrow.prev {
  right: 43px;
}

.sales-carousel .slick-arrow.next {
  right: 10px;
}

.sales-carousel .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 35px;
  background-color: #E2E8ED;
}

.sales-carousel .slick-dots li {
  flex-grow: 1;
  height: 4px;
}

.sales-carousel .slick-dots li button {
  display: block;
  width: 100%;
  height: 4px;
  padding: 0;
  font-size: 0;
  border: none;
  background-color: transparent;
  transition: all 0.3s linear;
}

.sales-carousel .slick-dots li.slick-active button {
  background-color: #E90000;
}

/*------------------------------ used-cars ----------------------------------*/

.used-cars {
  padding-bottom: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(54, 65, 79, 0.2);
}

.used-cars__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.used-cars__filter {
  margin-bottom: 80px;
}

/*------------------------------ login ----------------------------------*/

.login {
  max-width: 360px;
  margin: 0 auto;
  padding-bottom: 125px;
}

.login__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  color: #36414F;
}

.login .form-group {
  margin-bottom: 20px;
}

.login__btn {
  width: 100%;
  height: 70px;
  background: #E90000;
  border-radius: 10px;
  border: none;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}

.login__btn:hover {
  background: #CB0000;
}

.login__footer {
  margin-top: 40px;
  text-align: center;
}

.login__footer p {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
}

.login__footer p a {
  display: inline-block;
  margin-left: 15px;
  padding-bottom: 5px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  border-bottom: 2px solid #E90000;
  transition: all 0.3s linear;
}

.login__footer p a:hover {
  color: #E90000;
}

/*------------------------------ forgot ----------------------------------*/

.forgot {
  display: block;
  width: 124px;
  margin: -10px 0 20px auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #828EA2;
  transition: all 0.3s linear;
}

.forgot:hover {
  color: #E90000;
}

/*------------------------------ used-brands ----------------------------------*/

.used-brands {
  margin-bottom: 80px;
}

.used-brands__toggle {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #36414F;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
  transition: all 0.3s linear;
}

.used-brands__toggle:hover {
  border-color: #E90000;
  color: #E90000;
}

.used-brands__hidden {
  display: none;
  padding-top: 20px;
}

.used-brands .brands__item {
  flex-wrap: nowrap;
}

/*------------------------------ carads ----------------------------------*/

.carads__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.carads__list {
  display: grid;
  grid-column: 1fr;
  grid-row-gap: 20px;
  margin-bottom: 60px;
}

/*------------------------------ cardad ----------------------------------*/

.cardad {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  min-height: 180px;
  border: 1px solid #E2E8ED;
  border-radius: 10px;
}

.cardad__left {
  position: relative;
  width: 264px;
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}

.cardad__center {
  display: flex;
  flex-direction: column;
  width: calc(100% - 484px);
  padding: 20px 0 15px;
}

.cardad__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 170px;
  padding: 20px 25px 20px 0;
}

.cardad__price {
  margin: 0 0 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  color: #36414F;
}

.cardad__label {
  margin-bottom: auto;
  padding: 2px 8px 3px;
  background: #16B226;
  border-radius: 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.cardad__label.red {
  background: #BE1E2D;
}

.cardad__icons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  margin: 0 0 10px;
}

.cardad__icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cardad__city {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.cardad__date {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  color: #36414F;
}

.cardad__img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #EBF1F5;
  background-image: url(../img/icons/photo-camera.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
}

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

.cardad__fav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 25px;
  background: #FFFFFF;
  border-radius: 5px;
}

.cardad__fav svg {
  width: 18px;
  height: 18px;
  fill: transparent;
  stroke: #36414F;
  stroke-width: 2px;
  transition: all 0.3s linear;
}

.cardad__fav:hover svg,
.cardad__fav.active svg {
  stroke: #E90000;
  fill: #E90000;
}

.cardad__mileage {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  padding: 3px 8px;
  background: #FFFFFF;
  border-radius: 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #36414F;
}

.cardad__title {
  display: block;
  margin: 0 0 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #36414F;
}

.cardad__subtitle {
  margin: 0 0 auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #828EA2;
}

.cardad__info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cardad__info span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #36414F;
}

.cardad__info span::after {
  content: '|';
  margin: 0 7px;
}

.cardad__info span:last-child::after {
  display: none;
}

.cardad__check {
  position: relative;
  width: 19px;
  height: 18px;
  margin: 10px 0 0;
  background: url(../img/icons/logo.png) center no-repeat;
  background-size: contain;
  cursor: pointer;
}

.cardad__check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  left: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
}

.cardad__check-icon svg {
  width: 8px;
  height: 6px;
  fill: #36414F;
}

.cardad__check-tooltip {
  display: none;
  position: absolute;
  z-index: 10;
  left: calc(100% + 15px);
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 15px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  box-shadow: 0px 7px 20px -13px rgba(54, 65, 79, 0.2);
  border-radius: 10px;
  white-space: nowrap;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #36414F;
  opacity: 0;
  transition: all 0.3s linear;
}

.cardad__check:hover .cardad__check-tooltip {
  display: block;
  opacity: 1;
}

.cardad__data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 12px;
  margin-bottom: auto;
}

.cardad__data span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.cardad__data span svg {
  width: 14px;
  height: 13px;
  fill: #36414F;
}

.cardad__archive {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: #545454;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.cardad--archive .cardad__img {
  background: none;
}

.cardad--archive .cardad__img img {
  opacity: 0.3;
}

/*------------------------------ s-banner ----------------------------------*/

.s-banner {
  padding: 100px 0;
  background: url(../img/bg-banner-sales.jpg) center no-repeat;
  background-size: cover;
}

.s-banner__text {
  max-width: 700px;
  margin: 0 0 70px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  color: #000000;
}

.s-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 390px;
  height: 80px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.s-banner__btn:hover {
  background: #CB0000;
}

/*------------------------------ account ----------------------------------*/

.account {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 50px;
  margin-bottom: 120px;
}

.account__sidebar {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 3 - 20px);
}

.account__main {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 9 - 20px);
}

.account__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

/*------------------------------ acc-menu ----------------------------------*/

.acc-menu {
  max-width: 304px;
}

.acc-menu__item {
  padding: 0 15px;
}

.acc-menu__item:not(:last-child) {
  background: #F2F6F9;
}

.acc-menu__item:first-child {
  padding-top: 15px;
}

.acc-menu__item:nth-last-child(2) {
  padding-bottom: 15px;
}

.acc-menu__item:last-child .acc-menu__link span {
  color: #828EA2;
}

.acc-menu__item:last-child .acc-menu__link svg {
  fill: #828EA2;
}

.acc-menu__item:last-child .acc-menu__link:hover span {
  color: #E90000;
}

.acc-menu__item:last-child .acc-menu__link:hover svg {
  fill: #E90000;
}

.acc-menu__item.current .acc-menu__link {
  background: #FFFFFF;
}

.acc-menu__item.current .acc-menu__link span {
  color: #E90000;
}

.acc-menu__item.current .acc-menu__link span::after {
  display: none;
}

.acc-menu__item.current .acc-menu__link svg {
  fill: #E90000;
}

.acc-menu__item.current .acc-menu__link.open span::after {
  transform: rotateX(180deg);
}

.acc-menu__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.acc-menu__link span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #36414F;
  transition: all 0.3s linear;
}

.acc-menu__link svg {
  width: 18px;
  height: 18px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.acc-menu__link:hover span {
  color: #E90000;
}

.acc-menu__link:hover svg {
  fill: #E90000;
}

/*------------------------------ balance ----------------------------------*/

.balance__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 68px;
  row-gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(130, 142, 162, 0.2);
}

.balance .account__title {
  margin-bottom: 0;
}

.balance__sum {
  width: 100%;
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #36414F;
}

/*------------------------------ replen ----------------------------------*/

.replen {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}

.replen__input {
  position: relative;
}

.replen__input input {
  width: 146px;
  height: 60px;
  padding: 0 40px 0 25px;
  background: #FFFFFF;
  border: 1px solid #36414F;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
}

.replen__input span {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #36414F;
}

.replen__btn {
  width: 236px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  border: none;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}

.replen__btn:hover {
  background: #CB0000;
}

/*------------------------------ balance-story ----------------------------------*/

.balance-story {
  max-width: 700px;
}

.balance-story__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #36414F;
}

.balance-story__header {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
}

.balance-story__header span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #36414F;
}

.balance-story__header span:first-child {
  width: 180px;
}

.balance-story__header span:last-child {
  margin-left: auto;
}

.balance-story__list {
  margin-bottom: 60px;
}

.balance-story__item {
  display: flex;
  padding: 18px 0;
  border-top: 1px solid #E2E8ED;
}

.balance-story__item:last-child {
  padding-bottom: 0;
}

.balance-story__date {
  flex: none;
  width: 180px;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #36414F;
}

.balance-story__action {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #36414F;
}

.balance-story__sum {
  flex: none;
  margin-left: auto;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #36414F;
}

.balance-story__sum.plus {
  color: #109E1E;
}

/*------------------------------ myads ----------------------------------*/

.myads__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.myads .account__title {
  margin-bottom: 0;
}

.myads__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 14px;
}

.myads__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: transparent;
  border-radius: 22px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.myads__link:hover {
  color: #E90000;
}

.myads__link.active {
  background: #E90000;
  color: #fff;
}

.myads__tab {
  display: none;
}

.myads__tab.active {
  display: block;
}

.myads__text {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.myads__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 274px;
  height: 60px;
  margin-top: 30px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.myads__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-bottom: 20px;
}

.myads__item:last-child {
  margin-bottom: 0;
}

.myads__item .cardad {
  width: calc(100% - 270px);
}

.myads__item .cardad--archive {
  width: 100%;
}

.myads__control {
  width: 250px;
  padding-top: 3px;
}

.myads__control a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #828EA2;
  transition: all 0.3s linear;
}

.myads__control a span {
  font-family: 'Gilroy Bold';
  font-weight: 700;
}

.myads__control a svg {
  width: 20px;
  height: 20px;
  fill: #A2ACBD;
  transition: all 0.3s linear;
}

.myads__control a:last-child {
  margin-bottom: 0;
}

.myads__control a:hover {
  color: #E90000;
}

.myads__control a:hover svg {
  fill: #E90000;
}

/*------------------------------ profile ----------------------------------*/

.profile__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(130, 142, 162, 0.2);
}

.profile__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 30px;
}

.profile__col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 4 - 20px);
}

.profile__col--right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.profile__submit {
  width: 168px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  border: none;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s linear;
}

.profile__submit:hover {
  background: #CB0000;
}

.profile__reset {
  padding: 0;
  border: none;
  background: none;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  cursor: pointer;
  transition: all 0.3s linear;
}

.profile__reset:hover {
  color: #E90000;
}

/*------------------------------ profile-balance ----------------------------------*/

.profile-balance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 50px;
  row-gap: 20px;
  justify-content: flex-end;
}

.profile-balance__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.profile-balance__btn:hover {
  background: #CB0000;
}

.profile-balance__sum {
  margin: 0 0 8px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #36414F;
}

.profile-balance__sum span {
  margin-left: 4px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}

.profile-balance__story {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  color: #36414F;
  transition: all 0.3s linear;
}

.profile-balance__story:hover {
  color: #E90000;
}

/*------------------------------ user ----------------------------------*/

.user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
}

.user__name p {
  margin: 0 0 8px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: #36414F;
}

.user__name p:nth-child(2) {
  margin-bottom: 0;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}

.user__img {
  position: relative;
  width: 80px;
  height: 80px;
}

.user__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F5F5F5;
  background-image: url(../img/icons/photo-camera.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
}

.user__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user__del {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  top: -5px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border-radius: 50%;
}

.user__del svg {
  width: 12px;
  height: 12px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.user__del:hover svg {
  fill: #E90000;
}

/*------------------------------ private ----------------------------------*/

.private {
  position: relative;
}

.private__user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.private__user img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.private__user span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #36414F;
}

.private__user::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotateX(0deg);
  width: 10px;
  height: 7px;
  background: url(../img/icons/chevron.svg) center no-repeat;
  background-size: contain;
  transition: all 0.3s linear;
}

.private__user.open::after {
  transform: translateY(-50%) rotateX(180deg);
}

.private__menu {
  display: none;
  position: absolute;
  z-index: 1000;
  right: 0;
  top: calc(100% + 10px);
  width: 240px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8ED;
  box-shadow: 0px 7px 20px -13px rgba(54, 65, 79, 0.2);
  border-radius: 10px;
}

.private__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 16px;
  transition: all 0.3s linear;
}

.private__link span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #36414F;
  transition: all 0.3s linear;
}

.private__link svg {
  width: 18px;
  height: 18px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.private__link:hover span {
  color: #E90000;
}

.private__link:hover svg {
  fill: #E90000;
}

.private__link:last-child {
  margin-bottom: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(130, 142, 162, 0.2);
}

/*------------------------------ contentad ----------------------------------*/

.contentad__header {
  display: grid;
  grid-template-columns: 152px 1fr 28px;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  max-width: 520px;
  margin-bottom: 30px;
}

.contentad__price {
  grid-area: 1 / 1 / 2 / 3;
  margin: 0;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #36414F;
}

.contentad__fav {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.contentad__fav svg {
  width: 24px;
  height: 22px;
  fill: transparent;
  stroke: #36414F;
  transition: all 0.3s linear;
}

.contentad__fav:hover svg {
  stroke: #E90000;
}

.contentad__fav.active svg {
  fill: #E90000;
  stroke: #E90000;
}

.contentad__label {
  grid-area: 2 / 1 / 3 / 2;
  padding: 2px 8px 3px;
  width: 152px;
  height: 25px;
  background: #16B226;
  border-radius: 5px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}

.contentad__check {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 45px;
}

.contentad__check img {
  width: 25px;
  height: 24px;
  object-fit: contain;
}

.contentad__check span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #36414F;
}

.contentad__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
}

.contentad__msg {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.contentad__msg:hover {
  color: #E90000;
}

/*------------------------------ infoad ----------------------------------*/

.infoad {
  max-width: 610px;
  margin-bottom: 30px;
}

.infoad__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 15px;
  border-bottom: 1px dashed rgba(54, 65, 79, 0.5);
}

.infoad__item span {
  position: relative;
  top: 3px;
  padding-left: 5px;
  background-color: #fff;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #36414F;
  text-align: right;
}

.infoad__item span:first-child {
  padding-left: 0;
  padding-right: 5px;
  font-family: 'Gilroy';
  font-weight: 400;
  text-align: left;
}

.infoad__item span a {
  color: #548DD9;
  transition: all 0.3s linear;
}

.infoad__item span a.black {
  color: #36414F;
}

.infoad__item span a:hover {
  color: #E90000;
}

.infoad__item:last-child {
  margin-bottom: 0;
}

/*------------------------------ descad ----------------------------------*/

.descad {
  margin-bottom: 40px;
}

.descad__title {
  margin: 0 0 40px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #36414F;
}

.descad__text {
  margin: 0 0 30px;
}

.descad__text p {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.descad__text p:last-child {
  margin-bottom: 0;
}

.descad__footer p {
  display: flex;
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
}

.descad__footer p span {
  flex: none;
  width: 75px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
}

.descad__footer p:last-child {
  margin-bottom: 0;
}

/*------------------------------ sellerad ----------------------------------*/

.sellerad {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 10px;
  max-width: 520px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #F2F6F9;
}

.sellerad__name {
  margin: 0 0 5px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #36414F;
}

.sellerad__qnt {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  color: #868D95;
}

.sellerad__link {
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  text-decoration: underline;
  color: #55657A;
  transition: all 0.3s linear;
}

.sellerad__link:hover {
  color: #E90000;
}

/*------------------------------ contactsad ----------------------------------*/

.contactsad {
  position: relative;
}

.contactsad__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  background: #E90000;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: all 0.3s linear;
}

.contactsad__btn:hover {
  background: #CB0000;
}

.contactsad__tel {
  display: none;
}

.contactsad__tel a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 240px;
  height: 60px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  color: #36414F;
  transition: all 0.3s linear;
}

.contactsad__tel a:hover {
  color: #E90000;
}

/*------------------------------ metaad ----------------------------------*/

.metaad {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  row-gap: 20px;
  column-gap: 15px;
}

.metaad__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #868D95;
}

.metaad__view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
}

.metaad__view img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.metaad__view span {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #36414F;
}

.metaad__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 28px;
  width: 100%;
}

/*------------------------------ dislike ----------------------------------*/

.dislike {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.dislike svg {
  width: 20px;
  height: 19px;
  fill: #36414F;
  transition: all 0.3s linear;
}

.dislike:hover svg {
  fill: #E90000;
}

/*------------------------------ seller-views ----------------------------------*/

.seller-views {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 610px;
  padding: 20px 25px;
  background: #F2F6F9;
}

.seller-views__item {
  padding-right: 10px;
}

.seller-views__name {
  margin: 0 0 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: #868D95;
}

.seller-views__val {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 5px;
}

.seller-views__val img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.seller-views__val span {
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #36414F;
}

/*------------------------------ select2 ----------------------------------*/

.select2 {
  width: 100% !important;
  display: block;
}

.select2 .selection {
  padding: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border: 1px solid #E2E8ED;
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 28px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  color: #828EA2;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #828EA2;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--multiple .select2-selection__arrow {
  position: absolute;
  right: 30px;
  top: calc(50% - 5px);
  width: 15px;
  height: 10px;
  padding: 0;
  background: url(../img/icons/chevron.svg) no-repeat center;
  background-size: contain;
  transition: all 0.27s ease-in-out;
  transform: rotateX(0deg);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.select2-container--default .select2-selection--multiple .select2-selection__arrow b {
  display: none !important;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
  transform: rotateX(180deg);
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: #36414F;
}

.select2-container--default .select2-dropdown {
  border: 1px solid #36414F;
  border-top: none;
  border-radius: 0 0 10px 10px;
  width: 100%;
  z-index: 2;
  background: #fff;
  -webkit-user-select: none;
  user-select: none;
}

.select2-container--default .select2-results__options {
  -webkit-user-select: none;
  user-select: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #E90000 #E2E8ED;
}

.select2-container--default .select2-results__options::-webkit-scrollbar {
  width: 3px;
}

.select2-container--default .select2-results__options::-webkit-scrollbar-track {
  background: #E2E8ED;
}

.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #E90000;
  border-radius: 0;
  border: none;
}

.select2-container--default .select2-results__option {
  display: block;
  padding: 10px 28px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #36414F;
}

.select2-container--default .select2-results__option:hover {
  color: #E90000;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: #E90000;
}

/*------------------------------ placement ----------------------------------*/

.placement {
  margin-bottom: 100px;
}

.placement__title {
  margin: 0 0 50px;
  font-family: 'Gilroy Bold';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #36414F;
}

.placement__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  row-gap: 40px;
}

.placement__left {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 7 - 20px);
}

.placement__right {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5 - 20px);
}

.placement__form {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  align-items: flex-end;
  row-gap: 40px;
}

.placement__col {
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(100% / 12 * 5.5 - 20px);
}

.placement__col--full {
  width: calc(100% / 12 * 12 - 20px);
}

.placement__link {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #E90000;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #36414F;
  transition: all 0.3s linear;
}

.placement__link:hover {
  color: #E90000;
}

.placement__text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  column-gap: 15px;
  margin: 10px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #828EA2;
}

.placement__text a {
  color: #828EA2;
  text-decoration: underline;
  transition: all 0.3s linear;
}

.placement__text a:hover {
  color: #E90000;
}

.placement__text a.what {
  display: inline-block;
  font-family: 'Gilroy Medium';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #36414F;
  text-decoration: none;
  border-bottom: 1px dashed #36414F;
  white-space: nowrap;
  transition: all 0.3s linear;
}

.placement__text a.what:hover {
  color: #E90000;
  border-color: #E90000;
}

.placement__text--right {
  text-align: right;
}

.placement__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  margin: 0 10px;
}

.placement__footer .placement__text {
  display: block;
  width: calc(100% - 304px);
  margin-top: 0;
}

.placement__btn {
  width: 274px;
  height: 60px;
  background: #E90000;
  border: none;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/*------------------------------ vin ----------------------------------*/

.vin {
  padding: 30px;
  background: #F2F6F9;
}

.vin__text {
  margin: 0 0 15px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: #36414F;
}

.vin .form-group {
  max-width: 340px;
}

/*------------------------------ radio-group ----------------------------------*/

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/*------------------------------ colors ----------------------------------*/

.colors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 15px;
}

.colors__radio label {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 0 !important;
  border-radius: 50%;
  cursor: pointer;
}

.colors__radio label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.colors__radio input {
  display: none;
}

.colors__radio input:checked + label {
  outline: 2px solid #E90000;
}

.colors__radio--text {
  margin-right: 5px;
}

.colors__radio--text label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  border: 2px solid #E2E8ED;
  border-radius: 10px;
  font-family: 'Gilroy Semibold';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  color: #36414F;
  background-color: #fff;
}

.colors__radio--text input:checked + label {
  border-color: #E90000;
  outline: none;
}

/*------------------------------ img-group ----------------------------------*/

.img-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.img-group__item {
  width: 160px;
  height: 160px;
}

/*------------------------------ load-img ----------------------------------*/

.load-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.load-img label {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.load-img label svg {
  display: none;
}

.load-img input {
  display: none;
}

/*------------------------------ img-wrap ----------------------------------*/

.img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 2px dashed #E2E8ED;
  background-color: #FFFFFF;
  background-image: url(../img/icons/photo-camera.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34px;
  overflow: hidden;
}

.img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-wrap__del {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid #FFFFFF;
  border-radius: 43px;
  opacity: 0;
  transition: all 0.3s linear;
}

.img-wrap__del svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  transition: all 0.3s linear;
}

.img-wrap__del:hover {
  border-color: #E90000;
}

.img-wrap__del:hover svg {
  fill: #E90000;
}

.img-wrap.load {
  border: none;
}

.img-wrap.load .img-wrap__del {
  z-index: 10;
}

.img-wrap.load::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 65, 79, 0.5);
  opacity: 0;
  transition: all 0.3s linear;
}

.img-wrap.load .load-img {
  top: auto;
  left: auto;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  opacity: 0;
}

.img-wrap.load .load-img label {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.img-wrap.load .load-img label svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: all 0.3s linear;
}

.img-wrap.load .load-img label:hover {
  border-color: #E90000;
}

.img-wrap.load .load-img label:hover svg {
  fill: #E90000;
}

.img-wrap.load:hover::before,
.img-wrap.load:hover .img-wrap__del,
.img-wrap.load:hover .load-img {
  opacity: 1;
}

@media screen and (max-width: 1439px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    width: 1140px;
  }

  .form-group label {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .form-group input {
    height: 47px;
  }

  .form-group i {
    bottom: 15px;
    font-size: 16px;
  }

  .form-radio label {
    height: 48px;
    font-size: 16px;
  }

  .form-checkbox {
    margin-bottom: 15px;
  }

  .form-checkbox--mb {
    margin-bottom: 70px;
  }

  .form-checkbox label {
    font-size: 16px;
  }

  .headerbar__left {
    width: calc(100% / 12 * 7 - 20px);
  }

  .headerbar__right {
    width: calc(100% / 12 * 5 - 20px);
  }

  .menu {
    column-gap: 25px;
  }

  .office {
    margin-right: 30px;
    margin-left: 30px;
  }

  .h-social {
    margin-right: 30px;
  }

  .selection__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 382px;
  }

  .selection__btn span {
    display: inline-block;
    margin-left: 20px;
    font-family: 'Gilroy Semibold';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .selection__years {
    max-width: 382px;
  }

  .features__item {
    width: calc((100% - 20px * 4) / 5);
  }

  .calc__left {
    width: calc(100% / 12 * 9 - 20px);
  }

  .calc__right {
    margin: 0 auto;
    padding-top: 0;
  }

  .calc__header .calc__right {
    margin-left: calc(100% / 12 * 0 + 10px);
  }

  .subscribe__left {
    width: calc(50% - 120px);
    padding-left: calc((100vw - 1140px) / 2 + 10px);
  }

  .subscribe__right {
    width: calc(50% + 120px);
  }

  .m-reviews__btn {
    right: calc((100% - 1140px) / 2 + 263px);
  }

  .hits__item {
    width: calc((100% - 25px * 3) / 4);
  }

  .filter__menu {
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding-left: 15px;
    padding-bottom: 15px;
  }

  .catalog-filter__btn {
    height: 48px;
  }

  .catalog-filter__input span {
    font-size: 16px;
  }

  .catalog-filter__input input {
    height: 48px;
    padding: 0 16px;
    font-size: 16px;
  }

  .catalog-filter__group::before {
    bottom: 13px;
  }

  .catalog-filter__checkbox {
    margin-bottom: 15px;
  }

  .catalog-filter__checkbox label {
    font-size: 16px;
  }

  .catalog-filter__radio--text label {
    height: 48px;
    font-size: 16px;
  }

  .team__row {
    column-gap: 30px;
  }

  .team__item {
    width: 340px;
    height: 380px;
  }

  .profi__left {
    padding-right: 60px;
  }

  .profi__right {
    padding-left: 60px;
  }

  .gallery {
    width: 550px;
  }

  .stat-catalog__item {
    width: calc((100% - 25px * 3) / 4);
  }

  .translate__grid {
    grid-column-gap: 40px;
  }

  .sales__header {
    padding-right: 80px;
  }

  .myads__item {
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
  }

  .myads__item .cardad {
    width: 100%;
  }

  .myads__control {
    padding-top: 0;
  }

  .profile__col {
    width: calc(100% / 12 * 6 - 20px);
  }

  .select2-container--default .select2-selection--single,
  .select2-container--default .select2-selection--multiple {
    height: 48px;
    padding: 0 16px;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered,
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    font-size: 16px;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow,
  .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    right: 16px;
  }

  .select2-container--default .select2-results__option {
    padding: 8px 16px;
    font-size: 16px;
  }

  .placement__col {
    width: calc(100% / 12 * 6 - 20px);
  }

  .placement__col--full {
    width: calc(100% / 12 * 12 - 20px);
  }

  .placement__btn {
    height: 47px;
  }

  .colors__radio--text label {
    height: 48px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    width: 960px;
  }

  .form-checkbox--mb {
    margin-bottom: 48px;
  }

  .header {
    border-bottom: 1px solid rgba(54, 65, 79, 0.2);
  }

  .headerbar {
    padding: 15px 0;
    border-bottom: none;
  }

  .headerbar__left {
    width: calc(100% / 12 * 12 - 20px);
  }

  .headerbar__right {
    display: none;
  }

  .headerbar .office,
  .headerbar .h-social,
  .headerbar .city {
    display: none;
  }

  .logo {
    width: 42px;
    height: 40px;
  }

  .menu {
    flex-direction: column;
    row-gap: 20px;
  }

  .menu__link {
    font-size: 14px;
  }

  .forum-btn {
    width: 120px;
    height: 44px;
    margin-left: auto;
  }

  .private-link {
    column-gap: 10px;
    font-size: 14px;
  }

  .private-link svg {
    width: 15px;
    height: 16px;
  }

  .navbar {
    display: none;
  }

  .auctions-btn {
    width: 164px;
    height: 36px;
    margin-right: 24px;
    font-size: 12px;
  }

  .office {
    margin-left: 0;
  }

  .office__tel {
    font-size: 20px;
  }

  .office__whatsapp {
    font-size: 20px;
  }

  .city span {
    margin: 0 8px 0 5px;
    font-size: 14px;
  }

  .city {
    margin-bottom: 25px;
  }

  .social {
    column-gap: 20px;
  }

  .social__item {
    width: 32px;
    height: 32px;
  }

  .selection {
    padding: 40px;
  }

  .calc__left {
    width: calc(100% / 12 * 12 - 20px);
  }

  .calc__right {
    width: calc(100% / 12 * 12 - 20px);
  }

  .calc__header .calc__right {
    width: calc(100% / 12 * 12 - 20px);
  }

  .calc__desc {
    margin-top: 30px;
  }

  .calc-form__col {
    width: calc(100% / 12 * 6 - 20px);
  }

  .subscribe__left {
    width: 100%;
    margin-bottom: 50px;
    padding-left: calc((100vw - 960px) / 2 + 10px);
  }

  .subscribe__right {
    width: 100%;
    padding-left: calc((100vw - 960px) / 2);
  }

  .msg {
    margin-right: auto;
    padding-top: 45px;
    padding-left: 0;
  }

  .footerbar__left {
    width: calc(100% / 12 * 12 - 20px);
  }

  .footerbar__left {
    order: 1;
    border-right: none;
  }

  .footerbar__center {
    width: calc(100% / 12 * 8 - 20px);
  }

  .footerbar__center {
    margin-left: calc(100% / 12 * 0 + 10px);
  }

  .footerbar__right {
    width: calc(100% / 12 * 4 - 20px);
  }

  .bottom__copy {
    width: calc(100% / 12 * 12 - 20px);
  }

  .bottom__privacy {
    width: calc(100% / 12 * 12 - 20px);
  }

  .bottom__privacy {
    order: -1;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 620px 237px 149px 237px;
  }

  .news-grid__item:first-child {
    grid-area: 1 / 1 / 2 / 3;
  }

  .news-grid__item:nth-child(2) {
    grid-area: 2 / 1 / 4 / 2;
  }

  .news-grid__item:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .news-grid__item:nth-child(4) {
    grid-area: 4 / 1 / 5 / 2;
  }

  .news-grid__item:nth-child(5) {
    grid-area: 3 / 2 / 5 / 3;
  }

  .news-grid--inverse .news-grid__item:first-child {
    grid-area: 1 / 1 / 2 / 3;
  }

  .news-grid--inverse .news-grid__item:nth-child(2) {
    grid-area: 2 / 1 / 4 / 2;
  }

  .news-grid--inverse .news-grid__item:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .news-grid--inverse .news-grid__item:nth-child(4) {
    grid-area: 4 / 1 / 5 / 2;
  }

  .news-grid--inverse .news-grid__item:nth-child(5) {
    grid-area: 3 / 2 / 5 / 3;
  }

  .m-reviews__all {
    margin-right: 80px;
  }

  .m-reviews__btn {
    right: calc((100% - 960px) / 2 + 200px);
  }

  .reviews__item {
    width: calc(100% / 12 * 4 - 20px);
  }

  .card-hit {
    padding: 20px;
  }

  .catalog__row {
    margin-bottom: 80px;
  }

  .mobile-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .catalog-filter {
    padding: 32px;
  }

  .catalog-filter__item {
    width: calc((100% - 32px) / 3);
  }

  .catalog-filter__item--lg {
    width: 100%;
  }

  .company__logo {
    width: 120px;
  }

  .team__row {
    column-gap: 20px;
  }

  .team__item {
    width: 300px;
    height: 330px;
  }

  .profi__left {
    padding: 60px 40px 60px 0;
  }

  .profi__right {
    padding: 60px 0 60px 40px;
  }

  .instock__item {
    width: calc(100% / 12 * 4 - 20px);
  }

  .contacts .social {
    margin-top: 30px;
  }

  .alphabet__col {
    width: calc(100% / 6);
  }

  .product__grid {
    display: block;
  }

  .product__header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding-bottom: 0;
    border-bottom: none;
  }

  .product__instock {
    order: 1;
    margin-top: 20px;
  }

  .product__info {
    padding-bottom: 0;
    border-bottom: none;
  }

  .product__date {
    display: none;
  }

  .product__row .product__left {
    width: calc(100% / 12 * 12 - 20px);
  }

  .product__row .product__left {
    display: flex;
    flex-direction: column;
  }

  .product__row .product__right {
    width: calc(100% / 12 * 12 - 20px);
  }

  .guide__title {
    margin-bottom: 30px;
  }

  .gallery {
    width: 630px;
    margin-bottom: 40px;
  }

  .stat-catalog__item {
    width: calc((100% - 25px * 2) / 3);
  }

  .translate__grid {
    grid-template-columns: 520px 1fr;
  }

  .analogs__item {
    width: calc(100% / 12 * 4 - 20px);
  }

  .condition__radio {
    width: calc(100% / 12 * 6 - 20px);
  }

  .equip-table table {
    width: auto;
  }

  .equip-table table thead tr th:nth-child(2) {
    padding-left: 10px;
  }

  .equip-table table tbody tr td:first-child {
    padding-right: 5px;
    border-right: 1px solid #E2E8ED;
  }

  .equip-table table tbody tr td:nth-child(2) {
    padding-left: 10px;
  }

  .price-breakdown {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 50px 0;
    border: none;
  }

  .price-breakdown__wrap {
    width: 100%;
    max-width: 578px;
    margin: 0 auto;
  }

  .price-breakdown__close {
    display: block;
  }

  .other__item {
    width: calc(100% / 12 * 6 - 20px);
  }

  .place-ad {
    width: 164px;
    height: 36px;
    margin-right: 24px;
    font-size: 12px;
  }

  .sales__header {
    padding-right: 60px;
  }

  .sales__all {
    display: none;
  }

  .account__sidebar {
    width: calc(100% / 12 * 3.5 - 20px);
  }

  .account__main {
    width: calc(100% / 12 * 8.5 - 20px);
  }

  .profile__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
  }

  .private__user {
    padding-right: 0;
  }

  .private__user::after {
    display: none;
  }

  .metaad {
    order: -1;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .placement__left {
    width: calc(100% / 12 * 12 - 20px);
  }

  .placement__left {
    order: 1;
  }

  .placement__right {
    width: calc(100% / 12 * 12 - 20px);
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    width: 740px;
  }

  .form-group input {
    font-size: 16px;
  }

  .selection__form {
    flex-direction: column;
    align-items: center;
  }

  .features__item {
    width: calc((100% - 20px * 2) / 3);
  }

  .subscribe__left {
    padding-left: calc((100vw - 740px) / 2 + 10px);
  }

  .m-reviews__all {
    margin-right: 0;
  }

  .m-reviews__btn {
    position: static;
    margin-top: 40px;
  }

  .reviews-carousel .slick-arrow {
    top: auto;
    bottom: -80px;
  }

  .reviews__item {
    width: calc(100% / 12 * 6 - 20px);
  }

  .hits__item {
    width: calc((100% - 25px * 2) / 3);
  }

  .catalog__footer .catalog__text {
    width: 100%;
    margin-bottom: 0;
  }

  .catalog-filter {
    padding: 24px;
  }

  .catalog-filter__item {
    width: calc((100% - 16px) / 2);
  }

  .catalog-filter__item--lg {
    width: 100%;
  }

  .company__logo {
    bottom: -40px;
    width: 100px;
    height: 100px;
  }

  .team__row {
    column-gap: 0;
    row-gap: 0;
    display: block;
  }

  .team__item {
    margin: 0 7px 16px;
  }

  .profi__left {
    width: 100%;
    padding-right: 0;
  }

  .profi__left::before {
    width: 100px;
  }

  .profi__left::after {
    display: block;
  }

  .profi__right {
    width: 100%;
    padding-left: 0;
  }

  .profi__right::before {
    display: block;
  }

  .profi__right::after {
    width: 100px;
  }

  .instock__item {
    width: calc(100% / 12 * 6 - 20px);
  }

  .contacts__email {
    margin-top: 20px;
  }

  .brands {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 -15px;
    padding: 0 15px 10px;
  }

  .alphabet__col {
    width: calc(100% / 5);
  }

  .guide__list {
    column-gap: 40px;
    padding-right: 0;
  }

  .stat-catalog__item {
    width: calc((100% - 25px) / 2);
  }

  .translate__grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }

  .analogs__item {
    width: calc(100% / 12 * 6 - 20px);
  }

  .used-brands .brands {
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }

  .account__sidebar {
    width: calc(100% / 12 * 12 - 20px);
  }

  .account__main {
    width: calc(100% / 12 * 12 - 20px);
  }

  .account__title {
    display: none;
  }

  .acc-menu {
    display: flex;
    flex-direction: column;
  }

  .acc-menu__item {
    display: none;
    margin-bottom: 15px;
    padding: 0;
  }

  .acc-menu__item:not(:last-child) {
    background: none;
  }

  .acc-menu__item:first-child {
    padding-top: 0;
  }

  .acc-menu__item:nth-last-child(2) {
    padding-bottom: 0;
  }

  .acc-menu__item.current {
    order: -1;
    display: flex;
  }

  .acc-menu__item.current .acc-menu__link {
    background: none;
  }

  .acc-menu__item.current .acc-menu__link span {
    color: #36414F;
  }

  .acc-menu__item.current .acc-menu__link span::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    margin-bottom: 3px;
    width: 13px;
    height: 8px;
    background: url(../img/icons/chevron.svg) center no-repeat;
    background-size: contain;
    transition: all 0.3s linear;
  }

  .acc-menu__item.current .acc-menu__link svg {
    fill: #36414F;
  }

  .acc-menu__link {
    padding: 0;
  }

  .balance__sum {
    order: -1;
  }

  .private__link {
    padding: 0;
  }

  .placement__form {
    row-gap: 25px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container {
    width: 560px;
  }

  .form-checkbox--mb {
    margin-bottom: 70px;
  }

  .features__item {
    width: calc((100% - 20px) / 2);
  }

  .subscribe {
    margin-bottom: 0;
  }

  .subscribe__left {
    padding-left: calc((100vw - 560px) / 2 + 10px);
  }

  .footerbar__center {
    width: calc(100% / 12 * 6 - 20px);
  }

  .footerbar__right {
    width: calc(100% / 12 * 6 - 20px);
  }

  .f-contacts {
    flex-wrap: wrap;
  }

  .promo-carousel {
    padding-bottom: 110px;
  }

  .promo-carousel .slick-slide a {
    width: 420px;
    height: 230px;
  }

  .promo-carousel .slick-current + .slick-slide a {
    width: 420px;
    height: 230px;
  }

  .promo-carousel .slick-current + .slick-slide + .slick-slide a {
    width: 420px;
    height: 230px;
  }

  .promo-carousel .slick-current + .slick-slide + .slick-slide + .slick-slide a {
    width: 420px;
    height: 230px;
  }

  .promo-carousel .slick-arrow {
    bottom: 60px;
  }

  .promo-carousel .slick-arrow.prev {
    left: auto;
    right: 57px;
  }

  .promo-carousel .slick-arrow.next {
    left: auto;
    right: 15px;
  }

  .review__content {
    padding: 15px 15px 25px;
  }

  .hits__item {
    width: calc((100% - 25px) / 2);
  }

  .catalog-filter {
    padding: 16px;
  }

  .catalog-filter__input {
    width: calc(50% - 8px);
  }

  .catalog-filter__group {
    column-gap: 16px;
  }

  .catalog-filter__group::before {
    display: none;
  }

  .company__logo {
    bottom: -20px;
    width: 63px;
    height: 60px;
  }

  .contacts__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contacts__addr {
    margin-top: 30px;
  }

  .alphabet__col {
    width: calc(100% / 3);
  }

  .data {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
  }

  .data__item {
    width: calc((100% - 40px * 2) / 3);
  }

  .guide__list {
    column-count: 1;
  }

  .guide__list li:nth-child(n + 10) {
    display: none;
  }

  .guide__toggle {
    display: inline-block;
  }

  .gallery {
    width: 100%;
  }

  .condition__radio {
    width: calc(100% / 12 * 12 - 20px);
  }

  .price-breakdown__wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .modal__inner {
    top: 20px;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    padding: 20px;
  }

  .modal__close {
    top: 15px;
    right: 15px;
    width: 16px;
    height: 16px;
  }

  .modal__close svg {
    width: 16px;
    height: 16px;
  }

  .modal__title {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .modal__text {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .modal .form-group {
    margin-bottom: 10px;
  }

  .modal__wrap {
    width: calc(100% - 30px);
    max-width: 290px;
    padding: 20px;
  }

  .modal__content {
    padding-left: 26px;
    background-position: left 4px;
    background-size: 16px;
  }

  .modal__content span {
    font-size: 18px;
  }

  .article__author {
    order: 1;
    width: 100%;
  }

  .share {
    margin-left: auto;
  }

  .response__header--mb .form-group {
    width: calc(100% - 90px);
  }

  .response__login {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
  }

  .cardad {
    height: auto;
    column-gap: 20px;
  }

  .cardad__left {
    height: 180px;
    border-bottom-left-radius: 0;
  }

  .cardad__center {
    width: calc(100% - 289px);
  }

  .cardad__right {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    row-gap: 10px;
    width: 100%;
    padding: 20px;
  }

  .cardad__price {
    width: 50%;
    margin-bottom: 0;
  }

  .cardad__label {
    order: 1;
    margin-bottom: 0;
  }

  .cardad__icons {
    justify-content: flex-end;
    width: 50%;
    margin-bottom: 0;
  }

  .cardad__city {
    order: 2;
  }

  .cardad__date {
    order: 3;
  }

  .cardad__data {
    order: 1;
    margin-bottom: 0;
  }

  .profile__col {
    width: calc(100% / 12 * 12 - 20px);
  }

  .placement__footer .placement__text {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 575px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    width: 100%;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }

  h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }

  p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  blockquote {
    margin: 20px 0;
    font-size: 14px;
  }

  blockquote span:first-child {
    font-size: 16px;
  }

  blockquote span:nth-child(2) {
    font-size: 13px;
  }

  .form-group label {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .form-group input {
    height: 47px;
    padding: 0 20px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 100px;
    padding: 15px 20px;
    font-size: 14px;
  }

  .form-group textarea.lg {
    min-height: 180px;
  }

  .form-img {
    bottom: -9px;
    right: -15px;
  }

  .form-radio label {
    height: 48px;
    font-size: 14px;
  }

  .form-checkbox {
    margin: 0;
    padding: 5px 0;
  }

  .form-checkbox label {
    padding-left: 30px;
    font-size: 14px;
  }

  .form-checkbox label::before {
    width: 20px;
    height: 20px;
  }

  .form-checkbox input:checked + label::after {
    left: 4px;
    top: 3px;
    width: 12px;
    height: 12px;
  }

  .header--inner {
    margin-bottom: 30px;
  }

  .social--red {
    column-gap: 10px;
  }

  .social--red .social__item {
    width: 44px;
    height: 44px;
  }

  .social--red .social__item svg {
    width: 24px;
    height: 24px;
  }

  .banner {
    padding: 115px 0 45px;
    background: url(../img/banner-map-sm.jpg) center no-repeat;
    background-size: cover;
  }

  .banner__title {
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.1;
  }

  .selection {
    padding: 20px;
  }

  .selection__title {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .selection__text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 17px;
  }

  .selection__form {
    row-gap: 10px;
  }

  .selection__btn {
    height: 47px;
  }

  .selection__btn svg {
    width: 16px;
    height: 16px;
  }

  .selection__btn span {
    margin-left: 10px;
    font-size: 14px;
  }

  .selection__years {
    height: 47px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .selection__years span {
    font-size: 14px;
  }

  .selection__years input {
    font-size: 14px;
  }

  .selection .new-select {
    height: 47px;
    padding: 15px 20px;
    font-size: 14px;
  }

  .selection .new-select__list {
    top: 38px;
    padding-top: 10px;
  }

  .new-select {
    height: 47px;
    padding: 0 20px;
    font-size: 14px;
  }

  .new-select__list {
    top: 38px;
    padding-top: 10px;
  }

  .new-select__item span {
    padding: 0 20px;
    font-size: 14px;
  }

  .new-select::after {
    right: 20px;
  }

  .features {
    padding: 60px 0;
  }

  .features__header {
    margin-bottom: 30px;
  }

  .features__title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .features__desc {
    font-size: 14px;
  }

  .features__section {
    margin-bottom: 35px;
  }

  .features__subtitle {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .features__item {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 12px;
    grid-row-gap: 0;
    width: 100%;
  }

  .features__text {
    grid-area: 2 / 2 / 3 / 3;
    max-width: 200px;
    margin-bottom: 5px;
    font-size: 14px;
  }

  .features__text br {
    display: none;
  }

  .features__name {
    grid-area: 1 / 2 / 2 / 3;
    margin-bottom: 5px;
    font-size: 16px;
  }

  .features__icon {
    grid-area: 1 / 1 / 3 / 2;
    align-self: center;
    width: auto;
    height: 41px;
    margin-bottom: 0;
  }

  .features--company .features__section {
    margin-bottom: 60px;
  }

  .calc__left {
    padding: 60px 0 27px;
  }

  .calc__right {
    padding-bottom: 60px;
  }

  .calc__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .calc__title img {
    width: 16px;
    height: 16px;
  }

  .calc__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .calc__header {
    padding: 60px 0 30px;
  }

  .calc__desc {
    margin-top: 15px;
    font-size: 14px;
  }

  .calc-form {
    padding-bottom: 60px;
  }

  .calc-form__text {
    font-size: 12px;
  }

  .calc-form__row {
    row-gap: 10px;
    margin-bottom: 20px;
  }

  .calc-form__col {
    width: calc(100% / 12 * 12 - 20px);
  }

  .calc-form__btn {
    height: 47px;
    font-size: 14px;
  }

  .promo {
    padding: 60px 0 250px;
    background: url(../img/bg-promo-sm.jpg) center no-repeat;
    background-size: cover;
  }

  .promo__title {
    margin-bottom: 15px;
    font-size: 23px;
  }

  .promo__desc {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .promo__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .subscribe__left {
    padding: 0 10px;
  }

  .subscribe__title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .subscribe__text {
    margin-bottom: 25px;
  }

  .msg {
    width: 290px;
  }

  .msg__text:first-child {
    margin-left: 35px;
    margin-bottom: 30px;
  }

  .msg__text:nth-child(2) {
    margin-left: 0;
  }

  .msg__text:nth-child(2)::before {
    top: -21px;
    right: 0;
  }

  .footerbar__left {
    padding: 25px 0;
  }

  .footerbar__center {
    width: calc(100% / 12 * 12 - 20px);
  }

  .footerbar__center {
    padding: 60px 0 25px;
  }

  .footerbar__right {
    width: calc(100% / 12 * 12 - 20px);
  }

  .footerbar__right {
    margin: 0 -5px;
    padding: 0 15px 15px;
    border-bottom: 1px solid #E2E8ED;
  }

  .f-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .f-menu__link {
    font-size: 14px;
    line-height: 17px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .breadcrumbs__item {
    font-size: 14px;
  }

  .scheme {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .scheme__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .scheme__section {
    margin-bottom: 30px;
  }

  .scheme p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .scheme__subtitle {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .scheme ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .warn {
    padding: 20px;
  }

  .warn__title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .warn ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .contract {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .contract__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .contract__text p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .load__name {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .promo-carousel {
    margin-left: 3px;
  }

  .promo-carousel .slick-slide {
    padding: 0 7px;
  }

  .promo-carousel .slick-slide a {
    width: 214px;
    height: 121px;
  }

  .promo-carousel .slick-current + .slick-slide a {
    width: 214px;
    height: 121px;
  }

  .promo-carousel .slick-current + .slick-slide + .slick-slide a {
    width: 214px;
    height: 121px;
  }

  .promo-carousel .slick-current + .slick-slide + .slick-slide + .slick-slide a {
    width: 214px;
    height: 121px;
  }

  .m-news {
    margin: 60px 0;
  }

  .m-news__header {
    margin-bottom: 30px;
  }

  .m-news__title {
    font-size: 24px;
  }

  .m-news__all {
    padding-bottom: 5px;
    font-size: 14px;
    border-bottom-width: 1px;
  }

  .m-news .news-grid__item:nth-child(n + 4) {
    display: none;
  }

  .news-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 15px;
  }

  .news-card {
    height: 237px;
  }

  .news-card__content {
    right: 15px;
  }

  .news-card__title {
    font-size: 14px;
  }

  .news-card__info {
    font-size: 12px;
  }

  .news-card--lg .news-card__content {
    bottom: 15px;
    left: 15px;
    padding: 12px 15px;
  }

  .news-card--lg .news-card__title {
    font-size: 14px;
    line-height: 17px;
  }

  .news {
    margin-bottom: 60px;
  }

  .news__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .news__nav {
    margin: 0 -15px 20px;
    padding: 0 15px 10px;
  }

  .news__link {
    height: 40px;
    font-size: 14px;
  }

  .pagination__link {
    font-size: 18px;
    line-height: 22px;
  }

  .m-reviews {
    padding: 60px 0;
    margin-bottom: 60px;
  }

  .m-reviews__header {
    margin-bottom: 30px;
  }

  .m-reviews__title {
    font-size: 24px;
  }

  .m-reviews__all {
    padding-bottom: 5px;
    font-size: 14px;
    border-bottom-width: 1px;
  }

  .m-reviews__btn {
    margin-top: 25px;
    width: 172px;
    height: 47px;
    font-size: 14px;
  }

  .reviews-carousel .slick-arrow {
    bottom: -60px;
  }

  .review__img {
    height: auto;
    aspect-ratio: 2.101;
  }

  .review__author {
    font-size: 14px;
  }

  .review__car {
    font-size: 12px;
  }

  .review__link {
    font-size: 14px;
  }

  .review__wrap {
    height: 126px;
    margin-bottom: 25px;
  }

  .review__text {
    font-size: 14px;
  }

  .reviews__header {
    margin-bottom: 30px;
  }

  .reviews__title {
    font-size: 24px;
  }

  .reviews__btn {
    width: 172px;
    height: 47px;
  }

  .reviews__item {
    width: calc(100% / 12 * 12 - 20px);
  }

  .m-instock {
    padding: 60px 0;
  }

  .m-instock__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .instock-carousel {
    margin: 0 -7px;
  }

  .instock-carousel .item {
    width: 230px;
    padding: 0 7px;
  }

  .instock-carousel .slick-slide {
    opacity: 1;
  }

  .instock-carousel .slick-arrow {
    top: -54px;
  }

  .card-stock__img {
    height: 212px;
  }

  .card-stock__label {
    display: none;
  }

  .card-stock__sold {
    display: none;
  }

  .card-stock__desc {
    padding: 15px;
  }

  .card-stock__title {
    font-size: 18px;
  }

  .hits {
    padding: 60px 0;
  }

  .hits__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .hits__more {
    height: 55px;
    font-size: 12px;
  }

  .hits__more svg {
    width: 13px;
    height: 13px;
    margin-right: 8px;
  }

  .hits__row {
    column-gap: 14px;
    row-gap: 15px;
    margin-bottom: 20px;
  }

  .hits__item {
    width: calc((100% - 14px) / 2);
  }

  .card-hit {
    padding: 15px;
  }

  .card-hit__title {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .card-hit__info {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .card-hit__img {
    height: 110px;
  }

  .card-hit__price {
    font-size: 12px;
  }

  .card-hit__offers {
    font-size: 10px;
  }

  .filter {
    margin-bottom: 40px;
  }

  .filter__item {
    height: 40px;
    font-size: 14px;
  }

  .filter__hybrid label {
    padding-left: 30px;
    font-size: 14px;
  }

  .filter__hybrid label::before {
    width: 20px;
    height: 20px;
  }

  .filter__hybrid input:checked + label::after {
    left: 4px;
    top: 3px;
    width: 12px;
    height: 12px;
  }

  .range-price {
    width: 100%;
    max-width: 380px;
    margin: 30px 15px 0;
  }

  .catalog__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .catalog__text {
    margin-top: -15px;
    margin-bottom: 30px;
  }

  .catalog__row {
    margin-left: 0;
    margin-right: -15px;
  }

  .catalog__row .slick-slide {
    width: 214px;
  }

  .catalog__row .slick-arrow.prev {
    right: 49px;
  }

  .catalog__row .slick-arrow.next {
    right: 15px;
  }

  .catalog__footer {
    margin-bottom: 60px;
    row-gap: 20px;
  }

  .catalog__footer .catalog__text {
    margin-top: 0;
  }

  .catalog__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .catalog-filter {
    margin: 0 -15px;
    padding: 15px;
    border-radius: 0;
  }

  .catalog-filter__row {
    gap: 10px;
  }

  .catalog-filter__item {
    width: 100%;
  }

  .catalog-filter__btn {
    font-size: 14px;
  }

  .catalog-filter__input span {
    font-size: 14px;
  }

  .catalog-filter__input input {
    font-size: 14px;
  }

  .catalog-filter__toggle {
    margin-top: 20px;
    padding-bottom: 3px;
    font-size: 14px;
  }

  .catalog-filter__checkbox {
    margin-bottom: 0;
    padding: 10px 0;
  }

  .catalog-filter__checkbox label {
    padding-left: 30px;
    font-size: 14px;
  }

  .catalog-filter__checkbox label::before {
    width: 20px;
    height: 20px;
  }

  .catalog-filter__checkbox input:checked + label::after {
    left: 4px;
    top: 3px;
    width: 12px;
    height: 12px;
  }

  .catalog-filter__radio-group {
    column-gap: 15px;
    padding-bottom: 10px;
  }

  .catalog-filter__radio label {
    width: 32px;
    height: 32px;
  }

  .catalog-filter__radio--text {
    margin-right: 5px;
  }

  .catalog-filter__radio--text label {
    width: 120px;
    height: 48px;
    font-size: 14px;
  }

  .company {
    margin-bottom: 60px;
  }

  .company__img {
    margin-bottom: 40px;
  }

  .company__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .company__text p {
    font-size: 14px;
  }

  .team {
    margin-bottom: 60px;
  }

  .team__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .team__row {
    margin: 0 -15px;
    padding-left: 15px;
  }

  .team__row .slick-arrow {
    bottom: -52px;
  }

  .team__row .slick-arrow.prev {
    right: 57px;
  }

  .team__row .slick-arrow.next {
    right: 15px;
  }

  .team__item {
    width: 214px;
    height: 236px;
    margin-bottom: 20px;
    padding: 8px 4px 0;
  }

  .team__info {
    width: 100%;
    height: 96px;
    background: url(../img/icons/bg-team-sm.svg) center no-repeat;
    background-size: contain;
  }

  .profi {
    margin-bottom: 60px;
  }

  .profi__left {
    padding: 60px 0 40px;
  }

  .profi__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .profi__text {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .profi__list {
    row-gap: 10px;
  }

  .profi__item {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    background-position: left top;
  }

  .call__title {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.2;
  }

  .call__btn {
    width: 290px;
    height: 47px;
    margin-top: 30px;
    font-size: 14px;
  }

  .instock__item {
    width: calc(100% / 12 * 12 - 20px);
  }

  .contacts {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .contacts__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .contacts__nav {
    column-gap: 12px;
    margin-bottom: 30px;
  }

  .contacts__link {
    height: 40px;
    font-size: 14px;
  }

  .contacts__row {
    margin-bottom: 40px;
  }

  .contacts__addr {
    font-size: 16px;
    line-height: 19px;
  }

  .contacts__email {
    font-size: 16px;
    line-height: 19px;
  }

  .map {
    margin: 0 15px;
  }

  .statistics {
    margin-bottom: 60px;
  }

  .statistics__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .brands {
    column-gap: 10px;
  }

  .brands__item {
    width: auto;
    min-width: 117px;
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
  }

  .brands__item img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }

  .alphabet {
    margin-top: 30px;
  }

  .alphabet__row {
    row-gap: 20px;
  }

  .alphabet__title {
    font-size: 20px;
  }

  .alphabet__wrap {
    max-height: 105px;
  }

  .alphabet__link {
    font-size: 14px;
  }

  .alphabet__all {
    font-size: 14px;
  }

  .product {
    padding-bottom: 60px;
  }

  .product__grid {
    margin-bottom: 40px;
  }

  .product__instock {
    column-gap: 10px;
    justify-content: space-between;
  }

  .product__instock span {
    font-size: 14px;
    line-height: 17px;
  }

  .product__view {
    column-gap: 3px;
  }

  .product__view svg {
    width: 14px;
    height: 8px;
  }

  .product__title {
    font-size: 24px;
  }

  .product__title--ad {
    margin-bottom: 20px;
  }

  .product__info {
    font-size: 16px;
  }

  .product__bottom {
    grid-template-columns: repeat(2, auto);
  }

  .product__price {
    grid-area: 1 / 1 / 2 / 2;
    font-size: 28px;
  }

  .product__btn {
    grid-area: 2 / 1 / 3 / 3;
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .product__ask {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: end;
    font-size: 14px;
  }

  .product__bottom-flex .product__btn {
    width: 100%;
  }

  .product__b-text {
    width: 100%;
    font-size: 12px;
  }

  .data {
    column-gap: 20px;
    row-gap: 15px;
  }

  .data__item {
    width: calc((100% - 20px) / 2);
  }

  .data__item span:first-child {
    font-size: 12px;
  }

  .data__item span:nth-child(2) {
    font-size: 16px;
  }

  .desc {
    margin: 0 -15px 50px;
    padding: 40px 15px 0;
    border-top: 1px solid rgba(54, 65, 79, 0.2);
  }

  .desc__title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .desc__subtitle {
    font-size: 14px;
  }

  .desc__text {
    margin-bottom: 20px;
  }

  .desc__text p {
    font-size: 14px;
  }

  .desc__text ul {
    font-size: 14px;
  }

  .guide__header {
    margin-bottom: 30px;
  }

  .guide__title {
    font-size: 20px;
  }

  .guide__link {
    margin-top: 0;
    font-size: 14px;
  }

  .guide__list li {
    margin-bottom: 3px;
    font-size: 14px;
  }

  .guide__toggle {
    font-size: 14px;
  }

  .gallery__label {
    top: 5px;
    left: 5px;
    height: 37px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 17px;
  }

  .gallery__item {
    height: auto;
    aspect-ratio: 1.526;
  }

  .gallery__thumbs .slick-list {
    overflow: visible;
  }

  .gallery__thumbs .item {
    width: 100px;
    height: 70px;
  }

  .seo-text {
    padding: 60px 0;
  }

  .seo-text__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .seo-text__text {
    font-size: 14px;
  }

  .stat-catalog {
    margin-top: 40px;
    margin-bottom: 50px;
  }

  .stat-catalog__row {
    column-gap: 15px;
    row-gap: 15px;
    margin-bottom: 40px;
  }

  .stat-catalog__item {
    width: calc((100% - 15px) / 2);
  }

  .sort {
    column-gap: 20px;
    margin-bottom: 20px;
  }

  .sort__label {
    font-size: 14px;
  }

  .sort__toggle {
    width: 20px;
    height: 20px;
  }

  .sort__toggle svg {
    width: 17px;
    height: 14px;
  }

  .stat-search {
    margin-bottom: 60px;
  }

  .stat-search__item {
    margin-bottom: 30px;
  }

  .stat-search__title {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .stat-search__row {
    column-gap: 30px;
  }

  .stat-search__link {
    font-size: 14px;
  }

  .total-sum {
    margin-bottom: 20px;
  }

  .total-sum__warn {
    font-size: 16px;
  }

  .total-sum__table {
    margin-bottom: 20px;
  }

  .total-sum__header {
    margin-bottom: 10px;
  }

  .total-sum__header span {
    font-size: 12px;
  }

  .total-sum__item span {
    font-size: 16px;
  }

  .translate {
    margin-bottom: 60px;
    padding: 60px 0;
  }

  .translate__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .translate__text {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .translate__list {
    margin-bottom: 25px;
  }

  .translate__list li {
    margin-bottom: 14px;
    padding-left: 34px;
    font-size: 16px;
    line-height: 20px;
    background-position: 1px top;
  }

  .translate__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    width: 100%;
  }

  .translate__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .translate__price {
    font-size: 14px;
  }

  .analogs {
    margin-bottom: 60px;
  }

  .analogs__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .analogs__row {
    row-gap: 15px;
    margin-bottom: 20px;
  }

  .analogs__item {
    width: calc(100% / 12 * 12 - 20px);
  }

  .analogs__btn {
    margin-top: -35px;
    height: 55px;
  }

  .analogs__btn svg {
    width: 13px;
    height: 13px;
    margin-right: 8px;
  }

  .analogs__btn span {
    font-size: 12px;
  }

  .card {
    padding: 20px;
  }

  .card__header {
    flex-direction: column;
    row-gap: 5px;
  }

  .card__title {
    font-size: 18px;
  }

  .card__price {
    font-size: 18px;
  }

  .card__info span {
    font-size: 14px;
  }

  .card__img {
    height: 170px;
  }

  .video {
    margin-bottom: 60px;
    padding: 60px 0;
  }

  .video__title {
    margin-bottom: 30px;
    padding-right: 90px;
    font-size: 24px;
  }

  .video__row {
    margin-left: 0;
    margin-right: -15px;
  }

  .video__row .slick-slide {
    width: 214px;
  }

  .video__row .slick-arrow.prev {
    right: 49px;
  }

  .video__row .slick-arrow.next {
    right: 15px;
  }

  .video__item {
    height: 175px;
    margin-left: 7px;
    margin-right: 7px;
  }

  .video__icon {
    top: 42px;
    left: calc(50% - 19px);
    width: 38px;
    height: 29px;
  }

  .video__icon::after {
    left: calc(50% + 1px);
    border-left-width: 11px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }

  .video__desc {
    padding: 9px 15px;
  }

  .video__desc p {
    font-size: 12px;
    line-height: 15px;
  }

  .price {
    margin-bottom: 60px;
  }

  .price__title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .price__text {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .price__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .condition {
    margin-bottom: 30px;
  }

  .condition__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .condition__row {
    row-gap: 10px;
  }

  .condition__radio label {
    row-gap: 5px;
    height: 87px;
    padding: 20px;
  }

  .condition__text {
    font-size: 18px;
  }

  .condition__price {
    font-size: 18px;
  }

  .modification__title {
    margin-bottom: 15px;
    padding-right: 90px;
    font-size: 20px;
  }

  .modification__left {
    row-gap: 10px;
    width: 96px;
    padding-top: 57px;
  }

  .modification__left span {
    font-size: 12px;
  }

  .modification__left span:first-child {
    margin-bottom: 17px;
  }

  .modification__right {
    width: calc(100% - 96px);
  }

  .mod-carousel {
    margin-bottom: 74px;
    margin-right: -15px;
  }

  .mod-carousel .slick-dots {
    left: -96px;
    right: 15px;
  }

  .mod-carousel .slick-arrow {
    top: -35px;
  }

  .mod-carousel .slick-arrow.prev {
    right: 49px;
  }

  .mod-carousel .slick-arrow.next {
    right: 15px;
  }

  .mod-radio label {
    row-gap: 10px;
    width: 162px;
    height: 211px;
    padding: 20px;
  }

  .mod-radio label span {
    font-size: 14px;
    line-height: 1.3;
  }

  .mod-radio label span:first-child {
    font-size: 18px;
  }

  .purchased {
    margin-bottom: 60px;
  }

  .purchased__title {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .purchased__desc {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .purchased__btn {
    margin-top: -35px;
    height: 55px;
  }

  .purchased__btn svg {
    width: 13px;
    height: 13px;
    margin-right: 8px;
  }

  .purchased__btn span {
    font-size: 12px;
  }

  .equipment {
    padding: 60px 0;
  }

  .equipment__title {
    margin-bottom: 15px;
    padding-right: 90px;
    font-size: 24px;
  }

  .equipment__years {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .equipment__subtitle {
    margin-bottom: 15px;
  }

  .equipment__link {
    font-size: 14px;
  }

  .equipment-carousel {
    margin: 0 -15px 25px -5px;
  }

  .equipment-carousel .item {
    margin: 0 5px;
    padding: 0;
    width: 120px;
  }

  .equipment-carousel .item img {
    height: 75px;
    object-fit: cover;
  }

  .equip-table {
    margin-bottom: 30px;
    margin-right: -15px;
  }

  .equip-table table thead tr th {
    padding: 0 20px 7px 0;
    font-size: 11px;
  }

  .equip-table table thead tr th:first-child {
    padding-right: 79px;
  }

  .equip-table table tbody tr td {
    padding: 10px 20px 7px 0;
    font-size: 12px;
  }

  .equip-table table tbody tr td:last-child {
    padding-top: 10px;
    padding-right: 15px;
  }

  .equip-table table tbody tr td:last-child a {
    width: 25px;
    height: 25px;
  }

  .price-breakdown__btn {
    width: 100%;
    height: 47px;
  }

  .price-breakdown__total {
    order: -1;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .modal__footer {
    flex-direction: column;
    row-gap: 10px;
  }

  .modal__subtitle {
    font-size: 18px;
  }

  .modal__whatsapp {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .modal__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .modal__file {
    flex-direction: column;
    margin-bottom: 10px;
    padding-top: 10px;
    row-gap: 20px;
  }

  .modal__file .form-group {
    width: calc(100% - 45px);
    margin-left: auto;
  }

  .modal__file .form-group::before {
    display: block;
  }

  .modal .form-file {
    width: 100%;
    padding-right: 0;
  }

  .modal .form-file::after {
    display: none;
  }

  .article {
    margin-bottom: 60px;
  }

  .article__title {
    font-size: 24px;
  }

  .article__date {
    font-size: 12px;
    line-height: 14px;
  }

  .article__category {
    font-size: 12px;
    line-height: 14px;
  }

  .article__author {
    font-size: 12px;
    line-height: 14px;
  }

  .article__wrap img {
    margin: 30px 0 20px;
  }

  .article__wrap ul {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .article__wrap ul li {
    font-size: 14px;
  }

  .article__wrap ol {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .article__wrap ol li {
    font-size: 14px;
  }

  .article section {
    margin-bottom: 40px;
  }

  .article-carousel .item a img {
    width: 214px;
    height: 150px;
    object-fit: cover;
    aspect-ratio: none;
  }

  .other {
    margin-bottom: 80px;
    padding: 40px 0;
  }

  .other__title {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .other__item {
    width: calc(100% / 12 * 12 - 20px);
  }

  .comments {
    margin-bottom: 60px;
  }

  .comments__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .comments__list {
    row-gap: 30px;
    margin-bottom: 30px;
  }

  .comments__footer {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 40px;
  }

  .comments__more {
    padding-bottom: 5px;
    font-size: 14px;
  }

  .comments__write {
    font-size: 14px;
  }

  .comment {
    grid-column-gap: 10px;
  }

  .comment__img {
    width: 40px;
    height: 40px;
  }

  .comment__post {
    margin-bottom: 5px;
  }

  .comment__header {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5px;
    margin-bottom: 10px;
  }

  .comment__author {
    font-size: 14px;
  }

  .comment__date {
    font-size: 12px;
  }

  .comment__text {
    font-size: 14px;
  }

  .comment__reply {
    font-size: 14px;
  }

  .comment__response-link {
    font-size: 14px;
  }

  .comment__response {
    row-gap: 20px;
    padding-top: 25px;
  }

  .comment__quote {
    margin-bottom: 10px;
  }

  .comment__quote p {
    font-size: 14px;
  }

  .like {
    column-gap: 10px;
  }

  .like__item span {
    font-size: 14px;
  }

  .like__item a {
    width: 20px;
    height: 20px;
  }

  .like__item a svg {
    width: 17px;
    height: 16px;
  }

  .response {
    padding-top: 30px;
  }

  .response__header {
    column-gap: 10px;
  }

  .response__header--mb {
    margin-bottom: 10px;
  }

  .response__header--mb .form-group {
    width: calc(100% - 50px);
  }

  .response__img {
    width: 40px;
    height: 40px;
  }

  .response__name {
    font-size: 14px;
  }

  .response__wrap {
    padding-left: 50px;
  }

  .response__quote {
    margin-bottom: 15px;
  }

  .response__quote p {
    font-size: 14px;
  }

  .response__footer {
    column-gap: 24px;
    margin-top: 10px;
  }

  .response__btn {
    width: 140px;
    height: 47px;
  }

  .response__cancel {
    font-size: 12px;
  }

  .response__login {
    font-size: 14px;
  }

  .search-city__form {
    margin-bottom: 25px;
  }

  .search-city__form input {
    width: 100%;
    height: 47px;
    padding: 0 20px;
    font-size: 14px;
  }

  .search-city__form button {
    width: 100%;
    height: 47px;
  }

  .search-city__form button svg {
    display: none;
  }

  .search-city__form button span {
    display: block;
    font-family: 'Gilroy Semibold';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
  }

  .search-city__list {
    column-count: 2;
    column-gap: 20px;
  }

  .search-city__list a {
    font-size: 14px;
    line-height: 17px;
  }

  .sales {
    padding-bottom: 60px;
  }

  .sales__header {
    margin-bottom: 30px;
  }

  .sales__title {
    font-size: 24px;
  }

  .sales-carousel {
    margin: 0 -7px;
  }

  .sales-carousel .item {
    width: 230px;
    padding: 0 7px;
  }

  .sales-carousel .slick-slide {
    opacity: 1;
  }

  .sales-carousel .slick-arrow {
    top: -54px;
  }

  .used-cars {
    padding-bottom: 60px;
    padding-top: 40px;
  }

  .used-cars__title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 22px;
  }

  .used-cars__filter {
    margin-bottom: 40px;
  }

  .login {
    padding-bottom: 60px;
  }

  .login__title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .login .form-group {
    margin-bottom: 10px;
  }

  .login__btn {
    height: 46px;
    font-size: 14px;
  }

  .login__footer {
    margin-top: 26px;
  }

  .login__footer p {
    font-size: 14px;
  }

  .login__footer p a {
    font-size: 14px;
  }

  .forgot {
    width: 110px;
    margin: -5px 0 15px auto;
    font-size: 14px;
  }

  .used-brands {
    margin-bottom: 60px;
  }

  .used-brands__toggle {
    margin-top: 20px;
    padding-bottom: 3px;
    font-size: 14px;
  }

  .used-brands .brands {
    row-gap: 10px;
  }

  .used-brands .brands__item {
    width: calc(50% - 5px);
    max-width: 170px;
  }

  .carads__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .carads__list {
    grid-row-gap: 15px;
  }

  .cardad__left {
    width: 100%;
    height: 160px;
    border-radius: 10px 10px 0px 0px;
  }

  .cardad__center {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #E2E8ED;
  }

  .cardad__right {
    row-gap: 5px;
    padding-top: 10px;
  }

  .cardad__price {
    font-size: 22px;
  }

  .cardad__label {
    font-size: 12px;
  }

  .cardad__city {
    display: none;
  }

  .cardad__title {
    width: calc(100% - 42px);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .cardad__check {
    width: 24px;
    height: 23px;
    margin-left: auto;
  }

  .cardad__check-icon {
    top: 12px;
    left: 12px;
  }

  .s-banner {
    padding: 60px 0 280px;
    background: url(../img/bg-banner-sales-sm.jpg) center no-repeat;
    background-size: cover;
  }

  .s-banner__text {
    margin-bottom: 30px;
    font-size: 23px;
    line-height: 1.2;
  }

  .s-banner__btn {
    width: 100%;
    max-width: 320px;
    height: 48px;
    font-size: 14px;
  }

  .account {
    row-gap: 20px;
    margin-bottom: 60px;
  }

  .balance__header {
    margin-bottom: 20px;
    padding-bottom: 30px;
  }

  .balance__sum {
    font-size: 20px;
  }

  .replen {
    flex-direction: column;
    row-gap: 10px;
    max-width: 320px;
  }

  .replen__input input {
    width: 100%;
    height: 47px;
    padding-left: 20px;
    font-size: 14px;
  }

  .replen__input span {
    font-size: 13px;
  }

  .replen__btn {
    width: 100%;
    height: 47px;
    font-size: 14px;
  }

  .balance-story__title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .balance-story__header {
    display: none;
  }

  .balance-story__list {
    margin-bottom: 40px;
  }

  .balance-story__item {
    flex-wrap: wrap;
    row-gap: 5px;
    padding: 15px 0;
    border-top: none;
    border-bottom: 1px solid #E2E8ED;
  }

  .balance-story__item:first-child {
    padding-top: 0;
  }

  .balance-story__item:last-child {
    padding-bottom: 15px;
  }

  .balance-story__date {
    width: 100%;
    font-size: 12px;
    color: #828EA2;
  }

  .balance-story__action {
    font-size: 14px;
  }

  .balance-story__sum {
    font-size: 14px;
  }

  .myads__header {
    margin-bottom: 30px;
  }

  .myads__nav {
    column-gap: 12px;
  }

  .myads__link {
    height: 40px;
    font-size: 14px;
  }

  .myads__text {
    font-size: 14px;
  }

  .myads__btn {
    width: 100%;
    max-width: 320px;
    height: 47px;
    font-size: 14px;
  }

  .myads__item {
    row-gap: 15px;
  }

  .myads__control a {
    column-gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .profile__header {
    align-items: stretch;
    margin: 0 -15px 30px;
    padding: 0 15px 30px;
  }

  .profile__col {
    row-gap: 20px;
  }

  .profile__col--right {
    flex-direction: column;
  }

  .profile__submit {
    width: 100%;
    height: 47px;
    border-radius: 8px;
    font-size: 14px;
  }

  .profile__reset {
    font-size: 14px;
  }

  .profile-balance {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .profile-balance__btn {
    width: 100%;
    height: 47px;
    border-radius: 8px;
    font-size: 14px;
  }

  .profile-balance__left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .profile-balance__sum {
    margin-bottom: 0;
    font-size: 16px;
  }

  .profile-balance__sum span {
    font-size: 20px;
  }

  .profile-balance__story {
    font-size: 14px;
  }

  .user__name p {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .user__img {
    width: 64px;
    height: 64px;
  }

  .user__del {
    top: -9px;
    right: -15px;
  }

  .private__user span {
    font-size: 14px;
  }

  .contentad__header {
    grid-template-columns: 118px 1fr 24px;
    grid-row-gap: 5px;
    margin-bottom: 20px;
  }

  .contentad__price {
    font-size: 28px;
  }

  .contentad__fav {
    width: 24px;
    height: 24px;
  }

  .contentad__fav svg {
    width: 21px;
    height: 19px;
  }

  .contentad__label {
    font-size: 12px;
  }

  .contentad__check {
    column-gap: 10px;
    margin-bottom: 30px;
  }

  .contentad__check img {
    width: 24px;
    height: 23px;
  }

  .contentad__check span {
    font-size: 14px;
  }

  .contentad__footer {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }

  .contentad__msg {
    font-size: 14px;
  }

  .infoad {
    margin-bottom: 20px;
  }

  .infoad__item {
    margin-bottom: 10px;
  }

  .infoad__item span {
    font-size: 14px;
  }

  .descad {
    margin-bottom: 20px;
  }

  .descad__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .descad__text {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .descad__text p {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .descad__footer p {
    font-size: 14px;
  }

  .sellerad {
    flex-direction: column;
    align-items: flex-start;
  }

  .sellerad__name {
    font-size: 16px;
  }

  .sellerad__qnt {
    font-size: 12px;
  }

  .sellerad__link {
    font-size: 14px;
  }

  .contactsad {
    width: 100%;
  }

  .contactsad__btn {
    width: 100%;
    max-width: 340px;
    height: 47px;
    font-size: 14px;
  }

  .contactsad__tel a {
    width: 100%;
    height: 47px;
    font-size: 22px;
  }

  .metaad {
    row-gap: 2px;
    margin-bottom: 20px;
  }

  .metaad__text {
    width: 100%;
    font-size: 14px;
  }

  .metaad__view span {
    font-size: 14px;
  }

  .metaad__footer {
    column-gap: 15px;
    width: auto;
    margin-left: auto;
  }

  .seller-views {
    padding: 15px;
  }

  .seller-views__name {
    font-size: 12px;
  }

  .seller-views__val img {
    width: 18px;
    height: 18px;
  }

  .seller-views__val span {
    font-size: 15px;
  }

  .select2-container--default .select2-results__option {
    font-size: 14px;
  }

  .placement {
    margin-bottom: 60px;
  }

  .placement__title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .placement__row {
    row-gap: 20px;
  }

  .placement__form {
    row-gap: 15px;
  }

  .placement__col {
    width: calc(100% / 12 * 12 - 20px);
  }

  .placement__link {
    font-size: 14px;
  }

  .placement__text {
    font-size: 12px;
  }

  .placement__text a.what {
    font-size: 14px;
  }

  .placement__btn {
    width: 100%;
    max-width: 320px;
  }

  .vin {
    padding: 15px;
  }

  .vin__text {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .colors {
    column-gap: 15px;
    padding-bottom: 10px;
  }

  .colors__radio--text label {
    width: 120px;
    height: 48px;
    font-size: 14px;
  }

  .img-group {
    gap: 14px;
  }

  .img-group__item {
    width: 138px;
    height: 138px;
  }
}

@media screen and (max-width: 509px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .stat-catalog__item {
    width: 100%;
  }
}

@media screen and (max-width: 413px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    width: 100%;
  }

  .selection__years span i {
    display: none;
  }

  .alphabet__col {
    width: 50%;
  }

  .alphabet__col:first-child {
    width: 100%;
  }

  .price-breakdown__title {
    max-width: none;
  }

  .exchange {
    width: 100%;
  }

  .used-brands .brands__item {
    max-width: none;
  }
}

@media screen and (max-width: 374px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container {
    width: 100%;
  }
}