:root {
	--color-accent: #4D1197;
	--color-accent-hover: #4D1197;
	--color-white: #fff;
	--color-header: #000;
	--color-text: #4D1197;
	--color-label: #8F8F8F;
	--border-r: 10px;
	--b-shadow-default: 4px 4px 4px 0px rgba(193, 193, 193, 0.25);
	--bg-section: #4D1197;
}

body {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	overflow: hidden scroll;
	color: var(--color-white);
	font-size: 30px;
	font-weight: 300;
	background: var(--bg-section);
	margin: 0;
}

@media screen and (max-width: 1200px) {
	body {
		font-size: 20px;
	}
}

@media screen and (max-width: 768px) {
	body {
		font-size: 18px;
	}
}

a {
	color: var(--color-white);
	text-decoration: none;
}

h1,
h2,
h3 {
	font-family: 'Philosopher';
	margin: 0;
}

p {
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1200px;
}

.btn {
	font-weight: 300;
	padding: 10px 30px;
	font-size: 22px;
	line-height: 24px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.btn svg {
	width: 28px;
	height: 28px;
}

.hero {
	position: relative;
	display: flex;
	flex-direction: row;
	background-size: cover;
	min-height: 600px;
	background-position: center;
}

.hero .bg-section {
	position: absolute;
	width: 70%;
	bottom: 0;
	right: 0;
}

.hero-side {
	width: 50%;
	padding: 40px 40px 60px;
	box-sizing: border-box;
}

.bg-blure {
	backdrop-filter: blur(2px);
	background: #4d119785;
	border: 1px solid var(--color-white);
}

.hero-side-row {
	display: flex;
	flex-direction: column;
}

.hero-side-left a {
	color: var(--color-accent);
}

.hero-side-right {
	display: flex;
	justify-content: center;
}

.header {
	margin-bottom: 50px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 30px;
}

.logo__img {
	width: 50px;
	height: 50px;
}

.logo__desc {
	font-size: 18px;
}

.hero_title {
	font-size: 70px;
	font-weight: 700;
	margin: 0;
}

.hero__subtitle {
	font-family: 'Philosopher';
	font-size: 60px;
}

.hero__desc {
	position: relative;
	display: flex;
	gap: 20px;
	align-items: center;
}

.hero__desc-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hero__btns {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero__desc,
.hero__btns {
	margin-top: 80px;
}

.hero__btns-item {
	color: var(--color-accent);
	border-radius: var(--border-r);
	border: 0px;
	background: #fff;
	width: fit-content;
}

a.hero__btns-item {
	color: var(--color-accent);
}

.btns-icon {
	width: 30px;
	height: 30px;
}

.action-btns {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	height: 100%;
	align-items: center;
}

.action-btns__item {
	border-radius: var(--border-r);
	border: 1px solid #fff;
	backdrop-filter: blur(2px);
	background: #4d119785;
}

@media screen and (max-width: 1200px) {
	.btn {
		font-size: 18px;
		line-height: 22px;
	}

	.btn svg {
		width: 24px;
		height: 24px;
	}

	.btns-icon {
		width: 20px;
		height: 20px;
	}

	.hero_title {
		font-size: 50px;
	}

	.hero__subtitle {
		font-size: 40px;
	}

	.hero__desc,
	.hero__btns {
		margin-top: 60px;
	}

	.hero__desc-icon {
		height: 68px;
	}
}

@media screen and (max-width: 900px) {
	.hero_title {
		font-size: 44px;
	}

	.hero__subtitle {
		font-size: 36px;
	}
}

@media screen and (max-width: 768px) {
	.logo__img {
		width: 30px;
		height: 30px;
	}

	.hero {
		flex-direction: column;
		min-height: unset;
	}

	.hero .bg-section {
		width: 100%;
	}

	.hero-side {
		align-items: center;
		width: 100%;
	}

	.hero-side-row {
		align-items: center;
	}

	.hero_title {
		font-size: 40px;
		text-align: center;
	}

	.hero__subtitle {
		font-size: 30px;
		margin-top: 10px;
	}

	.hero__desc {
		text-align: center;
	}

	.hero__desc-icon {
		display: none;
	}

	.hero__desc,
	.hero__btns {
		margin-top: 40px;
	}

	.hero__btns {
		justify-content: center;
	}
}

@media screen and (max-width: 490px) {
	.action-btns__item {
		gap: 10px;
		font-size: 16px;
		padding: 10px 16px;
	}
}

/* 2 screen */

.persons {
	display: flex;
	flex-direction: column;
	padding: 140px 40px;
	background: rgb(255 255 255 / 90%);
	justify-content: center;
	gap: 40px;
}

.persons-info {
	color: var(--color-accent);
	text-align: center;
}

.persons-cols {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 40px;
}

.persons-item {
	position: relative;
	border-radius: var(--border-r);
	text-align: center;
	padding: 30px 50px;
	background: var(--color-accent);
	overflow: hidden;
}

.persons-item * {
	z-index: 2;
}

.persons-item .bg-section {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	z-index: 1;
}

.persons-item h2 {
	margin-bottom: 50px;
}

.persons-item p {
	line-height: 44px;
}

.devider {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 40px 0;
}

.devider span {
	width: 100px;
	height: 0px;
	border: 1px solid var(--color-white);
}

@media screen and (max-width: 768px) {
	.persons {
		flex-direction: column;
		padding: 60px 20px;
	}

	.persons-cols {
		flex-direction: column;
	}

	.persons-side {
		width: 100%;
		padding: 20px;
	}

	.persons-side-left {
		order: 2;
	}

	.persons-side-right {
		order: 1;
	}
}

@media screen and (max-width: 400px) {
	.persons {
		padding: 40px 20px;
	}

	.persons-item {
		padding: 30px 20px;
	}
}

/* exsamples */

.ex {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 600px;
	background-position: center;
	align-items: center;
	padding: 60px 10px;
}


.ex .bg-section {
	position: absolute;
	max-width: 530px;
	left: 0;
}

.ex-header {
	border-radius: var(--border-r);
	width: fit-content;
	margin: auto;
}

.ex-header h2 {
	text-align: center;
}

.ex h3 {
	text-align: center;
	margin-top: 40px;
	position: relative;
}

.ex-cards {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	padding: 10px;
	margin-top: 20px;
}

.ex-item {
	border-radius: var(--border-r);
	padding: 25px;
	width: 300px;
}

.ex-item__title {
	font-size: 20px;
	line-height: 26px;
}

.ex-item__player {
	margin-top: 20px;
}

.ex-bottom {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 768px) {
	.ex .bg-section {
		position: absolute;
		max-width: 530px;
		left: 0;
		width: 100%;
		top: 4%;
	}

	.ex-bottom {
		flex-direction: column;
		align-items: center;
	}

	.btn-hero-tg {
		order: 2
	}

	.btn-hero-ex {
		order: 1
	}

	.btn-hero-vk {
		order: 3
	}
}

@media screen and (max-width: 600px) {
	.ex-item {
		width: 100%;
		padding: 15px;
	}

	audio {
		width: 270px;
		height: 54px;
	}
}

/* present */

.present {
	display: flex;
	flex-direction: column;
	background: rgb(255 255 255 / 90%);
	align-items: center;
	padding: 90px 20px;
	box-sizing: border-box;
}

.present .container {
	position: relative;
	max-width: 1400px;
	background: var(--color-accent);
	border-radius: var(--border-r);
	padding: 70px 140px;
	overflow: hidden;
}

.present .bg-section {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.present-text {
	border-radius: var(--border-r);
	line-height: 40px;
	margin-top: 60px;
	text-align: center;
}

.present .action-btns__item {
	justify-content: center;
}

@media screen and (max-width: 768px) {
	.present {
		padding: 40px 20px;
	}

	.present .container {
		padding: 50px 40px;
	}

	.present-text {
		line-height: 30px;
	}
}

/* price */

.price {
	display: flex;
	flex-direction: column;
	padding: 40px 40px;
	background: rgb(255 255 255 / 90%);
	justify-content: center;
	gap: 60px;
}

.price .ex-header {
	color: var(--color-accent);
}

.price-cols {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.price-item {
	width: 30%;
}

.price-item p {
	font-size: 18px;
	line-height: 26px;
}

.price-item h2 {
	font-size: 30px;
}

.cost {
	font-size: 20px;
}

.price .hero__btns {
	align-items: center;
}

@media screen and (max-width: 1200px) {
	.price-cols {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 768px) {
	.price-item {
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.price {
		padding: 20px;
	}
}

/* footer */

footer {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 10px 60px;
	font-size: 14px;
	color: #a3a3a3;
	background: #000;
}