{% extends 'about/about_layout.html.twig' %} {% block page_title %}{{ 'menu.about'|trans }} | HSSE{% endblock %} {% block extra_css %} .hsse-card-premium-light { background: #fff; border-radius: 30px; height: 100%; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); transition: all 0.4s ease; display: flex; flex-direction: column; overflow: hidden; } .hsse-card-image { width: 100%; height: 220px; overflow: hidden; } .hsse-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .hsse-card-premium-light:hover .hsse-card-image img { transform: scale(1.1); } .hsse-content-light { padding: 30px 35px 45px; font-size: 16px; line-height: 1.8; color: #555; text-align: justify; flex-grow: 1; } .video-wrapper-premium-light { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 40px; overflow: hidden; box-shadow: 0 40px 80px rgba(14, 22, 65, 0.15); border: 8px solid #fff; } .video-wrapper-premium-light iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; } .odd-cta-btn { background: #F59E00; color: #0E1641 !important; padding: 12px 12px 12px 35px; border-radius: 60px; font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; transition: all 0.3s ease; text-transform: uppercase; } .odd-cta-btn:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(245, 158, 0, 0.4); } .icon-circle { width: 45px; height: 45px; background: #0E1641; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #F59E00; margin-left: 20px; } {% endblock %} {% block about_content %}
{% set hsseTitle = (app.request.locale == 'en' and aboutinformation.hsseTitleEn) ? aboutinformation.hsseTitleEn : aboutinformation.hsseTitle %}

{{ hsseTitle|default('Engagement HSSE') }}

{% set hsseIntro = (app.request.locale == 'en' and aboutinformation.hsseIntroEn) ? aboutinformation.hsseIntroEn : aboutinformation.hsseIntro %} {% if hsseIntro %}
{{ hsseIntro|raw }}
{% endif %}
{% for i in 1..3 %} {% set point = (app.request.locale == 'en' and attribute(aboutinformation, 'hssePoint' ~ i ~ 'En')) ? attribute(aboutinformation, 'hssePoint' ~ i ~ 'En') : attribute(aboutinformation, 'hssePoint' ~ i) %} {% set image = attribute(aboutinformation, 'hsseImage' ~ i) %} {% if point %}
{% if image %}
STRAM HSSE
{% endif %}
{{ point|raw }}
{% endif %} {% endfor %}
{% if aboutinformation.hsseVideo %}
{% set youtubeIdHsse = aboutinformation.hsseVideo|split('v=')|last %}
{% endif %}
{% endblock %}