.sologan h1{
    margin-bottom: 40px;
}

.investment-types {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 60px;
}

.investment-type {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 20%; 
    margin: 20px; 
    padding: 20px;
    border: 1px solid gray;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}

.investment-type img {
    height: 60px;
    width: 60px;
    margin: 20px 0; 
}

.investment-type p {
    margin: 0;
    font-size: 20px; 
    color: #555;
}

.investment-type:hover {
    box-shadow: 10px 10px 20px #9fde50;
}

.margin-b60 {
    padding-bottom: 60px;
    
}

.news {
    display: block;
    width: calc(100% - 330px);
}

.news-header {
    font-size: 27px;
    line-height: 40px;
}

.blue-background {
    background-color: #0e3571;
}

.service table,p,li {
    color: white;
}

.newstable{
    width: 100%;
    table-layout: fixed; 
}
.newstable a {
    background-color: orange ;
    padding: 3px;
}

td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;    
}

 .newstable td:nth-child(1) {
    width: 60px;
    min-width: 60px;
 }
 
 .newstable td:nth-child(3),
 .newstable td:nth-child(4) {
    width: 120px;
    min-width: 120px;
 }

 /* .newstable td:nth-child(4) {
    width: 80px;
    min-width: 80px;
}  */

td:nth-child(2) {
    width: calc(100% - 250px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    
}
.newstable a:hover {
    background-color: var(--dwgreen);
    color: white;
}

tr {
    border-bottom: 1px solid grey; 
    height: 40px;
    vertical-align: bottom;
}
.newscontent {
    display: flex;
}




/* noteworthy start*/
.noteworthy {
    font-family: Arial, sans-serif;
    position: absolute;
    right:60px
}

.noteworthy h2 {
    font-size: 24px;
    font-weight: bold;
    color: #4a4a4a;
}

.noteworthy ul {
    list-style-type: disc;
    padding-left: 20px;
}

.noteworthy ul li {
    margin-bottom: 10px;
}

.noteworthy ul li:first-child + li {
    margin-top: -10px;
}

.noteworthy ul li + li {
    margin-top: 5px;
}

.noteworthy hr {
    border: 0;
    height: 1px;
    background-color: #b56529;
    margin: 10px 0;
}

.noteworthy a {
    text-decoration: none;
    /* color: #0077b6; */
    color:white;
}

.noteworthy h2 {
    color:white;
}

li::marker {
    color: orange; /* Change the bullet color */
}


/* noteworthy end */


@media (max-width: 860px) {
    .investment-types {
        display: grid;
        justify-items: center;
    }
    .investment-type {
        width: 80%;
    }

    .newscontent {
        display: grid;
        justify-items: left;
    }
    .noteworthy{
        position: inherit;
        margin: 60px 0px;
    }

    .news {
        width: 100%;
    }
    
}