<section class="vision-section pt-16 lg:pt-40 pb-11 lg:pb-14 bg-light text-blue"
section-shade="light">
<div class="container">
<div class="flex flex-col lg:flex-row gap-8 justify-between">
<h2 class="h2 lg:w-5/12 xl:w-4/12"
split-direction="top"
split-trigger="scroll">{{content.visionSectionTitle}}</h2>
<div class="md:text-2xl lg:w-6/12 xl:w-7/12"
fade
fade-trigger="scroll">
{{content.visionSectionDescription | raw}}
</div>
</div>
</div>
<div class="mt-8 md:mt-16 xl:mt-24">
{% set visions = [
{
'title': 'Impact Transformation. Exit places better than you found them.',
'text': 'We have the opportunity and the abilities to create massive impact through responsible and conscious
investing. We therefore cannot allow ourselves not to do it. We never invest solely driven by short term monetary
gains. We go beyond that.',
'img': './assets/oaks-lane/agency/vision-1.webp'
},
{
'title': 'It is easy to be a good partner in good times. Be a good partner in bad times.',
'text': 'The things worth doing are rarely easy, and the people pursuing them should be supported, even when the
road gets rough. That is why, when we enter a partnership, we are all in. We are passionate about backing
out-of-the-box thinkers with the ambition to push the boundaries of the expected in order to offer impact beyond the
imagined.',
'img': './assets/oaks-lane/agency/vision-2.webp'
},
{
'title': 'The future in Real Estate is always now. It is always a legacy.',
'text': 'The actions we take in real estate shape our surroundings and have lasting real-world impact. We believe
that is both a huge responsibility and an amazing opportunity. That is why we carefully assess every step we take.
It is our legacy.',
'img': './assets/oaks-lane/agency/vision-3.webp'
},
] %}
<div class="container-mob-zero">
<div class="flex gap-2 snap-x overflow-x-auto overflow-y-hidden hide-scrollbar">
<div class="shrink-0 w-4 sm:w-8 lg:hidden"></div>
{% for vision in content.visions %}
<div class="vision-item snap-center grid grid-rows-[auto_1fr] shrink-0 lg:shrink w-10/12 sm:w-8/12 lg:w-1/3"
fade
fade-trigger="none">
<div
class="flex items-end w-full h-[60vh] min-h-[280px] max-h-[310px] md:max-h-[495px] img-clip text-white overflow-hidden">
<div class="vision-item__img absolute scale-110 opacity-0 inset-0 select-none">
{# image size 720x840 #}
{% if vision.visionImage|length > 0 %}
{% set image = vision.visionImage.url %}
<img src="{{ image }}"
width="100"
height="560"
alt="{{vision.visionTitle}}"
loading="lazy">
{% endif %}
{% if vision.visionImage|length > 0 %}
{% set image = vision.visionImage.url %}
<img src="{{ image }}"
width="100"
height="560"
alt="{{vision.visionTitle}}"
loading="lazy">
{% endif %}
</div>
<h3 class="vision-item__title relative z-10 text-xl md:text-[2rem] title px-6 lg:p-8 xl:px-10 pb-8"
fade
fade-trigger="none">{{vision.visionTitle}}</h3>
</div>
<div class="relative flex flex-col p-6 xl:p-10 bg-white text-blue">
<div class="vision-item__text text-sm"
fade
fade-trigger="none">
{{vision.visionText|raw}}
</div>
</div>
</div>
{% endfor %}
<div class="shrink-0 w-4 sm:w-8 lg:hidden"></div>
</div>
</div>
</div>
</section>