.newsdecontent{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width:100%;
    margin-bottom: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: center;
}
.newsitem{
    width: 30%;
    border-radius: 10px;
    padding-bottom:20px;
    background-color: white;
}
.newsitemimg img{
    width:100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.newsitemtitle{
    font-size: 20px;
    color: #232323;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin: 15px;
}
.newsitemmore a{
    font-size:16px;
    color:#FF3C00;
    margin-left: 15px;
}

@media screen and (max-width:700px) {
    .newsitem{
        width:100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 20px auto;
    }
    .recprotitle {
        font-size: 28px;
    }
    .newsitemtitle {
        font-size:16px;
    }
}