.button svg {
	height: 15px;
}

.button a, .button path, .button_, .button_ path {
	transition: .3s ease;
}

.button a:hover {
	background: white !important;
	color: black !important;
}

.button a:hover svg path {
	fill: black;
}

.button_:hover {
	background: white !important;
	color: black !important;
}

.button:hover svg path {
	fill: black;
}



.section-title h2, .section-title h1 {
	background: linear-gradient(90.16deg,#e8b98b 1.46%,#825b4d 101.44%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #d8b257;
    display: block;
}

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

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

.section-header {
	border-bottom: 1px solid #373737;
}


.custom_breadcrumbs ul {
	margin-bottom: 15px;
	grid-gap: 10px;
	padding: 15px 0;
	display: flex;
}

.custom_breadcrumbs li::marker {
	content: '';
}

.custom_breadcrumbs a, 
.custom_breadcrumbs span {
	font-size: 18px;
	font-weight: 500;
	font-family: "Futura", Sans-serif;
	color: #888;
}

.current {
	color: white !important;
}


.list_large {
	padding-left: 20px;
}

.list_large li::marker {
    font-size: 60px;
    line-height: 115%;
    text-transform: uppercase;
    color: #393939;
}








.list_wrong ul, 
.list_success ul, 
.list_check ul {
	padding: 0;
}

.list_wrong li::marker, 
.list_success li::marker, 
.list_check li::marker {
	content: '';
}

.list_wrong li, 
.list_success li {
	margin-bottom: 20px;
	padding-left: 35px;
    background: url(../img/wrong.svg) no-repeat top 6px left;
    background-size: 20px;
}

.list_success li {
    background: url(../img/success.svg) no-repeat top 6px left;
	background-size: 20px;
}
.list_success._gray li {
	background: url(../img/tick-gray.svg) no-repeat top 6px left;
	background-size: 20px;
}

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


.list_check ul {
	display: flex;
	flex-direction: column;
	grid-gap: 50px;
}

.list_check li {
	padding-left: 35px;
    background: url(../img/tick.svg) no-repeat top 6px left;
    background-size: 20px;
}


.service_list ul {
	display: flex;
	flex-direction: column;
	grid-gap: 10px;
}

.service_list li::marker {
    color: #e8b98b;
}





















.cart-list {
	display: grid;
    grid-gap: 65px 20px;
    grid-template-columns: repeat(3, 1fr);
}

.cart-item__img {
	overflow: hidden;
	height: 300px;
}
.cart-item__img img {
	transition: .3s ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item__content {
	display: flex;
	justify-content: space-between;
	background: black;
	padding: 16px;
}

.cart-item__title {
	font-family: "Futura", Sans-serif;
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	color: white;
}

.cart-item__price {
	font-weight: 400;
	font-family: "Futura", Sans-serif;
	font-size: 16px;
	margin: 0;
	color: white;
}


.cart-item:hover .cart-item__img img {
	transform: scale(1.15);
}

























.avtopark-cars {
	margin-top: 30px;
	display: grid;
    grid-gap: 30px 20px;
    grid-template-columns: repeat(3, 1fr);
}

.avtopark-car {
	position: relative;
}

.avtopark-car::after {
	z-index: 3;
	content: '';
	width: 100%;
	position: absolute;
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,212,255,0) 70%);
	left: 0;
	top: 0;
	height: 100%;
}

.avtopark-cars__img {
	height: 350px;
}

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

.avtopark-cars__title {
	color: white;
	font-family: "Futura", Sans-serif;
	top: 15px;
	left: 20px;
	position: absolute;
	z-index: 5;
}

.avtopark-cars__title  h4 {
	margin: 0;
	margin-bottom: 7px;
	font-size: 20px;
}











.section-text a {
	border-bottom: 1px dashed;
    color: #fff;
}

.section-text h2 {
	font-weight: 400;
	margin-top: 45px;
	margin-bottom: 15px;
}

.section-text h3 {
	font-weight: 400;
	margin-top: 45px;
	margin-bottom: 15px;
}

.section-text p {
	font-size: 20px !important;
    line-height: 32px;
    font-weight: 400;
    color: #bbb;
    margin-bottom: 15px;
}


.section-text li {
	color: #bbb;
	font-size: 19px;
}

















.avtopark-sort {
	justify-content: center;
	display: flex;
	grid-gap: 11px;

}

.sort-item {
	position: relative;
	cursor: pointer;
	grid-gap: 10px;
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 25px;
	background: #232323;
	border-radius: 9px;
}

.sort-item h4 {
	font-family: "Futura", Sans-serif;
	margin: 0;
	color: #bbb;
	font-size: 19px;
}


