@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 */
.product-content
{
    margin-top: 120px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.product-content .product-title
{
    width: 100%;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-content .product-title h1
{
    padding: 10px;
    color: #4F7040;
    text-align: center;
}
.product-content .product-section
{
    width: 100%;
    height: fit-content;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: auto auto auto ;
    grid-template-rows: auto auto auto auto;
}
.product-content .product-section .product
{
    width: 370px;
    height: 350px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.product-content .product-section .product img
{
    width: 290px;
    height: 250px;
}
.product-content .product-section .product p
{
    margin-top: 10px;
    font-weight: lighter;
    font-size: medium;
    color: #6d0621;
    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)
{
    .product-content
    {
        top: 0;
        margin-top: 90px;
    }
    .product-content .product-title
    {
        height: 30px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .product-content .product-title h1
    {
        font-size: large;
    }
    .product-content .product-section
    {
        grid-template-columns: auto auto ;
        grid-template-rows: auto auto auto auto auto;
    }
    .product-content .product-section .product
    {
        width: 270px;
        height: 250px;
        margin: 0px;
        border: none;
    }
    .product-content .product-section .product img
    {
        width: 190px;
        height: 150px;
    }
    .shortLink .linksTitle a
    {
        margin: 10px;
        font-size: medium;
    }
    .shortLink .socialMedia a img
    {
        width: 35px;
        height: 30px;
    }
    footer
    {
        font-size: small;
        font-weight:lighter;
    }
}