/**
 * Webinar recording page.
 */

.webinar-recording {
	--webinar-coral: #ff6a53;
	--webinar-coral-dark: #e8523d;
	--webinar-navy: #303967;
	--webinar-navy-soft: #555b7d;
	--webinar-peach: #fff1ee;
	--webinar-white: #fff;
	--webinar-shadow: 0 24px 70px rgba(48, 57, 103, 0.14);
	color: var(--webinar-navy);
	font-family: "Roboto", sans-serif;
	overflow: hidden;
}

.webinar-recording *,
.webinar-recording *::before,
.webinar-recording *::after {
	box-sizing: border-box;
}

.webinar-landing-page #webinar_alert {
	display: none !important;
}

.webinar-recording__hero {
	background:
		radial-gradient(circle at 12% 24%, rgba(255, 106, 83, 0.12) 0 4px, transparent 5px) 0 0 / 46px 46px,
		linear-gradient(145deg, #fff 0%, #fff 55%, #fff5f3 100%);
	padding: clamp(70px, 8vw, 120px) 0 clamp(70px, 7vw, 105px);
	position: relative;
}

.webinar-recording__container {
	position: relative;
	z-index: 2;
}

.webinar-recording__heading {
	height: auto;
	margin-bottom: clamp(28px, 3.5vw, 46px);
	/* max-width: 1050px; */
	min-height: 0;
}

.webinar-recording__heading h1 {
	color: var(--webinar-navy);
	font-size: clamp(54px, 6vw, 86px);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 0.94;
	margin: 0 0 clamp(16px, 2vw, 24px);
}

.webinar-recording__heading h1::after {
	background: var(--webinar-coral);
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 14px;
	margin-left: 12px;
	width: 14px;
}

.webinar-recording__heading p {
	color: var(--webinar-navy-soft);
	font-size: clamp(18px, 1.7vw, 23px);
	line-height: 1.5;
	margin: 0;
}

.webinar-recording__content {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.7fr);
}

.webinar-recording__content--without-video {
	display: block;
}

.webinar-recording__content--without-video .webinar-recording__form {
	margin: 0 auto;
	max-width: 540px;
}

.webinar-recording__video {
	background: var(--webinar-coral);
	border-radius: 38px 38px 12px;
	box-shadow: var(--webinar-shadow);
	padding: 9px;
	position: relative;
}

.webinar-recording__video::before {
	border: 2px solid rgba(255, 106, 83, 0.32);
	border-radius: 50%;
	content: "";
	height: 150px;
	left: -52px;
	position: absolute;
	top: -48px;
	width: 150px;
	z-index: -1;
}

.webinar-recording__video-frame {
	aspect-ratio: 16 / 9;
	background: var(--webinar-navy);
	border-radius: 30px 30px 8px;
	height: auto;
	overflow: hidden;
	position: relative;
}

