-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1557 lines (1516 loc) · 120 KB
/
index.html
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
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Newsers - Free HTML Magazine Template</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Google Web Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@100;600;800&display=swap" rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!-- Spinner Start -->
<div id="spinner" class="show w-100 vh-100 bg-white position-fixed translate-middle top-50 start-50 d-flex align-items-center justify-content-center">
<div class="spinner-grow text-primary" role="status"></div>
</div>
<!-- Spinner End -->
<!-- Navbar start -->
<div class="container-fluid sticky-top px-0">
<div class="container-fluid topbar bg-dark d-none d-lg-block">
<div class="container px-0">
<div class="topbar-top d-flex justify-content-between flex-lg-wrap">
<div class="top-info flex-grow-0">
<span class="rounded-circle btn-sm-square bg-primary me-2">
<i class="fas fa-bolt text-white"></i>
</span>
<div class="pe-2 me-3 border-end border-white d-flex align-items-center">
<p class="mb-0 text-white fs-6 fw-normal">Trending</p>
</div>
<div class="overflow-hidden" style="width: 735px;">
<div id="note" class="ps-2">
<img src="img/features-fashion.jpg" class="img-fluid rounded-circle border border-3 border-primary me-2" style="width: 30px; height: 30px;" alt="">
<a href="#"><p class="text-white mb-0 link-hover">Newsan unknown printer took a galley of type andscrambled Newsan.</p></a>
</div>
</div>
</div>
<div class="top-link flex-lg-wrap">
<i class="fas fa-calendar-alt text-white border-end border-secondary pe-2 me-2"> <span class="text-body">Tuesday, Sep 12, 2024</span></i>
<div class="d-flex icon">
<p class="mb-0 text-white me-2">Follow Us:</p>
<a href="" class="me-2"><i class="fab fa-facebook-f text-body link-hover"></i></a>
<a href="" class="me-2"><i class="fab fa-twitter text-body link-hover"></i></a>
<a href="" class="me-2"><i class="fab fa-instagram text-body link-hover"></i></a>
<a href="" class="me-2"><i class="fab fa-youtube text-body link-hover"></i></a>
<a href="" class="me-2"><i class="fab fa-linkedin-in text-body link-hover"></i></a>
<a href="" class="me-2"><i class="fab fa-skype text-body link-hover"></i></a>
<a href="" class=""><i class="fab fa-pinterest-p text-body link-hover"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid bg-light">
<div class="container px-0">
<nav class="navbar navbar-light navbar-expand-xl">
<a href="index.html" class="navbar-brand mt-3">
<p class="text-primary display-6 mb-2" style="line-height: 0;">Newsers</p>
<small class="text-body fw-normal" style="letter-spacing: 12px;">Nespaper</small>
</a>
<button class="navbar-toggler py-2 px-3" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="fa fa-bars text-primary"></span>
</button>
<div class="collapse navbar-collapse bg-light py-3" id="navbarCollapse">
<div class="navbar-nav mx-auto border-top">
<a href="index.html" class="nav-item nav-link active">Home</a>
<a href="detail-page.html" class="nav-item nav-link">Detail Page</a>
<a href="404.html" class="nav-item nav-link">404 Page</a>
<div class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">Dropdown</a>
<div class="dropdown-menu m-0 bg-secondary rounded-0">
<a href="#" class="dropdown-item">Dropdown 1</a>
<a href="#" class="dropdown-item">Dropdown 2</a>
<a href="#" class="dropdown-item">Dropdown 3</a>
<a href="#" class="dropdown-item">Dropdown 4</a>
</div>
</div>
<a href="contact.html" class="nav-item nav-link">Contact Us</a>
</div>
<div class="d-flex flex-nowrap border-top pt-3 pt-xl-0">
<div class="d-flex">
<img src="img/weather-icon.png" class="img-fluid w-100 me-2" alt="">
<div class="d-flex align-items-center">
<strong class="fs-4 text-secondary">31°C</strong>
<div class="d-flex flex-column ms-2" style="width: 150px;">
<span class="text-body">NEW YORK,</span>
<small>Mon. 10 jun 2024</small>
</div>
</div>
</div>
<button class="btn-search btn border border-primary btn-md-square rounded-circle bg-white my-auto" data-bs-toggle="modal" data-bs-target="#searchModal"><i class="fas fa-search text-primary"></i></button>
</div>
</div>
</nav>
</div>
</div>
</div>
<!-- Navbar End -->
<!-- Modal Search Start -->
<div class="modal fade" id="searchModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-fullscreen">
<div class="modal-content rounded-0">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Search by keyword</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body d-flex align-items-center">
<div class="input-group w-75 mx-auto d-flex">
<input type="search" class="form-control p-3" placeholder="keywords" aria-describedby="search-icon-1">
<span id="search-icon-1" class="input-group-text p-3"><i class="fa fa-search"></i></span>
</div>
</div>
</div>
</div>
</div>
<!-- Modal Search End -->
<!-- Features Start -->
<div class="container-fluid features mb-5">
<div class="container py-5">
<div class="row g-4">
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="row g-4 align-items-center features-item">
<div class="col-4">
<div class="rounded-circle position-relative">
<div class="overflow-hidden rounded-circle">
<img src="img/features-sports-1.jpg" class="img-zoomin img-fluid rounded-circle w-100" alt="">
</div>
<span class="rounded-circle border border-2 border-white bg-primary btn-sm-square text-white position-absolute" style="top: 10%; right: -10px;">3</span>
</div>
</div>
<div class="col-8">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2"> Technology</p>
<a href="#" class="h6">
Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem
</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> December 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="row g-4 align-items-center features-item">
<div class="col-4">
<div class="rounded-circle position-relative">
<div class="overflow-hidden rounded-circle">
<img src="img/features-technology.jpg" class="img-zoomin img-fluid rounded-circle w-100" alt="">
</div>
<span class="rounded-circle border border-2 border-white bg-primary btn-sm-square text-white position-absolute" style="top: 10%; right: -10px;">3</span>
</div>
</div>
<div class="col-8">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Technology</p>
<a href="#" class="h6">
Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem
</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> December 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="row g-4 align-items-center features-item">
<div class="col-4">
<div class="rounded-circle position-relative">
<div class="overflow-hidden rounded-circle">
<img src="img/features-fashion.jpg" class="img-zoomin img-fluid rounded-circle w-100" alt="">
</div>
<span class="rounded-circle border border-2 border-white bg-primary btn-sm-square text-white position-absolute" style="top: 10%; right: -10px;">3</span>
</div>
</div>
<div class="col-8">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Fashion</p>
<a href="#" class="h6">
Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem
</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> December 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-lg-6 col-xl-3">
<div class="row g-4 align-items-center features-item">
<div class="col-4">
<div class="rounded-circle position-relative">
<div class="overflow-hidden rounded-circle">
<img src="img/features-life-style.jpg" class="img-zoomin img-fluid rounded-circle w-100" alt="">
</div>
<span class="rounded-circle border border-2 border-white bg-primary btn-sm-square text-white position-absolute" style="top: 10%; right: -10px;">3</span>
</div>
</div>
<div class="col-8">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Life Style</p>
<a href="#" class="h6">
Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem
</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> December 9, 2024</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Features End -->
<!-- Main Post Section Start -->
<div class="container-fluid py-5">
<div class="container py-5">
<div class="row g-4">
<div class="col-lg-7 col-xl-8 mt-0">
<div class="position-relative overflow-hidden rounded">
<img src="img/news-1.jpg" class="img-fluid rounded img-zoomin w-100" alt="">
<div class="d-flex justify-content-center px-4 position-absolute flex-wrap" style="bottom: 10px; left: 0;">
<a href="#" class="text-white me-3 link-hover"><i class="fa fa-clock"></i> 06 minute read</a>
<a href="#" class="text-white me-3 link-hover"><i class="fa fa-eye"></i> 3.5k Views</a>
<a href="#" class="text-white me-3 link-hover"><i class="fa fa-comment-dots"></i> 05 Comment</a>
<a href="#" class="text-white link-hover"><i class="fa fa-arrow-up"></i> 1.5k Share</a>
</div>
</div>
<div class="border-bottom py-3">
<a href="#" class="display-4 text-dark mb-0 link-hover">Why the CEO Job Is Broken: The Overcompensation Problem</a>
</div>
<p class="mt-3 mb-4">CEOs are overcompensated, and this creates significant financial and operational problems in both public and private companies. CEOs weren’t always the highest-paid positions.
When I first entered the tech field, one of my jobs was managing compensation, and some of our sales reps made significantly more than the founding CEO. Granted, founders had founder stock, which eventually raised the CEO’s compensation when that stock was sold. But unlike today, CEO compensation wasn’t massively higher than that of other executives. Today’s CEOs are overcompensated, and that leads to three big problems:
The disparity creates friction among employees who feel they are doing the work while the CEO gets all the rewards. This situation is particularly problematic when a CEO institutes a layoff or salary reduction plan, and the employees feel they are being treated unfairly, given the CEO, even with salary cuts, is making crazy money. This reduces loyalty to the CEO, making the company less efficient and key employees less likely to remain with the company.
The CEO is motivated to acquire things that, in turn, need to be managed, detracting from doing the job they are paid to do. Some CEOs have multiple mansions, yachts, and rare car collections that are all enviable, but these things have to be managed and take away time from the CEO’s ability to do the job they were hired for. This additionally exacerbates the feeling in the rank and file that the CEO is taking advantage of them, particularly when cutbacks occur.
This overcompensation can convey a feeling that the CEO can do whatever they want. They are so used to having crazy money and extreme authority that they get the idea that rules don’t apply to them and discover the hard way that some rules do. CEOs getting fired for misogyny, mishandling of company assets, and other types of misbehavior are common and very disruptive to the company.
The Advantage Enjoyed by Founders
Successful founders tend to prioritize the company and often aren’t known for excessive spending. This doesn’t mean they don’t sometimes spend excessively (Bill Gates did build a hotel of a house and then regretted it), but their possessions don’t significantly degrade their focus on their company and people.
So, while I do think excessive compensation degrades their performance, it doesn’t seem to do so in a material way because their job and hobby are both the company and their true passion, and thus, they are able to outperform their more compensation-based peers.
Founders also know the company more intimately because they directed its construction. They know better than anyone what the company is capable of and can better set an achievable vision for the firm’s future. Hired CEOs may never truly understand what a firm is capable of and avoid “the vision thing” altogether because they don’t want to be seen as failures.
The Succession Problem With Founders
When a founder leaves, a company seems to lose its way. I was one of the folks who studied IBM’s decline and near collapse, and it was clear that when Thomas Watson Jr. left, IBM started to die. Interestingly, it didn’t start to die when Thomas Watson Sr. left because Jr. effectively took his father’s advantages and enhanced them, as he’d been groomed to do that.
Still, even though I’d argue IBM has the best internal CEO training program and deepest bench of potential CEOs than any other company, it had to go outside that structure once, reset, and then rebuild because this “founder” capability was lost in transition.
Corporations are supposed to be eternal, though Founder CEOs don’t always want them to be because they don’t want to be overshadowed by their successor. Watson Sr. was one of the exceptions since he, as most fathers should, seemed to want his son to be even more successful than he was.
Succession just doesn’t seem to be a priority in most firms. Most CEOs seem more worried that their successor will be selected prematurely — and for good reason, because that often happens, which conflicts with a good succession process.
</p>
<div class="bg-light p-4 rounded">
<div class="news-2">
<h3 class="mb-4">Top Story</h3>
</div>
<div class="row g-4 align-items-center">
<div class="col-md-6">
<div class="rounded overflow-hidden">
<img src="img/news-2.jpg" class="img-fluid rounded img-zoomin w-100" alt="">
</div>
</div>
<div class="col-md-6">
<div class="d-flex flex-column">
<a href="#" class="h3">Stoneman Clandestine Ukrainian claims successes against Russian.</a>
<p class="mb-0 fs-5"><i class="fa fa-clock"> 06 minute read</i> </p>
<p class="mb-0 fs-5"><i class="fa fa-eye"> 3.5k Views</i></p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-5 col-xl-4">
<div class="bg-light rounded p-4 pt-0">
<div class="row g-4">
<div class="col-12">
<div class="rounded overflow-hidden">
<img src="img/news-3.jpg" class="img-fluid rounded img-zoomin w-100" alt="">
</div>
</div>
<div class="col-12">
<div class="d-flex flex-column">
<a href="#" class="h4 mb-2">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem</a>
<p class="fs-5 mb-0"><i class="fa fa-clock"> 06 minute read</i> </p>
<p class="fs-5 mb-0"><i class="fa fa-eye"> 3.5k Views</i></p>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-3.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<a href="#" class="h6">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem</a>
<small><i class="fa fa-clock"> 06 minute read</i> </small>
<small><i class="fa fa-eye"> 3.5k Views</i></small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-4.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<a href="#" class="h6">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem</a>
<small><i class="fa fa-clock"> 06 minute read</i> </small>
<small><i class="fa fa-eye"> 3.5k Views</i></small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-5.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<a href="#" class="h6">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem</a>
<small><i class="fa fa-clock"> 06 minute read</i> </small>
<small><i class="fa fa-eye"> 3.5k Views</i></small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-6.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<a href="#" class="h6">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem</a>
<small><i class="fa fa-clock"> 06 minute read</i> </small>
<small><i class="fa fa-eye"> 3.5k Views</i></small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<a href="#" class="h6">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest ThreatWhy the CEO Job Is Broken: The Overcompensation Problem</a>
<small><i class="fa fa-clock"> 06 minute read</i> </small>
<small><i class="fa fa-eye"> 3.5k Views</i></small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<a href="#" class="h6">How AI Could Have Prevented the Key Bridge Collapse</a>
<small><i class="fa fa-clock"> 06 minute read</i> </small>
<small><i class="fa fa-eye"> 3.5k Views</i></small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Main Post Section End -->
<!-- Banner Start -->
<div class="container-fluid py-5 my-5" style="background: linear-gradient(rgba(202, 203, 185, 1), rgba(202, 203, 185, 1));">
<div class="container">
<div class="row g-4 align-items-center">
<div class="col-lg-7">
<h1 class="mb-4 text-primary">Newsers</h1>
<h1 class="mb-4">Get Every Weekly Updates</h1>
<p class="text-dark mb-4 pb-2">Why the CEO Job Is Broken: The Overcompensation Problem and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
</p>
<div class="position-relative mx-auto">
<input class="form-control w-100 py-3 rounded-pill" type="email" placeholder="Your Busines Email">
<button type="submit" class="btn btn-primary py-3 px-5 position-absolute rounded-pill text-white h-100" style="top: 0; right: 0;">Subscribe Now</button>
</div>
</div>
<div class="col-lg-5">
<div class="rounded">
<img src="img/banner-img.jpg" class="img-fluid rounded w-100 rounded" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- Banner End -->
<!-- Latest News Start -->
<div class="container-fluid latest-news py-5">
<div class="container py-5">
<h2 class="mb-4">Latest News</h2>
<div class="latest-news-carousel owl-carousel">
<div class="latest-news-item">
<div class="bg-light rounded">
<div class="rounded-top overflow-hidden">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded-top w-100" alt="">
</div>
<div class="d-flex flex-column p-4">
<a href="#" class="h4">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<div class="d-flex justify-content-between">
<a href="#" class="small text-body link-hover">by Willum Skeem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="latest-news-item">
<div class="bg-light rounded">
<div class="rounded-top overflow-hidden">
<img src="img/news-6.jpg" class="img-zoomin img-fluid rounded-top w-100" alt="">
</div>
<div class="d-flex flex-column p-4">
<a href="#" class="h4">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<div class="d-flex justify-content-between">
<a href="#" class="small text-body link-hover">by Willum Skeem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="latest-news-item">
<div class="bg-light rounded">
<div class="rounded-top overflow-hidden">
<img src="img/news-3.jpg" class="img-zoomin img-fluid rounded-top w-100" alt="">
</div>
<div class="d-flex flex-column p-4">
<a href="#" class="h4">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<div class="d-flex justify-content-between">
<a href="#" class="small text-body link-hover">by Willum Skeem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="latest-news-item">
<div class="bg-light rounded">
<div class="rounded-top overflow-hidden">
<img src="img/news-4.jpg" class="img-zoomin img-fluid rounded-top w-100" alt="">
</div>
<div class="d-flex flex-column p-4">
<a href="#" class="h4">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<div class="d-flex justify-content-between">
<a href="#" class="small text-body link-hover">by Willum Skeem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="latest-news-item">
<div class="bg-light rounded">
<div class="rounded-top overflow-hidden">
<img src="img/news-5.jpg" class="img-zoomin img-fluid rounded-top w-100" alt="">
</div>
<div class="d-flex flex-column p-4">
<a href="#" class="h4 ">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<div class="d-flex justify-content-between">
<a href="#" class="small text-body link-hover">by Willum Skeem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Latest News End -->
<!-- Most Populer News Start -->
<div class="container-fluid populer-news py-5">
<div class="container py-5">
<div class="tab-class mb-4">
<div class="row g-4">
<div class="col-lg-8 col-xl-9">
<div class="d-flex flex-column flex-md-row justify-content-md-between border-bottom mb-4">
<h1 class="mb-4">What’s New</h1>
<ul class="nav nav-pills d-inline-flex text-center">
<li class="nav-item mb-3">
<a class="d-flex py-2 bg-light rounded-pill active me-2" data-bs-toggle="pill" href="#tab-1">
<span class="text-dark" style="width: 100px;">Sports</span>
</a>
</li>
<li class="nav-item mb-3">
<a class="d-flex py-2 bg-light rounded-pill me-2" data-bs-toggle="pill" href="#tab-2">
<span class="text-dark" style="width: 100px;">Magazine</span>
</a>
</li>
<li class="nav-item mb-3">
<a class="d-flex py-2 bg-light rounded-pill me-2" data-bs-toggle="pill" href="#tab-3">
<span class="text-dark" style="width: 100px;">Politics</span>
</a>
</li>
<li class="nav-item mb-3">
<a class="d-flex py-2 bg-light rounded-pill me-2" data-bs-toggle="pill" href="#tab-4">
<span class="text-dark" style="width: 100px;">Technology</span>
</a>
</li>
<li class="nav-item mb-3">
<a class="d-flex py-2 bg-light rounded-pill me-2" data-bs-toggle="pill" href="#tab-5">
<span class="text-dark" style="width: 100px;">Fashion</span>
</a>
</li>
</ul>
</div>
<div class="tab-content mb-4">
<div id="tab-1" class="tab-pane fade show p-0 active">
<div class="row g-4">
<div class="col-lg-8">
<div class="position-relative rounded overflow-hidden">
<img src="img/news-1.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
<div class="position-absolute text-white px-4 py-2 bg-primary rounded" style="top: 20px; right: 20px;">
Sports
</div>
</div>
<div class="my-4">
<a href="#" class="h4">Ransomware Gangs Targeting Backups To Maximize Payoffs</a>
</div>
<div class="d-flex justify-content-between">
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-clock"></i> 06 minute read</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-eye"></i> 3.5k Views</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-comment-dots"></i> 05 Comment</a>
<a href="#" class="text-dark link-hover"><i class="fa fa-arrow-up"></i> 1.5k Share</a>
</div>
<p class="my-4">Ransomware Gangs Targeting Backups To Maximize Payoffs
</p>
</div>
<div class="col-lg-4">
<div class="row g-4">
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-3.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2"> Technology</p>
<a href="#" class="h6">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest Threat.</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-4.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Sports</p>
<a href="#" class="h6">Ransomware Gangs Targeting Backups To Maximize Payoffs</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-5.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2"> Technology</p>
<a href="#" class="h6">How AI Could Have Prevented the Key Bridge Collapse</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-6.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2"> Technology</p>
<a href="#" class="h6">The DOJ’s Flabby Antitrust Lawsuit Against Apple</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Magazine</p>
<a href="#" class="h6">Workbooks Platform Gives New Meaning to the ‘R’ in CRM</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-2" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-8">
<div class="position-relative rounded overflow-hidden">
<img src="img/news-1.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
<div class="position-absolute text-white px-4 py-2 bg-primary rounded" style="top: 20px; right: 20px;">
Magazine
</div>
</div>
<div class="my-3">
<a href="#" class="h4">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest Threat</a>
</div>
<p class="mt-4">Cybersecurity Expert Pegs AI as Online Shopping’s Biggest Threat
</p>
<div class="d-flex justify-content-between">
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-clock"></i> 06 minute read</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-eye"></i> 3.5k Views</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-comment-dots"></i> 05 Comment</a>
<a href="#" class="text-dark link-hover"><i class="fa fa-arrow-up"></i> 1.5k Share</a>
</div>
</div>
<div class="col-lg-4">
<div class="row g-4">
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-3.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Magazine</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-4.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Magazine</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-5.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Magazine</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-6.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Magazine</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Magazine</p>
<a href="#" class="h6">MicroStrategy Adds New AI-Powered Self-Service Business Analytics Feature</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-3" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-8">
<div class="position-relative rounded overflow-hidden">
<img src="img/news-1.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
<div class="position-absolute text-white px-4 py-2 bg-primary rounded" style="top: 20px; right: 20px;">
Politics
</div>
</div>
<div class="my-3">
<a href="#" class="h4">MicroStrategy Adds New AI-Powered Self-Service Business Analytics Feature.</a>
</div>
<p class="mt-4">MicroStrategy Adds New AI-Powered Self-Service Business Analytics Feature
</p>
<div class="d-flex justify-content-between">
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-clock"></i> 06 minute read</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-eye"></i> 3.5k Views</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-comment-dots"></i> 05 Comment</a>
<a href="#" class="text-dark link-hover"><i class="fa fa-arrow-up"></i> 1.5k Share</a>
</div>
</div>
<div class="col-lg-4">
<div class="row g-4">
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-3.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Politics</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-4.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Politics</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-5.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Politics</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-6.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Politics</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Politics</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-4" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-8">
<div class="position-relative rounded overflow-hidden">
<img src="img/news-1.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
<div class="position-absolute text-white px-4 py-2 bg-primary rounded" style="top: 20px; right: 20px;">
Technology
</div>
</div>
<div class="my-3">
<a href="#" class="h4">MicroStrategy Adds New AI-Powered Self-Service Business Analytics Feature</a>
</div>
<p class="mt-4">MicroStrategy Adds New AI-Powered Self-Service Business Analytics Feature
</p>
<div class="d-flex justify-content-between">
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-clock"></i> 06 minute read</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-eye"></i> 3.5k Views</a>
<a href="#" class="text-dark link-hover me-3"><i class="fa fa-comment-dots"></i> 05 Comment</a>
<a href="#" class="text-dark link-hover"><i class="fa fa-arrow-up"></i> 1.5k Share</a>
</div>
</div>
<div class="col-lg-4">
<div class="row g-4">
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-3.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Technology</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-4.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Technology</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-5.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Technology</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-6.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Technology</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="row g-4 align-items-center">
<div class="col-5">
<div class="overflow-hidden rounded">
<img src="img/news-7.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
</div>
</div>
<div class="col-7">
<div class="features-content d-flex flex-column">
<p class="text-uppercase mb-2">Technology</p>
<a href="#" class="h6">Why the CEO Job Is Broken: The Overcompensation Problem</a>
<small class="text-body d-block"><i class="fas fa-calendar-alt me-1"></i> Dec 9, 2024</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tab-5" class="tab-pane fade show p-0">
<div class="row g-4">
<div class="col-lg-8">
<div class="position-relative rounded overflow-hidden">
<img src="img/news-1.jpg" class="img-zoomin img-fluid rounded w-100" alt="">
<div class="position-absolute text-white px-4 py-2 bg-primary rounded" style="top: 20px; right: 20px;">
Fashion
</div>
</div>
<div class="my-3">
<a href="#" class="h4">World Happiness Report 2024: What's the highway to happiness?</a>
</div>
<p class="mt-4">Ransomware Gangs Targeting Backups To Maximize Payoffs