11 lines
604 B
PHP
11 lines
604 B
PHP
<section class="h-screen w-full bg-cover bg-center" style="background-image: url(<?php the_sub_field('background'); ?>)">
|
|
<div class="container mx-auto pt-48">
|
|
<h2 class="text-4xl md:text-8xl font-heading text-white text-right mb-2">
|
|
<?php the_sub_field('heading'); ?>
|
|
</h2>
|
|
<h3 class="text-4xl md:text-7xl font-heading text-white text-right after:content-flowerWhite after:inline-block">
|
|
<?php the_sub_field('sub_heading'); ?>
|
|
<!-- <img src="<?php the_sub_field('sub_heading_after_image')?>" alt=""> -->
|
|
</h3>
|
|
</div>
|
|
</section>
|