*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    display: block;
}
nav{
    position: sticky;
    top: 0;
    z-index: 100;
    background-color:  rgb(241, 241, 241);
    /* background-color: rgb(241, 241, 241); */
    padding: 5px 0px;
    /* height: 10vh; */
}
.container{
    /* background-color: yellow; */
    width: 70%;
    margin-inline: auto;
}
nav .container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
    /* background-color: aquamarine; */
    /* display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.4rem; */
}
.logo i{
    color: #6e0aef;
}
.logo h4{
    font-weight: 900;
    margin-bottom: 0px !important;
}
.nav-items{
    /* background-color: beige; */
    list-style: none;
    display: flex;
    gap: 20px;
}
.menu{
    display: none;
    color: #6e0aef;
    font-size: 1.9rem;
    cursor: pointer;
    /* background-color: red; */
}
.nav-items li{
    /* background-color: red; */
}
.nav-items li a{
    /* background-color: blueviolet; */
    padding: 5px 10px;
    color: #4e547e;
} 
.nav-items li a:hover{
    color: #6e0aef;
}

.hero-img img{
    width: 100%;
    min-width: 350px;
}
.hero{
    background-color: rgb(241, 241, 241);
    min-height: calc(100vh - 43px);
}

.hero .container{
        height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.hero .content{
    /* background-color: red; */
    max-width: 550px;
}




.content h4{
    color: #6e0aef;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.content h1{
    font-size: 2.6rem;
    margin-bottom: 1rem;

}
.content p{
    color: #1d1d1d;
    font-size: 1.4rem;
    margin-bottom: 1rem;

}
.content p span{
    color: #6e0aef;
}
button{
    width: 10rem;
    border-radius: 0.5rem;
    outline: 0;
    border: 0;
    background-color: #6e0aef;
    color: white;
    padding: 10px ;
    cursor: pointer;
    font-size: 1.2rem;
}
button:hover{
    background-color: #5a08c5;
}
.features .fets{
    /* background-color: rgb(168, 148, 148); */
}
.features,.new-phons{
    padding: 2rem 0px;
    background-color: #f8f7fc;
}
.container h4{
    margin-bottom: 2rem;
    color: #6e0aef;
    font-size: 1.6rem;
}
.features .fets{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.features .fets .fet{
    /* box-sizing: content-box; */
    width: 230px;
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 1rem;
}

.features .fets .fet:hover{
    border: 2px solid #6e0aef;
}

.features .fets .fet i{
    font-size: 1.7rem;
    color: #6e0aef;
}
.features .fets .fet p{
    color: #5a5a5a;
}


.new-phons{
    background-color: white;
}
.phons{
    display: grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    justify-content: start;
    gap: 10px;
    margin-bottom: 20px;
    /* background-color: red; */
}
.phon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* background-color: yellow; */
}
.phon h3{
    text-transform: capitalize;
}
.phon img{
    transition: 0.2s linear scale;

}

.phon img:hover{
    scale: 1.1;
}
.new-phons ,.container{
    text-align: center;
}
.new-phons button{
    width: 200px;
}
footer .container p{
    margin-bottom: 10px;
}
.social{
    /* background-color: red; */
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;

}
.social i{
    font-size: 1.5rem;
    display: block;
    /* background-color: white; */
    padding: 10px;
    color: #6e0aef;
}







@media only screen and (max-width:980px){
    .container{
        width: 98%;
    }
    .hero .container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero .container .hero-img img{
        /* display: none; */
        /* width: 550px; */
        /* height: 200px; */
    }
}

@media only screen and (max-width:640px){
   .nav-items{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: start;
    background-color: rgb(241, 241, 241);
   }
   .nav-items li{
    width: 100%;

   }
   .menu{
    display: block;
   }
   .nav-items a{
    /* background-color: yellow; */
    width: 100%;
    text-align: start;
   }
}
