@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:wght@700&display=swap');

* {
	font-family: 'Montserrat', sans-serif;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	position: relative;
}

a {
	text-decoration: none;
	font-family: 'Manrope', sans-serif;
	display: flex;
	align-items: center;
	color: #000;
	gap: 5px;
}

button {
	cursor: pointer;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	box-shadow: 0px -44px 152px rgba(0, 0, 0, 0.25);
	z-index: 11;
}

.header-wrapper {
	position: relative;
	width: 100%;
	max-width: 1400px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 22px;
}

.logo_mob {
	display: block;
}

.logo {
	display: none;
}

.header-right-wrapper {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.contacts,
.contacts-element {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 29px;
}

.contacts {
	display: none;
	margin-right: 0;
	margin-right: 21px;
}

.contacts-element {
	gap: 5px;
}

.contacts-element p {
	font-weight: 500;
	font-size: 16px;
	line-height: 23px;
}

#call-back {
	font-weight: 800;
	font-size: 16px;
	line-height: 23px;
	background-color: #FFF;
	color: #FF0000;
	padding: 11.5px 10px;
	border: 2px solid #FF0000;
	border-radius: 4px;
	outline-color: #FF0000;
}

/* Burger menu start */
.menu-btn {
	width: 30px;
	height: 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	z-index: 11;
}

.menu-btn span {
	width: 21px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #FF0000;
	transition: all 0.5s;
	z-index: 11;
}

.menu-btn span:nth-of-type(2) {
	top: calc(50% - 5px);
}

.menu-btn span:nth-of-type(3) {
	top: calc(50% + 5px);
}

.menu-wrapper {
	width: 100%;
	height: 100vh;
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	background-color: transparent;
}

.menu-wrapper-active {
	display: block;
}

.menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	visibility: hidden;
	background: #FFFFFF;
	transform: translateX(100%);
	transition: all 0.5s;
	z-index: 10;
}

.nav-top-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 20px;
}

nav img {
	padding-left: 19px;
}

.menu.active {
	visibility: visible;
	transform: translateX(0);
}

.menu li {
	list-style-type: none;
	min-height: 39px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	box-shadow: 0px 3.50231px 3px rgba(0, 0, 0, 0.1);
	border-radius: 3.50231px;
	transition: .3s;
}

.menu li:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.menu li a {
	position: relative;
	font-weight: 600;
	font-size: 16px;
	line-height: 21px;
	color: rgba(0, 0, 0, 0.6);
	padding-left: 43px;
	display: block;
	width: 100%;
	height: 100%;
}

.menu li a::before {
	content: '.';
	position: absolute;
	top: -3px;
	left: 30px;
	font-weight: 600;
	font-size: 16px;
	font-family: 'Manrope', sans-serif;

}

.menu-btn.active span:nth-of-type(1) {
	display: none;
}

.menu-btn.active span:nth-of-type(2) {
	top: 50%;
	transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active span:nth-of-type(3) {
	top: 50%;
	transform: translate(-50%, 0%) rotate(-45deg);
}

/* Burger menu end */

.main {
	width: 100%;
	margin-top: 50px;
}

.section {
	width: 100%;
	height: auto;
	max-width: 1350px;
	margin: 0 auto;
}

.main-section {
	background: url("../../assets/img/main_car_jack.png") no-repeat top right;
}

.main-section-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: 27px;
	padding-right: 16px;

}

.main-section-content-header {
	color: #000;
	font-weight: 800;
	font-size: 24px;
	line-height: 28px;
	margin-top: 292px;
	margin-bottom: 16px;
}

.red-span {
	color: #FF0000;
}

.main-section-content-element {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

.main-section-content-element img {
	margin-right: 12px;
	margin-bottom: 16px;
}

.main-section-content-element p {
	font-weight: 800;
	font-size: 12px;
	line-height: 17px;
}

.contact-main {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 30px;
}

.contact-us-desk {
	display: none;
}

.contact-us-mob {
	display: flex;
	border-radius: 3.5px;
	border: 2px solid red;
}

.contact-us-mob-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px 0;
	background: #FF0000;
	color: #FFF;
	font-weight: 800;
	font-size: 14px;
	line-height: 20px;
	border-radius: 3.5px;
	border: 2px solid red;
}

.contact-main p {
	font-weight: 800;
	font-size: 19px;
	line-height: 28px;
	margin-bottom: 20px;
	color: #212121;
}

.inputs {
	display: flex;
	flex-wrap: wrap;
	max-width: 610px;
	gap: 16px;
}

.inputs input {
	min-width: 86px;
	border: 1px solid rgba(0, 0, 0, 0.36);
	border-radius: 4px;
	color: rgba(0, 0, 0, 0.6);
	padding: 14px 17px;
}

.submit-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14px 20px;
	background-color: #FF0000;
	border: 2px solid #FF0000;
	border-radius: 4px;
	cursor: pointer;
}

/* Discount block start */

.discount-wrapper {
	width: 100%;
	background: #FEFEFE;
	box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.15);
	padding: 10px 0;
	background: url("../../assets/img/star_discount.svg") no-repeat 88% 100%, #fff;
	margin: 29px 0 38px 0;
	position: relative;
	z-index: 1;
}

.discount-wrapper::before {
	content: '';
	width: 145px;
	height: 40px;
	background: url("../../assets/img/decorative_dots.png") no-repeat 100% 100%;
	position: absolute;
	bottom: -30px;
	left: -20px;
	clip-path: polygon(0 20%, 100% 20%, 100% 100%, 0 100%);
}

