/* Fonts */

@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-LightItalic.woff2') format('woff2');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-MediumItalic.woff2') format('woff2');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Inter Tight';
	src: url('../fonts/InterTight-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Playfair Display';
	src: url('../fonts/PlayfairDisplay-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Noto Serif Display';
	src: url('../fonts/NotoSerifDisplay-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}




/* Reset */

* {padding: 0;	margin: 0; -webkit-tap-highlight-color: transparent;}
*, *:before, *:after {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:focus, :active, a:focus, a:active {outline: none;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
html, body {
	width: 100%;
	min-height: 100%;
	font-size: 100%;
	line-height: normal;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
}

input, button, textarea, select {
	font-family: inherit;
	background: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
input::placeholder, textarea::placeholder {opacity: 1;}
input::-ms-clear {display: none;}
button::-moz-focus-inner {padding: 0; border: 0;}
button, .button, input[type="button"], input[type=submit] {cursor: pointer;}
button[disabled], input[disabled] {cursor: default;}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {display: none;}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type="number"] {-moz-appearance: textfield;}

a, a:hover, a:visited {text-decoration: none;}
img {vertical-align: top; max-width: 100%;}

h1,h2,h3,h4,h5,h6 {font-size: inherit; font-weight: normal;}

ol, ul {list-style: none;}

table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: inherit;}





/* Variables */

:root {
	--text-family: 'Inter Tight', sans-serif;
	--decor-family: 'Playfair Display', sans-serif;
	--other-family: 'Noto Serif Display', sans-serif;

	--black: #303030;
	--black-30: rgba(48,48,48, 0.3);
	--mediumblack: #0c0c0c;
	--lightblack: #1a1a1a;
	--white: #f4f4f4;
	--white-80: rgba(247,247,247, 0.8);
	--white-70: rgba(247,247,247, 0.7);
	--white-50: rgba(247,247,247, 0.5);
	--white-30: rgba(247,247,247, 0.3);
	--white-20: rgba(247,247,247, 0.2);
	--red: #aa1c23;
	--red-50: rgba(170,28,35, 0.5);
	--darkred: #741317;
	--beige: #efe1c0;
	--brown: #5b4e35;
	--brown-50: rgba(91,78,53, 0.5);
	--brown-10: rgba(91,78,53, 0.1);
	--gradient: linear-gradient(135deg, #f4f4f4 0%, #b5b5b5 54.33%, #f4f4f4 96.63%);

	--section-padding: 40rem;
	--section-margin: 120rem;
	--container-width: 1530rem;
	
	--background: var(--red); 
	
	--default-text-color: var(--white);
	--default-text-size: 30rem;
	--default-font-weight: 300;
	--default-line-height: 1.3;

	--title-size: 100rem;
	--title-margin: 30rem;
	
	--radius: 30rem;
	--gap: 20rem;
	--transition: 0.3s;

	--button-height: 110rem;
	--button-text-size: 30rem;
	--card-padding: 40rem;
	--icon-size: 80rem;
}



/* Global */

html {
	font-size: 0.052vw;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--title-size) / 2);
}

body {
	font-family: var(--text-family);
	font-weight: var(--default-font-weight);
	font-size: var(--default-text-size);
	line-height: var(--default-line-height);
	color: var(--default-text-color);
	background: var(--background); 
	position: relative;
	font-variant-numeric: lining-nums;
}

main {
	overflow: hidden;
}

section {
	width: 100%;
	padding-inline: var(--section-padding);
	margin-bottom: var(--section-margin);
	position: relative;
}

.container, [class$="__container"] {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
}

.title {
	font-weight: 300;
	font-size: var(--title-size);
	line-height: 1.2;
	text-transform: uppercase;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	width: fit-content;
	margin-bottom: var(--title-margin);
}
.title i {
	font-family: var(--decor-family);
	font-weight: 400;
	text-transform: none;
}
.title b {
	font-weight: 500;
	font-style: italic;
}

a, a:before {
	transition: 0.3s;
}

b {
	font-weight: 600;
	color: var(--white);
}

.nowrap {
	white-space: nowrap;
}

.cover {
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.contain {
	object-fit: contain;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.313em;
	width: 100%;
	max-width: 600rem;
	height: var(--button-height);
	padding: 10rem 146rem 10rem 30rem;
	border: none;
	border-radius: 20rem;
	background: var(--gradient);
	color: var(--black);
	box-shadow: 0 4rem 0 0 #727272;
	font-weight: 700;
	font-size: var(--button-text-size);
	cursor: pointer;
	transition: filter 0.4s, transform 0.4s;
	position: relative;
}
.button::after {
	content:'';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100rem;
	background: url(../img/button-icon.svg) center / 24% no-repeat;
	border-left: 1px solid var(--black-30);
	transition: 0.4s;
}
.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -20%);
	width: 70rem;
	height: 10rem;
	background: var(--white);
	filter: blur(5rem);
	border-radius: 100%;

}
@media (hover: hover) {
	.button:hover {
		filter: brightness(120%);
		transform: scale(1.02);
	}
}
.button:active {
	transform: scale(1);
}

.arrowlink {
	font-weight: 600;
	color: var(--white);
	display: flex;
	align-items: center;
	position: relative;
	padding-bottom: 0.1em;
	opacity: 0.5;
	transition: 0.4s;
	width: fit-content;
}
.arrowlink::after {
	content: '';
	width: 1.033em;
	aspect-ratio: 31 / 15;
	margin-left: 0.333em;
	margin-bottom: -0.1em;
	flex-shrink: 0;
	mask: url(../img/hero-link-arrow.svg) center / contain no-repeat;
	-webkit-mask: url(../img/hero-link-arrow.svg) center / contain no-repeat;
	background-color: currentColor;
}
.arrowlink::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transition: transform 0.4s, transform-origin 0s;
	transform-origin: left;
}
@media (hover: hover) {
	.arrowlink:hover {
		opacity: 1;
		transform: scale(1.01);
	}
	.arrowlink:hover::before {
		transform: scaleX(0);
		transform-origin: right;
	}
}
@media (max-width: 600px) {
	.arrowlink {
		font-size: 18rem;
	}
}

.social {
	--social-icon-size: 70rem;
	--social-icon-gap: 10rem;
	--social-icon-radius: calc(var(--radius) / 2);
	--social-icon-color: var(--darkred);

	display: grid;
	grid-auto-flow: column;
	grid-gap: var(--social-icon-gap);
	width: max-content;
}
.social__link {
	position: relative;
	width: var(--social-icon-size);
	aspect-ratio: 1;
	border-radius: var(--social-icon-radius);
	background: var(--social-icon-color);
	transition: var(--transition);
}
.social__link:hover {
	transform: scale(1.02);
	filter: brightness(90%);
}
@media (max-width: 600px) {
	.social {
		--social-icon-size: 35rem;
		--social-icon-gap: 5rem;
	}
}

.glasscard {
	--card-radius: 20rem;
	border-radius: var(--card-radius);
	backdrop-filter: blur(30px);
	background: rgba(116, 19, 23, 0.5);
	padding: var(--card-padding);
	position: relative;
}
.glasscard::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--card-radius);
	border: 1px solid var(--white-70);
	z-index: 2;
	pointer-events: none;
	mask: linear-gradient(-180deg, #000 0%, rgba(0,0,0,0) 100%), radial-gradient(circle at top center, rgba(0,0,0,0.3) 20%, #000 80%);
	-webkit-mask: linear-gradient(-180deg, #000 0%, rgba(0,0,0,0) 100%), radial-gradient(circle at top center, rgba(0,0,0,0.3) 20%, #000 80%);
	mask-composite: intersect;
	-webkit-mask-composite: source-in;
}

.note {
	max-width: 620rem;
	text-align: right;
	margin-left: auto;
	color: var(--white-80);
}
.note__icons {
	display: flex;
	justify-content: flex-end;
	gap: calc(var(--gap) / 2);
	margin-bottom: var(--gap);
}
.note__icon {
	width: 35rem;
}
@media (max-width: 600px) {
	.note {
		text-align: left;
	}
	.note__icons {
		justify-content: flex-start;
	}
	.note__icon {
		width: 18rem;
	}
}





/* Header */

.header {
	padding: var(--section-padding);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}
.header__logo {
	width: 200rem;
}





/* Hero */

.hero {
	--section-margin: -20rem;
	min-height: 1200rem;
	padding-top: 200rem;
	background: url(../img/hero-bg.jpg) left center / cover no-repeat;
}
.hero__container {
	max-width: unset;
	padding-left: 50%;
}
.hero__photo {
	width: 1200rem;
	height: auto;
	position: absolute;
	top: 0rem;
	left: -100rem;
	mask: linear-gradient(-180deg, #000 0%, #000 60%, rgba(0,0,0,0.2) 85%, rgba(0,0,0,0) 100%);
	-webkit-mask: linear-gradient(-180deg, #000 0%, #000 60%, rgba(0,0,0,0.2) 85%, rgba(0,0,0,0) 100%);
}
.hero__caption {
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--white-80);
	margin-bottom: var(--gap);
}
.hero__caption b {
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero__caption b::before {
	content: '';
	display: inline-block;
	width: 1.167em;
	aspect-ratio: 1;
	margin-right: 0.3em;
	margin-bottom: -0.18em;
	background: url(../img/verified-icon.svg) center / contain no-repeat;
}
.hero__title {
	max-width: 716rem;
	margin-bottom: 20rem;
}
.hero__title i {
	text-align: right;
	display: block;
	margin-left: auto;
	margin-top: -0.3em;
}
.hero__text {
	color: var(--white-80);
	max-width: 755rem;
	margin-bottom: calc(var(--gap) * 2);
	display: flex;
	align-items: center;
	gap: 20rem;
}
.hero__text img {
	width: 62rem;
	height: auto;
	position: relative;
	z-index: 2;
	filter: drop-shadow(-15rem 13rem 44rem rgba(0, 0, 0, 0.5));
}
.hero__buttons {
	display: flex;
	align-items: center;
	gap: 20rem 50rem;
	margin-bottom: var(--gap);
}
.hero__button {
	max-width: 445rem;
}
.hero__note {
	font-style: italic;
	opacity: 0.5;
	display: flex;
	align-items: center;
}
.hero__note::before {
	content: '';
	width: 1.167em;
	aspect-ratio: 1;
	margin-right: 0.667em;
	background: url(../img/hero-note-icon.svg) center / contain no-repeat;
	flex-shrink: 0;
}




/* About */

.about {
	--section-margin: 290rem;
}
.about::before {
	content: '';
	position: absolute;
	top: 100rem;
	right: -40rem;
	display: block;
	width: 560rem;
	aspect-ratio: 560 / 800;
	background: url(../img/about-bg.jpg) right center / contain no-repeat;
	z-index: -1;
}
.about__title {
	text-align: center;
	display: grid;
	margin-inline: auto;
	margin-bottom: 70rem;
}
.about__title i {
	margin-top: -0.16em;
	margin-bottom: 0.16em;
}
.about__text {
	max-width: 570rem;
	display: grid;
	align-content: start;
	grid-gap: 1em;
	position: relative;
	min-height: 225rem;
}
.about__text i {
	font-weight: 500;
	font-style: italic;
}
.about__concept {
	margin-left: auto;
	margin-top: 60rem;
}
.about__subtitle {
	font-size: 80rem;
	margin-left: auto;
	margin-bottom: 20rem;
}
.about__list {
	display: grid;
	grid-gap: 8rem;
	justify-items: end;
}
.about__item {
	border-radius: 20rem;
	background: var(--darkred);
	width: fit-content;
	max-width: 500rem;
	padding: 14rem 20rem;
	display: flex;
	align-items: center;
	gap: 15rem;
	color: var(--white);
}
.about__item::before {
	content: '';
	display: block;
	width: 1em;
	aspect-ratio: 1;
	background: url(../img/breakheart.svg) center / contain no-repeat;
	flex-shrink: 0;
}
.about__item:nth-child(1) {
	transform: rotate(-2deg);
}
.about__item:nth-child(2) {
	box-shadow: 0 -10rem 20rem 0 rgba(0, 0, 0, 0.25), 0 40rem 20rem 0 rgba(0, 0, 0, 0.25);
	transform: rotate(2deg);
	position: relative;
	z-index: 2;
}
.about__item:nth-child(3) {
	transform: rotate(-2deg);
}
.about__image {
	max-width: unset;
	width: 1390rem;
	height: auto;
	position: absolute;
	bottom: -750rem;
	left: -200rem;
	z-index: -1;
}





/* Love */

.love__title {
	text-align: center;
	margin-inline: auto;
	margin-bottom: 40rem;
}
.love__body {
	display: grid;
	grid-template-columns: 1fr 600rem;
	grid-gap: 0 60rem;
}
.love__secondtitle {
	font-size: 75rem;
}
.love__accent {
	background: var(--darkred) url(../img/textile-small-bg.jpg) top center / cover no-repeat;
	border-radius: var(--radius);
	max-width: 760rem;
	padding: 35rem 40rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-bottom: 40rem;
}
.love__icon {
	width: 175rem;
	height: auto;
	transform: rotate(-10deg);
	margin-left: -30rem;
	margin-top: -20rem;
	margin-bottom: -60rem;
	margin-right: 15rem;
	filter: drop-shadow(4rem 5rem 15rem rgba(0, 0, 0, 0.15));
}
.love__caption {
	margin-bottom: 0.4em;
}
.love__list {
	display: grid;
	grid-gap: 0.4em;
	margin-bottom: 20rem;
}
.love__list li {
	display: flex;
	gap: 0.3em;
	counter-increment: item-counter;
}
.love__list li::before {
	content: counter(item-counter, decimal-leading-zero) '.';
	min-width: 1.467em;
	font-weight: 500;
	font-style: italic;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.love__thirdtitle {
	font-size: 75rem;
	grid-column: 1;
	margin-bottom: 0;
}
.love__pic {
	grid-row: 1;
	grid-column: 2;
	position: relative;
}
.love__image {
	max-width: unset;
	width: 755rem;
	margin-inline: -80rem;
	margin-top: -30rem;
	margin-bottom: -70rem;
	filter: drop-shadow(12rem 19rem 35rem rgba(44, 7, 9, 0.5));
}
.love__button {
	margin-top: 40rem;
}





/* Problems */

.problems__body {
	border-radius: var(--radius);
	background: url(../img/textile-big-bg.jpg) top center / cover no-repeat;
	padding: 120rem 155rem 200rem;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.problems__body::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: url(../img/problems-bg.png) bottom center / contain no-repeat;
}
.problems__pretitle {
	font-weight: 500;
	font-style: italic;
	font-size: 45rem;
	text-transform: uppercase;
	text-align: center;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.5;
	margin-bottom: 20rem;
}
.problems__title {
	font-size: 75rem;
	text-align: center;
	max-width: 14em;
	margin-inline: auto;
	margin-bottom: 50rem;
}
.problems__title i {
	display: block;
	margin-top: -0.2em;
}
.problems__caption {
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	text-align: center;
	color: var(--white);
	margin-bottom: 20rem;
}
.problems__list {
	display: grid;
	grid-gap: 20rem;
}
.problems__item {
	border-radius: 20rem;
	background: var(--red);
	width: fit-content;
	padding: 16rem 20rem;
	display: flex;
	align-items: center;
	gap: 15rem;
	color: var(--white);
}
.problems__item::before {
	content: '';
	display: block;
	width: 1em;
	aspect-ratio: 1;
	background: url(../img/breakheart.svg) center / contain no-repeat;
	flex-shrink: 0;
}
.problems__item_right {
	justify-self: end;
}
.problems__item:not(.problems__item_right) + .problems__item_right {
	margin-top: 100rem;
}
.problems__accent {
	font-family: var(--decor-family);
	font-size: 55rem;
	color: var(--red);
	text-align: center;
	background: var(--white);
	border-radius: var(--radius);
	max-width: 910rem;
	padding: 40rem 100rem;
	margin-inline: auto;
	margin-top: -130rem;
	position: relative;
	z-index: 2;
}





/* Solution */

.solution__container {
	position: relative;
}
.solution__title {
	max-width: 1000rem;
}
.solution__title i {
	display: block;
	margin-top: -0.1em;
}
.solution__subtitle {
	font-weight: 600;
	margin-bottom: 30rem;
}
.solution__result {
	background: var(--darkred) url(../img/textile-small-bg.jpg) top center / cover no-repeat;
	border-radius: var(--radius);
	max-width: 760rem;
	padding: 40rem;
	margin-bottom: 10rem;
}
.solution__caption {
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}
.solution__list {
	display: grid;
	grid-gap: 0.4em;
}
.solution__list li {
	display: flex;
	gap: 0.3em;
	counter-increment: item-counter;
}
.solution__list li::before {
	content: counter(item-counter, decimal-leading-zero) '.';
	min-width: 1.467em;
	font-weight: 500;
	font-style: italic;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.solution__photo {
	width: 837rem;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.solution__secondtitle {
	font-size: 80rem;
}




/* Change */

.change::before,
.change::after {
	content: '';
	position: absolute;
	display: block;
	filter: drop-shadow(12rem 50rem 50rem rgba(44, 7, 9, 0.3));
	z-index: -1;
}
.change::before {
	background: url(../img/change-bg_left.png) center / contain no-repeat;
	width: 530rem;
	aspect-ratio: 530 / 500;
	bottom: -50rem;
	left: 0;
}
.change::after {
	background: url(../img/change-bg_right.png) center / contain no-repeat;
	width: 400rem;
	aspect-ratio: 400 / 530;
	top: -240rem;
	right: 0;
}
.change__container {
	display: grid;
	justify-items: center;
}
.change__title {
	text-align: center;
	max-width: 1020rem;
}
.change__title i {
	display: block;
	margin-top: -0.1em;
}
.change__text {
	text-align: center;
	max-width: 800rem;
	margin-bottom: 50rem;
}





/* Program */

.program__title {
	text-align: center;
	margin-inline: auto;
	margin-bottom: 20rem;
}
.program__intro {
	text-align: center;
	margin-inline: auto;
	margin-bottom: 40rem;
	color: var(--white-80);
}
.program__intro b {
	color: var(--white);
}
.program__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 15rem;
	align-items: start;
	margin-top: 170rem;
}
.program__card {
	padding: 30rem;
	border-radius: var(--radius);
	background: url(../img/textile-big-bg.jpg) top center / cover no-repeat;
	position: relative;
	box-shadow: 0 -20rem 40rem rgba(116,19,23, 0.4);
	counter-increment: item-counter;
}
.program__card::before {
	content: 'урок 'counter(item-counter);
	font-family: var(--decor-family);
	font-size: 100rem;
	text-align: center;
	color: var(--red-50);
	padding-top: 30rem;
	background: var(--white);
	border-radius: var(--radius);
	position: absolute;
	left: 40rem;
	right: 40rem;
	bottom: calc(100% - 30rem);
	z-index: -2;
}
.program__card::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 100%;
	width: 100%;
	aspect-ratio: 500 / 200;
	z-index: -1;
}
.program__card:nth-child(1)::after {
	background: url(../img/program-img1.png) center / contain no-repeat;
}
.program__card:nth-child(2)::after {
	background: url(../img/program-img2.png) center / contain no-repeat;
}
.program__card:nth-child(3)::after {
	background: url(../img/program-img3.png) center / contain no-repeat;
}
.program__part {
	font-weight: 300;
	font-style: italic;
	margin-bottom: 10rem;
	opacity: 0.5;
}
.program__caption {
	font-weight: 600;
	margin-bottom: 0.6em;
}
.program__list {
	display: grid;
	grid-gap: 0.5em;
	margin-bottom: 0.6em;
}
.program__list li {
	position: relative;
	padding-left: 1.5em;
}
.program__list li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1.16em;
	aspect-ratio: 1;
	background: url(../img/verified-icon_red.svg) center / cover no-repeat;
}
.program__result {
	font-weight: 400;
	font-style: italic;
	font-size: 28rem;
}




/* Author */

.author {
	padding-top: 130rem;
}
.author::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	aspect-ratio: 1920 / 1100;
	background: url(../img/author-bg.jpg) center / cover no-repeat;
	z-index: -1;
}
.author::before {
	content: '';
	position: absolute;
	top: 320rem;
	right: 0;
	width: 370rem;
	aspect-ratio: 370 / 440;
	background: url(../img/author-hearts.png) center / contain no-repeat;
	z-index: 2;
	pointer-events: none;
}
.author__title {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.author__title i {
	display: block;
}
.author__titlesecond {
	text-align: right;
}
.author__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1.35fr;
	grid-gap: var(--gap);
	align-items: end;
}
.author__item {
	color: var(--white-80);
}
.author__item b {
	color: var(--white);
}
.author__item::before {
	content: '';
	display: block;
	width: 1.167em;
	aspect-ratio: 1;
	background: url(../img/verified-icon_white.svg) center / contain no-repeat;
	margin-bottom: 0.5em;
}
.author__item:nth-child(2) {
	grid-column: 3;
	grid-row: 2;
}
.author__item:nth-child(3) {
	grid-column: 1;
	grid-row: 2;
} 




/* Tariff */

.tariff__title {
	margin-inline: auto;
	text-align: right;
}
.tariff__title i {
	display: block;
	margin-right: 235rem;
}
.tariff__body {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20rem;
}
.tariff__include {
	background: url(../img/tariff-bg-include.jpg) center / cover no-repeat;
	border-radius: var(--radius);
	padding: var(--card-padding);
}
.tariff__subtitle {
	font-weight: 400;
	font-size: 80rem;
	line-height: 1.1;
	max-width: 5em;
	margin-bottom: 20rem;
}
.tariff__caption {
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20rem;
}
.tariff__list {
	display: grid;
	grid-gap: 0.4em;
}
.tariff__list li {
	display: flex;
	align-items: center;
}
.tariff__icon {
	width: 1em;
	margin-right: 0.5em;
}
.tariff__pricing {
	background: url(../img/tariff-bg-pricing.jpg) center / cover no-repeat;
	border-radius: var(--radius);
	padding: var(--card-padding);
	display: grid;
	justify-items: center;
	align-content: center;
}
.tariff__price {
	margin-bottom: 0;
	line-height: 1;
}
.tariff__oldprice {
	font-size: 60rem;
	opacity: 0.5;
	position: relative;
}
.tariff__oldprice::before {
	content: '';
	position: absolute;
	top: 0;
	height: 50%;
	left: 0;
	right: 0;
	display: block;
	border-bottom: 2px solid var(--white-80);
}
.tariff__action {
	display: grid;
	justify-items: center;
}
.tariff__button {
	width: 445rem;
	margin-bottom: 36rem;
}




/* Cta */

.cta__container {
	display: grid;
	justify-items: center;
}
.cta__title {
	max-width: 1220rem;
	text-align: center;
}
.cta__title i {
	display: block;
}
.cta__text {
	text-align: center;
}
.cta__image {
	max-width: unset;
	width: 1615rem;
	aspect-ratio: 1615 / 682;
}
.cta__button {
	margin-top: -120rem;
}
.button::before {
	top: -1px;
	width: 270rem;
	height: 8rem;
}




/* Questions */

.questions__body {
	padding: 120rem 16rem;
	background: url(../img/textile-big-bg.jpg) top center / cover no-repeat;
	border-radius: var(--radius);
	display: grid;
	justify-items: center;
}
.questions__title {
	text-align: center;
}
.questions__text {
	font-size: 34rem;
	text-align: center;
	margin-bottom: 30rem;
}
.questions__social {
	--social-icon-color: var(--red);
}





/* Footer */

.footer {
	padding-inline: 130rem;
	padding-top: var(--section-margin);
	padding-bottom: 30rem;
	display: grid;
	font-size: 26rem;
	--radius: 100rem;
	background: url(../img/textile-big-bg.jpg) center / cover no-repeat;
	background-color: var(--darkred);
	border-radius: var(--radius);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;

	@supports (corner-shape: squircle) {
		border-radius: calc(var(--radius) * 2);
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
		corner-shape: squircle;
	}
}

.footer__cta {
	padding-block: 30rem;
	border-top: 2rem solid var(--white-30);
	border-bottom: 2rem solid var(--white-30);
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20rem;
}
.footer__ctatext {
	font-style: italic;
	font-size: 60rem;
	line-height: 1.3;
}
.footer__ctalink {
	font-weight: 600;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--brown);
	padding: 0.857em 1.071em;
	background: var(--gradient);
	border-radius: 100rem;
}
@media (hover: hover) {
	.footer__ctalink:hover {
		filter: brightness(120%);
	}
}

.footer__author {
	grid-column: 1 / -1;
	font-family: var(--other-family);
	font-size: 200rem;
	line-height: 1.3;
	margin-top: -0.2em;
	text-align: center;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer__info {
	display: grid;
	grid-template-columns: repeat(3, auto);
	grid-gap: 140rem;
	margin-block: 30rem;
}

.footer__caption {
	font-weight: 300;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--white-50);
	margin-bottom: 10rem;
}

.footer__info b {
	color: var(--white);
}

.footer__social {
	--social-icon-size: 80rem;
	--social-icon-color: var(--red);
	--social-icon-radius: 20rem;
	margin-bottom: 48rem;
}
.footer__meta {
	color: var(--white-50);
	max-width: 400rem;
}

.footer__links {
	display: grid;
	grid-gap: 10rem;
	width: 318rem;
}
.footer__link {
	color: var(--white);
	line-height: 1.3;
}
.footer__link:hover {
	opacity: 0.75;
}

.footer__contacts {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-gap: 80rem;
}
.footer__contactinfo {
	display: grid;
	grid-gap: 10rem;
}
.footer__contactphones {
	display: grid;
	grid-gap: 5rem;
}

.footer__bottom {
	border-top: 2rem solid var(--white-30);
	padding-block: 30rem;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	justify-content: space-between;
	color: var(--white-50);
}
.footer__bottom p:last-child {
	text-align: right;
}
.footer__copyright {
	font-weight: 300;
	line-height: 1.3;
	text-transform: uppercase;
	text-align: center;
	color: var(--white);
}





/* Popup */

.popup {
	--popup-max-width: 1110rem;
	--popup-padding: 80rem;
	--popup-radius: var(--radius);
	--popup-color: var(--white);
	--popup-close-size: 40rem;
	--popup-close-bg: none;
	--popup-close-padding: 0;
	--popup-close-margin: 0;
	--popup-close-radius: 0;
	--popup-close-line-width: 3rem;
	--popup-close-line-color: var(--white);
	--popup-close-line-radius: 10rem;
	--popup-overlay-color: rgba(13, 13, 13, 0.8);

	position:fixed;
	top:0;
	left: 0;
	width: 100%;
	height: calc(100% + 70px);
	padding: 15px;
	padding-top: calc(var(--popup-close-size) + var(--popup-close-size) / 3 * 2);
	padding-bottom: calc(15px + 70px);
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	display: flex;
	z-index: 1001;
	visibility: hidden;
}
.popup_show {
	visibility: visible;
	overflow-y: scroll;
}
.popup__box {
	position: relative;
	margin: auto;
	width: 100%;
	max-width: var(--popup-max-width);
	background: var(--popup-color); 
	padding: var(--popup-padding); 
	border-radius: var(--popup-radius);
	color: var(--black);
	z-index: 1001;
	transform: translateY(-10vh) scale(0.7);
	opacity: 0;
}
.popup_show .popup__box {
	transition: transform 0.4s, opacity 0.4s;
	transform: translateY(0) scale(1);
	opacity: 1;
}
.popup__close {
	position: absolute;
	top: calc(var(--popup-close-size) / -3);
	right: 0;
	transform: translateY(-100%);
	width: var(--popup-close-size);
	height: var(--popup-close-size);
	background: var(--popup-close-bg);
	margin: var(--popup-close-margin);
	padding: var(--popup-close-padding);
	border-radius: var(--popup-close-radius);
	border: none;
	cursor: pointer;
}
.popup__close-icon {
	display: block;
	position: relative;
	height: 100%;
	transition: 0.3s;
}
.popup__close-icon:after, 
.popup__close-icon:before {
	content: '';
	display: block;
	width: 120%;
	left: -10%;
	position: absolute;
	top: 50%;
	height: var(--popup-close-line-width);
	background: var(--popup-close-line-color);
	border-radius: var(--popup-close-line-radius);
}
.popup__close-icon:after {
	transform: translateY(-50%) rotate(45deg);
}
.popup__close-icon:before {
	transform: translateY(-50%) rotate(-45deg);
}
.popup__close:hover .popup__close-icon {
	transform: rotate(180deg);
}

.popup__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh + 140px);
	transform: translateY(-70px);
	background: var(--popup-overlay-color);
	z-index: 1000;
	transition: 0.5s;
	opacity: 0;
}
.popup_show .popup__overlay {
	opacity: 1;
}




