/* VIEN modern theme layer. */

@font-face {
	font-family: 'GothamFont';
	src:
		url('../fonts/webfonts/Gotham-Book.woff') format('woff'),
		url('../fonts/webfonts/Gotham-Book.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'GothamFont';
	src:
		url('../fonts/webfonts/Gotham-Medium.woff') format('woff'),
		url('../fonts/webfonts/Gotham-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'GothamFont';
	src:
		url('../fonts/webfonts/Gotham-Bold.woff') format('woff'),
		url('../fonts/webfonts/Gotham-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'GothamFont';
	src:
		url('../fonts/webfonts/Gotham-Thin.woff') format('woff'),
		url('../fonts/webfonts/Gotham-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

.material-symbols-outlined {
	display: inline-block;
	font-family: 'Material Symbols Outlined';
	font-style: normal;
	font-weight: 400;
	font-feature-settings: 'liga';
	font-variation-settings:
		'FILL' 0,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}

:root {
	--vien-container-max-width: 1440px;
	--vien-container-padding: clamp(1.25rem, 3.5vw, 3.125rem);
	--vien-font-family: 'GothamFont', Arial, Helvetica, sans-serif;
	--vien-font-weight-book: 400;
	--vien-font-weight-medium: 500;
	--vien-color-navy: #0e192c;
	--vien-color-blue: #0566bf;
	--vien-color-green: #90d345;
	--vien-color-white: #fff;
}

body {
	overflow-x: clip;
	font-family: var(--vien-font-family);
	font-weight: var(--vien-font-weight-book);
}

html {
	overflow-x: clip;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
}

.container-fluid {
	width: 100%;
	max-width: var(--vien-container-max-width);
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--vien-container-padding);
	padding-left: var(--vien-container-padding);
}

@media (max-width: 767.98px) {
	.row.gx-5 {
		--bs-gutter-x: 1.5rem;
	}
}

.home-clients__header,
.home-allies__heading,
.about-purpose__item h2,
.contact-information__group h2,
.contact-message__form h2 {
	--vien-marker-offset: 0px;
	--vien-marker-primary-height: 30px;
	--vien-marker-gap: 4px;
	--vien-marker-secondary-height: 12px;
	--vien-marker-secondary-color: var(--vien-color-blue);
	position: relative;
}

.home-clients__header::before,
.home-clients__header::after,
.home-allies__heading::before,
.home-allies__heading::after,
.about-purpose__item h2::before,
.about-purpose__item h2::after,
.contact-information__group h2::before,
.contact-information__group h2::after,
.contact-message__form h2::before,
.contact-message__form h2::after {
	position: absolute;
	left: 0;
	width: 2px;
	border-radius: 2px;
	content: '';
}

.home-clients__header::before,
.home-allies__heading::before,
.about-purpose__item h2::before,
.contact-information__group h2::before,
.contact-message__form h2::before {
	top: var(--vien-marker-offset);
	height: var(--vien-marker-primary-height);
	background: var(--vien-color-green);
}

.home-clients__header::after,
.home-allies__heading::after,
.about-purpose__item h2::after,
.contact-information__group h2::after,
.contact-message__form h2::after {
	top: calc(
		var(--vien-marker-offset) +
		var(--vien-marker-primary-height) +
		var(--vien-marker-gap)
	);
	height: var(--vien-marker-secondary-height);
	background: var(--vien-marker-secondary-color);
}

/* ==================================================
   HOME CLIENTS
   ================================================== */

.home-clients {
	position: relative;
	z-index: 2;
	margin-top: -145px;
	min-height: 456px;
	padding: 205px 0 85px;
	overflow: hidden;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.07) 1px, transparent 1px),
		#f9f9f9;
	background-size: 16px 16px;
	clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
}



.home-clients__header {
	--vien-marker-primary-height: 44px;
	--vien-marker-secondary-height: 16px;
	max-width: 155px;
	min-height: 64px;
	padding-left: 18px;
	text-transform: uppercase;
}

.home-clients__title {
	margin: 0;
	color: var(--vien-color-blue);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.45;
	letter-spacing: 0.72px;
}

.home-clients__carousel {
	--f-carousel-gap: 34px;
	--f-carousel-slide-width: calc((100% - 102px) / 4);
	--f-transition-duration: 0.55s;
	overflow: hidden;
}

.home-clients__carousel .f-carousel__viewport {
	overflow: hidden;
}

.home-clients__slide {
	display: flex;
	height: 92px;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	background: transparent;
}

.home-clients__logo {
	width: 100%;
	height: 72px;
}

.home-clients__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.82;
}

@media (max-width: 1199.98px) {
	.home-clients__carousel {
		--f-carousel-slide-width: calc((100% - 68px) / 3);
	}
}

@media (max-width: 767.98px) {
	.home-clients {
		margin-top: -60px;
		min-height: 440px;
		padding: 130px 0 70px;
		clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
	}

	.home-clients__header {
		margin-bottom: 38px;
	}

	.home-clients__title {
		font-size: 17px;
	}

	.home-clients__carousel {
		--f-carousel-gap: 16px;
		--f-carousel-slide-width: calc((100% - 16px) / 2);
	}

	.home-clients__slide {
		height: 100px;
		padding: 12px;
	}

	.home-clients__logo {
		height: 72px;
	}
}

@media (max-width: 479.98px) {
	.home-clients__carousel {
		--f-carousel-slide-width: 100%;
	}
}

/* ==================================================
   SITE FOOTER - BOOTSTRAP
   ================================================== */

.site-footer {
	position: relative;
	clear: both;
	width: 100%;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.66);
	font-size: 11px;
}

.site-footer__main {
	min-height: 496px;
	padding: 128px 0 22px;
	background: var(--vien-color-navy);
}



.site-footer__brand {
	display: block;
	width: 286px;
	height: 211px;
}

.site-footer__brand img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-footer__newsletter {
	display: flex;
	width: 100%;
	max-width: 390px;
	gap: 24px;
	margin-left: auto;
}

.site-footer__newsletter input {
	width: 230px;
	height: 46px;
	padding: 0 16px;
	border: 0;
	border-radius: 0;
	background: var(--vien-color-white);
	color: var(--vien-color-navy);
	font: inherit;
	text-transform: uppercase;
}

.site-footer__newsletter input::placeholder {
	color: #a6a6a6;
}

.site-footer__newsletter button {
	width: 136px;
	height: 46px;
	border: 0;
	border-radius: 0;
	background: var(--vien-color-blue);
	color: var(--vien-color-white);
	font-size: 11px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}



.site-footer__title {
	margin: 0 0 22px;
	color: var(--vien-color-white);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.48px;
	text-transform: uppercase;
}

.site-footer__menu,
.site-footer__social {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu {
	display: grid;
	gap: 14px;
}

.site-footer__social {
	display: grid;
	width: 74px;
	grid-template-columns: repeat(3, 20px);
	gap: 12px 8px;
}

.site-footer__menu a {
	display: block;
	padding: 0;
	color: inherit;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--vien-color-green);
}

.site-footer__social li a {
	display: block;
	width: 20px;
	height: 20px;
	border: 0;
	background-color: transparent;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px;
	font-size: 0;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.site-footer__social .facebook {
	grid-area: 1 / 1;
}

.site-footer__social .linkedin {
	grid-area: 1 / 2;
}

.site-footer__social .instagram {
	grid-area: 1 / 3;
}

.site-footer__social .youtube {
	grid-area: 2 / 1;
}

.site-footer__social .twitter {
	grid-area: 2 / 2;
}

.site-footer__social li.facebook a {
	background-image: url(../img/ic-facebook.svg);
}

.site-footer__social li.linkedin a {
	background-image: url(../img/ic-linkedin.svg);
}

.site-footer__social li.twitter a {
	background-image: url(../img/ic-twitter.svg);
}

.site-footer__social li.instagram a {
	background-image: url(../img/ic-instagram.svg);
}

.site-footer__social li.youtube a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vien-color-white);
}

.site-footer__social li.youtube .material-symbols-outlined {
	font-size: 18px;
}

.site-footer__social li a:hover,
.site-footer__social li a:focus {
	opacity: 1;
}

.site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: 87px;
	padding-top: 23px;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	color: rgba(255, 255, 255, 0.72);
	font-size: 9px;
	line-height: 1.4;
	letter-spacing: 0.18px;
	text-transform: uppercase;
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__legal a {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 991.98px) {
	.site-footer__main {
		padding: 76px 0 28px;
	}

	.site-footer__brand {
		margin-bottom: 48px;
		transform: none;
	}

	.site-footer__newsletter {
		max-width: 100%;
		gap: 12px;
		margin-right: 0;
		margin-left: 0;
	}

	.site-footer__newsletter input,
	.site-footer__newsletter button {
		flex: 1 1 0;
		width: auto;
	}


}

@media (max-width: 767.98px) {
	.site-footer__main {
		padding: 60px 0;
	}

	.site-footer .row {
		--bs-gutter-x: 1.5rem;
	}

	.site-footer__content {
		margin-right: 0;
		margin-left: 0;
	}

	.site-footer__brand {
		width: 190px;
		height: 140px;
		margin-right: auto;
		margin-left: auto;
	}

	.site-footer__newsletter {
		width: 100%;
		max-width: none;
		flex-direction: column;
		gap: 12px;
		margin-right: 0;
		margin-left: 0;
	}

	.site-footer__newsletter input,
	.site-footer__newsletter button {
		flex-basis: auto;
		width: 100%;
	}



	.site-footer__legal {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 48px;
	}
}

/* ==================================================
   SITE HEADER - BOOTSTRAP
   ================================================== */

