html{
    font-size: 10px;
}
body{
    direction: rtl;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: "Dana-Regular";
}
*{
    box-sizing: border-box !important;
}
:root{
    --text-color:#373A40;
    --main-color:#4C3BCF;
}

/*

-- Reset Styles

*/

/*

-- Components

*/
a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.app-btn {
    width: 18rem;
    height: 5.2rem;
    border-radius: 4rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*

Main

*/

/*


NAVBAR


*/
.nav{
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 3px blue;
}
.nav-logo{
    font-size: 3rem;
    color: black;
    font-family: "Dana-Bold";
}
.menu{
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 99;
}
.menu__item{
  
}
.menu__link{
    font-family: "Dana-Medium";
    font-size: 2rem;
    transition: all 120ms ease-in;
    color: var(--text-color);
}
.menu__link:hover{
    color:var(--main-color);
}
.nav__link{
    background-color: var(--main-color);
    font-size: 1.8rem;
    transition: all 170ms ease-in;
}
.nav__link:hover{
    background-color: #6554e8;
    transform: scale(0.95);
}
.nav__link-mobile{
    display: none;
    background-color: var(--main-color);
    font-size: 1.8rem;
    transition: all 120ms ease-in;
    line-height: 5.2rem;
    text-align: center;
}
.toggle-menu{
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    display: none;
}
.nav__logo-img{
    width: 7rem;
    height: 7rem;
}

.boxes-wrapper{
    margin-top: 15rem;
    line-height: 2;
}
.box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.20);
    padding: 3rem 0;
    border-radius: 1rem;
    position: relative;
}
.box__icon{
    transition: all 500ms ease-in !important;
    width: 3rem;
    height: 3rem;
    position: absolute;
    right: 90%;
    top: 1rem;
    stroke: #56554e;
    cursor: pointer;
}
.box__icon--active{
    fill: #FFD700;
}
.box__img-wrapper{
    width: 20rem;
    height: 20rem;
}
.box__img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 0.5rem solid #4C3BCF ;
    box-shadow: 0 0 3rem  rgba(75, 112, 245 , 0.20);
    object-fit: cover;
}
.box__title{
    margin-top: 1rem;
    font-family: "Dana-Bold";
    font-size: 2rem;
}
.box__caption{
    font-family: "Dana-Medium";
    font-size: 1.8rem;
}
.box__description{
    font-family: "Dana-regular";
    font-size: 1.6rem;
}

/*


Footer


*/

.footer{
    width: 100%;
    height: auto;
    line-height: 8rem;
    margin-top: 2rem;
    background-color: #111931;
}
.footer__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__caption{
    color: #fff;
    font-size: 2rem;
    font-family: "Dana-Medium";
}
.footer__social-wrapper{
    margin-top: 1rem;
    flex-wrap: wrap;
    text-align: center;
}
.footer__link{

}
.footer__icon--bale{
    fill: #fff;
}
.footer__icon{
    width: 3rem;
    height: 3rem;
    color: #fff;
    margin-right: 1rem;
}




.category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
    margin-bottom: -70px;
}

.category__item {
    color: #fff;
    width: 100px;
    background-color: #4C3BCF;
    text-align: center;
    padding: 6px;
    border-radius: 9px;
}

.category__item a{
    color: white;
}



.box__category {
    color: white;
    background-color: #4C3BCF;
    padding: 8px;
    border-radius: 1rem;
    margin-top: 8px;
}