
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    direction: ltr;
}
.loade{
    width: 100%;
    height: 100%;
    background-color: #141414;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    position: fixed;
    top: 0;
    overflow-y: hidden;
}
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: #25b09b;
    animation: l15 1s infinite linear;
  }
  .loader::before,
  .loader::after {    
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
    animation: l15 2s infinite;
  }
  .loader::after {
    margin: 8px;
    animation-duration: 3s;
  }
  @keyframes l15{ 
    100%{transform: rotate(1turn)}
  }
  .btn-up {
  transition: 0.3s all ease;
    background-color: #212223;
    color: #00bc91;
    border-radius: 100%;
    width: 70px;
    height: 70px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    position: fixed;
    bottom: 10px;
    left:40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    pointer-events:none;
    opacity: 0;
}
.btn-up.active{
    bottom: 10px;
    pointer-events: auto;
    opacity: 1;
}
.btn-up:hover{
    background-color: #00bc91;
    color: #212223;
    box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
    -webkit-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
    -moz-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
  }
body{
 background-color: #141414;

}
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background-color: #fff;
}
::-webkit-scrollbar-thumb{
    background-color: #00bc91;
    border-radius: 30px;
}
.active.bac{
    width: 100%;
    height: 100vh;
   background-color:  rgb(0 0 0 / 0.6);
}
.container{
    display: flex;
    justify-content:space-evenly;
    align-items:end;
    width: 90%;
    margin: 40px 100px;
}
.hum-1{
    width: 100%;
    height:60px;
    position: absolute;
    top:0;
    left:0;
    backdrop-filter: blur(9px) saturate(200%);
    -webkit-backdrop-filter: blur(9px) saturate(200%);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
    z-index: 1;
    position: fixed;
    border-radius: 0 0 10px 10px;
    display: none;
}
#hum{
    cursor: pointer;
    z-index: 1;
    background-color: #141414;
    color: #fff;
    padding:10px 10px;
    border-radius: 30%;
    top:5px;
    left: 30px;
    text-align: start;
    z-index: 70;
    position: fixed;
    font-size: 20px;
    border: 1px solid #9e9999;
}
#xmark{
    font-size: 15px;
    cursor: pointer;
    color: #a20c0c;
    padding:10px;
    position: absolute;
    text-align: start;
    z-index: 99;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.active#xmark{
    visibility: visible;
    pointer-events:fill;
    opacity: 1;
}

.hum-menu{
    display: flex;
    flex-direction: column;
    background-color: #212223;
    justify-content: start;
    text-align: end;
    width:200px;
    height:100vh;
    gap: 30px;
    overflow: scroll;
    overflow-x: hidden;
    position: relative;
    opacity: 0;
    pointer-events: none;
    left: -500px;
    transition: all 0.3s ease;
}
.active.hum-menu{
    opacity: 1;
    pointer-events:fill;
    left: 0;
}
.hum-menu h3{
    color: #fff;
    font-family: dana-3;
    margin: 20px 20px;
    font-size: 1.7rem;
}
.hum-menu a{
    color: #9e9999;
    display: flex;
    flex-direction: row-reverse;
    margin-top:5px;
    gap: 10px;
    font-family: dana-3;
    text-decoration: none;
}
.hum-menu a:hover{
    color: #00bc91;
}
.hum-menu i{
    color: #fff;
    margin-right:15px;
}
.social{
    display: flex;
    justify-content: end;
}
.social i{
    font-size: 25px;
    color: #fff;
}
.menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 1px solid rgb(71, 71, 71);
    padding:1rem 0.5rem;
    border-radius: 30px;
    position: fixed;
    color: #fff;
    cursor: pointer;
    margin-top: 50px;
    font-family: dana-3;
    top: 0;
    left:35px;
}
.menu a{
    color: #fff;
}
.menu i{
    padding: 6px;
    border-radius: 50%;
    transition: 0.3s ease all;
}
.menu i:hover{
    background-color: rgb(113, 113, 113);
    color: #00bc91;
}
.share {
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgb(71, 71, 71);
}
.share a{
    font-size: 20px;
    color: #fff;
}
.share a:hover{
    color: #00bc91;
}
.tooltip{
    position: relative;
    display: inline;
    border: none;
    float: left;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 100px;
    background-color: rgb(50, 50, 50);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px 0;
    gap: 10px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    background-color: rgb(42, 41, 41);
}
.main{
    background-color: #212223;
    padding: 20px 20px;
    border-radius: 20px;
}
.main img{
    width: 400px;
}
.icon-up{
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    margin-right: 80px;
}
.icon-up p{
    font-size: 13px;
    display: flex;
    flex-direction: row-reverse;
    border: 1px solid rgb(71, 71, 71);
    padding:8px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 100;
    gap: 5px;
    font-family: dana-p;
}
.icon-up p i,.info-main .info h5 i{
    color: rgb(38, 219, 159);
}
.info-main{
    display: flex;
    flex-direction: row-reverse;
    text-align: end;
    justify-content: space-around;
}
.info-main .info h2{
    font-size: 55px;
    color: #fff;
    padding: 5px;
    font-family: dana-3;
}
.info-main .info h3{
    font-family: dana-p;
    font-size: 4rem;
    color: #00bc91;
}
.info-main .info p{
    font-family: dana;
    color: #9e9999;
    font-size: 20px;
    width: 500px;
    padding: 20px 0;
}
.info-main .info p span{
    color: #fff;
    text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}