.discount {
	max-width: 1350px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

.discount-amount {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 19px;
}

.discount-amount-text {
	width: 40%;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
}

.discount-sum {
	width: 60%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 82px;
	font-weight: 700;
	line-height: 98px;
	color: #FF0000;
}

.discount-sum-up-to {
	display: flex;
	flex-direction: row;
	align-items: baseline;
	justify-content: space-around;
}

.discount-sum-up-to span {
	font-size: 42px;
	font-weight: 700;
	line-height: 94px;
	letter-spacing: 0em;
	text-align: right;
	color: #FF0000;
}

.discount-contact {
	width: 100%;
	padding: 22px 19px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.discount-contact-btn {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	background-color: #FF0000;
	padding: 7.5px 14px;
	border: 2px solid red;
	border-radius: 3.5px;
	color: #FFF;
}

/* Discount block end */

/* Goods section start */

.goods-wrapper {
	width: 100%;
	padding: 0 19px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

#double_stand_jacks,
#quadriple_stand_jacks,
#scissor_jack,
#cargo_jack,
#certificates,
#feedbacks,
#feedbacks-m,
#main_heading {
	position: absolute;
	top: -4rem;
	left: 0;
}

.goods {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	position: relative;
}

.goods h3 {
	width: 100%;
	max-width: 1350px;
	font-size: 24px;
	font-weight: 800;
	line-height: 29px;
	text-align: center;
}

.swiper {
	width: 100%;
	position: relative;
}

.swiper-wrapper {
	width: 100%;
	margin-top: 28px;
	padding: 20px 0;
}

.swiper-button-prev,
.swiper-button-next {
	width: 34px;
	height: 34px;
	background: #FFFFFF;
	box-shadow: 0px 6px 14px rgba(145, 145, 145, 0.25);
	border-radius: 3.04914px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: '' !important;
	width: 10px;
	height: 13.51px;
}

.swiper-button-prev::after {
	background: url("../../assets/img/icons/arrow_left.svg") no-repeat 100% 100%;
}

.swiper-button-next::after {
	background: url("../../assets/img/icons/arrow_right.svg") no-repeat 100% 100%;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.goods-card {
	width: 290px;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0px 6px 14px rgba(145, 145, 145, 0.25);
	border-radius: 3.04914px;
}

.goods-card-img {
	width: 225px;
	height: 280px;
}

.goods-card-title {
	width: 100%;
	padding: 0 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 17px;
	text-align: center;
	margin-bottom: 12px;
	color: rgba(0, 0, 0, 0.6);
}

.goods-card-subtitle {
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-align: center;
	color: rgba(0, 0, 0, 0.35);
	margin-bottom: 14px;
}

.goods-card-btn {
	color: rgba(0, 0, 0, 0.6);
	background: #FFF;
	border: 1px solid #FF0000;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	line-height: 21px;
	text-align: center;
	color: rgba(0, 0, 0, 0.6);
	padding: 14px 26px;
	margin-bottom: 18px;
}

.visible-mobile {
	display: flex !important
}

.visible-desktop {
	display: none !important
}

.visible-desktop-block {
	display: none !important;
}

/* Goods section end */

/* Promotion elevator section start */

.promotion-elevator-setup {
	width: 100%;
	background: #FF0000;
}

.promotion-elevator-setup-wrapper {
	position: relative;
	width: 100%;
	max-width: 1350px;
	padding: 19px 20px;
	background: url("../../assets/img/promotion_star.svg") no-repeat 87% 16%;
	overflow: hidden;
}

.promotion-elevator-setup-left h3 {
	font-size: 24px;
	font-weight: 800;
	line-height: 29px;
	text-align: left;
	color: #FFF;
	margin-bottom: 12px;
}

.promotion-elevator-setup-left p {
	max-width: 68%;
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	text-align: left;
	color: #FFF;
}

.promotion-elevator-setup-left button {
	display: flex;
	align-items: center;
	text-align: center;
	background: #FFF;
	font-size: 16px;
	font-weight: 800;
	line-height: 23px;
	text-align: center;
	color: #FF0000;
	padding: 14px 82px;
	border: 1px solid #FFF;
	border-radius: 4px;
	position: relative;
	z-index: 3;
}

.promotion-elevator-setup-right {
	width: 87%;
	height: 214px;
	position: absolute;
	top: 43%;
	left: 12%;
}

.promotion-elevator-setup-black-wrapper {
	width: 100%;
	height: 214px;
	position: relative;
	z-index: 2;
}

.promotion-elevator-setup-black-wrapper::after {
	content: '';
	position: absolute;
	bottom: -43px;
	right: 0;
	width: 200px;
	height: 250px;
	background: url("../../assets/img/man_at_work_right_decorate.svg") no-repeat 100% 100%;
	z-index: -2;
}

.promotion-elevator-setup-black-wrapper img {
	position: absolute;
	top: -24px;
	left: -24px;
	width: 316px;
	height: 214px;
	z-index: 2;
}

.promotion-elevator-setup-black {
	position: absolute;
	top: 0;
	left: 0;
	width: 316px;
	height: 214px;
	background-color: #141414;
	border-radius: 5px;
	z-index: -1;
}

/* Promotion elevator section end */

/* Certificates section start */

.certificates {
	width: 100%;
	margin-top: 40px;
}

.certificates-wrapper {
	position: relative;
	width: 100%;
	max-width: 1350px;
	padding: 0 22px;
}

.certificates-left {
	position: relative;
}

.certificates-left h3 {
	font-size: 24px;
	font-weight: 800;
	line-height: 29px;
	text-align: left;
	color: #000;
	margin-bottom: 5px;
}

.certificates-left p {
	font-size: 16px;
	font-weight: 400;
	line-height: 27px;
	text-align: left;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 352px;
}

.certificates-form {
	display: none;
}

.nav-form-wrapper {
	max-width: 100%;
	padding: 0 10px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.nav-form-wrapper .contacts-element {
	justify-content: flex-start;
	gap: 7px;
}

.sidemenu-holder-par {
	margin-top: 23px;
	margin-bottom: 7px;
	padding-left: 10px;
}

.nav-form-wrapper form {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background-color: #fff;
	box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	padding: 16px 12px;
	margin-bottom: 33px;
}

.nav-form-wrapper form input {
	width: 100%;
	color: rgba(0, 0, 0, 0.6);
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.36);
	border-radius: 4px;
	padding: 13px 16px;
	margin-bottom: 16px;
}

.nav-form-wrapper form button {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 800;
	line-height: 23px;
	text-align: center;
	background-color: #FF0000;
	color: #FFF;
	padding: 12px 95px;
	margin-top: 12px;
	border: 1px solid #FF0000;
	border-radius: 4px;
}

.nav-form {
	display: block;
}

.certificates-left button {
	display: flex;
	align-items: center;
	text-align: center;
	background: #FF0000;
	font-size: 16px;
	font-weight: 800;
	line-height: 23px;
	text-align: center;
	color: #FFF;
	padding: 14px 82px;
	border: 1px solid #FFF;
	border-radius: 4px;
	position: relative;
	z-index: 3;
	margin-bottom: 33px;
}

.certificates-right {
	width: 100%;
	max-width: 360px;
	height: 276px;
	position: absolute;
	top: 35%;
	left: 22px;
}

.certificates-black-wrapper {
	width: 100%;
	height: 276px;
	position: relative;
	z-index: 2;
}

.certificates-black-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 331px;
	height: 304px;
	z-index: 2;
}

/* Certificates section end */

/* Feedback section start */

.feedback-block {
	width: 100%;
}

.feedback-wrapper {
	width: 100%;
	background: #141414;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 25px;
}

.feedback-clients {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.feedback-info-left {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.feedback-clients h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
	text-align: left;
	color: #fff;
	margin-bottom: 18px;
}

.feedback-clients p {
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	text-align: left;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 67px;
}

.feeds-block {
	position: relative;
	width: 100%;
	z-index: 3;
}

.feed {
	width: 100%;
	z-index: 3;
	margin: 0 auto;
}

.feedbackSwiper {
	max-width: 360px;
}

.text-under-slider {
	font-family: Manrope;
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	text-align: left;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 27px;
	margin-bottom: 35px;
}

.feedback-giver {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0.1em;
	text-align: left;
	text-transform: uppercase;
	color: #929A9F;
	margin-bottom: 35px;
}

.swiper-nav-container {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 13px 0;
	margin-top: 10px;
}

.feedbackSwiper::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: -40px;
	left: 15px;
	background: url("../../assets/img/feed-block-decoration.svg") no-repeat 0% 0%;
	z-index: -1;
}


.swiper-nav-container .swiper-pagination {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
}

.swiper-nav-container .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #FFF;
	opacity: 1;
}

.swiper-nav-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #FF0000;
}

