/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Version: 4.27.5.1767911174
Updated: 2026-01-08 22:26:14

*/

/** ==== GENERAL ==== **/
:root {
	--header-height: 125px;
	--mobile-header-height: 90px;
	--red: #FF0031;
	--yellow: #DCE13E;
}

/** TYPOGRAPHY **/
h1 {
	font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
	font-size: clamp(2.2rem, 6vw, 2.8rem);
}

/** HIGHLIGHT LINE **/
.highlight-line .et_pb_heading {
	margin-bottom: 30px !important;
}

.highlight-line h2 {
	display: inline;
	padding: 0px;
	background: linear-gradient(
		transparent 60%,
		var(--yellow) 60%
	);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	margin-bottom: 15px;
}

.highlight-line--blue h2 {
	background: linear-gradient(transparent 60%, rgba(1,73,200,.5) 60%);
}

.highlight-line--white h2 {
	background: linear-gradient(transparent 60%, #fff 60%);
}

.highlight-line--yellow h2 {
	background: linear-gradient(transparent 60%, var(--yellow) 60%);
}

.highlight-line--red h2 {
	background: linear-gradient(transparent 60%, var(--red) 60%);
}


/** HEADING TEXT OUTLINE **/
.text-outline h1 {
	color: transparent !important;
	-webkit-text-fill-color: transparent !important;
	-webkit-text-stroke: 1px #fff;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-weight: 800;
	line-height: 1.05;
}

/* Firefox fallback */
.text-outline h1 {
	text-shadow:
		1px 0 0 #fff, -1px 0 0 #fff,
		0 1px 0 #fff, 0 -1px 0 #fff,
		1px 1px 0 #fff, -1px -1px 0 #fff,
		-1px 1px 0 #fff, 1px -1px 0 #fff;
}

@supports (-webkit-touch-callout: none) {
	.text-outline{
		-webkit-text-stroke: 0;     /* turn off Safari stroke */
		text-shadow:
			1px 0 0 #fff, -1px 0 0 #fff,
			0 1px 0 #fff, 0 -1px 0 #fff,
			1px 1px 0 #fff, -1px -1px 0 #fff,
			-1px 1px 0 #fff, 1px -1px 0 #fff;
	}
}


/* Remove fallback where stroke is supported */
@supports (-webkit-text-stroke: 1px #fff) {
	.text-outline h1 {
		text-shadow: none;
	}
}


/*** Marquee Logo Slider ***/
.marquee-slider .dica_divi_carouselitem {
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.45);
	padding: 20px;
	border-radius: 8px;
}

.marquee-slider .swiper-container {
	overflow: visible;
}