.info-main .info h5{
    flex-direction: row;
    color: #9e9999;
    font-family: dana;
    font-size: 17px;
    margin: 20px;
}
.info-main .info button,
.btn-blog,
.contact .left button{
    border: none;
    padding: 10px 30px;
    background-color:  #00bc91;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-family: dana-p;
    cursor: pointer;
    margin: 5px 0;
    transition: all 0.3s ease;
}
.info-main .info button:hover,
.btn-blog:hover,
.contact .left button:hover{
    box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
-webkit-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
-moz-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
}
.tutorial{
    height: 10vh;
    margin: 0 auto;
    display: flex;
    justify-content: end;
    align-items: end;
    z-index: 99;
    transform: translate(-10px ,10px);
    width:1200px;
}
.container-1{
    display: flex;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
    mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}
.scroller{
    display: flex;
    gap: 10px;
    animation: scroll 25s linear infinite;
    animation-delay: calc(25s / -1);
}
.scroller:nth-child(2){
    animation: scroll2 25s linear infinite;
    animation-delay: calc(25s / -2);
}
.item{
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #fff;
    padding: 7px 15px;
    border-radius: 7px;
    font-family: dana;
}
@keyframes scroll{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}
@keyframes scroll2{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-200%);
    }
}

.info-aboute{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
    text-align: end;
    padding: 30px 60px;
}
.info-aboute h1{
    font-size:50px;
    font-family: dana-3;  
    color: #fff;
    padding: 10px 0;
}
.info-aboute h1 span{
    color: #00bc91;
}
.info-aboute p{
    color: #9e9999;
    font-family: dana-p;
    font-size: 20px;
    margin: 30px 0;
    width: 600px;
}
.info-aboute p span{
    color: #fff;
    
}
.aboute-me{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    margin: 30px 100px;
}
.aboute-me .icon-up{
    transform: translate(5px , 50px);
}
.aboute-me .main{
    width: 93%;
}
.btn-aboute{
    display: flex;
}
.btn-info-aboute{
    display: flex;
    border: 1px dashed #525252;
    background-color: transparent;
    color: #9e9999;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
    margin-left:10px;
}
.Information{
    display: grid;
    grid-template-columns: repeat(2,auto);
    margin-top: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    direction:rtl;
}
.Information a{
    direction: rtl;
    text-align: end;
    cursor: default;
    margin-left: 30px;
    color: #fff;
    font-family: dana-p;
    text-decoration: none;
    line-height: 50px;
}
.Information a span{
    cursor: pointer;
    text-align: end;
    color: #9e9999;
}
.counter-grid{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 40px;
}
.counter-item{
    position: relative;
    padding: 10px;
    text-align: center;
}
.counter-item h1{
    color: #00bc91;
}
.counter-item:not(:last-child)::before{
    content: "";
    background-color: #fff;
    position: absolute;
    width: 2px;
    height: 3rem;
    top:50% ;
    transform: translateY(-50%);
    right: -1rem;
}
.counter-item h3{
    width: max-content;
    font-size: 17px;
    font-family: dana-p;
    color: #9e9999;
}
.Services{
    margin: 70px 100px;
    display: flex;
    justify-content:end;
    align-items: end;
}
.Services-main{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
}
.Services .main{
    width:93%;
}
.Services .main .icon-up p{
    transform: translate(20px , 30px);
}
.box-services{
    margin-top: 30px;
    border: 1px solid #525252;
    border-radius: 30px;
    
}
.box-services:hover .texts h1{
    -webkit-text-stroke:1px #fff;
}
.box-services:hover .text-i i{
    transform: rotate(-45deg);
}
.box{
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    align-items: start;
    margin: 7px;
}
.text-i{
    margin-top: 40px;
}
.text-i i{
    color: #00bc91;
    font-size:2.5rem;
    transition: all 0.3s ease;
    margin-left: 7px;
}
.texts h1{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke:1px #9e9999;
    font-size: 4rem;
    transition: all 0.3s ease;
}
.texts h2{
    font-family: dana-p;
    color: #fff;
}
.texts p{
    width: 400px;
}
.skills .icon-up{
    transform: translate(30px , 10px);
}
.skills{
    display: flex;
    justify-content: end;
    flex-direction: row-reverse;
    margin: 30px 100px;
}
.skills .main{
    width: 93%;
}
.skills-info{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    text-align: end;
    margin: 50px 60px;

}
.skill-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: end;
}
.info-skills h1{
    color: #fff;
    font-family: dana-3;
    font-size:50px;
    margin-bottom: 30px;
}
.info-skills span{
    color: #25b09b;
}
.info-skills p{
    color: #9e9999;
    font-family: dana-p;
    font-size: 20px;
    width: 600px;
}
.skill{
    background-color: #212223;
    border-radius: 7px;
    width: 100%;
    margin: 15px;
    padding: 10px 20px;  
    position: relative; 
   
}
.skill .skill-box{
    width: 100%;
    margin: 25px 0;
}
.skill-box .title{
    display: block;
    text-align: start;
    font-size: 15px;
    font-family: dana;
    font-weight: 600;
    color: #fff;
}
.skill-box .title i{
    margin-left: 5px;
    font-size: 23px;
}
.skill-box .skill-bar{
    height: 8px;
    width: 100%;
    margin-top: 6px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.1);
}
.skill-bar .skill-per{
    position: relative;
    display: block;
    height: 100%;
    width:90%;
    background-color: #00bc91;
    border-radius: 6px;
    opacity: 0;
    animation: progress 0.6s ease-in-out forwards;
}

