/* Development - LLC "MephiPro" https://mephi.pro/*/
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

::before, ::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Caveat', sans-serif;
	color: #7E7E9F;
	font-size: 44px;
	line-height: 55px;
	font-weight: 400;
}

body.fixed {
	overflow: hidden;
}

.screen {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	image-rendering: optimizeQuality;
    image-rendering: -webkit-optimize-contrast;
}

p {
	margin-bottom: 10px;
}

p:last-child {
	margin-bottom: 0;
}

h1, h2, h3, h4, h5 {
	font-family: 'Caveat', sans-serif;
	color: #9C6801;
	font-weight: 400;
	line-height: 100%;
	padding-bottom: 5px;
	
}

h3 {
	margin-bottom: 40px;
	font-size: 80px;
	position: relative;
	display: inline-block;
}

h3::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 4px;
	background: #9C6801;
	left: 0;
	bottom: 0;
}

h4 {
	color: #7E7E9F;
	font-size: 44px;
	line-height: 55px;
}

input[type="text"] {
	border: 0;
	outline: none;
	width: 100%;
	font-family: 'Caveat', sans-serif;
	color: #7E7E9F;
	font-size: 44px;
	line-height: 55px;
	font-weight: 400;
	border-radius: 10px;
	background: #F2F2F2;
	text-align: center;
}

.button, button {
	display: inline-block;
	transition: all 0.3s ease;
	text-align: center;
	border: 0;
	outline: none;
	cursor: pointer;
	border-radius: 10px;
	background: #F2F2F2;
	color: #7E7E9F;
	font-size: 44px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 5.28px;
	font-family: "Caveat", sans-serif;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.wrap {
	padding: 0 95px;
    margin: 0 auto;
    max-width: 1440px;
}

header {
	padding: 20px 0 15px 0;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 3;
	background: #ffffff;
}

header nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 31px;
	line-height: 39px;
	color: #9C6801;
}

header nav a {
	display: block;
	margin-right: 40px;
}

header nav a:last-child {
	margin-right: 0;
}

.banner {
	margin-bottom: 15px;
	height: calc(100vh - 150px);
	position: relative;
}

.wrap_range {
	display: flex;
	justify-content: flex-end;
	padding-right: 12.5px;
}

.wrap_range .slider_range {
	width: 312px;
	height: 25px;
	position: relative;
}

.wrap_range .slider_range::before {
	position: absolute;
	content: "";
	height: 100%;
	left: -12.5px;
	width: calc(100% + 25px);
	border-radius: 10px;
	background: linear-gradient(90deg, #FFE0A2 0%, #7E7E9F 50.52%, #D9D9D9 100%);
}

.banner::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	box-shadow: 15px 0px 30px rgba(0, 0, 0, 0.25) inset;
	z-index: 1;
}

.banner .progressive {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.banner .progressive:not(:first-child) {
	display: none;
}

.banner .progressive img {
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center 	;
}

.wrap_banner {
	margin-bottom: 25px;
}

.shadow_section {
	background: #FFFFFF;
	filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.25));
	margin-bottom: 65px;
	padding-bottom: 100px;
	padding-top: 74px;
}

.about_section {
	display: flex;
	margin-bottom: 25px;
}

.about_section .image_wrap {
	margin-right: 60px;
	width: calc(53.6% - 30px);
	border-radius: 10px;
	overflow: hidden;
}

.about_section .image_wrap img {
	display: block;
	object-fit: cover;
	object-position: left;
}

.about_section .text_wrap {
	width: calc(46.4% - 30px);
}

.item_catalog {
	display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* grid-auto-rows: minmax(165px, 165px); */
    grid-template-areas:
        "item_1 item_1 item_2 item_2 item_2 item_3 item_4 item_4"
        "item_1 item_1 item_2 item_2 item_2 item_5 item_5 item_5"
        "item_1 item_1 item_2 item_2 item_2 item_6 item_6 item_6"
		"item_7 item_7 item_7 item_7 item_7 . . .";
	margin-bottom: 40px;
}

.item_catalog .progressive {
	border-radius: 10px;
}

.item_catalog .progressive img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.item_catalog .progressive::after {
	display: block;
	content: "";
}

.item_catalog .progressive:nth-child(1) {
	grid-area: item_1;
}

.item_catalog .progressive:nth-child(1)::after {
	padding-top: calc(100% + 229.74px);
}

.item_catalog .progressive:nth-child(2) {
	grid-area: item_2;
}

.item_catalog .progressive:nth-child(2)::after {
	padding-top: calc(100% + 73.49px);
}

.item_catalog .progressive:nth-child(3) {
	grid-area: item_3;
}

.item_catalog .progressive:nth-child(3)::after {
	padding-top: calc(100% + 89.44px);
}

.item_catalog .progressive:nth-child(4) {
	grid-area: item_4;
}

.item_catalog .progressive:nth-child(4)::after {
	padding-top: calc(100% - 40.81px);
}

.item_catalog .progressive:nth-child(5) {
	grid-area: item_5;
}

