main {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	flex-grow: 1;
	padding: 0;
	width: 100%
}

.two_part_container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.two_part {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.two_part .left {
	padding: 40px 20px 56px 20px;
}

.two_part .right {
	--bg-color: var(--color-eggshell);
	background-color: var(--bg-color);
}

.right h2 {
	display: none;
}

.right-description {
	display: none;
}

@media screen and (min-width: 720px) {
	.two_part {
		--brush-border-width: 40px;
		display: grid;
		grid-template-columns: 61vw calc(38vw - var(--brush-border-width));
		gap: var(--brush-border-width);
		width: 100%;
	}

	.two_part .left {
		width: 516px;
	}

	.right {
		position: relative;
	}

	.two_part .right>* {
		transform: translateX(calc(-1 * var(--brush-border-width)/2));
	}

	.right::after {
		--border-mask: url("../../images/components/border-brush/two-part-right-border-desktop-36i1bvW.svg");
		--drawn-border-width: 40px;
		content: '';
		position: absolute;
		background-color: var(--bg-color);
		left: calc(-1 * var(--drawn-border-width));
		top: 0;
		bottom: 0;
		mask-repeat: repeat;
		width: var(--drawn-border-width);
		height: 100%;
		-webkit-mask-image: var(--border-mask);
		mask-image: var(--border-mask);
	}

	.right h2 {
		font-family: 'Passion One';
		letter-spacing: -0.02em;
		font-size: 30px;
		font-weight: 400;
		line-height: 32px;
		text-align: center;
		text-transform: uppercase;
		margin-bottom: 21px;
	}


	.right-description {
		font-size: 14px;
		font-weight: 400;
		line-height: 22px;
		text-align: center;
		margin-bottom: 80px;
	}

	.two_part .left {
		padding-top: calc(40px + 60px);
		margin: 0 auto;
		padding-bottom: 40px;
	}

	.two_part .right {
		display: flex;
		align-items: center;
		flex-direction: column;
		padding-top: calc(40px + 110px);
		padding-bottom: 40px;
	}

	.right-description {
		display: block;
	}

	.right h2 {
		display: block;
	}
}

@media screen and (min-width: 1000px) {
	.two_part .right > * {
		max-width: 78%;
	}
}
