{%load static%}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" name="viewport"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="{% static 'assets/vendor/bootstrap/css/bootstrap.min.css'%}" rel="stylesheet">
<link href="{% static 'assets/vendor/bootstrap-icons/bootstrap-icons.css' %}" rel="stylesheet">
<link href="{% static 'assets/vendor/glightbox/css/glightbox.min.css' %}" rel="stylesheet">
<link href="{% static 'assets/vendor/swiper/swiper-bundle.min.css' %}" rel="stylesheet">
<link href="{% static 'assets/vendor/aos/aos.css' %}" rel="stylesheet">
<link href="{% static 'assets/vendor/css/main.css' %}" rel="stylesheet">
<link rel="stylesheet" href="{%static 'assets/css/navbar_css.css'%}">
<title>Application Form - {% block title %}{% endblock %}</title>
{% block stylesheets %}
<style>
</style>
{% endblock stylesheets %}
</head>
<body class="index-page" data-bs-spy="scroll" data-bs-target="#navmenu">
{%include 'includes/navigation-fullscreen.html' %}
{% if 'home' in segment %}
{% elif 'about' in segment %}
{% elif 'contact' in segment %}
{% elif 'final_submit' in segment %}
{%else%}
{% include 'includes/progress-bar.html' %}
{%endif%}
<main>
<div class="wrapper">
<div class="main-panel">
{% block content %}
{% endblock content %}
</div>
</div>
</main>
{%include 'includes/footer.html'%}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}
{% endblock javascripts %}
</body>
</html>