/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

body {
	word-wrap: break-word;
	text-rendering: optimizeLegibility;

	min-height: 100vh;
	overflow-y: scroll;
	overflow-x: hidden;
}

a {
	color: var(--e-global-color-accent, #00ACBB);
	transition: all .3s ease;
	&:hover {
		color: #000;
	}
}

.header-lang-select .gtranslate_wrapper {
    max-width: 320px;
    width: 100%;
    background: #1c49a4;
    border-radius: 21px;
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 14;
	min-width:200px;
	
	@media (max-width: 768px) {
    top: -40px;
    right: 50%;
		top:-30px;
    margin-right: -100px;
		}

	.gt_switcher {
		width: 100%;
		padding-top: 42px;
		position: relative;

		.gt_selected {
			width: 100%;
			background: none;
			position: absolute;
			top: 0;
			left: 0;

			a {
				width: 50%;
				padding: 9px 15px;
				background: none !important;
				color: #fff;
				border: 0;
				display: flex;
				align-items: center;
				gap: .5rem;

				&:after {
					width: 16px;
					height: 16px;
					background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='8' fill='%23BED542'/%3E%3Cpath d='M4.94 10.273L8 7.22l3.06 3.053.94-.94-4-4-4 4 .94.94z' fill='%23002776'/%3E%3C/svg%3E");
					top: 50%;
					transform: translateY(-50%) !important;
				}

				&.open:after {
					transform: translateY(-50%) rotate(-180deg) !important;
				}
			}

			.gt_switcher {
				width: 100%;
				padding-top: 32px;
				position: relative;
			}
		}

		.gt_option {
			width: 100%;
			padding-left: 4px;
		}
	}
}

.elementor-widget-off-canvas {

	.gtranslate_wrapper {
		width: 240px;
		background: #fff;
		border-radius: 18px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 10;

		.gt_switcher {
			width: 240px;
			padding-top: 32px;
			position: relative;

			.gt_option {
				width: 100%;
				padding-left: 4px;
			}
		}
	}

	.gtranslate_wrapper .gt_switcher .gt_selected {
		background: none;
		position: absolute;
		top: 0;
		left: 0;

		a {
			width: 225px;
			padding-left: 11px;
			background: none !important;
			border: 0;

			&:after {
				width: 16px;
				height: 16px;
				background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='8' fill='%23BED542'/%3E%3Cpath d='M4.94 10.273L8 7.22l3.06 3.053.94-.94-4-4-4 4 .94.94z' fill='%23002776'/%3E%3C/svg%3E");
				top: 50%;
				transform: translateY(-50%) !important;
			}
		}
	}
}

.navMenu {
	.e--pointer-underline .elementor-item::after {
		height: 2px;
		width: 0;
		margin-inline: auto;
		right: 0;
	}

	.menu-item .elementor-item.elementor-item-active:after,
	.e--pointer-underline .elementor-item:hover:after {
		width: 100%;
	}
}

.menuWrap .elementor-widget-off-canvas {
	--e-off-canvas-animation-duration: .5s;
}

.fmx-accordion {
	font-family: var(--e-global-typography-accent-font-family, "Montserrat"), sans-serif;
	width: 100%;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(var(--column, 2), 1fr);
	grid-gap: 1rem;
	align-items: flex-start;

	@media (max-width: 992px) {
		--column: 1 !important;
	}

	.accordion-item {
		background: #f8f8f8;
		border-radius: 4px;
		overflow: hidden;
		list-style: none;

		&.active {
			.accordion-icon-right svg {
				transform: rotate(180deg);
			}

			.accordion-content-wrapper {
				grid-template-rows: 1fr;
				opacity: 1;
				padding-block: 25px;
				padding-inline: 110px 30px;

				@media (max-width: 480px) {
					padding-inline: 20px;
				}
			}

			.accordion-header {
				background: #f2f2f2;
			}
		}
	}

	.accordion-header {
		display: flex;
		align-items: center;
		padding: 20px 30px;
		cursor: pointer;
		user-select: none;
		transition: background 0.3s ease;

		@media (max-width: 480px) {
			padding: 10px;
		}

		&:hover {
			background: #f2f2f2;
		}
	}

	.accordion-icon-left {
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 20px;
		flex-shrink: 0;

		svg,
		img {
			width: 100%;
			height: auto;
		}
	}

	.accordion-title-wrapper {
		flex-grow: 1;
	}

	.accordion-title {
		margin: 0;
		font-size: clamp(20px, 4vw, 24px);
	}

	.accordion-icon-right {
		width: 40px;
		height: 40px;
		flex-shrink: 0;
		margin-left: 20px;
		display: flex;
		align-items: center;
		justify-content: center;

		svg {
			width: 100%;
			height: auto;
			transition: all .3s ease;
			transform: rotate(0deg);
		}

		@media (max-width: 480px) {
			display: none;
		}
	}

	/* Grid technique for smooth auto-height transition */
	.accordion-content-wrapper {
		display: grid;
		grid-template-rows: 0fr;
		padding: 0 30px 0 110px;
		opacity: 0;
		transition: grid-template-rows 0.3s ease, opacity 0.3s ease, padding 0.3s ease;

		@media (max-width: 480px) {
			padding: 0 20px 0 20px;
		}

		.accordion-content {
			min-height: 0;
			overflow: hidden;
			font-size: clamp(16px, 4vw, 20px);

			ul {
				list-style-type: disc;
				padding-left: 1rem;
				margin-bottom: 1rem;
			}

			p:last-child {
				margin-bottom: 0;
			}
		}
	}
}

#bzOpeningsContainer {
	font-family: var(--e-global-typography-accent-font-family, "Montserrat"), sans-serif;

	ul {
		margin: 0;
		padding: 0;
		list-style: none;

		.bzOpeningsCategory {
			margin-bottom: 48px;

			.bzCategory {
				font-family: var(--e-global-typography-primary-font-family, "PT Serif Caption"), sans-serif;
				text-align: center;
				font-size: clamp(2rem, 4vw, 3rem);
			}

			ul.bzOpeningsList {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;

				.bzOpening {
					width: 24%;
					margin: 0 .5% 1%;
					padding: 12px;
					background-color: #f5f5f5;
					text-align: center;
					transition: all .3s ease;

					&:hover {
						background-color: #eee;
					}

					a {
						color: #000;

						.bzButtonApply {
							padding: 0;
							-webkit-appearance: none;
							appearance: none;
							border: 0;
							border-radius: 0;
							background: transparent;
							line-height: 1;
							cursor: auto !important;
							color: inherit;

							&:hover {
								background-color: transparent;
								color: inherit;
								text-decoration: none;
							}
						}
					}

					h2 {
						color: #141514;
						font-weight: 500;
						font-size: clamp(18px, 4vw, 26px);
						word-break: break-word;
					}

					.bzMeta {
						color: #3b3d3b;
						font-weight: 300;
					}

					@media (max-width: 1024px) {
						width: 32%;
					}

					@media (max-width: 768px) {
						width: 48%;
					}

					@media (max-width: 480px) {
						width: 100%;
					}
				}
			}
		}
	}
}

