-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3Dhomelibrary.html
More file actions
642 lines (563 loc) · 23.8 KB
/
Copy path3Dhomelibrary.html
File metadata and controls
642 lines (563 loc) · 23.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Important Notice: Metropolitan Trust Bank Closure</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #1a3a5f;
--secondary: #2c5282;
--accent: #c53030;
--warning: #e53e3e;
--light: #f8f9fa;
--dark: #1a202c;
--gray: #718096;
--light-gray: #e2e8f0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
color: var(--dark);
line-height: 1.6;
min-height: 100vh;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.container {
max-width: 900px;
width: 100%;
background: white;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
overflow: hidden;
margin: 20px;
border: 1px solid var(--light-gray);
}
.header {
background: linear-gradient(to right, var(--primary), var(--secondary));
color: white;
padding: 25px 30px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 4px solid var(--accent);
position: relative;
overflow: hidden;
}
.header::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
opacity: 0.1;
}
.logo {
display: flex;
align-items: center;
gap: 15px;
z-index: 1;
}
.logo-icon {
font-size: 2.5rem;
color: #ecc94b;
}
.logo-text {
font-size: 1.8rem;
font-weight: 600;
letter-spacing: -0.5px;
}
.status {
background: var(--accent);
padding: 8px 20px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
z-index: 1;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main-content {
padding: 35px;
}
.alert-banner {
background: #fffaf0;
border: 1px solid #ecc94b;
border-radius: 8px;
padding: 20px;
margin-bottom: 30px;
display: flex;
gap: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}
.alert-icon {
color: var(--warning);
font-size: 2.2rem;
min-width: 40px;
}
.announcement {
margin-bottom: 30px;
}
.announcement h1 {
color: var(--primary);
font-size: 2rem;
margin-bottom: 25px;
line-height: 1.3;
font-weight: 700;
}
.announcement p {
margin-bottom: 18px;
font-size: 1.1rem;
color: var(--dark);
}
.funds-notice {
background: #f0f7ff;
border-left: 4px solid var(--secondary);
padding: 25px;
border-radius: 0 8px 8px 0;
margin: 30px 0;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.funds-amount {
font-size: 2.2rem;
font-weight: 800;
color: var(--secondary);
margin: 15px 0;
letter-spacing: -1px;
}
.action-section {
background: #f8fafc;
border: 1px solid var(--light-gray);
border-radius: 8px;
padding: 25px;
margin: 35px 0;
}
.action-section h2 {
color: var(--primary);
margin-bottom: 25px;
font-size: 1.5rem;
font-weight: 700;
}
.timeline {
display: flex;
flex-direction: column;
position: relative;
margin: 40px 0;
}
.timeline::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 20px;
width: 4px;
background: var(--light-gray);
z-index: 1;
}
.timeline-step {
display: flex;
margin-bottom: 40px;
position: relative;
z-index: 2;
}
.timeline-step:last-child {
margin-bottom: 0;
}
.step-icon {
background: white;
border: 3px solid var(--secondary);
width: 44px;
height: 44px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: 700;
margin-right: 25px;
flex-shrink: 0;
font-size: 1.2rem;
color: var(--secondary);
position: relative;
}
.step-content {
flex: 1;
background: white;
border: 1px solid var(--light-gray);
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.step-content h3 {
color: var(--primary);
margin-bottom: 10px;
font-size: 1.2rem;
}
.step-content p {
color: var(--gray);
margin-bottom: 5px;
font-size: 1rem;
}
.step-duration {
display: inline-block;
background: #e6fffa;
color: #234e52;
padding: 3px 10px;
border-radius: 20px;
font-size: 0.85rem;
margin-top: 10px;
font-weight: 600;
}
.deadline {
background: #fff5f5;
padding: 25px;
border-radius: 8px;
text-align: center;
margin: 35px 0;
border: 1px solid #fed7d7;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
.deadline-text {
font-weight: 800;
color: var(--warning);
font-size: 1.4rem;
margin-bottom: 10px;
letter-spacing: -0.5px;
}
.contact {
display: flex;
flex-wrap: wrap;
gap: 25px;
margin-top: 40px;
}
.contact-box {
flex: 1;
min-width: 200px;
background: var(--light);
border: 1px solid var(--light-gray);
border-radius: 8px;
padding: 25px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}
.contact-box h3 {
color: var(--primary);
margin-bottom: 20px;
font-size: 1.3rem;
padding-bottom: 10px;
border-bottom: 2px solid var(--light-gray);
}
.contact-info {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 18px;
color: var(--dark);
}
.contact-icon {
color: var(--secondary);
min-width: 24px;
font-size: 1.2rem;
margin-top: 3px;
}
.footer {
background: var(--dark);
color: #a0aec0;
padding: 30px;
text-align: center;
font-size: 0.9rem;
}
.footer-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
margin: 20px 0;
}
.footer a {
color: #cbd5e0;
text-decoration: none;
font-weight: 500;
}
.footer a:hover {
color: white;
text-decoration: underline;
}
.copyright {
margin-top: 25px;
color: #718096;
font-size: 0.85rem;
}
.disclaimer {
background: #fff5f5;
border: 1px solid #fed7d7;
padding: 20px;
border-radius: 8px;
margin-top: 30px;
font-size: 0.9rem;
color: #718096;
line-height: 1.7;
}
.progress-container {
background: white;
border: 1px solid var(--light-gray);
border-radius: 8px;
padding: 25px;
margin: 30px 0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.progress-bar {
height: 12px;
background: var(--light-gray);
border-radius: 6px;
margin: 20px 0;
overflow: hidden;
position: relative;
}
.progress-fill {
height: 100%;
width: 25%;
background: linear-gradient(to right, var(--secondary), #4299e1);
border-radius: 6px;
position: relative;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.9; }
50% { opacity: 0.7; }
100% { opacity: 0.9; }
}
.progress-labels {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
color: var(--gray);
margin-top: 10px;
}
.progress-status {
text-align: center;
font-weight: 600;
color: var(--secondary);
margin-top: 10px;
font-size: 1.1rem;
}
@media (max-width: 768px) {
.header {
flex-direction: column;
text-align: center;
gap: 15px;
}
.logo {
justify-content: center;
}
.funds-amount {
font-size: 1.8rem;
}
.contact-box {
min-width: 100%;
}
.main-content {
padding: 25px;
}
.timeline-step {
flex-direction: column;
}
.step-icon {
margin-right: 0;
margin-bottom: 20px;
}
.timeline::before {
left: 22px;
}
}
</style>
</head>
<body>
<div class="container">
<header class="header">
<div class="logo">
<i class="fas fa-university logo-icon"></i>
<div class="logo-text">Metropolitan Trust Bank</div>
</div>
<div class="status">UNDER FDIC LIQUIDATION</div>
</header>
<main class="main-content">
<div class="alert-banner">
<i class="fas fa-exclamation-triangle alert-icon"></i>
<div>
<h3>URGENT ANNOUNCEMENT</h3>
<p>Please read this important message regarding the liquidation of Metropolitan Trust Bank.</p>
</div>
</div>
<section class="announcement">
<h1>Important Notice: Metropolitan Trust Bank Closure</h1>
<p>Dear Valued Customer,</p>
<p>It is with profound regret that we announce the closure of Metropolitan Trust Bank, effective June 11, 2025. Following our declaration of bankruptcy on June 5, 2025, federal regulators have appointed the Federal Deposit Insurance Corporation (FDIC) as receiver.</p>
<p>After 35 years of service, economic challenges and unprecedented market conditions have made it impossible for us to continue operations. This decision was not made lightly and comes after exhaustive efforts to secure the bank's future.</p>
<div class="funds-notice">
<p>Your account balance is protected by FDIC insurance:</p>
<p class="funds-amount">$25048 (25047.60 cents)</p>
<p>This amount will be securely transferred to your chosen financial institution. Please note that the transfer process will take approximately 30-45 business days to complete after verification.</p>
</div>
<p>We sincerely apologize for the inconvenience and concern this situation may cause. Our team is working diligently with FDIC representatives to ensure an orderly transition of your funds.</p>
</section>
<div class="progress-container">
<h3>Fund Transfer Progress</h3>
<div class="progress-bar">
<div class="progress-fill"></div>
</div>
<div class="progress-labels">
<span>Initiated</span>
<span>Verification</span>
<span>Processing</span>
<span>Completed</span>
</div>
<div class="progress-status">Verification in Progress (Estimated Completion: July 30, 2025)</div>
</div>
<div class="deadline">
<p class="deadline-text">ACTION REQUIRED BY JULY 1, 2025</p>
<p>To ensure uninterrupted access to your funds, please provide your new banking details by the deadline.</p>
</div>
<section class="action-section">
<h2>Fund Transfer Timeline & Process</h2>
<div class="timeline">
<div class="timeline-step">
<div class="step-icon">1</div>
<div class="step-content">
<h3>Account Verification</h3>
<p>Our liquidation team is currently verifying all account details and balances. This process ensures accuracy and security for all transfers.</p>
<div class="step-duration">7-10 business days</div>
</div>
</div>
<div class="timeline-step">
<div class="step-icon">2</div>
<div class="step-content">
<h3>New Bank Selection</h3>
<p>You must select a new financial institution and provide account details through our secure portal or by contacting our support team.</p>
<div class="step-duration">Deadline: July 1, 2025</div>
</div>
</div>
<div class="timeline-step">
<div class="step-icon">3</div>
<div class="step-content">
<h3>Regulatory Review</h3>
<p>The FDIC will review all transfer requests to ensure compliance with banking regulations and security protocols.</p>
<div class="step-duration">10-15 business days</div>
</div>
</div>
<div class="timeline-step">
<div class="step-icon">4</div>
<div class="step-content">
<h3>Funds Transfer</h3>
<p>Your funds will be electronically transferred to your new bank account. You'll receive confirmation when the transfer is complete.</p>
<div class="step-duration">5-10 business days</div>
</div>
</div>
<div class="timeline-step">
<div class="step-icon">5</div>
<div class="step-content">
<h3>Account Closure</h3>
<p>Your Metropolitan Trust Bank account will be formally closed, and you'll receive final documentation for your records.</p>
<div class="step-duration">3-5 business days</div>
</div>
</div>
</div>
</section>
<div class="disclaimer">
<p><strong>Important Notice:</strong> The transfer process typically takes 30-45 business days from the date of verification completion. If we do not receive your transfer instructions by July 1, 2025, your funds will be transferred to a holding account with the FDIC, where they will remain accessible but may require additional steps to retrieve. FDIC insurance covers accounts up to $250,000. Some delays may occur due to regulatory requirements or banking partner processing times.</p>
</div>
<section class="contact">
<div class="contact-box">
<h3>Customer Support</h3>
<div class="contact-info">
<i class="fas fa-phone contact-icon"></i>
<div>1-888-555-4362<br><small>Mon-Fri: 8am-8pm EST</small></div>
</div>
<div class="contact-info">
<i class="fas fa-envelope contact-icon"></i>
<div>transfersupport@metrobank-liquidation.com</div>
</div>
<div class="contact-info">
<i class="fas fa-lock contact-icon"></i>
<div>Secure Online Portal: portal.metrobank-liquidation.com</div>
</div>
<div class="contact-info">
<i class="fas fa-map-marker-alt contact-icon"></i>
<div>Liquidation Office: 245 Financial District, New York, NY 10004</div>
</div>
</div>
<div class="contact-box">
<h3>Regulatory Contacts</h3>
<div class="contact-info">
<i class="fas fa-landmark contact-icon"></i>
<div>FDIC Consumer Hotline: 1-877-275-3342</div>
</div>
<div class="contact-info">
<i class="fas fa-balance-scale contact-icon"></i>
<div>Federal Reserve Board: 1-202-452-3000</div>
</div>
<div class="contact-info">
<i class="fas fa-gavel contact-icon"></i>
<div>Bankruptcy Court: Case No. BK-2025-07265</div>
</div>
<div class="contact-info">
<i class="fas fa-user-shield contact-icon"></i>
<div>Consumer Financial Protection Bureau: 1-855-411-2372</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-links">
<a href="#">Liquidation FAQ</a>
<a href="#">Account Verification</a>
<a href="#">FDIC Insurance</a>
<a href="#">Transfer Process</a>
<a href="#">Secure Portal</a>
<a href="#">Court Documents</a>
</div>
<p class="copyright">© 2025 Metropolitan Trust Bank Liquidation Trust. All rights reserved. This institution is no longer accepting deposits or new accounts. Accounts are in the process of being closed under FDIC supervision. Case No. BK-2025-07265.</p>
</footer>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Update the progress bar with realistic values
const progressBar = document.querySelector('.progress-fill');
const progressStatus = document.querySelector('.progress-status');
// Simulate progress update
setTimeout(() => {
progressBar.style.width = '40%';
progressStatus.textContent = 'Verification Phase 2 (Estimated Completion: July 15, 2025)';
}, 2000);
// Add date to the announcement
const today = new Date();
const options = { year: 'numeric', month: 'long', day: 'numeric' };
const dateString = today.toLocaleDateString('en-US', options);
const dateElements = document.querySelectorAll('.current-date');
dateElements.forEach(el => {
el.textContent = dateString;
});
// Add a realistic note about transfer time
const fundsNotice = document.querySelector('.funds-notice');
const note = document.createElement('p');
note.innerHTML = '<i class="fas fa-info-circle"></i> <strong>Note:</strong> Transfers typically take 30-45 business days to complete after verification due to regulatory requirements and banking partner processing times.';
note.style.marginTop = '15px';
note.style.padding = '10px';
note.style.background = '#ebf8ff';
note.style.borderRadius = '6px';
note.style.borderLeft = '3px solid #4299e1';
fundsNotice.appendChild(note);
});
</script>
</body>
</html>