@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Bold'), local('Montserrat-Bold'),
		url('../fonts/Montserrat-Bold.woff2') format('woff2'),
		url('../fonts/Montserrat-Bold.woff') format('woff'),
		url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Semi Bold'), local('Montserrat-Semi-Bold'),
		url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
		url('../fonts/Montserrat-SemiBold.woff') format('woff'),
		url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Medium'), local('Montserrat-Medium'),
		url('../fonts/Montserrat-Medium.woff2') format('woff2'),
		url('../fonts/Montserrat-Medium.woff') format('woff'),
		url('../fonts/Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Regular'), local('Montserrat-Regular'),
		url('../fonts/Montserrat-Regular.woff2') format('woff2'),
		url('../fonts/Montserrat-Regular.woff') format('woff'),
		url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

:root {
	--family-montserrat: 'Montserrat';
	--color-orange: #e67839;
	--color-black: #000;
	--color-grey: #4c5865;
	--color-white: #ffffff;
}

body {
	font-family: var(--family-montserrat);
}

.section__title {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	color: var(--color-grey);
}

.section__upper {
	position: relative;

	padding-left: 15px;
}

.section__upper::before {
	content: '';

	display: block;

	position: absolute;

	width: calc(100% + 15px);
	height: 36px;

	border-bottom: 2px solid var(--color-grey);
	border-left: 2px solid var(--color-grey);

	border-radius: 0 0 0 15px;

	left: 0;
}

.input {
	background: none;

	border: 1px solid var(--color-white);
	border-radius: 72px;

	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.input::placeholder {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.btn {
	width: 100%;
	height: 53px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 72px;

	transition: all 0.4s;
}

.btn.bg_orange {
	background: var(--color-orange);

	color: var(--color-white);
}

.btn.border {
	border: 2px solid var(--color-grey);

	color: var(--color-grey);

	background: var(--color-white);
}

.btn.model {
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
	font-family: var(--family-montserrat);
}

.text_color {
	color: var(--color-orange);
}

.container {
	padding: 0 18px;
}

.form-checkbox label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 12px;
	width: 100%;
}

.form__input-check[type='checkbox'] {
	position: absolute;
	left: 0;
	opacity: 0;
	z-index: 2;
}

.form__input-check[type='checkbox'] + .custom-checkbox {
	display: block;
	width: 14px;
	height: 13px;
	border: 1px solid var(--color-white);
	border-radius: 2px;
}

.form__input-check[type='checkbox']:checked + .custom-checkbox {
	background-image: url(../img/check.svg);
	background-repeat: no-repeat;
	background-size: 11px;
	background-position: center;
}

.checkbox-text,
.checkbox-link {
	font-size: 12px;
	line-height: 14px;
	color: var(--color-white);
	font-weight: 400;
}

.checkbox-link {
	font-weight: bold;
}

.banner__title {
	font-size: 28px;
	line-height: 30px;
	font-weight: 700;
	color: var(--color-white);
}

.banner__list {
	margin-top: 189px;

	display: grid;
	gap: 10px;

	list-style: disc;

	padding-left: 20px;
}

.banner__list-item {
	font-size: 15px;
	line-height: 17px;
	font-weight: 400;
	color: var(--color-white);
}

.banner__list-item b {
	font-weight: bold;
}

.banner__inputs {
	display: flex;
	flex-direction: column;
	gap: 9px;

	margin-top: 15px;
}

.banner__input {
	padding-left: 22px;

	height: 42px;
}

.banner__btn {
	font-size: 15px;
	line-height: 17px;
	font-weight: 700;
}

/*=============== #HEADER ==============*/

.header {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
}

.header.active {
	background: var(--color-grey);
}

.header__container {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 17px 0;

	border-bottom: 1px solid var(--color-white);
}

.header__logo-img {
	max-width: 96px;
}

.header__number-mob {
	display: flex;
	align-items: center;
	gap: 10px;

	text-decoration: none;

	font-size: 12px;
	line-height: 14px;
	color: var(--color-white);
}

.burger {
	width: 16px;
	height: 10px;

	position: relative;
}

.burger__line {
	position: absolute;
	left: 0;

	width: 100%;
	height: 2px;

	background: var(--color-orange);

	display: block;

	border-radius: 2px;

	transition: all 0.2s;
}

.burger__line.line_1 {
	top: 0;
}

.burger__line.line_2 {
	top: 4px;
}

.burger__line.line_3 {
	bottom: 0;
}

.header.active .burger__line.line_1 {
	top: 4px;

	transform: rotate(-45deg);
}

.header.active .burger__line.line_2 {
	opacity: 0;
}

.header.active .burger__line.line_3 {
	bottom: 4px;

	transform: rotate(45deg);
}

.header__menu {
	position: fixed;
	top: 55px;
	right: -100%;

	width: 100%;

	padding: 25px 18px 29px;

	background: var(--color-white);

	transition: all 0.4s;

	z-index: 1;
}

.header.active .header__menu {
	right: 0;
}

.header__nav {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.header__nav-link {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-black);
	text-decoration: none;

	transition: all 0.4s;
}

.header__nav-link.active {
	font-weight: 700;
	color: var(--color-orange);
}

.header__menu-info {
	background: url(../img/menu-bg.webp) no-repeat;
	background-size: cover;

	border-radius: 13px;

	padding: 18px 0 23px;

	display: flex;
	justify-content: center;

	margin-top: 20px;
}

.header__menu-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.header__menu-item,
.header__menu-link {
	display: flex;
	align-items: center;
	gap: 8px;

	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: var(--color-white);
	font-family: var(--family-montserrat);
	text-decoration: none;
}

.header__menu-btn {
	margin-top: 16px;

	gap: 12px;

	font-size: 15px;
	line-height: 17px;
	font-weight: 600;
	font-family: var(--family-montserrat);
}

/*=======================================================*/

/*=============== #MAIN-BANNER ==============*/
.main-banner {
	background: url(../img/main-banner_mob.webp) no-repeat;
	background-size: cover;

	padding: 84px 0 25px;

	aspect-ratio: 360/705;
}

.main-banner .container {
	height: 100%;
}

.main-banner__container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	height: 100%;
}

