.start {
	--start-text-color: #fff;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.start:before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.4);
}
.start .r-container {
	z-index: 2;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding-top: 130px;
	padding-bottom: 130px;
}
.start__flex {
	text-align: center;
}
.start__title {
	color: var(--start-text-color);
	margin: 0;
	padding: 0;
	margin-bottom: 24px;
	font-family: var(--font-family-base);
	text-transform: initial;
	line-height: 1;
	font-size: 60px;
	font-weight: 400;
}
.start__text {
	color: var(--start-text-color);
	margin-bottom: 32px;
	line-height: 1.33;
	font-size: 24px;
}
.start__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-gap: 16px;
}

@media (max-width: 1360px) {
	.start .r-container {
		padding-top: 115px;
		padding-bottom: 115px;
	}
	.start__title {
		margin-bottom: 20px;
		font-size: 52px;
	}
	.start__text {
		margin-bottom: 26px;
		font-size: 20px;
	}
}
@media (max-width: 1024px) {
	.start__title {
		margin-bottom: 18px;
		font-size: 46px;
	}
	.start__text {
		margin-bottom: 23px;
		font-size: 18px;
	}
}
@media (max-width: 960px) {
	.start__title {
		margin-bottom: 15px;
		font-size: 40px;
	}
	.start__text {
		margin-bottom: 20px;
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.start__title {
		margin-bottom: 12px;
		font-size: 32px;
	}
	.start__text {
		margin-bottom: 27px;
		font-size: 15px;
	}
}
@media (max-width: 580px) {
	.start__title {
		font-size: 26px;
	}
	.start__text {
		margin-bottom: 20px;
		font-size: 14px;
	}
}