main > .content-wrapper {
	height: 720px;
}

.content-wrapper .content-inner {
	width: 1530px;
	margin: 0 auto;
	padding: 110px 0;
	display: flex;
	justify-content: space-between;
}

.content-wrapper .content-inner iframe {
	display: none;
	max-width: 890px;
	width: 100%;
	height: 500px;
	border: none;
}

.content-wrapper .content-inner .image {
	height: 500px;
	width: 890px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content-wrapper .content-inner .image .play-button {
	height: 65px;
	width: 65px;
}

.content-wrapper .content-inner .image .play-button img {
	width: 100%;
	height: auto;
}

.content-wrapper .content-inner .content {
	width: 588px;
	padding: 60px 0 55px;
}

.content-wrapper .content-inner .content .top-title {
	font-size: 3.125em;
	color: #c0ea6a;
	color: var(--green, #c0ea6a);
}

.content-wrapper .content-inner .content .subject {
	font-size: 6.250em;
	color: #fff;
	color: var(--white, #fff);
	font-weight: bold;
	margin: 0;
	margin-bottom: 35px;
}

.content-wrapper .content-inner .content .main-content {
	font-size: 0.938em;
	margin-bottom: 30px;
	color: #fff;
	color: var(--white, #fff);
}

.content-wrapper .content-inner .content .register-button {
	display: table;
	background-color: #c0ea6a;
	background-color: var(--green, #c0ea6a);
}

.content-wrapper .content-inner .content .register-button a {
	display: table;
	padding: 16px 47px;
	color: #000;
}

.iframe-wrapper {
	display: grid;
	width: 100%;
	max-width: 890px;
	display: none;
}

.iframe-wrapper > * {
	grid-area: 1/1/-1/-1;
}

.iframe-wrapper .useronline-browsing-page {
	display: none;
}

.iframe-wrapper .useronline-browsing-page.active {
	display: flex;
	justify-self: end;
	z-index: 15;
	color: #fff;
	margin: 20px auto 0;
	justify-content: space-between;
	width: 90%;
	flex-direction: row-reverse;
}

.iframe-wrapper .useronline-browsing-page.active .left {
	display: flex;
}

.iframe-wrapper .useronline-browsing-page.active .left > * {
	margin-left: 5px;
}

.iframe-wrapper .useronline-browsing-page.active .right span {
	padding: 5px;
	background-color: red;
	font-weight: bold;
}

@media (max-width: 1550px) {
	.content-wrapper .content-inner {
		width: 100%;
		padding: 110px 15px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-content: unset;
		grid-gap: 25px;
	}

	.content-wrapper .content-inner iframe {
		width: 100%:
	}

	.content-wrapper .content-inner .image,
	.content-wrapper .content-inner .content {
		width: unset;
	}

	.content-wrapper .content-inner .content .subject {
		font-size: 4.250rem;
	}
}

@media (max-width: 1023px) {
	.content-wrapper {
		height: unset;
	}

	.content-wrapper .content-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 650px) {
	.content-wrapper .content-inner iframe,
	.content-wrapper .content-inner .image {
		height: 50vw;
	}

	.content-wrapper .content-inner .content .subject {
		font-size: 3rem;
	}
}