
/* default styles */
body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
blockquote {
    margin-top: 0;
    margin-bottom: 0;
}
button {
    background-color: unset;
    padding: unset;
    text-align: inherit;
    cursor: pointer;
}
.w-select {
    -webkit-appearance: none;
    -moz-appearance: none;
}
img::selection {
    background: transparent;
}
:is(h1, h2, h3, h4, h5, h6, p) a {
    text-decoration: underline;
}
.u-rich-text>*:first-child {
    margin-top: 0;
}
.u-rich-text>*:last-child {
    margin-bottom: 0;
}
video {
    width: 100%;
    object-fit: cover;
}
video.wf-empty {
    padding: 0;
}
svg {
    display: block;
}
section,
footer {
    position: relative;
}
/* line clamp */
.u-line-clamp-1,
.u-line-clamp-2,
.u-line-clamp-3,
.u-line-clamp-4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.u-line-clamp-2 {
    -webkit-line-clamp: 2;
}
.u-line-clamp-3 {
    -webkit-line-clamp: 3;
}
.u-line-clamp-4 {
    -webkit-line-clamp: 4;
}
/* hide section if it has no cms items */
[data-cms-check="true"]:not(:has(.w-dyn-item)) {
    display: none;
}
:root {
    --cubic-default: cubic-bezier(0.25, 0.1, 0.25, 1);
    --duration-default: 0.5s;
    --animation-default: var(--duration-default) var(--cubic-default);
}
/* Tablet */
@media screen and (max-width: 991px) {
    :root {
    }
}
/* Mobile Landscape */
@media screen and (max-width: 767px) {
    :root {}
}
/* Mobile Portrait */
@media screen and (max-width: 479px) {
    :root {}
}
/* ------------------------- Reset -------------------------------------------------- */
*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    scroll-behavior: initial;
}
html,
body {
    -webkit-font-smoothing: antialiased;
}
svg {
    max-width: none;
    height: auto;
    box-sizing: border-box;
    vertical-align: middle;
}
a {
    color: inherit;
}


/* Desktop */
:root {
    --size-unit: 16;/* body font-size in design - no px */
    --size-container-ideal: 1920;/* screen-size in design - no px */
    --size-container-min: 992px;
    --size-container-max: 1920px;
    --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
    --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}
/* Tablet */
@media screen and (max-width: 991px) {
    :root {
        --size-container-ideal: 900;/* screen-size in design - no px */
        --size-container-min: 768px;
        --size-container-max: 991px;
    }
}
/* Mobile Landscape */
@media screen and (max-width: 767px) {
    :root {
        --size-container-ideal: 600;/* screen-size in design - no px */
        --size-container-min: 480px;
        --size-container-max: 767px;
    }
}
/* Mobile Portrait */
@media screen and (max-width: 479px) {
    :root {
        --size-container-ideal: 390;/* screen-size in design - no px */
        --size-container-min: 320px;
        --size-container-max: 479px;
    }
}
.button_primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--palette--teal);
    transition: var(--animation-default);
}
.button_primary:hover::before {
    left: 0;
}
.button_secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--palette--teal);
    transition: var(--animation-default);
}
.button_secondary:hover::before {
    left: 0;
}
.button_alter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--palette--teal);
    transition: var(--animation-default);
}
.button_alter:hover::before {
    left: 0;
}
.nav_link::after {
    content: '';
    position: absolute;
    bottom: -0.75em;
    left: 0;
    width: 0;
    height: 0.25em;
    background: var(--palette--deep-teal);
    transition: var(--animation-default);
}
.nav_link.w--current::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: -0.75em;
    left: 0;
    height: 0.25em;
    background: var(--palette--deep-teal);
    transition: var(--animation-default);
}
.nav_link:hover::after {
    width: 100%;
}
#left,
#center,
#right {
    opacity: 0;
}
.shape_wrap:hover #left {
    opacity: 1;
}
.shape_wrap:hover #center {
    opacity: 1;
}
.shape_wrap:hover #right {
    opacity: 1;
}
.shape_wrap:hover .shape_base_image {
    opacity: 0;
}
.locations_list::-webkit-scrollbar {
    width: 4px;
    background: white;
}
.locations_list::-webkit-scrollbar-track {
    background: white;
}
.locations_list::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 0px;
}
.locations_list {
    scrollbar-width: 4px;
    scrollbar-color: black white;
}
.locations_list_item.is--current .locations_list_icon {
    color: var(--palette--teal)
}
.portfolio_exited_item:hover .portfolio_arrow {
    background: var(--palette--white)
}
.portfolio_exited_item:hover .portfolio_exited_figure {
    color: #ffffff
}
.portfolio_exited_item:hover .portfolio_exited_figure.is--first {
    color: #ffffff20
}
/* Tablet */
@media screen and (max-width: 991px) {
    @keyframes scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(calc(-100% - 3em));
        }
    }
    .scroll {
        animation: scroll 45s linear infinite;
    }
    .reverse {
        animation-direction: reverse;
    }
}
.values_list_item:hover .values_list_icon {
	color: var(--palette--teal);
}
.collection_list_item:hover .portfolio_arrow {
	background: var(--palette--white);
}
.collection_list_item:hover .collection_list_card {
	opacity: 1;
}
.filter_dropdown_toggle.w--open .filter_dropd_icon {
	transform: rotateX(180deg);
}
.portfolio_list_collection {
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.portfolio_list_collection.animate {
  opacity: 0;
}
.news_list_collection {
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.news_list_collection.animate {
  opacity: 0;
}
.collection_news_item {
	opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.collection_news_item.animate-item {
	opacity: 0;
}
.collection_list_item {
	opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.collection_list_item.animate-item {
	opacity: 0;
}
[data-splittext] {
    overflow: hidden;
    display: inline-block;
  }
  .line {
    display: block;
    overflow: hidden;
  }
@media screen and (max-width: 767px) {
    .button_primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 0%;
        height: 100%;
        background: transparent;
        transition: var(--animation-default);
    }
    .button_primary:hover::before {
        left: -100%;
    }
    .button_secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 0%;
        height: 100%;
        background: transparent;
        transition: var(--animation-default);
    }
    .button_secondary:hover::before {
        left: -100%;
    }
    .button_alter::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 0%;
        height: 100%;
        background: transparent;
        transition: var(--animation-default);
    }
    .button_alter:hover::before {
        left: -100%;
    }
    .collection_list_item:hover .collection_list_card {
				opacity: 0;
		}
    .collection_list_item:hover .portfolio_arrow {
				background: var(--palette--teal);
		}
}