/* Order */

.order {
	text-align: center;
}
.order__text {
	font-size: var(--default-text-size);
	margin: 1em 0;
}
.order__whatsapp {
	font-size: calc(var(--default-text-size) * 1.4);
	color: var(--brown-50);
	text-transform: none;
}
@media (hover: hover) {
	.order__whatsapp:hover {
		color: var(--brown);
	}
}




/* Cookie */

.cookie {
	--cookie-box-margin: 30rem;
	--cookie-box-width: 520rem;
	--cookie-box-padding: 40rem;
	--cookie-box-radius: 10rem;
	--cookie-box-color: var(--white);
	--cookie-box-shadow: 0 0 30rem rgba(0,0,0, 0.1);
	--cookie-text-color: var(--black);
	--cookie-text-size: 16px;
	--cookie-button-margin: 20rem;
	--cookie-button-position: start; /* start, center, end */
	--cookie-button-padding: 0.7em 1.5em;
	--cookie-button-radius: 15rem;
	--cookie-button-color: var(--red);
	--cookie-button-text-color: var(--white);
	--cookie-button-hover-color: var(--darkred);
	--cookie-button-hover-text-color: white;
	--cookie-button-text-size: 16px;

	font-size: var(--cookie-text-size);
	color: var(--cookie-text-color);
	padding: var(--cookie-box-padding);
	border-radius: var(--cookie-box-radius);
	background: var(--cookie-box-color);
	box-shadow: var(--cookie-box-shadow);
	display: grid;
	position: fixed;
	bottom: var(--cookie-box-margin);
	left: auto;
	right: var(--cookie-box-margin);
	width: 100%;
	max-width: min(var(--cookie-box-width), calc(100% - var(--cookie-box-margin) * 2));
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s;
}
.cookie b {
	color: inherit;
}
.cookie_open {
	opacity: 1;
	pointer-events: all;
}
.cookie__button {
	justify-self: var(--cookie-button-position);
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: var(--cookie-button-padding);
	border: none;
	border-radius: var(--cookie-button-radius);
	background: var(--cookie-button-color);
	color: var(--cookie-button-text-color);
	font-size: var(--cookie-button-text-size);
	margin-top: var(--cookie-button-margin);
	transition: 0.3s;
}
.cookie__button:hover {
	background: var(--cookie-button-hover-color);
	color: var(--cookie-button-hover-text-color);
}