@keyframes progress{
    0%{
        width: 0;
        opacity: 1;
    }
    100%{
        opacity: 1;
    }
}
.skill-per.html{
    animation-delay:0.2s;
    width: 95%;
}
.skill-per.css{
    animation-delay:0.3s;
    width: 95%;
}
.skill-per.javascript{
    animation-delay:0.4s;
    width: 80%;
}
.skill-per.bootstap{
    animation-delay: 0.5s;
    width: 90%;
}
.skill-per.Wordpress{
    animation-delay: 0.6s;
    width: 70%;
}
.skill-per.React{
    animation-delay: 0.7s;
    width: 80%;
}
.skill-per .tootlip{
    position: absolute;
    right: -14px;
    top: -28px;
    font-size: 11px;
    font-weight: 500;
    font-family: dana-3;
    background-color: #00bc91;
    border-radius: 3px;
    padding: 2px 6px;
    color: #fff;
    z-index: 1;
}
.tootlip::before{
    content: "";
    height: 10px;
    width: 10px;
    background-color: #00bc91;
    position: absolute;
    left: 50%;
    bottom: -2px;
    z-index: -1;

    transform: translateX(-50%) rotate(45deg);
}
.info-work-saples{
    text-align: end;
    margin: 50px 60px;
}
.info-work-saples h1{
    color: #fff;
    font-family: dana-3;
    font-size: 50px;
}
.info-work-saples span,
.info-item-work span{
    color: #00bc91;
}
.info-work-saples p{
    color: #9e9999;
    font-family: dana-p;
    font-size: 20px;
}
.Work-samples{
    display: flex;
    justify-content: end;
    margin: 70px 100px;
}
.Work-samples .icon-up{
    transform: translate(30px ,10px);
}
.Work-samples .main{
    width: 93%;
    display: flex;
    flex-direction: column;
}
.work-item{
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.work-item .item{
width: 100%;
 margin-top:50px ; 
 background-color: #292929;
 border-radius: 30px;
 border-bottom:4px solid transparent;
 transition: all 0.3s ease;
 cursor: pointer;
 -webkit-box-shadow: -1px -2px 36px 0px rgba(0,0,0,0.75);
-moz-box-shadow: -1px -2px 36px 0px rgba(0,0,0,0.75);
box-shadow: -1px -2px 36px 0px rgba(0,0,0,0.75);
position: relative;

}
.item:hover{
    border-color: #00bc91;
}
.item img{
    object-fit:cover;
    height:400px;
    width:100%;
    border-radius:22px;
}
.info-item-work{
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: end;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    opacity: 0;
    border-radius: 30px;
}
.info-item-work:hover{
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 1;
}
.info-item-work p{
    font-family: dana-p;
    font-size: 20px;
    width:800px;
    text-align: center;
    padding: 20px 0;
}
.info-item-work button{
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-family: dana-p;
    background-color: #00bc91;
    color: #fff;
    border: none;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-align: end;
}
.info-item-work button i{
    display: inline-block;
    margin-right:10px;
    text-align: center;
}
.info-item-work button:hover{
    box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
    -webkit-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
    -moz-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
}
.blogs{
    display: flex;
    justify-content: end;
    margin: 30px 100px;
}
.blogs .icon-up{
    transform: translate(30px, 0px);
}
.blogs .main{
    width: 93%;
}
.title-blog{
    text-align: end;
    margin: 50px 60px;
}
.title-blog h1{
    color: #fff;
    font-family: dana-3;
    font-size: 50px;
}
.title-blog span{
    color: #00bc91;
}
.info-blog{
    margin: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items:end;
}
.info-blog h1{
    font-family: dana-3;
}
.blog{
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row-reverse;
    background-color: #292929;
    padding: 10px;
    border-radius: 20px;
    width:100%;
    transition: all 0.3s ease;
}
.blog:hover{
    transform: scale(1.1);
}

.blog img{
    border-radius: 20px;
    margin-right: 10px;
}
.text-blog{
    padding: 0 30px;
    text-align: end;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
.text-blog h3{
    direction: rtl;
    display: flex;
    text-align: end;
    font-family: dana-p;
    color: #fff;
}
.text-blog p{
    color: #9e9999;
    font-family: dana-p;
    font-size: 1.5rem;
    width: 400px;
    padding: 30px 0;
}
.text-blog a{
    text-decoration: none;
    padding: 10px 30px;
    background-color: #00bc91;
    width: 100%;
    font-family: dana-3;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
}
.text-blog a:hover{
    box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
    -webkit-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
    -moz-box-shadow: -2px 1px 35px 0px rgba(0,188,145,0.75);
}
.coustomer{
    margin: 70px 100px;
    display: flex;
    justify-content: end;
    align-items: end;
}
.coustomer .main{
   width: 93%;
}
.coustomer .icon-up{
    transform: translate(30px ,0);
}
.text-coustomer{
    text-align: end;
    margin: 50px 60px;
}
.text-coustomer h1{
    color: #fff;
    font-size: 50px;
    font-family: dana-3;
}
.text-coustomer span{
    color: #00bc91;
}
.text-coustomer p{
    color: #9e9999;
    font-family: dana-p;
    font-size: 20px;

}
.Comments{
    display: flex;
    justify-content: center;
    align-items: center; 
}
.item-coustomer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    width: fit-content;
    padding:80px;
    height:300px;
    border-radius: 20px;
    width: 100%;
}
.star i{
    color: #f8be00;
}
.item-coustomer p{
    font-family: dana-p;
    font-size: 20px;
    color: #9e9999;
    padding: 50px 0;
    text-align: end;
}
.user{
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}
.user img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}
.user-info h4{
    font-family: dana;
    color: #fff;
}
.user-info h6{
    font-family: dana;
    font-size: 15px;
    color: #fff;
    text-align: end;
}
.swiper{
    width: 90%;
    border-radius: 20px;
}
.Contact-Me{
    margin: 70px 100px;
    display: flex;
    justify-content: end;
}
.Contact-Me .main{
    width: 93%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}
