templates/corporate-responsibility/carbon-offsetting.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}Carbon Offsetting Project{% endblock %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5.     {{ encore_entry_link_tags('corporate-responsibility') }}
  6. {% endblock %}
  7. {% block javascripts %}
  8.     {{ parent() }}
  9.     {{ encore_entry_script_tags('vimeo') }}
  10. {% endblock %}
  11. {% block body %}
  12.     <div id="carbon-offsetting-background">
  13.         <h1 class="dark-green mb-0 mt-xl-5 py-5 text-center">Carbon Offsetting Project<span class="yellow">.</span></h1>
  14.         <div class="container-fluid d-flex pb-7 text-center">
  15.             <div class="col-xl-3"></div>
  16.             <div class="col-xl-6 col-12">
  17.                 <p class="dark-green fs-5">The Group is committed to minimising the environmental impact of both its manufacturing processes and its products. However, even with the most responsible approach, some carbon dioxide (CO₂) will be released into the atmosphere as an indirect result of factory and selling activities and customers’ use of luminaires.</p>
  18.                 <p class="dark-green fs-5">In 2009, FW Thorpe designed an ambitious carbon-offsetting scheme to help compensate for these emissions. We have chosen to plant trees. Why trees? Trees and other plants absorb CO₂ during photosynthesis. One tree grown to maturity in open space can absorb approximately 1 tonne of CO₂ over its lifetime. A forest covering many acres can effectively lock up CO₂, creating a ‘carbon sink’.</p>
  19.                 <p class="dark-green fs-5 pb-4">The scheme is now accredited under the Woodland Carbon Code.</p>
  20.                 <div class="bg-mid-green carbon-offsetting-circle d-inline-block m-3 position-relative text-white">
  21.                     <div class="position-absolute top-50 start-50 translate-middle">
  22.                         <h3 class="fs-1">Devauden</h3>
  23.                         <p class="fs-5">Monmouthshire, UK</p>
  24.                     </div>
  25.                 </div>
  26.                 <div class="bg-light-green carbon-offsetting-circle d-inline-block m-3 position-relative text-white">
  27.                     <div class="position-absolute top-50 start-50 translate-middle">
  28.                         <h3 class="fs-1">179,412</h3>
  29.                         <p class="fs-5">trees planted<br>since 2009</p>
  30.                     </div>
  31.                 </div>
  32.                 <div class="mt-5 overflow-hidden position-relative rounded-6 video-banner">
  33.                     <div class="position-absolute start-50 top-50 translate-middle video-wrapper" id="carbon-offsetting-video-wrapper">
  34.                         <video class="video-preview" muted autoplay loop poster="{{ asset('build/images/responsibility/carbon-offsetting-poster.webp') }}">
  35.                             <source src="{{ asset('build/images/responsibility/carbon-offsetting-video-preview.mp4') }}" title="Carbon Offsetting Video" type="video/mp4">
  36.                             <p>Sorry but your browser doesn't support HTML5 video, please update to a modern web browser.</p>
  37.                         </video>
  38.                         <div class="video-poster"></div>
  39.                         <div class="play-link position-absolute start-50 top-50 translate-middle">
  40.                             <a href="#" class="white vimeo-overlay-video" data-autoplay="1" data-vimeo-uri="376393862">
  41.                                 <img src="{{ asset('build/images/play.svg') }}" alt="Play"> </a>
  42.                         </div>
  43.                     </div>
  44.                 </div>
  45.                 <div class="col-xl-3"></div>
  46.             </div>
  47.         </div>
  48.     </div>
  49. {% endblock %}