@media (max-width:64rem) {
    
    .zoom-icon {
        width: 100px;
        transition: transform 0.5s;
      }
      

      .zoom-icon:hover {
        transform: scale(1.1);
      }

      @font-face {
        font-family: 'behdad';
        src:url('Behdad.Font.ttf-otf-woff-png_p30download.com/Behdad.Font.ttf-otf-woff-png_p30download.com/Font/Behdad-Regular_p30download.com.woff2') format('woff2'),
        url('Behdad.Font.ttf-otf-woff-png_p30download.com/Behdad.Font.ttf-otf-woff-png_p30download.com/Font/Behdad-Regular_p30download.com.woff') format('woff'),
        url('Behdad.Font.ttf-otf-woff-png_p30download.com/Behdad.Font.ttf-otf-woff-png_p30download.com/Font/Behdad-Regular_p30download.com.ttf') format('ttf'),
        url('Behdad.Font.ttf-otf-woff-png_p30download.com/Behdad.Font.ttf-otf-woff-png_p30download.com/Font/Behdad-Regular_p30download.com.otf') format('otf');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'playfair';
        src: url('font-latin-playfair-display-ufont.ir_/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }

    *{
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }    


    a{
        text-decoration: none;
        color:black;
    } 


    html{
        background: #43C6AC;  /* fallback for old browsers */
        background: -webkit-linear-gradient(to bottom, #aec9ff, rgb(14 35 56));  /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to bottom, #aec9ff, rgb(14 35 56)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        position: relative;
        display: inline-grid;
        font-size: 100%;   
    } 


    .all{
        font-family: 'behdad';
    }


    .tel {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        border: none;
        background-color: #30C04F;
        position: fixed;
        bottom: 1rem;
        right: 1rem;
    }    
    
    .tel:hover {
        background-color: #146024;
    }


    .navbar{
        display: none;
    }


    .titr{
        display: flex;
        justify-content: center;
        font-size: 2rem;
        margin: 3rem 0
    }


    .all-item{
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    .item-img{

        width: 100%;
        height: 75%;
        border-radius: 16px;
        padding: 0.5rem;
    }   


    .text-img{
        text-align: center;
        align-items: center;
        border:cadetblue 2px solid  ;
        border-radius: 5px;
        background-color: #919090;
        padding:0.5rem;
        margin: 1rem 20% 0.5rem;
        width: 60%;
    } 


    .text-img:hover{
        background-color: #91909053;
    }    
    
    
    .item{       
        text-align: center;
        display:flex;
        justify-content: center;
        padding: 1rem;
        width: 90%;
        margin:3rem 3rem;
        background: rgba(235, 235, 235, 0.866);
        box-shadow: 1px 4px 25px rgba(0, 0, 0, 0.742);
        backdrop-filter: blur(4.7px);
        -webkit-backdrop-filter: blur(4.7px);
        border-radius:16px;
    }    






    .menu-icon{
        display: block;
        position: fixed;
        top: 1rem;
        left: 1rem;
        width: 20px;
        height: 20px;
        z-index: 999;
    }


    .bar,
    .bar::before,
    .bar::after {
        content: "";
        border-radius:5px;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333333;
        transition: all 0.5s;
    }

    .bar::before{
        top: -6px;
    }


    .bar::after{
        top: 6px;
    }


    .active .bar{ 
        background: transparent;
    }


    .active .bar::before{
        top: 0;
        transform: rotate(45deg);
    } 


    .active .bar::after{
        top: 0;
        transform: rotate(-45deg);
    }  



    .open-menu nav{
        transform:translatex(0)  ;
    }
    

    nav{
        text-align: center;
        transition: transform 0.5s ease;
        display: inline-block;
        flex-direction: column;
        width: 45%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        border-radius: 5px;
        background-color: #33333383;
        backdrop-filter: blur(6px);
        transform: translateX(200%);
    }


    nav ul{
        list-style: none;
        float:inline-start;
    }


    nav ul li{
        padding: 1.5rem 1rem ;
        transition: color 1s;
    }


    nav ul li a{
        color: #1a1a1a;
    }


    nav ul li a:hover{
        color: #393939;
        border-radius: 5px;
        cursor: pointer;
    }

    
    
    .sub-menu {
        position: relative;
        text-align: center;
    }
    
    .sub-btn {
        color: rgb(0, 0, 0);
        font-family: 'behdad';
        padding: 8px;
        font-size: 1rem;
        background:none;
        cursor: pointer;
        border: none;
    }




    
    .sub-content {
        width: max-content;
        border-radius: 5px;
        display: none;
        position: absolute;
        top: 1rem;
        right: 90%;
        background-color: #919090;
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 1;
    }

    .sub-content1{
        top: -3.5rem;
    }
    
    .sub-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    
    
    
    .sub-menu:hover .sub-content {
        display: block;
    }




    .abut{
        margin: 0 5%;
        text-align: center;
        width: 90%;
    }

    
    .abut h1 {
        justify-content: center;
    }


    .abut h1:last-child{
        line-height: 3rem;
    }
        
    .none{
        display: none;
    }



    .head h1{
        color: #2d2d2d;
        margin: 5rem 0rem;
        display: flex;
        font-size: 1.5rem;
        justify-content: center;
        text-shadow: #3b3a3a76 1px 4px 4px;
    }

    .informetion{
        /* background-color: #2d2d2d; */
        /* width: 50%; */
        display: block;
        padding: 0 1rem;
    }


    .informetion-plat {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
     }


    .informetion-plat a{

        display:flex;
        justify-content: center;
        padding: 1rem;
        flex-direction: row;
        width: 30%;
    }
    
    

    .informetion-tel i a{
        font-size: 0.9rem;
        font-family: 'behdad';
    }



    .logo{
        width: 1rem;
        height: 1rem;
    }




    .informetion-tel a:hover,
    .informetion-tel i:hover,
    .informetion-plat a:hover {
        color:#858585;
    }




    .informetion-tel,
    .informetion-plat,
    .informetion-tel a,
    .informetion-tel i,
    .informetion-plat a{
        color: rgb(255, 247, 214);
    }

    .p-footer{
        font-family: 'playfair';
        font-size: 2rem;

    }
    

    .footer , h1{
        color: rgb(255, 255, 255);

    }

    .footer , h1{
        width: 80%;
        margin: 10%;
    }


    .lego-img{
        position: relative;
        top: 1rem;
        right: 1rem;
        display: flex;
        width: 4rem;
        height: 4rem;
        z-index: 998;
    }











    .nou{
        display: flex;
        justify-content: center;
        width: 10%;
        height: 0rem;
        margin: 0 45%;
        border-radius:200px;
        border: solid blueviolet 2px;
    }









}