*, *::before, *::after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

ul, ol, li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
}

.h1 {
	color: #000;
	font-size: clamp(30px, 5vw, 72px);
	text-transform: uppercase;
	width: 100%;
}

html {
	scroll-behavior: smooth;
}

html, body {
	height: 100%;
	line-height: 1;
	font-size: 16px;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

body._lock {
	overflow: hidden;
}


input {
    width: 100%;
    height: 40px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
}

textarea {
	width: 100%;
    height: 50px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
    resize: vertical;
}

select {
	width: 100%;
    height: 40px;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
}

p {
	font-size: 16px;
}

.page {
    padding: 90px 0px 30px 0px;
    display: flex;
    flex-wrap: wrap;
}

.container {
    display: flex;
    justify-content: center;
    margin: 10px auto;
    max-width: 1150px;
    margin-top: 110px;
}

.container h1 {
	font-size: 20px;
	margin-bottom: 10px;

}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #1d1d1d;
}
.header__container {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	min-height: 70px;
	align-items: center;
}
.header__logo {
    width: 150px;
}

.text__logo {
	font-size: 24px;
	font-weight: 600;
}

.header__menu {}

.menu__icon {
	display: none;
}
.menu__body {}
.menu__list {}
.menu__list > li {
	position: relative;
	margin: 0px 0px 0px 20px;
}

.menu__link {
	color: #FF9522;
	font-size: 16px;
	text-transform: uppercase;
}

.menu__link:hover {
	color: #fff;
}

.btn {
    color: #000;
    font-size: 16px;
    background: #FF9522;
    border-radius: 10px;
    transition: 0.3s;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
	background: #000;
	color: #fff;
}

.whatsapp {
	width: 46px;
	cursor: pointer;
}

.whatsapp img {
	width: 100%;
}


/* ----------------------------------------------- */ 

body._touch .menu__list > li {
	display: flex;
	align-items: center;
}

body._touch .menu__link {
	flex: 1 1 auto;
}

body._touch .menu__arrow {
	display: block;
	width: 0;
	height: 0;
	margin: 0px 0px 0px 5px;
	transition: transform 0.3s ease 0s;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 10px solid #fff;
}

body._touch .menu__list > li._active:hover .menu__sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

body._touch .menu__list > li._active:hover .menu__arrow {
	transform: rotate(180deg);
}


/* ----------------------------------------------- */


@media (min-width: 767px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		padding: 10px 0;
	}
}

@media (max-width: 767px) {
	.menu__icon {
		z-index: 5;
		display: block;
		position: relative;
		width: 30px;
		height: 18px;
		cursor: pointer;
	}


	.menu__icon span, .menu__icon::before, .menu__icon::after {
	    content: "";
	    left: 0;
	    position: absolute;
	    height: 20%;
	    width: 100%;
	    transition: all 0.3s ease 0s;
	    background-color: #fff;
	    border-radius: 2px;
	}

	.menu__icon::before {
		top: 0;
	}


	.menu__icon::after {
		bottom: 0;
	}

	.menu__icon span {
		top: 50%;
		transform: scale(1.0) translate(0px, -50%);
	}


	.menu__icon._active span {
		transform: scale(0) translate(0px, -50%);

	}

	.menu__icon._active::before {
		top: 50%;
		transform: rotate(-45deg) translate(0px, -20%);
	}

	.menu__icon._active::after {
		top: 50%;
		transform:  rotate(45deg) translate(0px, -50%);
	}

	.circle {
	    position: fixed;
	    top: 20px;
	    right: 20px;
	    width: 50px;
	    height: 50px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    z-index: 20;
	    background: #889199;
	    border-radius: 50%;
	}


	.header__container {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		padding: 100px 30px 30px 30px;
		transition: left 0.3s ease 0s;
		overflow: auto;
		display: flex;
		flex-direction: column;
	}

	.header__container._active {
		left: 0;
	}

	.menu__list > li {
		flex-wrap: wrap;
		margin: 0px 0px 30px 0px;
	}

	.menu__list > li._active .menu__sub-list {
		display: block;
	}

	.menu__list > li:last-child {
		margin-bottom: 0;
	}



	.menu__link {
		font-size: 24px;
	}
	.menu__sub-list {
		position: relative;
		background-color: #fff;
		flex: 1 1 100%;
		display: none;
	}

	.menu__sub-link {
		font-size: 20px;
		color: #000;
	}
	.tel, .mail  {
		display: block !important;
	}
}

