* {
    outline: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #e7f5ff;
    color: #333;
    margin: 0;
    padding: 0;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 5px;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Stack Sans Headline', sans-serif;
    margin: 7px 0;
    color: #222;
    font-weight: 600
}

.heading {
    font-family: 'Stack Sans Headline', sans-serif;
}

.logo {
    font-family: 'Cabin', cursive;
}


h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

header {
    min-height: 75px;
    background: #153c92;
}

header .top {
    background: #153c92;
}

.bottom-header {
    background-color: #fff;
    z-index: 99999;
}

nav a {
    font-size: 17px;
    color: #fff;
    border-radius: 100px;
    padding: 2px 8px;
    text-wrap: nowrap;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #6b6b6b3f;
}

.frontsection,
.ticker-heading,
.linker {
    background-color: #153c92;
}

marquee a {
    font-weight: 600;
    z-index: 1;
}

marquee a:hover {
    text-decoration: underline;
}

.btn {
    background-color: #153c92;
    width: -webkit-fill-available;
}

@media only screen and (max-width: 768px) {

    .hide {
        display: none;
    }

    .webkit {
        width: -webkit-fill-available;
    }
}

.cat-box h2 {
    background-color: #153c92;
    color: #fff !important
}

footer {
    background-color: #153c92;
    margin-top: 50px;
}

footer * {
    color: #fff;
}

.search-result {
    z-index: 999999 !important;
}

.main-area .content a {
    text-decoration: underline;
}

.main-area .content p {
    margin-bottom: 15px;
    display: inline-block
}

.main-area .content li {
    margin: 10px 0;
}

.main-area .content h4 {
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 20px 0;
}

th {
    background-color: #153c92;
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border: none;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

tr:hover {
    background-color: #f5f5f5;
}

table {
    border-radius: 5px;
    overflow: hidden;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:nth-child(even):hover {
    background-color: #f0f0f0;
}

.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}