.site-header {
	position: relative;
	z-index: 1030;
	width: 100%;
	background: var(--vien-color-navy);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__container {
	min-height: 129px;
	padding-top: 14px;
	padding-bottom: 29px;
}

.site-header__brand {
	flex: 0 0 114px;
	width: 114px;
	height: 85px;
}

.site-header__brand img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header__collapse {
	min-width: 0;
	padding-top: 40px;
}

.site-header__services {
	flex-direction: row;
	gap: 34px;
	margin-left: 54px;
}

.site-header__services > li {
	list-style: none;
}

.site-header__services > .menu-item-home,
.site-header__services > .l_hidden {
	display: none;
}

.site-header__services > li > a {
	display: block;
	padding: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.7px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-header__services > li > a:hover,
.site-header__services > li.current-menu-item > a,
.site-header__services > li.current_page_item > a {
	color: var(--vien-color-green);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 34px;
}

.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.7px;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__phone .material-symbols-outlined {
	flex: 0 0 22px;
	font-size: 22px;
}

.site-header__phone:hover {
	color: var(--vien-color-green);
}

.site-header__language .dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.7px;
}

.site-header__language .dropdown-toggle::after {
	display: none;
}

.site-header__language .material-symbols-outlined {
	font-size: 20px;
}

.site-header__language .dropdown-menu {
	min-width: 130px;
	margin-top: 12px;
	border-color: rgba(128, 129, 129, 0.25);
	border-radius: 0;
}

.site-header__language .dropdown-item {
	font-size: 13px;
}

.site-header__language .dropdown-item.active {
	background: #0566bf;
}

.site-header__contact {
	padding: 15px 30px;
	border: 1px solid #90d345;
	border-radius: 0;
	background: #90d345;
	color: #fff;
	font-size: 13px;
	font-weight: var(--vien-font-weight-medium);
	line-height: normal;
	letter-spacing: 0.39px;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-header__contact:hover,
.site-header__contact:focus {
	border-color: #78b833;
	background: #78b833;
	color: #fff;
}

.site-header__toggler {
	border: 0;
	border-radius: 0;
	box-shadow: none !important;
}

.site-header__toggler .material-symbols-outlined {
	color: var(--vien-color-white);
	font-size: 32px;
}

@media (max-width: 1199.98px) {
	.site-header__services,
	.site-header__actions {
		gap: 20px;
	}

	.site-header__services {
		margin-left: 30px;
	}

	.site-header__services > li > a,
	.site-header__phone,
	.site-header__language .dropdown-toggle {
		font-size: 12px;
		letter-spacing: 0.35px;
	}

	.site-header__contact {
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media (max-width: 991.98px) {
	.site-header__container {
		min-height: 88px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.site-header__brand {
		flex-basis: 91px;
		width: 91px;
		height: 68px;
	}

	.site-header__collapse {
		flex-basis: 100%;
		padding: 24px 0 10px;
	}

	.site-header__services {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
	}

	.site-header__services > li > a {
		padding: 12px 0;
		font-size: 14px;
	}

	.site-header__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.site-header__phone,
	.site-header__language .dropdown-toggle {
		font-size: 14px;
	}

	.site-header__contact {
		width: 100%;
	}
}

/* ==================================================
   HOME HERO - FANCYAPPS CAROUSEL
   ================================================== */

.home-hero {
	position: relative;
	width: 100%;
	height: 753px;
	overflow: hidden;
	background: #f9f9f9;
}

.home-hero__carousel {
	--f-carousel-gap: 0;
	--f-carousel-slide-width: 100%;
	--f-transition-duration: 0.65s;
	width: 100%;
	height: 100%;
}

.home-hero__carousel .f-carousel__viewport,
.home-hero__carousel .f-carousel__track,
.home-hero__viewport {
	height: 100%;
}

.home-hero__slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #f9f9f9;
}

.home-hero__media {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
}

.home-hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	transform: scaleX(-1);
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(249, 249, 249, 0.98) 0%,
		rgba(249, 249, 249, 0.94) 26%,
		rgba(249, 249, 249, 0.7) 39%,
		rgba(249, 249, 249, 0) 61%
	);
}

.home-hero__container {
	position: relative;
	z-index: 2;
	height: 100%;
}

.home-hero__content {
	width: 100%;
	max-width: 456px;
	transform: translateY(-13px);
}

.home-hero__title {
	max-width: 428px;
	margin: 0;
	color: var(--vien-color-navy);
	font-family: var(--vien-font-family);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.333;
	letter-spacing: 1.44px;
	text-transform: uppercase;
}

.home-hero__title span {
	color: var(--vien-color-blue);
}

.home-hero__description {
	max-width: 428px;
	margin: 40px 0 0;
	color: var(--vien-color-navy);
	font-family: var(--vien-font-family);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.45;
}

.home-hero__actions {
	gap: 30px;
	margin-top: 55px;
}

.home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 15px 27px;
	border-radius: 0;
	font-family: var(--vien-font-family);
	font-size: 13px;
	font-weight: var(--vien-font-weight-medium);
	line-height: 1;
	letter-spacing: 0.39px;
	text-transform: uppercase;
	white-space: nowrap;
}

.home-hero__button--primary {
	padding-right: 29px;
	padding-left: 29px;
	border-color: var(--vien-color-blue);
	background: var(--vien-color-blue);
	color: var(--vien-color-white);
}

.home-hero__button--primary:hover,
.home-hero__button--primary:focus {
	border-color: #0459a6;
	background: #0459a6;
	color: var(--vien-color-white);
}

/* ==================================================
   HOME ALLIES
   ================================================== */

.home-allies {
	width: 100%;
	min-height: 210px;
	padding: 68px 0 67px;
	background: var(--vien-color-white);
}

.home-allies__layout {
	display: flex;
	align-items: flex-start;
	gap: 90px;
}

.home-allies__heading {
	--vien-marker-primary-height: 45px;
	--vien-marker-secondary-height: 16px;
	display: flex;
	flex: 0 0 218px;
	min-height: 75px;
	align-items: flex-start;
	padding-left: 18px;
}

.home-allies__title {
	width: 200px;
	margin: 0;
	color: var(--vien-color-blue);
	font-family: var(--vien-font-family);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.home-allies__logos {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: flex-start;
	gap: 115px;
	min-width: 0;
	padding-top: 0;
}

.home-allies__logo {
	position: relative;
	flex: 0 1 auto;
	height: 53px;
}

.home-allies__logo img {
	display: block;
	width: auto;
	height: 100%;
	object-fit: contain;
}

.home-allies__logo--fundapec {
	width: 144px;
	height: 53px;
}

.home-allies__logo--fundapec img {
	mix-blend-mode: luminosity;
}

.home-allies__logo--aenor {
	width: 163px;
	height: 53px;
}

.home-allies__logo--juego-serio {
	width: 132px;
	height: 53px;
}

.home-allies__logo--connect-americas {
	width: 216px;
	height: 53px;
	overflow: hidden;
}

.home-allies__logo--connect-americas img {
	display: block;
	width: auto;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1199.98px) {
	.home-allies__layout {
		gap: 50px;
	}

	.home-allies__logos {
		gap: 35px;
	}

	.home-allies__logo {
		max-width: 20%;
	}
}

@media (max-width: 767.98px) {
	.home-allies {
		padding: 48px 0;
	}

	.home-allies__layout {
		flex-direction: column;
		gap: 32px;
	}

	.home-allies__heading {
		flex-basis: auto;
		min-height: 60px;
	}

	.home-allies__logos {
		display: grid;
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}

	.home-allies__logo {
		width: 100%;
		max-width: 180px;
		margin: 0 auto;
	}
}

@media (max-width: 359.98px) {
	.home-allies__logos {
		grid-template-columns: 1fr;
	}
}

/* ==================================================
   HOME ABOUT
   ================================================== */

.home-about {
	position: relative;
	min-height: 925px;
	padding: 98px 0;
	background-color: #f9f9f9;
	background-image:
		radial-gradient(circle, rgba(14, 25, 44, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, #f9f9f9 0%, #fff 100%);
	background-position: 0 0, 0 0;
	background-size: 16px 16px, 100% 100%;
}



.home-about__media {
	width: 100%;
	height: 729px;
	overflow: hidden;
}

.home-about__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-about__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	width: 100%;
	max-width: 428px;
}

.home-about__eyebrow {
	margin: 0 0 20px;
	color: var(--vien-color-blue);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.home-about__title {
	margin: 0;
	color: var(--vien-color-navy);
	font-family: var(--vien-font-family);
	font-size: 36px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.333;
	letter-spacing: 1.44px;
	text-transform: uppercase;
}

.home-about__description {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 20px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.45;
}

.home-about__benefits {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-about__benefits li {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--vien-color-navy);
	font-size: 20px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.45;
}

.home-about__check {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
}

.home-about__button {
	display: inline-flex;
	min-width: 167px;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
	padding: 15px 30px;
	border: 1px solid var(--vien-color-navy);
	border-radius: 0;
	color: var(--vien-color-navy);
	font-size: 13px;
	font-weight: var(--vien-font-weight-medium);
	line-height: 1;
	letter-spacing: 0.39px;
	text-transform: uppercase;
}

.home-about__button:hover,
.home-about__button:focus {
	border-color: var(--vien-color-navy);
	background: var(--vien-color-navy);
	color: var(--vien-color-white);
}

@media (min-width: 1200px) {
	.home-about .container-fluid {
		padding-right: 164px;
	}


}

@media (max-width: 1199.98px) {
	.home-about {
		min-height: auto;
		padding: 80px 0;
	}



	.home-about__media {
		height: 620px;
	}
}

@media (max-width: 991.98px) {


	.home-about__media {
		height: min(620px, 90vw);
	}

	.home-about__content {
		max-width: 680px;
	}
}

@media (max-width: 767.98px) {
	.home-about {
		padding: 60px 0;
		background-size: 14px 14px, 100% 100%;
	}

	.home-about__media {
		height: 115vw;
		max-height: 560px;
	}

	.home-about__content {
		gap: 32px;
	}

	.home-about__eyebrow,
	.home-about__description,
	.home-about__benefits li {
		font-size: 17px;
	}

	.home-about__title {
		font-size: clamp(28px, 8vw, 34px);
		line-height: 1.3;
	}

	.home-about__button {
		margin-top: 4px;
	}
}

/* ==================================================
   HOME SERVICES
   ================================================== */

.home-services {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #f9f9f9;
}

.home-services__stage {
	position: relative;
	height: min(87.917vw, 1266px);
	min-height: 675px;
	overflow: hidden;
}

.home-services__blue {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	left: 0;
	height: min(55.556vw, 800px);
	background: var(--vien-color-blue);
	clip-path: polygon(0 0, 100% 0, 100% 53.5%, 0 71%);
	pointer-events: none;
}

.home-services__heading-container {
	position: absolute;
	z-index: 3;
	top: min(6.806vw, 98px);
	left: 50%;
	transform: translateX(-50%);
}

.home-services__heading {
	width: min(34.375vw, 495px);
	margin: 0 auto;
	color: var(--vien-color-white);
	text-align: center;
	text-transform: uppercase;
}

.home-services__eyebrow {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: 0.8px;
}

.home-services__title {
	margin: 0;
	font-size: 36px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.333;
	letter-spacing: 1.44px;
}

.home-services__tabs-container {
	position: absolute;
	z-index: 4;
	top: min(27.569vw, 397px);
	left: 50%;
	height: min(15.903vw, 229px);
	transform: translateX(-50%);
}

.home-services__tabs {
	--home-services-tab-gap: clamp(32px, 2.986vw, 43px);
	display: flex;
	gap: var(--home-services-tab-gap);
	width: min(77.222vw, 1112px);
	margin: 0 auto;
}

.home-services__tab {
	position: relative;
	display: flex;
	flex: 0 0 calc((100% - (var(--home-services-tab-gap) * 2)) / 3);
	height: auto;
	aspect-ratio: 342 / 210;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 37px 30px 20px;
	border: 0;
	border-radius: 0;
	background: #f9f9f9;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.22);
	color: #b3b3b3;
	font-family: var(--vien-font-family);
	font-size: 24px;
	font-weight: 400;
	line-height: 60px;
	letter-spacing: 4.56px;
	text-align: center;
	text-transform: uppercase;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.animated-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform-origin: center;
	will-change: transform;
}

.animated-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.animated-icon .icon-primary,
.animated-icon .icon-accent {
	fill: none;
	stroke: currentColor;
	stroke-width: 2.25;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-services__tab.is-active .animated-icon .icon-accent {
	stroke: var(--vien-color-green);
}

.animated-icon svg path,
.animated-icon svg line,
.animated-icon svg polyline,
.animated-icon svg polygon,
.animated-icon svg circle,
.animated-icon svg rect {
	transform-box: fill-box;
	transform-origin: center;
	will-change: transform;
}

.home-services__tab-icon {
	width: 44px;
	height: 44px;
	filter: grayscale(1);
	opacity: 0.45;
}

.home-services__tab-arrow {
	position: absolute;
	bottom: -15px;
	left: 50%;
	display: none;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
	color: var(--vien-color-green);
	font-size: 30px;
}

.home-services__tab.is-active {
	color: var(--vien-color-navy);
}

.home-services__tab.is-active::after {
	position: absolute;
	bottom: -15px;
	left: 50%;
	width: 30px;
	height: 30px;
	transform: translateX(-50%) rotate(45deg);
	background: #f9f9f9;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.12);
	content: '';
}

.home-services__tab.is-active .home-services__tab-icon {
	filter: none;
	opacity: 1;
}

.home-services__tab.is-active .home-services__tab-arrow {
	z-index: 1;
	display: flex;
}

@media (prefers-reduced-motion: reduce) {
	.animated-icon,
	.animated-icon svg * {
		transform: none !important;
	}
}

.home-services__carousel {
	--f-carousel-gap: 0;
	--f-carousel-slide-width: 100%;
	--f-transition-duration: 0.6s;
	position: absolute;
	z-index: 1;
	top: min(27.361vw, 394px);
	left: 0;
	width: 100%;
	height: min(60.556vw, 872px);
	margin: 0;
}

.home-services__carousel .f-carousel__viewport {
	height: 100%;
	overflow: hidden;
}

.home-services__slide {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.home-services__image,
.home-services__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-services__image {
	display: block;
	object-fit: cover;
	object-position: center;
}

.home-services__overlay {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(3, 18, 35, 0.62) 0%, rgba(3, 18, 35, 0.38) 48%, rgba(3, 18, 35, 0.1) 100%);
}

.home-services__slide-container {
	position: relative;
	z-index: 2;
	height: 100%;
}

.home-services__content {
	position: absolute;
	top: 357px;
	left: 164px;
	display: flex;
	width: 542px;
	flex-direction: column;
	align-items: flex-start;
	gap: 39px;
	color: var(--vien-color-white);
}

.home-services__content h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 400;
	line-height: 48px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.home-services__content p {
	width: 428px;
	margin: 0;
	font-size: 20px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.45;
}

.home-services__button {
	min-height: 46px;
	padding: 15px 30px;
	border: 1px solid var(--vien-color-green);
	border-radius: 0;
	background: var(--vien-color-green);
	color: var(--vien-color-white);
	font-size: 13px;
	font-weight: var(--vien-font-weight-medium);
	line-height: 1;
	letter-spacing: 0.39px;
	text-transform: uppercase;
}

.home-services__button:hover,
.home-services__button:focus {
	border-color: #7fc230;
	background: #7fc230;
	color: var(--vien-color-white);
}

.home-services__navigation {
	position: absolute;
	z-index: 3;
	top: 489px;
	left: 50%;
	display: flex;
	justify-content: space-between;
	transform: translateX(-50%);
	pointer-events: none;
}

.home-services__arrow {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vien-color-white);
	pointer-events: auto;
}

.home-services__arrow .material-symbols-outlined {
	font-size: 25px;
}

@media (max-width: 1199.98px) {
	.home-services__eyebrow {
		margin-bottom: 1.39vw;
		font-size: clamp(15px, 1.39vw, 20px);
	}

	.home-services__title {
		font-size: clamp(24px, 2.5vw, 36px);
		line-height: 1.333;
	}

	.home-services__tab {
		min-width: 0;
		padding-top: 2.75vw;
		font-size: clamp(17px, 1.67vw, 20px);
		line-height: 50px;
		letter-spacing: clamp(2.4px, 0.32vw, 3.8px);
	}

	.home-services__tab-icon {
		width: 3.055vw;
		height: 3.055vw;
	}

	.home-services__tab-arrow {
		bottom: -1.05vw;
		width: 2.36vw;
		height: 2.36vw;
		font-size: 2.08vw;
	}

	.home-services__tab.is-active::after {
		bottom: -1.05vw;
		width: 2.08vw;
		height: 2.08vw;
	}

	.home-services__content {
		left: 11.39vw;
	}
}

@media (max-width: 767.98px) {
	.home-services__stage {
		height: 1065px;
		min-height: 0;
	}

	.home-services__blue {
		height: 455px;
		clip-path: polygon(0 0, 100% 0, 100% 68%, 0 78%);
	}

	.home-services__heading-container {
		top: 60px;
	}

	.home-services__heading {
		width: 100%;
	}

	.home-services__eyebrow {
		font-size: 17px;
	}

	.home-services__title {
		font-size: clamp(28px, 8vw, 34px);
	}

	.home-services__tabs-container {
		top: 300px;
		left: 0;
		width: 100%;
		height: 190px;
		transform: none;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.home-services__tabs {
		width: max-content;
		gap: 16px;
		padding: 0 20px 20px;
	}

	.home-services__tab {
		flex: 0 0 250px;
		height: 170px;
		padding-top: 28px;
		font-size: 17px;
		line-height: 45px;
		letter-spacing: 2px;
	}

	.home-services__carousel {
		top: 330px;
		height: 735px;
	}

	.home-services__content {
		top: 235px;
		left: var(--vien-container-padding);
		width: calc(100% - (var(--vien-container-padding) * 2));
		gap: 28px;
	}

	.home-services__content h3 {
		font-size: 25px;
		line-height: 1.35;
	}

	.home-services__content p {
		width: 100%;
		font-size: 17px;
	}

	.home-services__navigation {
		top: auto;
		bottom: 48px;
	}
}

.home-hero__button--outline {
	border-color: var(--vien-color-navy);
	background: transparent;
	color: var(--vien-color-navy);
}

.home-hero__button--outline:hover,
.home-hero__button--outline:focus {
	border-color: var(--vien-color-navy);
	background: var(--vien-color-navy);
	color: var(--vien-color-white);
}

.home-hero__carousel .f-button {
	--f-button-width: 46px;
	--f-button-height: 46px;
	--f-button-border-radius: 0;
	--f-button-bg: rgba(255, 255, 255, 0.9);
	--f-button-hover-bg: var(--vien-color-blue);
	--f-button-color: var(--vien-color-navy);
	--f-button-hover-color: var(--vien-color-white);
}

.home-hero__carousel .f-button .material-symbols-outlined {
	font-size: 24px;
}

@media (max-width: 991.98px) {
	.home-hero {
		height: 680px;
	}

	.home-hero__image {
		object-fit: cover;
		object-position: center bottom;
	}

	.home-hero__overlay {
		background: linear-gradient(
			90deg,
			rgba(249, 249, 249, 0.98) 0%,
			rgba(249, 249, 249, 0.92) 45%,
			rgba(249, 249, 249, 0.38) 75%,
			rgba(249, 249, 249, 0.1) 100%
		);
	}

	.home-hero__title {
		font-size: 32px;
	}

	.home-hero__description {
		font-size: 18px;
	}
}

@media (max-width: 767.98px) {
	.home-hero {
		height: 650px;
	}

	.home-hero__image {
		object-position: 61% bottom;
	}

	.home-hero__overlay {
		background: rgba(249, 249, 249, 0.88);
	}

	.home-hero__content {
		max-width: 520px;
		transform: none;
	}

	.home-hero__title {
		max-width: 360px;
		font-size: clamp(28px, 8vw, 34px);
		line-height: 1.25;
	}

	.home-hero__description {
		max-width: 520px;
		margin-top: 28px;
		font-size: 17px;
	}

	.home-hero__actions {
		gap: 14px;
		margin-top: 36px;
	}

	.home-hero__button {
		width: 100%;
	}
}

/* ==================================================
   CONSULTING PAGE
   ================================================== */

.consulting-page {
	overflow: hidden;
	background: var(--vien-color-white);
}

.consulting-hero {
	position: relative;
	height: 584px;
	overflow: hidden;
	background: var(--vien-color-blue);
}

.consulting-hero__image,
.consulting-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.consulting-hero__image {
	display: block;
	object-fit: cover;
	object-position: center;
}

.consulting-hero__overlay {
	background: rgba(5, 102, 191, 0.78);
}

.consulting-hero__container {
	position: relative;
	z-index: 1;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.consulting-hero__content {
	width: 100%;
	max-width: 540px;
	color: var(--vien-color-white);
	text-align: center;
	text-transform: uppercase;
}

.consulting-hero__breadcrumb {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 54px;
	font-size: 11px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 0.5px;
}

.consulting-hero__breadcrumb a,
.consulting-hero__breadcrumb span {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.consulting-hero__title {
	max-width: 360px;
	margin: 0 auto;
	font-size: 36px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.3;
	letter-spacing: 1.44px;
}

.consulting-hero__description {
	max-width: 520px;
	margin: 42px auto 0;
	font-size: 16px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.55;
	text-transform: none;
}

.consulting-hero__scroll {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-top: 58px;
	color: var(--vien-color-white);
	text-decoration: none;
}

.consulting-hero__scroll .material-symbols-outlined {
	font-size: 28px;
}

.consulting-services {
	padding: 0 0 94px;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.06) 1px, transparent 1px),
		var(--vien-color-white);
	background-size: 16px 16px;
}

.consulting-services__filters {
	position: relative;
	z-index: 10;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	min-height: 225px;
	align-items: center;
	margin: 0 0 96px;
	border-bottom: 1px solid rgba(14, 25, 44, 0.12);
}

.consulting-services__filter {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--vien-color-navy);
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.52px;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.consulting-services__filter:hover,
.consulting-services__filter:focus-visible,
.consulting-services__filter.is-active {
	color: var(--vien-color-blue);
}

.consulting-services__filter .material-symbols-outlined {
	font-size: 16px;
	transition: transform 0.2s ease;
}

.consulting-services__filter[aria-expanded="true"] .material-symbols-outlined {
	transform: rotate(180deg);
}

.consulting-services__areas {
	z-index: 1000 !important;
	min-width: 210px;
	margin-top: 12px !important;
	padding: 10px 0;
	border: 0;
	border-radius: 0;
	box-shadow: 0 12px 30px rgba(14, 25, 44, 0.14);
}

.consulting-services__areas .dropdown-item {
	padding: 10px 22px;
	color: var(--vien-color-navy);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.35px;
	text-transform: uppercase;
}

.consulting-services__areas .dropdown-item:hover,
.consulting-services__areas .dropdown-item:focus,
.consulting-services__areas .dropdown-item.is-active {
	background: rgba(5, 102, 191, 0.07);
	color: var(--vien-color-blue);
}



.consulting-services__column[hidden] {
	display: none;
}

.consulting-service-card {
	display: flex;
	height: 100%;
	min-height: 526px;
	flex-direction: column;
	background: var(--vien-color-white);
	box-shadow: 0 12px 32px rgba(14, 25, 44, 0.1);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.consulting-service-card:hover {
	box-shadow: 0 16px 40px rgba(14, 25, 44, 0.16);
	transform: translateY(-3px);
}

.consulting-service-card__media {
	height: 240px;
	overflow: hidden;
	background: var(--vien-color-blue);
}

.consulting-service-card__image,
.consulting-service-card__placeholder {
	width: 100%;
	height: 100%;
}

.consulting-service-card__image {
	display: block;
	object-fit: cover;
}

.consulting-service-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(14, 25, 44, 0.2), rgba(5, 102, 191, 0.15)),
		var(--vien-color-blue);
	color: var(--vien-color-white);
}

.consulting-service-card__placeholder .material-symbols-outlined {
	font-size: 58px;
}

.consulting-service-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 30px;
}

.consulting-service-card__title {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.64px;
	text-transform: uppercase;
}

.consulting-service-card__line {
	width: 100%;
	height: 1px;
	margin: 30px 0;
	background: var(--vien-color-green);
}

.consulting-service-card__description {
	min-height: 50px;
	margin: 0 0 30px;
	color: #798f50;
	font-size: 12px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.55;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.consulting-service-card__button {
	display: flex;
	width: 100%;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	border: 1px solid #d8dde3;
	background: transparent;
	color: #89909a;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.35px;
	text-decoration: none;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.consulting-service-card__button:hover,
.consulting-service-card__button:focus {
	border-color: var(--vien-color-green);
	background: var(--vien-color-green);
	color: var(--vien-color-white);
}

.consulting-service-modal .modal-dialog {
	max-width: 960px;
}

.consulting-service-modal .modal-content {
	border: 0;
	border-radius: 0;
	box-shadow: 0 24px 70px rgba(14, 25, 44, 0.22);
}

.consulting-service-modal .modal-body {
	padding: 58px 40px 44px;
}

.consulting-service-modal__close {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
	display: flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vien-color-navy);
}

.consulting-service-modal__close .material-symbols-outlined {
	font-size: 22px;
}

.consulting-service-modal__header {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 42px;
	align-items: end;
	margin-bottom: 42px;
}

.consulting-service-modal__image,
.consulting-service-modal__placeholder {
	display: block;
	width: 280px;
	height: 260px;
	border: 1px solid rgba(143, 213, 54, 0.45);
}

.consulting-service-modal__image {
	object-fit: cover;
}

.consulting-service-modal__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(135deg, rgba(14, 25, 44, 0.2), rgba(5, 102, 191, 0.16)),
		var(--vien-color-blue);
	color: var(--vien-color-white);
}

.consulting-service-modal__placeholder .material-symbols-outlined {
	font-size: 62px;
}

.consulting-service-modal__identity {
	align-self: end;
	padding-bottom: 4px;
}

.consulting-service-modal__identity p {
	margin: 0 0 24px;
	color: var(--vien-color-green);
	font-size: 12px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 0.42px;
	line-height: 1.55;
	text-transform: uppercase;
}

.consulting-service-modal__identity h2 {
	margin: 0;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(143, 213, 54, 0.48);
	color: var(--vien-color-navy);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.65px;
	line-height: 1.35;
	text-transform: uppercase;
}

.consulting-service-modal__content {
	color: var(--vien-color-navy);
	font-size: 15px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.65;
}

.consulting-service-modal__content p,
.consulting-service-modal__content ul,
.consulting-service-modal__content ol {
	margin-bottom: 22px;
}

.consulting-service-modal__content p:last-child,
.consulting-service-modal__content ul:last-child,
.consulting-service-modal__content ol:last-child {
	margin-bottom: 0;
}

.consulting-service-modal__content a {
	color: var(--vien-color-blue);
}

.consulting-service-modal__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 42px;
}

.consulting-service-modal__footer a {
	display: inline-flex;
	min-width: 176px;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	background: var(--vien-color-blue);
	color: var(--vien-color-white);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.45px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.consulting-service-modal__footer a:hover,
.consulting-service-modal__footer a:focus {
	background: var(--vien-color-green);
	color: var(--vien-color-white);
	transform: translateY(-1px);
}

.consulting-service-modal__footer .material-symbols-outlined {
	font-size: 15px;
}

.consulting-services__load-more,
.articles-index__load-more {
	display: block;
	min-width: 145px;
	min-height: 42px;
	padding: 12px 24px;
	border: 0;
	background: transparent;
	color: var(--vien-color-navy);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.consulting-services__load-more {
	margin: 78px auto 0;
}

.articles-index__load-more {
	margin: 72px auto 0;
}

.consulting-services__load-more[hidden],
.articles-index__load-more[hidden] {
	display: none;
}

@media (max-width: 991.98px) {
	.consulting-hero {
		height: 520px;
	}

	.consulting-services__filters {
		min-height: 170px;
		margin-bottom: 70px;
	}

	.consulting-service-card {
		min-height: 510px;
	}
}

@media (max-width: 767.98px) {
	.consulting-hero {
		height: 500px;
	}

	.consulting-hero__title {
		font-size: 31px;
	}

	.consulting-hero__breadcrumb {
		margin-bottom: 38px;
	}

	.consulting-hero__description {
		margin-top: 30px;
		font-size: 15px;
	}

	.consulting-hero__scroll {
		margin-top: 35px;
	}

	.consulting-services__filters {
		gap: 22px;
		min-height: 145px;
		margin-bottom: 55px;
	}

	.consulting-services__filter {
		font-size: 11px;
	}

	.consulting-service-card {
		min-height: 0;
	}

	.consulting-service-card__media {
		height: 220px;
	}

	.consulting-service-card__body {
		padding-right: 22px;
		padding-left: 22px;
	}

	.consulting-service-modal .modal-body {
		padding: 54px 24px 34px;
	}

	.consulting-service-modal__header {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-bottom: 34px;
	}

	.consulting-service-modal__image,
	.consulting-service-modal__placeholder {
		width: 100%;
		height: 220px;
	}

	.consulting-service-modal__identity h2 {
		padding-bottom: 26px;
		font-size: 18px;
	}

	.consulting-service-modal__footer {
		justify-content: stretch;
	}

	.consulting-service-modal__footer a {
		width: 100%;
	}
}

/* ==================================================
   ABOUT PAGE
   ================================================== */

.about-page {
	overflow: hidden;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.055) 1px, transparent 1px),
		var(--vien-color-white);
	background-size: 16px 16px;
}

.about-intro {
	padding: 98px 0 90px;
	text-align: center;
}

.about-intro__breadcrumb {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 52px;
	color: #7c828a;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.about-intro__breadcrumb a,
.about-intro__breadcrumb span {
	color: inherit;
	text-decoration: none;
}

.about-intro__eyebrow,
.about-section-eyebrow {
	margin: 0 0 8px;
	color: var(--vien-color-blue);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.about-intro__title {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 36px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.25;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

.about-intro__description {
	margin: 42px 0 0;
	color: #757d86;
	font-size: 14px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.6;
}

.about-commitment {
	padding: 90px 0 104px;
	background: var(--vien-color-white);
}



.about-commitment__media,
.about-purpose__media {
	width: 100%;
	overflow: hidden;
}

.about-commitment__media {
	height: 520px;
}

.about-commitment__media img,
.about-purpose__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-commitment__content {
	max-width: 380px;
	padding: 35px 0;
}

.about-commitment__title {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 32px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.28;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.about-commitment__description {
	margin: 38px 0 0;
	color: #737b85;
	font-size: 14px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.55;
}

.about-commitment__benefits {
	display: grid;
	gap: 22px;
	margin: 32px 0 38px;
	padding: 0;
	list-style: none;
}

.about-commitment__benefits li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: #737b85;
	font-size: 13px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.45;
}

.about-commitment__benefits .material-symbols-outlined {
	color: var(--vien-color-green);
	font-size: 20px;
}

.about-outline-button {
	display: inline-flex;
	min-width: 168px;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 1px solid var(--vien-color-navy);
	color: var(--vien-color-navy);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.35px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.about-outline-button:hover,
.about-outline-button:focus {
	background: var(--vien-color-navy);
	color: var(--vien-color-white);
}

.about-values {
	padding: 84px 0 88px;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
		var(--vien-color-blue);
	background-size: 16px 16px;
}

.about-values__title {
	margin: 0 0 52px;
	color: var(--vien-color-white);
	font-size: 28px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 1.25px;
	text-transform: uppercase;
}

.about-values__list {
	display: grid;
	grid-template-columns: repeat(6, minmax(130px, 1fr));
	gap: 32px;
}

.about-values__item {
	display: flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	padding: 12px 20px;
	background: var(--vien-color-white);
	color: var(--vien-color-navy);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-align: center;
	text-transform: uppercase;
}

.about-values__item.is-active {
	background: var(--vien-color-green);
	color: var(--vien-color-white);
}

.about-purpose {
	padding: 100px 0;
	background: var(--vien-color-white);
}

.about-purpose__media {
	height: 490px;
}

.about-purpose__content {
	display: grid;
	gap: 62px;
	max-width: 390px;
	padding: 20px 0;
}

.about-purpose__item h2 {
	--vien-marker-offset: -4px;
	margin: 0 0 48px;
	padding-left: 18px;
	color: var(--vien-color-blue);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.55px;
	text-transform: uppercase;
}

.about-purpose__item p {
	margin: 0;
	color: #737b85;
	font-size: 14px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.55;
}

.about-team {
	padding: 102px 0 96px;
}

.about-team__heading {
	margin-bottom: 62px;
	text-align: center;
}

.about-team__heading h2 {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 30px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.3;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}



.about-team__column[hidden] {
	display: none;
}

.about-team__column {
	display: flex;
}

.about-person {
	display: grid;
	width: 100%;
	height: 230px;
	grid-template-columns: 180px 1fr;
	background: var(--vien-color-white);
	border: 1px solid rgba(143, 213, 54, 0.26);
	box-shadow: 0 10px 26px rgba(14, 25, 44, 0.1);
}

.about-person__media {
	height: 230px;
	overflow: hidden;
}

.about-person__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.about-person__content {
	display: flex;
	flex-direction: column;
	padding: 38px 30px 28px;
}

.about-person__content h3 {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.about-person__content p {
	margin: 18px 0 0;
	color: var(--vien-color-green);
	font-size: 11px;
	font-weight: 400;
	line-height: 1.5;
	text-transform: uppercase;
}

.about-person__content button {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 22px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	border-top: 1px solid rgba(143, 213, 54, 0.42);
	border-right: 0;
	border-bottom: 0;
	border-left: 0;
	background: transparent;
	color: var(--vien-color-navy);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.35px;
	text-align: left;
	text-transform: uppercase;
}

.about-person__content button .material-symbols-outlined {
	font-size: 14px;
}

.about-person-modal .modal-dialog {
	max-width: 900px;
}

.about-person-modal .modal-content {
	border: 0;
	border-radius: 0;
	box-shadow: 0 24px 70px rgba(14, 25, 44, 0.22);
}

.about-person-modal .modal-body {
	padding: 58px 40px 44px;
}

.about-person-modal__close {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;
	display: flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vien-color-navy);
}

.about-person-modal__close .material-symbols-outlined {
	font-size: 22px;
}

.about-person-modal__header {
	display: grid;
	grid-template-columns: 212px 1fr;
	gap: 42px;
	align-items: end;
	margin-bottom: 48px;
}

.about-person-modal__image {
	display: block;
	width: 212px;
	height: 250px;
	border: 1px solid rgba(143, 213, 54, 0.45);
	object-fit: cover;
	object-position: top center;
}

.about-person-modal__identity {
	align-self: end;
	padding-bottom: 0;
}

.about-person-modal__identity h2 {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.65px;
	text-transform: uppercase;
}

.about-person-modal__identity p {
	margin: 42px 0 0;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(143, 213, 54, 0.48);
	color: var(--vien-color-green);
	font-size: 17px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.about-person-modal__biography {
	color: var(--vien-color-navy);
	font-size: 15px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.55;
}

.about-person-modal__biography p {
	margin: 0 0 28px;
}

.about-person-modal__biography p:last-child {
	margin-bottom: 0;
}

.about-person-modal__footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 44px;
}

.about-person-modal__footer a {
	display: inline-flex;
	min-width: 132px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	background: var(--vien-color-blue);
	color: var(--vien-color-white);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.45px;
	text-decoration: none;
	text-transform: uppercase;
}

.about-team__load-more {
	display: block;
	margin: 70px auto 0;
	padding: 10px 22px;
	border: 0;
	background: transparent;
	color: var(--vien-color-navy);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.about-team__load-more[hidden] {
	display: none;
}

@media (max-width: 1199.98px) {
	.about-values__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 991.98px) {
	.about-intro {
		padding: 80px 0 90px;
	}



	.about-commitment__content,
	.about-purpose__content {
		max-width: none;
	}

	.about-commitment__media,
	.about-purpose__media {
		height: 430px;
	}
}

@media (max-width: 767.98px) {
	.about-intro {
		padding: 62px 0 72px;
	}

	.about-intro__breadcrumb {
		margin-bottom: 38px;
	}

	.about-intro__title {
		font-size: 29px;
	}

	.about-intro__description {
		margin-top: 30px;
		font-size: 13px;
	}

	.about-commitment,
	.about-purpose,
	.about-team {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.about-commitment__media,
	.about-purpose__media {
		height: 320px;
	}

	.about-commitment__title {
		font-size: 28px;
	}

	.about-values {
		padding: 64px 0;
	}

	.about-values__title {
		margin-bottom: 38px;
		font-size: 24px;
	}

	.about-values__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.about-values__item {
		min-height: 52px;
		font-size: 10px;
	}

	.about-team__heading h2 {
		font-size: 25px;
	}

	.about-person {
		height: 220px;
		grid-template-columns: 130px 1fr;
	}

	.about-person__media {
		height: 220px;
	}

	.about-person__content {
		padding: 28px 20px 22px;
	}

	.about-person-modal .modal-body {
		padding: 48px 30px 38px;
	}

	.about-person-modal__header {
		grid-template-columns: 165px 1fr;
		gap: 30px;
	}

	.about-person-modal__image {
		width: 165px;
		height: 200px;
	}

	.about-person-modal__identity p {
		margin-top: 28px;
		padding-bottom: 28px;
		font-size: 14px;
	}
}

@media (max-width: 479.98px) {
	.about-values__list {
		grid-template-columns: 1fr;
	}

	.about-person {
		height: auto;
		grid-template-columns: 1fr;
	}

	.about-person__media {
		height: 290px;
	}

	.about-person-modal__header {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.about-person-modal__image {
		width: 130px;
		height: 155px;
	}

	.about-person-modal__identity p {
		margin-top: 18px;
		padding-bottom: 20px;
	}

	.about-person-modal__biography {
		font-size: 14px;
	}
}

/* ==================================================
   ARTICLES
   ================================================== */

.articles-page,
.article-single {
	overflow: hidden;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.055) 1px, transparent 1px),
		var(--vien-color-white);
	background-size: 16px 16px;
}

.articles-hero,
.article-single__hero {
	position: relative;
	overflow: hidden;
	background: var(--vien-color-blue);
}

.articles-hero {
	height: 584px;
}

.articles-hero__image,
.articles-hero__overlay,
.article-single__hero-image,
.article-single__hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.articles-hero__image,
.article-single__hero-image {
	display: block;
	object-fit: cover;
	object-position: center;
}

.articles-hero__overlay {
	background:
		linear-gradient(90deg, rgba(14, 25, 44, 0.22), rgba(5, 102, 191, 0.5)),
		rgba(5, 102, 191, 0.63);
}

.articles-hero__container,
.article-single__hero-container {
	position: relative;
	z-index: 1;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.articles-hero__content {
	width: 100%;
	max-width: 620px;
	color: var(--vien-color-white);
	text-align: center;
}

.articles-hero__breadcrumb,
.article-single__breadcrumb {
	display: flex;
	justify-content: center;
	gap: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.articles-hero__breadcrumb {
	margin-bottom: 48px;
}

.articles-hero__breadcrumb a,
.articles-hero__breadcrumb span,
.article-single__breadcrumb a,
.article-single__breadcrumb span {
	color: inherit;
	text-decoration: none;
}

.articles-hero__eyebrow {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.articles-hero__title {
	margin: 0;
	font-size: 40px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.25;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

.articles-hero__description {
	max-width: 560px;
	margin: 35px auto 0;
	font-size: 16px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.6;
}

.articles-hero__scroll {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	margin-top: 44px;
	color: var(--vien-color-white);
	text-decoration: none;
}

.articles-hero__scroll .material-symbols-outlined {
	font-size: 28px;
}

.articles-index {
	padding: 0 0 110px;
}

.articles-index__filters {
	display: flex;
	min-height: 190px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 34px;
	margin-bottom: 82px;
	border-bottom: 1px solid rgba(14, 25, 44, 0.12);
}

.articles-index__filter {
	padding: 8px 0;
	color: var(--vien-color-navy);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.articles-index__filter:hover,
.articles-index__filter:focus,
.articles-index__filter.is-active {
	color: var(--vien-color-blue);
}



.articles-index__status {
	margin: 0 0 30px;
	color: #89909a;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.45px;
	text-align: right;
	text-transform: uppercase;
}

.articles-index [data-article-item][hidden] {
	display: none !important;
}

.article-card {
	width: 100%;
	min-height: 634px;
	min-width: 0;
	background: var(--vien-color-white);
	box-shadow: 0 12px 32px rgba(14, 25, 44, 0.1);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.article-card:hover {
	box-shadow: 0 17px 42px rgba(14, 25, 44, 0.16);
	transform: translateY(-4px);
}

.article-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: var(--vien-color-navy);
	text-decoration: none;
}

.article-card__media {
	height: 270px;
	overflow: hidden;
	background: var(--vien-color-blue);
}

.article-card__image,
.article-card__placeholder {
	width: 100%;
	height: 100%;
}

.article-card__image {
	display: block;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.article-card:hover .article-card__image {
	transform: scale(1.035);
}

.article-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vien-color-white);
}

.article-card__placeholder .material-symbols-outlined {
	font-size: 54px;
}

.article-card__body {
	display: flex;
	min-height: 300px;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 30px;
}

.article-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: #89909a;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.35px;
	text-transform: uppercase;
}

.article-card__meta span {
	color: var(--vien-color-blue);
}

.article-card__title {
	margin: 26px 0 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.article-card__excerpt {
	margin: 22px 0 28px;
	color: #727b85;
	font-size: 13px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.65;
}

.article-card__action {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid rgba(143, 211, 69, 0.55);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.article-card__action .material-symbols-outlined {
	font-size: 16px;
}

.articles-index__empty {
	margin: 0;
	padding: 50px 0 100px;
	color: #737b85;
	text-align: center;
}

.articles-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 76px;
}

.articles-pagination .page-numbers {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(14, 25, 44, 0.14);
	background: var(--vien-color-white);
	color: var(--vien-color-navy);
	font-size: 12px;
	text-decoration: none;
}

.articles-pagination .page-numbers.current,
.articles-pagination a.page-numbers:hover {
	border-color: var(--vien-color-blue);
	background: var(--vien-color-blue);
	color: var(--vien-color-white);
}

.articles-pagination .material-symbols-outlined {
	font-size: 18px;
}

.article-single__hero {
	height: 570px;
}

.article-single__hero-overlay {
	background:
		linear-gradient(180deg, rgba(14, 25, 44, 0.34), rgba(14, 25, 44, 0.72)),
		rgba(5, 102, 191, 0.26);
}

.article-single__hero-content {
	width: 100%;
	max-width: 900px;
	color: var(--vien-color-white);
	text-align: center;
}

.article-single__breadcrumb {
	margin-bottom: 44px;
}

.article-single__category {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--vien-color-green);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.7px;
	text-decoration: none;
	text-transform: uppercase;
}

.article-single__title {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: var(--vien-font-weight-book);
	line-height: 1.2;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.article-single__meta {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 11px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.article-single__body {
	padding: 105px 0 90px;
	background: var(--vien-color-white);
}

.article-single__content,
.article-single__footer {
	width: 100%;
	max-width: 820px;
	margin-right: auto;
	margin-left: auto;
}

.article-single__content {
	color: var(--vien-color-navy);
	font-size: 17px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.85;
}

.article-single__content > *:first-child {
	margin-top: 0;
}

.article-single__content p,
.article-single__content ul,
.article-single__content ol {
	margin-bottom: 30px;
}

.article-single__content h2,
.article-single__content h3 {
	margin: 55px 0 24px;
	font-weight: 400;
	line-height: 1.35;
}

.article-single__content h2 {
	font-size: 28px;
}

.article-single__content h3 {
	font-size: 22px;
}

.article-single__content li {
	margin-bottom: 12px;
}

.article-single__content img {
	max-width: 100%;
	height: auto;
}

.article-single__content blockquote {
	margin: 48px 0;
	padding: 24px 30px;
	border-left: 3px solid var(--vien-color-green);
	background: rgba(5, 102, 191, 0.04);
	font-size: 20px;
}

.article-single__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: 72px;
	padding-top: 28px;
	border-top: 1px solid rgba(14, 25, 44, 0.14);
	font-size: 10px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.article-single__footer a {
	color: var(--vien-color-navy);
	text-decoration: none;
}

.article-single__footer > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.article-single__footer .material-symbols-outlined {
	font-size: 16px;
}

.article-single__share {
	display: flex;
	align-items: center;
	gap: 18px;
}

.article-single__share span {
	color: #89909a;
}

.article-related {
	padding: 95px 0 110px;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
		var(--vien-color-blue);
	background-size: 16px 16px;
}

.article-related__heading {
	margin-bottom: 58px;
	color: var(--vien-color-white);
	text-align: center;
}

.article-related__heading p {
	margin: 0 0 10px;
	font-size: 12px;
	letter-spacing: 0.65px;
	text-transform: uppercase;
}

.article-related__heading h2 {
	margin: 0;
	font-size: 32px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

/* ==================================================
   LEGO SERIOUS PLAY
   ================================================== */

.lsp-modern {
	overflow: hidden;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.055) 1px, transparent 1px),
		var(--vien-color-white);
	background-size: 16px 16px;
}

.lsp-modern__hero {
	position: relative;
	height: 690px;
	overflow: hidden;
	background: var(--vien-color-navy);
}

.lsp-modern__hero-image,
.lsp-modern__hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.lsp-modern__hero-image {
	display: block;
	object-fit: cover;
	object-position: center;
}

.lsp-modern__hero-overlay {
	background:
		linear-gradient(90deg, rgba(14, 25, 44, 0.96) 0%, rgba(14, 25, 44, 0.84) 43%, rgba(14, 25, 44, 0.28) 78%),
		linear-gradient(0deg, rgba(5, 102, 191, 0.24), rgba(5, 102, 191, 0.24));
}

.lsp-modern__hero-container {
	position: relative;
	z-index: 1;
	display: flex;
	height: 100%;
	align-items: center;
}

.lsp-modern__hero-content {
	width: 100%;
	max-width: 640px;
	color: var(--vien-color-white);
}

.lsp-modern__breadcrumb {
	display: flex;
	gap: 14px;
	margin-bottom: 55px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 10px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.lsp-modern__breadcrumb a,
.lsp-modern__breadcrumb span {
	color: inherit;
	text-decoration: none;
}

.lsp-modern__eyebrow,
.lsp-modern__section-eyebrow {
	margin: 0 0 12px;
	color: var(--vien-color-green);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.75px;
	text-transform: uppercase;
}

.lsp-modern__hero-title {
	margin: 0;
	font-size: clamp(40px, 4.25vw, 62px);
	font-weight: var(--vien-font-weight-book);
	line-height: 1.14;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.lsp-modern__hero-title span {
	color: var(--vien-color-green);
}

.lsp-modern__hero-description {
	max-width: 580px;
	margin: 34px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.65;
}

.lsp-modern__hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 44px;
}

.lsp-modern__button {
	display: inline-flex;
	min-width: 176px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border: 1px solid transparent;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.45px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lsp-modern__button--primary {
	border-color: var(--vien-color-green);
	background: var(--vien-color-green);
	color: var(--vien-color-white);
}

.lsp-modern__button--primary:hover,
.lsp-modern__button--primary:focus {
	border-color: #78b833;
	background: #78b833;
	color: var(--vien-color-white);
}

.lsp-modern__button--outline-light {
	border-color: rgba(255, 255, 255, 0.8);
	color: var(--vien-color-white);
}

.lsp-modern__button--outline-light:hover,
.lsp-modern__button--outline-light:focus,
.lsp-modern__button--light {
	border-color: var(--vien-color-white);
	background: var(--vien-color-white);
	color: var(--vien-color-navy);
}

.lsp-modern__benefits {
	position: relative;
	z-index: 2;
	margin-top: -62px;
}



.lsp-modern__benefit {
	height: 100%;
	min-height: 236px;
	padding: 36px 30px;
	background: var(--vien-color-white);
	box-shadow: 0 14px 38px rgba(14, 25, 44, 0.14);
}

.lsp-modern__benefit > .material-symbols-outlined {
	color: var(--vien-color-blue);
	font-size: 35px;
}

.lsp-modern__benefit h2 {
	margin: 25px 0 14px;
	color: var(--vien-color-navy);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.lsp-modern__benefit p {
	margin: 0;
	color: #737b85;
	font-size: 13px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.6;
}

.lsp-modern__intro {
	padding: 140px 0 120px;
}



.lsp-modern__intro-media {
	height: 520px;
	overflow: hidden;
	background: var(--vien-color-white);
}

.lsp-modern__intro-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lsp-modern__intro-content {
	max-width: 470px;
}

.lsp-modern__intro-content h2,
.lsp-modern__section-heading h2,
.lsp-modern__cta h2 {
	color: var(--vien-color-navy);
	font-weight: var(--vien-font-weight-book);
	line-height: 1.28;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.lsp-modern__intro-content h2 {
	margin: 0 0 36px;
	font-size: 34px;
}

.lsp-modern__intro-content p,
.lsp-modern__rich-text {
	color: #737b85;
	font-size: 14px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.7;
}

.lsp-modern__rich-text p:last-child {
	margin-bottom: 24px;
}

.lsp-modern__text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 26px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--vien-color-green);
	color: var(--vien-color-navy);
	font-size: 10px;
	letter-spacing: 0.4px;
	text-decoration: none;
	text-transform: uppercase;
}

.lsp-modern__text-link .material-symbols-outlined {
	font-size: 16px;
}

.lsp-modern__process {
	padding: 105px 0 115px;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
		var(--vien-color-blue);
	background-size: 16px 16px;
}

.lsp-modern__section-heading {
	max-width: 720px;
	margin: 0 auto 68px;
	color: var(--vien-color-white);
	text-align: center;
}

.lsp-modern__section-heading h2 {
	margin: 0;
	color: inherit;
	font-size: 34px;
}

.lsp-modern__section-heading > p:last-child {
	margin: 28px auto 0;
	color: #737b85;
	font-size: 14px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.65;
}



.lsp-modern__step {
	position: relative;
	min-height: 240px;
	padding: 35px 28px 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.42);
	color: var(--vien-color-white);
}

.lsp-modern__step > span {
	color: var(--vien-color-green);
	font-size: 13px;
	letter-spacing: 0.75px;
}

.lsp-modern__step h3 {
	margin: 28px 0 18px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.65px;
	text-transform: uppercase;
}

.lsp-modern__step p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.6;
}

.lsp-modern__video {
	position: relative;
	height: min(54vw, 690px);
	min-height: 480px;
	overflow: hidden;
	background: var(--vien-color-navy);
}

.lsp-modern__video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lsp-modern__video-caption {
	position: absolute;
	z-index: 1;
	right: var(--vien-container-padding);
	bottom: 44px;
	max-width: 390px;
	padding: 24px 28px;
	background: rgba(14, 25, 44, 0.88);
	color: var(--vien-color-white);
	pointer-events: none;
}

.lsp-modern__video-caption p {
	margin: 0 0 8px;
	color: var(--vien-color-green);
	font-size: 10px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.lsp-modern__video-caption h2 {
	margin: 0;
	font-size: 22px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.35;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.lsp-modern__certification {
	padding: 115px 0;
}

.lsp-modern__section-heading--dark {
	color: var(--vien-color-navy);
}

.lsp-modern__info-card {
	width: 100%;
	min-height: 330px;
	padding: 42px 34px;
	background: var(--vien-color-white);
	box-shadow: 0 12px 32px rgba(14, 25, 44, 0.1);
}

.lsp-modern__info-card > .material-symbols-outlined {
	color: var(--vien-color-blue);
	font-size: 38px;
}

.lsp-modern__info-card h3 {
	margin: 30px 0 22px;
	color: var(--vien-color-navy);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.55px;
	text-transform: uppercase;
}

.lsp-modern__info-card p {
	margin: 0;
	color: #737b85;
	font-size: 13px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.7;
}

.lsp-modern__certification-action {
	margin-top: 58px;
	text-align: center;
}

.lsp-modern__workshops {
	padding: 105px 0 115px;
	background: #f6f8fa;
}

.lsp-modern__workshop-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lsp-modern__workshop {
	display: flex;
	min-height: 112px;
	align-items: center;
	gap: 22px;
	padding: 28px 30px;
	background: var(--vien-color-white);
	border: 1px solid rgba(14, 25, 44, 0.08);
}

.lsp-modern__workshop .material-symbols-outlined {
	color: var(--vien-color-green);
	font-size: 30px;
}

.lsp-modern__workshop h3 {
	margin: 0;
	color: var(--vien-color-navy);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.lsp-modern__cta {
	padding: 90px 0;
	background: var(--vien-color-navy);
}

.lsp-modern__cta-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.lsp-modern__cta p {
	margin: 0 0 10px;
	color: var(--vien-color-green);
	font-size: 11px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.lsp-modern__cta h2 {
	max-width: 720px;
	margin: 0;
	color: var(--vien-color-white);
	font-size: 30px;
}

.lsp-modern__button--light:hover,
.lsp-modern__button--light:focus {
	border-color: var(--vien-color-green);
	background: var(--vien-color-green);
	color: var(--vien-color-white);
}

@media (max-width: 991.98px) {
	.articles-hero {
		height: 520px;
	}

	.article-card__media {
		height: 240px;
	}

	.article-single__hero {
		height: 520px;
	}

	.lsp-modern__hero {
		height: 640px;
	}

	.lsp-modern__hero-overlay {
		background: rgba(14, 25, 44, 0.8);
	}

	.lsp-modern__benefits {
		margin-top: -38px;
	}

	.lsp-modern__intro-content {
		max-width: none;
	}

	.lsp-modern__intro-media {
		height: 420px;
	}

	.lsp-modern__workshop-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.articles-hero {
		height: 500px;
	}

	.articles-hero__breadcrumb {
		margin-bottom: 34px;
	}

	.articles-hero__title {
		font-size: 32px;
	}

	.articles-hero__description {
		margin-top: 28px;
		font-size: 14px;
	}

	.articles-index__filters {
		min-height: 150px;
		gap: 18px 24px;
		margin-bottom: 58px;
	}



	.article-card__media {
		height: 250px;
	}

	.article-card__body {
		min-height: 270px;
		padding: 25px 22px;
	}

	.article-card {
		min-height: 0;
	}

	.article-single__hero {
		height: 500px;
	}

	.article-single__breadcrumb {
		margin-bottom: 34px;
	}

	.article-single__title {
		font-size: 32px;
	}

	.article-single__body {
		padding: 72px 0 65px;
	}

	.article-single__content {
		font-size: 15px;
		line-height: 1.75;
	}

	.article-single__footer {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 50px;
	}

	.article-related {
		padding: 72px 0 80px;
	}

	.article-related__heading h2 {
		font-size: 28px;
	}

	.lsp-modern__hero {
		height: 670px;
	}

	.lsp-modern__breadcrumb {
		margin-bottom: 38px;
	}

	.lsp-modern__hero-title {
		font-size: 36px;
	}

	.lsp-modern__hero-description {
		font-size: 15px;
	}

	.lsp-modern__hero-actions {
		flex-direction: column;
	}

	.lsp-modern__button {
		width: 100%;
	}

	.lsp-modern__benefits {
		margin-top: 0;
		padding-top: 30px;
	}

	.lsp-modern__benefit {
		min-height: 205px;
	}

	.lsp-modern__intro,
	.lsp-modern__process,
	.lsp-modern__certification,
	.lsp-modern__workshops {
		padding-top: 78px;
		padding-bottom: 82px;
	}

	.lsp-modern__intro-media {
		height: 330px;
	}

	.lsp-modern__intro-content h2,
	.lsp-modern__section-heading h2 {
		font-size: 29px;
	}

	.lsp-modern__section-heading {
		margin-bottom: 48px;
	}

	.lsp-modern__video {
		height: 520px;
		min-height: 0;
	}

	.lsp-modern__video-caption {
		right: var(--vien-container-padding);
		bottom: 30px;
		left: var(--vien-container-padding);
		max-width: none;
	}

	.lsp-modern__info-card {
		min-height: 0;
	}

	.lsp-modern__workshop-list {
		grid-template-columns: 1fr;
	}

	.lsp-modern__cta {
		padding: 72px 0;
	}

	.lsp-modern__cta-content {
		align-items: flex-start;
		flex-direction: column;
	}

	.lsp-modern__cta h2 {
		font-size: 27px;
	}
}

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

.contact-page {
	overflow: hidden;
	background: var(--vien-color-white);
}

.contact-hero {
	position: relative;
	height: 456px;
	overflow: hidden;
	background: var(--vien-color-blue);
}

.contact-hero__image,
.contact-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.contact-hero__image {
	display: block;
	object-fit: cover;
	object-position: center;
}

.contact-hero__overlay {
	background: rgba(5, 102, 191, 0.78);
}

.contact-hero__container {
	position: relative;
	z-index: 1;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
}

.contact-hero__content {
	color: var(--vien-color-white);
	text-align: center;
}

.contact-hero__breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 48px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 10px;
	font-weight: var(--vien-font-weight-book);
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.contact-hero__breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.contact-hero__breadcrumb a:hover,
.contact-hero__breadcrumb a:focus {
	color: var(--vien-color-green);
}

.contact-hero__title {
	margin: 0;
	font-size: 32px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.18;
	letter-spacing: 1.25px;
	text-transform: uppercase;
}

.contact-hero__scroll {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
	color: var(--vien-color-white);
	text-decoration: none;
}

.contact-hero__scroll .material-symbols-outlined {
	font-size: 22px;
	font-variation-settings: 'wght' 400;
}

.contact-information {
	padding: 98px 0;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.055) 1px, transparent 1px),
		var(--vien-color-white);
	background-size: 16px 16px;
}



.contact-information__image {
	width: 100%;
	max-width: 709px;
	aspect-ratio: 709 / 729;
	margin: 0;
	overflow: hidden;
}

.contact-information__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-information__content {
	max-width: 390px;
	padding-left: 22px;
}

.contact-information__group + .contact-information__group {
	margin-top: 48px;
}

.contact-information__group h2 {
	--vien-marker-primary-height: 35px;
	--vien-marker-secondary-height: 14px;
	max-width: 200px;
	margin: 0 0 28px;
	padding-left: 17px;
	color: var(--vien-color-blue);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.contact-information__group p {
	margin: 0 0 12px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.contact-information__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-information__item .material-symbols-outlined {
	color: var(--vien-color-blue);
	font-size: 16px;
	font-variation-settings: 'wght' 400;
}

.contact-information__schedule {
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-information__schedule .material-symbols-outlined {
	color: var(--vien-color-green);
	font-size: 20px;
	font-variation-settings: 'wght' 400;
}

.contact-information__group a {
	color: inherit;
	text-decoration: none;
}

.contact-information__group a:hover,
.contact-information__group a:focus {
	color: var(--vien-color-blue);
}

.contact-message {
	padding: 98px 0;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
		var(--vien-color-blue);
	background-size: 16px 16px;
}



.contact-message__form-column {
	flex: 0 0 45.6%;
	width: 45.6%;
}

.contact-message__map-column {
	flex: 0 0 54.4%;
	width: 54.4%;
}

.contact-message__form {
	width: 100%;
	max-width: 535px;
}

.service-request {
	padding: 96px 0 104px;
	background:
		radial-gradient(circle, rgba(14, 25, 44, 0.06) 1px, transparent 1px),
		var(--vien-color-white);
	background-size: 16px 16px;
}

.service-request__form {
	max-width: none;
	margin-left: 0;
	padding: 42px 38px;
	background: var(--vien-color-white);
	box-shadow: 0 14px 38px rgba(14, 25, 44, 0.12);
}

.service-request__summary {
	min-height: 390px;
	padding: 42px 34px;
	background: var(--vien-color-white);
	box-shadow: 0 14px 38px rgba(14, 25, 44, 0.12);
}

.service-request__summary > p {
	margin: 0 0 20px;
	color: var(--vien-color-green);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.service-request__type {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding: 10px 14px;
	border-left: 3px solid var(--vien-color-green);
	background: #f8fafc;
	color: var(--vien-color-navy);
}

.service-request__type span {
	color: #64748b;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.service-request__type strong {
	color: var(--vien-color-blue);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.45px;
	text-transform: uppercase;
}

.service-request__summary h2 {
	margin: 0;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(143, 213, 54, 0.48);
	color: var(--vien-color-navy);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.7px;
	text-transform: uppercase;
}

.service-request__excerpt {
	margin-top: 30px;
	color: #737b85;
	font-size: 14px;
	font-weight: var(--vien-font-weight-book);
	line-height: 1.7;
}

.service-request__excerpt p:last-child {
	margin-bottom: 0;
}

.service-request__summary a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 34px;
	padding-bottom: 7px;
	border-bottom: 1px solid var(--vien-color-green);
	color: var(--vien-color-navy);
	font-size: 10px;
	letter-spacing: 0.4px;
	text-decoration: none;
	text-transform: uppercase;
}

.service-request__summary a:hover,
.service-request__summary a:focus {
	color: var(--vien-color-blue);
}

.service-request__summary .material-symbols-outlined {
	font-size: 15px;
}

.service-request__form h2 {
	--vien-marker-secondary-color: var(--vien-color-blue);
	color: var(--vien-color-blue);
}

.service-request__form .itemForm::before {
	color: var(--vien-color-navy);
}

.service-request__form .itemForm input,
.service-request__form .itemForm textarea {
	border: 1px solid rgba(14, 25, 44, 0.12);
	background: #f8fafc;
}

.service-request__form input:not([type="hidden"]),
.service-request__form textarea,
.service-request__form select {
	display: block;
	width: 100%;
	border: 1px solid rgba(14, 25, 44, 0.12);
	border-radius: 0;
	background: #f8fafc;
	color: var(--vien-color-navy);
	font-family: inherit;
	font-size: 15px;
	box-shadow: none;
}

.service-request__form input:not([type="hidden"]),
.service-request__form select {
	height: 46px;
	padding: 0 17px;
}

.service-request__form textarea {
	height: 132px !important;
	min-height: 132px;
	padding: 15px 17px;
	resize: vertical;
}

.service-request__form .itemForm:has([name="servicio-solicitado"]) {
	display: none;
}

.service-request__form .col-12:has([name="servicio-solicitado"]),
.service-request__form p:has([name="servicio-solicitado"]) {
	display: none;
}

.service-request__form .wpcf7-form > div[role="form"] > p {
	padding-top: 13px;
}

.service-request__form .wpcf7-submit.btnForm:hover,
.service-request__form .wpcf7-submit.btnForm:focus {
	border-color: var(--vien-color-blue);
	background: var(--vien-color-blue);
}

.service-request__form .wpcf7-not-valid-tip {
	color: var(--vien-color-navy);
}

.service-request__form .wpcf7-response-output {
	color: var(--vien-color-navy);
}

.service-request-form {
	width: 100%;
	padding: 42px 38px;
	background: var(--vien-color-white);
	box-shadow: 0 14px 38px rgba(14, 25, 44, 0.12);
}

.service-request-form h2 {
	--vien-marker-offset: 0;
	--vien-marker-secondary-color: var(--vien-color-blue);
	position: relative;
	max-width: 260px;
	margin: 0 0 36px;
	padding-left: 18px;
	color: var(--vien-color-blue);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.service-request-form h2::before,
.service-request-form h2::after {
	position: absolute;
	left: 0;
	width: 2px;
	border-radius: 2px;
	content: '';
}

.service-request-form h2::before {
	top: var(--vien-marker-offset);
	height: 30px;
	background: var(--vien-color-green);
}

.service-request-form h2::after {
	top: 34px;
	height: 12px;
	background: var(--vien-color-blue);
}

.service-request-form .wpcf7,
.service-request-form .wpcf7-form,
.service-request-form .wpcf7-form > div[role="form"],
.service-request-form .wpcf7-form-control-wrap {
	width: 100%;
}

.service-request-form .wpcf7-form > div[role="form"] {
	display: block;
}

.service-request-form .itemForm,
.service-request-form .wpcf7-form > div[role="form"] > p {
	margin: 0;
}

.service-request-form .itemForm::before {
	display: block;
	margin-bottom: 10px;
	color: var(--vien-color-navy);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.service-request-form .itemForm:has([name="nombre-completo"])::before {
	content: 'Nombre';
}

.service-request-form .itemForm:has([name="correo-electronico"])::before {
	content: 'Email';
}

.service-request-form .itemForm:has([name="numero-contacto"])::before {
	content: 'Telefono';
}

.service-request-form .itemForm:has([name="empresa"])::before {
	content: 'Empresa';
}

.service-request-form .itemForm:has([name="mensaje"])::before {
	content: 'Cuentanos';
}

.service-request-form .itemForm:has([name="servicio-solicitado"]),
.service-request-form .col-12:has([name="servicio-solicitado"]),
.service-request-form p:has([name="servicio-solicitado"]) {
	display: none;
}

.service-request-form .itemForm > span {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.service-request-form input:not([type="hidden"]),
.service-request-form textarea,
.service-request-form select {
	display: block;
	width: 100%;
	border: 1px solid #cdd7e2;
	border-radius: 0;
	outline: 0;
	background: #f8fafc;
	color: var(--vien-color-navy);
	font-family: inherit;
	font-size: 15px;
	font-weight: 400;
	box-shadow: none;
	appearance: none;
}

.service-request-form input:not([type="hidden"]),
.service-request-form select {
	height: 46px;
	padding: 0 17px;
}

.service-request-form textarea {
	height: 132px;
	min-height: 132px;
	padding: 15px 17px;
	resize: vertical;
}

.service-request-form input:not([type="hidden"]):focus,
.service-request-form textarea:focus,
.service-request-form select:focus {
	border-color: var(--vien-color-green);
	background: var(--vien-color-white);
	box-shadow: inset 0 0 0 1px var(--vien-color-green);
}

.service-request-form input::placeholder,
.service-request-form textarea::placeholder {
	color: transparent;
	opacity: 0;
}

.service-request-form .wpcf7-form > div[role="form"] > p {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 22px;
}

.service-request-form .wpcf7-submit.btnForm,
.service-request-form input[type="submit"] {
	float: none;
	width: 132px;
	height: 42px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid var(--vien-color-green);
	border-radius: 0;
	background: var(--vien-color-green);
	color: var(--vien-color-white);
	font-family: inherit;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	box-shadow: none;
}

.service-request-form .wpcf7-submit.btnForm:hover,
.service-request-form .wpcf7-submit.btnForm:focus,
.service-request-form input[type="submit"]:hover,
.service-request-form input[type="submit"]:focus {
	border-color: var(--vien-color-blue);
	background: var(--vien-color-blue);
}

.service-request-form .wpcf7-spinner {
	margin: 0;
}

.service-request-form .wpcf7-not-valid-tip {
	padding-top: 6px;
	color: var(--vien-color-navy);
	font-size: 10px;
}

.service-request-form .wpcf7-response-output {
	margin: 14px 0 0;
	padding: 11px 14px;
	border-width: 1px;
	color: var(--vien-color-navy);
	font-size: 10px;
}

.contact-message__form h2 {
	--vien-marker-offset: -4px;
	--vien-marker-secondary-color: var(--vien-color-white);
	max-width: 220px;
	margin: 0 0 48px;
	padding-left: 18px;
	color: var(--vien-color-white);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.contact-message__form .wpcf7,
.contact-message__form .wpcf7-form,
.contact-message__form .wpcf7 > div {
	width: 100%;
}

.vien-cf7-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.contact-message__form .wpcf7-response-output,
.service-request-form .wpcf7-response-output {
	display: none;
}

.contact-message__form .wpcf7-form > div[role="form"] {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-message__form .itemForm,
.contact-message__form .wpcf7-form > div[role="form"] > p {
	margin: 0;
}

.contact-message__form .itemForm {
	color: transparent;
	font-size: 0;
	line-height: 0;
}

.contact-message__form .itemForm::before {
	display: block;
	margin-bottom: 10px;
	color: var(--vien-color-white);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.contact-message__form .itemForm:has([name="nombre-completo"])::before {
	content: 'Nombre';
}

.contact-message__form .itemForm:has([name="correo-electronico"])::before {
	content: 'Email';
}

.contact-message__form .itemForm:has([name="numero-contacto"])::before {
	content: 'Teléfono';
}

.contact-message__form .itemForm:has([name="mensaje"])::before {
	content: 'Cuéntanos';
}

.contact-message__form .itemForm:has([name="servicio-solicitado"])::before {
	content: 'Servicio';
}

.contact-message__form .itemForm:has([name="empresa"])::before {
	content: 'Empresa';
}

.contact-message__form .itemForm > span {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.contact-message__form .itemForm input,
.contact-message__form .itemForm textarea {
	display: block;
	width: 100%;
	height: 46px;
	padding: 0 17px;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: var(--vien-color-white);
	color: var(--vien-color-navy);
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	box-shadow: none;
	appearance: none;
}

.contact-message__form .itemForm textarea {
	height: 126px;
	min-height: 126px;
	padding-top: 15px;
	resize: vertical;
}

.contact-message__form .itemForm input::placeholder,
.contact-message__form .itemForm textarea::placeholder {
	color: transparent;
	letter-spacing: 0.2px;
	opacity: 0;
}

.contact-message__form .itemForm input:focus,
.contact-message__form .itemForm textarea:focus {
	box-shadow: inset 0 0 0 2px var(--vien-color-green);
}

.contact-message__form .wpcf7-form > div[role="form"] > p {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 9px;
}

.contact-message__form .wpcf7-submit.btnForm {
	float: none;
	width: 132px;
	height: 42px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid var(--vien-color-green);
	border-radius: 0;
	background: var(--vien-color-green);
	color: var(--vien-color-white);
	font-family: inherit;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	box-shadow: none;
}

.contact-message__form .wpcf7-submit.btnForm:hover,
.contact-message__form .wpcf7-submit.btnForm:focus {
	border-color: var(--vien-color-navy);
	background: var(--vien-color-navy);
}

.contact-message__form .wpcf7-spinner {
	margin: 0;
}

.contact-message__form .wpcf7-not-valid-tip {
	padding-top: 6px;
	color: #fff;
	font-size: 10px;
}

.contact-message__form .wpcf7-response-output {
	margin: 2px 0 0;
	padding: 11px 14px;
	border-width: 1px;
	color: var(--vien-color-white);
	font-size: 10px;
}

.service-request__form h2 {
	--vien-marker-offset: 0;
	--vien-marker-secondary-color: var(--vien-color-blue);
	max-width: 260px;
	margin-bottom: 36px;
	color: var(--vien-color-blue);
}

.service-request__form .wpcf7-form-control-wrap {
	display: block;
}

.service-request__form .itemForm::before {
	color: var(--vien-color-navy);
}

.service-request__form .itemForm input:not([type="hidden"]),
.service-request__form .itemForm textarea,
.service-request__form .itemForm select {
	display: block;
	width: 100%;
	border: 1px solid #cdd7e2 !important;
	border-radius: 0;
	background: #f8fafc !important;
	color: var(--vien-color-navy);
	font-family: inherit;
	font-size: 15px;
	box-shadow: none;
}

.service-request__form .itemForm input:not([type="hidden"]),
.service-request__form .itemForm select {
	height: 46px;
	padding: 0 17px;
}

.service-request__form .itemForm textarea {
	height: 132px !important;
	min-height: 132px;
	padding: 15px 17px;
	resize: vertical;
}

.service-request__form .itemForm input:not([type="hidden"]):focus,
.service-request__form .itemForm textarea:focus,
.service-request__form .itemForm select:focus {
	border-color: var(--vien-color-green) !important;
	outline: 0;
	background: var(--vien-color-white) !important;
	box-shadow: inset 0 0 0 1px var(--vien-color-green);
}

.service-request__form .wpcf7-response-output {
	color: var(--vien-color-navy);
}

.contact-message__map {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	overflow: hidden;
	background: #e6ebef;
}

.contact-message__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.contact-message__marker {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 78px;
	height: auto;
	transform: translate(-50%, -100%);
	pointer-events: none;
}

@media (min-width: 1400px) {
	.contact-message__form-column {
		flex-basis: 611px;
		width: 611px;
	}

	.contact-message__map-column {
		flex-basis: 729px;
		width: 729px;
	}

	.contact-message__map {
		height: 729px;
		aspect-ratio: auto;
	}
}

@media (max-width: 1199.98px) {


	.contact-information__content {
		padding-left: 0;
	}


}

@media (max-width: 991.98px) {
	.contact-hero {
		height: 460px;
	}

	.contact-information {
		padding: 72px 0;
	}



	.contact-information__image {
		max-width: none;
		aspect-ratio: 16 / 10;
	}

	.contact-information__content {
		max-width: 620px;
	}

	.contact-message {
		padding: 72px 0;
	}



	.contact-message__form-column,
	.contact-message__map-column {
		flex: 0 0 auto;
		width: 100%;
	}

	.contact-message__form {
		max-width: none;
	}

	.service-request__form {
		margin-left: 0;
		padding: 36px 30px;
	}

	.service-request-form {
		padding: 36px 30px;
	}

	.contact-message__map {
		height: auto;
		aspect-ratio: 1;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.contact-message__form .col-md-6 {
		flex: 0 0 auto;
		width: 50%;
	}
}

@media (max-width: 767.98px) {
	.contact-hero {
		height: 380px;
	}

	.contact-hero__title {
		font-size: 27px;
	}

	.contact-hero__breadcrumb {
		margin-bottom: 36px;
	}

	.contact-information {
		padding: 56px 0 62px;
	}

	.contact-information__image {
		aspect-ratio: 1;
	}

	.contact-information__group + .contact-information__group {
		margin-top: 36px;
	}

	.contact-message {
		padding: 62px 0;
	}

	.contact-message__form h2 {
		margin-bottom: 38px;
	}

	.service-request__summary {
		min-height: 0;
		padding: 34px 24px;
	}

	.service-request__form {
		padding: 34px 24px;
	}

	.service-request-form {
		padding: 34px 24px;
	}

	.service-request__summary h2 {
		font-size: 19px;
	}

	.contact-message__map {
		aspect-ratio: 1;
	}

	.contact-message__marker {
		width: 64px;
	}
}

/* ==================================================
   ANIMATIONS
   ================================================== */
