/* 
GLOBAL VARIABLES
*/
:root {
	--vacatio-forest: #004349;
	--vacatio-lime: #D5FFBF;

	--forest-neutral-1: #407277;
	--forest-neutral-2: #80A1A4;
	--forest-neutral-3: #BFD0D1;
	--forest-neutral-4: #DFE7E8;
	
	--lime-neutral-1: #DFFFCF;
	--lime-neutral-2: #EAFFDF;
	--lime-neutral-3: #F5FFEF;
	
	--black: #000000;
	--white: #ffffff;

/* 	--default-transition: all 0.3s ease-in-out; */
	--defailt-transition: none;
	--container-width: 1240px;
	--container-padding: 22px;
}

/* 
GLOBAL RESETS
*/
*,*::before, *::after {
	margin-top: 0;
	box-sizing: border-box;
}
.pt-0{
	padding-top: 0 !important;
}

.pb-0{
	padding-bottom: 0 !important;
}
body {
	margin: 0;
	padding: 0;
	font-family: var(--primary-fonts);
	font-size: 16px;
/* 	color: var(--vacatio-forest); */
	color: #000000;
	background-color: var(--white);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img,video,iframe,embed {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--default-transition);
}

.container {
	max-width: calc(var(--container-width) + 2 * var(--container-padding));
	margin-inline: auto;
	padding-inline: var(--container-padding);
}
.container.container-medium{
	--container-width: 1060px;
}
.container.container-small{
	--container-width: 605px;
}
/* 
TYPOGRAPHY
*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--primary-fonts);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 16px;
}
p,ul,ol{
	margin-bottom: 16px;
}
img.aligncenter {
    width: fit-content;
    margin: auto;
    display: block;
}
strong {
    font-weight: 700;
}
.content a:not(.button){
	text-decoration: underline;
}
/* Header CSS */
.site-header {
	padding-block: 30px;
}

/* Header Menu CSS */
.primary-menu{
	padding: 0;
	list-style: none;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 32px;
}
.primary-menu a{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	color: var(--black);
}
.primary-menu > li > .sub-menu > li > a {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 27px;
	pointer-events: none;
}

.primary-menu > li > .sub-menu > li .sub-menu a{
	font-weight: 500;
}
@media screen and (min-width: 992px){
	.primary-menu > li > .sub-menu:before {
		content: '';
		position: absolute;
		bottom: 100%;
		left: -14px;
		height: 32px;
		width: 180px;
	}
	.primary-menu > li > a {
		position: relative;
	}
	.primary-menu > li > a:before {
		content: '';
		position: absolute;
		z-index: -1;
		inset: -6px -16px;
		background-color: var(--vacatio-lime);
		border-radius: 50px;
		opacity: 0;
		pointer-events: none;
		transition: var(--default-transition);
	}

	.primary-menu > li:hover > a:before {
		opacity: 1;
		pointer-events: auto;
	}

	.primary-menu > li > .sub-menu {
		position: absolute;
		left: 0;
		padding: 0;
		margin: 16px 0 0 0;
		list-style: none;
		border-radius: 18px;
		background-color: var(--forest-neutral-4);
		display: flex;
		gap: 32px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
/* 		transition: opacity 0.3s ease, visibility 0.3s ease; */
		transition: var(--default-transition);
		border: 14px solid #ffffff;
		border-radius: 26px;
		outline: 3px solid var(--vacatio-forest);
	}

	.primary-menu > li:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.primary-menu > li {
		position: relative;
	}

	.primary-menu > li > .sub-menu > li {
		padding: 8px;
		position: relative;
	}

	.primary-menu > li > .sub-menu > li + li:before {
		content: '';
		top: 25px;
		bottom: 25px;
		width: 1px;
		background-color: var(--forest-neutral-2);
		position: absolute;
		left: -16px;
		transform: translateX(50%);
	}

	.primary-menu > li > .sub-menu > li .sub-menu {
		padding: 0;
		list-style: none;
		margin: 0;
	}

	.primary-menu > li > .sub-menu > li a {
		padding: 12px 16px;
		border-radius: 6px;
		display: block;
		min-width: 200px;
		transition: var(--default-transition);
	}

	.primary-menu > li > .sub-menu > li a:hover {
		background-color: var(--forest-neutral-3);
	}

}
.menu-wrapper .header-buttons{
	display: none;
}
/* End Header Menu CSS */

.navigation-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 32px;
	align-items: center;
}

.site-header .site-logo {
	text-align: center;
}

