*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top:3.5rem ;
}
:root{
    --bg-color:#101010;
    --secound-bg-color:#191919;
    --text-color:#fff;
    --second-color:#c6c9d8bf;
    --main-color:#9a0fea;
    --big-font:3.3rem;
    --h2-font:4.2rem;
    --p-font:1.1rem;
}

body{
    background: var(--bg-color);
    color:var(--text-color);
}

header{
   position:fixed;
    width: 100%;
    height: 20px;
    display: flex;
    align-items: center; 

    padding: 30px;
    background: var(--secound-bg-color);
}

.logo{
    color: var(--text-color);
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    visibility: visible;
}
.app_icon{
    width: 40px;
    height: 40px;
    visibility: visible;
}

.textview_welcome{
    width: 100%;
    text-align: center;
}

.textview_app_name_title{
    width: 100%;
    display: block;
    margin:auto;
    font-size: var(--big-font);
    text-align: center;
    font-weight: bold;

}

.textview_app_name_description{
    color:var(--second-color);
    width: 100%;
    text-align: center;
}

.navbar{
    display: flex;

}
.navbar li{
    position: relative;

}
.navbar a{
    color:var(--text-color);
    font-weight: bold;
    font-size: 1rem;
    padding:10px 20px;
}
.navbar a::after{
    content: '';
    position: absolute;
    width:0;
    height:2px;
    background:var(--main-color);
    left:0;
    bottom:-4px;
    transition:ease .40s;
}
.navbar a:hover::after{
    width:100%;

}
#menu-icon{
    font-size:32px;
    color:var(--text-color);
    z-index:10001;
    cursor: pointer;
    display: none;
}


section{
    padding: 80px 4%;
    transition: .2s;
}

.home{
    height: 100%;
    width: 100%;
    margin-top: 10px;
    display:flex;
    align-items: center;
}


.google_play_icon{
    visibility: hidden;
    width: auto;
    height:auto;
    margin-top: 100px;
}

.image_app{
    width: 50%;
    height: 50%;
    margin-left: 100px;
    margin-right: 100px;
    gap:20px;
}

.icons img{
    position:relative;
    top:200px;
    width: 48px;
    height:48px;
    transition:.2s;
}

.home-text h1{
    margin: 20px 0px 20px;
    font-size: var(--big-font);
}

span{
    /*color: var(--main-color);*/
    color:#fff
}

.home-text h3{
    font-size:25px;
    margin-bottom:55px;
}

.home-text h4{
    color:#585c63;
    font-size: 20px;
    letter-spacing: 2px;
}

.newslatter form{
    width:380px;
    max-width:100%;
    position:relative;

}
.newslatter form input:first-child{
    display: inline-block;
    width: 100%;
    outline: none;
    padding:16px 140px 16px 15px;
    border: 2px solid var(--main-color);
    border-radius: 30px;

}

.newslatter form input:last-child{
position:absolute;
display: inline-block;
outline:none;
border: none;
background:var(--main-color);
color:var(--text-color);
padding: 12px 30px;
border-radius: 30px;
box-shadow:0px 0px 6px #000 0px 0px 14px #868686;
cursor: pointer;
top: 6px;
right: 6px;

}

header.sticky{
    padding:12px 15%;
    background:var(--main-color);
}

.sticky .navbar a::after{
    background: var(--text-color);
}



.about{
    background: var(--secound-bg-color);
    display: grid;
    grid-template-columns: repeat(2,2fr);
    align-items: center;
    grid-gap: 2rem;
}
.about-img img{
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 10px;
}

.about-text h2{
    font-size: var(--h2-font);
    margin-bottom: 20px;
}

