/*
=============== 
    Fonts
===============
*/

@font-face {
    font-family: "Dana-Regular";
    src: url(../../Fonts/Dana-Regular.ttf);
}
@font-face {
    font-family: "Dana-Medium";
    src: url(../../Fonts/Dana-Medium.ttf);
}
@font-face {
    font-family: "Dana-Bold";
    src: url(../../Fonts/Dana-Bold.ttf);
}

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

*/
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;
    border-bottom: solid 3px blue;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}
.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;
}
p{
    display: block;
}


/*


INFORMATION

*/

.information{
   box-sizing: border-box !important;
}
.information__wrapper{
    display: grid;
   position: relative;
}
.information__banner{
    justify-self: center;
    max-width: 32rem;
    max-height: 48rem;
    object-fit: cover;
}
.information__img{
    width: 100%;
    height: 100%;
}
.information__title{
    font-family: "Dana-bold";
    text-align: center;
    font-size: 3rem;
}
.information__text{
    font-family: "Dana-Medium";
    font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
    .information__wrapper{
        grid-template-columns: 1fr 1fr;
    }
}

/*


Footer


*/

.footer{
    width: 100%;
    height: auto;
    line-height: 8rem;
    margin-top: 2rem;
    background-color: #111931;
    position: relative;
    bottom: -8rem;
}
.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;
}

@media screen and (max-width: 1200px) {}
@media screen and (max-width: 992px) {
    *{
        cursor: default !important;
    }
    .menu{
        background-color: #373A40;
        position: fixed;
        right: -240px;
        top: 0;
        bottom: 0;
        flex-direction: column;
        padding: 3rem;
        transition: 120ms all ease-in ;
    }
    .toggle-menu{
        display: block;
    }
    .nav__link{
        display: none;
    }
    .nav__link-mobile{
        display: block;
    }
    .nav__open{
        right:0;
    }
    .menu__link{
        color: #fff;
    }
    .menu__link:hover{
        color: #fff;
    }
}
@media screen and (max-width: 768px) {
    .nav-logo{
        font-size: 2.2rem;
    }
    .footer__caption{
        font-size: 1.6rem;
    }
    .footer__icon{
        width: 2.5rem;
        height: 2.5rem;
    }
}
@media screen and (max-width: 576px) {
    .footer__wrapper{
        flex-direction: column;
    }
    .footer__caption{
        font-size: 1.4rem;
    }
    .footer__icon{
        width: 2rem;
        height: 2rem;
    }
    .footer__social-wrapper{
        margin-top: 0;
    }
}
@media screen and (max-width: 460px) {
    .footer__icon{
        width: 2.5rem;
        height: 2.5rem;
    }
}
@media screen and (max-width: 310px) {
}