.header-buttons {
	display: flex;
	gap: 6px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.hamburger-menu.active .menu-open,
.hamburger-menu .menu-close,
.hamburger-menu{
	display: none;
}

.hamburger-menu .menu-open,
.hamburger-menu.active .menu-close{
	display: flex;
}

/* Footer CSS */
.site-footer{
	background-color: var(--vacatio-forest);
	border-radius: 40px 40px 0 0;
	margin-top: -40px;
}
.section-block:has( + .site-footer) .container{
	padding-bottom: 40px;
}
.top-footer-wrapper {
	position: relative;
	padding-block: 100px;
	--footer-gap: 80px;
	isolation: isolate;
}
.top-footer-wrapper:before{
	content: '';
	position: absolute;
	inset: 80px;
	background-image: var(--bg-image);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	opacity: 7%;
}

.top-footer-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.top-footer-row .site-logo img {
	height: 78px;
	width: auto;
}

.top-footer-menu-wrapper {
	margin-top: var(--footer-gap);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 86px;
	flex-wrap: wrap;
	color: #ffffff;
}

.footer-menu-column {
	flex: 0 0 180px;
	width: auto;
}

.footer-menu-title {
	color: var(--vacatio-lime);
	margin-bottom: 16px;
}

ul.footer-menu-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-social-row .social-list {
	align-items: center;
	display: flex;
	justify-content: center;
	gap: 12px;
	color: #ffffff;
}

.footer-social-row .social-list .icon {
	display: grid;
	width: 30px;
	height: 30px;
	place-content: center;
	color: var(--vacatio-forest);
	background-color: var(--vacatio-lime);
	border-radius: 50%;
}
.footer-social-row .social-list .icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}
.footer-social-row .social-list .icon:hover {
	background-color: var(--lime-neutral-2);
}
.footer-social-row {
	margin-top: var(--footer-gap);
}

.back-to-top {
	margin-top: var(--footer-gap);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vacatio-lime);
}

.back-to-top a {
	display: flex;
    border-radius: 50%;
}
.back-to-top a:hover {
    background-color: var(--vacatio-lime);
}
.back-to-top a path {
    transition: var(--default-transition);
}
.back-to-top a:hover path {
    color: var(--vacatio-forest);
}
.bottom-footer-menu {
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.bottom-footer-menu :is(a,span) {
	font-size: 13px;
	font-weight: 300;
}

ul.policy-links {
	list-style: none;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	flex-wrap: wrap;
}

.footer-description {
	font-size: 13px;
	line-height: 1.5;
	font-weight: 300;
	color: #ffffff;
}

.bottom-footer-wrapper {
	padding-block: 60px;
	border-top: 1px solid var(--forest-neutral-1);
}

.footer-description > *:last-child {
	margin-bottom: 0;
}

.footer-description a {
	text-decoration: underline;
	text-decoration-color: #ffffffa8;
}
.site-footer a:hover {
	text-decoration: underline;
}
.bottom-footer-wrapper a:hover{
	color: var(--vacatio-lime);	
}
.footer-menu-column .static-link {
	margin-bottom: 16px;
}

.footer-menu-column .static-link a {
	font-weight: 600;
	font-size: 18px;
	color: var(--vacatio-lime);
}

/* single-page-content */
.wp-block-group.single-page-content {
    border-radius: 32px 32px 0 0;
    padding: 40px 0 100px;
}

.wp-block-group.single-page-content .wp-block-group__inner-container {
    max-width: 645px;
    margin: 0 auto;
}

.wp-block-group.single-page-content .section-block {
    padding-top: 40px;
    padding-bottom: 40px;
}
.wp-block-group.single-page-content .wp-block-separator {
    margin: 0 20px;
    border: 0;
    border-bottom: 1px solid var(--vacatio-forest);
}

.wp-block-group.single-page-content .wp-block-separator:has( + .wp-block-spacer):nth-last-child(2){
    border-bottom-width: 4px;
}

/* Image Content Section */
.image-content-section{
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--bg-color);
}
header + .image-content-section{
	padding-top: 40px;
}
.image-content-wrapper{
	display: grid;
	--image: 50%;
	--content: 50%;
	grid-template-columns: calc(var(--image) - 1/2 * var(--column-gap)) calc(var(--content) - 1/2 * var(--column-gap));
	column-gap: var(--column-gap);
	align-items: center;
}
.image-content-wrapper.row-reverse{
	grid-template-columns: calc(var(--content) - 1/2 * var(--column-gap)) calc(var(--image) - 1/2 * var(--column-gap));
}