.webinar-recording__video-frame iframe {
	border: 0;
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.webinar-recording__form {
	display: flex;
	min-width: 0;
}

.webinar-registration-form {
	align-self: stretch;
	background: var(--webinar-white);
	border: 1px solid rgba(48, 57, 103, 0.08);
	border-radius: 30px;
	box-shadow: var(--webinar-shadow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 38px 32px;
	width: 100%;
}

.webinar-registration-form__title {
	color: var(--webinar-navy);
	font-size: 29px;
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.08;
	margin: 0 0 25px;
}

.webinar-registration-form__fields {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
}

.webinar-registration-form input {
	appearance: none;
	background: #f5f5f7;
	border: 2px solid transparent;
	border-radius: 999px;
	color: var(--webinar-navy) !important;
	font-size: 16px;
	height: 58px;
	margin: 0;
	padding: 0 21px;
	width: 100%;
}

.webinar-registration-form input::placeholder {
	color: #85889a;
	opacity: 1;
}

.webinar-registration-form input:focus {
	background: #fff;
	border-color: var(--webinar-coral);
	outline: none;
}

.webinar-registration-form__submit {
	align-items: center;
	background: var(--webinar-coral);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 13px 28px rgba(255, 106, 83, 0.3);
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 900;
	justify-content: center;
	line-height: 1.15;
	min-height: 58px;
	padding: 14px 24px;
	text-align: center;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	width: 100%;
}

.webinar-registration-form__submit:hover,
.webinar-registration-form__submit:focus {
	background: var(--webinar-coral-dark);
	box-shadow: 0 16px 32px rgba(255, 106, 83, 0.35);
	color: #fff;
	transform: translateY(-2px);
}

.webinar-registration-form__note {
	color: #777b8f;
	font-size: 12px;
	line-height: 1.45;
	margin: 15px 5px 0;
}

.webinar-registration-form__alert-content {
	padding: 20px 35px 20px 25px;
}

.webinar-registration-form .close-check-list-alert {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--webinar-coral);
	display: flex;
	font-size: 28px;
	justify-content: center;
	line-height: 1;
	padding: 0;
}

.webinar-recording__decoration {
	border: 2px solid rgba(255, 106, 83, 0.22);
	border-radius: 50%;
	pointer-events: none;
	position: absolute;
}

.webinar-recording__decoration--left {
	bottom: -190px;
	height: 420px;
	left: -160px;
	width: 420px;
}

.webinar-recording__decoration--right {
	height: 300px;
	right: -115px;
	top: 70px;
	width: 300px;
}

.webinar-landing-page .footer-menu,
.webinar-landing-page .call-center-wrapper {
	display: none;
}

.webinar-landing-page .footer-wrapper.desktop > .container-1350 > .row > .col-2 {
	align-items: center;
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.webinar-landing-page .footer-wrapper.desktop .map-wrapper {
	display: none;
}

.webinar-landing-page .footer-wrapper.desktop .consultation-btn {
	width: auto;
}

.webinar-landing-page footer a.consultation-btn,
.webinar-landing-page footer a.consultation-btn:hover,
.webinar-landing-page footer a.consultation-btn:focus {
	color: #fff;
	text-decoration: none;
}

.webinar-landing-page .footer-wrapper.mobile .map-wrapper {
	display: none;
}

.webinar-landing-page .footer-wrapper.mobile .footer-logo-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0;
	max-width: none;
	width: 100%;
}

.webinar-landing-page .footer-wrapper.mobile .footer-logo-wrapper .consultation-btn {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	width: auto;
	z-index: 1001;
}

.webinar-landing-page .footer-wrapper.mobile .footer-logo-wrapper .consultation-btn .button {
	max-width: none;
}

@media (max-width: 1199px) {
	.webinar-recording__content {
		grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
	}

	.webinar-registration-form {
		padding: 30px 25px;
	}
}

@media (max-width: 991px) {
	.webinar-recording__content {
		grid-template-columns: 1fr;
	}

	.webinar-recording__form {
		margin: 0 auto;
		max-width: 720px;
		width: 100%;
	}

	.webinar-registration-form {
		padding: 32px;
	}

	.webinar-registration-form__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.webinar-registration-form__submit {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.webinar-recording__hero {
		padding: 58px 0 70px;
	}

	.webinar-recording__heading h1 {
		font-size: clamp(43px, 13vw, 62px);
	}

	.webinar-recording__heading h1::after {
		height: 10px;
		margin-left: 8px;
		width: 10px;
	}

	.webinar-recording__heading p {
		font-size: 18px;
	}

	.webinar-recording__video {
		border-radius: 26px 26px 9px;
		padding: 6px;
	}

	.webinar-recording__video-frame {
		border-radius: 21px 21px 5px;
	}

	.webinar-registration-form {
		border-radius: 25px;
		padding: 27px 22px;
	}

	.webinar-registration-form__title {
		font-size: 25px;
	}

	.webinar-registration-form__fields {
		grid-template-columns: 1fr;
	}

	.webinar-registration-form__submit {
		grid-column: auto;
	}
}

@media (max-width: 460px) {
	.webinar-landing-page .footer-wrapper.mobile .footer-logo-wrapper {
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.webinar-recording *,
	.webinar-recording *::before,
	.webinar-recording *::after {
		transition-duration: 0.01ms !important;
	}
}
