*, *::before, *::after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	cursor: pointer;
}

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);
	width: 100%;
	font-weight: 800;
	text-align: center;
	margin-top: 30px;
}

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;
}

.text__logo {
	font-size: 30px;
	font-weight: 800;
	color: #f2b90c;
}


.menu__icon {
	display: none;
}
.menu__list > li {
	position: relative;
	margin: 0px 0px 0px 30px;
}

.menu__link {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.menu__link:hover {
	text-decoration: underline;
}

.btn {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    background: #f2b90c;
    border-radius: 10px;
    transition: 0.3s;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn:hover {
	background: #000;
	color: #fff;
}

.btn.mail {
    background: #418ee2;
    color: #fff;
}


.btn.mail:hover {
    background: none;
    border: 2px solid #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: 1023px) {
	.menu__list {
		display: flex;
		align-items: center;
	}
	.menu__list > li {
		padding: 10px 0;
	}
}

@media (max-width: 1023px) {
	.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;
		justify-content: space-evenly;
	}

	.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: auto;
    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;
    height: 100%;
    position: relative;
}
.text_bnr {
    display: flex;
    flex-direction: column;
    width: 46%;
    background: #000c225c;
    padding: 120px 40px 80px 40px;
    margin-right: 30px;
}

.logo_bnr {
    display: flex;
    align-items: center;
}


.logo_bnr img {
	width: 85px;
	margin-right: 20px;
}

.text-logo_bnr {
	text-transform: uppercase;
	color: #f2b90c;
	font-size: clamp(40px, 3vw, 85px);
	font-weight: 800;
}

.title_bnr {
    font-size: clamp(13px, 2.7vw, 18px);
    text-transform: uppercase;
    padding: 0px 0;
    line-height: 1.3;
    margin-bottom: 40px;
}

.box_btn {
    height: 70px;
    display: flex;
    align-items: center;
}

.box_btn img {
	width: 162px;
}

.box_bnr {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.box_bnr img {
	width: 155px;
}
.box_text {
	display: flex;
	flex-direction: column;
}
.tit_bnr {
    font-size: 24px;
    font-weight: 800;
    background: #f2b90c;
    padding: 10px;
    border-radius: 7px;
    color: #000;
    margin-bottom: 20px;
}
.subtit_bnr {
	font-size: 18px;
}

.contact {
    position: absolute;
    right: 60px;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    height: 120px;
}

.box_cont {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

.cont_link {
	font-size: 18px;
	margin-left: 30px;
	color: #fff;

}

.cont_link:hover {
	text-decoration: underline;
}


.form {
    width: 50%;
    padding: 120px 40px 60px 110px;
    display: flex;
    flex-direction: column;
}

.form .btn {
    font-size: 18px;
    font-weight: 800;
    width: 50%;
    margin: 0 auto;
    min-width: 200px;
}

.boxes_inp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box_btn {
    position: relative;
    width: fit-content;
}

.box_btn img {
    position: absolute;
    right: -60px;
    transform: rotate(30deg);
    width: 110px;
}

.box_btn .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 65px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 800;
    margin-left: 40px;
}

.tit_form {
	color: #fff;
	font-size: 30px;
	margin-bottom: 15px;
	font-weight: 800;
	text-align: center;
}

.delivery {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 90px 0;
	position: relative;
}

.delivery .main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org {
	color: #ff9522;
	font-weight: 600;
}

.boxes_dlv {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
    width: 100%;
}
.box_dlv {
	display: flex !important;
	flex-direction: column;
	background: #f0f0f0;
	padding: 21px 18px;
	border-radius: 5px;
	width: 24%;
}
.tit_dlv {
    width: 100%;
    background: #fff;
    font-size: 30px;
    font-weight: 800;
    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;
	 text-align: start;
}
.box_dlv .btn {
	margin: 30px auto 0;
	width: 215px;
	color: #fff;
}

.btn.dlv {
    height: 66px;
    margin-top: 60px;
    font-weight: 800;
    padding: 0 40px;
    text-align: center;
}


.advantages {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/adv.webp);
    background-size: cover;
    background-position: center;
    min-height: 650px;
    padding: 100px 0;
    position: relative;
}

.advantages .main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantages .h1 {
	color: #fff;
	font-weight: 800;
}
.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;
}

.price {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f1f1f1;
    padding: 80px 0;
    position: relative;
}

.price img {
	width: 	100%;
}

.price .main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.price .form {
	border: none;
}

.tit_prise {
    font-size: clamp(20px, 3vw, 48px);
    font-weight: 800;
    text-align: center;
    color: #000;
    margin: 50px 0;
}

.price .form {
	padding: 0;
	width: 30%;
}

.price textarea {
	height: 120px;
	border: 1px solid #cccccc;
}

.price input {
	border: 1px solid #cccccc;
}

.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 73px;
    padding-bottom: 70px;
    background: #000c22;
}

.footer p, .footer a {
	color: #fff;
}
.footer .main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.icon_footer {
	color: #f2b90c !important;
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 50px;
}
.tit_f {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 30px;

}
.text_f {
	text-align: center;
	
}
.box_cont-f {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.box_cont-f a {
	margin: 0 10px;

}
.tel_f {
	border-radius: 5px;
	border: 1px solid #fff;
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 26px;
	box-sizing: border-box;
}

.inst_f {
	margin-top: 30px;
}


.whatsapp.fix {
    position: fixed;
    bottom: 40px;
    right: 40px;
    box-shadow: 0 0 10px #123;
    border-radius: 50%;
    background: #f2b90c;
    width: 67px;
    height: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp.fix img {width: auto;}

div#advantages, div#delivery, div#price {
    position: absolute;
    top: -69px;
}