.image-content-wrapper.row-reverse .image-column{
	order: 1;
}
.image-content-wrapper .image-column .img-wrapper{
	min-width: 100%;
	align-self: flex-start;
}
.image-content-wrapper .image-column img{
	width: 100%;
	display: block;
	border-radius: 32px;
}
.image-content-wrapper .image-column .img-wrapper img.no-radius{
	border-radius: 0;
}
.image-content-wrapper:has( > *:only-child){
	grid-template-columns: 100%;
}
.image-content-wrapper.layout-auto {
    grid-template-columns: auto 1fr;
}
.image-content-wrapper.layout-2-3{
	--image: 40%;
	--content: 60%;
}
.image-content-wrapper.layout-1-4{
	--image: 20%;
	--content: 80%;
}
.image-content-wrapper.layout-3-2{
	--image: 60%;
	--content: 40%;
}
.image-content-wrapper.layout-4-1{
	--image: 80%;
	--content: 20%;
}
.image-content-wrapper > *{
	width: 100%;
}
.image-content-wrapper.row-reverse .content{
	order: -1;
}
.image-content-wrapper .content > *:last-child{
	margin-bottom: 0;
}
.image-content-wrapper.separator .image-column:after {
    content: '';
    position: absolute;
    --offset: calc(var(--column-gap) * -0.5);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--forest-neutral-1);
    right: var(--offset);
}
.image-content-wrapper.row-reverse.separator .image-column:after {
    left: var(--offset);
    right: 0;
}
.image-content-wrapper.separator .image-column {
    position: relative;
}
.image-content-section:has(.border-box) {
    background-color: transparent;
}

.image-content-wrapper.border-box {
    border: 3px solid var(--vacatio-forest);
    border-radius: 32px;
    background-color: var(--bg-color);
    padding: 54px;
}
.image-content-section .image-column {
    align-self: stretch;
    display: flex;
    align-items: center;
}
.image-content-wrapper .content :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 8px;
}
.image-content-wrapper .content *:has(>.button){
    margin-top: 24px;
}
.image-content-wrapper .text-content:has( > .button){
    display: flex;
    align-items: center;
    gap: var(--column-gap);
}
.image-content-wrapper.row-reverse .text-content:has( > .button){
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}
.image-content-wrapper .text-content:has( > .button) .button {
    white-space: nowrap;
}
@media screen and (max-width: 767px){
	.image-content-wrapper {
		grid-template-columns: 100% !important;
		row-gap: max(calc(var(--column-gap)/2),40px);
	}
	.image-content-wrapper .image-column {
		order: -1 !important;
	}
	.image-content-wrapper.separator .image-column:after{
		left: 0 !important;
		right: 0 !important;
		--offset: calc(var(--column-gap) * -0.25);
		bottom: var(--offset);
		top: unset;
		height: 1px;
		width: 100%;
	}

	.image-content-wrapper.border-box {
		padding: 32px;
	}
	header + .image-content-section{
		padding-top: 0px !important;
	}
	header + .image-content-section .image-column .img-wrapper {
		margin: 0 -22px;
	}

	header + .image-content-section .image-column .img-wrapper img {
		border-radius: 0 0 32px 32px;
	}
	.image-content-wrapper .text-content:has( > .button){
		flex-direction: column;
		gap: 32px;
		align-items: flex-start;
	}
	.image-content-wrapper .image-column img{
		border-radius: 16px;
	}
}

/* Popup CSS */
.redirection-popup {
    position: fixed;
    z-index: 10000;
    background: #00000078;
    inset: 0;
    display: none;
}

.redirection-popup.popop-open {
    display: grid;
    place-content: center;
}

.redirection-popup .popup-wrapper {
    padding: 32px 24px;
    background-color: #ffffff;
    border-radius: 24px;
    border: 3px solid var(--vacatio-forest);
    text-align: center;
    max-width: 420px;
}

.popup-content span {
    display: block;
}

.popup-head {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    padding: 24px 0 48px;
}

.popup-head :is(.img1,.img2) svg {
    height: 28px;
    width: auto;
}

span.redirection-loader {
    display: flex;
}

span.redirection-loader svg {
    opacity: 0.5;
    animation: redirect 2s infinite linear;
}

span.redirection-loader svg:nth-child(1) {
    animation-delay: 0s;
}
span.redirection-loader svg:nth-child(2) {
    animation-delay: 500ms;
}
span.redirection-loader svg:nth-child(3) {
    animation-delay: 1s;
}