@media (max-width: 600px) {
	.cookie {
		--cookie-box-margin: 10rem;
		--cookie-box-padding: 20rem;
	}
}






/* Responsive */

@media (max-width: 1023px) {
	html {font-size: 0.057vw;}
	
	.header {padding-left: var(--section-padding);}

	.hero__container {padding-left: 46%;}
	.hero__photo {left: -225rem;}

	.footer {padding-inline: 60rem;}
}

@media (max-width: 600px) {
	:root {
		--section-padding: 10rem;
		--section-margin: 100rem;

		--default-text-size: 18rem;
		
		--title-size: 40rem;
		--title-margin: 15rem;
		
		--radius: 20rem;
		--gap: 10rem;
		
		--button-height: 70rem;
		--button-text-size: 18rem;
		--card-padding: 20rem;
		--icon-size: 45rem;
	}
	html {font-size: 0.313vw;}

	.button {padding: 10rem 88rem 10rem 20rem; border-radius: 10rem;}
	.button::after {width: 68rem;}

	.header {padding-top: 20rem;}
	.header__logo {width: 82rem;}

	.hero {--section-margin: 100rem; min-height: unset; padding-top: 105rem; background: url(../img/hero-bg_mob.jpg) top center / cover no-repeat;}
	.hero__container {display: flex; flex-direction: column; padding-left: 0;}
	.hero__caption {text-align: center;}
	.hero__caption b {display: block; margin-top: 5rem;}
	.hero__title {font-size: 67rem; text-align: center;}
	.hero__title span {font-size: var(--title-size); text-align: center; display: block;}
	.hero__title i {font-size: var(--title-size); text-align: center;}
	.hero__text {text-align: center; max-width: 252rem; margin-inline: auto;}
	.hero__text img {display: none;}
	.hero__buttons {flex-direction: column; order: 2;}
	.hero__note {width: fit-content; margin-inline: auto; margin-bottom: 20rem;}
	.hero__photo {position: static; max-width: unset; width: 432rem; margin-left: -86rem; margin-top: -20rem; margin-bottom: -120rem;}

	.about {--section-margin: 100rem;}
	.about::before {background-image: url(../img/about-bg_mob.jpg); width: 70rem; height: 218rem; top: 100rem; right: 0;}
	.about__title {margin-bottom: 20rem;}
	.about__title i {font-size: 34rem;}
	.about__text {text-align: center; max-width: 300rem; margin-inline: auto;}
	.about__text br {display: none;}
	.about__image {position: static; width: 450rem; margin-left: -140rem; margin-right: -140rem; margin-bottom: -100rem;}
	.about__subtitle {font-size: 40rem; margin-bottom: 10rem; margin-inline: auto;}
	.about__list {justify-items: center;}
	.about__item {font-size: 16rem; border-radius: 15rem; padding: 20rem 19rem; gap: 10rem; max-width: 290rem; margin-bottom: -10rem;}
	.about__item::before {width: 20rem;}

	.love__title {margin-bottom: 12rem;}
	.love__body {grid-template-columns: 1fr;}
	.love__secondtitle {font-size: 24rem; text-align: center;}
	.love__thirdtitle {font-size: 34rem; text-align: center; margin-bottom: 15rem;}
	.love__accent {display: block; padding: 20rem; margin-bottom: 20rem;}
	.love__icon {width: 72rem; margin: 0; display: block; margin-bottom: 20rem; margin-top: -10rem;}
	.love__caption {margin-bottom: 0.6em;}
	.love__list {grid-gap: 0.6em;}
	.love__pic {grid-row: 2; grid-column: 1;}
	.love__image {width: 320rem; margin: -20rem -10rem 0;}
	.love__button {margin-top: 0;}

	.problems__body {padding: 50rem 20rem 355rem;}
	.problems__body::before {background-image: url(../img/problems-bg_mob.png);}
	.problems__pretitle {font-size: 20rem; margin-bottom: 10rem;}
	.problems__title {font-size: 34rem; margin-bottom: 30rem;}
	.problems__title i {margin-top: 0;}
	.problems__caption {margin-bottom: 15rem;}
	.problems__list {grid-gap: 10rem; justify-items: center;}
	.problems__item {font-size: 16rem; border-radius: 10rem; padding: 10rem 20rem; gap: 10rem; max-width: 290rem;}
	.problems__item::before {width: 20rem;}
	.problems__item_right {justify-self: unset;}
	.problems__item:not(.problems__item_right) + .problems__item_right {margin-top: 0;}
	.problems__item:last-child {max-width: 185rem;}
	.problems__accent {font-size: 24rem; padding: 20rem; max-width: 260rem; margin-top: -70rem;}

	.solution__title {text-align: center;}
	.solution__photo {position: static; max-width: unset; width: 424rem; margin-left: -96rem;}
	.solution__subtitle {text-align: center; margin-bottom: 20rem;}
	.solution__result {padding: 20rem;}
	.solution__caption {margin-bottom: 0.6em;}
	.solution__list {grid-gap: 0.6em;}
	.solution__secondtitle {font-size: 34rem; text-align: center;}

	.change::before {display: none;}
	.change::after {width: 130rem; top: -140rem; right: -40rem;}
	.change__text {margin-bottom: 30rem; max-width: 260rem;}

	.program__title {margin-bottom: 10rem;}
	.program__cards {grid-template-columns: 1fr; grid-gap: 105rem; margin-top: 100rem;}
	.program__card {padding: 20rem;}
	.program__card::before {font-size: 70rem; left: 30rem; right: 30rem; bottom: calc(100% - 40rem);}
	.program__result {font-size: var(--default-text-size);}

	.author {padding-top: 0;}
	.author::before {display: none;}
	.author::after {aspect-ratio: 320 / 715; background-image: url(../img/author-bg_mob.jpg);}
	.author__titlefirst {margin-bottom: 300rem;}
	.author__titlesecond {margin-left: auto;}
	.author__list {grid-template-columns: 1fr;}
	.author__item {--card-radius: 10rem; font-size: 16rem; grid-column: 1!important; grid-row: unset!important;}

	.tariff {margin-bottom: 240rem;}
	.tariff__title i {margin-right: 100rem;}
	.tariff__body {grid-template-columns: 1fr; grid-gap: 0; padding: 20rem; background: url(../img/tariff-bg_mob.jpg) top center / cover no-repeat; position: relative; border-radius: 20rem;}
	.tariff__subtitle {font-size: 40rem; text-transform: none;}
	.tariff__include {padding: 0; background: none; margin-bottom: 20rem;}
	.tariff__pricing {padding: 0; background: none;}
	.tariff__price {font-size: 60rem; justify-self: start;}
	.tariff__oldprice {font-size: 40rem; justify-self: start; margin-bottom: 0;}
	.tariff__action {position: absolute; top: calc(100% + 25rem); left: 0; right: 0;}
	.tariff__button {width: 100%; margin-bottom: 20rem;}

	.cta__title i {margin-bottom: 0.3em;}
	.cta__image {width: 615rem; margin-inline: -200rem; margin-top: 10rem;}
	.cta__button {margin-top: -35rem;}

	.questions__body {padding-block: 50rem;}
	.questions__text {font-size: var(--default-text-size); margin-bottom: 20rem;}
	.questions__social {--social-icon-size: 70rem; --social-icon-gap: 10rem; --social-icon-radius: calc(var(--radius) / 2);}

	.footer {--radius: 40rem; font-size: 18rem; padding-inline: var(--section-padding); padding-top: 40rem; padding-bottom: 10rem;}
	.footer__cta, .footer__info, .footer__contacts, .footer__bottom {grid-template-columns: 1fr;}
	.footer__author {font-size: 36rem; order: -1; margin-bottom: 20rem;}
	.footer__cta {padding: 10rem 0 16rem; border-width: 1px; margin-bottom: 0;}
	.footer__ctatext {font-size: 22rem; text-align: center; margin-bottom: 10rem;}
	.footer__ctalink {font-size: 16rem; text-align: center; border-width: 1px; padding: 20rem;}
	.footer__info {margin-block: 20rem; grid-gap: 20rem;}
	.footer__section_docs {order: 3;}
	.footer__social {--social-icon-size: 64rem; --social-icon-radius: 16rem; margin-bottom: 10rem;}
	.footer__meta {font-size: 12rem;}
	.footer__contacts {grid-gap: 10rem;}
	.footer__bottom {padding-block: 20rem; display: grid; grid-gap: 10rem; border-width: 1px;}
	.footer__bottom p:last-child {text-align: left;}
	.footer__copyright {text-align: left;}
	.footer__links {width: 100%;}

	.popup {
		--popup-padding: 20rem;
		--popup-radius: 10rem;
		--popup-close-size: 20rem;
		--popup-close-line-width: 2rem;
	}
	.order__text {font-size: 12rem;}
}