.elementor-widget-container a,
.content p a {
    color: #0d79e5;
}

/* Modal Background */
.modal {
	display: none;
	place-content: center;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

/* Modal Box */
.modal-content {
	display: grid;
	place-content: center;
	position: relative;
	animation: fadeIn 0.3s ease;
}

/* Close Button */
.closeModal {
	width: 30px;
	height: 30px;
	background-color: #fff;
	border-radius: 30px;
	color: #000;
	border: 1px solid #ccc;
	display: grid;
	place-content: center;
	position: absolute;
	right: 15px;
	top: 10px;
	font-size: 24px;
	z-index: 10;
	cursor: pointer;
}
.open-modal {
	cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.video-wrapper {
	height: 100%;
}
.video-wrapper video {
	max-width: 460px;
	height: 75vh;
}