@endif
@if ($title = $shortcode->title)
@endif
@php
$primaryButtonLabel = $shortcode->primary_action_label;
$primaryButtonUrl = $shortcode->primary_action_url;
$secondaryButtonLabel = $shortcode->secondary_action_label;
$secondaryButtonUrl = $shortcode->secondary_action_url;
@endphp
@if(($primaryButtonLabel && $primaryButtonUrl) || ($secondaryButtonUrl && $secondaryButtonLabel))
@if ($image = $shortcode->image)
{{ RvMedia::image($image, Theme::getSiteTitle(), attributes: ['data-aos' => 'fade-up', 'data-aos-delay' => 100]) }}
@endif
@if ($floatingCardTitle = $shortcode->floating_card_title)
{!! BaseHelper::clean($floatingCardTitle) !!}
@endif
@if ($floatingCardDescription = $shortcode->floating_card_description)
{!! BaseHelper::clean($floatingCardDescription) !!}
@endif
@if (count($floatingFeatures) > 0)
@foreach($floatingFeatures as $floatingFeature)
@continue(! $featureTitle = Arr::get($floatingFeature, 'title'))
-
{!! BaseHelper::clean($featureTitle) !!}
@endforeach
@endif