.video-section {
	.heading-2 {
		font-size: 20px !important;
		font-weight: 700;
		margin-bottom: 20px;
	}

	.video-wrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;

		.video-wrapper__item {
			.video-wrapper__item-body {
				display: flex;
				flex-direction: column;
				overflow: hidden;
				padding: 0 !important;
				border-radius: 20px;
				border: 1px solid var(--deep-steel, #1e2939);
				background: linear-gradient(
					127deg,
					var(--oxford-blue, rgba(16, 24, 40, 0.3)) 0%,
					rgba(8, 12, 20, 0.3) 50%,
					var(--oxford-blue, rgba(16, 24, 40, 0.3)) 100%
				);
				transition: 0.3s all;

				&:hover {
					box-shadow: 0 0 20px 0 var(--neon-violet, #c27aff);
				}

				.heading-wrapper {
					padding: 30px;

					.heading-3 {
						font-size: 20px !important;
						font-weight: 400;
					}
				}
			}
		}
	}
}