.feedback-button-prev {
	width: 34px !important;
	height: 34px !important;
}

.feedback-button-next {
	width: 34px !important;
	height: 34px !important;
}

.feedback-d {
	display: none;
}

.reviews-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	padding: 0 22px;
}

.reviews-left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.reviews-left-elem p a {
	margin-left: 10px;
	color: rgba(0, 0, 0, 1);
	text-decoration: underline;
}

.map {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 25px;
}

.reviews-left h5 {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-align: left;
	color: #000;
}

.reviews-left p {
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-align: left;
}

.reviews-right {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 8px;
}

.reviews-title {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	border-bottom: 2px solid rgba(0, 0, 0, 0.2);
	margin-top: 46px;
	padding-bottom: 7px;
}

.reviews-title h3 {
	font-size: 24px;
	font-weight: 800;
	line-height: 29px;
	text-align: left;
}

.reviews {
	width: 100%;
}

.reviews-swiper-wrapper {
	width: 100%;
	margin-top: 0;
}

.reviews-swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.review-text {
	font-size: 12px;
	font-weight: 400;
	line-height: 21px;
	text-align: left;
	color: #000;
	margin-bottom: 30px;
}

.reviewers-creds {
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	text-align: left;
	color: #000;
}

.reviewers-position {
	max-width: 80%;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	text-align: left;
	color: #000;
	opacity: 0.6;
}

.reviews-nav-container {
	padding: 30px 0;
}

.rewiews-button-prev,
.rewiews-button-next {
	width: 40px !important;
	height: 40px !important;
	overflow: hidden;
}

.rewiews-button-prev::after {

	background: url("../../assets/img/icons/straight-arrow-left.svg") no-repeat 100% 100%;
	width: 100%;
	position: absolute;
	left: -25%;
}

.rewiews-button-next::after {

	background: url("../../assets/img/icons/straight-arrow-right.svg") no-repeat 100% 100%;
	width: 100%;
	position: absolute;
	left: -25%;
}

/* Feedback section end */

/* Footer section start */

.footer-contacts {
	width: 100%;
}

.footer-contacts-wrapper {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 20px;
}

.form-title {
	width: 100%;
}

.form-title h3 {
	width: 100%;
	max-width: 80%;
	font-size: 24px;
	font-weight: 800;
	line-height: 29px;
	text-align: left;
	color: #000;
	margin-top: 40px;
	margin-bottom: 16px;
}

.form-title h5 {
	width: 100%;
	max-width: 60%;
	font-size: 16px;
	font-weight: 800;
	line-height: 17px;
	text-align: left;
	color: #000;
	margin-bottom: 16px;
}


.footer-form {
	width: 100%;
	max-width: 340px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background-color: #fff;
	box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	padding: 16px 12px;
	margin-bottom: 33px;
}

.footer-form input {
	width: 100%;
	color: rgba(0, 0, 0, 0.6);
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.36);
	border-radius: 4px;
	padding: 13px 16px;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	text-align: left;
}

.footer-form button {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 800;
	line-height: 20px;
	text-align: center;
	background-color: #FF0000;
	color: #FFF;
	padding: 10.5px 95px;
	margin-top: 12px;
	border: 1px solid #FF0000;
	border-radius: 4px;
}

.footer-contacts-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 6px;
	margin-bottom: 34px;
}

.footer-contacts-block-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 6px;
}

.footer-contacts-block-wrapper a {
	min-width: 55%;
	display: flex;
	justify-content: space-between;
}

.footer-contacts-element {
	width: 100%;
}

.footer-contacts-block h5 {
	font-size: 17px;
	font-weight: 800;
	line-height: 24px;
	text-align: left;
	color: #000;
	margin-bottom: 6px;
}

.footer-contacts-element {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.footer-contacts-element p {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	color: #000;
}

.ending-text-wrapper {
	width: 100%;
	background-color: #000;
}

.ending-text {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0 23px;
	padding-bottom: 43px;
	background-color: #000;
}

.ending-text p {
	width: 95%;
	font-size: 12px;
	font-weight: 400;
	line-height: 21px;
	text-align: center;
	color: #000;
}

.footer-logo {
	margin-top: 27px;
}

.footer-company-info {
	display: flex;
	flex-direction: column;
	margin-top: 22px;
}

.footer-company-info p {
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0em;
	text-align: left;
	color: #FFF;
}

.footer-route {
	margin-top: 22px;
}

.footer-route a {
	display: inline-block;
	font-size: 17px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0em;
	text-align: left;
	color: #FFF;
}

.footer-menu {
	display: flex;
	margin-top: 42px;
	margin-bottom: 47px;
}

.footer-menu ul li {
	list-style: none;
}

.footer-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 23px;
	letter-spacing: 0em;
	text-align: center;
	color: #FFF;
	margin-bottom: 16px;
}

.bottom-contacts p {
	font-family: Montserrat;
	font-size: 16px;
	font-weight: 500;
	line-height: 23px;
	letter-spacing: 0em;
	text-align: center;
	color: #fff;
}

.swiper-d-button-prev {
	display: none;
}

.swiper-d-button-next {
	display: none;
}

/* Footer section end */

/* toTopBtn start */

#toTopBtn {
	display: block;
	position: fixed;
	visibility: hidden;
	width: 60px;
	height: 60px;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	background: #FFFFFF;
	box-shadow: 0px 6px 14px rgba(145, 145, 145, 0.25);
	border-radius: 50%;
	border: none;
	transition: all .5s;
	opacity: 0;
}

#toTopBtn::before {
	content: '';
	background: url("../../assets/img/icons/straight-arrow-left.svg") no-repeat 100% 100%;
	width: 25px;
	height: 19px;
	position: absolute;
	top: 25%;
	left: 43%;
	transform: scale(1.5) rotate(90deg);
}

#toTopBtn:hover {
	background: #F0F0F0;
}

.elementVisible {
	visibility: visible !important;
	opacity: 1 !important;
}

/* toTopBtn end */

/* modal start */

/* goods */
.modal-overlay {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 14;
	background: rgba(0, 0, 0, 0.8);
	opacity: 0;
	visibility: hidden;
	transition: all .3s
}

.goods-modal-wrapper,
.contacts-modal-wrapper,
.thanks-modal-wrapper,
.tc-modal-wrapper {
	width: 100%;
	max-width: 375px;
	position: fixed;
	top: 50%;
	left: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 15;
	visibility: visible;
	opacity: 1;
	transition: all .3s;
	transform: translate(-50%, -50%);
}

.goods-modal,
.contacts-modal,
.thanks-modal,
.tc-modal {
	display: none;
	width: 100%;
	max-height: 735px;
	max-width: 100%;
	flex-direction: column;
	margin: 0 auto;
	background: #FFF;
	overflow-y: auto;
}

.thanks-modal .contacts-element {
	flex-direction: column;
}

.thanks-modal .contacts-element a {
	justify-content: flex-start;
}