.main-banner__title {
	font-size: 23px;
	line-height: 25px;
	font-weight: 700;
	color: var(--color-white);
}

.main-banner__actions {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.main-banner__actions-item {
	display: flex;
	align-items: center;
	gap: 16px;

	padding: 0 0 0 19px;

	border-radius: 40.5px;
	border: 1px solid #fff;

	background: rgba(0, 0, 0, 0.4);

	backdrop-filter: blur(8px);

	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);

	height: 44px;
}

.main-banner__actions-item b {
	font-weight: bold;
}

.main-banner__timer {
	margin-top: 13px;
}

.main-banner__text {
	display: block;

	font-size: 12px;
	line-height: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color-white);

	text-align: center;
}

.timer {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin: 11px auto 0;
}

.time-count__item {
	width: 40px;
	display: flex;
	flex-flow: column;
	align-items: center;
	position: relative;
}

.time-count__val {
	font-weight: 700;
	font-size: 24px;
	line-height: 23px;
	text-transform: uppercase;
	color: var(--color-white);
}

.time-count__text {
	font-weight: 400;
	font-size: 8px;
	line-height: 21px;
	text-transform: uppercase;
	color: var(--color-white);
}

.main-banner__btn {
	margin-top: 11px;

	font-size: 15px;
	line-height: 17px;
	font-weight: 700;
}

/*=======================================================*/

/*=============== #MODELS ==============*/

.models {
	padding-top: 44px;
}

.models__swiper {
	margin-top: 34px;
}

.models__swiper.desk_hide {
	display: none;
}

.model__swiper-text {
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: var(--color-grey);
	text-decoration: none;
	white-space: nowrap;
}

.swiper-models-name {
	padding-right: 20px;
}

