@php $bgColor = $shortcode->background_color; $bgColor = $bgColor === 'transparent' ? null : $bgColor; @endphp
htmlAttributes() !!} class="section-cta-8 bg-4 shortcode-features shortcode-features-style-8" @style([ "background-color: $bgColor !important" => $bgColor, ]) >
@if ($subtitle = $shortcode->subtitle)
dots {!! BaseHelper::clean($subtitle) !!}
@endif @if ($title = $shortcode->title)
{!! BaseHelper::clean($title) !!}
@endif @if ($description = $shortcode->description)

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

@endif @foreach($features as $feature) @continue(! $featureTitle = Arr::get($feature, 'title')) @php $icon = Arr::get($feature, 'icon'); $iconImage = Arr::get($feature, 'icon_image'); @endphp
@if ($icon || $iconImage)
@if($iconImage) {{ RvMedia::image($iconImage, $featureTitle) }} @else @endif
@endif
{!! BaseHelper::clean($featureTitle) !!} @if ($featureDescription = Arr::get($feature, 'description'))

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

@endif
@endforeach
@if ($image = $shortcode->image) {{ RvMedia::image($image, __('Image'), attributes: ['class' => 'rounded-4 position-relative z-1']) }} @endif @php $floatingCardDataCount = $shortcode->floating_card_data_count; $floatingCardTitle = $shortcode->floating_card_title; @endphp @if ($floatingCardDataCount && $floatingCardTitle)
@if ($floatingCardDataCountUnit = $shortcode->floating_card_data_count_unit) {{ $floatingCardDataCountUnit }} @endif

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

@endif
vector 2