.about-text h5{
    font-size: 28px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.about-text p{
    color: var(--second-color);
    letter-spacing: 1px;
    line-height: 28px;
    max-width: 590px;
    font-size: var(--p-font);
    margin-bottom: 45px;
}

.btn{
    display: inline-block;
    background: var(--main-color);
    color: var(--text-color);
    border:2px solid transparent;
    font-weight: 600;
    padding: 13px 30px;
    transition:ease .35s;
}

.btn:hover{
    transform:translateY(-8px);
    border:2px solid var(--main-color);
    background:transparent;
}

.services{
    background:var(--bg-color);

}
.center{
    text-align: center;
}
.center h2{
    font-size: var(--h2-font);
    margin-bottom: 15px;
}
.center p{
    color:var(--secound-color);
    letter-spacing: 1px;
    line-height: 28px;
    font-size: var(--p-font);
}
.service-content{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(370px,auto));
    grid-gap: 2rem;
    align-items: center;
    margin-top: 4.5rem;
}
.row{
    background:var(--secound-bg-color);
    padding:55px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition:all .35s;
}
.row i{
    color:var(--main-color);
    margin-bottom: 20px;
    font-size: 2.7rem;
}
.row h3{
    color:var(--text-color);
    font-size:22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.row p{
    color:var(--second-color);
    line-height: 30px;
    font-size: var(--p-font);
}
.row:hover{
    transform: translateY(-8px);
}
.portfolio{
    background: var(--secound-bg-color);
}
.portfolio-content{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,auto));
    grid-gap: 2rem;
    align-items: center;
    margin-top: 4.5rem;
    cursor:pointer;
}
.box img{
    max-width: 100%;
    width: 500px;
    height:auto;
    border-radius: 10px;
    margin-bottom: 20px ;
    transition: all .30s;
}
.box p{
    color:var(--second-color);
    font-size: var(--p-font);
    margin-bottom: 15px; 
}

.box h5{
    color: var(--text-color);
    font-size:10px ;
    font-weight: 700;
}
.box img:hover{
    transform:scale(1.1);
}

.contact{
    background:var(--bg-color);
    display: grid;
    grid-template-columns: repeat(2,2fr);
    align-items: center;
    grid-gap: 3rem ;
}
.contact-img img{
    max-width: 100%;
    width: 700px;
    height:auto;
    border-radius:10px;
   
}
.contact-form h2{
font-size: var(--h2-font);
margin-bottom:15px;
}
.contact-form p{
   color:var(--second-color);
   letter-spacing: 1px;
   line-height: 28px;
   font-size:var(--p-font); 
   margin-bottom: 4.1rem;
}
.contact-form form{
    position:relative;
}
.contact-form form input,
form textarea{
    width:100%;
    padding:20px;
    border:none;
    outline:none;
    background: var(--secound-bg-color);
    color:var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
}

.contact-form textarea{
    resize:none;
    height: 200px;

}

.contact-form form .send{
    display:inline-block;
    background: var(--main-color);
    color:var(--text-color);
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    width:200px;
    transition: ease .35s;
    text-transform: uppercase;
}
.contact-form form .send:hover{
    transform: translateY(-8px);
    cursor:pointer;
}
.footer{
    text-align:center;
    background: var(--secound-bg-color);
    padding:34px;
}
.footer-link{
    font-size: 17px;
    color: var(--text-color);
    letter-spacing: 1px;
}


@media(max-width:990px){


    .app_icon{
        width: 25px;
        height: 25px;
        visibility: hidden;
    }

    .logo{
        color: var(--text-color);
        font-size: 30px;
        font-weight: bold;
        letter-spacing: 1px;
        visibility: hidden;
    }

    .header{
        width: 100%;
        visibility: hidden;
        height:1px;
    }


    .textview_welcome{
        width: 100%;
        text-align: center;
        margin-top: 0px;
    }

    .textview_app_name_title{
        width: 100%;
        display: block;
        margin:auto;
        font-size: var(--big-font);
        text-align: center;
        font-weight: bold;
    
    }

    #menu-icon{
        display: inline;
        visibility: hidden;
    }
    .navbar{
        background-color: #9a0fea;
        visibility: hidden;
        position:absolute;
        display: flex;
        flex-direction: row;
        height:1px;
        top:0;
        left:0;
        right:0;
        justify-content: space-between;
    
        transition: all .30s;
    }
    .navbar a{
        color:var(--text-color);
    font-weight: bold;
    font-size: 1rem;
    padding:10px 20px;


    }
    .navbar a:hover{
        background:var(--main-color);
    }
    .navar a::after{
        display: none;
    }
    .navbar.active{
        top:100%;
    }


    section{
        padding: 80px 4%;
        transition: .2s;
    }
    
    .home{
        height: 100%;
        width: 100%;
        margin-top: 10px;
        display:block;
        align-items: center;
    }


 

    
    .google_play_icon{
        width: 50%;
        display: block;
        margin: auto;
        height:auto;
        visibility: visible;
        margin-top: 50px;
        justify-content: center;
    }
    
    .image_app{
        width: 50%;
        height: 50%;
        display: block;
        margin:auto;
    }


    .footer-link{
        font-size: 17px;
        color: var(--text-color);
        letter-spacing: 1px;
    }
    
}

