:root{
    --primary-color-dark:#2ba27b;
    --transition-speed:300ms;
    --primary-color:#36ca9a;
    --action-color:#f74457;
    --heart-color:#e93a57;
    --ice-blue-cold:#d8e0f7;
    --ice-blue-light:#eff3fb;
    --bright-green:rgb(211, 93, 66);
    --light-green:rgba(157,229,147,1);
    --dark-gray: #13191c;
    --dark-blue-gray: #253f4b;
    --btn-shadow: 0 3px 10px rgba(0,0,0,0.10), 0 3px 6px rgba(0,0,0,0.15);
}
@font-face {
    font-family: NotoSansArabicUI;
    src: url(assets/NotoSansArabicUI-Regular.ttf);
}
body {
    direction: rtl;
    margin:0;
    padding:0;
    font-family: NotoSansArabicUI;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color:var(--bright-green);
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.flex-col{
    display: flex;
    flex-direction: column;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
.justify-around{
    justify-content: space-around;
}
.align-start{
    align-items: start;
}
.align-center{
    align-items: center;
}

#header{
    padding: 100px;
    background-image: url("assets/header-img.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: var(--dark-blue-gray);
    color: white;
    font-weight: bold;
    text-align: center;

}
#illia-logo{
    margin-bottom: 25px;
}
#content{
    padding: 50px;
}
#page-sub-title{
}
.page-sub-title{
    text-align: center;
    font-size: xx-large;
    margin-top: 25px;
}
#page-heading-text{
    text-align: center;
    font-size: xxx-large;
}
#page-heading-subtext{
    text-align: center;
    font-size: medium;
}
.sub-title{
    font-size: x-large;
    font-weight: bold;
    color: var(--dark-gray);
}
.txt{
    font-size: large;
    text-align: justify;
    text-justify: inter-word;
}
.section{
    padding: 16px 25px;
    flex-grow: 1;
    width: 50%;
}
.footer-address {
    background-color: var(--dark-blue-gray);
    color: white;
}
.footer-info{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 50px;
}
.info-text{
    font-weight: normal;
    font-size: medium;
    text-align: center;
    margin-top: 25px;
}
.divider{
    width: 100%;
    min-height: 3px;
    background: var(--bright-green);
    background: linear-gradient(90deg, var(--light-green) 0%, var(--bright-green) 50%, var(--light-green) 100%);
}
.underline{
    width: 100%;
    min-height: 3px;
    background-color: var(--dark-blue-gray);
}
.ic{
    margin-bottom: 25px;
}
.icomoon{
    color: var(--ice-blue-light);
}
.links{
    padding-top: 25px;
    padding-bottom: 75px;
    justify-content: space-evenly;
}
.link{
    font-weight: bold;
    font-size: x-large;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.2s ease-in-out;
}

.products-title{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: xx-large;
    text-align: center;
    padding: 50px 0;
    font-weight: bold;
}

.product{
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.product img{
    transition: all 0.2s ease-in-out;
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}
#footer-logo{
    width: 100%;
    background-color: var(--dark-blue-gray);
}
#footer-logo div{
    color: lightgrey;
    color: var(--ice-blue-cold);
    font-size: small;
    padding-bottom: 25px;
}
#footer-logo img{
    width: 70px;
    padding-bottom: 10px;
}
.product:hover .link{
    transition: all 0.2s ease-in-out;
    color: var(--bright-green);
}
.product:hover .underline{
    transition: all 0.2s ease-in-out;
    background-color: var(--bright-green);
}
.divider-ver{
    width:2px;
    background-color: whitesmoke;
}
#services-subtitle{
    color: var(--dark-blue-gray);
    text-align: center;
    padding: 0 16px;
}
.consult-links{
    width: fit-content;
    width: -moz-fit-content;
    background: linear-gradient(-45deg, var(--bright-green),  var(--light-green), var(--bright-green)) ;
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    color: white;
    margin: 0px 16px 32px 16px;

    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    border: 2px solid var(--ice-blue-light);
    border-radius: 15px;
}
.consult-link{
    font-weight: bold;
    padding: 20px;
    flex-grow: 1;
    font-size: large;
    letter-spacing: 2px;
    text-align: center;
}

@media (min-width: 768px) {
    .product:hover img {
        transition: all 0.2s ease-in-out;
        transform: translateY(-3px);
    }
}
@media (max-width: 768px) {
    .products-title{
        font-size: large;
        padding: 50px 0;
    }
    .links{
        flex-direction: column;
        align-items: center;
        padding: 25px;
    }
    .consult-links{
        flex-direction: column;
        align-items: center;
        padding: 25px;
    }
    .divider-ver{
        width: 100%;
        height: 3px;
    }
    .product{
        padding: 25px;
    }
    .link{
        font-size: medium;
    }
    .product img{
        transition: all 0.2s ease-in-out;
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    #content{
        flex-direction: column;
        align-items: center;
    }
    .section{
        flex-grow: 1;
        width: 100%;
    }
    .page-sub-title{
        text-align: center;
        font-size: large;
        margin-top: 25px;
    }
    #page-heading-text{
        text-align: center;
        font-size: xx-large;
    }
    #page-heading-subtext{
        text-align: center;
        font-size: small;
    }
    .footer-address{
        flex-direction: column;
        align-items: center;
    }
}