.item_catalog .progressive:nth-child(5)::after {
	padding-top: calc(100% - 255.2px);
}

.item_catalog .name_item {
	grid-area: item_6;
	font-size: 30px;
	line-height: 38px;
	text-decoration: underline;
	color: #9C6801;
	padding: 30px 0 15px 10px;
}

.item_catalog h4 {
	padding-top: 25px;
	grid-area: item_7;
}

.content {
	margin-bottom: 60px;
}

.contacts_flex {
	display: flex;
}

.contacts_flex .progressive {
	width: 330px;
	height: 500px;
	margin-right: 75px;
	border-radius: 10px;
	overflow: hidden;
}

.contacts_flex .progressive img {
	display: block;
	height: 100%;
}

.content_contacts {
	width: calc(100% - 405px);
}

.content_contacts .item_content {
	margin-bottom: 20px;
}

.content_contacts .nav_link {
	display: flex;
}

.content_contacts .nav_link .link {
	display: block;
	margin-right: 20px;
	width: calc(25% - 15px);
	position: relative;
}

.content_contacts .nav_link .link img {
	position: absolute;
	left: 0;
	top: 0;
}

.content_contacts .nav_link .link::after {
	display: block;
	content: "";
	padding-top: 100%;
}

.content_contacts .nav_link .link:last-child {
	margin-right: 0;
}

