<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Service",
"name": "{{ sitename }}",
"serviceType": "{{ sector.title }}",
"provider": {
"@type": "LocalBusiness",
"name": "{{ sitename }}",
"url": "{{ siteurl }}"
},
"areaServed": [
{
"@type": "Place",
"name": "London"
},
{
"@type": "Place",
"name": "Esssex"
},
{
"@type": "Place",
"name": "Kent"
},
{
"@type": "Place",
"name": "Cambridge"
},
{
"@type": "Place",
"name": "Oxford"
}
],
"description": "{{ sector.kicker|raw|striptags }}",
"url": "{{ siteurl }}{{ generatePath(app.request, sector.linkedPageId, {sector_slug: sector.slug}) }}"
}
</script>
{% if sector.image %}
<div class="banner-image banner-image--gradient" style="background-image:url('{{ imageCache('/'~ sector.getFullImagePath, 'zoomCrop', 3200, 1680) }}');"></div>
{% endif %}
<section class="page-content{% if sector.image == null %} pt-[148px] md:pt-[163px]{% endif %}">
<div class="container">
<div class="bg-primary text-center text-white p-10 relative z-20 mb-12 {% if sector.image != null %} -mt-12 sm:-mt-24 md:-mt-52{% else %}mt-12{% endif %}">
{% if sector.icon %}
<span class="text-5xl mb-6 block">{{ sector.icon|raw }}</span>
{% endif %}
<h1 class="text-white">{{ allowInlineEditor(sector, 'title')|raw }}</h1>
{% if sector.subtitle %}
<h3 class="text-white">{{ allowInlineEditor(sector, 'subtitle')|raw }}</h3>
{% endif %}
{% if sector.kicker %}
{{ allowInlineEditor(sector, 'kicker')|raw }}
{% endif %}
</div>
{% if sector.content or sector.content2 %}
<div class="row cms-area mb-12">
<div class="md:col-6 text-2xl font-bold mb-6 md:mb-0">
{{ allowInlineEditor(sector, 'content')|raw }}
</div>
<div class="md:col-6">
{{ allowInlineEditor(sector, 'content2')|raw }}
</div>
</div>
{% endif %}
{% if sector.content3 %}
<div class="row cms-area mb-12">
<div class="md:col-12">
{{ allowInlineEditor(sector, 'content3')|raw }}
</div>
</div>
{% endif %}
{% if sector.image2 or sector.image3 or sector.image4 %}
<div class="row mb-12">
{% if sector.image2 %}
<div class="{% if sector.image4 %}md:col-3{% else %} md:col-6{% endif %} sm:col-6 mb-8 md:mb-0">
<img src="{{ imageCache('/'~ sector.getFullImage2Path, 'zoomCrop', 540, 640) }}" width="370" height="438" alt="{{ sector.title }}" loading="lazy" />
</div>
{% endif %}
{% if sector.image3 %}
<div class="{% if sector.image4 %}md:col-3{% else %} md:col-6{% endif %} sm:col-6 mb-8 md:mb-0">
<img src="{{ imageCache('/'~ sector.getFullImage3Path, 'zoomCrop', 540, 640) }}" width="370" height="438" alt="{{ sector.title }}" loading="lazy" />
</div>
{% endif %}
{% if sector.image4 %}
<div class="md:col-6">
<img src="{{ imageCache('/'~ sector.getFullImage4Path, 'zoomCrop', 1130, 640) }}" width="670" height="380" alt="{{ sector.title }}" loading="lazy" />
</div>
{% endif %}
</div>
{% endif %}
{% if sector.content4 %}
<div class="row cms-area mb-12">
<div class="md:col-12">
{{ allowInlineEditor(sector, 'content4')|raw }}
</div>
</div>
{% endif %}
</div>
</section>
{% if sector.gallery and sector.gallery.galleryImages|length > 0 %}
<div class="container mb-4">
<div class="row">
<div class="col-12 text-center">
<h3 class="text-green mb-8 mt-0">Sector Gallery</h3>
{% if sector.gallery.content %}
<div class="mb-12">
{{ allowInlineEditor(sector.gallery, 'content')|raw }}
</div>
{% endif %}
</div>
</div>
<div class="row">
{% for image in sector.gallery.galleryImages %}
{% if image.file %}
<div class="lg:col-6 mb-8">
<video class="w-full h-auto" src="{{ image.getFileUrl() }}" controls></video>
</div>
{% else %}
<div class="lg:col-6 mb-8">
<img class="max-w-full h-auto" src="{{ imageCache('/'~ image.getFullImagePath, 'zoomCrop', 1140, 640) }}" alt="{{ image.title }}" loading="lazy" />
</div>
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}