.mainpage-section {
	padding: 50px 0 50px 0;
	&.mainpage-section-purple {
		margin-top: 50px;
		background: var(--color-purple-light);
		padding: 50px 0 100px 0;
	}
}

.mainpage-block-content {
	position: relative;
	z-index: 2;
	padding: 80px 0;
}
.mainpage-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.mainpage-block {
	background: var(--color-purple);
	position: relative;
	overflow: hidden;
}

.mainpage-slogan {
	color: var(--color-white);
	font-family: var(--font-title);
	font-size: var(--size-3xl);
	font-weight: 300;
	max-width: 630px;
	margin-top: 24px;
}

.main-btns {
	margin-top: 36px;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 24px;
}

.h1-mainpage {
	color: var(--color-white);
	font-family: var(--font-title);
	font-size: 120px;
	font-weight: 300;
	text-align: right;
}

.experts-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 100px;
	margin-top: 60px;
}

.experts-card-img {
	width: 280px;
	height: 280px;
	background: var(--color-purple);
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.experts-name {
	font-size: var(--size-3xl);
	font-family: var(--font-title);
	font-weight: 300;
	margin-top: 30px;
	width: 100%;
}
.experts-description {
	font-size: var(--size-xl);
	margin-top: 24px;
	font-weight: 300;
	width: 100%;
}

.mainpage-about {
	display: flex;
}

.about-title {
	font-size: var(--size-3xl);
	font-family: var(--font-title);
	font-weight: 300;
}
.about-content {
	font-size: var(--size-xl);
	margin-top: 12px;
	font-weight: 300;
	padding-right: 60px;
}

.mainpage-about-block {
	width: 50%;
}

.about-btns {
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 24px;
	margin-top: 24px;
}
.experts-card {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
}

.experts-name-link {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}
.mainpage-about {
    display: flex;
    gap: 20px;
}

.mainpage-about-block {
    width: 50%;
}

.about-media {
    position: relative;
    width: 100%;
    height: 420px;
}

.video-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-block:hover .play-btn {
    background: var(--color-red);
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-icon svg {
    width: 54px;
    height: 64px;
    fill: white;
}

#popup-box-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

.art-popup-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.art-popup-video {
    position: relative;
    max-width: 800px;
    width: 90%;
    aspect-ratio: 16/9;
}

.art-popup-video video {
    width: 100%;
    height: 100%;
}

.art-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.art-popup-btn svg {
    width: 24px;
    height: 24px;
    fill: #0F1729;
}