/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

:root {
	--font-family: "PF Centro Serif Pro", sans-serif;
	--second-family: "Montserrat", sans-serif;
	--third-family: "Bebas Neue", sans-serif;
	--font3: "Arkturia Deco", sans-serif;
	--font4: "TT Livret Text Trial", sans-serif;
	--font5: "Carolina", sans-serif;
	--font6: "Lucida Sans", sans-serif;
}

body {
	font-family: var(--font-family);
	background: #fcfbfa;
	line-height: normal;
}

.wrapper {
	overflow: hidden;
}

.container {
	max-width: 1730px;
	margin: 0 auto;
	padding: 0 40px;
}

.scroll {
	translate: 0 60px;
	opacity: 0;
	transition: translate .6s ease-in-out, opacity .6s ease-in-out;
}

.scroll--active {
	translate: 0 0px;
	opacity: 1;
}

/* -------------------------header------------------------- */

.header {
	padding: 60px 0 56px 0;
}

.header__container {}

.header__inner {}

.header__top {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;

	margin: 0px 0px 77px 0px;
}

.header__city {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 13px 0px 0px 0px;
	transition: all .2s ease;
}

.header__city-name {
	font-family: var(--font6);
	font-weight: 400;
	font-size: 16px;
	color: #282522;
}

.header__city:active {
	opacity: .6;
}

@media(hover:hover) {
	.header__city:hover {
		opacity: .6;
	}
}

.header__logo {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 48px;
	text-align: center;
	line-height: 48px;
	color: #282522;
	white-space: nowrap;
	margin: 0px 0px 0px 202px;
}

.header__top-right {
	max-width: 313px;
	width: 100%;
	margin: 11px 0px 0px 0px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.header__links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.header__link {
	transition: all .2s ease;
}

.header__link:active {
	opacity: .6;
}

@media(hover:hover) {
	.header__link:hover {
		opacity: .6;
	}
}

.header__basket {
	display: flex;
	align-items: center;
	gap: 8px;

	font-family: var(--font6);
	font-weight: 400;
	font-size: 20px;
	color: #282522;

	transition: all .2s ease;
}

.header__basket:active {
	opacity: .6;
}

@media(hover:hover) {
	.header__basket:hover {
		opacity: .6;
	}
}

.header__bottom {
	max-width: 1071px;
	width: 100%;
	margin: 0 auto;
}

.header__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.header__item {}

.header__item-link {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 24px;
	color: #282522;

	transition: all .2s ease;
}

.header__item-link:active {
	opacity: .6;
}

@media(hover:hover) {
	.header__item-link:hover {
		opacity: .6;
	}
}

.burger-btn {
	width: 24px;
	height: 18px;

	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.burger-btn-line {
	width: 100%;
	height: 2px;
	background-color: #282522;
	transition: all .3s ease;
}

.burger-btn--active .b1 {
	transform: translate(0px, 8px) rotate(45deg);
}

.burger-btn--active .b2 {
	opacity: 0;
}

.burger-btn--active .b3 {
	transform: translate(0px, -8px) rotate(-45deg);
}

.burger-menu {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 128px);
	background-color: #fff;
	z-index: 20;

	transform: translateX(-100%);
	transition: all .3s ease;
}

.burger-menu--visible {
	transform: translateX(0%);
}

.burger-menu__window {
	padding: 20px;
}

/* -------------------------page__preview------------------------- */

.page__preview {
	position: relative;
	z-index: 1;
	margin: 0px 0px 70px 0px;
}

.preview__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
}

.preview__container {}

.preview__inner {
	padding: 68px 0 74px 0;
}