.content_contacts .item_content.form {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.content_contacts .form .label {
	white-space: nowrap;
	margin-bottom: 12px;
	flex-grow: 1;
}

.content_contacts .form input[type="text"] {
	margin-bottom: 12px;
	width: 412px;
}

.content_contacts .agree {
	text-align: right;
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.4px;
	position: relative;
	padding-left: 53px;
}

.content_contacts .agree .text {
	flex-grow: 1;
}

.content_contacts .agree::before {
	position: absolute;
	content: "";
	width: 33px;
	height: 33px;
	left: 0;
	top: 0;
	background: url(../icons/check.svg) center / contain no-repeat;
}

.form_nav {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form_nav .col {
	margin-right: 20px;
}

.form_nav .col a {
	display: block;
}

.form_nav button {
	width: 412px;
}

.order_flex {
	display: flex;
	align-items: flex-start;
}

.order_flex .progressive {
	width: 330px;
	height: 166px;
	margin-right: 75px;
	border-radius: 10px;
	overflow: hidden;
}

.content_order {
	width: calc(100% - 405px);
}

footer {
	font-size: 31px;
	line-height: 39px;
	color: #9C6801;
	padding: 18px 0;
	background: #FFFFFF;
	box-shadow: 0px -3px 30px 0px rgba(0, 0, 0, 0.25);
	position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(10vw);
    opacity: 0;
}

footer a {
	display: block;
}

footer .wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer_menu {
	margin-right: 75px;
	display: flex;
	align-items: flex-end;
}

.footer_menu nav {
	column-count: 2;
	column-gap: 75px;
	width: min-content;
	margin-right: 75px;
}

.footer_menu nav a {
	margin-bottom: 15px;
	white-space: nowrap;
}

.footer_menu nav span {
	display: block;
	margin-bottom: 15px;
	white-space: nowrap;
}

.footer_menu .phone {
	width: 236px;
	margin-bottom: 15px;
}

.footer_logo {
	height: 187px;
	width: 322px;
	background: url(../img/footer_logo.png) center / contain no-repeat;
}

.wrap_mobile .progressive {
	display: none;
}

.order_flex .progressive img {
	height: 100%;
	object-fit: cover;
}

.menu_btn {
	display: none;
}

body.fixed {
	overflow: hidden;
}

.animation_section {
	transition: all 1.7s ease;
    transform: translateY(0);
    transform-style: preserve-3d;
    opacity: 1;
}

.animation_section.ready {
	transform: translateY(5vw);
    transform-style: preserve-3d;
    opacity: 0;
}

.page {
	background: #ffffff;
	z-index: 10;
	position: relative;
	padding-bottom: 60px;
}

.hidden_inputs {
    display: none;
}

@media (max-width: 1620px) {
    .wrap {
        padding: 0 70px;
    }
}

@media (max-width: 992px) {
    body {
        font-size: 25px;
        line-height: 100%;
    }
    header {
        padding: 15px 0;
        height: 50px;
    }
    .wrap {
        padding: 0 25px;
    }
    .banner {
        margin-bottom: 10px;
        height: calc(100vh - 115px);
    }
    .wrap_banner {
        margin-bottom: 15px;
    }
    h3 {
        font-size: 50px;
        margin-bottom: 15px;
    }
    h3::after {
        height: 2.5px;
    }
    h4 {
        font-size: 26px;
        line-height: normal;
    }
    .about_section {
        display: block;
        margin-bottom: 20px;
    }
    .about_section .image_wrap {
        width: 100%;
        margin: 0 0 25px 0;
    }
    .about_section .text_wrap {
        width: auto;
    }
    .footnote_about {
        text-align: right;
        font-size: 30px;
        line-height: 40px;
    }
    .footnote_about span {
        width: 85%;
        display: inline-block;
    }
    .shadow_section {
        padding-bottom: 45px;
        margin-bottom: 35px;
    }
    .item_catalog {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .item_catalog .progressive:nth-child(1) {
        width: 45%;
    }
    .item_catalog .progressive:nth-child(2) {
        width: 55%;
    }
    .item_catalog .progressive:nth-child(3) {
        width: 40%;
    }
    .item_catalog .progressive:nth-child(4) {
        width: 60%;
    }
    .item_catalog .progressive:nth-child(5) {
        width: 100%;
    }
    .item_catalog .progressive:nth-child(1)::after {
        padding-top: calc(100% + 61px);
    }
    .item_catalog .progressive:nth-child(2)::after {
        padding-top: calc(100% + 11px);
    }
    .item_catalog .progressive:nth-child(3)::after {
        padding-top: calc(100% + 38px);
    }
    .item_catalog .progressive:nth-child(4)::after {
        padding-top: calc(100% + 42px);
    }
    .item_catalog .progressive:nth-child(5)::after {
        padding-top: calc(100% - 170px);
    }
    .item_catalog .name_item {
        padding: 12px 0;
        font-size: 20px;
        line-height: normal;
        width: 60%;
    }
    .item_catalog h4 {
        padding: 0;
    }
    .content {
        margin-bottom: 35px;
    }
    .content_contacts {
        width: 100%;
    }
    .contacts_flex .progressive {
        display: none;
    }
    .content_contacts .nav_link {
        flex-wrap: wrap;
        margin: 0 -30px -10px 0;
    }
    .content_contacts .nav_link .link {
        width: calc(50% - 30px);
        margin: 0 30px 10px 0;
    }
    .content_contacts .nav_link .link:last-child {
        margin-right: 30px;
    }
    .contacts_flex {
        display: block;
    }
    .wrap_mobile {
        display: flex;
        margin-bottom: 15px;
    }
    .contacts_flex .wrap_mobile .progressive {
        display: block;
        width: calc(100% - 200px);
        margin-right: 20px;
        height: auto;
    }
    .content_wrap {
        width: 180px;
        overflow: hidden;
    }
    .contacts_flex .wrap_mobile .progressive img {
        object-fit: cover;
    }
    .content_contacts .form input[type="text"] {
        width: 100%;
        margin-bottom: 7px;
        font-size: 30px;
        line-height: 38px;
    }
    .content_contacts .agree {
        font-size: 18px;
        line-height: normal;
        padding-left: 63px;
        margin-bottom: 12px;
    }
    .form_nav {
        flex-direction: column-reverse;
    }
    .form_nav button {
        width: 100%;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        height: 40px;
        justify-content: center;
    }
    .button, button {
        font-size: 30px;
    }
    .form_nav .col {
        font-size: 20px;
        margin-right: 0;
    }
    .form_nav .col a {
        display: inline;
        padding-left: 5px;
    }
    .order_flex {
        display: block;
    }
    .order_flex .progressive {
        margin: 0 0 12px 0;
        width: 100%;
        height: 75px;
    }
    .content_order {
        width: auto;
        font-size: 20px;
    }
    footer {
        padding: 20px 0 40px 0;
        font-size: 20px;
        line-height: 25px;
    }
    .footer_menu nav {
        column-count: unset;
        column-gap: unset;
        width: auto;
        margin-right: 0;
    }
    .footer_menu {
        display: block;
        margin-right: 0;
    }
    .footer_menu nav a {
        margin-bottom: 10px;
    }
    .footer_menu .phone {
        width: auto;
        font-size: 31px;
        line-height: 40px;
        margin-bottom: 0;
    }
    footer .wrap {
        display: block;
        position: relative;
    }
    .footer_menu nav span {
        margin-bottom: 10px;
    }
    .footer_logo {
        position: absolute;
        height: 78px;
        width: 150px;
        top: 0;
        right: 25px;
    }
    .menu_btn {
        display: block;
        cursor: pointer;
        width: 45px;
        height: 20px;
        position: relative;
    }
    .menu_btn span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 3px;
        background: #9C6801;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.5s ease;
    }
    .menu_btn::before, .menu_btn::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 3px;
        border-radius: 3px;
        background: #9C6801;
        display: block;
        left: 0;
        transition: all 0.5s ease;
    }
    .menu_btn::before {
        top: 0;
    }
    .menu_btn::after {
        bottom: 0;
    }
    header nav {
        display: none;
        position: fixed;
        left: 0;
        top: 50px;
        z-index: 3;
        padding: 20px 25px;
        background: #ffffff;
        width: 100%;
        height: calc(100% - 50px);
    }
    .menu_btn.active span {
        opacity: 0;
        visibility: hidden;
    }
    .menu_btn.active::before, .menu_btn.active::after {
        left: 50%;
        top: 50%;
    }
    .menu_btn.active::before {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .menu_btn.active::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .page {
        padding-bottom: 35px;
    }
}