/*** HEADER ***/
.header {
	height: var(--header-height);
	align-items: center;
	display: flex;
	background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.header__menu .et_pb_menu__wrap {
	justify-content: flex-end;
}

.header:has(.mobile_nav.opened) {
	background: #000;
}

/*** MOBILE MENU ***/
.header .et_mobile_menu {
	margin-left: -10%;
    width: 120%;
	top: 82px;
}

/** Animated background **/
.header::before {
	content: "";
	position: absolute;
	inset: 0;
	height: 0%;
	z-index: -1;     
	background: #000;
	transition: height 320ms cubic-bezier(.2,.8,.2,1);
}

.header.is-scrolled::before {
	height: 100%;
}

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

/** Heartbeat Line **/
.header svg.hb {
	display: none;
}

@media screen and (min-width: 981px) {
	.header svg.hb {
		display: flex;
	}

	.et-menu > li > a {
		position: relative;
		display: inline-block;
		padding-bottom: 18px;
	}

	.et-menu > li > a .hb {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 10px;
		width: 100%;
		height: 14px;
		pointer-events: none;
	}

	.et-menu > li > a .hb path {
		fill: none;
		stroke: var(--red);
		stroke-width: 2.5;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-dasharray: 1;
		stroke-dashoffset: 1;
		transition: stroke-dashoffset 420ms cubic-bezier(.2,.8,.2,1);
	}

	.et-menu > li:hover > a .hb path,
	.et-menu > li > a:hover .hb path,
	.et-menu > li > a:focus-visible .hb path {
		stroke-dashoffset: 0;
	}
}

.et-menu a:hover {
	opacity: 1 !important;
}

/*** HERO ***/
.hero {
	padding-top: calc(120px + var(--header-height)) !important;
	padding-bottom: 120px !important;
}

.hero--inner {
	padding-top: calc(60px + var(--header-height)) !important;
	padding-bottom: 60px !important;
}

/** SECTION HEARTBEAT **/
.heartbeat:before {
	content: '';
	width: 100%;
	min-width: 1440px;
	height: 100%;
	background-image: url("/wp-content/uploads/2026/01/heartbeat.svg");
	background-size: 100% 100%;
	position: absolute;
	display: flex;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/** CARD **/
/* .card {
padding: 25px;
transition: all .15s ease-in-out;
border-radius: 8px;
}

.card:hover {
box-shadow: 0px 5px 20px rgba(0,0,0,.2);
transform: translatey(-5px);
} */

.card-col {
	padding: 25px;
	transition: all .15s ease-in-out;
	border-radius: 8px;
}

.card-col:hover {
	box-shadow: 0px 5px 20px rgba(0,0,0,.2);
	background: #fff;
	transform: translatey(-5px);
}

/*** BLOG CARDS ***/
.main-blog .et_pb_blog_grid article {
	overflow: hidden;
	border: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
}

/* Image */
.main-blog .et_pb_post .entry-featured-image-url,
.main-blog .et_pb_post .et_pb_image_container {
	margin: 0;
}

.main-blog .et_pb_post .et_pb_image_container img {
	display: block;
	width: 100%;
	height: auto;
}

.main-blog .et_pb_post .et_pb_image_container {
	order: 2; 
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.main-blog .et_pb_post .post-content {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 2;
}

.main-blog .et_pb_post .entry-title {
	order: 1;
}

/* Title + red accent line */
.main-blog .et_pb_post .entry-title a {
	display: block;
	position: relative;
	padding-left: 14px;
	color: #fff;
	line-height: 1.2;
	border-left: 5px solid var(--red);
}

/* Hide excerpt */
.main-blog .et_pb_post .post-content p {
	display: none;
}

/* Read More as button */
.main-blog .et_pb_post a.more-link {
	display: inline-block;
	padding: 10px 16px;
	background: var(--red);
	color: #fff !important;
	border-radius: 8px 0px 8px 0px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1;
}

.main-blog .et_pb_blog_grid_wrapper {
	display: flex;
	gap: 24px;
}

.main-blog .et_pb_blog_grid_wrapper .et_pb_post {
	height: 100%;
}

/*** FOOTER ***/
/* === 2x2 Footer Button Grid === */
.footer-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* Make buttons full width */
.footer-buttons .et_pb_button_module_wrapper,
.footer-buttons .et_pb_button {
	width: 100%;
	text-align: center;
}

@media (max-width: 767px) {
	.footer-buttons {
		grid-template-columns: 1fr;
	}
}


/*** LOCATIONS ***/
/* Tabs */
.location-tabs {
	max-width: 1100px !important;
}

.location-tab {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 8px;
	transition: all 0.25s ease;
	width: 100%;
	text-align: center;
	width: calc(100% / 5 - 20px);
}

.location-tab:hover {
	background: rgba(255,255,255,0.15);
	cursor: pointer;
}

.location-tab.is-active {
	background: #fff;
	color: #ff0033;
}

@media screen and (max-width:950px) {
	.location-tab {
		width: calc(100% / 2 - 20px);
	}
}

@media screen and (max-width:500px) {
	.location-tab {
		width: 100%;
	}
}

/* Panels */
.location-panel {
	display: none;
	max-width: 1100px !important;
}

.location-panel.is-active {
	display: block;
}

.location-panel .et_pb_column {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.location__map, .location__map iframe {
	width: 100%;
}

.location__pin {
	width: calc(100% / 4 - 19px);
	min-width: 200px;
}

/*** SERVICES ***/
.services__toggle .et_pb_toggle_title {
	display: flex;
	align-items: center;
	gap: 15px;
}

.services__toggle .et_pb_toggle_title:before {
	position: relative;
}

.services__toggle .et_pb_toggle_content {
	margin-left: 30px;
}

.services__toggle .et_pb_toggle_content ul {
	margin-left: 15px;
	margin-top: 15px;
}