{% extends 'layouts/layout.html.twig' %}
{% block body %}
{% set maxWidth = torqService.getMaxWidth() ? ' style=max-width:' ~ torqService.getMaxWidth()|raw ~ 'px;' : '' %}
{% set imageMaxWidth = torqService.getImageMaxWidth() ? ' style=max-width:' ~ torqService.getImageMaxWidth()|raw ~ 'px;' : '' %}
<div id="main-content" class="content">
<div class="section top-bottom-padding">
<div class="inner position-relative">
<div class="row gutter-space--lg">
<div class="col {% if torqService.getImage() is not empty %}col-lg-8 col-md-8 {% else %}col-lg-12 col-md-12 {% endif %}col-sm-12 col-xs-12"{{ maxWidth }}>
{{ torqService.getContent()|raw }}
{% if torqService.getLink() %}
<a class="btn dark" href="{% if torqService.getLink().path and torqService.getLink().anchor %}{{ torqService.getLink().path|lower|join('-') ~ '#' ~ torqService.getLink().anchor }}{% elseif torqService.getLink().path %}{{ torqService.getLink().path|lower|join('-') }}{% elseif torqService.getLink().anchor %}{{ '#' ~ torqService.getLink().anchor }}{% endif %}"{% if torqService.getLink().target %}{{' target=' ~ torqService.getLink().target }}{% endif %}>{{ torqService.getLink().text }}</a>
{% endif %}
</div>
{% if torqService.getImage() is not empty %}
<div class="col col-lg-4 col-md-4 col-sm-12 col-xs-12">
<img class="full-width" data-aos="fade-up" src="{{ torqService.getImage() }}"{{ imageMaxWidth }} />
</div>
{% endif %}
</div>
</div>
</div>
<section class="section top-bottom-padding bg-color--red light">
<div class="inner text-align-center">
<div class="row gutter-space--md center-lg center-md center-sm center-xs">
<div class="cta-display-flex no-bottom-margin col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div data-aos="fade-up">
<h1 data-aos="fade-up" class="h2--lg aos-init aos-animate">Ready to get started?</h1>
</div>
<div data-aos="fade-up">
<a href="{% if torqService.getShowForm() %}#contact{% else %}/contact{% endif %}" class="btn btn--dark">Talk to an expert</a>
</div>
</div>
</div>
</div>
</section>
{% if torqService.getShowForm() %}
{% include 'content/includes/footer-form.html.twig' %}
{% endif %}
</div>
{% endblock %}