@charset "UTF-8";
@charset "UTF-8";
.video__inner-container {
position: relative;
}
.video-play {
position: absolute;
inset: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
opacity: 0;
z-index: 1;
transition: height 0.35s ease;
}
.video-play.has-background {
-webkit-backdrop-filter: grayscale(1);
backdrop-filter: grayscale(1);
}
.video-play .icon {
width: 0.78rem;
height: 0.78rem;
color: #fff;
background: transparent;
box-shadow: 0 0 0 3px currentColor;
border-radius: 50%;
margin: auto auto 2em 2em;
}
@media only screen and (min-width: 1279px) {
.video-play .icon {
width: 3.453vw;
height: 3.453vw;
margin: auto auto 4em 4em;
}
}
.video-play svg {
fill: currentColor;
transform: translateX(12%);
width: 1.623rem;
height: 1.623rem;
}
@media only screen and (min-width: 1279px) {
.video-play svg {
width: 1.27vw;
height: 1.27vw;
}
}
.video-play .background {
background: #ff5123;
}
.video.is-paused .video-play {
opacity: 1;
}
.video:hover .video-play, .video:focus-within .video-play {
height: calc(100% - 4.8rem);
}
.video-source.is-cropped {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.video-controls {
position: absolute;
right: 0;
bottom: 0;
left: 0;
display: flex;
opacity: 0;
background: rgba(19, 21, 19, 0.9);
transition: opacity 0.35s ease;
z-index: 1;
}
.video-controls__play, .video-controls__rewind, .video-controls__forward, .video-controls__mute, .video-controls__fullscreen {
display: flex;
align-items: center;
justify-content: center;
width: 4.8rem;
color: #fff;
background: transparent;
z-index: 0;
}
.video-controls__play > div, .video-controls__rewind > div, .video-controls__forward > div, .video-controls__mute > div, .video-controls__fullscreen > div {
display: none;
}
.video-controls__play > div.is-active, .video-controls__rewind > div.is-active, .video-controls__forward > div.is-active, .video-controls__mute > div.is-active, .video-controls__fullscreen > div.is-active {
display: block;
}
.video-controls__play:focus, .video-controls__rewind:focus, .video-controls__forward:focus, .video-controls__mute:focus, .video-controls__fullscreen:focus {
z-index: 1;
}
.video-controls__play:first-child, .video-controls__rewind:first-child, .video-controls__forward:first-child, .video-controls__mute:first-child, .video-controls__fullscreen:first-child {
width: 5.8rem;
padding-left: 1rem;
}
.video-controls__play:last-child, .video-controls__rewind:last-child, .video-controls__forward:last-child, .video-controls__mute:last-child, .video-controls__fullscreen:last-child {
width: 5.8rem;
padding-right: 1rem;
}
.video-controls__timeline {
flex: 1;
display: flex;
align-items: center;
padding: 0 2rem;
z-index: 0;
}
.video-controls__progress {
height: 100%;
color: #fff;
cursor: pointer;
}
.video-controls__progress::-moz-progress-bar {
background: rgba(255, 255, 255, 0.35);
}
.video-controls__progress::-webkit-progress-bar {
background: rgba(255, 255, 255, 0.35);
}
.video-controls__volume {
width: 12.8rem;
height: 4.8rem;
padding: 0 2rem;
z-index: 0;
}
.video-controls__volume .input-wrapper {
height: 100%;
}
.video-controls__volume .input-range-appearance__thumb-knob {
box-shadow: none;
}
.video-controls__volume .input-range-appearance__track {
background: rgba(255, 255, 255, 0.35);
}
.video-controls__volume .input-range-appearance__track-fill {
background: #fff;
}
.video:hover .video-controls, .video:focus-within .video-controls {
opacity: 1;
}
.video .input-range:focus-visible + div .input-range-appearance__thumb-knob {
box-shadow: 0 0 0 6px rgba(255, 219, 124, 0.75);
}
@supports not selector(:focus-visible) {
.video .input-range:focus + div .input-range-appearance__thumb-knob {
box-shadow: 0 0 0 6px rgba(255, 219, 124, 0.75);
}
}* { margin: 0;
padding: 0; max-height: 9999999999999px; -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
box-sizing: border-box;
}
html { font-size: 62.5%;  line-height: 1.15; -webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
text-size-adjust: 100%; -moz-osx-font-smoothing: grayscale;
}
body { overflow-x: hidden; overscroll-behavior: auto;
}
.site {
font-family: "Instrument Sans", sans-serif;
font-size: 1.6rem;
font-weight: 400;
font-style: normal;
line-height: 1.6;
white-space: normal;
color: #4d4d4d;
background: #fff;
z-index: 0; -webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility; font-feature-settings: "lnum", "pnum";
}
.is-root-container > * {
width: calc(100% - var(--site-padding) * 2);
max-width: var(--max-width--regular);
margin-right: auto;
margin-left: auto;
}
.is-root-container > .max-w-medium {
max-width: var(--max-width--medium);
}
.is-root-container > .max-w-wide {
max-width: var(--max-width--wide);
}
.is-root-container > .max-w-extra-wide {
max-width: var(--max-width--extra-wide);
}
.is-root-container > .section,
.is-root-container > .pin-spacer,
.is-root-container > .max-w-full {
width: 100%;
max-width: unset;
margin-left: 0;
margin-right: 0;
}
main {
display: block;
}
b,
strong {
font-weight: 600;
}
i,
em,
q {
font-weight: inherit;
font-style: italic;
}
q blockquote {
quotes: none;
}
small {
font-size: 80%;
}
del {
font-weight: inherit;
}
ins {
text-decoration: none;
}
hr {
overflow: visible;
display: block;
width: 100%;
height: 1px;
color: #e3e6e9;
background: currentColor;
border: none;
box-sizing: inherit;
margin: 1.6rem 0;
}
mark {
color: inherit;
background-color: transparent;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
margin-left: 0.125em;
}
details {
display: block;
}
summary {
display: list-item;
}
figcaption {
font-size: 1.2rem;
color: #8290af;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 1.6rem 1.6rem 0;
}
img {
display: block;
width: 100%;
height: auto;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
p img {
display: inline;
margin-right: 1.5em;
}
video {
display: block;
width: 100%;
height: auto;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
audio {
display: block;
width: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
svg {
display: block;
max-width: 100%;
max-height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
address {
position: relative;
font-style: normal;
}
address > * {
margin: 0;
}
progress {
width: 100%;
height: 4px;
color: inherit;
background: transparent;
vertical-align: middle;
}
progress::-moz-progress-inner-element {
display: flex;
align-items: center;
}
progress::-moz-progress-bar {
width: 100%;
height: 4px;
background: #e9eefd;
border-radius: 4px;
}
progress::-moz-progress-value {
background: #b1cffb;
border-radius: 4px;
}
progress::-webkit-progress-inner-element {
display: flex;
align-items: center;
}
progress::-webkit-progress-bar {
width: 100%;
height: 4px;
background: #e9eefd;
border-radius: 4px;
}
progress::-webkit-progress-value {
background: #b1cffb;
border-radius: 4px;
}
::-moz-selection {
color: #fff;
background-color: #316FAF;
}
::selection {
color: #fff;
background-color: #316FAF;
}
:focus,
:focus-visible {
outline: none;
}
pre, code, kbd, samp {
font-family: monospace;
font-size: 16px;
}
pre, code {
overflow-y: hidden;
display: block;
color: inherit;
background: transparent;
border: none;
margin-top: 1.5em;
margin-bottom: 1.5em;
padding: 0;
white-space: pre;
}
pre > code {
display: inline;
background: none;
border: none;
margin: 0;
padding: 0;
} p code {
padding: 0;
margin: 0 0.25em;
border: 0;
box-shadow: none;
display: inline;
font-size: inherit;
}
a {
position: relative;
font-family: inherit;
font-weight: inherit;
text-decoration: underline;
color: #316FAF;
transition: color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
cursor: pointer;
}
a:hover {
color: inherit;
}
a:focus-visible {
outline: 4px solid #316FAF;
}
@supports not selector(:focus-visible) {
a:focus {
outline: 4px solid #316FAF;
}
}
p {
display: block;
width: 100%;
font-family: "Instrument Sans", sans-serif;
font-size: 1.6rem;
line-height: 1.6;
font-weight: 400;
line-height: inherit;
color: #4D4D4D;
margin: 1em 0;
}
p:first-child {
margin-top: 0;
}
p:last-child {
margin-bottom: 0;
}
h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
margin-top: 0 !important;
}
h1, h2, h3, h4, h5, h6 {
display: block;
width: 100%;
font-family: "Clash Display", sans-serif;
font-size: 1.8rem;
font-weight: 500;
font-style: normal;
color: #11273D;
line-height: 1.1;
margin: 1.25em 0 0.5em;
letter-spacing: -0.16px;
}
h1 b,
h1 strong, h2 b,
h2 strong, h3 b,
h3 strong, h4 b,
h4 strong, h5 b,
h5 strong, h6 b,
h6 strong {
font-weight: 600;
}
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
color: inherit;
text-decoration: none;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
margin-bottom: 0;
}
h1 {
font-size: 3rem;
}
@media only screen and (min-width: 639px) {
h1 {
font-size: 3.6rem;
}
}
h2 {
font-size: 2.4rem;
}
@media only screen and (min-width: 639px) {
h2 {
font-size: 3.2rem;
}
}
h3 {
font-size: 2.1rem;
}
@media only screen and (min-width: 639px) {
h3 {
font-size: 2.8rem;
}
}
h4 {
font-size: 2.1rem;
}
@media only screen and (min-width: 639px) {
h4 {
font-size: 2.4rem;
}
}
h5 {
font-size: 2.1rem;
}
h6 {
font-size: 1.8rem;
}
dl, ol, ul {
list-style-type: none;
}
nav {
font-family: "Clash Display", sans-serif;
font-size: 1.6rem;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
nav a {
text-decoration: none;
}
table {
display: table;
width: 100%;
font-size: 1.6rem;
text-align: left;
border-collapse: collapse;
border-spacing: 0;
margin-top: 1em;
margin-bottom: 1em;
}
table th, table td {
position: relative;
color: #2a2a2a;
vertical-align: middle;
background: none;
padding: 1.6rem 2.8rem;
}
table th > *, table td > * {
margin: 0;
}
table th {
font-family: inherit;
font-size: 1.4rem;
font-weight: 700;
letter-spacing: 0.02em;
}
table td {
font-weight: 400;
}
table:first-child {
margin-top: 0;
}
table:last-child {
margin-bottom: 0;
}
form {
position: relative;
font-size: 1.6rem;
margin-top: 3.2rem;
margin-bottom: 3.2rem;
}
button,
input[type=button],
input[type=reset],
input[type=submit] {
overflow: visible;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-family: inherit;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
color: inherit;
cursor: pointer;
background: none;
border: none;
box-shadow: none;
transition: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
button[disabled],
input[type=button][disabled],
input[type=reset][disabled],
input[type=submit][disabled] {
cursor: not-allowed;
}
button:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
input[type=submit]:focus-visible {
outline: 4px solid #86bc44;
}
button *:not([contenteditable]) {
pointer-events: none;
}
@supports not selector(:focus-visible) {
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
outline: 4px solid #316FAF;
}
}
@supports selector(::-moz-focus-inner) {
button::-moz-focus-inner {
border-style: none;
padding: 0;
}
}
blockquote {
font-family: Poppins;
font-weight: 400;
border: 2px solid;
border-width: 2px 0;
margin: 0 auto;
padding: 2em 0 2.75em;
}
@media only screen and (min-width: 639px) {
blockquote {
padding: 0 0 0 2em;
border-width: 0 0 0 2px;
}
}
blockquote b,
blockquote strong {
font-weight: 400;
}
blockquote p {
font-size: 1.222em;
line-height: 1.65;
}
blockquote p:first-of-type {
margin-top: 0;
}
blockquote cite {
position: relative;
display: block;
font-size: 0.875em;
margin: 1.5em 0 0;
}
.alert {
position: relative;
font-size: 1.6rem;
color: #2166a1;
background: #e8f5ff;
border-radius: 1rem;
padding: 1.25em 1.75em;
}
.alert.is-style-success {
color: #416b41;
background: #ddf9e3;
}
.alert.is-style-warning {
color: #b17812;
background: #fff6dd;
}
.alert.is-style-error {
color: #f13e45;
background: #fff2f2;
}
.tagline {
font-family: inherit;
font-size: 1.334rem;
line-height: 1.1;
letter-spacing: -0.02em;
color: #3b413a;
opacity: 50%;
margin: 0;
}
@media only screen and (min-width: 1279px) {
.tagline {
font-size: 1.042vw;
}
}
@media only screen and (max-width: 1278.99px) {
.tagline {
font-size: 3.59vw;
}
}
.section,
.container {
position: relative;
z-index: 0;
}
.inner-container {
position: relative;
width: 100%;
min-height: 4.8rem;
z-index: 1;
}
.background {
overflow: hidden;
position: absolute;
inset: 0;
z-index: -1;
}
.background img,
.background video {
-o-object-fit: cover;
object-fit: cover;
width: 100%;
height: 100%;
}
.background.has-overlay::before {
content: "";
position: absolute;
inset: 0;
background: currentColor;
z-index: 1;
}
.icon {
display: flex;
justify-content: center;
align-items: center;
width: 1.6rem;
height: 1.6rem;
}
.icon.is-placeholder {
background-color: currentColor;
opacity: 0.05;
}
.icon svg {
fill: currentColor;
}
.icon img {
-o-object-fit: cover;
object-fit: cover;
height: 100%;
}
.icon.is-left-aligned {
margin-right: auto;
margin-left: 0;
}
.icon.is-centered {
margin-right: auto;
margin-left: auto;
}
.icon.is-right-aligned {
margin-right: 0;
margin-left: auto;
}
.icon-plus {
position: relative;
width: 100%;
height: 100%;
margin: auto;
transition: transform 0.35s ease;
}
.icon-plus::before, .icon-plus::after {
content: "";
position: absolute;
inset: 0;
display: block;
width: 100%;
height: 1px;
background: currentColor;
margin: auto;
}
.icon-plus::after {
transform: rotate(90deg);
}
button[aria-expanded=true] .icon-plus {
transform: rotate(180deg);
}
button[aria-expanded=true] .icon-plus::after {
display: none;
}
.button,
.icon-button {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: -moz-fit-content;
width: fit-content;
height: 5.6rem;
font-family: "Clash Display";
text-transform: uppercase;
font-weight: 500;
font-size: 1.6rem;
font-style: normal;
text-align: center;
text-decoration: none;
line-height: 1;
border: 0;
border-radius: 3.2rem;
box-shadow: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
transition: color 0.35s ease, background 0.35s ease;
z-index: 0;
}
.button *:not([contenteditable]),
.icon-button *:not([contenteditable]) {
pointer-events: none;
}
.button .background,
.icon-button .background {
position: absolute;
inset: 0 0 -1px;
background: inherit;
border-radius: inherit;
opacity: 0.5;
transition: box-shadow 0.35s ease;
z-index: -2;
}
.button .background::before,
.icon-button .background::before {
content: "";
position: absolute;
inset: 0;
display: block;
background: currentColor;
border-radius: inherit;
opacity: 0;
transition: opacity 0.35s ease;
}
.button.is-left-aligned,
.icon-button.is-left-aligned {
margin-right: auto;
margin-left: 0;
}
.button.is-centered,
.icon-button.is-centered {
margin-right: auto;
margin-left: auto;
}
.button.is-right-aligned,
.icon-button.is-right-aligned {
margin-right: 0;
margin-left: auto;
}
.button {
color: #fff;
background: var(--color-primary);
padding: 0 6.2rem 0 3.2rem;
}
.button::after {
content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuOTIyMzUgMTUuMzIyOUw0Ljc0Mzg0IDE0LjE0NDRMMTEuODE0OSA3LjA3MzNMNS4zMzMxIDcuMDczM1Y1LjM5OTgxSDE0LjY2NjlWMTQuNzMzNkgxMi45OTM0TDEyLjk5MzQgOC4yNTE4MUw1LjkyMjM1IDE1LjMyMjlaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
position: absolute;
top: 1.8rem;
right: 3.2rem;
}
.button .text {
width: 100%;
z-index: 1;
color: #fff;
}
.button:hover {
color: #fff;
background: var(--color-primary-hovered);
}
.button:active {
color: #fff;
background: var(--color-primary-clicked);
}
.button:hover:after {
content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuMDY4ODggMTZMNCAxNC45MzExTDEwLjQxMzMgOC41MTc4MUg0LjUzNDQ1VjdIMTNWMTUuNDY1NUgxMS40ODIyVjkuNTg2NjlMNS4wNjg4OCAxNloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=);
position: absolute;
}
.button.is-style-outlined {
color: var(--color-dark);
background: transparent;
border: 1px solid var(--color-stroke);
padding: 0 3.2rem;
transition: all 0.3s ease;
}
.button.is-style-outlined .text {
color: var(--color-dark);
transition: all 0.35s ease;
}
.button.is-style-outlined:hover .text {
color: var(--color-dark);
}
.button.is-style-outlined:hover {
background: var(--color-stroke-light);
border: 1px solid var(--color-primary);
}
.button.is-style-outlined:hover .background {
background: var(--color-stroke-light);
}
.button.is-style-outlined:active .text {
color: var(--color-surface-medium);
}
.button.is-style-outlined::before, .button.is-style-outlined::after {
display: none;
}
.button.is-style-outlined .background {
background: transparent;
box-shadow: inherit;
}
.button.is-style-transparent {
color: #fff;
background: transparent;
}
.button.is-style-transparent::before, .button.is-style-transparent::after {
display: none;
}
.button.is-style-transparent .background {
filter: blur(0px);
}
.button.is-style-transparent:hover .background::before {
opacity: 0.07;
}
.button.is-style-rounded {
border-radius: 100vw;
}
.button.is-fullwidth {
width: 100%;
}
.button.is-small {
height: clamp(2.515rem, 1.979vw, 1.979vw);
padding-left: 1.085vw;
padding-right: 1.085vw;
}
@media only screen and (max-width: 1278.99px) {
.button.is-small {
height: 8.121vw;
padding: 0 1.085vw;
}
}
.button.is-reversed {
background: #fff;
}
.button.is-reversed .text {
color: #131513;
}
.button.is-reversed::before, .button.is-reversed::after {
display: none;
}
.button.is-reversed:hover {
background: transparent;
box-shadow: inset 0 0 0 2px #fff;
}
.button.is-reversed:hover .background {
box-shadow: inset 0 0 0 2px #fff;
}
.button.is-reversed:hover .background::before {
display: none;
}
.button.is-reversed:hover .text {
color: #fff;
}
.icon-button {
width: 2.5vw;
max-width: unset;
color: #fff;
}
.icon-button .icon {
width: 1em;
min-width: 1.6rem;
max-width: 2.5vw;
height: 1em;
min-height: 1.6rem;
max-height: 2.5vw;
border-radius: inherit;
}
.icon-button:hover {
color: #fff;
}
.icon-button.is-style-outlined {
color: #131513;
background: transparent;
box-shadow: inset 0 0 0 2px currentColor;
}
.icon-button.is-style-outlined .background {
background: transparent;
box-shadow: inherit;
opacity: 0.6;
}
.icon-button.is-style-transparent {
color: #131513;
background: transparent;
}
.icon-button.is-style-transparent .background {
filter: blur(0px);
}
.icon-button.is-style-transparent:hover .background::before {
opacity: 0.05;
}
.icon-button.is-rounded {
border-radius: 50%;
}
.buttons {
display: flex;
flex-wrap: wrap;
gap: 2.4rem;
}
.buttons.has-centered-content {
justify-content: center;
}
.buttons.has-right-aligned-content {
justify-content: flex-end;
}
.splide {
position: relative;
z-index: 0;
}
.splide__track {
--items: 1;
--gaps: 0;
overflow: hidden;
position: relative;
margin: 0 calc(-1 * var(--gaps));
z-index: 0;
transition: height 0.35s;
}
.splide__track--draggable {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
cursor: grab;
}
.splide__list {
display: flex;
flex-flow: nowrap;
align-items: flex-start;
backface-visibility: hidden;
margin: 0;
transition: height 0.35s;
}
.splide__slide {
position: relative;
flex-shrink: 0;
width: calc(100% / var(--items));
backface-visibility: hidden;
padding: var(--gaps);
margin: 0;
}
.splide__navigation {
pointer-events: none;
z-index: 1;
}
.splide__pagination {
display: flex;
justify-content: center;
align-items: center;
padding: 0;
margin: clamp(2.4rem, 1.25vw, 1.25vw) 0 0;
}
.splide__pagination li {
width: clamp(2.4rem, 1.25vw, 1.25vw);
height: clamp(2.4rem, 1.25vw, 1.25vw);
}
.splide__pagination__page {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
pointer-events: auto;
cursor: pointer;
opacity: 0.15;
}
.splide__pagination__page.is-active {
opacity: 1;
}
.splide__pagination__page::after {
content: "";
position: absolute;
width: 0.6rem;
height: 0.6rem;
background: currentColor;
border-radius: 0.3rem;
}
.splide__arrows {
position: absolute;
inset: 0;
display: flex;
z-index: 2;
}
.splide__arrow {
position: absolute;
top: 0;
bottom: 0;
width: 3.134rem;
height: 3.134rem;
margin: auto;
pointer-events: auto;
cursor: pointer;
border: 1px solid #637D7A;
color: #fff;
}
@media only screen and (min-width: 1279px) {
.splide__arrow {
width: 2.448vw;
height: 2.448vw;
}
}
.splide__arrow:hover .icon > svg {
color: #fff;
}
.splide__arrow--prev {
left: -7.2rem;
}
@media only screen and (min-width: 1279px) {
.splide__arrow--prev {
left: -3.75vw;
}
}
.splide__arrow--next {
right: -7.2rem;
}
@media only screen and (min-width: 1279px) {
.splide__arrow--next {
right: -3.75vw;
}
}
.splide__arrow[disabled] {
opacity: 50%;
}
.splide__arrow .icon {
color: #637D7A;
width: 2.448vw;
max-width: 2.448vw;
height: 2.448vw;
max-height: 2.448vw;
}
.splide__arrow .icon > svg {
width: 100%;
height: 100%;
}
.splide__arrow.is-style-outlined {
box-shadow: none;
}
.splide__arrow.is-style-outlined:hover {
background: #606060;
border: 1px solid #606060;
}
.splide.has-progress-bar .splide__arrows {
bottom: clamp(3rem, 1.563vw, 1.563vw);
}
.splide.has-pagination .splide__arrows {
bottom: clamp(4.7rem, 2.448vw, 2.448vw);
}
.splide.has-pagination.has-progress-bar .splide__arrows {
bottom: clamp(7.7rem, 4.01vw, 4.01vw);
}
.splide__progress {
position: relative;
width: 100%;
height: 2px;
background: #e9eefd;
margin: clamp(2.8rem, 1.458vw, 1.458vw) 0 0;
z-index: 0;
}
.splide__progress-bar {
height: inherit;
background: #b1cffb;
transition: width 0.35s ease;
z-index: 1;
}
.splide__sr {
overflow: hidden;
position: absolute;
clip: rect(0 0 0 0);
width: 1px;
height: 1px;
border: 0;
padding: 0;
margin: -1px;
}
.splide__spinner {
position: absolute;
inset: 0;
display: inline-block;
width: clamp(2rem, 1.042vw, 1.042vw);
height: clamp(2rem, 1.042vw, 1.042vw);
contain: strict;
border: 2px solid #b1cffb;
border-left-color: transparent;
border-radius: 50%;
margin: auto;
animation: splide-loading 1s linear infinite;
}
.splide__toggle__pause {
display: none;
}
.splide__toggle.is-active .splide__toggle__play {
display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
display: inline;
}
.splide--fade .splide__list {
display: block;
}
.splide--fade .splide__slide {
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 0;
}
.splide--fade .splide__slide.is-active {
position: relative;
transform: translateX(0px) !important;
opacity: 1;
z-index: 1;
}
.splide:not(.is-active) .splide__slide {
display: none;
cursor: auto;
}
.splide:not(.is-active) .splide__slide:first-child {
display: block;
}
.splide:not(.is-active) .splide__track {
overflow: unset;
}
.splide:not(.is-active) .splide__track.items-2 .splide__slide:nth-child(-n+2) {
display: block;
}
.splide:not(.is-active) .splide__track.items-3 .splide__slide:nth-child(-n+3) {
display: block;
}
.splide:not(.is-active) .splide__track.items-4 .splide__slide:nth-child(-n+4) {
display: block;
}
.splide:not(.is-active) .splide__track.items-5 .splide__slide:nth-child(-n+5) {
display: block;
}
.splide:not(.is-active) .splide__track.items-6 .splide__slide:nth-child(-n+6) {
display: block;
}
@media only screen and (min-width: 639px) {
.splide:not(.is-active) .splide__track[class*="sm/items-"] .splide__slide:nth-child(-n+12) {
display: none;
}
.splide:not(.is-active) .splide__track.sm\/items-1 .splide__slide:first-child {
display: block;
}
.splide:not(.is-active) .splide__track.sm\/items-2 .splide__slide:nth-child(-n+2) {
display: block;
}
.splide:not(.is-active) .splide__track.sm\/items-3 .splide__slide:nth-child(-n+3) {
display: block;
}
.splide:not(.is-active) .splide__track.sm\/items-4 .splide__slide:nth-child(-n+4) {
display: block;
}
.splide:not(.is-active) .splide__track.sm\/items-5 .splide__slide:nth-child(-n+5) {
display: block;
}
.splide:not(.is-active) .splide__track.sm\/items-6 .splide__slide:nth-child(-n+6) {
display: block;
}
}
@media only screen and (min-width: 959px) {
.splide:not(.is-active) .splide__track[class*="md/items-"] .splide__slide:nth-child(-n+12) {
display: none;
}
.splide:not(.is-active) .splide__track.md\/items-1 .splide__slide:first-child {
display: block;
}
.splide:not(.is-active) .splide__track.md\/items-2 .splide__slide:nth-child(-n+2) {
display: block;
}
.splide:not(.is-active) .splide__track.md\/items-3 .splide__slide:nth-child(-n+3) {
display: block;
}
.splide:not(.is-active) .splide__track.md\/items-4 .splide__slide:nth-child(-n+4) {
display: block;
}
.splide:not(.is-active) .splide__track.md\/items-5 .splide__slide:nth-child(-n+5) {
display: block;
}
.splide:not(.is-active) .splide__track.md\/items-6 .splide__slide:nth-child(-n+6) {
display: block;
}
}
@media only screen and (min-width: 1279px) {
.splide:not(.is-active) .splide__track[class*="lg/items-"] .splide__slide:nth-child(-n+12) {
display: none;
}
.splide:not(.is-active) .splide__track.lg\/items-1 .splide__slide:first-child {
display: block;
}
.splide:not(.is-active) .splide__track.lg\/items-2 .splide__slide:nth-child(-n+2) {
display: block;
}
.splide:not(.is-active) .splide__track.lg\/items-3 .splide__slide:nth-child(-n+3) {
display: block;
}
.splide:not(.is-active) .splide__track.lg\/items-4 .splide__slide:nth-child(-n+4) {
display: block;
}
.splide:not(.is-active) .splide__track.lg\/items-5 .splide__slide:nth-child(-n+5) {
display: block;
}
.splide:not(.is-active) .splide__track.lg\/items-6 .splide__slide:nth-child(-n+6) {
display: block;
}
}
.splide:not(.is-active).is-initialized .splide__progress,
.splide:not(.is-active).is-initialized .splide__navigation {
display: none;
}
.image {
position: relative;
}
.image img.is-cropped {
position: absolute;
-o-object-fit: cover;
object-fit: cover;
width: 100%;
height: 100%;
}
.image > a {
display: block;
}
.backdrop {
position: fixed;
inset: 0;
width: 100vw;
height: 100vh;
background: rgba(247, 247, 247, 0.75);
-webkit-backdrop-filter: blur(2px);
backdrop-filter: blur(2px);
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease;
z-index: -1;
}
[aria-hidden=false] + .backdrop {
opacity: 1;
pointer-events: all;
}
.txt-left {
text-align: left;
}
.txt-right {
text-align: right;
}
.txt-center {
text-align: center;
}
.txt-justify {
text-align: justify;
} .items {
display: flex;
margin: calc(-1 * var(--gaps, 0));
}
.items-item {
flex-basis: calc(100% / var(--items, 1));
padding: var(--gaps, 0);
}
.items-1 {
--items: 1;
}
.items-2 {
--items: 2;
}
.items-3 {
--items: 3;
}
.items-4 {
--items: 4;
}
.items-5 {
--items: 5;
}
.items-6 {
--items: 6;
}
.items-7 {
--items: 7;
}
.items-8 {
--items: 8;
}
.items-9 {
--items: 9;
}
.items-10 {
--items: 10;
}
.items-11 {
--items: 11;
}
.items-12 {
--items: 12;
}
@media only screen and (min-width: 639px) {
.sm\/items-1 {
--items: 1;
}
.sm\/items-2 {
--items: 2;
}
.sm\/items-3 {
--items: 3;
}
.sm\/items-4 {
--items: 4;
}
.sm\/items-5 {
--items: 5;
}
.sm\/items-6 {
--items: 6;
}
.sm\/items-7 {
--items: 7;
}
.sm\/items-8 {
--items: 8;
}
.sm\/items-9 {
--items: 9;
}
.sm\/items-10 {
--items: 10;
}
.sm\/items-11 {
--items: 11;
}
.sm\/items-12 {
--items: 12;
}
}
@media only screen and (min-width: 959px) {
.md\/items-1 {
--items: 1;
}
.md\/items-2 {
--items: 2;
}
.md\/items-3 {
--items: 3;
}
.md\/items-4 {
--items: 4;
}
.md\/items-5 {
--items: 5;
}
.md\/items-6 {
--items: 6;
}
.md\/items-7 {
--items: 7;
}
.md\/items-8 {
--items: 8;
}
.md\/items-9 {
--items: 9;
}
.md\/items-10 {
--items: 10;
}
.md\/items-11 {
--items: 11;
}
.md\/items-12 {
--items: 12;
}
}
@media only screen and (min-width: 1279px) {
.lg\/items-1 {
--items: 1;
}
.lg\/items-2 {
--items: 2;
}
.lg\/items-3 {
--items: 3;
}
.lg\/items-4 {
--items: 4;
}
.lg\/items-5 {
--items: 5;
}
.lg\/items-6 {
--items: 6;
}
.lg\/items-7 {
--items: 7;
}
.lg\/items-8 {
--items: 8;
}
.lg\/items-9 {
--items: 9;
}
.lg\/items-10 {
--items: 10;
}
.lg\/items-11 {
--items: 11;
}
.lg\/items-12 {
--items: 12;
}
}
.gaps-0 {
--gaps: 0;
}
.gaps-2 {
--gaps: .1rem;
}
.gaps-4 {
--gaps: .2rem;
}
.gaps-6 {
--gaps: .3rem;
}
.gaps-8 {
--gaps: .4rem;
}
.gaps-10 {
--gaps: .5rem;
}
.gaps-12 {
--gaps: .6rem;
}
.gaps-14 {
--gaps: .7rem;
}
.gaps-16 {
--gaps: .8rem;
}
.gaps-18 {
--gaps: .9rem;
}
.gaps-20 {
--gaps: 1rem;
}
.gaps-22 {
--gaps: 1.1rem;
}
.gaps-24 {
--gaps: 1.2rem;
}
.gaps-26 {
--gaps: 1.3rem;
}
.gaps-28 {
--gaps: 1.4rem;
}
.gaps-30 {
--gaps: 1.5rem;
}
.gaps-32 {
--gaps: 1.6rem;
}
.gaps-34 {
--gaps: 1.7rem;
}
.gaps-36 {
--gaps: 1.8rem;
}
.gaps-38 {
--gaps: 1.9rem;
}
.gaps-40 {
--gaps: 2rem;
}
.gaps-42 {
--gaps: 2.1rem;
}
.gaps-44 {
--gaps: 2.2rem;
}
.gaps-46 {
--gaps: 2.3rem;
}
.gaps-48 {
--gaps: 2.4rem;
}
@media only screen and (min-width: 639px) {
.sm\/gaps-0 {
--gaps: 0;
}
.sm\/gaps-2 {
--gaps: .1rem;
}
.sm\/gaps-4 {
--gaps: .2rem;
}
.sm\/gaps-6 {
--gaps: .3rem;
}
.sm\/gaps-8 {
--gaps: .4rem;
}
.sm\/gaps-10 {
--gaps: .5rem;
}
.sm\/gaps-12 {
--gaps: .6rem;
}
.sm\/gaps-14 {
--gaps: .7rem;
}
.sm\/gaps-16 {
--gaps: .8rem;
}
.sm\/gaps-18 {
--gaps: .9rem;
}
.sm\/gaps-20 {
--gaps: 1rem;
}
.sm\/gaps-22 {
--gaps: 1.1rem;
}
.sm\/gaps-24 {
--gaps: 1.2rem;
}
.sm\/gaps-26 {
--gaps: 1.3rem;
}
.sm\/gaps-28 {
--gaps: 1.4rem;
}
.sm\/gaps-30 {
--gaps: 1.5rem;
}
.sm\/gaps-32 {
--gaps: 1.6rem;
}
.sm\/gaps-34 {
--gaps: 1.7rem;
}
.sm\/gaps-36 {
--gaps: 1.8rem;
}
.sm\/gaps-38 {
--gaps: 1.9rem;
}
.sm\/gaps-40 {
--gaps: 2rem;
}
.sm\/gaps-42 {
--gaps: 2.1rem;
}
.sm\/gaps-44 {
--gaps: 2.2rem;
}
.sm\/gaps-46 {
--gaps: 2.3rem;
}
.sm\/gaps-48 {
--gaps: 2.4rem;
}
}
@media only screen and (min-width: 959px) {
.md\/gaps-0 {
--gaps: 0;
}
.md\/gaps-2 {
--gaps: .1rem;
}
.md\/gaps-4 {
--gaps: .2rem;
}
.md\/gaps-6 {
--gaps: .3rem;
}
.md\/gaps-8 {
--gaps: .4rem;
}
.md\/gaps-10 {
--gaps: .5rem;
}
.md\/gaps-12 {
--gaps: .6rem;
}
.md\/gaps-14 {
--gaps: .7rem;
}
.md\/gaps-16 {
--gaps: .8rem;
}
.md\/gaps-18 {
--gaps: .9rem;
}
.md\/gaps-20 {
--gaps: 1rem;
}
.md\/gaps-22 {
--gaps: 1.1rem;
}
.md\/gaps-24 {
--gaps: 1.2rem;
}
.md\/gaps-26 {
--gaps: 1.3rem;
}
.md\/gaps-28 {
--gaps: 1.4rem;
}
.md\/gaps-30 {
--gaps: 1.5rem;
}
.md\/gaps-32 {
--gaps: 1.6rem;
}
.md\/gaps-34 {
--gaps: 1.7rem;
}
.md\/gaps-36 {
--gaps: 1.8rem;
}
.md\/gaps-38 {
--gaps: 1.9rem;
}
.md\/gaps-40 {
--gaps: 2rem;
}
.md\/gaps-42 {
--gaps: 2.1rem;
}
.md\/gaps-44 {
--gaps: 2.2rem;
}
.md\/gaps-46 {
--gaps: 2.3rem;
}
.md\/gaps-48 {
--gaps: 2.4rem;
}
}
@media only screen and (min-width: 1279px) {
.lg\/gaps-0 {
--gaps: 0;
}
.lg\/gaps-2 {
--gaps: .1rem;
}
.lg\/gaps-4 {
--gaps: .2rem;
}
.lg\/gaps-6 {
--gaps: .3rem;
}
.lg\/gaps-8 {
--gaps: .4rem;
}
.lg\/gaps-10 {
--gaps: .5rem;
}
.lg\/gaps-12 {
--gaps: .6rem;
}
.lg\/gaps-14 {
--gaps: .7rem;
}
.lg\/gaps-16 {
--gaps: .8rem;
}
.lg\/gaps-18 {
--gaps: .9rem;
}
.lg\/gaps-20 {
--gaps: 1rem;
}
.lg\/gaps-22 {
--gaps: 1.1rem;
}
.lg\/gaps-24 {
--gaps: 1.2rem;
}
.lg\/gaps-26 {
--gaps: 1.3rem;
}
.lg\/gaps-28 {
--gaps: 1.4rem;
}
.lg\/gaps-30 {
--gaps: 1.5rem;
}
.lg\/gaps-32 {
--gaps: 1.6rem;
}
.lg\/gaps-34 {
--gaps: 1.7rem;
}
.lg\/gaps-36 {
--gaps: 1.8rem;
}
.lg\/gaps-38 {
--gaps: 1.9rem;
}
.lg\/gaps-40 {
--gaps: 2rem;
}
.lg\/gaps-42 {
--gaps: 2.1rem;
}
.lg\/gaps-44 {
--gaps: 2.2rem;
}
.lg\/gaps-46 {
--gaps: 2.3rem;
}
.lg\/gaps-48 {
--gaps: 2.4rem;
}
}
.rounded-4 {
border-radius: 0.4rem;
}
.rounded-8 {
border-radius: 0.8rem;
}
.rounded-12 {
border-radius: 1.2rem;
}
.rounded-16 {
border-radius: 1.6rem;
}
.rounded-20 {
border-radius: 2rem;
}
.rounded-24 {
border-radius: 2.4rem;
}
.rounded-28 {
border-radius: 2.8rem;
}
.rounded-32 {
border-radius: 3.2rem;
}
.rounded-36 {
border-radius: 3.6rem;
}
.rounded-40 {
border-radius: 4rem;
}
.rounded-44 {
border-radius: 4.4rem;
}
.rounded-48 {
border-radius: 4.8rem;
}
.opacity-10, .dim-10::before {
opacity: 0.1;
}
.opacity-20, .dim-20::before {
opacity: 0.2;
}
.opacity-30, .dim-30::before {
opacity: 0.3;
}
.opacity-40, .dim-40::before {
opacity: 0.4;
}
.opacity-50, .dim-50::before {
opacity: 0.5;
}
.opacity-60, .dim-60::before {
opacity: 0.6;
}
.opacity-70, .dim-70::before {
opacity: 0.7;
}
.opacity-80, .dim-80::before {
opacity: 0.8;
}
.opacity-90, .dim-90::before {
opacity: 0.9;
}
.r-16\:9 {
padding-bottom: 56.25%;
}
.r-16\:10 {
padding-bottom: 62.5%;
}
.r-3\:2 {
padding-bottom: 66.67%;
}
.r-10\:7 {
padding-bottom: 70%;
}
.r-4\:3 {
padding-bottom: 75%;
}
.r-5\:4 {
padding-bottom: 80%;
}
.r-1\:1 {
padding-bottom: 100%;
}
.r-1\:1.is-rounded {
overflow: hidden;
border-radius: 50%;
}
.r-4\:5 {
padding-bottom: 125%;
}
.r-3\:4 {
padding-bottom: 133.33%;
}
.r-7\:10 {
padding-bottom: 142.86%;
}
.r-2\:3 {
padding-bottom: 150%;
}
.pt-1 {
padding-top: 1%;
}
.pt-2 {
padding-top: 2%;
}
.pt-3 {
padding-top: 3%;
}
.pt-4 {
padding-top: 4%;
}
.pt-5 {
padding-top: 5%;
}
.pt-6 {
padding-top: 6%;
}
.pt-7 {
padding-top: 7%;
}
.pt-8 {
padding-top: 8%;
}
.pt-9 {
padding-top: 9%;
}
.pt-10 {
padding-top: 10%;
}
.pt-xs {
padding-top: clamp(1.6rem, 1.6rem + 16 * (100vw - 375px) / 905, 3.2rem);
}
.pt-sm {
padding-top: clamp(2.4rem, 2.4rem + 24 * (100vw - 375px) / 905, 4.8rem);
}
.pt-md {
padding-top: clamp(3.2rem, 3.2rem + 32 * (100vw - 375px) / 905, 6.4rem);
}
.pt-lg {
padding-top: clamp(4rem, 4rem + 40 * (100vw - 375px) / 905, 8rem);
}
.pt-xl {
padding-top: clamp(4.8rem, 4.8rem + 48 * (100vw - 375px) / 905, 9.6rem);
}
.pt-2xl {
padding-top: clamp(5.6rem, 5.6rem + 56 * (100vw - 375px) / 905, 11.2rem);
}
.pt-3xl {
padding-top: clamp(6.4rem, 6.4rem + 64 * (100vw - 375px) / 905, 12.8rem);
}
.pr-1 {
padding-right: 1%;
}
.pr-2 {
padding-right: 2%;
}
.pr-3 {
padding-right: 3%;
}
.pr-4 {
padding-right: 4%;
}
.pr-5 {
padding-right: 5%;
}
.pr-6 {
padding-right: 6%;
}
.pr-7 {
padding-right: 7%;
}
.pr-8 {
padding-right: 8%;
}
.pr-9 {
padding-right: 9%;
}
.pr-10 {
padding-right: 10%;
}
.pb-1 {
padding-bottom: 1%;
}
.pb-2 {
padding-bottom: 2%;
}
.pb-3 {
padding-bottom: 3%;
}
.pb-4 {
padding-bottom: 4%;
}
.pb-5 {
padding-bottom: 5%;
}
.pb-6 {
padding-bottom: 6%;
}
.pb-7 {
padding-bottom: 7%;
}
.pb-8 {
padding-bottom: 8%;
}
.pb-9 {
padding-bottom: 9%;
}
.pb-10 {
padding-bottom: 10%;
}
.pb-xs {
padding-bottom: clamp(1.6rem, 1.6rem + 16 * (100vw - 375px) / 905, 3.2rem);
}
.pb-sm {
padding-bottom: clamp(2.4rem, 2.4rem + 24 * (100vw - 375px) / 905, 4.8rem);
}
.pb-md {
padding-bottom: clamp(3.2rem, 3.2rem + 32 * (100vw - 375px) / 905, 6.4rem);
}
.pb-lg {
padding-bottom: clamp(4rem, 4rem + 40 * (100vw - 375px) / 905, 8rem);
}
.pb-xl {
padding-bottom: clamp(4.8rem, 4.8rem + 48 * (100vw - 375px) / 905, 9.6rem);
}
.pb-2xl {
padding-bottom: clamp(5.6rem, 5.6rem + 56 * (100vw - 375px) / 905, 11.2rem);
}
.pb-3xl {
padding-bottom: clamp(6.4rem, 6.4rem + 64 * (100vw - 375px) / 905, 12.8rem);
}
.pl-1 {
padding-left: 1%;
}
.pl-2 {
padding-left: 2%;
}
.pl-3 {
padding-left: 3%;
}
.pl-4 {
padding-left: 4%;
}
.pl-5 {
padding-left: 5%;
}
.pl-6 {
padding-left: 6%;
}
.pl-7 {
padding-left: 7%;
}
.pl-8 {
padding-left: 8%;
}
.pl-9 {
padding-left: 9%;
}
.pl-10 {
padding-left: 10%;
}
.mt-8 {
margin-top: clamp(0.4rem, 0.4rem + 4 * (100vw - 375px) / 905, 0.8rem);
}
.mt-16 {
margin-top: clamp(0.8rem, 0.8rem + 8 * (100vw - 375px) / 905, 1.6rem);
}
.mt-24 {
margin-top: clamp(1.2rem, 1.2rem + 12 * (100vw - 375px) / 905, 2.4rem);
}
.mt-32 {
margin-top: clamp(1.6rem, 1.6rem + 16 * (100vw - 375px) / 905, 3.2rem);
}
.mt-40 {
margin-top: clamp(2rem, 2rem + 20 * (100vw - 375px) / 905, 4rem);
}
.mt-48 {
margin-top: clamp(2.4rem, 2.4rem + 24 * (100vw - 375px) / 905, 4.8rem);
}
.mt-56 {
margin-top: clamp(2.8rem, 2.8rem + 28 * (100vw - 375px) / 905, 5.6rem);
}
.mt-64 {
margin-top: clamp(3.2rem, 3.2rem + 32 * (100vw - 375px) / 905, 6.4rem);
}
.mt-72 {
margin-top: clamp(3.6rem, 3.6rem + 36 * (100vw - 375px) / 905, 7.2rem);
}
.mt-80 {
margin-top: clamp(4rem, 4rem + 40 * (100vw - 375px) / 905, 8rem);
}
.mt-88 {
margin-top: clamp(4.4rem, 4.4rem + 44 * (100vw - 375px) / 905, 8.8rem);
}
.mt-96 {
margin-top: clamp(4.8rem, 4.8rem + 48 * (100vw - 375px) / 905, 9.6rem);
}
.mt-104 {
margin-top: clamp(5.2rem, 5.2rem + 52 * (100vw - 375px) / 905, 10.4rem);
}
.mt-112 {
margin-top: clamp(5.6rem, 5.6rem + 56 * (100vw - 375px) / 905, 11.2rem);
}
.mt-120 {
margin-top: clamp(6rem, 6rem + 60 * (100vw - 375px) / 905, 12rem);
}
.mt-128 {
margin-top: clamp(6.4rem, 6.4rem + 64 * (100vw - 375px) / 905, 12.8rem);
}
.mb-8 {
margin-bottom: clamp(0.4rem, 0.4rem + 4 * (100vw - 375px) / 905, 0.8rem);
}
.mb-16 {
margin-bottom: clamp(0.8rem, 0.8rem + 8 * (100vw - 375px) / 905, 1.6rem);
}
.mb-24 {
margin-bottom: clamp(1.2rem, 1.2rem + 12 * (100vw - 375px) / 905, 2.4rem);
}
.mb-32 {
margin-bottom: clamp(1.6rem, 1.6rem + 16 * (100vw - 375px) / 905, 3.2rem);
}
.mb-40 {
margin-bottom: clamp(2rem, 2rem + 20 * (100vw - 375px) / 905, 4rem);
}
.mb-48 {
margin-bottom: clamp(2.4rem, 2.4rem + 24 * (100vw - 375px) / 905, 4.8rem);
}
.mb-56 {
margin-bottom: clamp(2.8rem, 2.8rem + 28 * (100vw - 375px) / 905, 5.6rem);
}
.mb-64 {
margin-bottom: clamp(3.2rem, 3.2rem + 32 * (100vw - 375px) / 905, 6.4rem);
}
.mb-72 {
margin-bottom: clamp(3.6rem, 3.6rem + 36 * (100vw - 375px) / 905, 7.2rem);
}
.mb-80 {
margin-bottom: clamp(4rem, 4rem + 40 * (100vw - 375px) / 905, 8rem);
}
.mb-88 {
margin-bottom: clamp(4.4rem, 4.4rem + 44 * (100vw - 375px) / 905, 8.8rem);
}
.mb-96 {
margin-bottom: clamp(4.8rem, 4.8rem + 48 * (100vw - 375px) / 905, 9.6rem);
}
.mb-104 {
margin-bottom: clamp(5.2rem, 5.2rem + 52 * (100vw - 375px) / 905, 10.4rem);
}
.mb-112 {
margin-bottom: clamp(5.6rem, 5.6rem + 56 * (100vw - 375px) / 905, 11.2rem);
}
.mb-120 {
margin-bottom: clamp(6rem, 6rem + 60 * (100vw - 375px) / 905, 12rem);
}
.mb-128 {
margin-bottom: clamp(6.4rem, 6.4rem + 64 * (100vw - 375px) / 905, 12.8rem);
}
.align-center {
margin-right: auto;
margin-left: auto;
}
.align-right {
margin-right: 0;
margin-left: auto;
}
.overflow-hidden {
overflow: hidden;
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8;
}
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden;
}
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box;
}
.mfp-container:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
display: none;
}
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto;
}
.mfp-ajax-cur {
cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: zoom-out;
}
.mfp-zoom {
cursor: pointer;
cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.mfp-loading.mfp-figure {
display: none;
}
.mfp-hide {
display: none !important;
}
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044;
}
.mfp-preloader a {
color: #CCC;
}
.mfp-preloader a:hover {
color: #FFF;
}
.mfp-s-ready .mfp-preloader {
display: none;
}
.mfp-s-error .mfp-content {
display: none;
}
button.mfp-close, button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation;
}
button::-moz-focus-inner {
padding: 0;
border: 0;
}
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
padding: 0 0 18px 10px;
color: #FFF;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
opacity: 1;
}
.mfp-close:active {
top: 1px;
}
.mfp-close-btn-in .mfp-close {
color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%;
}
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap;
}
.mfp-arrow {
position: absolute;
opacity: 0.65;
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
content: "";
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent;
}
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px;
}
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7;
}
.mfp-arrow-left {
left: 0;
}
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px;
}
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
right: 0;
}
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px;
}
.mfp-arrow-right:before {
border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
top: -40px;
}
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000;
} img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto;
} .mfp-figure {
line-height: 0;
}
.mfp-figure:after {
content: "";
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444;
}
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px;
}
.mfp-figure figure {
margin: 0;
}
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto;
}
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px;
}
.mfp-image-holder .mfp-content {
max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0;
}
.mfp-img-mobile img.mfp-img {
padding: 0;
}
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0;
}
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px;
}
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box;
}
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0;
}
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px;
}
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0;
}
}
@media all and (max-width: 900px) {
.mfp-arrow {
transform: scale(0.75);
}
.mfp-arrow-left {
transform-origin: 0;
}
.mfp-arrow-right {
transform-origin: 100%;
}
.mfp-container {
padding-left: 6px;
padding-right: 6px;
}
}  :root {
--max-width--regular: 72rem;
--max-width--medium: 108rem;
--max-width--wide: 128rem;
--color-white:#ffffff;
--primary-grey: #f7f7f7;
--primary-black: #131513;
--color-surface-light: #fefefe;
--color-surface-medium: #bfd2e6;
--color-surface-subtle: #ecf4fa;
--color-surface-inner-dark: #3C536A;
--color-stroke-subtle: #eef6ff;
--color-stroke-light:#ebf3fa;
--color-stroke-on-dark:#5D6F80;
--color-dark: #11273D;
--color-text: #4D4D4D;
--color-primary: #316FAF;
--color-primary-hovered: #215183;
--color-primary-clicked: #16395C;
--color-stroke: #D3E0EB;
--color-text-on-dark: #e3e3e3;
--color-surface-alt: #f6fbff;
--site-header--height: clamp(8rem, 8rem + 2 * (100vw - 375px) / 905, 8.2rem);
--site-padding: clamp(2.4rem, 4vw, 4vw);
}
@media only screen and (max-width: 1278.99px) {
:root {
--site-padding: 3.846vw;
}
}
@font-face {
font-family: "Suisse Intl";
src: url(//matheoinvest.com/wp-content/themes/matheoinvest/build/fonts/SuisseIntl-Regular.878509ec.woff) format("woff");
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: "Clash Display";
src: url(//matheoinvest.com/wp-content/themes/matheoinvest/build/fonts/ClashDisplay-Light.2d96b366.woff) format("woff");
font-style: normal;
font-weight: 300;
font-display: swap;
}
@font-face {
font-family: "Clash Display";
src: url(//matheoinvest.com/wp-content/themes/matheoinvest/build/fonts/ClashDisplay-Regular.bddfbdc9.woff) format("woff");
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: "Clash Display";
src: url(//matheoinvest.com/wp-content/themes/matheoinvest/build/fonts/ClashDisplay-Medium.d059aba5.woff) format("woff");
font-style: normal;
font-weight: 500;
font-display: swap;
}
@font-face {
font-family: "Clash Display";
src: url(//matheoinvest.com/wp-content/themes/matheoinvest/build/fonts/ClashDisplay-Semibold.52ec5aaa.woff) format("woff");
font-style: normal;
font-weight: 600;
font-display: swap;
}
@font-face {
font-family: "Clash Display";
src: url(//matheoinvest.com/wp-content/themes/matheoinvest/build/fonts/ClashDisplay-Bold.ae5f5093.woff) format("woff");
font-style: normal;
font-weight: 700;
font-display: swap;
}
.color-black {
color: #000 !important;
}
.color-white {
color: #fff !important;
}
.bg-black {
background-color: #000 !important;
}
.bg-white {
background-color: #fff !important;
}
.fs-x-small,
.has-x-small-font-size {
font-size: 1.2rem !important;
}
.fs-small,
.has-small-font-size {
font-size: 1.4rem !important;
}
.fs-medium,
.has-medium-font-size {
font-size: 1.6rem !important;
}
.fs-large,
.has-large-font-size {
font-size: 1.8rem !important;
}
.fs-x-large,
.has-x-large-font-size {
font-size: 2rem !important;
}
@keyframes animateTextLine {
from {
transform: translateY(1.25em) rotate(1.5deg);
}
to {
transform: translateY(0) rotate(0);
}
}
@keyframes rotateColors {
from {
filter: hue-rotate(0deg);
}
to {
filter: hue-rotate(360deg);
}
}
@keyframes animateColors {
from {
background-color: #fd603b;
}
50% {
background-color: #ffb3a2;
}
to {
background-color: #fd603b;
}
}
@keyframes animateOpacity {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes animateImage {
from {
transform: scale(1.5) translateY(25%);
transform-origin: center;
}
to {
transform: scale(1) translateY(0);
transform-origin: center;
}
}
@keyframes animateLineWidth {
from {
width: 0;
}
to {
width: 100%;
}
}
@keyframes animateClipPathToTop {
from {
clip-path: inset(100% 0 0 0);
}
to {
clip-path: inset(0 0 0 0);
}
}
@keyframes animateClipPathToBottom {
from {
clip-path: inset(0 0 100% 0);
}
to {
clip-path: inset(0 0 0 0);
}
}  @font-face {
font-family: "swiper-icons";
src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
font-weight: 400;
font-style: normal;
} :root {
--swiper-theme-color: #007aff; }
:host {
position: relative;
display: block;
margin-left: auto;
margin-right: auto;
z-index: 1;
}
.swiper {
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0; z-index: 1;
display: block;
}
.swiper-vertical > .swiper-wrapper {
flex-direction: column;
}
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: flex;
transition-property: transform;
transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
touch-action: pan-y;
}
.swiper-vertical {
touch-action: pan-x;
}
.swiper-slide {
flex-shrink: 0;
width: 100%;
height: 100%;
position: relative;
transition-property: transform;
display: block;
}
.swiper-slide-invisible-blank {
visibility: hidden;
} .swiper-autoheight,
.swiper-autoheight .swiper-slide {
height: auto;
}
.swiper-autoheight .swiper-wrapper {
align-items: flex-start;
transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
transform: translateZ(0);
backface-visibility: hidden;
} .swiper-3d.swiper-css-mode .swiper-wrapper {
perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
transform-style: preserve-3d;
}
.swiper-3d {
perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
transform-style: preserve-3d;
} .swiper-css-mode > .swiper-wrapper {
overflow: auto;
scrollbar-width: none; -ms-overflow-style: none; }
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
content: "";
flex-shrink: 0;
order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
scroll-snap-align: center center;
scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
height: 100%;
min-height: 1px;
width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
width: 100%;
min-width: 1px;
height: var(--swiper-centered-offset-after);
}  .swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
width: 42px;
height: 42px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -21px;
margin-top: -21px;
z-index: 10;
transform-origin: 50%;
box-sizing: border-box;
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
border-radius: 50%;
border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
--swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
--swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .swiper-virtual .swiper-slide {
-webkit-backface-visibility: hidden;
transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
content: "";
position: absolute;
left: 0;
top: 0;
pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
height: 1px;
width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
width: 1px;
height: var(--swiper-virtual-size);
}
:root {
--swiper-navigation-size: 44px; }
.swiper-button-prev,
.swiper-button-next {
position: absolute;
top: var(--swiper-navigation-top-offset, 50%);
width: calc(var(--swiper-navigation-size) / 44 * 27);
height: var(--swiper-navigation-size);
margin-top: calc(0px - var(--swiper-navigation-size) / 2);
z-index: 10;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
opacity: 0.35;
cursor: auto;
pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
opacity: 0;
cursor: auto;
pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
left: var(--swiper-navigation-sides-offset, 10px);
right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: var(--swiper-navigation-sides-offset, 10px);
left: auto;
}
.swiper-button-lock {
display: none;
} .swiper-button-prev:after,
.swiper-button-next:after {
font-family: swiper-icons;
font-size: var(--swiper-navigation-size);
text-transform: none !important;
letter-spacing: 0;
font-variant: initial;
line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: var(--swiper-navigation-sides-offset, 10px);
left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
content: "next";
} :root { }
.swiper-pagination {
position: absolute;
text-align: center;
transition: 300ms opacity;
transform: translate3d(0, 0, 0);
z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
display: none !important;
} .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
bottom: var(--swiper-pagination-bottom, 8px);
top: var(--swiper-pagination-top, auto);
left: 0;
width: 100%;
} .swiper-pagination-bullets-dynamic {
overflow: hidden;
font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
transform: scale(0.33);
position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
transform: scale(0.33);
}
.swiper-pagination-bullet {
width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
display: inline-block;
border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
background: var(--swiper-pagination-bullet-inactive-color, #000);
opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
border: none;
margin: 0;
padding: 0;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
cursor: pointer;
}
.swiper-pagination-bullet:only-child {
display: none !important;
}
.swiper-pagination-bullet-active {
opacity: var(--swiper-pagination-bullet-opacity, 1);
background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
right: var(--swiper-pagination-right, 8px);
left: var(--swiper-pagination-left, auto);
top: 50%;
transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
top: 50%;
transform: translateY(-50%);
width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
display: inline-block;
transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
transition: 200ms transform, 200ms right;
} .swiper-pagination-fraction {
color: var(--swiper-pagination-fraction-color, inherit);
} .swiper-pagination-progressbar {
background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
background: var(--swiper-pagination-color, var(--swiper-theme-color));
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
transform: scale(0);
transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
width: 100%;
height: var(--swiper-pagination-progressbar-size, 4px);
left: 0;
top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
width: var(--swiper-pagination-progressbar-size, 4px);
height: 100%;
left: 0;
top: 0;
}
.swiper-pagination-lock {
display: none;
}
:root { }
.swiper-scrollbar {
border-radius: var(--swiper-scrollbar-border-radius, 10px);
position: relative;
touch-action: none;
background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
position: absolute;
left: var(--swiper-scrollbar-sides-offset, 1%);
bottom: var(--swiper-scrollbar-bottom, 4px);
top: var(--swiper-scrollbar-top, auto);
z-index: 50;
height: var(--swiper-scrollbar-size, 4px);
width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
position: absolute;
left: var(--swiper-scrollbar-left, auto);
right: var(--swiper-scrollbar-right, 4px);
top: var(--swiper-scrollbar-sides-offset, 1%);
z-index: 50;
width: var(--swiper-scrollbar-size, 4px);
height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
height: 100%;
width: 100%;
position: relative;
background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
border-radius: var(--swiper-scrollbar-border-radius, 10px);
left: 0;
top: 0;
}
.swiper-scrollbar-cursor-drag {
cursor: move;
}
.swiper-scrollbar-lock {
display: none;
} .swiper-zoom-container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
max-width: 100%;
max-height: 100%;
-o-object-fit: contain;
object-fit: contain;
} .swiper-slide-zoomed {
cursor: move;
touch-action: none;
} .swiper .swiper-notification {
position: absolute;
left: 0;
top: 0;
pointer-events: none;
opacity: 0;
z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
transition-timing-function: ease-out;
margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
flex-wrap: wrap;
flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
pointer-events: none;
transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
pointer-events: none;
}
.swiper-fade .swiper-slide-active {
pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
pointer-events: auto;
}
.swiper.swiper-cube {
overflow: visible;
}
.swiper-cube .swiper-slide {
pointer-events: none;
backface-visibility: hidden;
z-index: 1;
visibility: hidden;
transform-origin: 0 0;
width: 100%;
height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
pointer-events: auto;
visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
position: absolute;
left: 0;
bottom: 0px;
width: 100%;
height: 100%;
opacity: 0.6;
z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
content: "";
background: #000;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
pointer-events: auto;
visibility: visible;
} .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
z-index: 0;
backface-visibility: hidden;
} .swiper.swiper-flip {
overflow: visible;
}
.swiper-flip .swiper-slide {
pointer-events: none;
backface-visibility: hidden;
z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
pointer-events: auto;
} .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
z-index: 0;
backface-visibility: hidden;
} .swiper-creative .swiper-slide {
backface-visibility: hidden;
overflow: hidden;
transition-property: transform, opacity, height;
}
.swiper.swiper-cards {
overflow: visible;
}
.swiper-cards .swiper-slide {
transform-origin: center bottom;
backface-visibility: hidden;
overflow: hidden;
}
:root {
--swiper-navigation-size: 44px; }
.swiper-button-prev,
.swiper-button-next {
position: absolute;
top: var(--swiper-navigation-top-offset, 50%);
width: calc(var(--swiper-navigation-size) / 44 * 27);
height: var(--swiper-navigation-size);
margin-top: calc(0px - var(--swiper-navigation-size) / 2);
z-index: 10;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
opacity: 0.35;
cursor: auto;
pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
opacity: 0;
cursor: auto;
pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
width: 100%;
height: 100%;
-o-object-fit: contain;
object-fit: contain;
transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
left: var(--swiper-navigation-sides-offset, 10px);
right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: var(--swiper-navigation-sides-offset, 10px);
left: auto;
}
.swiper-button-lock {
display: none;
} .swiper-button-prev:after,
.swiper-button-next:after {
font-family: swiper-icons;
font-size: var(--swiper-navigation-size);
text-transform: none !important;
letter-spacing: 0;
font-variant: initial;
line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
right: var(--swiper-navigation-sides-offset, 10px);
left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
content: "next";
}

html.lenis {
height: auto;
}
.lenis.lenis-smooth {
scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
overscroll-behavior: contain;
}
.lenis.lenis-stopped {
overflow: hidden;
}
.lenis.lenis-scrolling iframe {
pointer-events: none;
}
.search-form {
display: flex;
flex-wrap: nowrap;
gap: 2.4rem;
}
.search-form__button {
height: auto;
}
.social {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
}
.social__link {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.social__link svg {
width: 2rem;
height: 2rem;
}
.social__link--x svg {
width: 1.6rem;
width: 1.6rem;
}
.counters__items {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 2rem;
}
@media only screen and (min-width: 639px) {
.counters__items {
row-gap: 4rem;
}
}
.counters__item {
width: 100%;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
position: relative;
}
@media only screen and (min-width: 639px) {
.counters__item {
width: 50%;
}
.counters__item:nth-child(odd) {
border-right: 1px solid var(--color-stroke);
}
}
@media only screen and (min-width: 1279px) {
.counters__item {
max-width: 28rem;
padding: 3rem;
}
.counters__item:nth-child(odd) {
border-right: none;
}
.counters__item:not(:last-child)::after {
content: "";
width: 1px;
height: 100%;
position: absolute;
background-color: var(--color-stroke);
top: 0;
right: -0.52vw;
}
}
@media only screen and (min-width: 1439px) {
.counters__item:not(:last-child)::after {
right: -2.6rem;
}
}
.counters__item-icon {
width: 2.6rem;
height: 2.6rem;
flex-shrink: 0;
}
.counters__item-heading {
display: flex;
align-items: center;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.counters__item-text {
text-align: left;
}
.counters__item-counter {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0;
margin: 0;
font-family: "Clash Display";
display: contents;
}
@media only screen and (min-width: 959px) {
.counters__item-counter {
font-size: 3.2rem;
}
}
.counters__item-counter-text {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0;
margin: 0;
font-family: "Clash Display";
display: contents;
}
@media only screen and (min-width: 959px) {
.counters__item-counter-text {
font-size: 3.2rem;
}
}
.guide-block__items {
display: flex;
-moz-column-gap: 2rem;
column-gap: 2rem;
flex-direction: column;
row-gap: 2rem;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
@media only screen and (min-width: 639px) {
.guide-block__items {
flex-direction: row;
align-items: unset;
}
}
@media only screen and (min-width: 959px) {
.guide-block__items {
flex-direction: row;
}
}
@media only screen and (min-width: 1279px) {
.guide-block__items {
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
flex-wrap: nowrap;
justify-content: center;
}
}
.guide-block__item {
padding: 2.4rem;
border-radius: 1.2rem;
border: 1px solid var(--color-stroke);
height: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
max-width: 40.5rem;
}
@media only screen and (min-width: 639px) {
.guide-block__item {
width: calc(50% - 1rem);
}
}
@media only screen and (min-width: 1279px) {
.guide-block__item {
width: 100%;
}
}
.guide-block__item-content {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-bottom: 5.2rem;
}
.guide-block__item-heading {
font-size: 1.8rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-decoration: none;
margin-bottom: 5.2rem;
display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.guide-block__image {
height: 22.2rem;
-o-object-fit: cover;
object-fit: cover;
border-radius: 0.8rem;
}
.guide-block__link {
text-decoration: none;
}
.guide-block__button-container {
margin-top: 6rem;
display: flex;
width: 100%;
justify-content: center;
}
.steps__container {
display: flex;
-moz-column-gap: 6rem;
column-gap: 6rem;
row-gap: 4rem;
flex-direction: column;
}
@media only screen and (min-width: 959px) {
.steps__container--mobile {
display: none;
}
}
.steps__container--desktop {
display: none;
}
@media only screen and (min-width: 959px) {
.steps__container--desktop {
display: flex;
flex-direction: row;
justify-content: space-between;
}
}
.steps__column {
width: 100%;
position: relative;
}
@media only screen and (min-width: 959px) {
.steps__column.left {
width: calc(56% - 3rem);
}
}
.steps__column.left img {
width: 100%;
max-width: 68.6rem;
border-radius: 1.4rem;
}
@media only screen and (min-width: 959px) {
.steps__column.right {
width: calc(44% - 3rem);
}
}
.steps__column-image {
position: relative;
display: flex;
width: 100%;
flex-direction: column;
}
.steps__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
}
@media only screen and (min-width: 959px) {
.steps__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 1279px) {
.steps__heading {
width: 70%;
margin-bottom: 4.2rem;
}
}
.steps__list {
display: flex;
flex-direction: column;
row-gap: 4.2rem;
}
.steps__heading-container {
margin-bottom: 4.2rem;
display: none;
}
@media only screen and (min-width: 959px) {
.steps__heading-container {
display: flex;
}
}
@media only screen and (min-width: 1279px) {
.steps__heading-container {
justify-content: flex-end;
}
}
@media only screen and (min-width: 1279px) {
.steps__heading-column {
width: calc(44% - 3rem);
}
}
.steps__item {
background-color: var(--white);
padding: 3rem 2rem;
border-radius: 2rem;
box-shadow: 0 4px 1.6rem rgba(176, 176, 176, 0.08);
background-color: var(--color-surface-alt);
border: 1px solid var(--color-white);
}
@media only screen and (min-width: 1279px) {
.steps__item {
padding: 3rem 5rem;
}
}
.steps__item-counter {
padding: 0.9rem 2rem;
border-radius: 6.5rem;
background-color: var(--color-surface-subtle);
border: 1px solid var(--color-stroke-light);
box-shadow: 0 0 0 2px #fff;
line-height: 1.5;
color: var(--color-primary);
}
.steps__item-header-container {
display: flex;
-moz-column-gap: 0.4rem;
column-gap: 0.4rem;
margin-bottom: 2rem;
}
.steps__item-tagline {
padding: 0.9rem 2rem;
border-radius: 6.5rem;
background-color: var(--color-surface-subtle);
border: 1px solid var(--color-stroke-light);
box-shadow: 0 0 0 2px #fff;
margin: 0;
line-height: 1.5;
color: var(--color-primary);
}
.steps__item-heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 3rem;
}
@media only screen and (min-width: 959px) {
.steps__item-heading {
font-size: 2.4rem;
}
}
@media only screen and (min-width: 1279px) {
.steps__item-heading {
width: 85%;
}
}
.is-sticky {
position: fixed;
}
.is-sunk {
position: absolute;
bottom: 0;
}
.is-sunk-wrapper {
position: relative;
}
.investment-slider__container {
padding-top: 3rem;
padding-bottom: 1rem;
position: relative;
}
@media only screen and (min-width: 959px) {
.investment-slider__container {
padding-top: 6rem;
padding-bottom: 1rem;
}
}
.investment-slider__content {
padding: 2.4rem;
width: 100%;
max-width: 51rem;
}
@media only screen and (min-width: 959px) {
.investment-slider__content {
padding: 3.6rem;
}
}
@media only screen and (min-width: 1279px) {
.investment-slider__content {
padding: 5.6rem 0 3.6rem 5.6rem;
}
}
.investment-slider__location {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
margin-bottom: 1rem;
align-items: center;
}
.investment-slider__heading-container {
display: flex;
flex-direction: column;
margin-bottom: 4.2rem;
}
.investment-slider__title {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 1rem;
}
@media only screen and (min-width: 959px) {
.investment-slider__title {
font-size: 3.2rem;
}
}
.investment-slider__button-container {
display: flex;
justify-content: flex-start;
width: 100%;
}
.investment-slider__button {
display: flex;
padding: 1.1rem 5rem 1.1rem 2.4rem;
height: 5.2rem;
color: var(--white);
border-radius: 3.2rem;
font-size: 1.8rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
}
.investment-slider__button:hover {
background: #2a2a2a;
color: #fff;
}
.investment-slider__button::after {
position: absolute;
top: 1.5rem;
right: 2rem;
}
.investment-slider__arrows-container {
display: block;
margin: 0 auto;
position: absolute;
width: 100%;
bottom: 20%;
}
@media only screen and (min-width: 639px) {
.investment-slider__arrows-container {
width: 14rem;
bottom: 6rem;
right: 12.5vw;
}
}
@media only screen and (min-width: 1279px) {
.investment-slider__arrows-container {
left: 4.8rem;
right: unset;
}
}
.investment-slider__arrows-container .swiper-button-prev,
.investment-slider__arrows-container .swiper-button-next {
width: 6.6rem; height: 4rem; align-items: center;
justify-content: center;
z-index: 100;
transition: all 0.3s linear;
}
.investment-slider__arrows-container .swiper-button-prev:after,
.investment-slider__arrows-container .swiper-button-next:after {
font-size: 1.4rem;
width: 5.3rem;
height: 5.3rem;
border: 1px solid #11273D;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-dark);
background-color: rgba(255, 255, 255, 0.3);
}
.investment-slider__arrows-container .swiper-button-prev {
left: 3%;
}
.investment-slider__arrows-container .swiper-button-next {
right: 3%;
}
.investment-slider__address {
font-size: 1.5rem;
line-height: 1;
color: var(--color-dark);
font-weight: 400;
margin-top: 0;
}
.investment-slider__address a {
transition: all 0.3s ease;
}
.investment-slider__address a:hover {
text-decoration: underline;
color: var(--color-primary-hovered);
}
.investment-slider__swiper-slide {
transition: all 0.3s linear;
display: flex;
flex-direction: column;
border: 1px solid var(--color-stroke);
border-radius: 1.2rem;
display: flex;
justify-content: space-between;
}
@media only screen and (min-width: 639px) {
.investment-slider__swiper-slide {
flex-direction: row;
}
}
.investment-slider__image img {
height: 36rem;
max-width: 73.8rem;
-o-object-fit: cover;
object-fit: cover;
border-bottom-right-radius: 1.2rem;
border-bottom-left-radius: 1.2rem;
}
@media only screen and (min-width: 639px) {
.investment-slider__image img {
height: 54rem;
border-top-right-radius: 1.2rem;
border-bottom-right-radius: 1.2rem;
border-bottom-left-radius: 0;
}
}
.investment-slider__thumbs-list {
display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
-moz-column-gap: 1rem;
column-gap: 1rem;
row-gap: 1rem;
}
@media only screen and (min-width: 959px) {
.investment-slider__thumbs-list {
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}
}
.investment-slider .investment-slider__thumbs-list::-webkit-scrollbar {
display: none; }
.investment-slider__thumbs {
margin-bottom: 4rem;
}
.investment-slider__thumbs-item {
font-size: 1.6rem;
font-family: "Clash Display", sans-serif;
padding: 1.1rem 2.4rem;
border-radius: 2rem;
font-size: 1.6rem;
line-height: 1;
text-align: center;
cursor: pointer;
width: -moz-fit-content !important;
width: fit-content !important;
margin-right: 0 !important;
color: var(--color-text);
border: 1px solid var(--color-stroke);
text-transform: uppercase;
transition: all 0.3s ease;
}
.investment-slider__thumbs-item:hover {
background-color: var(--color-surface-medium);
color: var(--color-primary);
}
.investment-slider__thumbs .swiper-slide-thumb-active {
opacity: 1;
background-color: var(--color-surface-medium);
color: var(--color-primary);
}
.values-slider {
padding-left: 8rem;
padding-left: 5rem;
}
@media only screen and (min-width: 1439px) {
.values-slider {
padding-left: 8rem;
}
}
.values-slider__wrapper {
position: relative;
}
@media only screen and (min-width: 1279px) {
.values-slider__wrapper {
padding-left: 1rem;
padding-right: 1rem;
}
}
.values-slider__item {
position: relative;
flex-direction: column;
display: flex; background: var(--color-surface-inner-dark);
padding: 4.3rem 2rem;
width: 100%;
border-radius: 1.2rem;
min-height: 44.2rem;
}
@media only screen and (min-width: 639px) {
.values-slider__item {
min-height: 38rem;
}
}
@media only screen and (min-width: 959px) {
.values-slider__item {
padding: 4.3rem 3.6rem;
min-height: 46.5rem;
}
}
@media only screen and (min-width: 1279px) {
.values-slider__item {
min-height: 39rem;
}
}
.values-slider__icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
font-size: 1.5rem;
color: var(--color-white);
width: 5.8rem;
height: 5.8rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-dark);
border: 7px solid var(--color-stroke-on-dark);
}
.values-slider__heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 4.3rem;
margin-bottom: 2rem;
color: var(--color-white);
}
@media only screen and (min-width: 959px) {
.values-slider__heading {
font-size: 2.4rem;
}
}
.values-slider__text {
color: var(--color-white);
}
.values-slider__arrows-container {
margin: 0 auto;
position: absolute;
width: 11.6rem;
bottom: -9.3rem;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
display: flex;
z-index: 2;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.values-slider__arrows-container .swiper-button-prev-values,
.values-slider__arrows-container .swiper-button-next-values {
width: 5.3rem; height: 5.3rem; align-items: center;
justify-content: center;
z-index: 100;
transition: all 0.3s linear;
position: relative;
cursor: pointer;
}
.values-slider__arrows-container .swiper-button-prev-values:after {
content: "prev";
}
.values-slider__arrows-container .swiper-button-next-values:after {
content: "next";
}
.values-slider__arrows-container .swiper-button-prev-values:after,
.values-slider__arrows-container .swiper-button-next-values:after {
font-size: 1.4rem;
width: 5.3rem;
height: 5.3rem;
border: 1px solid var(--color-white);
color: var(--color-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
font-family: swiper-icons;
letter-spacing: 0;
font-variant: initial;
line-height: 1;
}
.values-slider__arrows-container .swiper-button-prev-values {
order: 1;
}
.values-slider__arrows-container .swiper-button-next-values {
order: 2;
}
.safeway__container {
display: flex;
-moz-column-gap: 6rem;
column-gap: 6rem;
row-gap: 4rem;
flex-direction: column;
}
@media only screen and (min-width: 959px) {
.safeway__container--mobile {
display: none;
}
}
.safeway__container--desktop {
display: none;
}
@media only screen and (min-width: 959px) {
.safeway__container--desktop {
display: flex;
flex-direction: row;
justify-content: space-between;
}
}
.safeway__column {
width: 100%;
position: relative;
}
@media only screen and (min-width: 959px) {
.safeway__column.right {
width: calc(56% - 3rem);
}
}
.safeway__column.right img {
width: 100%;
max-width: 68.6rem;
border-radius: 1.4rem;
}
@media only screen and (min-width: 959px) {
.safeway__column.left {
width: calc(44% - 3rem);
}
}
.safeway__column-image {
position: relative;
display: flex;
width: 100%;
flex-direction: column;
}
.safeway__column-image img {
border-radius: 1.4rem;
}
.safeway__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
color: var(--color-white);
}
@media only screen and (min-width: 959px) {
.safeway__heading {
font-size: 4.2rem;
}
}
.safeway__heading span {
color: #316FAF;
}
.safeway__list {
display: flex;
flex-direction: column;
row-gap: 4.2rem;
}
.safeway__heading-container {
margin-bottom: 4.2rem;
}
.safeway__heading-container--desktop {
display: none;
}
@media only screen and (min-width: 959px) {
.safeway__heading-container--desktop {
display: block;
}
}
@media only screen and (min-width: 959px) {
.safeway__heading-container {
display: flex;
}
}
@media only screen and (min-width: 1279px) {
.safeway__heading-column {
width: calc(44% - 3rem);
}
}
.safeway__item {
background-color: #3c536a;
padding: 3.6rem;
border-radius: 2rem;
border: 1px solid #5d6f80;
}
@media only screen and (min-width: 1279px) {
.safeway__item {
padding: 3.6rem;
}
}
.safeway__item-header-container {
display: flex;
-moz-column-gap: 0.4rem;
column-gap: 0.4rem;
margin-bottom: 2rem;
}
.safeway__item-tagline {
display: flex;
justify-content: center;
align-items: center;
height: 6.5rem;
border-radius: 6.5rem;
background-color: var(--color-dark);
border: 7px solid #283c50;
margin: 0;
line-height: 1;
padding-left: 2rem;
padding-right: 2rem;
color: var(--color-white);
}
.safeway__item-heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 3rem;
color: var(--color-white);
}
@media only screen and (min-width: 959px) {
.safeway__item-heading {
font-size: 2.4rem;
}
}
@media only screen and (min-width: 959px) {
.safeway__item-heading {
width: 60%;
}
}
.safeway__item-description {
color: var(--color-white);
}
.safeway__item-icon {
width: 6.5rem;
height: 6.5rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background-color: var(--color-dark);
border: 7px solid #283c50;
}
.safeway__item-icon img {
max-width: 3rem;
width: 100%;
height: 100%;
max-height: 3rem;
}
.safeway__button {
color: var(--color-white);
background-color: #283C50;
border: 1px solid var(--color-stroke);
padding: 1.8rem 3.2rem;
text-decoration: none;
margin-top: 2rem;
font-size: 1.4rem;
line-height: 1.4;
display: flex;
width: -moz-fit-content;
width: fit-content;
border-radius: 2.8rem;
text-transform: uppercase;
}
.safeway__button:hover {
color: var(--color-white);
}
.is-sticky {
position: fixed;
}
.is-sunk {
position: absolute;
bottom: 0;
}
.is-sunk-wrapper {
position: relative;
}
.surroundings {
padding-top: 2rem;
padding-bottom: 6rem;
}
.surroundings__items {
display: flex;
flex-direction: row;
flex-wrap: wrap;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
row-gap: 3.2rem;
justify-content: center;
}
.surroundings__item {
max-width: 40.5rem;
width: 100%;
border: 1px solid var(--color-stroke);
padding: 2.4rem;
border-radius: 1.2rem;
}
.surroundings__item-image {
margin-bottom: 4rem;
border-radius: 0.8rem;
}
.surroundings__item-heading {
font-size: 1.8rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 1rem;
}
.video-block__play {
display: flex;
width: 100%;
height: 100%;
position: relative;
}
.video-block__icon {
display: block;
width: 8rem;
height: 8rem;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
transform: translateY(-50%);
}
.investment-attributes__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
}
@media only screen and (min-width: 959px) {
.investment-attributes__heading {
font-size: 4.2rem;
}
}
.investment-attributes__items {
display: flex;
flex-wrap: wrap;
row-gap: 0.8rem;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
}
.investment-attributes__item {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
}
@media only screen and (min-width: 639px) {
.investment-attributes__item {
width: calc(50% - 1.6rem);
}
}
@media only screen and (min-width: 959px) {
.investment-attributes__item {
width: calc(33.33% - 2.2rem);
padding: 2.4rem 3.2rem;
}
}
.investment-attributes__item-image {
width: 4.8rem;
height: 4.8rem;
}
.investment-attributes__item-heading {
margin-top: 2.8rem;
margin-bottom: 1rem;
}
.investment-attributes__item-description {
margin: 0;
}
.site {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
z-index: 1;
}
.site-header {
position: fixed;
top: 0;
right: 0;
left: 0;
display: flex;
width: 100%;
height: 100%;
max-height: var(--site-header--height);
transform: translateY(0);
z-index: 50;
border-bottom: 1px solid var(--color-stroke-light);
transition: transform 0.35s ease;
}
.site-header.js-scroll-up, .site-header.js-scroll-down, .site-header.is-mobile-navigation-expanded {
transform: translateY(0);
}
.site-header.js-scroll-down {
transform: translateY(-100%);
}
.site-header > div {
display: flex;
align-items: center;
width: 100%;
height: 100%;
color: #3b413a;
background: #fff;
transition: background 0.35s ease;
z-index: 1;
}
.site-header.is-sticky > div, .site-header.js-scroll-down > div, .site-header.js-scroll-up > div, .site-header.is-mobile-navigation-expanded > div {
color: #3b413a;
background: #fff;
box-shadow: 0 0.15em 0.75em 0.125em rgba(97, 108, 128, 0.05);
}
.site-header__navbar {
display: flex;
align-items: center;
width: calc(100% - 2 * var(--site-padding));
max-width: 128rem;
height: 4.8rem;
margin: 0 auto;
justify-content: space-between;
}
.site-header__button {
display: none;
}
@media only screen and (min-width: 1279px) {
.site-header__button {
display: flex;
height: 4.8rem;
padding-left: 2rem;
padding-right: 5rem;
}
.site-header__button::after {
top: 1.3rem;
right: 2rem;
}
}
.site-branding {
display: flex;
margin: 0;
}
.site-logo {
display: block;
}
.site-logo img, .site-logo svg {
width: auto;
max-width: 11rem;
height: 100%;
max-height: 6.4rem;
}
.site-title {
display: block;
width: auto;
font-size: 1.8rem;
font-weight: 600;
text-decoration: none;
color: inherit;
}
.site-title:hover {
color: #c8d7ea;
}
.site-navigation {
display: none;
margin: auto 0;
}
@media only screen and (min-width: 959px) {
.site-navigation {
display: block;
}
}
.site-navigation .menu {
display: flex;
}
.site-navigation .menu-item {
position: relative;
display: flex;
align-items: center;
}
.site-navigation .menu-item:hover, .site-navigation .menu-item.is-expanded {
color: #ff5123;
}
.site-navigation .menu-item-link {
position: relative;
display: flex;
justify-content: center;
align-items: center;
font-weight: 500;
line-height: 1;
text-transform: uppercase;
color: var(--color-dark);
}
.site-navigation .menu-item-link:hover {
color: var(--color-dark);
}
.site-navigation .menu-item-link[aria-current=page]::after {
width: 100%;
}
.site-navigation .menu-item-link:not([href]) + button::after {
content: "";
position: absolute;
inset: 0;
}
.site-navigation .menu-item-link:focus-visible {
outline: 2px solid rgb(253, 94, 57);
}
.site-navigation .menu > .menu-item > a {
height: 4.8rem;
}
.site-navigation .menu > .menu-item + li {
margin-left: 2.8rem;
}
.site-navigation .submenu {
position: absolute;
top: calc(100% + 1.6rem);
left: 50%;
width: 14em;
color: var(--color-primary);
background: var(--color-stroke-light);
margin: 0 0 0 -7em;
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease;
z-index: 1;
}
.site-navigation .submenu a {
visibility: hidden;
}
.site-navigation .submenu[aria-hidden=false] {
opacity: 1;
pointer-events: all;
}
.site-navigation .submenu[aria-hidden=false] a {
visibility: visible;
}
.site-navigation .submenu-toggle {
position: unset;
width: 1.6rem;
height: 1.6rem;
color: inherit;
background: transparent;
margin-left: 0.4rem;
}
.site-navigation .submenu-toggle svg {
transition: transform 0.35s ease;
fill: var(--color-dark);
}
.site-navigation .submenu-toggle[aria-expanded=true] svg {
transform: rotate(180deg);
}
.site-navigation .submenu .menu-item a {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
font-size: 1.4rem;
font-weight: 400;
text-align: center;
text-transform: none;
text-transform: uppercase;
line-height: 1.25;
letter-spacing: 0.01em;
color: var(--color-primary);
padding: 1.25em;
border-top: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(0, 0, 0, 0.07);
z-index: 2;
}
.site-navigation .submenu .menu-item a:hover {
color: inherit;
}
.site-navigation .submenu .menu-item:first-child::before, .site-navigation .submenu .menu-item:first-child::after {
content: "";
display: block;
position: absolute;
top: -0.5rem;
right: 0;
left: 0;
width: 1rem;
height: 1rem;
border: 5px solid;
border-color: var(--color-stroke-light) transparent transparent var(--color-stroke-light);
margin: auto;
transform: rotate(45deg);
z-index: 1;
}
.site-navigation .submenu .menu-item:first-child::after {
top: -0.4rem;
border-color: var(--color-stroke-light) transparent transparent var(--color-stroke-light);
opacity: 0.3;
}
.site-navigation .submenu .menu-item:first-child a {
border-top: 0;
padding-top: 1.5em;
}
.site-navigation .submenu .menu-item:last-child a {
border-bottom: 0;
padding-bottom: 1.5em;
}
.site-navigation .submenu .menu-item:hover a {
color: #fff;
background: var(--color-primary);
border-color: transparent;
}
.site-navigation .submenu::before {
content: "";
position: absolute;
inset: 1px;
background: linear-gradient(160deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
border-radius: inherit;
opacity: 0.5;
z-index: -1;
}
.site-navigation .submenu::after {
content: "";
position: absolute;
display: block;
inset: 0 0 -2px 0;
background: inherit;
opacity: 0.5;
pointer-events: none;
z-index: -1;
}
.site-navigation .menu-item:last-child ul {
left: unset;
right: 0;
}
.site-navigation .menu-item:last-child ul li:first-child::before, .site-navigation .menu-item:last-child ul li:first-child::after {
right: 2.4rem;
left: unset;
}
.site-navigation .menu-item:hover ul {
opacity: 1;
pointer-events: all;
}
.site-navigation .menu-item:hover ul a {
visibility: visible;
}
.site-navigation .menu-item::after {
content: "";
position: absolute;
inset: 0 0 -1.6rem;
width: 100%;
z-index: -1;
}
.site-navigation + * {
margin-left: 4.8rem;
}
.site-header.is-sticky .site-navigation .menu-item:hover, .site-header.is-sticky .site-navigation .menu-item.is-expanded {
color: var(--color-primary);
}
.mobile-navigation {
z-index: 10;
margin: 0 0 0 auto;
}
@media only screen and (min-width: 959px) {
.mobile-navigation {
display: none;
}
}
.mobile-navigation__toggle {
display: flex;
justify-content: center;
align-items: center;
width: 3rem;
height: 3rem;
font-size: 1em;
background: transparent;
border-radius: 5em;
}
.mobile-navigation__toggle svg {
fill: var(--color-primary);
}
.mobile-navigation__toggle:hover {
background: transparent;
}
.mobile-navigation__toggle .icon {
position: absolute;
width: 3rem;
height: 3rem;
}
.mobile-navigation__toggle .icon svg {
fill: var(--color-primary);
}
.mobile-navigation__toggle .icon--menu {
width: 3.2rem;
height: 3.2rem;
}
.mobile-navigation__toggle .icon--menu svg path {
fill: var(--color-primary);
}
.mobile-navigation__toggle .icon--close {
opacity: 0;
}
.mobile-navigation__toggle[aria-expanded=true] .icon--menu {
opacity: 0;
}
.mobile-navigation__toggle[aria-expanded=true] .icon--close {
opacity: 1;
}
.mobile-navigation__container {
position: fixed;
top: var(--site-header--height);
left: -100%;
visibility: hidden;
display: block;
width: calc(100vw - 4.8rem - var(--site-padding));
max-width: 48rem;
height: calc(100vh - var(--site-header--height));
font-weight: 500;
color: #3b413a;
background: #fafcfe;
border-top: 1px solid rgba(0, 0, 0, 0.07);
box-shadow: 0 3px 16px 3px rgba(0, 0, 0, 0.01);
padding: 0 calc(var(--site-padding) - 2.4rem) 0 var(--site-padding);
transition: all 0.35s ease;
}
.mobile-navigation__container[aria-hidden=false] {
left: 0;
visibility: visible;
}
.mobile-navigation__inner-container {
overflow-y: auto;
position: relative;
width: 100%;
height: 100%;
font-size: 1.5rem;
padding: var(--site-padding) 0 calc(var(--site-padding) + 1.6rem);
-ms-overflow-style: none;
scrollbar-width: none;
}
.mobile-navigation__inner-container::-webkit-scrollbar {
display: none;
}
.mobile-navigation .menu {
padding-right: 2.4rem;
}
.mobile-navigation .menu-item {
position: relative;
display: flex;
flex-wrap: wrap;
}
.mobile-navigation .menu-item::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 2px;
background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.07) 50%);
pointer-events: none;
}
.mobile-navigation .menu > li:first-child::before {
display: none;
}
.mobile-navigation .menu-link {
flex: 1;
display: flex;
align-items: center;
height: auto;
min-height: 4.8rem;
line-height: 1.4;
padding: 0.5em 0.5em 0.5em 0;
color: var(--color-primary);
text-transform: uppercase;
}
.mobile-navigation .menu-link:not([href]) + button::after {
content: "";
position: absolute;
inset: 0;
}
.mobile-navigation .submenu {
overflow: hidden;
width: 100%;
max-height: 0;
transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.mobile-navigation .submenu-toggle {
position: unset;
color: inherit;
background: transparent;
}
.mobile-navigation .submenu-toggle svg {
max-width: 0.9rem;
transition: transform 0.35s ease;
}
.mobile-navigation .submenu-toggle[aria-expanded=true] svg {
transform: rotate(180deg);
}
.mobile-navigation .submenu .menu-link {
visibility: hidden;
padding-left: 0.75em;
}
.mobile-navigation .submenu[aria-hidden=false] {
max-height: 9999px;
transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}
.mobile-navigation .submenu[aria-hidden=false] .menu-link {
visibility: visible;
}
.mobile-navigation__backdrop {
top: var(--site-header--height);
height: calc(100vh - var(--site-header--height));
}
.site-content {
flex: 1;
max-width: 100vw;
}
.site-content__inner-container > .section:first-child {
margin-top: 8.2rem !important;
}
@media only screen and (min-width: 1279px) {
.site-content__inner-container > .section:first-child {
margin-top: 8.2rem !important;
}
}
.post-item {
position: relative;
padding: 2.4rem;
border-radius: 1.2rem;
border: 1px solid var(--color-stroke);
height: auto;
display: flex;
flex-direction: column;
background-color: var(--color-surface-alt);
}
.post-item--guide {
background-color: var(--color-white);
}
.post-item__image {
height: 22.2rem;
-o-object-fit: cover;
object-fit: cover;
border-radius: 0.8rem;
}
.post-item__title {
font-size: 1.8rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-decoration: none;
margin-bottom: 5.2rem;
display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-item__content {
display: flex;
flex-direction: column;
justify-content: space-between;
margin-top: 4rem;
min-height: 18.5rem;
}
.posts {
background-color: var(--color-surface-subtle);
padding-top: 2rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.posts {
padding-bottom: 12rem;
}
}
.posts--guide {
background-color: var(--color-white);
}
.posts__container {
display: flex;
flex-direction: column;
align-items: center;
}
.posts__button {
margin: 6rem 0 auto;
}
.post-items {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 3.2rem;
}
@media only screen and (min-width: 639px) {
.post-items {
grid-template-columns: repeat(2, 1fr);
}
}
@media only screen and (min-width: 1279px) {
.post-items {
grid-template-columns: repeat(3, 1fr);
}
}
.pagination {
margin-top: 4.8rem;
margin-bottom: 4.8rem;
}
.pagination .icon-button {
font-size: 1.5rem;
font-weight: 700;
line-height: 0;
letter-spacing: 0;
}
.pagination-links {
position: relative;
display: flex;
justify-content: center;
min-height: 5.6rem;
padding: 0 5.6rem;
}
.pagination-links__items {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.pagination-links__item {
margin: 0.4rem;
}
.pagination-links__dots {
margin: 0.4rem;
pointer-events: none;
}
.pagination-links__prev, .pagination-links__next {
position: absolute;
top: 0;
bottom: 0;
margin: 0.4rem;
}
.pagination-links__prev {
left: 0;
margin-left: 0;
}
.pagination-links__next {
right: 0;
margin-right: 0;
}
.pagination-links--without-numbers {
width: 11.2rem;
}
.pagination-links--without-numbers.is-right-aligned {
margin-left: auto;
}
.pagination:first-child {
margin-top: 0;
}
.pagination:last-child {
margin-bottom: 0;
}
.post-header {
background: #f3f6f9;
margin-bottom: clamp(6.4rem, 6.4rem + 32 * (100vw - 375px) / 905, 9.6rem);
}
.post-header__inner-container {
padding-top: clamp(6.4rem, 6.4rem + 64 * (100vw - 375px) / 905, 12.8rem);
padding-bottom: clamp(4.8rem, 4.8rem + 48 * (100vw - 375px) / 905, 9.6rem);
}
.post-header__title {
max-width: var(--max-width--medium);
font-size: clamp(3.2rem, 3.2rem + 28 * (100vw - 375px) / 905, 6rem);
text-align: center;
}
.post-header__text {
max-width: var(--max-width--medium);
font-size: clamp(1.8rem, 1.8rem + 4 * (100vw - 375px) / 905, 2.2rem);
line-height: 1.65;
text-align: center;
}
.site-content__inner-container > .post-header:first-child {
padding-top: var(--site-header--height) !important;
margin-top: 0 !important;
}
.post-content {
position: relative;
}
.post-author {
display: flex;
align-items: flex-end;
}
.post-author__avatar {
margin-right: 2.4rem;
}
.post-author__avatar img {
border: 3px solid #e5e5e5;
}
.post-author__content {
display: flex;
line-height: 1;
letter-spacing: 0.02em;
}
.post-author__byline {
font-weight: 500;
}
.post-author__name {
font-weight: 600;
text-transform: capitalize;
margin: 0 0 0 0.25em;
}
.post-author.has-avatar .post-author__content {
flex-flow: column;
padding-bottom: 0.3rem;
}
.post-author.has-avatar .post-author__byline {
font-size: 1.2rem;
letter-spacing: 0.05em;
opacity: 0.5;
}
.post-author.has-avatar .post-author__name {
font-size: 1.8rem;
letter-spacing: 0.02em;
margin: 1rem 0 0;
}
.post-date {
display: flex;
}
.post-date__label, .post-date__published {
font-size: 1.2rem;
font-weight: 500;
letter-spacing: 0.05em;
line-height: 1;
opacity: 0.5;
}
.post-date__label {
margin-right: 0.4rem;
}
.post-terms {
position: relative;
}
.post-terms__label {
display: block;
font-size: 1.4rem;
color: #8290af;
margin-bottom: 1.6rem;
}
.post-terms__list {
display: flex;
padding: 0;
margin: -0.4rem;
}
.post-terms__list-item {
margin: 0.4rem;
}
.post-term {
display: block;
font-size: 1.1rem;
font-weight: 500;
letter-spacing: 0.05em;
text-transform: uppercase;
text-decoration: none;
white-space: nowrap;
color: #8290af;
background: #fff;
box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.04);
border-radius: 4px;
padding: 6px 12px;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.post-term:hover {
color: #3b413a;
background: #fafcfe;
box-shadow: inset 0 0 6px 1px rgba(0, 0, 0, 0.08);
}
.post-navigation .pagination-links {
width: 11.2rem;
}
.post-comments {
position: relative;
width: auto;
max-width: unset;
padding-right: calc((100% - var(--max-width--wide)) / 2 - var(--site-padding));
padding-left: calc((100% - var(--max-width--regular)) / 2 - var(--site-padding));
margin-top: clamp(6.4rem, 6.4rem + 32 * (100vw - 375px) / 905, 9.6rem);
margin-bottom: clamp(6.4rem, 6.4rem + 32 * (100vw - 375px) / 905, 9.6rem);
margin-right: var(--site-padding);
margin-left: var(--site-padding);
}
.post-comments__heading {
font-size: 3.2rem;
}
.post-comments__list {
margin-top: 4.8rem;
}
.post-comments__list ol {
position: relative;
display: inline-block;
padding: 0 0 0 3.2rem;
margin: 3.2rem 0 0;
}
.post-comments__form {
max-width: var(--max-width--regular);
background: #fff;
border-radius: 1.6rem;
box-shadow: 1px 2px 16px 1px rgba(0, 0, 0, 0.02);
padding: 4.8rem 5.6rem 6.4rem;
}
.post-comments__form-title {
display: flex;
justify-content: space-between;
align-items: center;
font-size: clamp(2rem, 2rem + 4 * (100vw - 375px) / 905, 2.4rem);
margin: 0;
}
.post-comments__form-title > a {
text-transform: capitalize;
border: 0;
margin: 0 auto 0 0.5em;
}
.post-comments__form-title small {
margin-left: 0.75em;
}
.post-comments__form-title small a {
display: block;
font-family: "Suisse Intl", sans-serif;
font-size: 1.5rem;
font-weight: 500;
text-decoration: none;
color: #788ebe;
background: transparent;
box-shadow: inset 0 0 0 2px #e9eefd;
padding: 0.8rem 1.8rem;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.post-comments__form-title small a:hover {
color: #4061a9;
box-shadow: inset 0 0 0 2px #c0d9ff;
}
.post-comments__list + .post-comments__form {
margin-top: 5.6rem;
}
.post-comments__pagination {
max-width: var(--max-width--regular);
margin: 6.4rem 0;
}
.comment {
position: relative;
max-width: var(--max-width--regular);
background: #fff;
border-radius: 0 1.6rem 1.6rem;
box-shadow: 1px 2px 16px 1px rgba(0, 0, 0, 0.02);
margin: 4.8rem 0 0;
}
.comment-body {
display: flex;
flex-flow: column;
padding: 3.2rem;
}
.comment-meta {
position: relative;
display: flex;
flex-flow: column;
}
.comment-author {
position: relative;
display: flex;
flex-flow: wrap;
align-items: flex-end;
min-height: 7.2rem;
padding-left: 10.4rem;
}
.comment-author__avatar {
position: absolute;
left: 0;
bottom: -4px;
width: 8rem;
height: 8rem;
}
.comment-author__avatar img {
height: 100%;
-o-object-fit: cover;
object-fit: cover;
box-shadow: inset 0 0 0 2px #e9eefd;
border-radius: 50%;
padding: 8px;
}
.comment-author__name {
width: 100%;
font-size: 1.8rem;
font-weight: 600;
line-height: 1;
letter-spacing: 0.02em;
text-transform: capitalize;
}
.comment-author__role {
font-weight: 500;
color: #788ebe;
background: #f7f9fd;
padding: 0.375em 0.875em;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.comment-author__role + .comment-author__role {
margin-left: 0.8rem;
}
.comment-date {
font-size: 1.2rem;
font-weight: 500;
text-align: right;
letter-spacing: 0.05em;
}
.comment-date__published {
color: #788ebe;
background: #f7f9fd;
border-radius: 1.6rem;
padding: 0.5em 1.5em;
}
.comment-awaiting-moderation {
display: block;
margin: 1.5em 0 0;
letter-spacing: 0.02em;
}
.comment-content {
order: 2;
margin: 2.4rem 0 0;
}
.comment-content__notice {
display: block;
font-size: 1.6rem;
color: #4086c3;
background: #f1f9ff;
padding: 0.75em 1.5em;
}
.comment-toolbar {
order: 3;
display: flex;
justify-content: flex-end;
margin: 1.6rem 0 0;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.comment-reply-link, .comment-edit-link {
font-family: "Suisse Intl", sans-serif;
font-size: 1.5rem;
font-weight: 500;
text-decoration: none;
color: #788ebe;
background: #f7f9fd;
box-shadow: inset 0 0 0 2px transparent;
padding: 0.375em 1em;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.comment-reply-link:hover, .comment-edit-link:hover {
color: #4061a9;
background: #fff;
box-shadow: inset 0 0 0 2px #c0d9ff;
}
.comment-edit-link {
border-left: 0;
}
.comment-reply-link + .comment-edit-link {
margin-left: 1rem;
}
.comment:first-child {
margin-top: 0;
}
.comment-form {
margin-top: 2.4rem;
}
.comment-form__cookies {
margin-top: 3.2rem;
}
.comment-form__submit {
margin-top: 4.8rem;
}
.sidebar {
position: relative;
}
.footer {
overflow: hidden;
position: relative;
background: #fff;
z-index: 0;
}
.footer__inner-container {
position: relative;
max-width: unset;
margin: 0 auto;
z-index: 1;
}
.footer__container {
width: 100%;
border-top: 1px solid var(--color-stroke-subtle);
border-bottom: 1px solid var(--color-stroke-subtle);
}
.footer__top-container {
padding-top: 2rem;
padding-bottom: 2rem;
display: flex;
width: 100%;
max-width: 128rem;
justify-content: space-between;
margin: 0 auto;
align-self: center;
padding-left: 3.864vw;
padding-right: 3.864vw;
flex-direction: column;
row-gap: 1.6rem;
}
@media only screen and (min-width: 479px) {
.footer__top-container {
flex-direction: row;
}
}
@media only screen and (min-width: 1439px) {
.footer__top-container {
padding-left: 0;
padding-right: 0;
}
}
.footer__navigation {
padding-top: 2rem;
padding-bottom: 2rem;
display: flex;
width: 100%;
max-width: 128rem;
margin: 0 auto;
padding-left: 3.864vw;
padding-right: 3.864vw;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
}
@media only screen and (min-width: 1439px) {
.footer__navigation {
padding-left: 0;
padding-right: 0;
}
}
.footer__nav {
display: flex;
width: 50%;
max-width: 16rem;
padding-right: 2rem;
padding-top: 1.6rem;
padding-bottom: 1.6rem;
}
@media only screen and (min-width: 1279px) {
.footer__nav {
max-width: 24rem;
padding-top: 3.6rem;
padding-bottom: 3.6rem;
}
}
.footer__nav-list {
display: flex;
flex-direction: column;
row-gap: 0.6rem;
}
.footer__nav-heading {
font-size: 1.4rem;
text-transform: uppercase;
color: var(--color-dark);
margin-bottom: 1.2rem;
}
.footer__nav-link {
font-size: 1.4rem;
line-height: 1.6;
font-weight: 400;
color: var(--color-text);
}
.footer__copyright {
display: flex;
flex-direction: column;
row-gap: 1.6rem;
padding-top: 2rem;
padding-bottom: 4rem;
padding-left: 3.864vw;
padding-right: 3.864vw;
}
@media only screen and (min-width: 1439px) {
.footer__copyright {
padding-left: 0;
padding-right: 0;
}
}
.footer__copyright-text {
font-size: 1.4rem;
color: var(--color-text);
margin: 0;
text-align: center;
}
.footer__copyright-project {
font-size: 1.4rem;
line-height: 1.5;
color: var(--color-text);
margin: 0;
text-align: center;
}
.footer__copyright-project span {
font-weight: 600;
}
.footer__copyright-project a {
color: var(--color-text);
text-decoration: none;
}
.footer__copyright-project a:hover {
color: var(--color-text);
}
.footer__copyright-info {
font-size: 1rem;
line-height: 1.5;
color: var(--color-text);
margin: 0 auto;
max-width: 70rem;
text-align: center;
}
.footer__contact {
font-size: 1em;
}
@media only screen and (min-width: 1279px) {
.footer__contact {
margin-right: 10%;
}
}
.footer__contact h4 {
font-size: inherit;
margin: 0 0 1em;
}
@media only screen and (max-width: 1278.99px) {
.footer__contact h4 {
font-size: 4.103vw;
}
}
.footer__contact p {
font-size: 0.8em;
color: #6F706B;
}
@media only screen and (max-width: 1278.99px) {
.footer__contact p {
font-size: 4.103vw;
}
}
.footer__logo svg {
width: 11.3rem;
height: 6rem;
}
#scrollToTop {
width: 4rem;
display: none; position: fixed;
right: 0.5rem;
bottom: 0.5rem;
z-index: 10;
}
@media only screen and (min-width: 959px) {
#scrollToTop {
width: 5.6rem;
right: 2rem;
bottom: 2rem;
}
}
#scrollToTop.active {
display: block; }
.site-contact {
pointer-events: none;
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 2;
}
.site-contact__inner-container {
position: absolute;
top: 0;
right: 0;
bottom: 0;
display: flex;
width: 100%;
height: 100%;
background: #fff;
box-shadow: 0 0.15em 0.75em 0.125em rgba(97, 108, 128, 0.05);
transition: transform 0.6s ease;
transform: translateX(100%);
margin: 0 0 0 auto;
z-index: 100;
}
@media only screen and (min-width: 1279px) {
.site-contact__inner-container {
width: 50%;
}
}
.site-contact__inner-container > div {
display: flex;
flex-flow: column-reverse;
align-items: center;
width: 100%;
height: 100%;
padding: 5%;
}
.site-contact__header {
display: flex;
align-items: center;
gap: 2vw;
width: 100%;
}
.site-contact__header h4 {
font-size: 2rem;
color: #868A86;
}
.site-contact__header button {
display: flex;
justify-content: center;
align-items: center;
width: 3.625em;
height: 2.5em;
font-size: 1em;
color: #637D7A;
background: transparent;
box-shadow: 0 0 0 1px #637D7A;
border-radius: 5em;
}
.site-contact__header button:hover {
color: #637D7A;
background: transparent;
box-shadow: 0 0 0 1px #637D7A;
}
.site-contact__form {
position: relative;
font-size: clamp(1.6rem, 1.6rem + 4 * (100vw - 375px) / 905, 2rem);
width: 100%;
height: 100%;
margin: 2vw 0 0;
}
.site-contact__backdrop {
position: absolute;
background: rgba(247, 247, 247, 0.5);
}
.site-contact[aria-hidden=false] {
pointer-events: all;
}
.site-contact[aria-hidden=false] > div {
transform: translateX(0);
}
.site-contact[aria-hidden=false] > button {
opacity: 1;
pointer-events: all;
}

.hero-section {
padding-top: 6.4rem;
padding-bottom: 3rem;
}
@media only screen and (min-width: 639px) {
.hero-section {
padding-top: 9.4rem;
padding-bottom: 6rem;
}
}
@media only screen and (min-width: 1279px) {
.hero-section {
padding-top: 12rem;
padding-bottom: 6rem;
}
}
.hero-section__heading {
font-size: 4rem;
line-height: 1.2;
text-transform: uppercase;
color: var(--color-dark);
font-weight: 500;
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 639px) {
.hero-section__heading {
font-size: 5.4rem;
}
}
@media only screen and (min-width: 1279px) {
.hero-section__heading {
font-size: 7.5rem;
}
}
.hero-section__heading strong {
color: var(--color-primary);
font-weight: 500;
}
.hero-section__text {
font-size: 1.8rem;
line-height: 1.6;
margin-bottom: 2rem;
}
@media only screen and (min-width: 1279px) {
.hero-section__text {
max-width: 88rem;
}
}
.hero-section__image {
border-radius: 1.6rem;
}
.hero-section__buttons {
margin-bottom: 6.4rem;
padding-top: 1rem;
}
@media only screen and (min-width: 1279px) {
.hero-section__buttons {
margin-bottom: 11.8rem;
}
}
.hero-section__buttons .button {
width: 100%;
}
@media only screen and (min-width: 479px) {
.hero-section__buttons .button {
width: -moz-fit-content;
width: fit-content;
}
}
.hero-section__button-outlined {
width: 25.6rem;
}
@media only screen and (min-width: 479px) {
.hero-section__button-outlined {
width: -moz-fit-content;
width: fit-content;
}
}
.section-help {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.section-help {
padding-top: 6rem;
padding-bottom: 6rem;
}
}
.section-help__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 3rem;
padding-left: 2rem;
padding-right: 2rem;
}
@media only screen and (min-width: 959px) {
.section-help__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 639px) {
.section-help__heading {
margin-bottom: 6rem;
padding-left: 0;
padding-right: 0;
}
}
.section-help__items {
display: flex;
flex-wrap: wrap;
-moz-column-gap: 2rem;
column-gap: 2rem;
row-gap: 2rem;
justify-content: center;
}
@media only screen and (min-width: 959px) {
.section-help__items {
flex-direction: row;
}
}
@media only screen and (min-width: 1279px) {
.section-help__items {
-moz-column-gap: 4rem;
column-gap: 4rem;
}
}
.section-help__item {
display: flex;
flex-direction: column;
width: 100%;
padding: 2rem;
border-radius: 1.2rem;
border: 1px solid var(--color-stroke);
}
@media only screen and (min-width: 959px) {
.section-help__item {
width: calc(33.33% - 1.4rem);
}
}
@media only screen and (min-width: 1279px) {
.section-help__item {
width: calc(33.33% - 2.7rem);
max-width: 40rem;
padding: 3.4rem;
}
}
.section-help__content {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.section-help__content-inner {
display: flex;
flex-direction: column;
margin-bottom: 3.2rem;
}
@media only screen and (min-width: 1279px) {
.section-help__content-inner {
margin-bottom: 5.2rem;
}
}
.section-help__item-heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 1rem;
}
@media only screen and (min-width: 959px) {
.section-help__item-heading {
font-size: 2.4rem;
}
}
@media only screen and (min-width: 959px) {
.section-help__item-heading {
margin-bottom: 2rem;
}
}
.section-help__item-text {
font-size: 1.6rem;
line-height: 1.6;
}
.section-help__icon {
display: flex;
align-items: center;
justify-content: center;
width: 6.5rem;
height: 6.5rem;
border-radius: 50%;
background-color: var(--color-surface-medium);
border: 0.7rem solid var(--color-stroke-subtle);
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.section-help__icon {
margin-bottom: 4rem;
}
}
.section-help__icon img {
width: 3rem;
height: auto;
}
.section-help__icon--invest img {
width: 3rem;
}
.section-help__icon--ground img {
width: 3.6rem;
}
.section-help__icon--lease img {
width: 2.9rem;
}
.section-advisor {
padding-top: 6.8rem;
padding-bottom: 6.8rem;
}
.section-advisor__column-container {
display: flex;
flex-direction: column;
row-gap: 6rem;
}
@media only screen and (min-width: 959px) {
.section-advisor__column-container {
flex-direction: row;
-moz-column-gap: 10.42vw;
column-gap: 10.42vw;
}
}
.section-advisor__column.left {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.section-advisor__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.section-advisor__heading {
font-size: 4.2rem;
}
}
.section-advisor__column-heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.section-advisor__column-heading {
font-size: 4.2rem;
}
}
.section-advisor__column-text {
margin-bottom: 5.2rem;
max-width: 50rem;
}
@media only screen and (min-width: 959px) {
.section-advisor__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
@media only screen and (min-width: 1279px) {
.section-advisor__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 58rem;
height: 58rem;
position: absolute;
top: -2.5rem;
left: -2.5rem;
z-index: -1;
}
}
.section-advisor__image img {
width: 100%;
border-radius: 0.8rem;
}
@media only screen and (min-width: 959px) {
.section-advisor__image img {
width: 43.3rem;
height: 43.3rem;
}
}
@media only screen and (min-width: 1279px) {
.section-advisor__image img {
width: 53.1rem;
height: 53.1rem;
}
}
.section-contact {
background-color: var(--color-surface-subtle);
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 639px) {
.section-contact {
padding-top: 10rem;
padding-bottom: 10rem;
}
}
.section-contact__column-container {
display: flex;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
width: 100%;
flex-direction: column;
row-gap: 2rem;
}
@media only screen and (min-width: 959px) {
.section-contact__column-container {
flex-direction: row;
}
}
.section-contact__column {
display: flex;
flex-direction: column;
}
.section-contact__column.left {
row-gap: 2rem;
width: 100%;
}
@media only screen and (min-width: 1279px) {
.section-contact__column.left {
max-width: 51.5rem;
}
}
.section-contact__column.right {
width: -moz-fit-content;
width: fit-content;
padding: 4.2rem 3.2rem;
background-color: var(--color-surface-alt);
border-radius: 1.4rem;
border: 1px solid var(--white);
}
.section-contact__icon {
height: auto;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
background-color: var(--color-surface-medium);
border: 6px solid var(--color-stroke-subtle);
}
.section-contact__icon img {
width: 2rem;
height: 2rem;
}
.section-contact__icon.location img {
width: 1.2rem;
}
.section-contact__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-transform: uppercase;
margin-bottom: 4rem;
}
@media only screen and (min-width: 959px) {
.section-contact__heading {
font-size: 4.2rem;
}
}
.section-contact__heading-container {
margin-bottom: 4rem;
}
.section-contact__column-heading {
font-size: 1.8rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 1.8rem;
}
.section-contact__column-text {
font-size: 1.4rem;
margin-bottom: 4.2rem;
}
.section-contact__contact-container {
background-color: var(--color-surface-alt);
border-radius: 1.4rem;
padding: 2rem 1rem;
border: 1px solid var(--white);
display: flex;
flex-direction: column;
row-gap: 2rem;
}
@media only screen and (min-width: 639px) {
.section-contact__contact-container {
padding: 3.6rem 3.2rem;
}
}
.section-contact__map-container {
padding: 2.4rem;
background-color: var(--color-surface-alt);
border-radius: 1.4rem;
border: 1px solid var(--white);
min-height: 28.4rem;
height: -moz-fit-content;
height: fit-content;
}
.section-contact__map-container iframe {
min-height: 28.4rem;
}
@media only screen and (min-width: 639px) {
.section-contact__map-container {
height: 100%;
}
}
.section-contact__info-item {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
}
.section-contact__info-item-text {
font-family: "Clash Display", sans-serif;
margin-top: 0;
font-size: 1.4rem;
font-weight: 500;
text-transform: uppercase;
color: var(--color-dark);
text-decoration: none;
}
@media only screen and (min-width: 639px) {
.section-contact__info-item-text {
font-size: 1.6rem;
}
}
.section-contact__info-item-text a {
font-size: 1.4rem;
font-weight: 500;
color: var(--color-dark);
text-decoration: none;
overflow-wrap: break-word;
}
@media only screen and (min-width: 639px) {
.section-contact__info-item-text a {
font-size: 1.6rem;
text-transform: uppercase;
}
}
.section-contact form {
margin: 0;
}
.section-contact .form-row {
display: flex;
-moz-column-gap: 2rem;
column-gap: 2rem;
flex-direction: column;
}
@media only screen and (min-width: 1279px) {
.section-contact .form-row {
flex-direction: row;
}
}
.section-contact .form-control {
position: relative;
max-width: 81.5rem;
display: flex;
flex-direction: column;
margin-bottom: 1.6rem;
}
.section-contact .form-control span {
width: 100%;
}
.section-contact .form-control label {
font-weight: 500;
margin-bottom: 1rem;
color: var(--color-text);
text-transform: uppercase;
font-size: 1.4rem;
}
@media only screen and (min-width: 639px) {
.section-contact .form-control label {
font-size: 1.6rem;
}
}
.section-contact .form-control input[type=text], .section-contact .form-control input[type=tel], .section-contact .form-control input[type=email] {
font-size: 1.4rem;
padding: 1.2rem;
border-radius: 0.8rem;
height: 5rem;
width: 100%;
color: var(--color-text);
border: 1px solid var(--color-stroke);
padding-right: 5rem;
background-color: #fff;
}
@media only screen and (min-width: 639px) {
.section-contact .form-control input[type=text], .section-contact .form-control input[type=tel], .section-contact .form-control input[type=email] {
font-size: 1.6rem;
}
}
.section-contact .form-control input[type=text]::-moz-placeholder, .section-contact .form-control input[type=tel]::-moz-placeholder, .section-contact .form-control input[type=email]::-moz-placeholder {
color: var(--color-text);
font-size: 1.4rem;
line-height: 1.6;
}
.section-contact .form-control input[type=text]::placeholder, .section-contact .form-control input[type=tel]::placeholder, .section-contact .form-control input[type=email]::placeholder {
color: var(--color-text);
font-size: 1.4rem;
line-height: 1.6;
}
@media only screen and (min-width: 639px) {
.section-contact .form-control input[type=text]::-moz-placeholder, .section-contact .form-control input[type=tel]::-moz-placeholder, .section-contact .form-control input[type=email]::-moz-placeholder {
font-size: 1.6rem;
}
.section-contact .form-control input[type=text]::placeholder, .section-contact .form-control input[type=tel]::placeholder, .section-contact .form-control input[type=email]::placeholder {
font-size: 1.6rem;
}
}
.section-contact .form-control input[type=text]:focus, .section-contact .form-control input[type=tel]:focus, .section-contact .form-control input[type=email]:focus {
outline: none;
border: 1px solid var(--color-primary);
box-shadow: none;
}
.section-contact .form-control textarea {
font-size: 1.4rem;
padding: 2rem;
height: 4.4rem;
width: 100%;
border: 1px solid var(--color-stroke);
color: var(--color-text);
background-color: #fff;
box-shadow: none;
height: 15rem;
border-radius: 0.8rem;
font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 639px) {
.section-contact .form-control textarea {
font-size: 1.6rem;
}
}
.section-contact .form-control textarea::-moz-placeholder {
color: var(--gray-800);
font-size: 1.4rem;
}
.section-contact .form-control textarea::placeholder {
color: var(--gray-800);
font-size: 1.4rem;
}
@media only screen and (min-width: 639px) {
.section-contact .form-control textarea::-moz-placeholder {
font-size: 1.6rem;
}
.section-contact .form-control textarea::placeholder {
font-size: 1.6rem;
}
}
.section-contact .form-control textarea:focus {
outline: none;
background-color: #fff;
box-shadow: none;
border: 1px solid var(--blue);
}
.section-contact .form-control .wpcf7-spinner {
display: none;
}
.section-contact input[type=submit] {
color: #fff;
border-radius: 0;
display: inline-block;
font-size: 1.4rem;
font-weight: 400;
box-shadow: none;
border: 1px solid var(--blue);
height: 100%;
letter-spacing: 0.6px;
transition: all 0.3s ease;
background: linear-gradient(270deg, rgb(35, 77, 171) 0%, rgb(53, 99, 201) 100%);
border-radius: 4rem;
padding: 0 1rem;
width: 20rem;
height: 5rem;
border-color: var(--blue);
}
.section-contact input[type=submit]:hover {
color: var(--blue);
border-color: var(--blue);
background: var(--white);
}
.section-contact .form-acceptance {
margin-bottom: 4.2rem;
}
.section-contact .form-acceptance .wpcf7-list-item {
line-height: 1;
}
.section-contact .form-acceptance .wpcf7-list-item-label {
font-size: 0.8rem;
letter-spacing: -0.02em;
line-height: 1;
}
.counters-section {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.counters-section {
padding-top: 6rem;
padding-bottom: 12rem;
}
}
.counters-section__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.counters-section__heading {
font-size: 4.2rem;
}
}
.counters-section__items {
display: flex;
justify-content: space-between;
}
.counters-section__item {
width: 100%;
max-width: 28rem;
padding: 3.6rem;
}
.counters-section__item-icon {
width: 2.6rem;
height: 2.6rem;
flex-shrink: 0;
}
.counters-section__item-heading {
display: flex;
align-items: center;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.counters-section__item-counter {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0;
margin: 0;
font-family: "Clash Display";
display: contents;
}
@media only screen and (min-width: 959px) {
.counters-section__item-counter {
font-size: 3.2rem;
}
}
.counters-section__item-counter-text {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0;
margin: 0;
font-family: "Clash Display";
display: contents;
}
@media only screen and (min-width: 959px) {
.counters-section__item-counter-text {
font-size: 3.2rem;
}
}
.section-grid {
background-color: var(--color-dark);
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.section-grid {
padding-top: 12rem;
padding-bottom: 12rem;
}
}
.section-grid__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-align: center;
color: var(--color-white);
margin-bottom: 6rem;
letter-spacing: 0;
}
@media only screen and (min-width: 959px) {
.section-grid__heading {
font-size: 4.2rem;
}
}
.section-grid__icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 6.5rem;
height: 6.5rem;
border-radius: 50%;
background-color: var(--color-dark);
border: 7px solid var(--color-stroke-on-dark);
}
.section-grid__icon img {
width: 3rem;
height: 3rem;
}
.section-grid__item-heading {
color: var(--color-white);
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 4rem;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.section-grid__item-heading {
font-size: 2.4rem;
}
}
.section-grid__items {
grid-template-columns: 1fr;
display: grid;
gap: 32px;
}
@media only screen and (min-width: 639px) {
.section-grid__items {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
@media only screen and (min-width: 959px) {
.section-grid__items {
display: grid;
grid-template-columns: 1fr 1fr 1fr; }
}
.section-grid__item {
background-color: var(--color-surface-inner-dark);
padding: 3.6rem;
border-radius: 1.2rem;
border: 1px solid var(--color-stroke-on-dark);
}
@media only screen and (min-width: 639px) {
.section-grid__item {
padding: 2rem;  }
.section-grid__item.item-1 {
grid-column: 1/2; grid-row: 1;
}
.section-grid__item.item-2 {
grid-column: 2/2; grid-row: 1;
}
.section-grid__item.item-3 {
grid-column: 1/3; grid-row: 2;
}
.section-grid__item.item-4 {
grid-column: 1/2; grid-row: 3;
}
.section-grid__item.item-5 {
grid-column: 2/2; grid-row: 3;
}
}
@media only screen and (min-width: 959px) {
.section-grid__item {  }
.section-grid__item.item-1 {
grid-column: 1/2; grid-row: 1;
}
.section-grid__item.item-2 {
grid-column: 2/4; grid-row: 1;
}
.section-grid__item.item-3 {
grid-column: 1/2; grid-row: 2;
}
.section-grid__item.item-4 {
grid-column: 2/3; grid-row: 2;
}
.section-grid__item.item-5 {
grid-column: 3/4; grid-row: 2;
}
}
@media only screen and (min-width: 1279px) {
.section-grid__item {
padding: 3.6rem;
}
}
@media only screen and (min-width: 1279px) {
.section-grid__item.item-2 .text {
max-width: 60%;
}
}
.section-grid__item-text {
color: var(--color-text-on-dark);
}
.guide-section {
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 1279px) {
.guide-section {
padding-top: 12rem;
padding-bottom: 12rem;
}
}
.guide-section__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 3rem;
}
@media only screen and (min-width: 959px) {
.guide-section__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 959px) {
.guide-section__heading {
margin-bottom: 6rem;
}
}
@media only screen and (max-width: 478.99px) {
.guide-section__heading.mobile {
font-size: 2.6rem;
}
}
.section-steps {
padding-top: 4rem;
padding-bottom: 4rem;
background-color: var(--color-surface-subtle);
}
@media only screen and (min-width: 639px) {
.section-steps {
padding-top: 10rem;
padding-bottom: 10rem;
}
}
.section-investment {
padding-top: 6rem;
padding-bottom: 6rem;
}
.section-investment__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
text-align: center;
}
@media only screen and (min-width: 959px) {
.section-investment__heading {
font-size: 4.2rem;
}
}
.section-investment__description {
text-align: center;
}
@media only screen and (min-width: 1279px) {
.section-investment__description {
max-width: 60%;
margin: 0 auto 4rem;
}
}
.section-investment-slider {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.section-investment-slider {
padding-top: 6rem;
padding-bottom: 6rem;
}
}
.section-investment-slider__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
text-align: center;
}
@media only screen and (min-width: 959px) {
.section-investment-slider__heading {
font-size: 4.2rem;
}
}
.section-investment-slider__description {
text-align: center;
}
@media only screen and (min-width: 1279px) {
.section-investment-slider__description {
max-width: 60%;
margin: 0 auto 4rem;
}
}
.contact-hero {
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.contact-hero {
padding-top: 13.2rem;
padding-bottom: 13.2rem;
}
}
.contact-hero__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.contact-hero__heading {
font-size: 4rem;
}
}
@media only screen and (min-width: 1279px) {
.contact-hero__heading {
font-size: 5.6rem;
}
}
.contact-hero__heading strong {
color: var(--color-primary);
font-weight: 500;
}
.contact-hero__description {
width: 100%;
}
@media only screen and (min-width: 959px) {
.contact-hero__description {
width: 45%;
}
}
.about-hero {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 959px) {
.about-hero {
padding-top: 8.4rem;
padding-bottom: 8.4rem;
}
}
.about-hero__container {
display: flex;
flex-direction: column;
row-gap: 4rem;
}
@media only screen and (min-width: 959px) {
.about-hero__container {
flex-direction: row;
-moz-column-gap: 4vw;
column-gap: 4vw;
justify-content: space-between;
}
}
.about-hero__column {
display: flex;
flex-direction: column;
}
.about-hero__column.left {
justify-content: center;
}
.about-hero__column.right {
padding-right: 1.3vw;
}
.about-hero__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
max-width: 60rem;
}
@media only screen and (min-width: 959px) {
.about-hero__heading {
font-size: 4rem;
}
}
@media only screen and (min-width: 1279px) {
.about-hero__heading {
font-size: 5.6rem;
}
}
.about-hero__heading strong {
font-weight: 500;
color: var(--color-primary);
}
.about-hero__heading span {
font-weight: 500;
color: var(--color-primary);
}
.about-hero__description {
margin-bottom: 2rem;
max-width: 63rem;
}
@media only screen and (min-width: 959px) {
.about-hero__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
.about-hero__image img {
width: 100%;
border-radius: 0.8rem;
}
@media only screen and (min-width: 959px) {
.about-hero__image img {
width: 43.3rem;
height: 43.3rem;
}
}
.about-hero__buttons .button {
width: 100%;
}
@media only screen and (min-width: 479px) {
.about-hero__buttons .button {
width: -moz-fit-content;
width: fit-content;
}
}
.our-story {
background-color: var(--color-stroke-subtle);
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.our-story {
padding-top: 12rem;
}
}
.our-story__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-align: center;
margin-bottom: 5.2rem;
}
@media only screen and (min-width: 959px) {
.our-story__heading {
font-size: 4.2rem;
}
}
.our-story__content-container {
display: flex;
flex-direction: column;
padding: 4rem 2rem;
background-color: var(--color-surface-alt);
margin-bottom: 3.2rem;
border-radius: 1.4rem;
}
@media only screen and (min-width: 639px) {
.our-story__content-container {
padding: 4rem 4rem;
}
}
@media only screen and (min-width: 1279px) {
.our-story__content-container {
padding: 6rem 14rem;
}
}
.our-story__content-heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 4rem;
text-align: center;
}
@media only screen and (min-width: 959px) {
.our-story__content-heading {
font-size: 2.4rem;
}
}
.our-story__content-text {
margin: 0;
text-align: center;
}
.our-story__image {
padding: 2rem;
border-radius: 1.4rem;
background-color: var(--color-surface-alt);
margin-bottom: 3.2rem;
}
@media only screen and (min-width: 639px) {
.our-story__image {
padding: 3.8rem;
}
}
.our-story__items {
display: flex;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
row-gap: 3.2rem;
flex-direction: column;
}
@media only screen and (min-width: 639px) {
.our-story__items {
flex-direction: row;
}
}
.our-story__item {
background-color: var(--color-surface-alt);
padding: 3.2rem 3.8rem 5.2rem;
width: 100%;
border-radius: 1.4rem;
}
@media only screen and (min-width: 639px) {
.our-story__item {
width: calc(50% - 1.6rem);
padding: 3rem 2rem 3rem;
}
}
@media only screen and (min-width: 959px) {
.our-story__item {
padding: 3.2rem 3.8rem 5.2rem;
}
}
.our-story__item-heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
margin-top: 2rem;
}
@media only screen and (min-width: 959px) {
.our-story__item-heading {
font-size: 2.4rem;
}
}
.our-story__item-icon-heart {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5.8rem;
height: 5.8rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.our-story__item-icon-heart img {
width: 2.6rem;
height: 2.4rem;
}
.our-story__item-icon-hands {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5.8rem;
height: 5.8rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.our-story__item-icon-hands img {
width: 3.5rem;
height: 2.4rem;
}
.relation-section {
background-color: var(--color-stroke-subtle);
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.relation-section {
padding-top: 12rem;
padding-bottom: 12rem;
}
}
.relation-section__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-align: center;
max-width: 75%;
margin: 0 auto 2rem;
}
@media only screen and (min-width: 959px) {
.relation-section__heading {
font-size: 4.2rem;
}
}
.relation-section__text {
margin-bottom: 2rem;
text-align: center;
}
.our-mission {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 959px) {
.our-mission {
padding-top: 8.2rem;
padding-bottom: 8.2rem;
}
}
.our-mission__container {
display: flex;
-moz-column-gap: 5vw;
column-gap: 5vw;
justify-content: space-between;
row-gap: 3.2rem;
flex-direction: column;
}
@media only screen and (min-width: 959px) {
.our-mission__container {
flex-direction: row;
}
}
@media only screen and (min-width: 1279px) {
.our-mission__container {
-moz-column-gap: 9.27vw;
column-gap: 9.27vw;
}
}
.our-mission__column {
display: flex;
flex-direction: column;
justify-content: center;
}
@media only screen and (min-width: 959px) {
.our-mission__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
@media only screen and (min-width: 1279px) {
.our-mission__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 58rem;
height: 58rem;
position: absolute;
top: -2.5rem;
left: -2.5rem;
z-index: -1;
}
}
.our-mission__image img {
width: 100%;
border-radius: 0.8rem;
}
@media only screen and (min-width: 959px) {
.our-mission__image img {
width: 43.3rem;
height: 43.3rem;
}
}
@media only screen and (min-width: 1279px) {
.our-mission__image img {
width: 53.1rem;
height: 53.1rem;
}
}
@media only screen and (min-width: 1919px) {
.our-mission__image img {
width: 27.66vw;
height: 27.66vw;
}
}
.our-mission__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.our-mission__heading {
font-size: 4.2rem;
}
}
.our-mission__subheading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
color: var(--color-primary);
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.our-mission__subheading {
font-size: 2.4rem;
}
}
@media only screen and (min-width: 1279px) {
.our-mission__subheading {
max-width: 60%;
}
}
.our-vision {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 959px) {
.our-vision {
padding-top: 8.2rem;
padding-bottom: 8.2rem;
}
}
.our-vision__container {
display: flex;
-moz-column-gap: 5vw;
column-gap: 5vw;
justify-content: space-between;
row-gap: 3.2rem;
flex-direction: column;
}
@media only screen and (min-width: 959px) {
.our-vision__container {
flex-direction: row;
}
}
@media only screen and (min-width: 1279px) {
.our-vision__container {
-moz-column-gap: 9.27vw;
column-gap: 9.27vw;
}
}
.our-vision__column {
display: flex;
flex-direction: column;
justify-content: center;
}
.our-vision__column.content {
order: 2;
}
@media only screen and (min-width: 959px) {
.our-vision__column.content {
order: 1;
}
}
.our-vision__column.image {
order: 1;
}
@media only screen and (min-width: 959px) {
.our-vision__column.image {
order: 2;
}
}
.our-vision__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.our-vision__heading {
font-size: 4.2rem;
}
}
.our-vision__subheading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
color: var(--color-primary);
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.our-vision__subheading {
font-size: 2.4rem;
}
}
@media only screen and (min-width: 959px) {
.our-vision__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
@media only screen and (min-width: 1279px) {
.our-vision__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 58rem;
height: 58rem;
position: absolute;
top: -2.5rem;
left: -2.5rem;
z-index: -1;
}
}
.our-vision__image img {
width: 100%;
border-radius: 0.8rem;
}
@media only screen and (min-width: 959px) {
.our-vision__image img {
width: 43.3rem;
height: 43.3rem;
}
}
@media only screen and (min-width: 1279px) {
.our-vision__image img {
width: 53.1rem;
height: 53.1rem;
}
}
@media only screen and (min-width: 1919px) {
.our-vision__image img {
width: 27.66vw;
height: 27.66vw;
}
}
.section-values {
padding-top: 6rem;
padding-bottom: 16rem;
background-color: var(--color-dark);
}
@media only screen and (min-width: 959px) {
.section-values {
padding-top: 12rem;
padding-bottom: 21.3rem;
}
}
.section-values__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 4rem !important;
color: var(--color-white);
}
@media only screen and (min-width: 959px) {
.section-values__heading {
font-size: 4.2rem;
}
}
.finance-section {
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
}
.finance-section__inner-container {
padding-top: 20rem;
padding-bottom: 16rem;
}
@media only screen and (min-width: 479px) {
.finance-section__inner-container {
padding-top: 24rem;
padding-bottom: 24rem;
}
}
@media only screen and (min-width: 639px) {
.finance-section__inner-container {
padding-top: 30rem;
padding-bottom: 26rem;
}
}
.finance-section__heading {
margin-bottom: 2rem;
text-align: center;
font-size: 2.8rem;
line-height: 1.4;
}
@media only screen and (min-width: 959px) {
.finance-section__heading {
font-size: 4.2rem;
}
}
.finance-section__text {
margin: 0 auto 2rem;
text-align: center;
max-width: 57rem;
}
.finance-section__button-container {
display: flex;
justify-content: center;
align-items: center;
-moz-column-gap: 2rem;
column-gap: 2rem;
justify-content: center;
width: 100%;
}
.finance-section__link-container {
display: flex;
padding: 0.6rem 2rem;
border: 1px solid var(--color-stroke);
border-radius: 5rem;
background-color: var(--color-surface-light);
}
@media only screen and (min-width: 639px) {
.finance-section__link-container {
padding: 0.8rem 3.2rem;
}
}
.finance-section__link-image a {
display: block;
line-height: 1;
min-height: 4.1rem;
}
.finance-section__image-top {
max-width: 60rem;
position: absolute;
top: 0;
left: 0;
}
.finance-section__image-bottom {
max-width: 70.3rem;
position: absolute;
bottom: 0;
right: 0;
}
.investments {
background-color: var(--color-surface-subtle);
padding-bottom: 4rem;
padding-top: 4rem;
}
@media only screen and (min-width: 639px) {
.investments {
padding-bottom: 8rem;
padding-top: 8rem;
}
}
.investments__items {
display: flex;
flex-wrap: wrap;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
row-gap: 3.2rem;
}
.investments__item {
border: 1px solid var(--color-stroke);
border-radius: 1.2rem;
background-color: var(--color-white);
position: relative;
}
@media only screen and (min-width: 639px) {
.investments__item {
width: calc(50% - 1.6rem);
}
}
.investments__item.hide {
display: none;
}
.investments__item.show {
display: block;
}
.investments__item-content {
padding: 2rem;
background-color: var(--color-white);
border-bottom-left-radius: 1.2rem;
border-bottom-right-radius: 1.2rem;
}
@media only screen and (min-width: 959px) {
.investments__item-content {
padding: 3.6rem;
}
}
.investments__item-image img {
border-top-left-radius: 1.2rem;
border-top-right-radius: 1.2rem;
}
.investments__address-container {
display: flex;
justify-content: space-between;
-moz-column-gap: 1rem;
column-gap: 1rem;
flex-direction: column;
row-gap: 2rem;
margin-bottom: 3rem;
}
@media only screen and (min-width: 959px) {
.investments__address-container {
flex-direction: row;
align-items: center;
margin-bottom: 0;
}
}
.investments__address-row {
display: flex;
align-items: center;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.investments__investment-logo {
width: 14.1rem;
height: 8rem;
}
.investments__specification {
display: flex;
margin-bottom: 4.2rem;
flex-wrap: wrap;
row-gap: 3rem;
justify-content: space-between;
}
.investments__specification-item {
font-size: 1.4rem;
line-height: 1.5;
margin-right: 1.2rem;
display: flex;
flex-direction: column;
row-gap: 1rem;
}
.investments__specification-item-content {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--color-stroke);
}
.investments__specification-item-value {
text-transform: uppercase;
font-size: 1.8rem;
font-weight: 500;
font-family: "Clash Display";
}
.investments__icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.investments__icon svg {
width: 1.4rem;
height: 2.1rem;
}
.investments__specification-icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
flex-shrink: 0;
}
.investments__specification-icon svg {
width: 2.4rem;
height: 2.4rem;
}
.investments__address-link {
text-decoration: none;
color: var(--color-dark);
font-size: 1.5rem;
font-weight: 500;
transition: all 0.3s ease;
}
.investments__address-link:hover {
text-decoration: underline;
color: var(--color-primary-hovered);
}
.investments__address {
display: block;
width: -moz-fit-content;
width: fit-content;
}
.investments__status {
display: flex;
width: -moz-fit-content;
width: fit-content;
border: 1px solid #ebf3fa;
padding: 0.8rem 1.4rem;
font-size: 1.6rem;
border-radius: 4rem;
background-color: #fcfcfc;
position: absolute;
top: 2.7rem;
right: 4.1rem;
z-index: 9;
}
.investments__item-heading {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 1rem;
margin-bottom: 2.4rem;
}
@media only screen and (min-width: 959px) {
.investments__item-heading {
font-size: 3.2rem;
}
}
.investment-hero {
padding-top: 8.4rem;
padding-bottom: 8.4rem;
}
.investment-hero__container {
display: flex;
flex-direction: column;
row-gap: 4rem;
}
@media only screen and (min-width: 959px) {
.investment-hero__container {
flex-direction: row;
-moz-column-gap: 4vw;
column-gap: 4vw;
justify-content: space-between;
}
}
@media only screen and (min-width: 1279px) {
.investment-hero__container {
flex-direction: row;
-moz-column-gap: 4vw;
column-gap: 4vw;
justify-content: space-between;
}
}
.investment-hero__column {
display: flex;
flex-direction: column;
justify-content: center;
}
.investment-hero__column.right {
padding-right: 1.35vw;
}
.investment-hero__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
margin-top: 1rem;
}
@media only screen and (min-width: 959px) {
.investment-hero__heading {
font-size: 4rem;
}
}
@media only screen and (min-width: 1279px) {
.investment-hero__heading {
font-size: 5.6rem;
}
}
.investment-hero__heading strong {
font-weight: 500;
color: var(--color-primary);
}
.investment-hero__description {
margin-bottom: 2rem;
max-width: 60rem;
}
.investment-hero__image {
position: relative;
}
@media only screen and (min-width: 959px) {
.investment-hero__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
@media only screen and (min-width: 1279px) {
.investment-hero__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 62.3rem;
height: 47.2rem;
position: absolute;
left: -2.6rem;
top: -2rem;
z-index: -1;
}
}
.investment-hero__image img {
border-radius: 0.8rem;
flex-shrink: 0;
}
@media only screen and (min-width: 959px) {
.investment-hero__image img {
width: 43.3rem;
height: 43.3rem;
}
}
@media only screen and (min-width: 1279px) {
.investment-hero__image img {
width: 57.1rem;
height: 43.2rem;
}
}
.investments-hero {
padding-top: 8.4rem;
padding-bottom: 8.4rem;
}
.investments-hero__container {
display: flex;
flex-direction: column;
row-gap: 4rem;
}
@media only screen and (min-width: 959px) {
.investments-hero__container {
flex-direction: row;
-moz-column-gap: 7.92vw;
column-gap: 7.92vw;
}
}
@media only screen and (min-width: 1279px) {
.investments-hero__container {
flex-direction: row;
-moz-column-gap: 5.92vw;
column-gap: 5.92vw;
}
}
.investments-hero__column {
display: flex;
flex-direction: column;
justify-content: center;
}
.investments-hero__column.right {
padding-right: 1.35vw;
flex-shrink: 0;
}
.investments-hero__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.investments-hero__heading {
font-size: 4rem;
}
}
@media only screen and (min-width: 1279px) {
.investments-hero__heading {
font-size: 5.6rem;
}
}
.investments-hero__heading strong {
font-weight: 500;
color: var(--color-primary);
}
.investments-hero__description {
margin-bottom: 2rem;
max-width: 60rem;
}
@media only screen and (min-width: 959px) {
.investments-hero__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
.investments-hero__image img {
width: 100%;
border-radius: 0.8rem;
}
@media only screen and (min-width: 959px) {
.investments-hero__image img {
width: 43.3rem;
height: 43.3rem;
}
}
.page-header {
padding-top: 6rem;
background-color: var(--color-surface-subtle);
}
@media only screen and (min-width: 959px) {
.page-header {
padding-top: 12rem;
padding-bottom: 4rem;
}
}
.page-header__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
width: 100%;
}
@media only screen and (min-width: 959px) {
.page-header__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 959px) {
.page-header__heading {
width: 50%;
}
}
.guide-header {
padding-top: 6rem;
padding-bottom: 4rem;
background-color: var(--color-white);
}
@media only screen and (min-width: 959px) {
.guide-header {
padding-top: 12rem;
}
}
.guide-header__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
width: 50%;
}
@media only screen and (min-width: 959px) {
.guide-header__heading {
font-size: 4.2rem;
}
}
.section-safeway {
padding-top: 6rem;
padding-bottom: 6rem;
background-color: var(--color-dark);
}
@media only screen and (min-width: 639px) {
.section-safeway {
padding-top: 10rem;
padding-bottom: 10rem;
}
}
.block-investment {
padding-top: 6rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.block-investment {
padding-top: 8.2rem;
padding-bottom: 8.2rem;
}
}
.block-investment.blue {
background-color: var(--color-surface-subtle);
}
.block-investment__container {
display: flex;
-moz-column-gap: 6vw;
column-gap: 6vw;
flex-direction: column;
row-gap: 3rem;
}
@media only screen and (min-width: 959px) {
.block-investment__container {
flex-direction: row;
}
}
.block-investment__column {
display: flex;
flex-direction: column;
justify-content: center;
}
.block-investment__column img {
flex-shrink: 0;
}
.block-investment__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.block-investment__heading {
font-size: 4.2rem;
}
}
.block-investment__subheading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
color: var(--color-primary);
margin-top: 0;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.block-investment__subheading {
font-size: 2.4rem;
}
}
.block-investment__text {
margin-bottom: 5.2rem;
}
@media only screen and (min-width: 959px) {
.block-investment__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 47.2rem;
height: 47.2rem;
position: absolute;
top: -2rem;
left: -2rem;
z-index: -1;
}
}
@media only screen and (min-width: 1279px) {
.block-investment__image::after {
content: "";
border: 1px solid var(--color-stroke);
display: block;
border-radius: 1.4rem;
background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(236, 244, 250) 100%);
width: 58rem;
height: 58rem;
position: absolute;
top: -2.5rem;
left: -2.5rem;
z-index: -1;
}
}
.block-investment__image img {
width: 100%;
border-radius: 0.8rem;
}
@media only screen and (min-width: 959px) {
.block-investment__image img {
width: 43.3rem;
height: 43.3rem;
}
}
@media only screen and (min-width: 1279px) {
.block-investment__image img {
width: 53.1rem;
height: 53.1rem;
}
}
@media only screen and (min-width: 1919px) {
.block-investment__image img {
width: 27.66vw;
height: 27.66vw;
}
}
.investment-specification {
padding-bottom: 8rem;
}
.investment-specification__items {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 4rem;
}
.investment-specification__item {
width: 100%;
padding: 3.6rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
}
@media only screen and (min-width: 639px) {
.investment-specification__item {
width: 50%;
}
.investment-specification__item:nth-child(odd) {
border-right: 1px solid var(--color-stroke);
}
}
@media only screen and (min-width: 1279px) {
.investment-specification__item {
max-width: 28rem;
}
.investment-specification__item:nth-child(odd) {
border-right: none;
}
.investment-specification__item:not(:last-child)::after {
content: "";
width: 1px;
height: 100%;
position: absolute;
background-color: var(--color-stroke);
top: 0;
right: -0.52vw;
}
}
@media only screen and (min-width: 1439px) {
.investment-specification__item:not(:last-child)::after {
right: -2.6rem;
}
}
.investment-specification__item-icon {
width: 2.6rem;
height: 2.6rem;
flex-shrink: 0;
}
.investment-specification__item-heading {
display: flex;
align-items: center;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.investment-specification__item-text {
text-align: center;
}
.investment-specification__item-counter {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0;
margin: 0;
font-family: "Clash Display";
display: contents;
}
@media only screen and (min-width: 959px) {
.investment-specification__item-counter {
font-size: 3.2rem;
}
}
.investment-specification__item-counter-text {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
letter-spacing: 0;
margin: 0;
font-family: "Clash Display";
display: contents;
}
@media only screen and (min-width: 959px) {
.investment-specification__item-counter-text {
font-size: 3.2rem;
}
}
.surroundings-section {
padding-top: 0;
padding-bottom: 12rem;
}
.surroundings-section__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin: 0 auto 4rem;
text-align: center;
}
@media only screen and (min-width: 959px) {
.surroundings-section__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 1279px) {
.surroundings-section__heading {
width: 50%;
}
}
.gallery-section__container {
overflow: hidden;
}
.gallery-section--investment {
background-color: var(--color-stroke-subtle);
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.gallery-section--investment {
padding-top: 8rem;
padding-bottom: 8rem;
}
}
.land-section {
padding-top: 8.4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 959px) {
.land-section {
padding-bottom: 8.4rem;
}
}
.land-section__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
text-align: center;
margin: 0 auto 4rem;
}
@media only screen and (min-width: 959px) {
.land-section__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 639px) {
.land-section__heading {
margin: 0 auto 8rem;
width: 50%;
}
}
.land-section__heading strong {
font-weight: 500;
color: var(--color-primary);
}
.land-section__heading span {
font-weight: 500;
color: var(--color-primary);
}
.land-section__column-container {
display: flex;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
row-gap: 3.2rem;
flex-direction: column;
align-items: center;
}
@media only screen and (min-width: 959px) {
.land-section__column-container {
flex-direction: row;
}
}
.land-section__column {
display: flex;
flex-direction: column;
width: 100%;
height: 68rem;
max-width: 65rem;
border-radius: 1.4rem;
}
@media only screen and (min-width: 959px) {
.land-section__column {
width: calc(50% - 1.6rem);
}
}
@media only screen and (min-width: 959px) {
.land-section__column {
height: 72rem;
}
}
@media only screen and (min-width: 1279px) {
.land-section__column {
height: 72rem;
}
}
.land-section__column-content {
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 100%;
min-height: 30rem;
}
@media only screen and (min-width: 959px) {
.land-section__column-content {
padding: 3.6rem;
}
}
.land-section__heading-container {
margin-bottom: 3.2rem;
}
.land-section__image img {
border-top-left-radius: 1.4rem;
border-top-right-radius: 1.4rem;
width: 100%;
height: 36rem;
-o-object-fit: cover;
object-fit: cover;
}
@media only screen and (min-width: 1279px) {
.land-section__image img {
height: 41.9rem;
}
}
.land-section .button {
flex-shrink: 0;
margin-top: 1rem;
}
.flip-container {
width: 100%;
} .flip-card {
perspective: 1000px; } .flip-card-inner {
position: relative;
width: 100%;
height: auto;
transition: transform 0.6s;
transform-style: preserve-3d;
} .flip-card.flipped .flip-card-inner {
transform: rotateY(180deg);
} .flip-card-front,
.flip-card-back {
position: absolute;
width: 100%;
backface-visibility: hidden;
height: 68rem;
border-radius: 1.2rem;
border: 1px solid var(--color-stroke);
background-color: var(--color-white);
}
@media only screen and (min-width: 959px) {
.flip-card-front,
.flip-card-back {
height: 72.2rem;
}
}
@media only screen and (min-width: 1279px) {
.flip-card-front,
.flip-card-back {
height: 72.2rem;
}
} .flip-card-front {
z-index: 2;
}
.flip-card-back {
display: flex;
padding: 1.6rem;
flex-direction: column;
justify-content: space-between;
}
@media only screen and (min-width: 639px) {
.flip-card-back {
padding: 3.6rem;
}
}
.flip-card-back ul {
padding-left: 2rem;
list-style-type: disc;
}
.flip-card-back ul ul {
list-style-type: circle;
}
.flip-card-back .text p {
margin-top: 0;
margin-bottom: 0;
padding-top: 1rem;
padding-bottom: 1rem;
} .flip-card-back {
transform: rotateY(180deg);
}
.apartment {
background-color: var(--color-surface-subtle);
padding-top: 6rem;
padding-bottom: 6rem;
}
.apartment--white {
background-color: var(--color-white);
}
@media only screen and (min-width: 639px) {
.apartment {
padding-top: 12rem;
padding-bottom: 12rem;
}
}
.apartment__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 2rem;
}
@media only screen and (min-width: 959px) {
.apartment__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 959px) {
.apartment__heading {
margin-bottom: 4rem;
}
}
.apartment__items {
display: flex;
flex-direction: column;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
row-gap: 3.2rem;
}
@media only screen and (min-width: 639px) {
.apartment__items {
flex-direction: row;
flex-wrap: wrap;
}
}
.apartment__item {
width: 100%;
border: 1px solid var(--color-stroke);
border-radius: 1.2rem;
background-color: var(--color-white);
display: flex;
flex-direction: column;
}
@media only screen and (min-width: 639px) {
.apartment__item {
width: calc(50% - 1.6rem);
}
}
@media only screen and (min-width: 1279px) {
.apartment__item {
width: 100%;
flex-direction: row;
}
}
.apartment__item-content {
padding: 2rem 1.5rem;
background-color: var(--color-white);
border-bottom-left-radius: 1.2rem;
border-bottom-right-radius: 1.2rem;
width: 100%;
display: flex;
flex-direction: column;
}
@media only screen and (min-width: 1279px) {
.apartment__item-content {
padding: 1.88vw;
border-top-right-radius: 1.2rem;
}
}
@media only screen and (min-width: 1439px) {
.apartment__item-content {
padding: 3.6rem;
}
}
.apartment__item-image {
flex-shrink: 0;
}
@media only screen and (min-width: 1279px) {
.apartment__item-image {
width: 50%;
}
}
@media only screen and (min-width: 1439px) {
.apartment__item-image {
width: 69rem;
}
}
.apartment__item-image img {
width: 100%;
border-top-left-radius: 1.2rem;
border-top-right-radius: 1.2rem;
-o-object-fit: cover;
object-fit: cover;
}
@media only screen and (min-width: 1279px) {
.apartment__item-image img {
border-top-right-radius: 0;
border-bottom-left-radius: 1.2rem;
}
}
.apartment__address-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.apartment__address-row {
display: flex;
align-items: center;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.apartment__item-icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.apartment__item-icon svg {
width: 1.4rem;
height: 2.1rem;
}
.apartment__address {
display: block;
width: -moz-fit-content;
width: fit-content;
}
.apartment__item-heading {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-top: 1rem;
margin-bottom: 3rem;
}
@media only screen and (min-width: 959px) {
.apartment__item-heading {
font-size: 2.4rem;
}
}
.apartment__description {
margin-bottom: 3rem;
}
@media only screen and (min-width: 1279px) {
.apartment__description {
margin-bottom: 1.56vw;
}
}
@media only screen and (min-width: 1439px) {
.apartment__description {
margin-bottom: 3rem;
}
}
.apartment__specification-container {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
}
.apartment__specification {
display: flex;
margin-bottom: 4.2rem;
width: 100%;
}
@media only screen and (min-width: 639px) {
.apartment__specification {
flex-direction: column;
row-gap: 2rem;
}
}
@media only screen and (min-width: 1279px) {
.apartment__specification {
margin-bottom: 2.19vw;
flex-direction: row;
}
}
@media only screen and (min-width: 1439px) {
.apartment__specification {
margin-bottom: 4.2rem;
}
}
.apartment__specification-item {
position: relative;
font-family: "Clash Display", sans-serif;
text-transform: uppercase;
font-size: 1.5rem;
font-weight: 500;
line-height: 1.5;
margin-right: 1.2rem;
}
.apartment__more-button {
margin: 4rem auto 0;
}
.apartment__button-container {
display: flex;
justify-content: space-between;
width: 100%;
flex-direction: column;
row-gap: 2rem;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
@media only screen and (min-width: 1279px) {
.apartment__button-container {
flex-direction: row;
}
}
.apartment__price-container {
display: flex;
align-items: center;
}
.apartment__price-item {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-right: 0.4rem;
font-family: "Clash Display", sans-serif;
}
@media only screen and (min-width: 959px) {
.apartment__price-item {
font-size: 2.4rem;
}
}
.apartment__price-item--small {
font-size: 1.8rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
color: var(--color-stroke-on-dark);
position: relative;
display: inline-block;
padding-left: 0.4rem;
line-height: 1;
}
.apartment__price-item--small::before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 2px;
background-color: var(--color-stroke-on-dark);
}
.apartments-specification {
padding-top: 4rem;
padding-bottom: 2rem;
}
.apartments-specification__container {
padding: 4.2rem 2rem;
border-radius: 1.4rem;
border: 1px solid var(--color-stroke);
}
@media only screen and (min-width: 639px) {
.apartments-specification__container {
padding: 4.2rem 3.2rem;
}
}
.apartments-specification__icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.apartments-specification__icon svg {
width: 1.9rem;
height: 1.9rem;
}
.apartments-specification__icon--localization svg {
width: 1.2rem;
height: 1.9rem;
}
.apartments-specification__address-container {
display: flex;
align-items: center;
-moz-column-gap: 1rem;
column-gap: 1rem;
}
.apartments-specification__contact-container {
display: flex;
justify-content: space-between;
margin-bottom: 6.4rem;
flex-direction: column;
row-gap: 2.4rem;
}
@media only screen and (min-width: 639px) {
.apartments-specification__contact-container {
flex-direction: row;
align-items: center;
}
}
.apartments-specification__heading-container {
display: flex;
justify-content: space-between;
margin-bottom: 3rem;
row-gap: 2rem;
flex-direction: column;
}
@media only screen and (min-width: 639px) {
.apartments-specification__heading-container {
flex-direction: row;
align-items: center;
}
}
.apartments-specification__heading {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 0;
}
@media only screen and (min-width: 959px) {
.apartments-specification__heading {
font-size: 3.2rem;
}
}
.apartments-specification__price-container {
display: flex;
align-items: center;
flex-shrink: 0;
}
.apartments-specification__price {
font-size: 2.4rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-right: 0.4rem;
font-family: "Clash Display";
}
@media only screen and (min-width: 959px) {
.apartments-specification__price {
font-size: 3.2rem;
}
}
.apartments-specification__price-euro {
font-size: 2rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
color: var(--color-stroke-on-dark);
position: relative;
display: inline-block;
padding-left: 0.4rem;
line-height: 1;
font-family: "Clash Display";
}
@media only screen and (min-width: 959px) {
.apartments-specification__price-euro {
font-size: 2.4rem;
}
}
.apartments-specification__price-euro::before {
content: "";
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 2px;
background-color: var(--color-stroke-on-dark);
}
.apartments-specification__description {
margin-bottom: 3.2rem;
}
.apartments-specification__items {
display: flex;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
flex-wrap: wrap;
row-gap: 2rem;
}
.apartments-specification__item {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
}
.apartments-specification__item-text {
font-size: 1.5rem;
font-family: "Clash Display";
font-weight: 500;
margin: 0;
text-transform: uppercase;
}
.apartments-specification__item-text-desc {
margin-left: 0.5rem;
}
.property-info {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.property-info {
padding-top: 8rem;
padding-bottom: 8rem;
}
}
.property-info__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 6.2rem;
}
@media only screen and (min-width: 959px) {
.property-info__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 959px) {
.property-info__heading {
width: 50%;
}
}
.property-info__items {
display: flex;
flex-wrap: wrap;
row-gap: 2.2rem;
flex-direction: column;
}
@media only screen and (min-width: 639px) {
.property-info__items {
-moz-column-gap: 4rem;
column-gap: 4rem;
flex-direction: row;
}
}
@media only screen and (min-width: 959px) {
.property-info__items {
-moz-column-gap: 8rem;
column-gap: 8rem;
}
}
.property-info__item {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
padding-bottom: 2.2rem;
border-bottom: 1px solid var(--color-stroke);
width: 100%;
}
.property-info__item:last-child {
border-bottom: none;
}
.property-info__item:nth-last-child(2) {
border-bottom: none;
}
@media only screen and (min-width: 639px) {
.property-info__item {
width: calc(50% - 2rem);
}
}
@media only screen and (min-width: 959px) {
.property-info__item {
width: calc(50% - 4rem);
}
}
.property-info__text {
margin: 0;
}
.property-info__icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.property-info__icon img {
width: 1.9rem;
height: 1.9rem;
}
.return {
padding-top: 3.2rem;
padding-bottom: 1rem;
}
.return__link {
display: flex;
flex-direction: row;
-moz-column-gap: 1rem;
column-gap: 1rem;
text-decoration: none;
align-items: center;
}
.return__text {
text-transform: uppercase;
color: var(--color-dark);
font-size: 1.4rem;
font-weight: 500;
line-height: 1.4;
}
.gallery-section__container {
overflow: hidden;
}
.gallery-section--investment {
background-color: var(--color-stroke-subtle);
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.gallery-section--investment {
padding-top: 8rem;
padding-bottom: 8rem;
}
}
.gallery-section {  }
.gallery-section .swiper-container {
width: 100%;
margin: 1rem auto 0;
}
.gallery-section .swiper-slide-container {
text-align: center;
font-size: 18px;
background: #fff;
max-height: 600px;
max-width: 1280px;
margin: auto;
display: flex;
justify-content: center;
align-items: center;
}
.gallery-section .gallery-top {
max-height: 60rem;
position: relative;
border-radius: 1.4rem;
}
.gallery-section .gallery-top img {
border-radius: 1.4rem;
}
.gallery-section .gallery-thumbs {
height: 20%;
box-sizing: border-box;
}
.gallery-section .gallery-thumbs img {
height: 60px;
-o-object-fit: cover;
object-fit: cover;
border-radius: 1.4rem;
}
@media only screen and (min-width: 639px) {
.gallery-section .gallery-thumbs img {
height: 136px;
}
}
.gallery-section .gallery-thumbs .swiper-slide {
width: 90px;
height: 90px;
opacity: 0.4;
}
@media only screen and (min-width: 639px) {
.gallery-section .gallery-thumbs .swiper-slide {
width: 205px;
height: 136px;
}
}
.gallery-section .gallery-thumbs .swiper-slide-active {
opacity: 1;
}
.gallery-section .swiper-pagination {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px; }
.gallery-section .swiper-pagination-bullet {
width: 12px; height: 12px;
background-color: white; opacity: 1;
margin: 0 5px; border-radius: 50%;
border: none; transition: all 0.3s;
}
.gallery-section .swiper-pagination-bullet-active {
background-color: transparent; border: 1px solid white; }
.gallery-section .swiper-button-prev,
.gallery-section .swiper-button-next {
width: 6.6rem; height: 4rem; align-items: center;
justify-content: center;
z-index: 100;
transition: all 0.3s linear;
}
.gallery-section .swiper-button-prev:after,
.gallery-section .swiper-button-next:after {
font-size: 1.4rem;
width: 5.3rem;
height: 5.3rem;
border: 1px solid var(--color-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-dark);
background-color: #fff;
box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.04);
}
.gallery-section .swiper-button-prev {
left: 3%;
}
.gallery-section .swiper-button-next {
right: 3%;
}
@media only screen and (min-width: 639px) {
.gallery-section .swiper-button-prev, .gallery-section .swiper-button-next {
display: flex;
}
}
.single-hero {
padding-top: 1.4rem;
padding-bottom: 6rem;
}
@media only screen and (min-width: 959px) {
.single-hero {
padding-bottom: 9.2rem;
}
}
.single-hero__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
max-width: 100%;
margin-bottom: 2.4rem;
}
@media only screen and (min-width: 959px) {
.single-hero__heading {
font-size: 4.2rem;
}
}
@media only screen and (min-width: 959px) {
.single-hero__heading {
max-width: 75%;
}
}
.single-hero__meta-container {
display: flex;
-moz-column-gap: 3.2rem;
column-gap: 3.2rem;
flex-direction: column;
flex-wrap: wrap;
row-gap: 2rem;
}
@media only screen and (min-width: 479px) {
.single-hero__meta-container {
flex-direction: row;
}
}
.single-hero__category {
-moz-column-gap: 1rem;
column-gap: 1rem;
color: var(--color-primary);
font-size: 1.4rem;
line-height: 1.4rem;
font-weight: 500;
font-family: "Clash Display", sans-serif;
display: flex;
width: -moz-fit-content;
width: fit-content;
text-transform: uppercase;
align-items: center;
justify-content: center;
box-sizing: border-box;
border-radius: 3.2rem;
padding: 0.8rem 2.5rem;
flex-shrink: 0;
max-height: 5rem;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
flex-shrink: 0;
}
.single-hero__category svg {
width: 1.8rem;
height: 1.9rem;
}
.single-hero__author {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
}
.single-hero__author-icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.single-hero__author-icon svg {
width: 1.5rem;
height: 2rem;
}
.single-hero__author-text {
text-transform: uppercase;
color: var(--color-text);
letter-spacing: 0;
font-size: 1.4rem;
line-height: 1.4rem;
font-weight: 500;
font-family: "Clash Display", sans-serif;
}
.single-hero__reading-time {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
align-items: center;
}
.single-hero__reading-time-text {
color: var(--color-text);
letter-spacing: 0;
font-size: 1.4rem;
line-height: 1.4rem;
font-weight: 500;
text-transform: uppercase;
font-family: "Clash Display", sans-serif;
display: inline-flex;
flex-shrink: 0;
}
.single-hero__reading-time-icon {
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
width: 5rem;
height: 5rem;
border-radius: 50%;
flex-shrink: 0;
background-color: var(--color-surface-medium);
border: 7px solid var(--color-stroke-subtle);
}
.single-hero__reading-time-icon svg {
width: 2rem;
height: 2rem;
}
.single-section {
padding-bottom: 4rem;
}
@media only screen and (min-width: 959px) {
.single-section {
padding-bottom: 8rem;
}
}
.single-section p:first-of-type {
margin-bottom: 3rem;
}
.gallery-slider-section {
padding-top: 4rem;
padding-bottom: 4rem;
}
@media only screen and (min-width: 639px) {
.gallery-slider-section {
padding-top: 10rem;
padding-bottom: 10rem;
}
}
.gallery-slider-section__heading {
font-size: 3rem;
font-weight: 500;
line-height: 1.4;
text-transform: uppercase;
margin-bottom: 4rem;
text-align: center;
}
@media only screen and (min-width: 959px) {
.gallery-slider-section__heading {
font-size: 4.2rem;
}
}
.investment-navigation {
background-color: var(--color-surface-alt);
}
.investment-navigation__nav-container {
display: flex;
-moz-column-gap: 2rem;
column-gap: 2rem;
align-items: center;
overflow-x: scroll;
scrollbar-width: none;
}
@media only screen and (min-width: 639px) {
.investment-navigation__nav-container {
-moz-column-gap: 6rem;
column-gap: 6rem;
}
}
@media only screen and (min-width: 1279px) {
.investment-navigation__nav-container {
overflow: unset;
}
}
.investment-navigation__list {
display: flex;
flex-direction: row;
-moz-column-gap: 1rem;
column-gap: 1rem;
padding: 1.8rem 0;
}
.investment-navigation__item {
font-weight: 500;
font-family: "Clash Display", sans-serif;
font-size: 1.4rem;
line-height: 1.4;
text-transform: uppercase;
flex-shrink: 0;
}
.investment-navigation__item--heading {
display: none;
}
@media only screen and (min-width: 639px) {
.investment-navigation__item--heading {
display: inline;
}
}
.investment-navigation__nav {
display: flex;
}
.investment-navigation__link {
display: flex;
width: -moz-fit-content;
width: fit-content;
font-size: 1.4rem;
line-height: 1.4;
color: var(--color-text);
padding: 1.2rem 2.4rem;
background-color: var(--color-white);
border-radius: 3rem;
border: 1px solid var(--color-stroke);
text-transform: uppercase;
font-weight: 500;
font-family: "Clash Display", sans-serif;
flex-shrink: 0;
}
.investment-navigation__link:hover {
background-color: var(--color-surface-medium);
color: var(--color-primary);
}
.error-page {
padding-top: 6rem;
padding-bottom: 6rem;
background-color: var(--color-surface-alt);
}
@media only screen and (min-width: 959px) {
.error-page {
padding-top: 13rem;
padding-bottom: 13rem;
}
}
.error-page__title {
font-size: 4rem;
font-weight: 500;
line-height: 1.2;
text-transform: uppercase;
text-align: center;
margin-top: 0;
color: var(--color-primary);
margin-bottom: 0;
}
@media only screen and (min-width: 959px) {
.error-page__title {
font-size: 5.6rem;
}
}
@media only screen and (min-width: 1279px) {
.error-page__title {
font-size: 7.5rem;
}
}
.error-page__subtitle {
font-size: 4.2rem;
line-height: 1.2;
margin-top: 0;
margin-bottom: 2rem;
font-family: "Clash Display", sans-serif;
text-align: center;
text-transform: uppercase;
color: #11273D;
}
.error-page__description {
text-align: center;
}
.error-page__button-container {
display: flex;
width: 100%;
justify-content: center;
margin-top: 6.4rem;
}
.categories {
background-color: var(--color-surface-alt);
padding-bottom: 1.8rem;
padding-top: 1.8rem;
}
.categories__heading-container {
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
align-items: center;
overflow-x: scroll;
scrollbar-width: none;
}
@media only screen and (min-width: 1279px) {
.categories__heading-container {
overflow: unset;
}
}
.categories__categories-heading {
text-transform: uppercase;
width: -moz-fit-content;
width: fit-content;
display: block;
margin-top: 0;
margin-bottom: 0;
margin-right: 3rem;
flex-shrink: 0;
display: none;
}
@media only screen and (min-width: 639px) {
.categories__categories-heading {
display: inline;
}
}
.categories__category-list {
display: flex;
-moz-column-gap: 1rem;
column-gap: 1rem;
row-gap: 1rem;
}
.categories__category-item {
flex-shrink: 0;
font-family: "Clash Display";
font-weight: 500;
width: -moz-fit-content;
width: fit-content;
background-color: var(--color-white);
padding: 1.2rem 2.4rem;
border-radius: 7.4rem;
font-size: 1.4rem;
line-height: 1.4;
text-transform: uppercase;
border: 1px solid var(--color-stroke);
cursor: pointer;
}
.categories__category-item.active {
background-color: var(--color-surface-medium);
border: 1px solid var(--color-stroke);
}
.section-investment-attributes {
padding-top: 4rem;
padding-bottom: 10rem;
}