<!-- ======================================================================
                                        START FOOTER
        ======================================================================= -->
        <div class="footer-model-2">
            <div class="location-map">
                <div class="container">
                    <div class="row">
                        <div class="col-md-6">
                            <?php 
tt_form_location('footer');
?>
                        </div>
                    </div>
                </div>
                <?php 
tt_gmap('contact_map', 'google-map', 'google-map', 'false');
?>
            </div>            
            <div class="footer-bottom-line">
                <div class="container">
                    <ul class="all-socials">
                        <?php 
$social_platforms = array('facebook', 'twitter', 'linkedin', 'youtube', 'vimeo', 'pinterest', 'google', 'dribble', 'rss');
foreach ($social_platforms as $platform) {
    if (_go('social_platforms_' . $platform)) {
        ?>
                                    <li>
                                        <a href="<?php 
        echo _go('social_platforms_' . $platform);
        ?>
"><i class="socials-<?php 
<?php

/*
	Template Name: Contact
*/
get_header();
tt_gmap('contact_map', 'content-map', 'content-map', 'false');
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>
    <div class='container'>
        <?php 
        the_content();
        ?>
    </div>
    <?php 
    }
}
tt_form_location('contact_page');
get_footer();