html{
    font-size: 10px;
}
body{
    direction: rtl;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: "Dana-Regular";
}
*{
    box-sizing: border-box !important;
}
a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
:root{
    --text-color:#373A40;
    --main-color:#4C3BCF;
}

/*

-- Reset Styles

*/

/*

-- Components

*/
.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__img-wrapper{
    width: 100%;
    height: 100%;
}
.box__img{
    width: 100%;
    height: 100%;
    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;
}

/*


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;
}