@font-face {
            src: url("../font/ft.otf") 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;


    
}
body
{
    background-color: var(--body-color);
}

.head
{
    width: 100%;
    height: 70px;
    background-color: var(--sidebar-color);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    position: fixed;
    align-items: center;
    z-index: 999;
}

.logo img
{
    width: 110px;
    /* padding-bottom: 25px; */
    height: 70px;
}
.nav ul
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
}
.nav ul a
{
    text-decoration: none;
    color: var(--text-color);
    margin: 0 10px;
    line-height: 60px;
    height: 70px;
    position: relative;
    transition: 0.7s ease;
}
.nav ul a li
{
    list-style: none;

}

.nav ul a::after
{
    content: "";
    height: 1.5px;
    width: 0px;
    background-color: var(--text-color);
    position: absolute;
    bottom: 7px;
    left: 0;
    transition: 0.7s ease;
}
.nav ul a:hover
{
    color: blue;
}
.nav ul a:hover::after
{
    content: "";
    height: 1.5px;
    width: 100%;
    background-color: blue;
    position: absolute;
    bottom: 7px;
    left: 0;
}




.lan .a
{
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    border: 1px solid var(--primary-color-light);
    border-radius: 7px;
    transition: 0.4s ease;
    color: var(--text-color);
}
.lan .a.active
{
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 7px;
    transition: 0.4s ease;
    background-color: var(--primary-color-light);
    color: black;
}

.lan .a:hover
{
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 7px;
    transition: 0.4s ease;
    background-color: var(--primary-color-light);
    color: black;
}

.slide
{
    display: none;
    color: black;
    cursor: pointer;

}


@media screen and (max-height: 598px){

    .nav ul a {
    
        line-height: 50px;
        height: 40px;
        
    }


}
    



@media screen and (max-width: 1210px) {
    .slide
{
    display: block;
    color: black;
    cursor: pointer;
    font-size: 25px;
}


.nav ul
{
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 73px;
    align-items: start;
    flex-wrap: wrap;
    overflow: hidden;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--sidebar-color);
    z-index: -1;
    height: 100vh;
    width: 0px;
    transition: 0.7s ease;
}
.nav ul.active
{
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 73px;
    align-items: start;
    flex-wrap: wrap;
    overflow: hidden;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--sidebar-color);
    z-index: -1;
    height: 100vh;
    width: 280px;
}
.nav ul a
{
    text-decoration: none;
    color: var(--text-color);
    margin: 0 10px;
    position: relative;
    transition: 0.7s ease;
    width: 100%;
    text-align: center;
}
.nav ul a li
{
    list-style: none;

}

.nav ul a::after
{
    content: "";
    height: 1.5px;
    width: 0px;
    background-color: var(--text-color);
    position: absolute;
    bottom: 3px;
    left: 0;
    transition: 0.7s ease;
}
.nav ul a:hover
{
    color: black;
}
.nav ul a:hover::after
{
    content: "";
    height: 1.5px;
    width: 100%;
    background-color: black;
    position: absolute;
    bottom: 3px;
    left: 0;
}

}


@media screen and (max-width: 324px) {
    .lan
    {
        display: none;
    }

}

.main
{
    width: 100%;
    min-height: 100vh;
    padding-top: 73px;
    color: white;
}

.main .home
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    height: 350px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.main .home .home_text
{
    padding-top: 100px;
    padding-left: 35px;
}
.main .home .home_text p
{
    padding-left: 15px;
}
.main .home .home_text a
{
    margin-left: 15px;
    text-decoration: none;
    color: white;
    padding: 10px;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    border: 1px solid var(--primary-color-light);
    border-radius: 7px;
    transition: 0.4s ease;
    z-index: 999;
    /* color: var(--text-color); */
    /*font-weight: bold;*/
}
.main .home .home_text a:hover
{
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
    border: 1px solid var(--primary-color-light);
    background-color: var(--primary-color-light);
    border-radius: 7px;
    transition: 0.4s ease;
    color: white;

}



.main .home::after
{
    content: '';
    background-image: url(../img/phra.jpg);
    position: absolute;
    width: 100%;
    height: 350px;
    top: 0;
    left: 0;
    filter: blur(4px);
    /* filter: var(--primary-color-light); */
    z-index: -999;
    animation: blur 2s ease-in-out ;
}

@keyframes blur{
    from{
        filter: blur(0px);
    }
    to{
        filter: blur(4px);
    }
  }
