@font-face {
            src: url("../font/ft.ttf") format("truetype");
            font-family: ft;
             /* تأكد من تعديل المسار إذا كان اسم المجلد الذي أنشأته في الخطوة 2 يختلف */
        }
*
{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    /* font-size: 25px; */
    /*font-family: Arial, Helvetica, sans-serif;*/
        font-family: ft;

}
:root
{
        --body-color: white;
--sidebar-color: rgb(195, 224, 255);
--primary-color: rgb(160, 204, 255);
--primary-color-light: rgb(0, 119, 255);
--text-color: black;
--toggle-color: #4267B2;


    
}

.head
{
    width: 100%;
    height: 70px;
    background-color: var(--sidebar-color);
    line-height: 60px;
    text-align: center;
}


.advintages
{
    width: 100%;
    margin-top: 15px;
}


.container
{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 100px;
}

.container .glas
{
    position: relative;
    width: 200px;
    height: 240px;
    background: linear-gradient(var(--primary-color), transparent);
    border: 1px solid rgba(255,255,255,0,1);
    box-shadow: 0 25px 25px rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.7s ease;
    border-radius: 10px;
    margin: 0 25px;
    margin-top: 15px;
    overflow: hidden;
    cursor: pointer;
    
}
.container .glas i
{
    color: var(--text-color);
    font-size: 4em;
}
.container .glas:hover
{
    transform: scale(1.1);
}
.container .glas::after
{
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 48px;
    background: var(--primary-color-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
}

.container a
{
    text-decoration: none;
}



.co-opration
{
    width: 100%;
    text-align: right;
    margin-right: 15px;
    padding-top: 25px;
    color: black;
    text-align: center;
}

.co-opration h3
{
    width: 100%;
    text-align: center;
    color: rgb(37, 37, 37);
    margin-right: 5px;
    padding-bottom: 15px;
}

.co-opration .opration
{
    width: 100%;
}

.co-opration .opration a
{
    overflow: hidden;
    padding-top: 10px;
    text-decoration: none;
    color: var(--text-color);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    background-color: var(--primary-color);
    width: 40px;
    position: relative;
}



.co-opration .opration a:hover
{
    text-decoration: none;
    color: black;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
    background-color: var(--primary-color-light);
}
