
.video-widget, .video-widget-mobile {
	color: white;
	font-family: "Rubik", Sans-serif;
}

.video-widget p,
.video-widget h4 {
	margin: 0;
}

.video-widget {
	display: flex;
	padding: 40px;
	gap: 40px;
	background: rgba(255,255,255,0.10);
	backdrop-filter: blur(10px);
	border-radius: 40px;
	border: 1px solid #1252FA;

	@media (max-width: 1600px) {
		flex-direction: column;
		max-width: 1184px;
		margin: 0 auto;
	}

}

.video-widget__containers {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 0 0 34.3%;

	@media (max-width: 1600px) {
		flex-direction: row;
	}
}

.video-widget__player {
	flex: 0 0 64%;
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
}

.video-widget__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .35s ease;
	border-radius: 20px;
}

.video-widget__video.is-active {
	opacity: 1;
}

.video-widget__container {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 30px;
	border-radius: 20px;
	background: #031137;
	cursor: pointer;
	--progress: 0%;

	@media (max-width: 1600px) {
		flex: 1;
	}
}

.video-widget__container::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,#052479 var(--progress),transparent var(--progress));
	z-index: 0;
	pointer-events: none;
}

.video-widget__container > * {
	position: relative;
	z-index: 1;
}

.video-widget__container-header {
	display: flex;
	align-items: center;
	gap: 20px;

	@media (max-width: 1600px) {
		flex-direction: column;
		align-items: start;
	}
}

.video-widget__container .number {
	background: #1252FA;
	font-size: 20px;
	line-height: 130%;
	border-radius: 50%;
	display: flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
}

.video-widget .title {
	font-size: 30px;
	font-weight: 500;
	line-height: 130%;
	margin: 0;
}

.video-widget .subtitle {
	font-size: 20px;
	line-height: 130%;
	font-weight: 400;
}

.video-widget p {
	font-size: 16px;
	line-height: 130%;
}

.video-widget__player video {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
	transition: opacity .35s ease;
}

.video-widget__player video.is-loading {
	opacity: 0;
}

.video-widget__player, video{
	border-radius: 20px;
}
.video-widget--desktop {
	@media (max-width: 991px) {
		display: none;
	}
}

.video-widget-mobile {
	display: none;

	@media (max-width: 991px) {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
}

.mobile-video{
	aspect-ratio: 25 / 14;
}

.video-widget-mobile .number {
	position: relative;
	width: 40px;
	height: 40px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: white;
	font-weight: 500;
}

.video-widget-mobile .progress-ring {
	position: absolute;
	width: 100%;
	height: 100%;
	transform: rotate(0deg);
	pointer-events: none;
}

.progress-ring__bg {
	stroke: black;
	stroke-width: 6;
}

.progress-ring__progress {
	stroke: #1252FA;
	stroke-width: 6;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	stroke-linecap: round;
	stroke-dasharray: 283;
	stroke-dashoffset: 283;
	transition: stroke-dashoffset .15s linear;
}
.video-widget-mobile__item{
	background-color: #031137;
	padding: 20px;
	border-radius: 20px;
	color:#FFFFFF;
}
.video-widget-mobile__header{
	display: flex;
	align-items: center;
	gap: 20px;
}
.video-widget-mobile__header h3{
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}
.video-widget-mobile__item h4{
	font-family: Rubik;
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	margin: 10px 0;
}
.video-widget-mobile__item p{
	margin-bottom: 13px;
	font-weight: 300;
	font-size: 16px;
	line-height: 130%;

}