.main.home .home_img
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
  .main .home .home_img .logo
{
    width: 450px;
}

@media screen and (max-width: 970px) {
    .main .home .home_text
    {
        width: 50%;
    }
    .main .home .home_img .logo
    {
        width: 400px;
    }
}

@media screen and (max-width: 869px) {
    .main .home .home_text
    {
        width: 50%;
    }
    .main .home .home_img .logo
    {
        width: 350px;
    }
}

@media screen and (max-width: 770px) {
    .main .home .home_text
    {
        width: 40%;
    }
    .main .home .home_img .logo
    {
        width: 350px;
    }
}

@media screen and (max-width: 644px) {
    .main .home .home_img .logo
    {
        width: 100%;
        margin-top: -100px;
    }
    .main
    {
        width: 100%;
        min-height: 100vh;
        padding-top: 73px;
        color: white;
    }
    
    .main .home
    {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        height: 550px;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .main .home .home_text
    {
        padding-top: 100px;
        padding-left: 35px;
        width: 100%;
        z-index: 999;
    }
    .main .home .home_text p
    {
        padding-left: 15px;
    }
    .main .home .home_text a
    {
        margin-left: 15px;
        text-decoration: none;
        color: white;
        padding: 10px;
        text-decoration: none;
        margin: 0 15px;
        padding: 10px;
        border: 1px solid var(--primary-color-light);
        border-radius: 7px;
        transition: 0.4s ease;
    z-index: 999;


        /* color: var(--text-color); */
    }
    .main .home .home_text a:hover
    {
        text-decoration: none;
        margin: 0 15px;
        padding: 10px;
        border: 1px solid var(--primary-color-light);
        background-color: var(--primary-color-light);
        border-radius: 7px;
        transition: 0.4s ease;
        color: white;
    
    }
    
    
    
    .main .home::after
    {
        content: '';
        background-image: url(../img/phra.jpg);
        position: absolute;
        width: 100%;
        height: 550px;
        top: 0;
        left: 0;
        filter: blur(4px);
        /* filter: var(--primary-color-light); */
        z-index: -999;
        animation: blur 2s ease-in-out ;
    }
    
    @keyframes blur{
        from{
            filter: blur(0px);
        }
        to{
            filter: blur(4px);
        }
      }

      .main .home .home_img .lo1
      {
          width: 100%;
          position: absolute;
          bottom: -80px;
          right: 0;
          animation: lo1 2s ease-in-out;
      }
      @keyframes lo1{
          from{
              bottom: -500px;
              right: 0;
          }
          to{
              bottom: -80px;
              right: 0;
          }
      }
      
      .main .home .home_img .lo2
      {
          width: 100%;
          position: absolute;
          bottom: -120px;
          right: 0;
          animation: lo2 4s ease-in-out;
      
      }
      
      @keyframes lo2{
          from{
              bottom: -500px;
              right: 0;
          }
          to{
              bottom: -120px;
              right: 0;
          }
      }
      
}

.main .home .home_img .lo1
{
    width: 450px;
    position: absolute;
    bottom: -80px;
    right: 0;
    animation: lo1 2s ease-in-out;
}
@keyframes lo1{
    from{
        bottom: -500px;
        right: 0;
    }
    to{
        bottom: -80px;
        right: 0;
    }
}

.main .home .home_img .lo2
{
    width: 450px;
    position: absolute;
    bottom: -120px;
    right: 0;
    animation: lo2 4s ease-in-out;

}

@keyframes lo2{
    from{
        bottom: -500px;
        right: 0;
    }
    to{
        bottom: -120px;
        right: 0;
    }
}

@media screen and (max-width: 395px) {
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -80px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -80px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -120px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -120px;
            right: 0;
        }
    }
}


@media screen and (max-width: 369px) {
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -50px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -50px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -90px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -90px;
            right: 0;
        }
    }
}



@media screen and (max-width: 339px) {
    .main .home .home_img .logo
    {
        margin-top: -50px;
    }
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -50px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -50px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -90px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -90px;
            right: 0;
        }
    }
}



@media screen and (max-width: 327px) {
    .main .home .home_img .logo
    {
        margin-top: -30px;
    }
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -50px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -50px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -90px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -90px;
            right: 0;
        }
    }
}



@media screen and (max-width: 412px) {
    .main .home .home_img .logo
    {
        margin-top: -70px;
    }
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -60px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -60px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -100px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -100px;
            right: 0;
        }
    }
}




