html {
	scroll-behavior: smooth;
}

.static-loaded {
	opacity: 1;
}

.et_animated {
	opacity: 1 !important;
	animation: none !important;
}

.et_pb_video_box--static {
	position: relative;
	display: block;
	width: 100%;
	min-height: 320px;
	aspect-ratio: 16 / 9;
	border-radius: inherit;
	overflow: hidden;
	background: linear-gradient(135deg, #163150 0%, #2b76df 100%);
}

.et_pb_video_box--static::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 38%),
		linear-gradient(135deg, rgba(9, 22, 35, 0.2), rgba(9, 22, 35, 0.48));
}

.et_pb_video_overlay {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	cursor: pointer;
}

.et_pb_video_play {
	display: block;
	position: absolute;
	z-index: 100;
	left: 50%;
	top: 50%;
	margin-left: -1.5rem;
	margin-top: -1.5rem;
	font-size: 3rem;
	line-height: 3rem;
	color: #ffffff;
}

.et_pb_video_play::before {
	font-family: ETmodules;
	content: "I";
}

.et_pb_video_overlay_hover {
	position: absolute;
	inset: 0;
	background: transparent;
	transition: background 0.35s ease;
}

.et_pb_video:hover .et_pb_video_overlay_hover,
.et_pb_video:focus-within .et_pb_video_overlay_hover {
	background: rgba(0, 0, 0, 0.48);
}

.static-carousel {
	position: relative;
	padding: 0 56px;
	--static-carousel-gap: 18px;
	--static-visible: 3;
}

.static-carousel-viewport {
	overflow: hidden;
	width: 100%;
}

.static-carousel-track {
	display: flex;
	gap: var(--static-carousel-gap);
	align-items: stretch;
	transition: transform 0.6s ease;
	will-change: transform;
}

.static-carousel .slick-slide {
	flex: 0 0 calc((100% - (var(--static-visible) - 1) * var(--static-carousel-gap)) / var(--static-visible));
	min-width: 0;
	height: auto;
}

.static-carousel .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 12px 28px rgba(22, 49, 80, 0.22);
	color: #2b76df;
	transform: translateY(-50%);
	cursor: pointer !important;
}

.static-carousel .slick-arrow::before {
	font-family: ETmodules !important;
	content: attr(data-icon) !important;
	font-size: 32px;
	line-height: 1;
}

.static-carousel .slick-arrow::after {
	display: none !important;
	content: none !important;
}

.static-carousel .slick-prev {
	left: 0;
}

.static-carousel .slick-next {
	right: 0;
}

.static-carousel .slick-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.static-carousel .dcm-carousel-item,
.static-carousel .dcm-lightbox-ctrl,
.static-carousel figure {
	height: 100%;
}

.static-carousel .dcm-main-img,
.static-carousel img {
	display: block;
	width: 100%;
	height: auto;
}

.mobile_nav.opened .mobile_menu_bar::before {
	transform: rotate(90deg);
	display: inline-block;
}

.et_pb_map_container {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 340px;
	padding: clamp(20px, 4vw, 40px);
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(19, 34, 50, 0.88), rgba(43, 118, 223, 0.78)),
		url(../wp-content/uploads/2021/05/jess-watters-483666-unsplash.jpg) center/cover no-repeat;
	box-shadow: 0 20px 50px rgba(16, 30, 45, 0.18);
}

.et_pb_map_container .et_pb_map {
	display: none;
}

.et_pb_map_container .et_pb_map_pin {
	display: block !important;
	visibility: visible !important;
	max-width: 560px;
	padding: 24px 28px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 40px rgba(14, 26, 39, 0.2);
	color: #243444;
}

.et_pb_map_container .et_pb_map_pin h3 {
	margin-top: 0 !important;
	margin-bottom: 12px;
	color: #2b76df;
	font-size: clamp(22px, 3vw, 28px);
	line-height: 1.25;
}

.et_pb_map_container .infowindow p:last-child {
	padding-bottom: 0;
}

.et_pb_map_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.et_pb_map_action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.et_pb_map_action--primary {
	background: #2b76df;
	color: #ffffff !important;
}

.et_pb_map_action--secondary {
	background: #eef4fb;
	color: #2b76df;
}

@media (max-width: 980px) {
	.static-carousel {
		padding: 0 46px;
		--static-carousel-gap: 14px;
	}

	.static-carousel .slick-arrow {
		width: 42px;
		height: 42px;
	}

	.static-carousel .slick-arrow::before {
		font-size: 28px;
	}

	.et_pb_map_container {
		min-height: 300px;
	}
}

@media (max-width: 767px) {
	.static-carousel {
		padding: 0 18px;
		--static-carousel-gap: 12px;
	}

	.static-carousel .slick-arrow {
		width: 38px;
		height: 38px;
		background: rgba(255, 255, 255, 0.92);
	}

	.static-carousel .slick-prev {
		left: 4px;
	}

	.static-carousel .slick-next {
		right: 4px;
	}

	.et_pb_video_box--static {
		min-height: 220px;
	}

	.et_pb_map_container {
		min-height: 240px;
		padding: 18px;
	}

	.et_pb_map_container .et_pb_map_pin {
		padding: 18px;
	}

	.et_pb_map_actions {
		flex-direction: column;
	}
}