@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 */

#headerbackground
{
    width: 100%;
}

/* -- --- -- */
.news-section
{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: top;
    flex-direction: column;
}
.news-section .title h1
{
    color: #4F7040;
    text-align: center;
    margin-bottom: 25px;
}
.news-section .news-content
{
    width: 100%;
    height: 250px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: right;
    flex-direction: row;
    direction: rtl;
    margin-bottom: 10px;
    /*border-bottom: #4F7040 2px solid;*/
}
.news-section .news-content .image
{
    width: 250px;
    height: 200px;
    border: yellow 1px solid;
}
.news-section .news-content .image #pic
{
    width: 250px;
    height: 200px;
}
.news-section .news-content .text
{
    display: flex;
    align-items: right;
    justify-content: center;
    flex-direction: column;
}
.news-section .news-content .text h2
{
    padding: 10px;
    margin: 10px;
}
.news-section .news-content .text .button
{
    margin: 10px;
}
.news-section .news-content .text .button a
{
    border: #4F7040 1px solid;
    border-radius: 25px;
    text-decoration: none;
    color: #4F7040;
    padding: 20px;
}
.news-section .news-content .text .button a:hover
{
    color: #fff;
    background: #4F7040;
}
/* 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-section
    {
        height: fit-content;
    }
    .news-section .news-content
    {
        height: fit-content;
        flex-direction: column;
        justify-content: center;
    }
    .news-section .news-content .text
    {
        align-items: center;
    }
    .shortLink .linksTitle a
    {
        margin: 10px;
        font-size: medium;
    }
    .shortLink .socialMedia a img
    {
        width: 35px;
        height: 30px;
    }
    footer
    {
        font-size: small;
        font-weight:lighter;
    }
}