.preview__row {
	font-family: var(--font4);
	font-weight: 400;
	font-size: 16px;
	color: #fff;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.preview__row-left {}

.preview__row-right {
	text-align: right;
}

.preview__main {
	padding: 241px 0 287px 0;
}

.preview__name {
	font-weight: 400;
	font-size: 20px;
	text-align: center;
	color: #fff;

	margin: 0px 0px 29px 0px;
}

.preview__title {
	font-family: var(--font3);
	font-weight: 300;
	font-size: 200px;
	letter-spacing: 0.04em;
	text-align: center;
	color: #fff;

	padding: 6px 0px 0px 0px;
	margin: 0px 0px 8px 0px;
	position: relative;
}

.preview__title::after {
	content: '';

	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 1px;

	background-color: #fff;
}

.preview__subtitle {
	max-width: 572px;
	margin: 0 auto;

	font-weight: 400;
	font-size: 20px;
	text-align: center;
	color: #fff;
}

/* -------------------------production------------------------- */

.page__production {
	overflow: hidden;
	margin: 0px 0px 143px 0px;
}

.production__container {}

.production__inner {
	display: flex;
	justify-content: center;
	gap: 80px;
}

.production__box {
	max-width: 264px;
	min-height: 427px;
	width: 100%;
	margin: 56px 0px 0px 65px;
}

.page__production-2 .production__box {
	margin: 0px 75px 0px 0px;
}

.page__production-2 .production__inner {
	gap: 36px;
}

.page__production-2 .production__slider {
	transform: translateX(-30px);
	padding: 0px 0px 0px 40px;
}

.page__production-2 .production__slide-name {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 32px;
	color: #2f2f2f;
	letter-spacing: unset;
}

.page__production-2 .production__slide-img {
	margin: 0px 0px 25px 0px;
}

.production__title {
	font-family: var(--font3);
	font-weight: 300;
	font-size: 80px;
	letter-spacing: 0.04em;
	text-align: center;
	line-height: 95%;
	color: #4b4b4b;
	transform: rotate(-90deg);
	margin: 38px 0px 0px 0px;
}

.production__title-sp-1 {
	display: block;
	transform: translateX(-194px);
}

.production__title-sp-2 {}

.production__slider {
	width: 100%;
	max-width: 1530px;
	overflow: hidden;
}

.production__slider-line {}

.production__slide {
	max-width: 360px;
}

.production__slide-img {
	margin: 0px 0px 29px 0px;
	max-height: 480px;
	overflow: hidden;
	user-select: none;
}

.production__slide-image {
	max-width: 100%;

	transition: all .2s ease;
}

.production__slide:active .production__slide-image {
	transform: scale(1.05);
}

@media(hover:hover) {
	.production__slide:hover .production__slide-image {
		transform: scale(1.05);
	}

	.production__slide:hover .production__slide-name {
		color: #000;
	}
}

.production__slide-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.production__slide-name {
	font-family: var(--font3);
	font-weight: 300;
	font-size: 32px;
	letter-spacing: 0.04em;
	color: #2f2f2f;

	transition: all .2s ease;
}

.production__slide-material {
	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

.production__slide-price {
	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

/* -------------------------about-us------------------------- */

.page__about-us {
	overflow: hidden;
	margin: 0px 0px 192px 0px;
}

.about-us__container {}

.about-us__inner {}

.about-us__head {
	max-width: 682px;
	margin: 0 auto 95px auto;
}

.about-us__title {
	font-family: var(--font3);
	font-weight: 300;
	font-size: 64px;
	letter-spacing: 0.04em;
	text-align: center;
	color: #2f2f2f;

	margin: 0px 0px 29px 0px;
}

.about-us__subtitle {
	font-weight: 400;
	font-size: 20px;
	text-align: center;
	color: #2f2f2f;
}

.about-us__art {
	display: flex;
	justify-content: space-between;
	gap: 31px;
	position: relative;

	margin: 0px 0px 110px 0px;
}

.about-us__art-pos {
	position: absolute;
	top: 0;
	left: -135px;
	pointer-events: none;
}

.about-us__art-left {
	max-width: 810px;
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.about-us__art-left-top {
	display: flex;
	flex-direction: column;
	gap: 120px;

	max-width: 670px;
	width: 100%;
}

.about-us__art-left-top-row {
	max-width: 554px;

	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.about-us__art-title {
	font-family: var(--font3);
	font-weight: 300;
	font-size: 42px;
	letter-spacing: 0.04em;
	text-align: center;
	color: #2f2f2f;
}

.about-us__art-text {
	font-weight: 400;
	font-size: 20px;
	text-align: center;
	color: #2f2f2f;
}

.about-us__art-left-top-row-2 {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
}

.about-us__art-text-2 {
	font-weight: 500;
	font-size: 20px;
	line-height: 150%;
	color: #2f2f2f;
	max-width: 302px;
}

.about-us__art-text-2::first-letter {
	display: block;
	padding: 0px 0px 0px 110px;
}

.about-us__art-text-3 {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #2f2f2f;
	max-width: 248px;
}

.about-us__art-text-3::first-letter {
	display: block;
	padding: 0px 0px 0px 110px;
}

.about-us__art-left-bottom {}

.about-us__art-left-bottom-text {
	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

.about-us__art-left-bottom-text-sp {
	font-style: italic;
}

.about-us__art-left-bottom-text::first-letter {
	display: block;
	padding: 0px 0px 0px 120px;
}

.about-us__art-right {
	max-width: 810px;
	width: 100%;
}

.about-us__art-img {
	max-width: 100%;
	opacity: 1;
}

.about-us__box {
	max-width: 1510px;
	margin: 0px 0px 88px auto;
}

.about-us__box-main {
	display: flex;
	gap: 30px;
}

.about-us__box-left {
	display: flex;
	align-items: end;
	max-width: 251px;
	width: 100%;
}

.about-us__box-left-text {
	font-family: var(--font5);
	font-weight: 400;
	font-size: 30px;
	line-height: 93%;
	letter-spacing: 0.06em;
	text-align: right;
	color: #000;
}

.about-us__box-center {
	position: relative;
	max-width: 390px;
	width: 100%;
}

.about-us__box-center-pos {
	position: absolute;
	bottom: 0;
	left: -220px;
	z-index: -1;
	pointer-events: none;
}

.about-us__box-img {
	max-width: 100%;
}

.about-us__box-right {
	max-width: 810px;
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.about-us__box-right-top-text {
	font-weight: 500;
	font-size: 20px;
	line-height: 150%;
	color: #2f2f2f;

	max-width: 302px;
}

.about-us__box-right-top-text::first-letter {
	display: block;
	padding: 0px 0px 0px 110px;
}

.about-us__box-right-bottom-text {
	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

.about-us__box-right-bottom-text-sp {
	display: block;
}

.about-us__box-right-bottom-text-sp::first-letter {
	display: block;
	padding: 0px 0px 0px 110px;
}

.about-us__box-right-bottom-italic {
	font-style: italic;
}

.about-us__box-right-sp {}

.about-us__rows {
	max-width: 810px;
	margin: 0 auto 170px auto;
	border-top: 1px solid #000;
}

.about-us__row {
	border-bottom: 1px solid #000;
	min-height: 50px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.about-us__row-1 {}

.about-us__row-text {
	font-weight: 400;
	font-size: 18px;
	color: #000;
}

.about-us__row-box {
	display: flex;
	align-items: center;
	gap: 30px;
}

.about-us__row-2 {
	justify-content: end;
	gap: 200px;
}

.about-us__row-3 {
	justify-content: end;
	gap: 270px;
}

.about-us__row-4 {
	justify-content: center;
}

.about-us__row-4 .about-us__row-box {
	padding: 0px 96px 0px 0px;
}

.about-us__row-5 {}

.about-us__row-6 {}

.about-us__row-text-sp {
	font-family: var(--font5);
	font-weight: 400;
	font-size: 32px;
	letter-spacing: 0.06em;
	color: #000;
}

.about-us__desc {}

.about-us__desc-subtitle {
	margin: 0px 0px 120px 0px;
	max-width: 395px;

	font-family: var(--font-family);
	font-weight: 500;
	font-size: 26px;
	color: #2f2f2f;
}

.about-us__desc-subtitle::first-letter {
	padding: 0px 0px 0px 120px;
}

.about-us__desc-bottom {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
}

.about-us__desc-bottom-text {
	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

.about-us__desc-columns {
	display: flex;
	align-items: center;
	gap: 30px;

	max-width: 1230px;
	width: 100%;
}

.about-us__desc-column {
	width: 100%;

	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

.about-us__desc-column-sp {
	font-style: italic;
	padding: 0px 0px 0px 120px;
}

/* -------------------------about-author------------------------- */

.page__about-author {
	margin: 0px 0px 174px 0px;
}

.about-author__container {}

.about-author__inner {}

.about-author__main {
	display: flex;
	gap: 26px;
	margin: 0px 0px 207px 0px;
	position: relative;
}

.about-author__main-pos {
	position: absolute;
	bottom: 331px;
	left: -135px;
	z-index: 2;
}

.about-author__left {
	max-width: 390px;
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.about-author__left-img {}

.about-author__left-image {
	max-width: 100%;
}

.about-author__left-desc {
	display: flex;
	flex-direction: column;
	gap: 38px;
}

.about-author__left-text {
	font-weight: 500;
	font-size: 26px;
	color: #2f2f2f;
}

.about-author__left-text::first-letter {
	padding: 0px 0px 0px 120px;
}

.about-author__left-text-sp {
	font-style: italic;
}

.about-author__left-text-2 {
	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
}

.about-author__left-text-2::first-letter {
	padding: 0px 0px 0px 120px;
}

.about-author__right {
	max-width: 1234px;
	width: 100%;
}

.about-author__right-img {
	max-width: 100%;
}

.about-author__bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
}

.about-author__bottom-left {
	max-width: 115px;
	width: 100%;
}

.about-author__bottom-left-text {
	font-family: var(--font5);
	font-weight: 400;
	font-size: 28px;
	line-height: 93%;
	letter-spacing: 0.06em;
	color: #000;
}

.about-author__bottom-right {
	max-width: 1234px;
	width: 100%;

	display: flex;
	gap: 30px;
}

.about-author__bottom-right .about-us__box-right-bottom-text {
	max-width: 814px;

	font-weight: 400;
	font-size: 18px;
	color: #2f2f2f;
	line-height: 140%;
}

.about-author__bottom-column {
	max-width: 380px;
	width: 100%;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.about-author__bottom-column-text {
	font-weight: 500;
	font-size: 18px;
	text-align: right;
	color: #2f2f2f;
}

/* -------------------------footer------------------------- */

.footer {
	background: #2f2f2f;
	padding: 100px 0 120px 0;
}

.footer__container {}

.footer__inner {
	max-width: 1431px;
	width: 100%;

	display: flex;
	align-items: end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.footer__column {}

.footer__column-1 {
	max-width: 223px;
	width: 100%;
}

.footer__logo {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 36px;
	color: #fff;
	line-height: 36px;

	display: block;
	margin: 0px 0px 24px 0px;
}

.footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 8px;

	margin: 0px 0px 24px 0px;
}

.footer__contacts-item {}

.footer__contacts-item-link {
	display: flex;
	align-items: center;
	gap: 8px;

	transition: all .2s ease;
}

.footer__contacts-item-link:active {
	opacity: .7;
}

@media(hover:hover) {
	.footer__contacts-item-link:hover {
		opacity: .7;
	}
}

.footer__contacts-item-icon {
	width: 20px;
	display: flex;
	justify-content: end;
}

.footer__contacts-item-link-text {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	color: #fff;
}

.footer__social {
	margin: 0px 0px 28px 0px;
}

.footer__social-name {
	margin: 0px 0px 14px 0px;

	font-family: var(--third-family);
	font-weight: 400;
	font-size: 28px;
	color: #fff;
}

.footer__social-list {
	display: flex;
	align-items: center;
	gap: 6px;
}

.footer__social-item {
	display: block;
}

.footer__social-item-link {
	transition: all .2s ease;
}

.footer__social-item-link:active {
	opacity: .7;
}

@media(hover:hover) {
	.footer__social-item-link:hover {
		opacity: .7;
	}
}

.footer__column-1-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__column-1-link {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 12px;
	color: #fff;

	transition: all .2s ease;
}

.footer__column-1-link:active {
	color: #c2c2c2;
}

@media(hover:hover) {
	.footer__column-1-link:hover {
		color: #c2c2c2;
	}
}

.footer__column-2 {
	display: flex;
	flex-direction: column;
	gap: 94px;
}

.footer__column-box {}

.footer__column-box-name {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 28px;
	color: #fff;

	margin: 0px 0px 12px 0px;
}

.footer__column-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer__column-item {}

.footer__column-item-link {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 16px;
	color: #fff;

	transition: all .2s ease;
}

.footer__column-item-link:active {
	color: #c2c2c2;
}

@media(hover:hover) {
	.footer__column-item-link:hover {
		color: #c2c2c2;
	}
}

.footer__column-3 {
	max-width: 250px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 28px;
}

.footer__column-3-box {
	max-width: 221px;
}

.footer__column-3-box-link {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 16px;
	color: #fff;

	display: inline-block;
	border: 1px solid #fff;
	padding: 13px 35px;
	margin: 0px 0px 10px 0px;

	transition: all .2s ease;
}

.footer__column-3-box-link:active {
	background-color: #fff;
	color: #222;
}

@media(hover:hover) {
	.footer__column-3-box-link:hover {
		background-color: #fff;
		color: #222;
	}
}

.footer__column-3-box-desc {
	font-family: var(--second-family);
	font-weight: 300;
	font-size: 8px;
	color: rgba(255, 255, 255, 0.8);
}

/* ------------------------- media------------------------- */

@media(max-width:1640px) {

	.about-us__art-pos,
	.about-us__box-center-pos {
		opacity: .3;
		max-width: 100%;
	}


	.about-author__main-pos {
		max-width: 600px;
	}
}

@media(max-width:1120px) {
	.header__top-right {
		max-width: 235px;
	}

	.header__logo {
		margin: 0px 0px 0px 126px;
	}

	.header__logo {
		font-size: 42px;
		line-height: 42px;
	}

	.header {
		padding: 30px 0;
	}

	.header__top {
		margin: 0px 0px 40px 0px;
	}

	.header__item-link {
		font-size: 20px;
	}







	.preview__main {
		padding: 150px 0;
	}

	.preview__title {
		font-size: 120px;
	}

	.preview__name {
		margin: 0px 0px 20px 0px;
		font-size: 16px;
	}

	.preview__subtitle {
		font-size: 16px;
	}

	.preview__row {
		font-size: 14px;
	}

	.page__preview {
		margin: 0px 0px 50px 0px;
	}







	.production__inner {
		flex-direction: column;
		gap: 20px;
	}

	.production__title {
		transform: unset;
		margin: 0;
		text-align: start;
	}

	.production__box {
		max-width: unset;
		min-height: unset;
		margin: 0;
	}

	.production__title-sp-1 {
		transform: unset;
	}

	.production__container {
		padding: 0 20px;
	}

	.production__title {
		font-size: 52px;
	}

	.production__title-sp-2 {
		display: block;
		margin: 0px 0px 0px 70px;
	}




	.production__slide {
		max-width: 260px;
	}

	.production__slide-name {
		font-size: 24px;
	}

	.production__slide-material,
	.production__slide-price {
		font-size: 16px;
	}

	.page__production {
		margin: 0px 0px 70px 0px;
	}

	.production__slider {
		overflow: visible;
	}





	.about-author__bottom {
		flex-direction: column;
		align-items: start;
		gap: 20px;
	}







	.page__production-2 .production__inner {
		flex-direction: column-reverse;
	}
}

@media(max-width:920px) {
	.container {
		padding: 0 20px;
	}

	.header .header__city {
		display: none;
	}

	.header__logo {
		margin: 0;
		font-size: 34px;
		line-height: 34px;
		text-align: start;
	}

	.header__top-right {
		margin: 0;
		width: unset;
		gap: 20px;
	}

	.header__links {
		gap: 20px;
	}

	.header__top {
		align-items: center;
		margin: 0;
	}

	.header__bottom {
		display: none;
	}

	.header .header__basket {
		display: none;
	}

	.burger-btn {
		display: flex;
	}

	.header__list {
		flex-direction: column;
		align-items: start;
	}

	.burger-menu__box {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.header__basket {
		font-size: 20px;
		gap: 10px;
	}

	.header__city {
		gap: 10px;
		margin: 0;
	}

	.header__city-name {
		font-size: 20px;
	}

	.burger-menu__window {
		display: flex;
		flex-direction: column;
		gap: 40px;
		height: 100%;
		overflow: auto;
	}

	.header__basket svg {
		width: 17px;
		height: auto;
	}









	.about-us__title {
		font-size: 42px;
		margin: 0px 0px 20px 0px;
	}

	.about-us__subtitle {
		font-size: 16px;
	}

	.about-us__head {
		margin: 0px auto 40px auto;
	}

	.about-us__art-left-top-row-2 {
		flex-direction: column;
	}

	.about-us__art-text-2,
	.about-us__art-text-3 {
		max-width: unset;
	}

	.about-us__art-left-top {
		gap: 30px;
	}

	.about-us__art-text-2,
	.about-us__art-text {
		font-size: 18px;
	}

	.about-us__art-text-3 {
		font-size: 16px;
	}

	.about-us__art-left-bottom-text {
		font-size: 16px;
	}





	.about-us__box-main {
		flex-direction: column;
	}

	.about-us__box-img {
		max-height: 400px;
		width: 100%;
		object-fit: cover;
	}

	.about-us__box-center-pos {
		left: auto;
		right: -400px;
	}

	.about-us__box-right-top-text {
		max-width: unset;
		font-size: 18px;
	}

	.about-us__box-right {
		gap: 20px;
	}

	.about-us__box-right-bottom-text {
		font-size: 16px;
	}

	.about-us__art {
		margin: 0px 0px 60px 0px;
	}

	.about-us__row-text {
		font-size: 16px;
	}

	.about-us__row-text-sp {
		font-size: 32px;
	}

	.about-us__row {
		justify-content: space-between;
		gap: 20px;
		flex-wrap: wrap;
		padding: 10px 0;
	}

	.about-us__box {
		margin: 0px 0px 40px 0px;
	}






	.about-us__desc-bottom {
		flex-direction: column;
		gap: 30px;
	}

	.about-us__rows {
		margin: 0px 0px 60px 0px;
	}

	.about-us__desc-subtitle {
		margin: 0px 0px 50px 0px;
	}

	.page__about-us {
		margin: 0px 0px 80px 0px;
	}

	.about-author__main {
		margin: 0px 0px 50px 0px;
	}




	.about-author__bottom-right {
		flex-direction: column;
	}

	.about-author__bottom-column {
		max-width: unset;
		flex-direction: row;
		justify-content: space-between;
	}

	.about-author__bottom-column-text {
		width: 100%;
	}

	.page__about-author {
		margin: 0px 0px 80px 0px;
	}

}

@media(max-width:768px) {
	.preview__main {
		padding: 120px 0;
	}

	.preview__title {
		font-size: 90px;
		letter-spacing: 0.02em;
	}

	.preview__inner {
		padding: 40px 0;
	}





	.about-us__desc-columns {
		flex-direction: column;
		gap: 20px;
	}

	.about-us__desc-subtitle {
		font-size: 22px;
	}

	.about-us__desc-column {
		font-size: 16px;
	}





	.about-author__main-pos {
		display: none;
	}

	.about-author__main {
		flex-direction: column-reverse;
	}

	.about-author__left {
		flex-direction: column-reverse;
		max-width: unset;
	}

	.about-author__left-text {
		font-size: 20px;
	}

	.about-author__left-desc {
		gap: 20px;
	}

	.about-author__left-text-2 {
		font-size: 16px;
	}




	.about-author__bottom-right .about-us__box-right-bottom-text {
		font-size: 16px;
	}

	.about-author__bottom-column-text {
		font-size: 16px;
	}





	.footer {
		padding: 40px 0;
	}

}

@media(max-width:520px) {
	.header {
		padding: 20px 0;
	}

	.header__logo {
		font-size: 26px;
		line-height: 26px;
	}

	.header__top {
		gap: 20px;
	}

	.header__links,
	.header__top-right {
		gap: 14px;
	}






	.preview__title {
		line-height: 90%;
	}

	.preview__main {
		padding: 80px 0;
	}

	.preview__row {
		font-size: 12px;
	}






	.production__slide {
		max-width: 210px;
	}

	.production__slide-name {
		font-size: 22px;
	}





	.about-us__art {
		flex-direction: column;
		gap: 20px;
	}

	.about-us__title {
		font-size: 34px;
	}

	.about-us__art-left-top-row {
		flex-wrap: wrap;
		gap: 10px 20px;
	}

	.about-us__art-pos,
	.about-us__box-center-pos {
		z-index: -1;
		min-width: 400px;
	}

	.about-us__art-left {
		gap: 20px;
	}





	.about-us__row-text {
		font-size: 14px;
	}

	.about-us__row-text-sp {
		font-size: 32px;
	}





	.about-author__bottom-column {
		flex-direction: column;
	}





	.footer__inner {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		gap: 20px;
	}

	.footer__social-list {
		justify-content: center;
	}

	.footer__column-2 {
		gap: 20px;
	}

	.footer__column-3-box {
		max-width: unset;
	}

	.footer__contacts-item-link {
		justify-content: center;
	}



	.burger-menu {
		height: calc(100% - 92px);
	}
}