.sort-item__list {
	display: flex;
	flex-direction: column;
	grid-gap: 15px;
	border-radius: 10px;
	left: 0;
	padding: 20px;
	z-index: 5;
	top: 120%;
	position: absolute;
	background: #232323;
	transition: .3s ease;
	opacity: 0;
	visibility: hidden;
}

.sort-item.active .sort-item__list {
	opacity: 1;
	visibility: visible;
}

.sort-item__list li::marker {
	display: none;
}

.sort-item__list a {
	color: #bbb;
}












.section-car__bread {
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-car__price {
	display: flex;
	align-items: center;
	grid-gap: 15px;
}

.section-car__price .button {
	height: 35px;
	padding: 4px 20px 4px 20px;
	font-weight: 400;
	font-size: 14px;
	border: 1px solid #fff;
}

.section-car__price h4 {
	margin: 0;
	font-weight: 500;
    font-size: 22px;
    color: #fff;
    min-width: 200px;
}

.section-car__price p {
	margin: 0;
	font-size: 12px;
    display: block;
    color: #a7a7a7;
    line-height: .9;
}



.section-car {
	font-family: "Futura", Sans-serif;
}

.section-car__content a {
	border-bottom: 1px dashed;
    color: #fff;
}

.section-container {
	padding: 0 140px;
}

.section-car__slider {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.section-car__swiper {
	width: 1100px;
	position: relative;
}

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

.section-car__swiper .swiper-button {
	width: 25px;
	height: auto;
}

.section-car__swiper .swiper-slide {
	transition: .3s ease !important;
	opacity: 0.4;
}

.section-car__swiper .swiper-slide-active {
	opacity: 1;
}

.swiper-button-prev {
	left: 30px !important;
	transform: rotate(180deg);
}

.swiper-button-next {
	right: 30px !important;
}

.section-car__title_container {
	height: 60px;
	background: #1b1b1b;
	align-items: center;
	display: flex;
}

.section-car__title_container .section-container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.section-car__info {
	grid-gap: 40px;
	display: flex;
	align-items: center;
}

.section-car__info_item {
	grid-gap: 5px;
	display: flex;
	align-items: center;
}

.section-car__info_item p {
	font-weight: 500;
	color: white;
	font-size: 18px;
	margin: 0;
}

.section-car__title {
	font-weight: 300;
	font-size: 28px !important;
	margin: 0;
}

.section-car__subtitle {
	margin-top: 80px;
	text-align: center;
}

.section-car__sale {
	color: #bbb;
	font-size: 20px;
	margin: 0;
	margin-top: 40px;
	text-align: center;
}

.section-car__table_caption {
	margin-top: 15px;
    caption-side: top;
    color: #bbb;
    text-align: center;
    font-weight: 400;
    padding-top: 18px;
    padding-bottom: 22px;
    font-size: 21px;
    border: 1px solid #4e4e4e;
    border-bottom: none;
}


.section-car__table td, .section-car__table th {
	background-color: #141414 !important;
    width: 12%;
    height: 100px;
    border: 1px solid #4e4e4e;
    color: #bbb;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    padding: 0 5px;
    padding-top: 30px;
}

.section-car__table th {
    width: 8%;
}

.section-car__table .table-cell {
    color: #fff;
}

.section-car__form {
	margin-top: 50px;
}

.section-car__form input {
	background-color: transparent;
    color: #fff;
    padding: 17px 29px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #4e4e4e;
    font-weight: 300;
    min-width: 335px;
    font-size: 18px;
}

.section-car__form .input-label {
	color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.section-car__form .form-group {
	display: grid;
	grid-gap: 70px;
	grid-template-columns: repeat(3, 1fr);
}


.form-button {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.form-button input {
	font-size: 18px;
	border: 1px solid #fff;
	font-weight: 600;
	letter-spacing: .15em;
}

.wpcf7-spinner {
	display: none;
}












.section-plakat {
	overflow: hidden;
	position: relative;
	margin: 80px 0;
	background: #1f1f1f;
	padding: 30px 60px 40px 60px;
}

.section-plakat__content {
	position: relative;
	z-index: 15;
}

.section-plakat .section-car__subtitle {
	margin: 0;
	text-align: left;
}

.section-plakat__subtitle {
	color: #bbb;
	font-size: 20px;
	width: 500px;
}

.section-plakat__buttons {
	margin-top: 40px;
	align-items: center;
	display: flex;
	grid-gap: 10px;
}

.section-plakat__buttons_ {
	align-items: center;
	display: flex;
	grid-gap: 10px;
}


.section-plakat__buttons h4 {
	font-weight: 600;
	margin-right: 30px;
	color: #bbb;
	font-size: 24px;
}

.section-plakat__buttons .button {
	font-weight: 500;
	font-size: 20px;
    padding: 10px;
    white-space: nowrap;
    margin-right: 12px;
}


.button-whatsapp {
	border: 1px solid #69a94b;
    color: #69a94b !important;
}

.button-telegram {
	border: 1px solid #60a1de;
    color: #60a1de !important;
}



.manager {
	z-index: 5;
	position: absolute;
	right: 120px;
	top: 5px;
}

.illustration {
	z-index: 4;
	position: absolute;
	right: 120px;
	top: 0px;
	height: 100%;
}






























.section-main__category {
	padding-bottom: 60px;
	border-bottom: 1px solid #373737;
	margin-top: 50px;
	font-family: "Futura", Sans-serif;
	display: flex;
	grid-gap: 30px;
	justify-content: center;
}

.section-main__category_item {
	display: flex;
	grid-gap: 10px;
	align-items: center;
	flex-direction: column;
}

.section-main__category_item img {
	height: 45px;
}

.section-main__category_item span {
	color: white;
	font-size: 24px;
}


@media (max-width: 767px) {
	.section-main__category {
		border: none;
		padding: 0 15px;
		flex-direction: column;
	}
	
	.section-main__category_item {
		grid-gap: 40px;
		justify-content: center;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		padding: 30px 0;
		border-bottom: 1px solid rgb(44, 44, 44);
	}
	
	.section-main__category_item img {
		height: auto;`
		width: 110px;
	}
	
	.section-main__category_item span {
		font-size: 19px;
		font-weight: 500;
	}
}
















.contacts-map iframe, .contacts-map .elementor-widget-container {
	height: 590px !important;
}




.category-container {

	margin: auto;
}

.category-item {
	padding: 0 15px;
	position: relative;
	margin-top: 65px;
}



.category-item__title {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
}

.category-item__buttons {
	align-items: center;
	display: flex;
	grid-gap: 10px;
}

.category-item__buttons .swiper_arrow {
	cursor: pointer;
	width: 46px;
    height: 46px;
    border: 1px solid #4e4e4e;
	display: flex;
	justify-content: center;
	align-items: center;
}

.category-item__buttons .swiper-prev {
	transform: rotate(180deg);
}

.category-item__buttons .button {
	margin-left: 40px;
	background: none;
	padding: 9px 26px 9px 29px;
    border: 1px solid #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
}


@media (max-width: 767px) {
	.category-item .section-title h2 {
		font-size: 28px;
	}
	
	.contacts-map iframe, .contacts-map .elementor-widget-container {
		height: 450px !important;
	}

	
	.category-item {
		padding: 0 15px;
		padding-bottom: 100px;
	}

	.category-container {
		width: auto;
	}
	
	.category-item__buttons .swiper_arrow {
		display: none;
	}
	
	.category-item__buttons a {
		position: absolute;
		right: 0;
		left: 0;
		margin: auto;
		bottom: 0;
		display: flex;
		justify-content: center;
	}
	
	.category-item__buttons .button {
		margin: 0;
	}
	
	.button-main a, .button-main {
		width: 100%;
	}
	
	.marketing-back {
		right: 0 !important;
		top: 0 !important;
		max-width: none;
		width: 100%;
		height: 100%;
	}
	
	.marketing-back img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.service_list ul {
		padding-left: 15px;
		grid-gap: 5px;
	}
	
	.contact-video iframe {
		height: 180px !important;
	}
	
	
	.list_large {
		padding-left: 15px;
	}
	
	.list_large li {
		margin-bottom: 15px;
	}

	.list_large li::marker {
		font-size: 40px;
		line-height: 100%;
	}
	
	.list_check ul {
		grid-gap: 20px;
	}
	
	.cart-list {
		padding: 0 15px;
		grid-gap: 20px;
		grid-template-columns: 1fr;
	}
	
	.cart-item__img {
		height: 220px;
	}
	
	.avtopark-sort {
		margin-top: 30px;
		padding: 0 15px;
	}
	
	.avtopark-cars {
		grid-template-columns: 1fr;
		padding: 0 15px;
	}
	
	.category-item__title {
		justify-content: center;
		margin-bottom: 5px;
	}
	
	.category-item {
		margin-top: 30px;
	}
	
	.sort-item h4 {
		font-size: 15px;
	}

}






.border-bottom {
	border-bottom: 1px solid #3a3a3a;
}



.gradient-mask::after {
	z-index: 3;
	content: '';
	width: 100%;
	position: absolute;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,212,255,0) 100%);
	left: 0;
	top: 0;
	height: 100%;
}

.gradient-mask.bacground::after {
	background: black;
	opacity: 0.5;
}



.gradient-mask.left::after {
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,212,255,0) 100%);
}
















.form_contacts input, 
.form_contacts textarea {
	border: none;
	border-bottom: 1px solid rgba(187,187,187,.5);
	background: none;
	padding: 20px 15px;
	color: white;
}

.form_contacts textarea {
	resize: none; 
	height: 100px;
}

.form_contacts .button {
	margin-top: 30px;
	width: 100%;
	border: 1px solid white;
	height: 60px;
}

.form_contacts .policity {
	margin-top: 20px;
	color: #868686;
	font-weight: 500;
	font-size: 14px;

}

.yellow_line::after {
	content: "";
	width: 60px;
	height: 1px;
	border-bottom: 1px solid #e8b98b;
	position: absolute;
	display: block;
	bottom: -15px;
	left: 0;
}



.sub-arrow i::before {
	content: '' !important;
	background: url(../img/arrow.svg) no-repeat;
	width: 11px;
	height: 10px;
	display: block;
	margin-top: 10px;
}






.sub-menu {
	font-size: 18px !important;
	width: 250px !important;
	background: black !important;
}
























.popup_callback {
	top: 10px;
	right: 0;
	width: 620px;
	position: absolute;
	opacity: 1;
	transition: .3s ease;
	visibility: visible;
}

.popup_callback.hide {
	opacity: 0;
	visibility: hidden;
}


.popup_callback__active {
	cursor: pointer;
}
.popup_callback__active h2 {transition: .3s ease}
.popup_callback__active:hover h2 {
	color: #d8b257!important;
}









.tab-content-rent {
    border: 1px solid #333;
    background-color: #1c1c1c;
	display: none;
}

.tab-pane-rent__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #a7a7a7;
    padding: 12px 25px;
    border-bottom: 1px solid #4e4e4e;
}

.tab-pane-rent__item:last-child {
	border-bottom: none;
}














.mobile-menu {
	background: #141414;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s ease;
	opacity: 0;
	visibility: hidden;
}

.mobile-menu.active {
	opacity: 1;
	visibility: visible;
}




@media (max-width: 767px) {
	
	.tab-content-rent {
		display: block;
	}
	
	.popup_callback {
		display: none;
	}
	
	.section-container {
		padding: 15px;
	}
	
	.section-car__form .form-group {	
		grid-template-columns: 1fr;
		grid-gap: 0;
	}
	
	.section-car__table, .custom_breadcrumbs {
		display: none;
	}
	
	.section-car__price .button-price {
		display: none;
	}
	
	.section-car__title_container .section-container {
		flex-direction: column;
	}
	
	.section-car__info_item {
		flex-direction: column;
	}
	
	.section-car__swiper {
		height: 300px;
    	width: 100%;
	}
	
	.section-car__swiper .swiper-button {
		width: auto;
		height: 25px;
		opacity: 0.7;
	}
	
	.section-car__swiper .swiper-button-prev {
		left: 10px !important;
	}
	
	.section-car__swiper .swiper-button-next {
		right: 10px !important;
	}
	
	.section-car__title_container {
		height: auto;
		background: none;
	}
	
	.section-car__title_container .section-car__title {
		font-size: 20px !important;
	}
	
	.section-container.section-car__bread {
		padding: 30px 15px;
		background: #1c1c1c;
		justify-content: center;
	}
	
	.section-car__price {
		grid-gap: 20px;
		flex-direction: column;
	}
	
	.section-car__info_item p {
		font-size: 16px;
	}
	
	.section-car__info {
		margin-top: 30px;
	}
	
	.section-car__price h4 {
		font-size: 24px;
	}
	
	.section-car__price .button {
		height: 50px;
		padding: 0 50px;
		font-size: 18px;
	}
	
	.main-subtitle {
		margin-top: 10px;
	}
	
	.section-car .section-car__subtitle {
		font-size: 24px !important;
	}
	
	.section-car__sale {
		text-align: left;
		margin-top: 15px;
		font-size: 19px;
	}
	
	.section-car__table_caption {
		padding-top: 0;
		border: none;
		font-size: 17px;
	}
	
	.form-group p {
		margin: 0;
	}
	
	.form-button .button {
		font-size: 15px;
	}
	
	.section-plakat {
		padding: 20px;
	}
	
	.section-plakat .manager {
		width: 220px;
		right: -50px;
		top: 50px;
	}

	.section-plakat .illustration {
		object-fit: cover;
		right: auto;
		left: 0;
		width: 300%;
		height: 100%;
	}
	
	.section-plakat__subtitle {
		font-weight: 400;
		font-size: 19px;
		padding-right: 70px;
		width: auto;
	}
	
	.section-car__form {
		margin: 0;
	}
	
	.section-plakat__buttons h4 {
		font-size: 21px;
	}
	
	.section-plakat__buttons {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.section-plakat__buttons_ {
		margin-top: 30px;
		align-items: flex-start;
		flex-direction: column;
	}
}