@media screen and (max-width: 375px) {
    .main .home .home_img .logo
    {
        margin-top: -70px;
    }
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -30px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -30px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -70px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -70px;
            right: 0;
        }
    }
}


@media screen and (max-width: 295px) {
    .main .home .home_img .logo
    {
        margin-top: -50px;
    }
    .main .home .home_img .lo1
    {
        width: 100%;
        position: absolute;
        bottom: -30px;
        right: 0;
        animation: lo1 2s ease-in-out;
    }
    @keyframes lo1{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -30px;
            right: 0;
        }
    }
    
    .main .home .home_img .lo2
    {
        width: 100%;
        position: absolute;
        bottom: -70px;
        right: 0;
        animation: lo2 4s ease-in-out;
    
    }
    
    @keyframes lo2{
        from{
            bottom: -500px;
            right: 0;
        }
        to{
            bottom: -70px;
            right: 0;
        }
    }
}

.opation
{
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.opation .oop1
{
    width: 48%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
.opation .oop1 .op1
{
    width: 100%;
    height: 400px;
    background-image: url(../img/colours.jpg);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}
.opation .oop1:hover .op1
{
    width: 100%;
    height: 400px;
    transform: scale(1.1);
    background-image: url(../img/colours.jpg);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.opation .oop1 .op1::after
{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    text-align: center;
    align-items: center;
    padding-top: 200px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 35px;
    background-color: rgba(0, 0, 0, 0.486);

}

.opation .oop2
{
    width: 48%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
.opation .oop2 .op2
{
    width: 100%;
    height: 400px;
    background-image: url(../img/colours1.jpg);
    border-radius: 15px;
    background-size: cover;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}
.opation .oop2:hover .op2
{
    width: 100%;
    height: 400px;
    transform: scale(1.1);
    background-image: url(../img/colours1.jpg);
    background-size: cover;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.opation .oop2 .op2::after
{
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    text-align: center;
    align-items: center;
    padding-top: 200px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 35px;
    background-color: rgba(0, 0, 0, 0.486);

}

@media screen and (max-width: 761px) {
    .opation
{
    width: 100%;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
}
.opation .oop1
{
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
.opation .oop2
{
    margin-top: 25px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}
}

/* @media screen and (max-width: 970px) {
    .home_img .logo
    {
        margin-top: 25px;
        margin-right: 15px;
    }
}

@media screen and (max-width: 899px) {
    .home_img .logo
    {
        position: absolute;
        top: 0;
        right: 0;
    }
} */


.text
{
    width: 98%;
    text-align: center;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5px;
    border: 1px solid black;
    margin-top: 35px;
    background-color: var(--sidebar-color);
}
.text h1
{
    padding-top: 25px;
}
.text h3
{
    
    padding: 15px 60px;
}

.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);
}

footer
{
    background-color: #17161a;
    width: 100%;
    min-height: 400px;
    margin-top: 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-top: 15px;
}

footer .f1
{
    overflow: hidden;
    width: 250px;
}
footer .f1 .logo
{
    width: 100%;
    margin-right: 250px;
   
}
footer .social a
{
    color: white;
    text-decoration: none;
}
footer .social a i
{
    padding: 5px;
    margin: 0 5px;
    border-radius: 50%;
    /* border: 1px solid white; */
    font-size: 25px;
    
}

footer .f2
{
    color: white;
    text-align: center;
}

footer .f3
{
    color: white;
    text-align: center;
}

footer a img
{
    transition: 0.7s ease;

}

footer .im2 img:hover
{
    transform: scale(2);
}

footer .im1
{
    display: block;
}

footer .im2
{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

@media screen and (max-width: 722px) {
    footer a img
{
    transition: 0.7s ease;
    width: 100%;
    height: fit-content;

}

footer .im2 img:hover
{
    transform: scale(2);
}
    footer
{
    background-color: #17161a;
    width: 100%;
    min-height: 400px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
}
footer .f1
{
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}
footer .f1 .logo
{
    width: 100%;
}

footer .f2
{
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
}
}

.ff
{
    background-color: #17161a;
    width: 100%;
    min-height: 25px;
    color: white;
    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);
    text-align: center;
}

.footer .f1 .logo:hover
{
    color: white;
    transform: scale(1);
}

@media screen and (max-width: 414px) {
    .main .home .home_text
{
    padding-top: 20px;
    padding-left: 35px;
}
}