.main {
	width: 1280px;
}

.bnr {
    display: flex;
    height: 720px;
    padding-top: 70px;
    background: url(../img/bnr_main.webp);
    justify-content: center;
    align-items: center;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
}

.bnr .main {
	display: flex;
}
.text_bnr {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding-right: 30px;
}

.logo_bnr {
    display: flex;
    align-items: center;
}


.logo_bnr img {
	width: 85px;
	margin-right: 20px;
}

.text-logo_bnr {
	text-transform: uppercase;
	color: rgb(255, 149, 33);
	font-size: 45px;
	font-weight: 600;
}

.title_bnr {
    font-size: clamp(15px, 2.7vw, 36px);
    text-transform: uppercase;
    padding: 50px 0;
    line-height: 1.5;
    color: #fff;
}

.box_btn {
    height: 70px;
    display: flex;
    align-items: center;
}

.box_btn img {
	width: 162px;
}

.subtit_bnr {
    padding-bottom: 50px;
    line-height: 1.2;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #fff;
}

.form {
	width: 30%;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #cdcecf;
    display: flex;
    flex-direction: column;
}

.form .btn {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.boxes_inp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box_btn {
	position: relative;
}

.box_btn img {
	position: absolute;
	left: -40px;
}

.box_btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 65px;
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-left: 40px;
}

.tit_form {
	color: #fff;
	font-size: 24px;
	margin-bottom: 15px;
}

.subtit_form {
	color: #c5c5c5;
	font-size: 16px;
	margin-bottom: 20px;
}

.delivery {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 90px 0;
}

.org {
	color: #ff9522;
	font-weight: 600;
}

.boxes_dlv {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
}
.box_dlv {
	display: flex !important;
	flex-direction: column;
	background: #f0f0f0;
	padding: 21px 18px;
	border-radius: 5px;
	width: 32%;
}
.tit_dlv {
    width: 100%;
    background: #fff;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    margin: 30px 0;
}
.text_dlv {
	 color: #000;
	 font-size: 18px;
	 line-height: 1.2;
}
.box_dlv .btn {
	margin: 30px auto 0;
	width: 215px;
	color: #fff;
}

.gallery {
	display: flex;
}

.box_img {
	width: 20%;
	height: 355px;
	transition: 0.5s;
}

.box_img:hover {
	width: 100%;
}

.img_1 {
	background: url(../img/ozon.png);
	background-size: cover;
	background-position: center;
}
.img_2 {
	background: url(../img/auto_2.jpg);
	background-size: cover;
	background-position: center;
}
.img_3 {
	background: url(../img/avia_2.jpg);
	background-size: cover;
	background-position: center;
}
.img_4 {
	background: url(../img/boxes.jpg);
	background-size: cover;
	background-position: center;
}
.img_5 {
	background: url(../img/train_2.png);
	background-size: cover;
	background-position: center;
}

.services {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 90px 0;
	position: relative;
}

.services .main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box_srv svg {
    width: 50px !important;
    margin: 20px 0;
}

