@php $styleColors = ['head-bg-brand-2', 'head-bg-2', 'head-bg-5', ''] @endphp
@if($title = $shortcode->title)

{!! BaseHelper::clean($title) !!}

@endif @if ($subtitle = $shortcode->subtitle)

{!! BaseHelper::clean($subtitle) !!}

@endif
@if ($services->isNotEmpty())
@foreach($services as $service) @php $icon = $service->getMetadata('icon', true); $icon = $icon ?: ($service->category ? ($logo = $service->category->getMetadata('icon', true)) : null) @endphp
@if ($icon)
{{ $service->name }}
@endif @if ($title = $service->name) @endif
@if ($description = $service->description)

{!! BaseHelper::clean($description) !!}

@endif
@endforeach
@endif