.goods-modal-wrapper .goods-modal,
.thanks-modal-wrapper .thanks-modal,
.contacts-modal-wrapper .contacts-modal,
.tc-modal-wrapper .tc-modal {
	display: flex;
}

.modal-close-btn {
	width: 30px;
	height: 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	z-index: 14;
}

.modal-close-btn span {
	width: 21px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #FF0000;
	transition: all 0.5s;
	z-index: 14;
}

.modal-close-btn span:nth-of-type(1) {
	top: 50%;
	transform: translate(-50%, 0%) rotate(45deg);
}

.modal-close-btn span:nth-of-type(2) {
	top: 50%;
	transform: translate(-50%, 0%) rotate(-45deg);
}

.gm-header {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0 22px;
}

.gm-body {
	width: 100%;
	padding: 0 22px;
	margin-bottom: 22px;
	margin-top: 10px;
}

.gm-body img {
	width: 100%;
	height: auto;
}

.gm-body h4 {
	font-size: 14px;
	font-weight: 600;
	line-height: 19px;
	text-align: left;
	color: rgba(0, 0, 0, 0.6);
	margin-bottom: 10px;
}

.gm-body div {
	margin-bottom: 10px;
}

.gm-body div p,
.cm-title-holder-par {
	font-size: 12px;
	font-weight: 600;
	line-height: 15px;
	text-align: left;
	color: rgba(0, 0, 0, 0.35);
}

.gm-body+p {
	font-size: 12px;
	font-weight: 600;
	line-height: 19px;
	letter-spacing: 0em;
	color: rgba(0, 0, 0, 0.6);
}

.gm-footer {
	width: 100%;
	padding: 0 22px;
	display: flex;
	justify-content: center;
	margin-bottom: 28px;
}

.make-order {
	width: 100%;
	max-width: 169px;
	font-family: Manrope;
	font-size: 12px;
	font-weight: 600;
	line-height: 17px;
	text-align: center;
	background: #fff;
	color: rgba(0, 0, 0, 0.6);
	border: 1px solid #FF0000;
	border-radius: 3px;
	padding: 9.5px 10px;
}

/* contacts */
.contacts-modal-wrapper {
	max-width: 560px;
}

.contacts-modal .gm-header .modal-close-btn span {
	background-color: #212121;
}

.cm-content-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin-top: 15px;
}

.cm-body {
	margin: 0;
	justify-content: flex-start;
}

.cm-left {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}

.cm-left h3 {
	color: #000;
}

.cm-title-holder-par {
	font-size: 16px;
	font-weight: 800;
	line-height: 17px;
	text-align: left;

	color: #000 !important;
	margin-bottom: 10px;
}

.cm-icon {
	width: auto !important;
	height: auto !important;
}

.cm-right img {
	width: 100%;
	height: fit-content;
}

.cm-left,
.cm-right {
	height: fit-content !important;
}

/* contacts */

/* thanks to client */

.thanks-modal-wrapper {
	max-width: 250px;
}

.thanks-modal {
	background: transparent;
}

.thanks-modal-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.t-header {
	width: 100%;
	min-height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	margin-bottom: 20px;
}

.t-header img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.t-header .modal-close-btn span {
	background: #FFF;
}

.t-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-bottom: 20px;
}

.t-body h3,
.t-footer h3 {
	font-size: 17px;
	font-weight: 800;
	line-height: 24px;
	text-align: left;
	color: #FFF;
	margin-bottom: 5px;
}

