<div id="single-project-desktop" class="page--mainwrap p-0 slideJs single-project single-project-desktop">
<div class="page--mainwrap-header">
<h1 class="page--mainwrap-header-heading">{{ "About"|trans }} {{ project.name }}</h1>
<hr>
{% include 'layouts/block/breadcrumbs.html.twig' %}
</div>
<div class="page--mainwrap-content">
<div class="page--mainwrap-content-desc single-project--content-desc mb-4">
<h2 class="single-project--content-desc-title txt--label">{{ project.name|raw }}</h2>
<div class="single-project--content-desc-txt">
{{ project.description|raw }}
</div>
</div>
<div class="single-project--content-menus d-flex">
<div class="single-project--content-menus-item col-6 p-0">
<h3 class="single-project--content-menus-item-title txt--label">{{ "Project details"|trans }} </h3>
<div class="single-project--content-menus-item-txt">
<ul>
{% if project.kindProject %}<li>{{ "Sector"|trans|raw }}:<a href="{{ path('pages_projects_filter_by_kind_project', { _locale: currentLocale, kindProjectSlug: project.kindProject.slug }) }}"> {{ project.kindProject|raw }}</a></li>{% endif %}
{% if project.architect %}
<li>
{% if project.websiteArchitect %}
{{ "Architect"|trans|raw }}: <a href=" {{ project.websiteArchitect }}" target="_blank">{{ project.architect|raw }}</a>
{% else %}
{{ "Architect"|trans|raw }}: {{ project.architect|raw }}
{% endif %}
</li>
{% endif %}
{% if project.country %}
{% set alpha = project.country.alpha2 %}
<li>{{ "Country"|trans|raw }}: {{ alpha|country_name|raw }}</li>
{% endif %}
{% if project.photography %}<li>{{ "Photography"|trans|raw }}: {{ project.photography|raw }}</li>{% endif %}
{% if project.installation %}<li>{{ "Installation"|trans|raw }}: {{ project.installation|raw }}</li>{% endif %}
</ul>
</div>
</div>
<div class="single-project--content-menus-item col-6 p-0">
<h3 class="single-project--content-menus-item-title txt--label">{{ "Flooring details"|trans|raw }}</h3>
<div class="single-project--content-menus-item-txt">
<ul>
<li>
{{ project.products|length > 1 ? "Products"|trans|raw : "Product"|trans|raw }}:
{% for product in project.products %}
{% if product.name == 'BB_Kaleido' %}
{{ product.name }}
{% else %}
<a href="{{ path('pages_product_details', { _locale: currentLocale, 'collectionSlug': product.collection.slug, 'slug': product.slug, 'id': product.id }) }}">
{{ product.name }}
</a>
{{ loop.last ? '' : '•' }}
{% endif %}
{% endfor %}
</li>
{% if project.areaM > 1 %}
{% set areaM = project.areaM %}
{% set areaF = areaM * 10.764 %}
<li>{{ "Surface"|trans }}: {{ areaM|format_number }} ㎡ - {{ areaF|format_number }} ft²</li>
{% endif %}
<li>{{ project.shapes|length > 1 ? "Shapes"|trans : "Shape"|trans }}:
{% for shape in project.shapes %}
<a href="{{ path('pages_2tec2Play_index', { _locale: currentLocale }) }}">
{{ shape.name|trans }}
</a>
{{ loop.last ? '' : '•' }}
{% endfor %}
</li>
</ul>
</div>
</div>
</div>
{% if project is defined %}
<div class="single-project--content-magnets">
<div class="single-project--content-magnets-container scrollableDiv scrollableX">
<div class="scrollableX-content">
{% for key, img in project.attachmentsFile['urls'] %}
<div class="single-project--content-magnets-container-img modalImgList" imgfullsize="{{ img['jpg']['full'] }}" imgfullsizealt="{{ project.name }} example of utilisation">
<picture>
<source srcset="{{ img['webp']['thumb_250x250'] }}" type="image/webp">
<source srcset="{{ img['jpg']['thumb_250x250'] }}" type="image/jpeg">
<img src="{{ img['jpg']['thumb_250x250'] }}" alt="{{ project.name }} photo">
</picture>
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
<div class="page--mainwrap-content-button single-collection--content-button d-flex justify-content-around">
{#<div class="page--mainwrap-content-button single-project--content-button d-flex justify-content-between">#}
<a rel="canonical" href="{{ path("pages_3d_simulation_index", { _locale: currentLocale }) }}" class="cta-button btn page-btn">
{{ include('layouts/buttons/2tec2_3d_simulation.html.twig') }}
{{ "3D Simulation" | trans }}
</a>
<a href="" class="add-project-to-download cta-button btn page-btn" data-project="{{ project.id }}">
{{ include('layouts/buttons/2tec2_uploads.html.twig') }}
{{ 'Images'|trans }}
</a>
</div>
</div>
<div class="page--mainwrap-arrow slideArrow">
<img src="{{ asset('build/icon/2tec2_arrow_bottom_black.svg') }}" alt="{{ 'caret down icon' | trans }}">
</div>
</div>
<div class="page--subwrap p-0 carouselLgDiv single-project-desktop">
<div class="page--subwrap-carousel-lg carouselLg carouselDiv">
</div>
</div>