.swiper-models-name .swiper-button-next {
	/* background: url(../img/arrow-swiper-model.svg)no-repeat; */
	z-index: 1;
	background: #fff;
	right: -1px;
}

.swiper-button-next::after {
	content: '';

	background: url(../img/arrow-swiper-model.svg) no-repeat;

	width: 24px;
	height: 24px;

	border: none;
}

.models__container {
	padding-top: 33px;

	display: flex;
	flex-direction: column;
	gap: 34px;
}

.models__card-name {
	font-size: 31px;
	line-height: 33px;
	font-weight: 600;
	color: var(--color-black);

	display: block;
}

.models__card-colors {
	display: flex;
	flex-direction: column;
	gap: 13px;

	margin-top: 10px;
}

.models__colors {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.models__colors-bg {
	display: block;

	width: 18px;
	height: 18px;

	border-radius: 50%;

	border: 1px solid var(--color-black);
}

.models__card-color-name {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-black);
}

.models__card-color-name b {
	font-weight: bold;
}

.models__colors-bg.color-active {
	filter: drop-shadow(1px 0px 15px #e67839);
}

.modelSwiper img {
	width: 100%;
}

.models__card-prices.mob_hide {
	display: none;
}

.models__price-old {
	display: block;

	font-size: 17px;
	line-height: 19px;
	font-weight: 500;
	color: var(--color-grey);
	text-decoration: line-through;
}

.models__card-prices {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.models__price {
	display: block;

	font-size: 25px;
	line-height: 27px;
	font-weight: 600;
	color: var(--color-black);
}

.models__price-month {
	font-size: 16px;
	line-height: 18px;
	/* font-weight: 600; */
	font-weight: 700;
	color: var(--color-black);
}

.models__card-list {
	list-style: disc;
	padding-left: 20px;

	margin: 10px 0 25px;

	display: flex;
	flex-direction: column;
	gap: 10px;
}

.model__card-item {
	font-size: 17px;
	line-height: 19px;
	font-weight: 500;
	color: var(--color-grey);
}

.model__card-item b {
	font-weight: bold;
}

.models__card-btns {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.modelSwiper .swiper-pagination {
	display: none;
}

.models__card {
	padding-bottom: 31px;

	border-bottom: 1px solid var(--color-grey);

	height: 678px;
}

.models__card-swiper {
	position: relative;
}

.models__card-img {
	width: 100%;

	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all 0.6s;
}

.models__card-img.js-active {
	position: inherit;
	opacity: 1;
}

/*=======================================================*/

/*=============== #EQUIPS ==============*/

.equips {
	padding-top: 18px;
}

.equips__filter {
	margin-top: 56px;

	display: flex;
	flex-direction: column;
	gap: 44px;
}

.select2-container--default .select2-selection--single {
	border: none;
	border-bottom: 1px solid #2b3c4c;
	border-radius: 0;

	background: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 0;

	font-size: 20px;
	line-height: 22px;
	font-weight: 400;
	color: #2b3c4c;
}

.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	border: none;

	background: url(../img/arrow-select.svg) no-repeat;

	width: 20px;
	height: 10px;

	left: auto;
	right: 0;
}

.select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	width: 20px;
}

.equips__container {
	margin-top: 44px;

	display: grid;
	gap: 25px;
}

.equips__card {
	position: relative;

	padding-bottom: 39px;
}

.equips__card-text {
	display: grid;
	gap: 17px;

	margin-bottom: 25px;
}

.equips__card-model {
	font-size: 31px;
	line-height: 33px;
	font-weight: 600;
	color: var(--color-black);

	display: block;
}

.equips__card-name {
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
}

.equips__img img {
	width: 100%;
}

.equips__info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 16px;

	margin: 31px 0 23px;
}

.equips__info-item {
	display: flex;
	align-items: center;
	gap: 4px;

	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	color: var(--color-black);
}

.equips__info-item.flex_end {
	justify-content: flex-end;
}

.equips__info-item.flex_end span {
	display: block;

	width: 66px;
}

