/* @import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"); */

html {
	scroll-behavior: smooth;
}

:root {
	--accent: #00b0b6;
	--black: #000;
	/* --font-main: "Open Sans", sans-serif; */
	--container-desk: 1180px;
	--container-tablet: 964px;
	--container-mob: calc(100% - 40px);
	--header-desk: 85px;
	--header-tablet: 75px;
	--header-mob: 80px;
}

body,
* {
	font-family: 'Open Sans';
}

body {
	color: var(--black);
}

strong {
	font-weight: 700;
}

.container {
	width: 100%;
	height: 100%;
	display: block;
	max-width: var(--container-desk);
	margin: 0 auto;
}

.btn {
	background: none;
	border: none;
	height: 42px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
}

.btn-black {
	background-color: var(--black);
}

.btn-black:hover {
	background-color: var(--accent);
}

.btn-accent {
	background-color: var(--accent);
}

.btn-accent:hover {
	background-color: var(--black);
}

.btn-white-hover:hover {
	background-color: #fff;
	color: var(--black);
}

.btn-outline {
	background: none;
	color: var(--black);
	border: 1px solid var(--black);
}

.btn-outline:hover {
	color: #fff;
	background: var(--black);
}

.btn-outline-white {
	background: none;
	color: #fff;
	border: 1px solid #fff;
}

.btn-outline-white:hover {
	color: #000;
	background: #fff;
}

.btn-show-more {
	font-size: 15px;
	color: var(--black);
	gap: 10px;
	margin-top: 20px;
}

.btn-show-more::after {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../img/list-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	rotate: 90deg;
}

.input {
	width: 100%;
	height: 42px;
	border: 1px solid rgba(43, 48, 58, 0.5);
	padding: 0 12px;
	font-size: 15px;
	background: none;
}

.input::placeholder {
	color: gray;
}

.input-white {
	border-color: #fff;
	color: #fff;
}

.burger {
	display: none;
}

.menu {
	display: none;
}

.header {
	position: fixed;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
}

.header__contacts {
	height: 25px;
	background-color: #fff;
}
.header__contacts > div {
	display: flex;
	justify-content: space-between;
}

.header__contacts-list {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 50px;
}

.header__contacts-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

.header__main {
	position: relative;
	/* height: 60px; */
	height: 80px;
	background: none;
	transition: all 0.3s;
}

.header.scroll .header__main {
	background: var(--black);
}

.header__main::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 70%;
	background: linear-gradient(90deg, #fff, transparent);
}

.header__content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}

.header__logo {
	width: 142px;
}

.header__logo svg {
	width: 100%;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 52px;
	margin-left: 70px;
}

.header__menu-item {
	font-size: 12px;
}

.header__menu-item:hover {
	color: var(--accent);
	/* font-weight: 600; */
}

.header__btn {
	max-width: 218px;
	margin-left: auto;
}

.hero {
	height: 635px;
	position: relative;
	overflow: hidden;
	margin-top: 25px;
	/* background-image: url(../img/hero.webp); */
	background-image: url(../img/hero-desk.webp);
	background-size: cover;
}

.hero__content {
	height: 100%;
	padding: 100px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 25px;
	color: #fff;
}

.hero__heading {
	font-size: 38px;
	font-weight: 600;
	line-height: 1.3;
	max-width: 710px;
}

.hero__heading span {
	color: var(--accent);
}

.hero__text {
	display: flex;
	flex-direction: column;
	gap: 38px;
}

.hero__list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.hero__list-item {
	display: flex;
	gap: 16px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 600;
	align-items: flex-start;
}

.hero__list-item img {
	width: 35px;
}

.hero__btn {
	max-width: 280px;
}


/* Special offer */

.special-offer {
    margin-top: 50px;
}

.wrapper-special-offer {
    display: flex;
    height: 260px;
}

.left-half-special-offer {
    flex: 1;
    border: 1px solid;
    padding: 10px 20px;
}