.fmx-articles {
	font-family: var(--e-global-typography-accent-font-family, "Montserrat"), sans-serif;

	.pagination {
		justify-content: center;
		font-size: 1.25rem;
		margin-block: 2.2rem 1rem;

		.page {
			display: none;
		}

		a {
			color: #52525259;
			transition: all .3s ease;

			&:hover {
				color: #000;
			}
		}

		[rel="next"],
		[rel="prev"],
		.mini {
			display: flex;
			width: 35px;
			height: 35px;
			justify-content: center;
			align-items: center;
		}

		[rel="next"],
		[rel="prev"] {
			position: relative;
			top: -2px;
		}
	}

	.fmx-article-item {
		margin-bottom: 24px;
		padding: 24px;
		background: #fff;
		display: flex;
		align-items: flex-start;

		.fmx-article-link {
			color: var(--e-global-color-accent);
			transition: all .3s ease;

			&:hover {
				color: #000;
			}
		}

		.fmx-article-bg {
			width: 264px;
			height: 264px;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
		}

		.fmx-article-content {
			width: calc(100% - 264px);
			padding-left: 32px;
		}

		.fmx-article-excerpt {
			font-size: 17px;
			color: #00000073;
			font-weight: 300;
		}

		.fmx-article-date {
			margin-bottom: 12px;
			color: #6e726e;
			font-family: var(--e-global-typography-primary-font-family, "PT Serif Caption"), sans-serif;
			font-size: 20px;
		}

		@media (max-width: 730px) {
			flex-direction: column;
			gap: 1rem;

			.fmx-article-image-link {
				display: flex;
				width: 100%;
			}

			.fmx-article-content {
				width: 100%;
				padding-left: 0;
			}

			.fmx-article-bg {
				width: 100%;
			}
		}
	}
}