.img_srv {
	height: 270px;
	width: 100%;
	background: url(../img/auto_3.jpg);
	background-size: cover;
	background-position: center;
	margin: 40px 0;
}
.boxes_srv {
    display: flex;
    margin-bottom: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.box_srv {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 21px 18px;
    background: #f0f0f0;
    width: 24%;
    height: 530px;
}
.tit_srv {
	color: #000;
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	height: 50px;
}
.text_srv {
	color: #000;
	font-size: 18px;
	margin-bottom: 20px;
}
.box_srv .btn {
    position: absolute;
    bottom: 21px;
    width: 85%;
    color: #fff;
}

.btn_srv {
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	width: 300px;

}

.company {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 74px;
    padding-bottom: 100px;
    background: #efeeee;
    position: relative;
}

.box_desc {
	display: flex;
}
.left_comp {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding-right: 80px;
}
.company .h1 {
	margin-bottom: 30px;
}
.text_comp {
    color: #000;
    line-height: 1.5;
    padding: 10px 0;
}

.right_comp {
    background: url(../img/team.jpg);
    background-size: cover;
    background-position: center;
    width: 50%;
}
.boxes_comp {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: space-between;
}
.box_comp_1 {
	width: 31%;
	margin-bottom: 10px;
	padding: 20px 0;
	display: flex;
	border-bottom: 1px dotted #a0a0a0;
	margin-left: 10px;
	margin-right: 10px;
}
.tit_comp {
    color: #ff9522;
    min-width: 240px;
    font-size: 75px;
    font-weight: 600;
    padding-right: 30px;
}

.box_comp_2 {
	width: 48%;
	padding: 20px 0;
	display: flex;
	border-bottom: 1px dotted #a0a0a0;
	margin-left: 10px;
	margin-right: 10px;
}
.box_comp-img {
	display: flex;
}
.box_comp-img img {
	width: 50%;
}
.text_c {
    font-size: 24px;
    color: #000;
    width: 140px;
}

.advantages {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/adv.webp);
	background-size: cover;
	background-position: center;
	min-height: 650px;
}

.advantages .h1 {
	color: #fff;
	font-weight: 600;
}
.boxes_adv {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.box_adv {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
	width: 25%;
	margin: 20px 0;
}
.numb {
	color: #ff9522;
	font-size: 12px;
	margin-bottom: 15px;
}
.tit_adv {
	display: block;
	font-size: 20px;
	color: #fff;
}

.stockroom {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e5e5e5;
	padding: 90px 0;
}
.stockroom .main {
	display: flex;
}
.left_sr {
	width: 50%;
	display: flex;
	flex-direction: column;
	padding-right: 20px;
}
.stockroom  .h1 {
	margin-bottom: 30px;
	font-weight: 600;
}
.box_sr {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.text_sr {
	font-size: 16px;
	color: #000;
	padding-left: 20px;
	line-height: 1.5;
}
.right_sr {
    background: url(../img/sr.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.numb_sr {
	font-size: 96px;
	font-weight: 600;
}


.price {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../img/pr.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
}

.price .main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.price .form {
	border: none;
}

.tit_prise {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
}

.price textarea {
	height: 120px;
}

.comment {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 54px;
    padding-bottom: 89px;
    background: #ffffff;
    position: relative;
}

.comment .main {
	display: flex;
	flex-direction: column;
}

.comment .h1 {
	font-weight: 600;
	margin: 30px 0;
}

svg#Capa_2 {
    width: 57px;
}

.img_com {
    height: 540px !important;
    color: #000;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.img_com img {
	height: 100%;
	margin: auto 0;
}

.comment .btn {
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	width: 300px;
	margin: 20px auto;
	height: 60px;
}

.office {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f5f5f5;
	padding: 90px 0 30px 0;
	position: relative;
}
.main {
}
.office .h1 {
	font-weight: 600;
	margin: 50px 0;

}
.boxes_of {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.box_of {
	padding: 0 10px;
}
.tit_of {
    color: #000;
    font-size: 26px;
    height: 60px;
    margin-bottom: 15px;
}
.subtit_of {
	color: #000;
	font-size: 16px;
}

iframe {
	width: 100%;
	height: 100%;
}

.slides_of {
	margin: 30px 0 !important;
}

.slide_of {
	height: 212px !important;
	padding: 0 10px;
}

.whatsapp.fix {
    position: fixed;
    bottom: 40px;
    right: 40px;
    box-shadow: 0 0 10px #123;
    border-radius: 50%;
    width: 60px;
}

div#company, div#office, div#comment, div#price, div#services {
    position: absolute;
    top: -69px;
}