.t-body p {
	font-family: Manrope;
	font-size: 16px;
	font-weight: 600;
	line-height: 21px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

.t-footer .footer-contacts-block-wrapper {
	align-items: center;
	justify-content: center;
}

.t-footer p {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	letter-spacing: 0em;
	color: #fff;
}

/* thanks to client */
/* modal end */

/* additional */

.remark {
	width: 100%;
	max-width: 60%;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 280px;
}

.chbx-agreement {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

.chbx-agreement input[type=checkbox] {
	width: auto;
	min-width: 20px !important;
	height: 20px;
	margin-bottom: 0;
}

.chbx-agreement p {
	margin-bottom: 0;
}

.chbx-agreement p span:hover {
	color: #FF0000;
	text-decoration: underline;
	cursor: pointer;
	transition: all .1s linear;
}

.tc-modal {
	padding: 20px;
	gap: 10px;
	max-height: 650px;
}

.tc-modal ul {
	margin-left: 20px;
}

/* additional */

@media (min-width: 1024px) {
	.logo_mob {
		display: none;
	}

	.logo {
		display: block;
		margin-right: 10px;
		padding: 5px 0;
	}

	header {
		width: 100%;
		justify-content: center;
	}

	.header-wrapper {
		justify-content: center;
		padding: 0;
	}

	.header-right-wrapper {
		width: 100%;
	}

	.contacts {
		display: flex;
		margin-right: 5px;
		gap: 5px;
	}

	.menu {
		max-width: 25%;
		z-index: 15;
	}

	.menu-btn {
		visibility: visible;
	}

	.menu-btn.active {
		visibility: hidden;
	}

	.menu-btn.visible-desktop,
	.menu-btn.visible-desktop.active {
		visibility: visible;
	}

	.main-section-content {
		background: url("../../assets/img/main_car_jack-desk.png") no-repeat top right;
		padding-bottom: 40px;
	}

	.main-section-content-header {
		max-width: 70%;
		font-weight: 700;
		font-size: 54px;
		line-height: 64px;
		margin-top: 103px;
		;
	}

	.main-section-content-element p {
		line-height: 28px;
	}

	#double_stand_jacks,
	#quadriple_stand_jacks,
	#scissor_jack,
	#cargo_jack,
	#certificates,
	#feedbacks,
	#feedbacks-m,
	#main_heading {
		position: absolute;
		top: -7rem;
		left: 0;
	}

	.contact-us-desk {
		display: flex;
	}

	.contact-us-mob {
		display: none;
	}

	.discount-wrapper {
		padding: 1px 0;
		background: url("../../assets/img/star_discount_desk.svg") no-repeat 80% 100%, #fff;
		margin: 63px 0 103px 0;
	}

	.discount-wrapper::before {
		background: none;
	}

	.discount-amount {
		width: 70%;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 0 19px;
	}

	.discount-amount-text {
		font-size: 36px;
		font-weight: 700;
		line-height: 43px;
		margin-right: 40px;
	}

	.discount-sum {
		font-size: 157px;
		font-weight: 700;
		line-height: 187px;
	}

	.discount-sum-up-to {
		display: flex;
		flex-direction: row;
		align-items: baseline;
		justify-content: space-around;
	}

	.discount-sum-up-to span {
		color: #FF0000;
		font-size: 78px !important;
		font-weight: 700;
		line-height: 94px;
		letter-spacing: 0em;
		text-align: right;
	}

	.discount-contact {
		width: 30%;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
	}

	.discount-contact-btn {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		font-family: Manrope;
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
		background-color: #FFF;
		color: rgba(0, 0, 0, 0.6);
		padding: 12.5px 22px;
		border: 2px solid red;
		border-radius: 4px;
	}

	.goods {
		padding: 0;
		margin-bottom: 80px;
	}

	.goods h3 {
		width: 100%;
		font-size: 54px;
		font-weight: 700;
		line-height: 65px;
		text-align: left;
		border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	}

	.swiper-wrapper {
		width: 70%;
		max-width: 1350px;
		padding: 20px 0;
		margin-top: 58px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		width: 64px !important;
		height: 64px !important;
		box-shadow: 0px 6px 14px rgba(145, 145, 145, 0.25);
		border-radius: 3.04914px;
	}

	.swiper-button-prev {
		left: 5px !important;
	}

	.swiper-button-prev::after,
	.swiper-button-next::after {
		content: '' !important;
		height: 16px;
		width: 12px;
		transform: scale(2);
	}

	.goods-card {
		width: 327px;
		min-height: 485px;
	}

	.goods-card-img {
		width: 310px;
		height: 325px;
	}

	.goods-card-title {
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
	}

	.goods-card-subtitle {
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
	}

	.goods-card-btn {
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
		padding: 14px 26px;
		margin-bottom: 26px;
	}

	.visible-mobile {
		display: none !important
	}

	.visible-desktop {
		display: flex !important
	}

	.visible-desktop-block {
		display: block !important;
	}

	.promotion-elevator-setup-wrapper {
		position: relative;
		width: 95%;
		max-width: 1350px;
		padding: 0 10px;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		background: url("../../assets/img/promotion_star.svg") no-repeat 34% 147%;
		background-size: 269px 282px;
	}

	.promotion-elevator-setup-left {
		width: 100%;
		margin: 50px 0px;
	}

	.promotion-elevator-setup-left h3 {
		font-size: 55px;
		font-weight: 800;
		line-height: 61px;
		text-align: left;
		margin-bottom: 32px;
	}

	.promotion-elevator-setup-left p {
		max-width: 75%;
		font-size: 32px;
		font-weight: 700;
		line-height: 35px;
		text-align: left;
		margin-bottom: 32px;
	}

	.promotion-elevator-setup-left button {
		display: flex;
		align-items: center;
		text-align: center;
		background: #FFF;
		font-size: 16px;
		line-height: 23px;
		text-align: center;
		color: #FF0000;
		padding: 12.5px 72px;
		border: 1px solid #FFF;
		border-radius: 4px;
	}

	.promotion-elevator-setup-right {
		width: 87%;
		height: 100%;
		position: relative;
		display: flex;
		justify-content: flex-start;
		top: 0;
		left: 0;
	}

	.promotion-elevator-setup-black-wrapper {
		width: 100%;
		height: 415px;
		position: relative;
		z-index: 2;
	}

	.promotion-elevator-setup-black-wrapper::before {
		content: '';
		position: absolute;
		top: 10%;
		left: -25%;
		width: 313px;
		height: 193px;
		background: url("../../assets/img/man_at_work_left_decorate.svg") no-repeat 100% 100%;
		z-index: 1;
	}

	.promotion-elevator-setup-black-wrapper::after {
		content: '';
		position: absolute;
		bottom: 25%;
		right: -6%;
		width: 313px;
		height: 193px;
		background: url("../../assets/img/man_at_work_right_decorate.svg") no-repeat 100% 100%;
		z-index: 1;
	}

	.promotion-elevator-setup-black-wrapper img {
		position: absolute;
		top: -55px;
		left: -65px;
		width: 602px;
		height: 415px;
		z-index: 2;
	}

	.promotion-elevator-setup-black {
		position: relative;
		top: 0;
		left: 0;
		width: 602px;
		height: 100%;
		background-color: #141414;
		border-radius: 5px;
		z-index: -1;
	}

	.certificates {
		width: 100%;
		margin-bottom: 85px;
	}

	.certificates-wrapper {
		position: relative;
		width: 100%;
		padding: 0 22px;
		margin: 0 auto;
		display: flex;
		flex-direction: row;
	}

	.certificates-left {
		width: 35%;
	}

	.certificates-left h3 {
		font-size: 55px;
		font-weight: 700;
		line-height: 61px;
		text-align: left;
		color: #000;
		margin-bottom: 5px;
		margin-top: 30px;
	}

	.certificates-left p {
		font-size: 16px;
		font-weight: 400;
		line-height: 27px;
		text-align: left;
		color: rgba(0, 0, 0, 0.6);
		margin-bottom: 100px;
	}

	.certificates-left button {
		display: flex;
		align-items: center;
		text-align: center;
		background: #FF0000;
		font-size: 16px;
		font-weight: 800;
		line-height: 23px;
		text-align: center;
		color: #FFF;
		padding: 14px 82px;
		border: 1px solid #FFF;
		border-radius: 4px;
		position: relative;
		z-index: 3;
		margin-bottom: 33px;
	}

	.title-holder-par {
		margin-bottom: 10px;
		font-size: 19px;
		font-weight: 800;
		line-height: 28px;
		text-align: left;
		margin-bottom: 10px !important;
		margin-left: 10px !important;
	}

	.title-holder-par:last-of-type {
		margin-left: 0 !important;
	}

	.certificates-form {
		width: 100%;
		max-width: 340px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		background-color: #fff;
		box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.15);
		border-radius: 4px;
		padding: 16px 12px;
		margin-bottom: 33px;
	}

	.certificates-contacts {
		width: 100%;
		max-width: 410px;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.certificates-contacts .contacts-element p {
		margin: 0;
	}

	.certificates-form input {
		width: 100%;
		color: rgba(0, 0, 0, 0.6);
		background: #FFFFFF;
		border: 1px solid rgba(0, 0, 0, 0.36);
		border-radius: 4px;
		padding: 13px 16px;
		margin-bottom: 16px;
	}

	.certificates-form button {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 16px;
		font-weight: 800;
		line-height: 23px;
		text-align: center;
		background-color: #FF0000;
		color: #FFF;
		padding: 12px 95px;
		margin-top: 12px;
		border: 1px solid #FF0000;
		border-radius: 4px;
	}

	.certificates-right {
		width: 100%;
		max-width: 100%;
		height: 780px;
		position: relative;
	}

	.certificates-black-wrapper {
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 2;
	}

	.certificates-black-wrapper img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
	}

	/* feedback */
	/* mob */
	.feedback-block {
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
	}

	.feedback-wrapper {
		width: 100%;
		background: #141414;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 25px;
	}

	.feedback-clients {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}

	.feedback-clients h3 {
		font-size: 24px;
		font-weight: 700;
		line-height: 29px;
		text-align: left;
		color: #fff;
		margin-bottom: 18px;
	}

	.feedback-clients p {
		font-size: 14px;
		font-weight: 600;
		line-height: 19px;
		text-align: left;
		color: rgba(255, 255, 255, 0.6);
		margin-bottom: 67px;
	}

	.feeds-block {
		position: relative;
		width: 100%;
		z-index: 3;
	}

	.feed {
		width: 100%;
		z-index: 3;
		margin: 0 auto;
	}

	.feedbackSwiper {
		max-width: 100%;
	}

	.text-under-slider {
		font-family: Manrope;
		font-size: 14px;
		font-weight: 600;
		line-height: 19px;
		text-align: left;
		color: rgba(255, 255, 255, 0.6);
		margin-top: 27px;
		margin-bottom: 35px;
	}

	.feedback-giver {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0.1em;
		text-align: left;
		text-transform: uppercase;
		color: #929A9F;
		margin-bottom: 35p;
	}

	.swiper-nav-container {
		position: relative;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 13px 0;
		margin-top: 10px;
	}

	.feedbackSwiper::before {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		top: -40px;
		left: 5px;
		background: url("../../assets/img/feed-block-decoration.svg") no-repeat 0% 0%;
		z-index: -1;
	}

	.swiper-nav-container .swiper-pagination {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		gap: 16px;
	}

	.swiper-nav-container .swiper-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		background: #FFF;
		opacity: 1;
	}

	.swiper-nav-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #FF0000;
	}

	.feedback-button-prev {
		width: 34px !important;
		height: 34px !important;
	}

	.feedback-button-next {
		width: 34px !important;
		height: 34px !important;
	}

	/* feedback desktop */

	.feedback-d {
		display: block;
		position: relative;
		width: 100%;
		background: #141414;
	}

	.feedback-d::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		background: url("../../assets/img/red-decoration-feedback.svg") no-repeat 2% 50%;
	}

	.feed-desktop {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.feed-desktop::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 40%;
		width: 100%;
		max-width: 320px;
		height: 100%;
		background: url("../../assets/img/feedbackSwiperDesktop-swiper-decoration.svg") no-repeat 238% 108%;
	}

	.feedbackSwiperDesktop {
		position: relative;
		width: 100%;
	}


	.feedback-d-nav-container {
		width: 100%;
		top: -330px;
		/* margin-left: -70px; */
	}

	.swiper-feedback-d-wrapper {
		margin-top: 0;
	}

	.btn-wrapper {
		position: relative;
	}

	.btn-wrapper:first-child {
		left: -50px;
	}

	.btn-wrapper:last-child {
		right: -50px;
	}

	.feedback-d-slide {
		box-shadow: 0px 11.8381px 71.0288px rgba(0, 0, 0, 0.15);
		border-radius: 10px;
	}

	.feedback-d-slide iframe {
		border-radius: 10px;
	}

	.feedback-d-wrapper {
		position: relative;
		width: 100%;
		max-width: 1350px;
		margin: 55px auto 70px;
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.feedback-d-left {
		width: 35%;
		padding-left: 10px;
	}

	.feedback-d-left-wrapper {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
	}

	.reviewer-top-cred {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0.1em;
		text-align: left;
		text-transform: uppercase;
		color: #929A9F;
		margin-bottom: 25px;
	}

	.feedback-d-f-title {
		font-size: 36px;
		font-weight: 700;
		line-height: 40px;
		text-align: left;
		color: #fff;
		margin-bottom: 25px;
	}

	.feedback-d-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 26px;
		text-align: left;
		color: #FFF;
		border-bottom: 1px solid rgba(255, 255, 255, .2);
		padding-bottom: 25px;
		margin-bottom: 190px;
	}

	.thanks-modal .contacts-element {
		flex-direction: row;
	}

	.feedback-d-contact-btn {
		width: 100%;
		max-width: 300px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 16px;
		font-weight: 800;
		line-height: 23px;
		text-align: center;
		background: #FF0000;
		color: #FFF;
		border-radius: 4px;
		border: 1px solid #FF0000;
		padding: 12.5px 10px;
	}

	.feedback-d-right {
		width: 44%;
		padding-right: 10px;
		margin-left: 100px;
	}

	.reviews-wrapper {
		width: 100%;
		position: relative;
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		padding: 0;
		background: url("../../assets/img/reviews_bg_desk.png") no-repeat 100% / cover, rgba(0, 0, 0, .3);
		margin-bottom: 80px;
	}

	.swiper-d-button-prev {
		display: flex;
		background: #FFFFFF;
		box-shadow: 0px 6px 14px rgba(145, 145, 145, 0.25);
		border-radius: 3.04914px;
		width: 64px !important;
		height: 64px !important;
		cursor: pointer;
	}

	.swiper-d-button-next {
		display: flex;
		background: #FFFFFF;
		box-shadow: 0px 6px 14px rgba(145, 145, 145, 0.25);
		border-radius: 3.04914px;
		width: 64px !important;
		height: 64px !important;
		cursor: pointer;
	}

	.swiper-d-button-prev::after {
		content: '';
		background: url("../../assets/img/icons/straight-arrow-left.svg") no-repeat 100% 100%;
		height: 18px;
		width: 22px;
		position: absolute;
		top: 25%;
		left: 23%;
		transform: scale(2);
	}

	.swiper-d-button-next::after {
		content: '';
		background: url("../../assets/img/icons/straight-arrow-right.svg") no-repeat 100% 100%;
		height: 18px;
		width: 22px;
		position: absolute;
		top: 23%;
		right: 42%;
		transform: scale(2);
	}

	.reviews-wrapper::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, .9);
		z-index: 2;
	}

	.reviews-left {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding: 0 22px;
		z-index: 3;
		margin-bottom: 75px;
	}

	.reviews-left-elem {
		display: flex;
		flex-direction: row;
		gap: 12px;
		align-items: center;
		justify-content: flex-start;
		margin-bottom: 14px;
		margin-top: 25px;
	}

	.reviews-left-elem p {
		display: flex;
		flex-direction: row;
	}

	.reviews-left-elem p a {
		margin-left: 10px;
		color: rgba(255, 255, 255, 0.6);
		text-decoration: underline;
	}

	.reviews-left-elem~.reviews-left-elem {
		margin-top: 0;
	}

	.map {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-top: 78px;
		border-radius: 7.73483px;
		overflow: hidden;
	}

	.reviews-left h5 {
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
		text-align: left;
		margin-top: 0;
		color: #fff;
	}

	.reviews-left p {
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
		text-align: left;
		color: rgba(255, 255, 255, 0.6);
	}

	.reviews-right {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding-left: 8px;
		z-index: 3;
	}

	.reviews-title {
		position: absolute;
		left: 0;
		top: 35%;
		width: 100%;
		border-bottom: 2px solid rgba(255, 255, 255, 0.4);
		margin-top: 0;
		padding-bottom: 7px;
	}

	.reviews-title h3 {
		font-size: 24px;
		font-weight: 800;
		line-height: 35px;
		text-align: left;
		color: #FFF;
	}

	.reviews {
		width: 100%;
	}

	.reviews-swiper-wrapper {
		width: 100%;
		max-width: 470px;
		margin-top: 0;
	}

	.reviews-swiper-slide {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100% !important;
	}

	.reviews-swiper-slide img {
		margin-top: 55px;
		margin-bottom: 100px;
	}

	.review-text {
		font-size: 16px;
		font-weight: 400;
		line-height: 27px;
		text-align: left;
		color: rgba(255, 255, 255, 0.6);
		margin-bottom: 30px;
	}

	.reviewers-creds {
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
		text-align: left;
		color: #FFF;
	}

	.reviewers-position {
		max-width: 100%;
		font-size: 16px;
		font-weight: 400;
		line-height: 21px;
		text-align: left;
		color: #FFF;
		opacity: 0.6;
	}

	.reviews-nav-container {
		padding: 45px 0;
		justify-content: flex-start;
		margin-top: 0;
		width: 35%;
	}

	.rewiews-button-prev,
	.rewiews-button-next {
		width: 64px !important;
		height: 64px !important;
		overflow: hidden;
	}

	.rewiews-button-prev::after {
		background: url("../../assets/img/icons/straight-arrow-left.svg") no-repeat 100% 100%;
		width: 100%;
		position: absolute;
		top: 32%;
		left: -75%;
	}

	.rewiews-button-next::after {
		background: url("../../assets/img/icons/straight-arrow-right.svg") no-repeat 100% 100%;
		width: 100%;
		position: absolute;
		top: 32%;
		left: -75%;
	}

	/* footer */

	.footer-contacts {
		width: 100%;
	}

	.footer-contacts-wrapper {
		width: 100%;
		max-width: 1350px;
		margin: 0 auto;
		padding: 0 20px;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}

	.footer-contacts-left {
		width: 40%;
		margin-right: 20px;
	}

	.form-title {
		width: 100%;
	}

	.form-title h3 {
		width: 100%;
		max-width: 90%;
		font-size: 55px;
		font-weight: 700;
		line-height: 61px;
		text-align: left;
		color: #000;
		margin-top: 75px;
		margin-bottom: 38px;
	}

	.form-title h5 {
		width: 100%;
		max-width: 60%;
		font-size: 19px;
		font-weight: 800;
		line-height: 28px;
		text-align: left;
		color: #000;
		margin-bottom: 15px;
	}

	.footer-form {
		width: 100%;
		max-width: 330px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		background-color: #fff;
		box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.15);
		border-radius: 4px;
		padding: 16px 12px;
		margin-bottom: 34px;
	}

	.footer-form input {
		width: 100%;
		color: rgba(0, 0, 0, 0.6);
		background: #FFFFFF;
		border: 1px solid rgba(0, 0, 0, 0.36);
		border-radius: 4px;
		padding: 13px 16px;
		margin-bottom: 16px;
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
	}

	.footer-form button {
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 16px;
		font-weight: 800;
		line-height: 23px;
		text-align: center;
		background-color: #FF0000;
		color: #FFF;
		padding: 12.5px 95px;
		margin-top: 12px;
		border: 1px solid #FF0000;
		border-radius: 4px;
	}

	.footer-contacts-block {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 6px;
		margin-bottom: 34px;
	}

	.footer-contacts-block-wrapper {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 36px;
		flex-wrap: wrap;
	}

	.footer-contacts-block h5 {
		font-size: 17px;
		font-weight: 800;
		line-height: 24px;
		text-align: left;
		color: #000;
		margin-bottom: 6px;
	}

	.footer-contacts-element {
		display: flex;
		flex-direction: row;
		gap: 8px;
	}

	.footer-contacts-element p {
		font-size: 14px;
		font-weight: 500;
		line-height: 20px;
		text-align: center;
		color: #000;
	}

	.footer-contacts-right-wrapper {
		width: 100%;
		max-width: 794px;
		height: 100%;
	}

	.footer-contacts-right-wrapper img {
		width: 100%;
		max-width: 794px;
		margin-top: 90px;
	}

	.ending-text {
		max-height: 440px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		width: 100%;
		max-width: 1350px;
		padding: 0 23px;
		padding-bottom: 43px;
		background-color: #000;
		margin: 0 auto;
	}

	.ending-text p {
		width: 95%;
		font-size: 12px;
		font-weight: 400;
		line-height: 21px;
		text-align: center;
		color: #000;
	}

	.footer-logo {
		margin-top: 28px;
	}

	.footer-company-info {
		display: flex;
		flex-direction: column;
		margin-top: 27px;
	}

	.footer-company-info p {
		font-size: 17px;
		font-weight: 400;
		line-height: 28px;
		letter-spacing: 0em;
		text-align: left;
		color: #FFF;
	}

	.footer-route {
		margin-top: 32px;
	}

	.footer-route a {
		display: inline-block;
		font-size: 17px;
		font-weight: 400;
		line-height: 28px;
		letter-spacing: 0em;
		text-align: left;
		color: #FFF;
	}

	.footer-menu {
		margin-top: 150px;
		margin-bottom: 47px;
	}

	.footer-menu ul {
		width: 550px;
		max-height: 160px;
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footer-menu ul li {
		list-style: none;
	}

	.footer-menu ul li a {
		font-size: 16px;
		font-weight: 600;
		line-height: 23px;
		letter-spacing: 0em;
		text-align: center;
		color: #FFF;
		margin-bottom: 16px;
	}

	.bottom-contacts {
		margin-top: 150px;
		gap: 10px;
	}

	.bottom-contacts p {
		font-family: Montserrat;
		font-size: 16px;
		font-weight: 500;
		line-height: 23px;
		letter-spacing: 0em;
		text-align: center;
		color: #fff;
	}

	/* footer */

	/* toTopBtn start */

	#toTopBtn {
		width: 73px;
		height: 73px;
		right: 40px;
		bottom: 40px;
	}

	#toTopBtn::before {
		width: 22px;
		height: 19px;
		top: 30%;
		left: 48%;
		transform: scale(2) rotate(90deg);
	}

	/* toTopBtn end */


	/* modal */
	.modal-close-btn:hover {
		transform-origin: center;
		animation: .3s ease-in rot;
		-webkit-animation: .3s ease-in rot;
	}

	.modal-close-btn:hover span:nth-of-type(1) {
		background-color: #FF0000;
	}

	.modal-close-btn:hover span:nth-of-type(2) {
		background-color: #FF0000;
	}

	@keyframes rot {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(180deg);
		}
	}

	@-webkit-keyframes rot {
		0% {
			transform: rotate(0deg);
		}

		100% {
			transform: rotate(180deg);
		}
	}

	/* goods */
	.goods-modal-wrapper {
		max-width: 550px;
		border-radius: 3px;
	}

	.goods-modal {
		max-width: 100%;
		border-radius: 3px;
	}

	.gm-header {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0 30px;
	}

	.gm-body {
		width: 100%;
		padding: 0 30px;
		margin-top: 10px;
		margin-bottom: 22px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.gm-body img {
		width: auto;
		height: auto;
		margin: 0 auto;
	}

	.gm-body h4 {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
		text-align: left;
		color: rgba(0, 0, 0, 0.6);
		margin-bottom: 10px;
	}

	.gm-body div {
		margin-bottom: 10px;
	}

	.gm-body div p {
		font-size: 16px;
		font-weight: 600;
		line-height: 20px;
		text-align: left;
		color: rgba(0, 0, 0, 0.35);
	}

	.gm-body+p {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
		text-align: left;
		color: rgba(0, 0, 0, 0.6);
	}

	.gm-footer {
		width: 100%;
		padding: 0 30px;
		display: flex;
		justify-content: center;
		margin-bottom: 28px;
	}

	.make-order {
		width: 100%;
		max-width: 210px;
		font-size: 16px;
		font-weight: 600;
		line-height: 21px;
		text-align: center;
		background: #fff;
		color: rgba(0, 0, 0, 0.6);
		border: 1px solid #FF0000;
		border-radius: 3px;
		padding: 12px 10px;
	}

	/* contacts */
	.contacts-modal-wrapper,
	.tc-modal-wrapper {
		max-width: 1066px;
		border-radius: 3px;
		margin-top: 40px;
	}

	.contacts-modal,
	.tc-modal {
		max-width: 100%;
		border-radius: 3px;
		padding: 0 40px;
	}

	.cm-content-wrapper {
		margin-bottom: 35px;
	}

	.cm-body {
		margin: 0;
		justify-content: flex-start;
		padding-right: 0;
	}

	.cm-left .nav-form-wrapper {
		margin: 0;
	}

	/* thanks to client */

	.thanks-modal-wrapper {
		max-width: 922px;
		border-radius: 3px;
		overflow: hidden;
	}

	.thanks-modal {
		background: #FFF;
	}

	.thanks-modal-content {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 20px 40px;
	}

	.t-header-d {
		margin-bottom: 25px;
		padding: 0;
	}

	.t-header-d .modal-close-btn span {
		background: #212121;
	}

	.t-body {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 15px;
		margin-bottom: 25px;
		padding: 40px 50px;
		background: url("../img/icons/thanks_gadget_bg.png") no-repeat 100% 100%, #FFFFFF;
		box-shadow: 0px 3.50231px 73.5484px rgba(0, 0, 0, 0.15);
		border-radius: 3.50231px;
	}

	.t-footer {
		margin-bottom: 25px;
	}

	.t-body h3 {
		font-family: Work Sans;
		font-size: 43px;
		font-weight: 700;
		line-height: 48px;
		letter-spacing: 0px;
		text-align: left;
		color: #FF0000;
		margin-bottom: 0;
	}

	.t-body p {
		font-family: Work Sans;
		font-size: 36px;
		font-weight: 700;
		line-height: 40px;
		letter-spacing: 0px;
		text-align: left;
		color: #000;
	}

	.t-footer .footer-contacts-block-wrapper {
		align-items: center;
		justify-content: center;
	}

	.t-footer h3 {
		font-size: 17px;
		font-weight: 800;
		line-height: 24px;
		color: #000;
	}

	.t-footer p {
		font-size: 16px;
		font-weight: 500;
		line-height: 23px;
		color: #000;
	}

	/* thanks to client */

	/* modal */

	.remark {
		display: flex;
		flex-direction: row;
		align-items: center;
		font-size: 12px;
		line-height: 20px;
		color: #fff;
		margin-top: 30px;
		margin-bottom: 0;
	}

	/* self promotion block start */

	.self-promo-wrapper {
		width: 100%;
		background: url("../img/smilng_man_self_promo.png") no-repeat center / cover, rgba(0, 0, 0, .3);
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
		margin-top: 60px;
		position: relative;
	}

	.self-promo-bg-cover {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: -webkit-fill-available;
		background: rgba(0, 0, 0, .7);
		z-index: 1;
	}

	.self-promo {
		position: relative;
		width: 100%;
		max-width: 1350px;
		padding: 100px 0;
		margin: 0 auto;
		z-index: 2;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.self-promo-left {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-start;
	}

	/* .self-promo-left,
	.self-promo-right {
		width: 50%;
	} */

	.self-promo-left-element {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.self-promo-left-element h4 {
		font-size: 57px;
		font-weight: 700;
		line-height: 57px;
		letter-spacing: 0px;
		text-align: left;
		color: #FFF;
		max-width: 45%;
		border-bottom: 2px solid rgba(255, 255, 255, 0.6);
		padding: 0px 0 10px 0;
	}

	.self-promo-left-element p {
		font-size: 18px;
		font-weight: 500;
		line-height: 24px;
		letter-spacing: 0em;
		text-align: left;
		color: rgba(255, 255, 255, 0.6);
		margin-top: 10px;
		margin-bottom: 110px;
		max-width: 40%;
	}

	.self-promo-left button {
		font-size: 22px;
		font-weight: 800;
		line-height: 31px;
		letter-spacing: 0em;
		text-align: center;
		background-color: #FF0000;
		color: #FFF;
		border: 1px solid #FF0000;
		border-radius: 4px;
		padding: 15.5px 16px;
	}

	.self-promo-right,
	.self-promo-right-element {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: flex-end;
	}

	.self-promo-right {
		height: 100%;
	}

	.self-promo-right-element:first-child {
		margin-bottom: 40px;
	}

	.self-promo-right-element h2 {
		position: relative;
		font-size: 125px;
		font-weight: 300;
		line-height: 125px;
		letter-spacing: -0.005em;
		text-align: right;
		color: #FFF;
		border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	}

	.self-promo-right-element h2 span {
		position: absolute;
		top: 0;
		right: 0;
		font-size: 80px;
		font-weight: 300;
		line-height: 80px;
		letter-spacing: -0.09em;
		text-align: right;
		color: #fff;
	}

	.self-promo-right-element h2:has(span) {
		padding-right: 60px;
	}

	.self-promo-right-element p {
		font-size: 18px;
		font-weight: 500;
		line-height: 24px;
		letter-spacing: 0em;
		text-align: right;
		color: rgba(255, 255, 255, 0.6);
		margin-top: 10px;
	}

	/* self promotion block end */

	.chbx-agreement input[type=checkbox] {
		min-width: 30px !important;
	}

	.chbx-agreement p {
		margin-bottom: 0;
		font-weight: normal;
	}

	.tc-modal {
		padding: 40px;
		gap: 20px;
	}

	.tc-modal ul {
		margin-left: 40px;
	}
}

@media (min-width: 1280px) {
	#logo {
		margin-right: 150px;
	}

	.header-wrapper {
		justify-content: center;
		padding: 5px 15px;
	}

	.contacts {
		display: flex;
		margin-right: 21px;
		gap: 29px;
	}

	.discount-wrapper {
		padding: 1px 0;
		background: url("../../assets/img/star_discount_desk.svg") no-repeat 78% 100%, #fff;
	}

	.discount-amount {
		width: 60%;
	}

	.discount-contact {
		width: 40%;
	}

	.promotion-elevator-setup-wrapper {
		width: 100%;
	}
}

@media (min-width: 1440px) {
	#logo {
		margin-right: 200px;
	}

	.header-wrapper {
		justify-content: center;
		padding: 0 22px;
	}

	.contacts {
		display: flex;
		margin-right: 21px;
		gap: 29px;
	}

	.discount-wrapper {
		padding: 1px 0;
		background: url("../../assets/img/star_discount_desk.svg") no-repeat 65% 100%, #fff;
	}

	.discount-amount {
		width: 55%;
	}

	.discount-contact {
		width: 45%;
	}

	.feedback-d-right {
		width: 50%;
	}
}