.Contact-Me .icon-up{
    transform: translate(30px,5px);
}
.text-contact{
    text-align: end;
    margin:50px 60px ;
}
.text-contact h1{
    color: #fff;
    font-size: 50px;
    font-family: dana-3;
}
.text-contact span{
    color: #00bc91;
}
.text-contact p{
    color: #9e9999;
    font-family: dana-p;
    font-size: 20px;
}
.contact{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: row-reverse;
    width: 90%;
    margin: auto;
}
.contact .right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content:end;
    align-items: end;
}
.contact .info-content{
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    align-items: center;
    gap:30px;
    margin-top:40px;
}
.contact .right i{
    font-size:35px;
    color: #00bc91;
}
.contact .right h4{
    font-size: 20px;
}
.contact .right h5{
    color: #9e9999;
}
.text-right{
    text-align: end;
    font-family: dana-p;
    color: #fff;
}
.contact .left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
}
.contact .left input{
    margin-top:20px;
    width:100%;
    height: 50px;
    border-radius:5px;
    text-align: end;
    border: 1px solid #9e9999;
    background-color: transparent;
}
.contact .left input:nth-child(3){
    height: 100px;
}
.contact .left input:valid{
    font-size: 15px;
    color: #9e9999;
    font-weight: 700;
    font-family: dana-p;
    padding-right: 10px;
}
.contact .left input:focus{
    border-color: none;
}
.contact .left button{
    width: fit-content;
    margin-top: 30px;
}
@media screen and (min-width : 1280px) {
   .container .main{
        width: 93%;
    }
    .main{
        width:93%;
    }
    .info-aboute p{
        width: 100%;
    }
    .counter-item:not(:last-child)::before{
        right: -5rem;
    }
    .tutorial{
        width: 1000px;
    }
    .counter-grid{
        text-align: end;
        gap:100px;
    }
    .texts p{
        width: 350px;
    }
    .box{
        width: 100%;
    }
}
@media screen and (max-width : 1280px) {
    .main{
        width: 93%;
    }
    .info-main .info h3{
        font-size: 3.5rem;
    }
    .tutorial{
        width: 1000px;
    }
    .counter-grid{
        text-align: end;
        display: flex;
        gap:33px;
    }
    #section_counter .container{
        margin: auto;
        display: flex;
        justify-content: end;
        align-items:end;
        width: 100%;
    }
    .box{
        width: 20%;
        padding-right: 10px;
    }
    .texts p {
        width: 300px;
    }
    .Services-main{
        gap: 20px;
    }
    .work-item{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .work-item .item{
        width: 93%;
    }
    .info-item-work p{
        width: 600px;
    }
    .text-blog p{
        width: 300px;
        font-size: 1.2rem;
    }
    .text-blog a{
        width: 80%;
    }
    .swiper{
        width: 80%;
    }
    .Contact-Me{
        margin: 35px 50px;
    }
    .item-coustomer p{
        text-align: end;
    }
    .Contact-Me{
        margin: 70px 100px;
    }
    .Contact-Me .main{
        width: 93%;
    }
}
@media screen and (max-width : 1180px) {

    .aboute-me .main,
    .skills .main,
    .Services .main,
    .Work-samples .main,
    .blogs .main,
    .coustomer .main,
    .Contact-Me .main{
        width: 100%;
    }
    .aboute-me,
    .skills,.Services,
    .Work-samples,
    .blogs,
     .coustomer,
     .Contact-Me{
        margin:30px;
    }
    .skills-info,
    .info-work-saples,
    .title-blog,
    .text-coustomer,
    .text-contact{
        margin:30px 5px;
    }
    .main img{
        width:350px;
    }
    .container{
        width: 100%;
        padding-top:80px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    .info-main .info h2{
        font-size: 45px;
    }
    .hum-1{
        display: flex;
        z-index: 1;
    }
    .menu{
        left: -500px;
    }
    .tutorial{
        width: 900px;
    }
    .btn-up{
        left: 10px;
        z-index: 99;
    }
    .icon-up{
        margin-right:20px;
    }
    .info-aboute{
        padding: 30px 10px;
    }
    .Information{
        grid-template-columns: repeat(2, auto);
    }
    .counter-grid{
        gap: 70px;
    }
    .text-blog p{
        width:300px;
    }
    .texts p{
        width: 250px;
    }
    .box-services p{
        width: 300px;
    }
    .work-item img{
        width: 100%;
    }
    .user img{
        width: 40px;
    }
}
@media screen and (max-width : 990px){

    .container .main{
        margin: 0;
        width: 93%;
    }
    .aboute-me .main,
    .skills .main,
    .Services .main,
    .Work-samples .main,
    .blogs .main,
    .coustomer .main,
    .Contact-Me .main{
        width: 100%;
    }
    .aboute-me,
    .skills,.Services,
    .Work-samples,
    .blogs, 
    .coustomer,
    .Contact-Me{
        margin:30px;
    }
    .main img{
        width:280px;
    }
    .info-main .info h3{
        font-size: 3rem;
    }
    .info-main .info p{
        width: 400px;
    }
    .tutorial{
        width: 600px;
    }
    .counter-grid{
        gap: 70px;
    }
    .work-item img{
        width: 100%;
    }
    .skills-info,
    .info-work-saples,
    .title-blog,
    .text-coustomer,
    .text-contact{
        margin:30px 5px;
    }
    .user img{
        width: 40px;
    }

}
@media screen and (max-width : 900px){
    .box-services p{
        width: 250px;
    }
}
@media screen and (max-width : 810px){
    .btn-info-aboute{
        padding: 5px 15px;
        font-size: 15px;
    }

    .container .main img{
        display: none;
    }
    .info-main .info h3{
        font-size: 2rem;
    }
    .work-item img{
        width: 100%;
        height: 40vh;
        object-fit: fill;
    }
    .info-item-work p{
        width: 400px;
    }
    .info-main .info p{
        width: 500px;
    }
    .counter-grid{
        gap:20px;
    }
    .box-services{
        width: 100%;
    }
    .box-services p{
        width: 210px;
    }
    .blog {
        width: 100%;
    }
    .text-blog p{
        width: 200px;
    }
}
@media screen and (max-width : 725px){

    .info-main{
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }
    .info-aboute h1,
    .info-aboute h1,
    .info-skills h1,
    .info-work-saples h1,
    .title-blog h1,
    .text-coustomer h1,
    .text-contact h1{
        font-size: 40px;
    }
    .Services-main {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        width: 100%;
        justify-content: end;
        align-items: end;
    }
    .box-services p{
        width:500px;
    }
    .item{
        width: 100%;
    }
    .work-item{
        display: flex;
        width: 100%;
    }
    .work-item img{
        width: 100%;
        height: 40vh;
        object-fit: fill;
    }
    .info-item-work p{
        width: 400px;
    }
    .blog {
        display: grid;
    }
    .blog img{
        width: 100%;
    }
    .text-blog p{
        width: 100%;
    }
    .text-blog{
        padding: 30px;
    }
    .text-blog a{
        width: 100%;
    }
    .swiper{
        width: 100%;
    }
    .item-coustomer{
        display: grid;
        justify-content:end;
        align-items: end;
        width: 100%;
        padding: 20px;
    }
    .star{
        display: flex;
        justify-content: end;
        padding: 0 20px;
    }
    .item-coustomer p {
        padding: 0 30px;

    }
    .contact{
        display: grid;
        justify-content: end;
        align-items: end;
        width: 100%;
    }
    .contact .right{
        width: 100%;
    }
    .contact .left{
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: end;
        margin: 10px 0;
    }
    .contact .left input{
        width: 600px;
    }
    .container .icon-up p{
        transform: translate(5px , 0);
    }
    .icon-up p{
        transform: translate(-10px , 0);
    }
}
@media screen and (max-width : 695px){
    .aboute-me .main,
    .skills .main,
    .Services .main,
    .Work-samples .main,
    .blogs .main,
    .coustomer .main,
    .Contact-Me .main{
        width: 100%;
    }
    .aboute-me,
    .skills,.Services,
    .Work-samples,
    .blogs, 
    .coustomer,
    .Contact-Me{
        margin:30px;
    }
    .tutorial{
        width: 400px;
    }
    .info-aboute p{
        font-size: 20px;
    }
    .counter-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .box-services{
        width: 100%;
    }
    .box .texts{
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
    }
    .info-aboute p{
        width: 400px;
    }
    .item img{
        width: 300px;
        height: 400px;
        aspect-ratio: 2/3;
    }
    .info-item-work p{
        width: 400px;
    }
    .contact .left{
        width: 100%;
        display: flex;
        justify-content: end;
        align-items: end;
        margin: 10px 0;
    }
    .contact .left input{
        width: 500px;
    }
    .work-item .item img{
        width: 100%;
        height: 40vh;
        object-fit:fill;
    }
}
@media screen and (max-width : 595px){
    .aboute-me .main,
    .skills .main,
    .Services .main,
    .Work-samples .main,
    .blogs .main,
    .coustomer .main,
    .Contact-Me .main{
        width: 100%;
    }
    .aboute-me,
    .skills,.Services,
    .Work-samples,
    .blogs, 
    .coustomer,
    .Contact-Me{
        margin:30px;
    }
    .counter-item:not(:last-child)::before{
        display: none;
    }
    .Information{
        display:grid;
        grid-template-columns: auto;
    }
    .work-item .item img{
        width: 100%;
        height: 33vh;
    }
    .Information a{
        direction: rtl;
        text-align: start;;
    }
    .counter-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .box-services{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .info-main .info p{
        width: 400px;
    }
    .box-services p{
        width: 250px;
    }
    .aboute-me .info-aboute p{
        width: 320px;
        font-size: 15px;
    }
    .box .texts{
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: end;
        margin: auto;
        text-align: end;
    }
    .info-skills p{
        width:300px;
    }
    .contact .left input{
        width: 300px;
    }
    .info-item-work p{
        width: 300px;
    }
    .info-item-work button{
        background: #00bc91;
        font-size: 17px;
    }
    .blog img{
        width: 100%;
    }
    #next{
        display: none;
    }
    #prev{
        display: none;
    }
}
@media screen and (max-width: 495px){
    .aboute-me .main,
    .skills .main,
    .Services .main,
    .Work-samples .main,
    .blogs .main,
    .coustomer .main,
    .Contact-Me .main{
        width: 100%;
    }
    .aboute-me,
    .skills,.Services,
    .Work-samples,
    .blogs, 
    .coustomer,
    .Contact-Me{
        margin:15px;
    }
    .info-aboute h1, 
    .info-aboute h1,
     .info-skills h1,
      .info-work-saples h1,
       .title-blog h1, 
       .text-coustomer h1,
        .text-contact h1{
            font-size: 35px;
        }
        .counter-grid{
            gap: 20px;
            margin: 0;
        }
        .counter-item{
            text-align: center;
            padding: 0;
        }
        .counter-item h3{
            text-align: center;
            width: 150px;
            font-size: 17px;
        }
    .info-main .info p,
    .info-aboute p{
        width: 320px;
    }
    .box-services p{
        width: 250px;
    }
    .tutorial{
        width: 300px;
    }
    .btn-info-aboute{
        font-size: 10px;
    }
    .Information{
        grid-template-columns: repeat(1,1fr);
    }
    .work-item .item img{
        width:100%;
        height:30vh;
        object-fit:fill;
    }
    .info-item-work p{
        font-size: 16px;
        width: 280px;
    }
    .info-item-work h2{
        font-size: 20px;
    }
    .info-item-work button{
        font-size: 12px;
    }
    .blog img{
        width: 100%;
        object-fit: cover;
    }
    .info-blog{
        width: 90%;
    }
    .blog{
        width:100%;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-right:25px;
    }
 }
 @media screen and (max-width:410px){
    .container{
        width: 100%;
    }
    .main{
        width: 93%;
        margin: 0;
    }
    .info-main .info button,
     .btn-blog, 
     .contact .left button{
        width: 80%;
    }
    .info-main .info p{
        width: 300px;
    }
    .tutorial{
        width: 300px;
    }
    .aboute-me .info-aboute p{
        width:250px;
        font-size: 15px;
    }
    .btn-info-aboute{
        padding: 5px 10px;
        font-size: 10px;
    }
    .counter-grid{
        gap:0;
        text-align: end;
    }
    .counter-item{
        text-align: end;
        padding:0;
    }
    .counter-item h3{
        text-align: end;
        font-size: 15px;
    }
    .info-aboute p{
        width: 250px;
    }
    .box-services p{
        width: 200px;
    }
    .info-skills p{
        width: 250px;
    }
    .texts{
        display: flex;
        justify-content: end;
        align-items: end;
        padding: 0;
    }
    .texts h2{
        font-size: 18px
    }
    .text-i {
        margin: 15px 0;
    }
    .work-item .item img{
        width:100%;
        height: 28vh;
        object-fit:fill;
    }
    .info-item-work p{
        font-size: 13px;
        width: 200px;
    }
    .info-item-work h2{
        font-size: 15px;
    }
    .info-item-work button{
        font-size: 12px;
    }
    .info-blog{
        width: 80%;
    }
    .blog{
        width:250px;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
    }
    .text-blog{
        width: 100%;
    }
    .item-coustomer p{
        width: 300px;
    }
    .contact .left input{
        width: 270px;
    }
    .contact .left button{
        width: 100%;
    }
    .btn-up{
       width:60px;
       height: 60px;
    }
 }