@keyframes redirect {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
@media screen and (max-width: 991px){
    .site-header{
        position: relative;
		z-index: 10000;
    }
    .nav-menu .hamburger-menu,
    .site-header .site-logo{
        position: relative;
        z-index: 100;
		cursor: pointer;
    }
    .navigation-bar {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .nav-menu{
        order: 1;
    }
	
	 .site-header .menu-holder {
		height: 100%;
		overflow: auto;
	}
    .nav-menu .menu-wrapper{
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(450px,100%);
        background-color: #ffffff;
        padding: calc(16px + var(--header-height,117px) + var(--offset,0px)) 24px 20px;
		transform: translatex(100%);
		transition: var(--default-transition);
    }
	.nav-active .nav-menu .menu-wrapper{
		transform: translateX(0);
	}
    .admin-bar .nav-menu .menu-wrapper {
        --offset: 32px;
    }
    .nav-menu .hamburger-menu{
        display: block;
    }
    .header-buttons {
        margin-left: auto;
    }
    .header-buttons .button{
        white-space: nowrap;
    }
    .menu-wrapper .header-buttons{
        display: flex;
        margin-top: 32px;
    }
    .menu-wrapper .header-buttons .button{
        flex: 1 1 40%;
    }
    .primary-menu{
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
	.primary-menu > li {
		padding: 20px 24px;
		border-radius: 24px;
		background-color: var(--forest-neutral-4);
		overflow: clip;
	}
	.primary-menu > li > a{
		font-size: 18px;
		font-weight: 700;
		color: var(--vacatio-forest);
		text-decoration: none;
		display: flex;
		position: relative;
	}
	.primary-menu > li .sub-menu {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.primary-menu > li > .sub-menu > li + li {
		border-top: 1px solid var(--vacatio-forest);
		padding-top: 12px;
		margin-top: 12px;
	}

	.primary-menu > li > .sub-menu > li:first-child > a {
		display: none;
	}

	.primary-menu > li > .sub-menu {
		padding-top: 12px;
		display: none;
	}

	.primary-menu > li > .sub-menu a{
		padding: 8px 0;
		display: block;
		color: var(--vacatio-forest);
	}

	.primary-menu > li > a:before {
		position: absolute;
		content: '';
		inset: -20px -24px -20px;
		background: transparent;
	}

	.primary-menu > li.menu-item-has-children > a:after {
		content: '';
		width: 16px;
		height: 16px;
		background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.6484 3.35163C15.7598 3.46294 15.8483 3.59514 15.9086 3.74066C15.9689 3.88618 16 4.04216 16 4.19969C16 4.35722 15.9689 4.51321 15.9086 4.65873C15.8483 4.80425 15.7598 4.93644 15.6484 5.04775L8.84788 11.8482C8.73657 11.9597 8.60438 12.0481 8.45886 12.1085C8.31334 12.1688 8.15735 12.1999 7.99982 12.1999C7.84229 12.1999 7.68631 12.1688 7.54079 12.1085C7.39527 12.0481 7.26307 11.9597 7.15176 11.8482L0.351278 5.04775C0.126359 4.82283 0 4.51778 0 4.19969C0 4.04219 0.0310217 3.88624 0.0912941 3.74073C0.151567 3.59522 0.239909 3.463 0.351278 3.35163C0.462647 3.24026 0.594861 3.15192 0.740371 3.09165C0.885882 3.03138 1.04184 3.00035 1.19934 3.00035C1.51742 3.00035 1.82248 3.12671 2.0474 3.35163L7.99982 9.30246L13.9522 3.35163C14.0636 3.24016 14.1958 3.15173 14.3413 3.09139C14.4868 3.03106 14.6428 3 14.8003 3C14.9578 3 15.1138 3.03106 15.2593 3.09139C15.4049 3.15173 15.5371 3.24016 15.6484 3.35163Z' fill='%23407277'/%3E%3C/svg%3E%0A");
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		z-index: 1;
		margin-left: auto;
		align-self: center;
		transition: var(--default-transition);
	}
	.primary-menu > li.active-menu > a:after{
		transform: rotateX(180deg);
	}
	.primary-menu > li.active-menu > .sub-menu {
		display: block;
	}
	body.nav-active {
		overflow: clip;
	}
}
@media screen and (max-width: 767px){
     .site-header {
         padding: 15px 0;
     }
    .site-header .site-logo img {
        height: 36px;
		width: auto;
		object-fit: contain;
    }
	.top-footer-row .site-logo img {
		height: 110px;
	}
    .header-buttons .button.hide-mobile {
        display: none;
    }
    .admin-bar .nav-menu .menu-wrapper {
        --offset: 32px;
    }
     .nav-menu .menu-wrapper{
         --header-height: 80px;
     }
	.footer-menu-column{
		text-align: center;
	}
	.bottom-footer-menu {
		flex-direction: column;
	}
	ul.policy-links {
		text-align: center;
		flex-direction: column;
        gap: 16px;
	}
	.top-footer-wrapper:before {
		inset: 0px;
		top: 10%;
		background-position: top center;
	}
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}