:focus {
	outline: none;
}
:focus-visible {
	outline: none;
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: 'DM Sans', sans-serif;
}

.open-mobile-nav {
    overflow: hidden;
}

nav.nav {
	position: relative;
	/*background-color: #fff;*/
	z-index: 1000;
	transition: /*background-color 0.25s ease-in-out,*/
				color 0.25s ease-in-out,
				transform 0.25s ease-out;

	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
nav.nav.nav-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
nav.nav.nav-hidden {
	transform: translateY(-100%);
}
div[data-barba="container"].home nav.nav.nav-transparent {
	/*background-color: transparent;*/
	color: #fff;
}
nav.nav:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    transform: scale(1, 1);
    transform-origin: center top;
    transition: transform 0.5s ease-in-out;
}
nav.nav.nav-transparent:before {
    transform: scale(1, 0);
}
.nav-container {
	position: relative;
/* 	padding-left: 0.5rem;
	padding-right: 0.5rem; */
	padding-left: 15px;
	padding-right: 15px;
	z-index: 3;
}

@media all and (max-width: 768px) {
   .nav-container {
/*        padding: 0; */
/* 	   padding-left: calc(5% + 0.5rem);
	   padding-right: calc(5% + 0.5rem); */
	   padding-left: 15px;
	   padding-right: 15px;
	   width: 100% !important;
   } 
}
.nav-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
	padding-top: 20px;
	padding-bottom: 20px;
}
@media (min-width: 992px) {
	.nav-row {
		flex-wrap: nowrap;
	}
}
.nav-col {
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
@media (max-width: 991.98px) {
	.nav-col {
		position: relative;
		z-index: 2;
	}
}

.nav-logo-wrapper {
	margin-right: auto;
}
a.nav-logo {
	display: block;
	width: 100px;
	max-width: 100%;
	color: #006CB5;
	transition: color 0.25s ease-in-out,
				opacity 0.25s ease-in-out;
}
@media (min-width: 992px) {
	a.nav-logo {
		/* width: 200px; */
		/* width: 180px; */
		width: 100px;
    	height: 33px;
	}
}
div[data-barba="container"].home nav.nav.nav-transparent a.nav-logo {
	/* color: #fff; */
	display: none;
}
div[data-barba="container"].home nav.nav.nav-transparent a.nav-logo-on-top {
	display: block;
}
div[data-barba="container"].home nav.nav.nav-transparent a.nav-logo-on-top svg, div[data-barba="container"].home nav.nav a svg {
	width: 100px;
	height: 33px;
}
.nav-logo-on-top {
	display: none;
}
a.nav-logo:hover, a.nav-logo-on-top:hover {
	color: #006CB5;
	opacity: 0.75;
}
div[data-barba="container"].home nav.nav.nav-transparent a.nav-logo:hover {
	/* color: #fff !important; */
	opacity: 0.75;
}
a.nav-logo > svg {
	display: block;
	width: 100%;
	height: auto;
	border: none;
	pointer-events: none;
}

.nav-list-wrapper {
	padding-top: 20px;
	width: 100%;
}

.nav-list-wrapper .image-relative-parent {
    /*position: relative;*/
}
@media (max-width: 768px) {
	.nav-list-wrapper {
		display: flex;
	    align-items: flex-start;
		position: fixed;
		top: 78px;
		left: calc(((100% / 0.9) - 100%) / -2);
		right: calc(((100% / 0.9) - 100%) / -2);
		width: auto;
		max-width: none;
		max-height: calc(100vh - 78px);
		overflow: scroll;
		/* height: calc(100vh - 78px); */
		height: 200vh;
	}
}
@media (max-width: 991.98px) {
	.nav-list-wrapper {
	    display: flex;
	    align-items: flex-start;
		position: fixed;
		top: 78px;
		left: calc(((100% / 0.9) - 100%) / -2);
		right: calc(((100% / 0.9) - 100%) / -2);
		width: auto;
		max-width: none;
		/* max-height: calc(100vh - 78px); */
		padding: 21px 0 0 0;
		background-color: #fff;
		color: #000;
		transform: translateY(calc(-100% - 78px));
		z-index: 1;
		/*overflow: auto;*/
		overflow: auto;
		/* height: calc(100vh - 78px); */
		height: 100vh;
	}
}
@media (min-width: 992px) {
	.nav-list-wrapper {
		margin-left: auto;
		margin-right: auto;
		width: auto;
		padding-top: 0;
	}
}
ul.nav-list {
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}
ul.nav-list.desktop-menu {
	display: none;
	flex-wrap: wrap;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}
/* ul.nav-list.mobile-menu { */
.mobile-menu {
	padding-left: calc(10% + 0.5rem) !important;
	padding-right: calc(5% + 0.5rem);
	position: fixed;
    top: 40px;
    left: 0;
    overflow: scroll;
	height: 100%;
    padding-top: 0;
}
@media (min-width: 992px) {
	/* ul.nav-list.mobile-menu { */
	.mobile-menu {
		display: none;
	}
	ul.nav-list.desktop-menu {
		display: flex;
	}
}
ul.nav-list.desktop-menu > li.menu-item {
	flex: 0 0 auto;
	width: auto;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
ul.nav-list > li.menu-item:not(:last-of-type) {
	margin-bottom: 10px;
	line-height: 1;
}
@media (min-width: 992px) {
	ul.nav-list > li.menu-item:not(:last-of-type) {
		margin-bottom: 0;
		margin-right: 48px;
	}
}
ul.nav-list.desktop-menu > li.menu-item.hoverable {
	margin-top: calc((100px * (63 / 202) + 40px - (16px * 1.333333)) / -2);
	margin-bottom: calc((100px * (63 / 202) + 40px - (16px * 1.333333)) / -2);
	padding-top: calc((100px * (63 / 202) + 40px - (16px * 1.333333)) / 2);
	padding-bottom: calc((100px * (63 / 202) + 40px - (16px * 1.333333)) / 2);
}
@media (min-width: 992px) {
	ul.nav-list.desktop-menu > li.menu-item.hoverable {
		margin-top: calc((200px * (63 / 202) + 40px - (18px * 1.333333)) / -2);
		margin-bottom: calc((200px * (63 / 202) + 40px - (18px * 1.333333)) / -2);
		padding-top: calc((200px * (63 / 202) + 40px - (18px * 1.333333)) / 2);
		padding-bottom: calc((200px * (63 / 202) + 40px - (18px * 1.333333)) / 2);
	}
}
ul.nav-list li.menu-item > a {
	display: inline-block;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.333333;
	text-decoration: none;
	transition: color 0.25s ease-in-out;
}
ul.nav-list > li.menu-item > a {
	font-weight: 700;
}
@media (min-width: 992px) {
	ul.nav-list li.menu-item > a {
		font-size: 18px;
	}
	ul.nav-list > li.menu-item > a {
		display: block;
	}
}
div[data-barba="container"].home nav.nav.nav-transparent ul.nav-list:not(.mobile-menu) > li.menu-item > a {
	color: #fff;
}
ul.nav-list > li.menu-item > a:hover,
div[data-barba="container"].home nav.nav.nav-transparent ul.nav-list > li.menu-item > a:hover {
	color: #006CB5;
}
nav.nav.mega-menu-open ul.nav-list > li.menu-item.hoverable > a {
	color: #006CB5;
}

ul.nav-list li.menu-item > ul.sub-menu {
	padding-top: 6px;
	list-style: none;
	padding-left: 20px;
}

.wpml-language-switcher-wrapper .wpml-ls-slot-shortcode_actions:first-child {
	position: relative;
}

.wpml-language-switcher-wrapper .wpml-ls-slot-shortcode_actions:first-child::after {
    content: "|";
    position: absolute !important;
	right: -2px !important;
    bottom: 6px !important;
	color: inherit !important;
}


.wpml-switcher-mobile {
	display: block;
	position: absolute;
    top: 0;
	padding-left: calc(10% + 0.5rem);
}

.wpml-switcher-desktop {
	display: none;
}

.wpml-switcher-mobile a {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
    padding: 5px 10px 6px;
}

.wpml-ls-legacy-list-horizontal {
	padding-left: 0;
	padding-right: 0;
}

.wpml-switcher-mobile li:first-child a {
	color: inherit;
	font-weight: 700;
	text-decoration: none;
    padding-left: 0;
}

@media (min-width: 992px) {
	.nav-toggler-wrapper {
		display: none;
	}
	
	.wpml-switcher-mobile {
		display: none;
	}
	
	.wpml-switcher-desktop {
		display: block;
	}
}

.nav-search-wrapper {
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (min-width: 992px) {
	.nav-search-wrapper {
		order: 1;
		width: 200px;
		text-align: right;
	}
}

.nav-search-wrapper .wpml-language-switcher-wrapper * {
	font-family: inherit;
	color: inherit;
	font-weight: 700;
	letter-spacing: inherit;
	line-height: normal;
	font-size: 18px;
}

button.nav-toggler,
button.nav-search,
button.search-submit {
	display: inline;
	position: relative;
	width: auto;
	padding: 0;
	background-color: transparent;
	border-color: initial;
	border-width: 0;
	border-style: none;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: normal;
	text-align: center;
	cursor: pointer;
	transition: color 0.25s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
button.nav-toggler:hover,
button.nav-search:hover {
	color: #006CB5;
}
button.nav-toggler {
	display: block;
	position: relative;
	width: 2.375em;
	height: 2.375em;
	color: inherit;
	font-size: 1rem;
}
button.nav-toggler > span {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height: 0.125em;
	background-color: currentColor;
	border-radius: 0rem;
}
button.nav-toggler > span:nth-of-type(1) {
	top: calc(50% - 0.3125em - (0.125em / 2));
	transition: transform 0.25s ease,
				top 0.25s ease 0.25s;
}
button.nav-toggler > span:nth-of-type(2) {
	top: calc(50% + 0.3125em - (0.125em / 2));
	transition: transform 0.25s ease,
				top 0.25s ease 0.25s;
}
button.nav-toggler.opened > span:nth-of-type(1) {
	top: calc(50% - (0.125em / 2));
	transform: rotate(-45deg);
	transition: transform 0.25s ease 0.25s,
				top 0.25s ease;
}
button.nav-toggler.opened > span:nth-of-type(2) {
	top: calc(50% - (0.125em / 2));
	transform: rotate(45deg);
	transition: transform 0.25s ease 0.25s,
				top 0.25s ease;
}

button.nav-search {
	display: block;
	margin-left: auto;
	width: 18.8px;
	height: 18.8px;
	font-size: 1em;
	line-height: 1;
}
button.nav-search > svg, .lottie-hamburger > svg {
	display: block;
	height: 100% !important;
	width: 100% !important;
	border: none;
	color: currentColor !important;
	pointer-events: none;
}
button.nav-search > svg path, .lottie-hamburger > svg path {
	stroke: currentColor;
}
.search-modal {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    background-color: #fff;
	transform: translateY(calc(-100% - 78px));
    z-index: 2 !important;
}
@media (min-width: 992px) {
	.search-modal {
		transform: translateY(calc(-100% - 102px));
	}
}
.search-modal > .container {
	padding-top: calc((78px - (20px * 1.25 + 16px + 1px)) / 2);
	padding-bottom: calc((78px - (20px * 1.25 + 16px + 1px)) / 2);
}
.search-modal form.searchform {
	position: relative;
	overflow: hidden;
}
.search-modal form.searchform > div {
	position: relative;
    transform: translateY(100%);
	transition: transform 0.5s ease-in-out;
}
.search-modal.opened:not(.opening):not(.closing) form.searchform > div {
	transform: translateY(0);
}
.search-modal form.searchform label.screen-reader-text {
    display: none;
}
.search-modal form.searchform input {
	width: 100%;
	padding: 8px 24px 8px 0;
	border: none;
	border-bottom: 1px solid #000;
	color: #000;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}
@media (min-width: 992px) {
.search-modal > .container {
		padding-top: calc((200px * (63 / 202) + 40px - (24px * 1.25 + 16px + 1px)) / 2);
		padding-bottom: calc((200px * (63 / 202) + 40px - (24px * 1.25 + 16px + 1px)) / 2);
	}
	.search-modal form.searchform input {
		font-size: 24px;
	}
}
button.search-submit {
    position: absolute;
    top: calc(50% - 0.5em - 1px);
    right: 0;
    left: auto;
    bottom: auto;
    width: 1em;
    height: 1em;
    font-size: 18px;
    transition: opacity 0.25s ease-in-out;
}
button.search-submit:hover {
    opacity: 0.5;
}
button.search-submit > svg {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.mega-menu-modal {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	right: 0;
	transform: translateY(calc(-100% - 102px));
	z-index: 1;
	max-height: calc(100vh - 102px);
/* 	overflow: auto; */
	overflow: auto;
	overflow-x: hidden;
}
@media (max-width: 991.98px) {
	.mega-menu-modal {
		transform: translateY(calc(-100% - 78px));
		max-height: calc(100vh - 78px);
	}
}
.mega-menu-holder {
	padding-top: 41px;
	padding-bottom: 60px;
	background-color: #fff;
	color: #000;
}
.term-wrapper {
	position: relative;
}
.term-wrapper + .term-wrapper {
	margin-top: 40px;
}
.parent-term {
	position: relative;
	padding-bottom: 1px;
	overflow: hidden;
}
.parent-term:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #E9E9E9;
	pointer-events: none;
	transform: scale(0, 1);
	transform-origin: left center;
	transition: transform 0.5s ease-in-out;
}
.mega-menu-modal.opened:not(.opening):not(.closing) .parent-term:after {
	transform: scale(1, 1);
}
.parent-term > a {
	--transform-delay: 0s;
	display: block;
	position: relative;
	padding: 18px 0px 18px 48px;
	color: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	transition: color 0.25s ease-in-out,
				transform 0.5s ease-in-out var(--transform-delay);
	text-decoration: none;
	transform: translateY(100%);
}
.mega-menu-modal.opened:not(.opening):not(.closing) .parent-term > a {
	transform: translateY(0);
}
span.parent-term-icon {
	display: block;
	position: absolute;
	top: calc(50% - 15px);
	left: 0;
	width: 30px;
	height: 30px;
}
span.parent-term-icon > img,
span.parent-term-icon > svg {
	display: block;
	width: 100%;
	height: auto;
	border: none;
}
.children-terms {
	padding-top: 8px;
}
.child-term {
	overflow: hidden;
}
.child-term > a {
	--transform-delay: 0s;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease-in-out,
				transform 0.5s ease-in-out var(--transform-delay);
	transform: translateY(100%);
}
.mega-menu-modal.opened:not(.opening):not(.closing) .child-term > a {
	transform: translateY(0);
}

a.overflow-holders {
    overflow: hidden;
}
span.overflowers {
	--transform-delay: 0s;
    display: inline-block;
    transform: translateY(100%);
	transition: transform 0.5s ease-in-out var(--transform-delay);
}
.nav-list-wrapper.opened:not(.opening):not(.closing) span.overflowers {
	transform: translateY(0);
}

.terms-image-switcher {
	--transform-delay: 0s;
	position: relative;
	margin-right: calc(((100% + 1rem) / 0.25 / 0.9 - ((100% + 1rem) / 0.25)) * -0.5 - 0.5rem);
	height: 100%;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition: clip-path 0.5s ease-in-out var(--transform-delay);
}
.mega-menu-modal.opened:not(.opening):not(.closing) .terms-image-switcher {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.terms-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	/*transition: clip-path 0s ease-in-out;*/
	z-index: 1;
}
.terms-image.active {
	z-index: 2;
}
.terms-image > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mobile-menu-image {
    position: absolute;
    top: 20px;
    bottom: 40px;
    left: 60%;
    right: 0;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition: clip-path 0.5s ease-in-out;
	height: 80%;
}
.nav-list-wrapper.opened:not(.opening):not(.closing) .mobile-menu-image {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (min-width: 992px) {
	.mobile-menu-image {
		display: none;
	}
}
.mobile-menu-image > img {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    object-position: center;
}

ul.nav-list > li.menu-item.current-menu-item > a {
    color: #006CB5;
}
ul.nav-list > li.menu-item.current-menu-item:not(.hoverable) > a {
    pointer-events: none;
}

.image-anim-wrapper.remove-overlay:after {
    transform: scale(1, 0);
	transform-origin: center bottom;
	transition-property: transform;
} 