/* ==========================================================
   MOBILE MENU
========================================================== */
:root {
	--mobile-header-height: 80px;
}

@media screen and (max-width: 1200px) {
	#header-mobile {
		display: flex !important;
	}
	#header-top,
	#header-bottom {
		display: none;
		margin: 0 !important;
	}
}

#header-mobile {
	display: none;
}

.pe-header-menu {
	display: block;
}

@media (max-width: 1024px) {
	#off-canvas-21f002f .e-off-canvas__main {
		top: var(--mobile-header-height);
		height: calc(100dvh - var(--mobile-header-height));
	}
}
.pe-mobile-menu {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
}

.pe-mobile-trigger {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 16px;
	padding: 18px 20px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
}
button.pe-mobile-trigger {
	display: flex;
	border: none;
}
button.pe-mobile-trigger:focus {
	background: none;
}
.pe-mobile-trigger:hover {
	background: none !important;
}

.pe-mobile-trigger__icon {
	width: 34px;
	height: 34px;
	border: 1.5px solid var(--pe-blue);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
}

.pe-mobile-trigger__icon img {
	width: 18px;
	height: 18px;
	display: block;
	object-fit: contain;
}

.pe-mobile-trigger__label {
	flex: 1;
	font-size: 14px;
	color: #023e61;
	text-transform: uppercase;
}

.pe-mobile-trigger__chevron {
	width: 18px;
	height: 18px;
	transition: transform 0.25s ease;
}

.pe-mobile-trigger__chevron svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #023e61;
	stroke-width: 2;
}

.pe-mobile-item.is-open .pe-mobile-trigger__chevron {
	transform: rotate(180deg);
}

/* ==========================================================
 PANEL
========================================================== */

.pe-mobile-panel {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 20px;
	transition:
		max-height 0.45s ease,
		opacity 0.3s ease,
		padding 0.3s ease;
}

.pe-mobile-item.is-open .pe-mobile-panel {
	opacity: 1;
	padding: 20px 20px;
	max-height: 610px !important;
}

/* ==========================================================
   COLUMNS
========================================================== */

.pe-mobile-column {
	margin-top: 24px;
}

.pe-mobile-column:first-child {
	margin-top: 0;
}

.pe-mobile-column__title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: #0b2f5b;
}

/* ==========================================================
 LIST
========================================================== */

.pe-mobile-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pe-mobile-list__item {
	margin: 0;
}

.pe-mobile-list__item + .pe-mobile-list__item {
	margin-top: 10px;
}

.pe-mobile-list__link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #1b1b1b;
	transition: 0.2s;
}

.pe-mobile-list__link:hover {
	color: #009da5;
}

.pe-mobile-list__icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border: 1px solid;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pe-mobile-list__icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.pe-mobile-list__text {
	font-size: 14px;
	line-height: 1.45;
}

/* ==========================================================
 CTA
========================================================== */

.pe-mobile-button-wrapper {
	margin-top: 30px;
}

.pe-mobile-button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 52px;
	padding: 14px 20px;
	background: #ffcc00;
	color: #023e61;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	transition: 0.25s;
}

.pe-mobile-button:hover {
	background: #00828a;
	color: #fff;
}

/* ==========================================================
 CONTACT
========================================================== */

.pe-mobile-contact {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 6px 16px;
	text-transform: uppercase;
	color: #023e61;
	font-size: 14px;
}

.pe-mobile-contact__icon {
	width: 34px;
	height: 34px;
	border: 1.5px solid var(--pe-blue);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
}

.pe-mobile-contact__icon img {
	width: 18px;
	height: 18px;
	display: block;
	object-fit: contain;
}

/* ==========================================================
 PHONE
========================================================== */

.pe-mobile-phone {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 16px;
	margin-bottom: 20px;
	padding-inline: 20px;
}

.pe-mobile-phone img {
	display: block;
	max-width: 120px !important;
	width: 100%;
	height: auto !important;
}

/* ==========================================================
 DESKTOP
========================================================== */

@media (min-width: 1025px) {
	.pe-mobile-menu {
		display: none;
	}
}
.pe-mobile-panel {
	overflow: hidden;
}