.fmx-download-card {
	margin-bottom: 24px;
	padding: 24px;
	background: #fff;
	display: flex;
	flex-flow: row wrap;
	flex-direction: row;
	justify-content: space-between;
	font-family: var(--e-global-typography-accent-font-family, "Montserrat"), sans-serif;
	min-height: 215px;

	.fmx-download-title {
		font-size: clamp(20px, 4vw, 26px);
	}

	.fmx-download-desc {
		font-size: 14px;
		color: #00000073;
		font-weight: 300;
	}

	.fmx-download-content {
		width: calc(100% - 60px);
		padding-right: 12px;
	}

	.fmx-download-cta {
		width: 48px;
		padding-top: 32px;
	}

	.fmx-download-btn {
		width: 100%;
		height: 48px;
		background: var(--e-global-color-accent, #00ACBB);
		color: #fff;
		border-radius: 24px;
		display: none;
		align-items: center;
		justify-content: center;
		&:hover {
			background: #000;
		}
	}
}

.fmx-download-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: .5rem;
	gap: .5rem;

	[aria-disabled="true"] {
		opacity: .25;
		pointer-events: none;
	}

	.swiper-pagination-bullet {
		background: none;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 20px;
		height: 30px;
		font-size: 1.5rem !important;
		margin-inline: .5rem !important;
	}
	.fmx-swiper-pagination {
		display: inline-flex;
		width: auto !important;
	}
}

html:not(
[lang="auto"],
[lang="en-US"],
[lang="es"],
[lang="ht"],
[lang="pt"],
[lang="vi"]
) .fmx-download-btn.en,
html[lang="auto"] .fmx-download-btn.en,
html[lang="en-US"] .fmx-download-btn.en,
html[lang="es"] .fmx-download-btn.es,
html[lang="ht"] .fmx-download-btn.ht,
html[lang="pt"] .fmx-download-btn.pt,
html[lang="vi"] .fmx-download-btn.vi {
	display: flex !important;
}

form {

	input[type="date"],
	input[type="email"],
	input[type="number"],
	input[type="password"],
	input[type="search"],
	input[type="tel"],
	input[type="text"],
	input[type="url"],
	select,
	textarea {
		display: block;
		margin: 0 0 1rem;
		border: 1px solid #cacaca;
		box-shadow: inset 0 1px 2px #0000001a;
		-webkit-appearance: none;
		appearance: none;
	}

	textarea,
	select,
	input {
		&:focus {
			--gf-ctrl-outline-color-focus: #000;
			--gf-ctrl-border-color-focus: #000;
			--gf-ctrl-outline-width-focus: 2px;
		}
	}

	input[type="submit"] {
		--gf-ctrl-btn-padding-y: 1rem;
		--gf-ctrl-btn-padding-x: 1.5rem;

		--gf-ctrl-btn-bg-color-hover-primary: #000;
		--gf-ctrl-btn-bg-color-primary: var(--e-global-color-accent);
		--gf-ctrl-btn-bg-color-focus-primary: var(--e-global-color-accent);
		--gf-ctrl-outline-color-focus: transparent;
	}

	input[type="file"] {
		cursor: pointer;
	}

	.gform_fields {
		--gf-form-gap-y: 1.5rem;
		--gf-field-gap-x: 1rem;

		input[type="text"],
		input[type="email"],
		input[type="tel"],
		input[type="file"],
		textarea {
			--gf-ctrl-bg-color-hover: var(--e-global-color-accent);
			--gf-local-bg-color: var(--e-global-color-accent);
			box-shadow: none;
			border: 1px solid var(--e-global-color-accent);
			height: 48px;

			&::placeholder {
				color: rgba(0, 0, 0, 0.47);
			}
		}
	}

	.gform-footer {
		justify-content: center;
	}
}