.equips__card-prices {
	display: grid;
	gap: 6px;

	margin-bottom: 2px;
}

.equips__price-old {
	font-size: 17px;
	line-height: 19px;
	font-weight: 500;
	color: #717171;
	text-decoration: line-through;
	text-align: right;

	display: block;
}

.equips__price {
	display: block;

	font-size: 27px;
	line-height: 29px;
	font-weight: 600;
	color: var(--color-black);
	text-align: right;
}

.equips__card-prices .models__price-month {
	text-align: right;
	font-size: 18px;
	line-height: 16px;
	display: inline-block;
}

.equips__price b {
	font-weight: bold;
}

.equips__card-btn {
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;
}

.equips__card-btns {
	display: grid;
	gap: 13px;
}

.equips__card svg {
	bottom: 0;
	position: absolute;

	width: 100%;
}

.equips__button {
	font-size: 18px;
	line-height: 20px;
	font-weight: 600;

	margin: 10px auto 20px;

	width: 300px;

	border-radius: 72px;
}

/*=======================================================*/

/*=============== #CREDIT ==============*/

.credit {
	background: url(../img/credit_mob.webp) no-repeat;
	background-size: cover;

	padding: 21px 0 16px;
}

.credit__btn {
	margin-top: 12px;
}

/*=======================================================*/

/*=============== #TRADE ==============*/

.trade {
	background: url(../img/trade.webp) no-repeat;
	background-size: cover;

	padding: 21px 0 16px;

	margin-top: 56px;
}

.trade__container {
	margin-top: 201px;
}

.trade__form-flex {
	display: flex;
	gap: 20px;

	margin-bottom: 7px;
}

.trade__form-flex .trade__form-select {
	width: 100%;
}

.trade .select2-container--default .select2-selection--single {
	height: 39px;

	display: flex;
	align-items: center;

	border-radius: 72px;

	background: rgba(255, 255, 255, 0.39);
}

.trade
	.select2-container
	.select2-selection--single
	.select2-selection__rendered {
	font-size: 12px;
	line-height: 14px;
	color: var(--color-white);
	padding-left: 13px;
}

.trade
	.select2-container--default
	.select2-selection--single
	.select2-selection__arrow
	b {
	background: url(../img/trade-select.svg) no-repeat;
}

.trade
	.select2-container--default
	.select2-selection--single
	.select2-selection__arrow {
	width: 20px;
	top: 11px;
	right: 13px;
}

.trade
	.select2-container--default.select2-container--open.select2-container--below
	.select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
	.select2-selection--multiple {
	border-radius: 72px;
}

.select2-search--dropdown {
	display: none;
}