.title-special-offer {
    font-size: 25px;
    font-weight: 700;
}

.title-special-offer b {
    color: var(--accent);
}

.list-special-offer {
    padding: 10px 0;
    font-weight: 600;
}

.list-special-offer li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-special-offer li span b {
    color: var(--accent);
}

.form-special-offer {
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-half-special-offer img {
    width: 100%;
    height: 100%;
}



.action {
	background: #fff;
	box-shadow: 0px 4px 22.1px 0px rgba(0, 0, 0, 0.13);
}

.action__content {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 12px 0 20px;
}

.action__timer {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 350px;
}

.action__timer-title {
	font-size: 20px;
	font-weight: 600;
}

.action__timer-title span {
	color: var(--accent);
}

.action__form {
	display: grid;
	grid-template-columns: 214px 214px 280px;
	grid-template-rows: 42px auto;
	gap: 14px;
}

.action__form .input {
	height: 42px;
}

.action__form .btn {
	height: 42px;
	font-size: 16px;
}

.action__form .agreement {
	grid-column: 3;
}

.agreement {
	display: flex;
	gap: 12px;
	width: 100%;
}

.agreement_white {
	color: #fff;
}

.agreement input {
	display: none;
}

.agreement input + span {
	margin-top: 2px;
	width: 14px;
	min-width: 14px;
	height: 13px;
	border: 1px solid var(--black);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.agreement_white input + span {
	border-color: #fff;
}

.agreement input:checked + span::after {
	content: '';
	width: 80%;
	height: 80%;
	background-image: url(../img/agreement-check.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.agreement_white input:checked + span::after {
	background-image: url(../img/agreement-check-white.svg);
}

.agreement p {
	font-size: 8px;
	line-height: 1.4;
}

.agreement p a {
	font-weight: 700;
	text-decoration: underline;
}

.section {
	margin-top: 90px;
	scroll-margin-top: var(--header-desk);
}

.section__title {
	margin-bottom: 50px;
	font-size: 25px;
	line-height: 1.25;
	font-weight: 600;
	text-align: center;
}

.section__title span {
	color: var(--accent);
}

.models__list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 20px;
}

/* .container {
  max-width: 1180px;
  margin-top: 100px;
}

.models__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
} */

.model-card {
	border: 1px solid #000;
	width: 100%;
	position: relative;
	flex-basis: 49%;
}

.models-card__benefits {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: absolute;
	width: 100%;
	padding: 0 20px;
	margin-top: -25px;
}

.models-card__benefits-credit,
.models-card__benefits-tradein {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 168px;
	width: 100%;
	height: 50px;
	background: #54dbdd;
	z-index: 1;
}
.models-card__benefits-credit p,
.models-card__benefits-tradein p {
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
}

.models-card__benefits-tradein {
	background: #222222;
}

.model-card__upper {
	background: rgba(43, 48, 58, 0.07);
	height: 375px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 22px 22px 14px;
	position: relative;
}

.model-card__upper svg {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	top: 40%;
	z-index: -1;
}

.model-card__name {
	font-size: 25px;
	font-weight: 700;
	padding-bottom: 15px;
	text-transform: uppercase;
}

.model-card__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 10px;
	margin: 24px 0;
}

.model-card__list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-preferred-size: 37%;
	flex-basis: 37%;
	gap: 15px;
	font-size: 15px;
	font-weight: 600;
	line-height: 18px;
	text-transform: uppercase;
}

.model-card__color-select {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 14px;
	left: 22px;
	top: 80px;
	height: auto;
	margin: 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.color {
	height: 30px;
	width: 30px;
	border: 1px solid #000;
}

.model-gallery-wrapper {
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}

.swiper {
	position: static;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	height: 72px;
	max-width: 400px;
	/* height: 100%;
  width: 100%;
  max-width: 360px; */
	-webkit-transform: skewX(-20deg) !important;
	transform: skewX(-20deg) !important;
}

.swiper-wrapper {
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.swiper-slide {
	/* height: 72px; */
	overflow: hidden;
}

.swiper-slide > img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	scale: 1.2;
	-webkit-transform: skewX(20deg) !important;
	transform: skewX(20deg) !important;
}

.model-card .swiper {
	width: 80%;
}

.model-gallery-prev {
	transform: rotate(180deg);
}

.model-gallery-prev,
.model-gallery-next {
	font-size: 28px;
	color: #00cabf;
	background: url(../img/arrow-slider.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 15px;
	height: 31px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.model-card__image {
	height: 250px;
}

.model-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	display: none;
}

.model-card__image img.active {
	display: block;
}

.model-card__color-name {
	font-size: 12px;
}

.model-card__lower {
	height: auto;
	background-color: #fff;
	position: relative;
	padding: 18px 20px;
	padding-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 1;
}

.model-card__lower svg {
	position: absolute;
	width: 100%;
	height: auto;
	z-index: -1;
	left: 0;
	top: 36px;
}

.model-card__prices {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 20px;
}

.model-card__prices-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
}

.model-card__benefits {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.model-card__old-price {
	font-size: 15px;
	color: rgba(43, 48, 58, 0.4784313725);
	font-weight: 600;
	text-decoration: line-through;
	-ms-flex-item-align: end;
	-ms-grid-row-align: end;
	align-self: end;
}

.model-card__new-price {
	font-size: 24px;
}

.model-card__credit-price {
	font-size: 20px;
	font-weight: 600;
	color: #767676;
}

.model-card__credit-price span {
	color: #00cabf;
	font-weight: 600;
}

.model-card__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	width: 100%;
}
.model-card__buttons .btn {
	max-width: 260px;
	width: 100%;
	height: 57px;
	font-size: 15px;
}

/* .model-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.13);
}

.model-card__upper {
  background: rgba(43, 48, 58, 0.07);
  height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 22px 14px;
  position: relative;
}

.model-card__upper svg {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 20px;
  z-index: -1;
}

.model-card__name {
  font-size: 25px;
  font-weight: 600;
}

.model-card__list {
  position: absolute;
  top: 32px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.model-card__list-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.model-card__color-select {
  position: absolute;
  left: 22px;
  top: 80px;
  height: 100px;
  display: flex;
  align-items: center;
}

.colors-swiper {
  height: 100%;
  position: static;
}

.colors-swiper .color {
  width: 18px;
  height: 18px;
  background-color: red;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.colors-swiper .color.active::after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/color-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.custom-swiper-button {
  width: 15px;
  height: 15px;
  left: 50%;
  transform: translate(-50%, 100%);
  top: auto;
  right: auto;
  bottom: -5px;
}

.custom-swiper-button.prev {
  top: -15px;
  transform: translate(50%, -100%);
  rotate: 180deg;
}

.custom-swiper-button.swiper-button-disabled {
  display: none;
}

.custom-swiper-button::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/swiper-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.model-card__image {
  height: 140px;
  margin-top: 20px;
}

.model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.model-card__image img.active {
    display: block;
}

.model-card__color-name {
  font-size: 12px;
}

.model-card__lower {
  height: 180px;
  background-color: #fff;
  position: relative;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.model-card__lower svg {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -1;
  left: 0;
  top: 36px;
}

.model-card__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.model-card__old-price {
  font-size: 15px;
  color: rgba(43, 48, 48, 0.5);
  font-weight: 600;
}

.model-card__new-price {
  font-size: 30px;
}

.model-card__credit-price {
  font-size: 20px;
}

.model-card__credit-price span {
  color: var(--accent);
  font-weight: 700;
}

.model-card__buttons {
  display: flex;
  gap: 20px;
} */

.filter {
	display: grid;
	grid-template-columns: repeat(3, 260px);
	gap: 40px;
	justify-content: center;
}

.select2-container--default .select2-selection--single {
	border-radius: 0;
	height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	top: 0;
	right: 18px;
	width: 10px;
	background-image: url(../img/select-arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.equipments__list {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.equipment-card {
	height: 200px;
	border-bottom: 1px solid var(--black);
}

.equipment-card__content {
	height: 100%;
	display: grid;
	grid-template-columns: 300px auto 310px;
	gap: 0 75px;
}

.equipment-card__model-name {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3;
}

.equipment-card__equipment-name {
	font-size: 22px;
	line-height: 1.3;
}

.equipment-card__equipment-name strong {
	text-transform: uppercase;
}

.equipment-card__image {
	height: 160px;
	width: 100%;
}

.equipment-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
}

.equipment-card__features {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

.equipment-card__specs {
	display: grid;
	grid-template-columns: 250px auto;
	gap: 16px 50px;
}

.equipment-card__specs-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
}

.equipment-card__specs-item img {
	width: 22px;
}

.equipment-card__info {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.equipment-card__prices {
	text-align: right;
}

.equipment-card__price {
	font-size: 32px;
	line-height: 1.3;
}

.equipment-card__payment {
	font-size: 18px;
	color: var(--accent);
	line-height: 1.3;
}

.equipment-card__buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.offers__content {
	height: 344px;
	background-image: url(../img/offers-bg.webp);
	background-size: cover;
}

.offers__list {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 100%;
}

.offer-item {
	height: 220px;
	width: 100%;
	background-color: #fff;
	padding: 22px 24px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.offer-item:nth-child(2) {
	background-image: url(../img/gift.svg);
	background-size: cover;
}

.offer-item__btn {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 180px;
}

.offer-item__title {
	font-size: 22px;
	line-height: 1.3;
	font-weight: 600;
}

.offer-item__title span {
	color: var(--accent);
	font-weight: 700;
}

.offer-item__description {
	font-size: 16px;
	line-height: 1.3;
}

.contacts {
	position: relative;
	/* height: 352px; */
	height: 452px;
}

.map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.map img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ymaps-2-1-79-map {
	filter: grayscale(1);
}

.contacts__content {
	height: 100%;
	display: flex;
	align-items: center;
}

.contacts .container {
	pointer-events: none;
}

.contacts__info {
	width: 390px;
	height: 280px;
	backdrop-filter: blur(7px);
	background: rgba(43, 48, 58, 0.85);
	color: #fff;
	padding: 18px 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-top: 6px solid var(--accent);
	pointer-events: auto;
	z-index: 1;
}

.contacts__heading {
	font-size: 25px;
	font-weight: 600;
	line-height: 1.3;
}

.contacts__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contacts__list-item {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.contacts__btn {
	height: 42px;
	font-size: 15px;
}

.footer {
	background-color: var(--black);
	color: #fff;
	border-top: 6px solid var(--accent);
}

.footer__content {
	display: flex;
	flex-direction: column-reverse;
	padding: 55px 0 40px;
	gap: 32px;
}

.footer__logo {
	width: 140px;
}

.footer__logo svg {
	width: 100%;
}

.footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 55px;
}

.footer__legal p {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.footer__links {
	display: flex;
	/* flex-direction: column; */
	gap: 10px;
	color: var(--accent);
	font-size: 15px;
	text-decoration: underline;
	/* min-width: max-content; */
	width: 100%;
	justify-content: space-between;
}

.disclaimer {
	font-size: 14px;
	line-height: 1.3;
	text-align: justify;
}

@media screen and (max-width: 1220px) {
	.container {
		max-width: var(--container-tablet);
	}

	.section {
		margin-top: 45px;
		scroll-margin-top: var(--header-tablet);
	}

	.section__title {
		font-size: 23px;
		margin-bottom: 20px;
	}

	.btn {
		height: 35px;
	}

	.header__main {
		height: 45px;
	}

	.header__logo {
		width: 94px;
	}

	.header__menu {
		gap: 60px;
	}

	.header__menu-item {
		font-size: 10px;
	}

	.header__btn {
		max-width: 144px;
		height: 28px;
	}

	.hero {
		height: 400px;
	}

	.hero__content {
		padding-top: 60px;
	}

	.hero__heading {
		font-size: 28px;
	}

	.hero__text {
		/* gap: 15px; */
		gap: 30px;
	}

	.hero__list {
		gap: 14px;
	}

	.hero__list-item {
		gap: 6px;
		font-size: 15px;
	}

	.hero__list-item img {
		width: 20px;
	}

	.action__form {
		grid-template-columns: 164px 164px 260px;
		grid-template-rows: 30px auto;
	}

	.action__form .input,
	.action__form .btn {
		height: 30px;
		font-size: 12px;
	}

	.action__timer {
		width: 300px;
		gap: 18px;
	}

	.action__timer-title {
		font-size: 15px;
	}

	.model-card__upper {
		padding: 14px 16px 8px;
		height: 195px;
	}

	.model-card__name {
		font-size: 20px;
	}

	.model-card__list {
		top: 16px;
	}

	.model-card__list-item {
		font-size: 10px;
	}

	.model-card__color-select {
		height: 86px;
		top: 60px;
		left: 18px;
	}

	.colors-swiper .color {
		width: 15px;
		height: 15px;
	}

	.model-card__image {
		height: 115px;
		margin-top: 20px;
	}

	.model-card__lower {
		height: 182px;
		padding: 16px;
	}

	.model-card__old-price {
		font-size: 12px;
	}

	.model-card__new-price {
		font-size: 24px;
	}

	.model-card__credit-price {
		font-size: 15px;
	}

	.equipment-card {
		height: 162px;
	}

	.equipment-card__content {
		grid-template-columns: 265px auto 220px;
	}

	.equipment-card__model-name {
		font-size: 22px;
	}

	.equipment-card__image {
		height: 125px;
	}

	.equipment-card__features {
		gap: 22px;
	}

	.equipment-card__specs {
		grid-template-columns: 125px auto;
		gap: 14px 60px;
	}

	.equipment-card__specs-item {
		font-size: 14px;
		gap: 6px;
	}

	.equipment-card__specs-item img {
		width: 15px;
	}

	.equipment-card__equipment-name {
		font-size: 19px;
	}

	.equipment-card__info {
		gap: 10px;
	}

	.equipment-card__price {
		font-size: 20px;
	}

	.equipment-card__payment {
		font-size: 14px;
	}

	.equipment-card__buttons {
		gap: 8px;
	}

	.offers__content {
		height: 224px;
	}

	.offer-item {
		height: 160px;
		padding: 15px 20px;
	}

	.offer-item__title {
		font-size: 18px;
	}

	.offer-item__description {
		font-size: 12px;
	}

	.offer-item__btn {
		max-width: 145px;
	}

	.contacts {
		height: 240px;
	}

	.contacts__info {
		height: 100%;
	}

	.container-wide {
		max-width: 100%;
	}

	.footer__logo {
		width: 106px;
	}

	.footer__legal p {
		font-size: 12px;
		flex: 1;
	}

	.footer__links {
		align-items: flex-end;
		font-size: 10px;
	}
}

@media screen and (max-width: 1000px) {
	.container {
		max-width: var(--container-mob);
	}

	.btn {
		height: 32px;
		font-size: 12px;
	}

	.js--show-more {
		gap: 15px;
		font-size: 19px;
		margin: 30px auto 0;
		height: auto;
	}

	.input {
		height: 32px;
		font-size: 12px;
		font-weight: 500;
	}

	.section {
		margin-top: 30px;
		scroll-margin-top: var(--header-mob);
	}

	.section__title {
		font-size: 23px;
		margin-bottom: 30px;
	}

	.header__contacts-list {
		justify-content: space-between;
	}

	.header__contacts-item {
		gap: 5px;
		font-size: 8px;
	}

	.header__contacts-item svg {
		max-height: 12px;
	}

	.header__menu {
		display: none;
	}

	.header__btn {
		display: none;
	}

	/* .logo1 {
		display: none;
	} */

	.header__logo {
		width: 120px;
	}

	.header__main {
		height: 55px;
	}

	.header__main::after {
		width: 100%;
	}

	.burger {
		display: flex;
		flex-direction: column;
		gap: 5px;
		width: 30px;
	}

	.burger span {
		width: 100%;
		height: 3px;
		background-color: #fff;
		transform-origin: right;
		transition: all 0.3s;
	}

	.header__contacts {
		background-color: var(--black);
	}

	.header__contacts ul {
		display: none;
	}

	.header.active .header__contacts {
		color: #fff;
		background-color: var(--black);
	}
	/* .header__contacts {
		display: none;
		height: 0;
		background-color: transparent;
	} */

	/* .header.active .header__main {
		background-color: #fff;
		color: var(--black);
	} */

	.header.active .header__main::after {
		background: linear-gradient(90deg, var(--black), transparent);
	}

	.header.active .header__logo {
		color: var(--black);
	}

	.header.active .burger {
		gap: 8px;
	}

	.header.active .burger span {
		transform: rotateY(90deg);
		width: 105%;
		/* background-color: var(--black); */
		background-color: #fff;
	}

	.header.active .burger span:first-child {
		transform: rotateZ(-45deg);
	}

	.header.active .burger span:last-child {
		transform: rotateZ(45deg);
	}

	.menu {
		display: block;
		background-color: #fff;
		position: fixed;
		top: var(--header-mob);
		left: 0;
		width: 100%;
		transform: translateX(-100%);
		transition: all 0.3s;
		z-index: 3;
	}

	.header.active + .menu {
		transform: none;
	}

	.menu__content {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 30px 0 20px;
		height: 100%;
		gap: 25px;
	}

	.menu__list {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.menu__list-item {
		font-size: 15px;
		line-height: 1.3;
	}

	.menu__list-item.active {
		font-weight: 700;
		color: var(--accent);
	}

	.menu__btn {
		height: 42px;
		font-size: 15px;
	}

	.hero {
		/* height: 570px; */
		height: 750px;
		margin-top: 25px;
		/* background-position: center;  */
		background-image: url(../img/hero-mob.webp);
	}

	.hero__content {
		padding-top: 75px;
		justify-content: space-between;
	}

	.hero__heading {
		font-size: 18px;
	}

	.hero__text {
		position: relative;
	}

	.hero__btn {
		max-width: 100%;
	}


    /* Special offer */

    .wrapper-special-offer {
        flex-direction: column-reverse;
        height: 425px;
    }

    .left-half-special-offer {
        border: none;
        border-left: 1px solid;
        border-right: 1px solid;
        border-bottom: 1px solid;
    }

    .title-special-offer {
        display: none;
    }

    .right-half-special-offer img {
        width: 100%;
        height: 105%;
        object-fit: cover;
    }



	.action__content {
		flex-direction: column;
		padding: 14px 20px 18px;
		gap: 40px;
		align-items: center;
	}

	.action__timer {
		align-items: center;
		width: 100%;
		gap: 24px;
	}

	.action__timer-title {
		font-size: 20px;
		/* max-width: 160px; */
		max-width: 100%;
		text-align: center;
	}

	.action__form {
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	.models__list {
		grid-template-columns: 1fr;
	}

	.model-gallery-wrapper {
		padding: 0 10px;
	}

	.model-gallery {
		max-width: 275px;
	}

	.model-card {
		flex-basis: 100%;
	}

	.model-card__color-select {
		gap: 7px;
		margin: 5px 0;
	}

	.color {
		height: 17px;
		width: 17px;
	}

	.model-card__upper {
		height: 206px;
		padding: 22px 11px;
	}

	.model-card__lower {
		padding: 14px 11px;
		padding-top: 0;
	}

	.models-card__benefits {
		justify-content: end;
		margin-top: -14px;
	}

	.models-card__benefits-credit,
	.models-card__benefits-tradein {
		max-width: 105px;
		height: 28px;
	}

	.models-card__benefits-credit p {
		font-size: 10px;
	}

	.models-card__benefits-tradein {
		display: none;
	}

	.model-card__prices {
		padding: 0;
	}

	.model-card__name {
		font-size: 14px;
	}

	.model-card__credit-price {
		font-size: 12px;
	}

	.model-card__old-price {
		font-size: 10px;
	}

	.model-card__new-price {
		font-size: 14px;
	}

	.model-card__image {
		height: 137px;
	}

	.model-card__list-item {
		font-size: 10px;
		flex-basis: 47%;
		line-height: 15px;
		gap: 10px;
	}

	.model-card__list {
		margin: 14px 0;
		gap: 0;
	}

	.model-card__benefits {
		gap: 0;
	}

	.model-card__buttons {
		gap: 11px;
	}

	.model-card__buttons .btn {
		height: 31px;
		font-size: 12px;
		font-weight: 700;
	}

	.model-gallery-prev,
	.model-gallery-next {
		width: 9px;
		height: 17px;
	}

	.swiper {
		height: 39px;
	}

	.swiper-slide {
		height: 40px;
	}

	.filter {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.select2-container--default .select2-selection--single {
		height: 35px;
	}

	.select2-container--default .select2-selection--single .select2-selection__rendered {
		padding: 0 12px;
		font-size: 12px;
	}

	.equipments__list {
		margin-top: 35px;
		gap: 16px;
	}

	.equipment-card {
		height: auto;
	}

	.equipment-card__content {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding-bottom: 20px;
	}

	.equipment-card__preview {
		width: 100%;
		display: contents;
	}

	.equipment-card__model-name {
		font-size: 22px;
		order: -2;
	}

	.equipment-card__equipment-name {
		font-size: 16px;
		order: -1;
		margin-top: 8px;
	}

	.equipment-card__image {
		margin-top: 14px;
		height: 130px;
	}

	.equipment-card__image img {
		object-position: left;
	}

	.equipment-card__features {
		display: contents;
	}

	.equipment-card__specs {
		width: 100%;
		margin-top: 12px;
		gap: 16px 30px;
		grid-template-columns: max-content auto;
	}

	.equipment-card__specs-item {
		gap: 10px;
		font-size: 15px;
	}

	.equipment-card__info {
		margin-top: 12px;
		width: 100%;
		gap: 16px;
	}

	.equipment-card__prices {
		margin-top: 16px;
	}

	.equipment-card__price {
		font-size: 32px;
	}

	.equipment-card__payment {
		font-size: 18px;
	}

	.equipment-card__buttons {
		gap: 8px;
	}

	.equipment-card__buttons .btn {
		height: 46px;
		font-size: 15px;
	}

	.offers__content {
		height: auto;
		padding: 25px 0;
		background-image: url(../img/offers-bg-mob.webp);
	}

	.offers__list {
		flex-direction: column;
		gap: 18px;
	}

	.contacts {
		height: auto;
		background-color: var(--black);
	}

	.contacts::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: var(--accent);
	}

	.map {
		position: static;
		height: 300px;
		width: 100%;
	}

	.contacts__info {
		width: 100%;
		background: none;
		border: none;
		height: auto;
		gap: 20px;
		padding: 20px 0;
		backdrop-filter: none;
	}

	.contacts__heading {
		font-size: 25px;
		text-align: center;
	}

	.contacts__list {
		gap: 15px;
	}

	.contacts__list-item {
		gap: 12px;
	}

	.contacts__btn {
		height: 42px;
	}

	.contacts__list-item span {
		display: inline-block;
	}

	.footer__content {
		padding: 32px 0;
	}

	.footer__legal {
		flex-direction: column;
		gap: 36px;
		align-items: flex-start;
	}

	.footer__legal p {
		order: 1;
	}

	.footer__links {
		flex-direction: column;
		font-size: 15px;
		align-items: flex-start;
	}
}

.showmore-hide,
.filtered-hide {
	display: none;
}