[data-widget_type="text-editor.default"] {
	ul,ol {
		margin-bottom: 1rem;
		padding-left: 1rem;
	}
	code {
		border: 1px solid #cacaca;
		background-color: #e6e6e6;
		padding: .125rem .3125rem .0625rem;
	}
}

main.site-main.page {
	.page-header {
		position: absolute;
		left: -9999px;
	}
	.wp-block-heading {
		font-weight: bold;
	}
	.wp-block-list {
		padding-left: 1rem;
		margin-bottom: 1rem;
	}
	.page-content {
		font-family: var(--e-global-typography-accent-font-family, "Montserrat"), sans-serif;
	}
}


.titleInherit {
	.accordion-content h2,
	.accordion-content h3,
	.accordion-content h4,
	.accordion-content h5
	{
		font-size: inherit;
		margin-top: 1.5rem;
	}
}

[data-widget_type="text-editor.default"] p b {
	font-weight: bold;
}

.galleryItemText {
	.content {
		opacity: 0;
		visibility: hidden;
		transition: all .5s ease;
	}

	&:hover {
		.content {
			opacity: 1;
			visibility: visible;
		}
	}
}

.sp-testimonial-free-section .testimonial-pagination {
	bottom: 0 !important;

	.swiper-pagination-bullet {
		--swiper-pagination-bullet-horizontal-gap: 3px;
	}
}


.rightFullBg::after,
.leftFullBg::after {
	content: "";
	background-color: inherit;
	width: 50dvw;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	z-index: -1;
}
.leftFullBg::after {
	margin-left: calc(50% - 50dvw);
	left: 0;
}
.rightFullBg::after {
	margin-right: calc(50% - 50dvw);
	right: 0;
}

.rightFullImage {
	@media (min-width: 1024px) {
		width: 90dvh;
		margin-right: calc(50% - 50dvw);
	}

	.elementor-widget-n-carousel {
		height: 100%;
		.e-n-carousel.swiper {
			height: 100%;
		}
	}
}

.listBg {
	--bg-color: #eee;

	ul.elementor-icon-list-items li {
		background-color: var(--bg-color);
		padding: 20px;
	}
	&.red {
		--bg-color: hsl(from var(--e-global-color-secondary) h s l / 15%);
	}
	&.blue {
		--bg-color: hsl(from var(--e-global-color-primary) h s l / 15%);
	}
	&.accent {
		--bg-color: hsl(from var(--e-global-color-accent) h s l / 15%);
	}
	.elementor-icon-list-icon {
		background-color: #fff;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		margin-right: 1.25rem;
	}
	@media (min-width: 768px) {
		ul.elementor-icon-list-items li {
			min-height: 138px;
		}
	}
}

.fmxUser {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: flex-end;
	font-family: var(--e-global-typography-accent-font-family, "Montserrat"), sans-serif;

	a:hover {
		color: inherit;
	}
	@media (max-width: 1024px) {
		justify-content: flex-start;
	}
}

.document-downloads {
	.filters.grid-x {
		display: grid;
		grid-template-columns: 1fr 20%;

		.layout.hide-for-small-only {
			text-align: right;
			display: flex;
			justify-content: flex-end;
			gap: .5rem;

			a {
				background-color: #ebebeb;
				display: flex;
				align-items: center;
				justify-content: center;
				width: 48px;
				height: 48px;
				border-radius: 50%;

				&.active {
					background-color: #AFE2E3;
					svg path {
						fill: #000;
					}
				}
			}
		}

		@media (max-width: 992px) {
			.layout.hide-for-small-only {
				display: none;
			}
		}
	}
	.pagination .page {
		display: none;
	}
}

.arrowIcon {
	align-items: center;
	display: flex;

	a.elementor-icon {
		height: 50px;
		display: flex;

		svg {
			pointer-events: none;
			position: relative;
			right: 0;
			height: 50px !important;
			transition: all .3s ease;
		}
		&:hover {
			svg {
				right: -1rem;
			}
		}

	}
}

.imageCarousel {
	.elementor img.lazyload {
		max-height: 350px;
		overflow: hidden;
	}
}

.acf-rating-stars {
	display: flex;
	align-items: center;

}
