<!DOCTYPE html>
<html lang="{{ app.request.getLocale}}">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
<title>{% block title %}{% trans %}title_block_page{% endtrans %}{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/fontawesome.css') }}">
<link rel="stylesheet" href="{{ asset('css/bootstrap.css') }}">
<link rel="stylesheet" href="{{ asset('css/animate.css') }}">
<link rel="stylesheet" href="{{ asset('css/fonts.css') }}">
<link rel="stylesheet" href="{{ asset('css/app.css') }}">
<link rel="stylesheet" href="{{ asset('css/public.css') }}">
<link rel="stylesheet" href="{{ asset('css/flag-icons-main/css/flag-icons.css') }}">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/css/intlTelInput.css">
<script src="https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/js/intlTelInput.min.js"></script>
<style>
header {
position: relative;
}
.header-logo {
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}
.img-fluid {
width: 100%;
height: auto;
}
@media only screen and (max-width: 767px) {
/* Styles spécifiques pour les appareils mobiles avec une largeur maximale de 767px */
header img{
width: 65%;
}
.modal-content{
min-width: inherit!important;
}
}
</style>
{% endblock %}
{% block custom_header %}
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#09090B"/>
<link rel="apple-touch-icon" href="{{ asset('images/touch/homescreen192.png') }}">
{% endblock %}
</head>
<body>
<header>
<img src="{{ asset('images/logo_mf_mfxpt.svg') }}" class="header-logo">
<img src="{{ asset('uploads/event_image/DEFAULT/default_banner_mfexpt.jpg') }}" class="img-fluid">
{#<img src="{{ asset('images/header_1400x390.jpg') }}" class="img-fluid">#}
{#<img src="{{ asset('images/header_small.jpg') }}" class="smallScreen">#}
</header>
{% block body %}{% endblock %}
<footer class="footer">
<div class="container text-right">
<img src="{{ asset('images/agco_sign.svg') }}" style="width: 21%;margin-top: 10px;margin-bottom: 10px;">
</div>
</footer>
{% block javascripts %}
<script src="{{ asset('js/jquery.js') }}"></script>
<script src="{{ asset('js/popper.js') }}"></script>
<script src="{{ asset('js/bootstrap.js') }}"></script>
<script>
$(document).ready(function(){
$('.nav-button').click(function(){
$('body').toggleClass('nav-open');
});
});
</script>
{% endblock %}
</body>
</html>