@import url('https://fonts.googleapis.com/css2?family=Lateef&family=Tajawal:wght@800&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}
/* Header Menu */
header
{
    top: 0;
    height: 100px;
    width: 100%;
    position: fixed;
}
header .topHeader
{
    z-index: 1;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
header .topHeader a
{
    margin: 7px;
    display: block;
    color: #4F7040;
    text-align: center;
    padding: 12px 14px;
    text-decoration: none;
    font-size: large;
    font-weight: 400;

}
header .topHeader img
{
    width: 200px;
    height: 50px;
    margin: 10px;
    margin-left: 25px;
    margin-right: 25px;
    padding-left: 15px;
    padding-right: 15px;
}
header .imageTop img
{
    top: 0;
    height: 120px;
    width: 100%;
    position: absolute;
    z-index: -2;
}
/* Header Menu End */

.news-pic
{
    width: 100%;
    height: 350px;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 120px;
}
.news-pic img
{
    width: 300px;
    height: 270px;
    padding: 20px;
    border: #4F7040 3px double;
}
.news-title
{
    width: 100%;
    height: fit-content;
    padding: 15px;
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-title h1
{
    text-align: center;
    color: #4F7040;
}
.news-content
{
    margin-top: 20px;
    width: 100%;
    height: fit-content;
    padding: 15px;
    direction: rtl;
    
}
.news-content p
{
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
}

/* end part */
#footer-cut
{
    width: 100%;
    margin-top: 15px;
}

.shortLink
{
    direction: rtl;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
}
.shortLink .linksTitle
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

}
.shortLink .linksTitle a
{
    margin: 20px;
    color: #4F7040;
    font-size: larger;
    text-decoration: none;
}
.shortLink .socialMedia
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.shortLink .socialMedia a
{
    padding: 5px;
    width: 45px;
    height: 40px;
    margin: 10px;
    
}
.shortLink .socialMedia a img
{
    width: 45px;
    height: 40px;
}
footer
{
    text-align: center;
    font-weight:lighter;
    margin: 15px;
}

/* Phone view */
@media only screen and (max-width: 991px)
{
    .news-pic
    {
        height: fit-content;
        grid-template-columns: auto auto auto;
        grid-template-rows: auto ;
        padding-left: 15px;
        padding-right: 15px;
    }
    .news-pic img
    {
        width: 150px;
        height: 135px;
        padding: 10px;
    }
    .news-title h1
    {
        font-size: larger;
    }
    .shortLink .linksTitle a
    {
        margin: 10px;
        font-size: medium;
    }
    .shortLink .socialMedia a img
    {
        width: 35px;
        height: 30px;
    }
    footer
    {
        font-size: small;
        font-weight:lighter;
    }
}