Spaces:
Running
Running
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>IMMOVATE - Raum für Investments</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#003366', | |
| secondary: '#0066cc', | |
| accent: '#ff6600', | |
| light: '#f0f4f8', | |
| dark: '#0a1428' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap'); | |
| body { | |
| font-family: 'Open Sans', sans-serif; | |
| color: #333; | |
| } | |
| h1, h2, h3, h4, h5, h6 { | |
| font-family: 'Montserrat', sans-serif; | |
| font-weight: 700; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(0,51,102,0.9) 0%, rgba(0,102,204,0.8) 100%); | |
| } | |
| .project-card { | |
| transition: all 0.3s ease; | |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
| } | |
| .project-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); | |
| } | |
| .service-card { | |
| transition: all 0.3s ease; | |
| } | |
| .service-card:hover { | |
| transform: scale(1.03); | |
| } | |
| .btn-primary { | |
| background: linear-gradient(to right, #003366, #0066cc); | |
| color: white; | |
| padding: 12px 24px; | |
| border-radius: 30px; | |
| font-weight: 600; | |
| transition: all 0.3s ease; | |
| } | |
| .btn-primary:hover { | |
| background: linear-gradient(to right, #002244, #004499); | |
| transform: translateY(-2px); | |
| box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3); | |
| } | |
| .btn-secondary { | |
| background: transparent; | |
| border: 2px solid #003366; | |
| color: #003366; | |
| padding: 12px 24px; | |
| border-radius: 30px; | |
| font-weight: 600; | |
| transition: all 0.3s ease; | |
| } | |
| .btn-secondary:hover { | |
| background: #003366; | |
| color: white; | |
| } | |
| .testimonial-card { | |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); | |
| } | |
| .stats-number { | |
| font-size: 3rem; | |
| font-weight: 700; | |
| color: #003366; | |
| } | |
| .cookie-banner { | |
| position: fixed; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| background: rgba(255, 255, 255, 0.95); | |
| backdrop-filter: blur(5px); | |
| border-top: 1px solid #ddd; | |
| z-index: 9999; | |
| transform: translateY(100%); | |
| transition: transform 0.5s ease; | |
| } | |
| .cookie-banner.active { | |
| transform: translateY(0); | |
| } | |
| .nav-link { | |
| position: relative; | |
| display: inline-block; | |
| } | |
| .nav-link::after { | |
| content: ''; | |
| position: absolute; | |
| width: 0; | |
| height: 2px; | |
| bottom: 0; | |
| left: 0; | |
| background-color: #003366; | |
| transition: width 0.3s ease; | |
| } | |
| .nav-link:hover::after { | |
| width: 100%; | |
| } | |
| .active::after { | |
| width: 100%; | |
| } | |
| .project-slider { | |
| display: flex; | |
| overflow-x: auto; | |
| scroll-snap-type: x mandatory; | |
| scroll-behavior: smooth; | |
| -webkit-overflow-scrolling: touch; | |
| } | |
| .project-slide { | |
| scroll-snap-align: start; | |
| flex: 0 0 100%; | |
| } | |
| /* Hide scrollbar for Chrome, Safari and Opera */ | |
| .project-slider::-webkit-scrollbar { | |
| display: none; | |
| } | |
| /* Hide scrollbar for IE, Edge and Firefox */ | |
| .project-slider { | |
| -ms-overflow-style: none; /* IE and Edge */ | |
| scrollbar-width: none; /* Firefox */ | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-white"> | |
| <!-- Cookie Consent Banner --> | |
| <div id="cookieBanner" class="cookie-banner p-4 active"> | |
| <div class="container mx-auto flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-sm mb-3 md:mb-0 md:mr-4"> | |
| <strong>Datenschutz</strong> - Diese Website verwendet Cookies, um Ihr Surferlebnis zu verbessern. | |
| <a href="#" class="text-blue-600 underline">Mehr erfahren</a> | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <button id="acceptCookies" class="bg-blue-600 text-white px-4 py-2 rounded text-sm">Alle akzeptieren</button> | |
| <button id="rejectCookies" class="border border-blue-600 text-blue-600 px-4 py-2 rounded text-sm">Ablehnen</button> | |
| <button id="customizeCookies" class="border border-gray-400 px-4 py-2 rounded text-sm">Einstellungen</button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Header --> | |
| <header class="fixed w-full bg-white shadow-md z-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex justify-between items-center py-4"> | |
| <div class="flex items-center"> | |
| <a href="#" class="text-2xl font-bold text-primary"> | |
| <img src="https://immovate.com/wp-content/uploads/2022/04/cropped-Gruppe-34@2x-1.png" alt="IMMOVATE Logo" class="h-12"> | |
| </a> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <div class="relative group"> | |
| <a href="#" class="nav-link text-gray-700 hover:text-primary">Projekte</a> | |
| <div class="absolute hidden group-hover:block bg-white shadow-lg py-2 w-48 z-10"> | |
| <a href="#" class="block px-4 py-2 hover:bg-blue-50">Aktuelle Projekte</a> | |
| <a href="#" class="block px-4 py-2 hover:bg-blue-50">Referenzen</a> | |
| <a href="#" class="block px-4 py-2 hover:bg-blue-50">Ankaufsprofil</a> | |
| </div> | |
| </div> | |
| <a href="#" class="nav-link text-gray-700 hover:text-primary">Leistungen</a> | |
| <a href="#" class="nav-link text-gray-700 hover:text-primary">Über uns</a> | |
| <a href="#" class="nav-link text-gray-700 hover:text-primary">Karriere</a> | |
| <a href="#" class="nav-link text-gray-700 hover:text-primary">Presse</a> | |
| <a href="#" class="nav-link text-gray-700 hover:text-primary">Kontakt</a> | |
| </nav> | |
| <div class="flex items-center space-x-4"> | |
| <div class="flex space-x-2"> | |
| <a href="#" class="text-sm text-gray-600 hover:text-primary">EN</a> | |
| <span class="text-gray-300">|</span> | |
| <a href="#" class="text-sm text-gray-600 hover:text-primary">DE</a> | |
| </div> | |
| <button class="md:hidden text-gray-600"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Hero Section --> | |
| <section class="hero-gradient text-white pt-32 pb-20"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-3xl"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-6">RAUM FÜR INVESTMENTS</h1> | |
| <p class="text-xl mb-8">IMMOVATE ist Ihr verlässlicher Partner in der Immobilien- und Standortentwicklung. Seit 20 Jahren realisieren wir smarte und zukunftsweisende Immobilienprojekte.</p> | |
| <div class="flex flex-wrap gap-4"> | |
| <a href="#" class="btn-primary inline-block">Projekte entdecken</a> | |
| <a href="#" class="btn-secondary inline-block">Mehr erfahren</a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Project Slider --> | |
| <section class="py-16 bg-light"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Aktuelle Projekte</h2> | |
| <div class="project-slider py-8"> | |
| <!-- Slide 1 --> | |
| <div class="project-slide flex-shrink-0 w-full px-4"> | |
| <div class="bg-white rounded-lg shadow-lg overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-2/3 p-8"> | |
| <span class="text-accent font-bold">BUSINESS TOWER STYRIA</span> | |
| <h3 class="text-2xl font-bold my-4">8501 LIEBOCH</h3> | |
| <p class="mb-6">Innovativer Business Tower mit moderner Architektur und nachhaltigen Lösungen für zukunftsorientierte Unternehmen.</p> | |
| <a href="#" class="text-primary font-semibold flex items-center"> | |
| Projekt entdecken | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="md:w-1/3"> | |
| <img src="http://immovate.com/wp-content/uploads/2025/03/Headerbild-neues-Projekt.jpg" alt="Business Tower Styria" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Slide 2 --> | |
| <div class="project-slide flex-shrink-0 w-full px-4"> | |
| <div class="bg-white rounded-lg shadow-lg overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-2/3 p-8"> | |
| <span class="text-accent font-bold">HOTEL RADISSON RED VIENNA</span> | |
| <h3 class="text-2xl font-bold my-4">1020 WIEN</h3> | |
| <p class="mb-6">Modernes Hotel- und Studentenwohnprojekt im Herzen Wiens mit innovativer Architektur und nachhaltigen Konzepten.</p> | |
| <a href="#" class="text-primary font-semibold flex items-center"> | |
| Projekt entdecken | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="md:w-1/3"> | |
| <img src="http://immovate.com/wp-content/uploads/2023/03/Obere_Donaustrasse-18x3_Slider_Neu2.jpg" alt="Hotel Radisson Red Vienna" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Slide 3 --> | |
| <div class="project-slide flex-shrink-0 w-full px-4"> | |
| <div class="bg-white rounded-lg shadow-lg overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-2/3 p-8"> | |
| <span class="text-accent font-bold">JAKOMINI VERDE</span> | |
| <h3 class="text-2xl font-bold my-4">8010 GRAZ</h3> | |
| <p class="mb-6">Nachhaltiges Wohn- und Mixed-Use Projekt in Graz mit innovativen Konzepten für modernes Wohnen.</p> | |
| <a href="#" class="text-primary font-semibold flex items-center"> | |
| Projekt entdecken | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="md:w-1/3"> | |
| <img src="http://immovate.com/wp-content/uploads/2022/06/Jakomini_13x8_slider.jpg" alt="Jakomini Verde" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Slide 4 --> | |
| <div class="project-slide flex-shrink-0 w-full px-4"> | |
| <div class="bg-white rounded-lg shadow-lg overflow-hidden"> | |
| <div class="md:flex"> | |
| <div class="md:w-2/3 p-8"> | |
| <span class="text-accent font-bold">SCHLOSS SCHWANBERG</span> | |
| <h3 class="text-2xl font-bold my-4">8541 SCHWANBERG</h3> | |
| <p class="mb-6">Luxuriöses Hotel- und Resortprojekt mit historischem Charme und modernen Annehmlichkeiten.</p> | |
| <a href="#" class="text-primary font-semibold flex items-center"> | |
| Projekt entdecken | |
| <i class="fas fa-arrow-right ml-2"></i> | |
| </a> | |
| </div> | |
| <div class="md:w-1/3"> | |
| <img src="http://immovate.com/wp-content/uploads/2022/06/Schwanberg_13x8_slider.jpg" alt="Schloss Schwanberg" class="w-full h-full object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-8"> | |
| <a href="#" class="inline-block btn-primary">Alle Projekte ansehen</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-4">IMMOVATE Wertschöpfungskette</h2> | |
| <p class="text-center text-gray-600 mb-12">Alles aus einer Hand</p> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="service-card bg-light p-8 rounded-lg text-center"> | |
| <div class="w-20 h-20 bg-primary rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-search text-white text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Scouting & Transactions</h3> | |
| <p class="text-gray-600">Wir identifizieren und bewerten potenzielle Standorte und Immobilien für Ihre Investitionen.</p> | |
| </div> | |
| <div class="service-card bg-light p-8 rounded-lg text-center"> | |
| <div class="w-20 h-20 bg-primary rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-building text-white text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Development</h3> | |
| <p class="text-gray-600">Von der Konzeption bis zur Realisierung - wir entwickeln innovative Immobilienprojekte.</p> | |
| </div> | |
| <div class="service-card bg-light p-8 rounded-lg text-center"> | |
| <div class="w-20 h-20 bg-primary rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-cogs text-white text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Construction & Asset Management</h3> | |
| <p class="text-gray-600">Wir überwachen den Bauprozess und managen Ihre Immobilien nach Fertigstellung.</p> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="inline-block btn-primary">Alle Leistungen entdecken</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Section --> | |
| <section class="py-16 bg-primary text-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> | |
| <div> | |
| <div class="stats-number">20+</div> | |
| <p class="text-xl">Jahre Erfahrung</p> | |
| </div> | |
| <div> | |
| <div class="stats-number">150+</div> | |
| <p class="text-xl">Projekte realisiert</p> | |
| </div> | |
| <div> | |
| <div class="stats-number">50+</div> | |
| <p class="text-xl">Partnerunternehmen</p> | |
| </div> | |
| <div> | |
| <div class="stats-number">100%</div> | |
| <p class="text-xl">Kundenzufriedenheit</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonial Section --> | |
| <section class="py-16 bg-light"> | |
| <div class="container mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Was unsere Kunden sagen</h2> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="testimonial-card bg-white p-8 rounded-lg"> | |
| <div class="text-accent text-5xl mb-4">„</div> | |
| <p class="text-xl italic mb-6">Wir verstehen und leben Immobilie. Die Immobilie von Grund auf zu lesen und zu begreifen, ihr Potenzial zu erfassen und sie den Menschen als Lebens- und Arbeitsraum zu widmen, ist Vision und Ziel der Immovate.</p> | |
| <div class="flex items-center"> | |
| <div class="w-16 h-16 rounded-full overflow-hidden mr-4"> | |
| <img src="https://immovate.com/wp-content/uploads/2022/04/Gruppe-68@2x-Kopie.png" alt="Martin Kurschel" class="w-full h-full object-cover"> | |
| </div> | |
| <div> | |
| <h4 class="font-bold text-lg">Martin Kurschel</h4> | |
| <p class="text-gray-600">Gründer und CEO</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto text-center mb-12"> | |
| <h2 class="text-3xl font-bold mb-4">Kontaktieren Sie uns</h2> | |
| <p class="text-gray-600">Haben Sie Fragen zu unseren Projekten oder Dienstleistungen? Wir helfen Ihnen gerne weiter.</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 max-w-4xl mx-auto"> | |
| <div> | |
| <div class="bg-light p-8 rounded-lg"> | |
| <h3 class="text-xl font-bold mb-6">Kontaktinformationen</h3> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i class="fas fa-map-marker-alt text-primary mt-1 mr-4"></i> | |
| <p>Wipplingerstraße 1/1.DG<br>1010 Wien, Österreich</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-phone text-primary mr-4"></i> | |
| <p>+43 1 5320872</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-envelope text-primary mr-4"></i> | |
| <p>office@immovate.com</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <form class="space-y-4"> | |
| <div> | |
| <input type="text" placeholder="Ihr Name" class="w-full p-3 border border-gray-300 rounded"> | |
| </div> | |
| <div> | |
| <input type="email" placeholder="Ihre E-Mail" class="w-full p-3 border border-gray-300 rounded"> | |
| </div> | |
| <div> | |
| <textarea placeholder="Ihre Nachricht" rows="4" class="w-full p-3 border border-gray-300 rounded"></textarea> | |
| </div> | |
| <button type="submit" class="btn-primary w-full">Nachricht senden</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-dark text-white py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <img src="https://immovate.com/wp-content/uploads/2022/04/cropped-Gruppe-34@2x-1.png" alt="IMMOVATE Logo" class="h-12 mb-6"> | |
| <p class="text-gray-400">Ihr verlässlicher Partner in der Immobilien- und Standortentwicklung seit 20 Jahren.</p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Navigation</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Projekte</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Leistungen</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Über uns</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Presse</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Kontakt</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Rechtliches</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Impressum</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Datenschutz</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Disclaimer</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Cookie-Richtlinie</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Kontakt</h4> | |
| <p class="text-gray-400 mb-2">Wipplingerstraße 1/1.DG</p> | |
| <p class="text-gray-400 mb-2">1010 Wien, Österreich</p> | |
| <p class="text-gray-400 mb-2">Tel: +43 1 5320872</p> | |
| <p class="text-gray-400">E-Mail: office@immovate.com</p> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500"> | |
| <p>© IMMOVATE REALITA GMBH. Alle Rechte vorbehalten.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Cookie banner functionality | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const cookieBanner = document.getElementById('cookieBanner'); | |
| const acceptCookies = document.getElementById('acceptCookies'); | |
| const rejectCookies = document.getElementById('rejectCookies'); | |
| const customizeCookies = document.getElementById('customizeCookies'); | |
| // Show cookie banner after 1 second if not already accepted | |
| setTimeout(() => { | |
| if (!localStorage.getItem('cookiesAccepted')) { | |
| cookieBanner.classList.add('active'); | |
| } | |
| }, 1000); | |
| acceptCookies.addEventListener('click', function() { | |
| localStorage.setItem('cookiesAccepted', 'true'); | |
| cookieBanner.classList.remove('active'); | |
| }); | |
| rejectCookies.addEventListener('click', function() { | |
| localStorage.setItem('cookiesAccepted', 'false'); | |
| cookieBanner.classList.remove('active'); | |
| }); | |
| customizeCookies.addEventListener('click', function() { | |
| alert('Cookie-Einstellungen öffnen...'); | |
| }); | |
| // Project slider navigation | |
| const slider = document.querySelector('.project-slider'); | |
| let isDown = false; | |
| let startX; | |
| let scrollLeft; | |
| slider.addEventListener('mousedown', (e) => { | |
| isDown = true; | |
| startX = e.pageX - slider.offsetLeft; | |
| scrollLeft = slider.scrollLeft; | |
| }); | |
| slider.addEventListener('mouseleave', () => { | |
| isDown = false; | |
| }); | |
| slider.addEventListener('mouseup', () => { | |
| isDown = false; | |
| }); | |
| slider.addEventListener('mousemove', (e) => { | |
| if (!isDown) return; | |
| e.preventDefault(); | |
| const x = e.pageX - slider.offsetLeft; | |
| const walk = (x - startX) * 2; | |
| slider.scrollLeft = scrollLeft - walk; | |
| }); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=unknownfkboy/immovate-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |