Help
RSS
API
Feed
Maltego
Contact
Domain > familypowerloan.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-08-08
3.5.133.207
(
ClassC
)
2025-09-27
3.5.129.21
(
ClassC
)
2025-09-28
3.5.131.119
(
ClassC
)
2026-01-06
3.5.130.23
(
ClassC
)
Port 80
HTTP/1.1 200 OKx-amz-id-2: Vn0FjeHa6MuMhXBASyJGFJ5JplCFnvO8/aoNg7hJEPxwh0iy+BSTpk5ojPzZkTf+uT3jWyeSmaox-amz-request-id: FHA1WEY9VYVEV92PDate: Tue, 06 Jan 2026 11:05:05 GMTLast-Modified: Wed, 16 Jul 2025 20:36:55 GMTETag: e8dcd02e1a4af5cae033a3693d57916aContent-Type: text/htmlContent-Length: 20420Server: AmazonS3 !DOCTYPE html>html langen>head> meta charsetUTF-8> meta nameviewport contentwidthdevice-width, initial-scale1.0> title>Family Power Mortgage/title> script srchttps://cdn.tailwindcss.com>/script> link hrefhttps://fonts.googleapis.com/css2?familyInter:wght@400;600;700;800&displayswap relstylesheet> style> body { font-family: Inter, sans-serif; background-color: #f0f4f8; /* Light background */ color: #333; overflow-x: hidden; /* Prevent horizontal scroll */ } .container { max-width: 1200px; margin: 0 auto; padding: 1.5rem; } .section-title { font-size: 2.5rem; font-weight: 700; color: #012b0f; /* Dark green for titles */ margin-bottom: 1.5rem; text-align: center; position: relative; /* Added for pseudo-element underline */ padding-bottom: 0.75rem; /* Space for underline */ } /* Underline effect for section titles */ .section-title::after { content: ; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60px; /* Shorter underline */ height: 3px; background-color: #55b24d; /* Match btn-primary color */ border-radius: 2px; } .card { background-color: #ffffff; border-radius: 1rem; padding: 2rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); margin-bottom: 2rem; transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects for cards */ } .card:hover { transform: translateY(-5px); /* Lift card on hover */ box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15), 0 6px 10px -2px rgba(0, 0, 0, 0.08); } .btn-primary { background-color: #55b24d; /* Light green for primary button */ color: #ffffff; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 600; transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; } .btn-primary:hover { background-color: #459a3d; /* Slightly darker light green on hover */ transform: translateY(-2px); /* Slight lift */ box-shadow: 0 8px 15px rgba(85, 178, 77, 0.4); } .text-highlight { color: #012b0f; /* Dark green for highlights */ font-weight: 600; } .image-placeholder { border-radius: 0.75rem; display: flex; justify-content: center; align-items: center; color: #718096; font-size: 1.25rem; text-align: center; min-height: 200px; /* Ensure visibility */ } .image-placeholder img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 0.75rem; box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08); border: 2px solid #e2e8f0; background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Adjusted transition duration */ padding: 0.5rem; } .image-placeholder img:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.12); border-color: #55b24d; } /* Modal styles */ .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh; overflow: auto; background: rgba(0,0,0,0.7); justify-content: center; align-items: center; opacity: 0; /* Initial state for transition */ transition: opacity 0.3s ease-in-out; pointer-events: none; /* Allows clicks to pass through when not active */ } .modal.active { display: flex; opacity: 1; pointer-events: all; } .modal-content { max-width: 90vw; max-height: 90vh; border-radius: 1rem; box-shadow: 0 10px 40px rgba(0,0,0,0.3); background: #fff; position: relative; padding: 1rem; display: flex; flex-direction: column; align-items: center; transform: scale(0.95); /* Initial scale for transition */ transition: transform 0.3s ease-in-out; } .modal.active .modal-content { transform: scale(1); /* Final scale when active */ } .modal-content img { max-width: 98vw; max-height: 85vh; /* Adjusted for caption */ min-width: 38vw; min-height: 34vh; border-radius: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.12); border: 3px solid #55b24d; background: #fff; padding: 0; } .modal-close { position: absolute; top: 0.5rem; right: 1rem; font-size: 2rem; color: #333; background: none; border: none; cursor: pointer; z-index: 10; transition: transform 0.2s ease, color 0.2s ease; } .modal-close:hover { transform: rotate(90deg); /* Spin on hover */ color: #e74c3c; /* Red on hover */ } /* Navigation hover underline */ .nav-link-underline { position: relative; } .nav-link-underline::after { content: ; position: absolute; bottom: -3px; /* Adjust as needed */ left: 0; width: 0; height: 2px; background-color: white; transition: width 0.3s ease; } .nav-link-underline:hover::after { width: 100%; } /* --- Animations --- */ @keyframes fadeInMoveUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-in-up { animation: fadeInMoveUp 0.8s ease-out forwards; opacity: 0; /* Hidden by default */ } .animate-fade-in-up.delay-200 { animation-delay: 0.2s; } .animate-fade-in-up.delay-400 { animation-delay: 0.4s; } @keyframes pulseEmphasis { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.03); opacity: 0.9; } 100% { transform: scale(1); opacity: 1; } } .animate-pulse-emphasis { animation: pulseEmphasis 2s infinite ease-in-out; } @keyframes bounceSubtle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } .animate-bounce-subtle { animation: bounceSubtle 2s infinite ease-in-out; } /* Initial state for scroll-triggered fade-in */ .fade-in-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; /* Smooth transition */ } /* Class added by JS when element is visible */ .fade-in-on-scroll.is-visible { opacity: 1; transform: translateY(0); } /style>/head>body classleading-normal tracking-normal> div idimageModal classmodal roledialog aria-modaltrue aria-labelledbymodalCaption> div classmodal-content> button classmodal-close idmodalCloseBtn aria-labelClose image viewer>×/button> img idmodalImg src altLarge view of image> div idmodalCaption classmt-2 text-center text-gray-700>/div> /div> /div> header classbg-gradient-to-r from-#012b0f to-#31572c text-white py-6 shadow-lg rounded-b-3xl> div classcontainer flex flex-col md:flex-row justify-between items-center> a href# classtext-4xl font-bold mb-4 md:mb-0 hover:text-gray-200 transition duration-300>Family Power Mortgage/a> !-- nav> ul classflex space-x-6> li>a href#challenges classhover:text-gray-200 transition duration-300 nav-link-underline>Challenges/a>/li> li>a href#wealth classhover:text-gray-200 transition duration-300 nav-link-underline>Wealth Building/a>/li> li>a href#family-power classhover:text-gray-200 transition duration-300 nav-link-underline>Family Power/a>/li> li>a href#how-it-works classhover:text-gray-200 transition duration-300 nav-link-underline>How It Works/a>/li> /ul> /nav> --> /div> /header> section classbg-white py-20 text-center rounded-b-3xl shadow-md mb-8> div classcontainer> h2 classtext-5xl font-extrabold text-gray-900 mb-6 leading-tight animate-fade-in-up>Empowering First-Time Homebuyers/h2> p classtext-xl text-gray-600 mb-8 max-w-3xl mx-auto animate-fade-in-up delay-200> Navigating the path to homeownership can be challenging, especially for young adults. Discover how Family Power Mortgages are revolutionizing the journey. /p> a href#family-power classbtn-primary inline-block shadow-lg animate-fade-in-up delay-400>Learn More About Family Power/a> /div> /section> section idchallenges classpy-16> div classcontainer> h2 classsection-title>The Real Struggles of First-Time Homebuyers Under 35/h2> div classgrid md:grid-cols-2 gap-8> div classcard fade-in-on-scroll> h3 classtext-2xl font-semibold mb-4 text-#012b0f>Sky-High Costs & Affordability Worries/h3> p classtext-gray-700 mb-4> Homes are expensive, and prices have only gone up. Most young buyers say that span classtext-highlight>affording the down payment and closing costs/span> is their top concern, with span classtext-highlight>40% citing this as a major barrier/span>. /p> p classtext-gray-700 mb-4> Just as daunting, about span classtext-highlight>39% say simply saving enough for a down payment is a huge hurdle/span>. The increased cost of living, rising home prices, and climbing mortgage rates (hovering near 7% for many) have caused a lot of frustration. /p> p classtext-gray-700> And it’s not just about the purchase price. Monthly mortgage payments, property taxes, and homeowners’ insurance all pile on, making it tough to budget and plan confidently for the future. /p> /div> div classcard fade-in-on-scroll> h3 classtext-2xl font-semibold mb-4 text-#012b0f>Debt & Financial Pressures/h3> p classtext-gray-700 mb-4> Debt is a big part of the story for those under 35. High rent, student loans, credit card debt, and even car loans chip away at your ability to save. /p> p classtext-gray-700 mb-4> In fact, about span classtext-highlight>40% of first timers say student loan debt is a key reason they struggle to buy a home/span>. Top that off with a high-inflation environment, and every dollar feels stretched further than ever. /p> div classimage-placeholder w-full h-64> img src./imgs/3.png data-large-src./imgs/3.png altFirst Time Home Buyer Challenges classclickable-image stylecursor:zoom-in;> /div> /div> /div> /div> /section> section idwealth classbg-gray-100 py-2> div classcontainer> h2 classsection-title>Homeownership: The Path to Building Wealth/h2> div classcard text-center fade-in-on-scroll> p classtext-xl text-gray-700 mb-4> The largest source of wealth for Americans is responsible home ownership. /p> p classtext-2xl font-bold text-#012b0f mb-6 animate-pulse-emphasis> Median Net Worth of homeowners is forty times higher than renters. /p> p classtext-gray-700 mb-4> Regardless of homeowner age, over the last fifty years, responsible home ownership has been the path to building wealth. /p> p classtext-gray-700 italic> Responsible home ownership means that you can afford the monthly mortgage payments, taxes, homeowner insurance and repairs. /p> div classimage-placeholder w-full h-64 mt-8> img src./imgs/2.jpg data-large-src./imgs/2.jpg altUnder 35 Home Ownership Rate 38% vs US 66% overall classclickable-image stylecursor:zoom-in;> /div> /div> /div> /section> section idfamily-power classpy-16> div classcontainer> h2 classsection-title>What are Family Power Mortgages?/h2> div classcard fade-in-on-scroll> p classtext-gray-700 mb-4> Family Power Mortgage is offered by span classtext-highlight>innovative financial institutions/span>. These mortgages are span classtext-highlight>not sold into the traditional secondary market/span> of FreddieMac, FannieMae and GinnieMae. /p> p classtext-gray-700 mb-4> This means span classtext-highlight>more flexibility, innovation, less bureaucracy and more ‘make sense’ underwriting/span>. /p> p classtext-gray-700 mb-4> This flexibility is at the core of Family Power: helping borrowers and their families work together to make home ownership more attainable. /p> p classtext-gray-700 font-semibold animate-bounce-subtle> Parents, grandparents, siblings, aunts, uncles, companies and churches can help. /p> /div> /div> /section> section idhow-it-works classbg-gray-100 py-2> div classcontainer> h2 classsection-title>How Family Power Works/h2> div classcard fade-in-on-scroll> p classtext-gray-700 mb-4> Family Power is traditional in that the first-time homebuyer owns the home and holds the Deed to their property. /p> p classtext-gray-700 mb-6> Instead of expensive Private Mortgage Insurance, Loan Level Price Adjusters and too many fees to count, Family Power lets your family and extended family help in a variety of ways: /p> div classimage-placeholder w-full h-96> img src./imgs/4.png data-large-src./imgs/4.png altHarnessing the Power of Families Chart classclickable-image stylecursor:zoom-in;> /div> /div> /div> /section> footer classbg-#012b0f text-white py-10 text-center rounded-t-3xl shadow-inner> div classcontainer> h3 classtext-3xl font-bold mb-4 animate-fade-in-up>Ready to Explore Family Power?/h3> p classtext-lg mb-8 animate-fade-in-up delay-200>Connect with innovative financial institutions offering this flexible mortgage solution./p> a hrefhttps://www.teraverde.com/contact-us/ classbtn-primary bg-white text-#012b0f hover:bg-gray-200 inline-block shadow-lg animate-fade-in-up delay-400>Contact Us/a> p classmt-8 text-sm>© 2025 Family Power Mortgage. All rights reserved./p> /div> /footer> script> document.addEventListener(DOMContentLoaded, function() { // --- Modal Logic for Images --- const modal document.getElementById(imageModal); const modalImg document.getElementById(modalImg); const modalCaption document.getElementById(modalCaption); const closeBtn document.getElementById(modalCloseBtn); const images document.querySelectorAll(.clickable-image); images.forEach(img > { img.addEventListener(click, function() { modal.classList.add(active); // Use data-large-src for high-res images in modal, fallback to src modalImg.src this.dataset.largeSrc || this.src; modalImg.alt this.alt; modalCaption.textContent this.alt; // Prevent background scrolling when modal is open document.body.style.overflow hidden; }); }); const closeModal () > { modal.classList.remove(active); modalImg.src ; // Clear image src modalCaption.textContent ; // Clear caption document.body.style.overflow ; // Restore body scrolling }; closeBtn.addEventListener(click, closeModal); // Close modal on outside click modal.addEventListener(click, function(e) { if (e.target modal) { closeModal(); } }); // Close modal on Escape key document.addEventListener(keydown, function(e) { if (e.key Escape && modal.classList.contains(active)) { closeModal(); } }); // --- Intersection Observer for Scroll Reveal Animations --- const fadeInElements document.querySelectorAll(.fade-in-on-scroll); const observerOptions { root: null, // viewport rootMargin: 0px, threshold: 0.1 // Trigger when 10% of the element is visible }; const observer new IntersectionObserver((entries, observer) > { entries.forEach(entry > { if (entry.isIntersecting) { entry.target.classList.add(is-visible); // Add class to trigger animation observer.unobserve(entry.target); // Stop observing once animated } }); }, observerOptions); fadeInElements.forEach(element > { // Add initial state classes before observing element.classList.add(opacity-0, translate-y-20); // Tailwind classes for initial hidden state observer.observe(element); }); // --- Smooth Scrolling for Navigation Links --- document.querySelectorAll(ahref^#).forEach(anchor > { anchor.addEventListener(click, function (e) { e.preventDefault(); document.querySelector(this.getAttribute(href)).scrollIntoView({ behavior: smooth }); }); }); }); /script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]