.trade__form-input {
	margin-top: 30px;

	border-radius: 72px;
	background: rgba(255, 255, 255, 0.72);

	padding-left: 13px;

	border: none;

	width: 100%;
	height: 39px;

	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.trade__form-input::placeholder {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.trade__form-button {
	height: 53px;

	margin-top: 9px;

	font-size: 15px;
	line-height: 17px;
	font-weight: 700;
}

/*=======================================================*/

/*=============== #CONTACTS ==============*/

.contacts {
	background: var(--color-grey);

	padding-top: 14px;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
}

.map {
	width: 100%;
	height: 320px;
	position: static;
}

.contacts__map {
	/* background: url(../img/map_mob.webp)no-repeat;
    background-size: cover;
    background-position: center; */

	padding-top: 0;
	position: relative;
	z-index: 1;
	pointer-events: none;
}

.contacts__map .contacts__btn {
	pointer-events: auto;
}

.contacts__map .contacts__info {
	pointer-events: auto;
	cursor: default;
}

.contacts__bg {
	background: rgba(76, 88, 101, 0.67);

	backdrop-filter: blur(7.5px);
}

.contacts__info {
	padding: 8px 0 17px;
}

.contacts__flex {
	display: flex;
	justify-content: space-between;
}

.contacts__logo {
	max-width: 102px;
}

.contacts__info-list {
	display: grid;
	gap: 10px;

	flex-basis: 61%;
}

.contacts__info-item {
	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: var(--color-white);

	display: flex;
	align-items: center;
	gap: 6px;
}

.contacts__btn {
	height: 35px;

	margin-top: 17px;

	gap: 6px;

	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
}

/*=======================================================*/

/*=============== #FOOTER ==============*/

.footer {
	padding: 25px 0 40px;

	background: linear-gradient(180deg, #4c5865 0%, #4c5865 100%);
}

.footer__text {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.footer__text.bold {
	font-weight: 600;
}

.footer__btn {
	background: none;

	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	text-decoration: underline;
	color: var(--color-white);
	padding: 0;

	margin: 21px 0 28px;
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;

	margin-bottom: 18px;
}

.footer__info {
	margin-top: 28px;
}

/* .footer__info-toggle {
    display: none;
} */

/*=======================================================*/

/*=============== #POPUP ==============*/

.popup {
	width: 91%;

	padding: 20px 29px 10px;

	border-radius: 10px;

	display: none;
}

.fancybox__content > .f-button.is-close-btn {
	background: none;
	opacity: 1;
}

#modalCredit {
	background: url(../img/modal-credit_mob.webp) no-repeat;
	background-size: cover;
}

#modalSuc,
#modalSuc2 {
	height: 165px;
	background: var(--color-white);
}

.popup__cont {
	display: flex;
	align-items: center;
	justify-content: center;

	padding: 0 24px;

	height: 100%;
}

#modalSpecial {
	background: url(../img/modal-special_mob.webp) no-repeat;
	background-size: cover;
}

.popup__head {
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	color: var(--color-white);

	display: block;

	text-align: center;
}

#modalSpecial .popup__head {
	font-size: 15px;
	line-height: 17px;
}

#modalSuc .popup__head,
#modalSuc2 .popup__head {
	font-size: 20px;
	line-height: 22px;
	font-weight: 500;
	color: var(--color-black);
}

.popup__list {
	display: flex;
	flex-direction: column;
	gap: 5px;

	list-style: disc;

	padding-left: 20px;

	width: max-content;

	margin: 5px auto 12px;
}

#modalSpecial .popup__list {
	margin: 10px auto 13px;
}

.popup__list-item {
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	color: var(--color-white);
}

.popup__list-item b {
	font-weight: bold;
}

.popup__list-item.margin_minus {
	margin-left: -21px;
}

.popup__list-item.margin_left {
	margin-left: 22px;
}

.popup__form-inputs {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.popup__input {
	height: 32px;

	padding-left: 15px;

	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: var(--color-white);
}

.popup__input::placeholder {
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: var(--color-white);
}

.popup__btn {
	height: 32px;

	margin-top: 12px;
}

#modalSuc .f-button svg,
#modalSuc2 .f-button svg {
	stroke: var(--color-black);
}

.filtered-show,
.showmore-show {
	display: block;
	opacity: 1;
	transition: 0.3s;
}

.filtered-hide,
.showmore-hide {
	display: none;
	opacity: 0;
}

.js--show-more {
	display: block;
}

.js--show-more.hidden {
	display: none;
}

.select2-container--default
	.select2-results__option--highlighted.select2-results__option--selectable {
	background: var(--color-orange);
}

/*=======================================================*/

@media screen and (min-width: 430px) {
	.main-banner__container {
		align-items: center;
	}

	.main-banner__block {
		width: 400px;
	}
}

@media screen and (min-width: 450px) {
	.models__container {
		align-items: center;
	}

	.models__card {
		width: 400px;
	}

	.equips__filter {
		width: 400px;

		margin: 44px auto;
	}

	.equips__container {
		justify-content: center;
	}

	.equips__card {
		width: 400px;

		justify-content: center;
	}

	.banner__form {
		width: 400px;
	}

	.contacts__info {
		width: 400px;

		margin: 0 auto;
	}

	.trade__form {
		width: 400px;

		margin: 0 auto;
	}

	.popup {
		width: 320px;
	}
}
