@import url('https://fonts.googleapis.com/css2?family=Almarai&family=Anton&family=Bangers&family=Boogaloo&family=Ceviche+One&family=Karla&family=Orbitron&family=Poppins:wght@400;900&family=Staatliches&family=Yanone+Kaffeesatz&display=swap');


*{
    padding: 0;
    margin: 0;
}

:root{
    --primary-color: #dcf4e3; 
    --secondry-color: #4ccb70; 
    --third-color: #289b7f; 
    --text-color: rgba(24, 24, 24, 0.80); 
}

body{
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: 'Poppins';
}

/* SCROLL BAR  */
::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    border-radius: 1em;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.25);
}
::-webkit-scrollbar-thumb{
    border-radius: 1em;
    background-color: rgba(0, 0, 0, 0.2);
}

a{
    text-decoration: none;
}

/* HOME */
.home{
    width: 100%;
    height: 100%;
}

/* HEADER */
.home header{
    width: 100%;
    height: 40vh;
    background-image: url('../../uploads/img/main.svg');
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}
.home header .bar{
    display: flex;
    justify-content: space-around;
    position: fixed;
    top: 0;
    background-color: white;
    box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.142);
    border-radius: 0 0 2em 2em;
    padding: 1em;
    align-items: center;
    width: 60%;
    z-index: 3;
}
/* IMAGE SIZE */
.home header .bar img{
    width: 20px;
    padding: .5em;
    clip-path: circle();
    background-color: var(--secondry-color);
}
/* CENTER */
.home header .bar .center{
    display: flex;
    justify-content: space-between;
    
}
.home header .bar .center a{
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    margin: 0 1em;
}
.home header .bar .center a img{
    transition: .5s;
}
.home header .bar .center a span{
    margin: 0 .5em ;
    position : relative;
    top: -.7em;
    transition: .5s;
}
.home header .bar .center a .one{
    background-color: #219ebc;
}
.home header .bar .center a:nth-child(1):hover{
    color:  #219ebc;
}
.home header .bar .center a .two{
    background-color: var(--secondry-color);
}
.home header .bar .center a:nth-child(2):hover{
    color:  var(--secondry-color);
}
.home header .bar .center a .three{
    background-color: #f7b267;
}
.home header .bar .center a:nth-child(3):hover{
    color:  #f7b267;
}
.home header .bar .center a .four{
    background-color: #9d4edd;
}
.home header .bar .center a:nth-child(4):hover{
    color:  #9d4edd;
}
.home header .bar .center a img:hover{
    transform: scale(.8);
}

/* MENU */
.home .bar .menu{
    color:var(--third-color);
    background-color: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
}

/* LEFT */
.home header .bar .left a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--third-color);
}
/* RIGHt */
.home header .bar .right a img{
    background-color: var(--primary-color);
}
.home header .bar .right button{
    background-color: transparent;
    color: var(--text-color);
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    top: -.5em;
    right: 1em;
}

/* TITLE */
.home .title{
    text-align: center;
    color: var(--third-color);
    text-transform: uppercase;
    position: relative;
    top: -4em;
    font-size: 28px;
}

/* CARDS */

/* FIRE PART */
.home .cards{
    margin: 0 5%;
}

.home .cards .columns{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}
.home .cards .fire h3{
    text-transform: uppercase;
}
.home .cards .fire h3 i{
    color: white;
    background-image : linear-gradient(180deg,#f13636,#f77f00);
    padding: .5em;
    clip-path: circle();
    margin-right: .5em;
}
/* CARDS => CARD  */
.home .cards .card{
    border-radius: 1em;
    background-color: white;
    padding: 1em;
    padding-bottom: 2em;
    /* width: 22%; */
    margin: 3em 1em;
    text-align: center;
    cursor: pointer;
}
.home .cards .card p{
    font-weight: 600;
    margin-top: 1em;
}
.home .cards .card img{
    width: 45%;
    /* height: 120px; */
    position: relative;
    margin-top: -2.5em;
    box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.142);
    border-radius: 1em;
    z-index: 2;
    transition: .5s;
}
.home .cards .card .info{
    position: absolute;
    background-color: white;
    padding: .3em;
    border-radius: 2em;
    box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.142);
    margin-top: -6%;
    z-index: 1;
}
.home .cards .card .info span{
    font-size: 13px;
}

.home .cards .card  .cl1{
    position: relative;
    width: 100%;
    height: 100px;
    padding: 1em;
    margin-left: -1em;
    border-radius: 1em 1em 50% 50%;
    /* clip-path: circle(90px at center 0); */
    background-image: linear-gradient(140deg ,#289b7f,#4ccb70 );
    text-align: center;
    margin-top: -39%;
    transition: .5s;
}
.home .cards .card:hover img{
    transform: translateY(-.5em);
}


/* ANDROID PART*/
.home .top{
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
}
.home .top h3{
    text-transform: uppercase;
}
.home  .top h3 span{
    font-size: 15px;
    text-transform: none;
    font-weight: 500;
    margin-left: 3.2em;
    position: relative;
    top: -.5em;
}
.home  .top h3 i{
    color: white;
    background-image : linear-gradient(180deg,rgb(25, 174, 25),rgb(86, 181, 86));
    padding: .5em;
    clip-path: circle();
    margin-right: .5em;
}
.home .new .top h3 i{
    background-image : linear-gradient(180deg,rgb(245, 237, 5),rgb(245, 214, 12));
}
.home .windows .top h3 i{
    background-image : linear-gradient(180deg,rgb(53, 127, 224),rgb(12, 144, 245));
}
.dropdown_items{
    text-decoration: none !important;
     font-size: 16px !important;
     font-weight: 100 !important;
    letter-spacing: .05em !important;
    color: black !important;
}
.home  .top a{
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--secondry-color);
    border-radius: 2em;
    padding: .8em 1.5em;
    transition: .3s;
    top: -0.4em;
    position: relative;
}
.home .top a i{
    display: none;
}
.home  .top a:hover{
    box-shadow: 0 0 5px 5px #60e4856b;
}
.home .cards .card .details{
    display: flex;
    justify-content: space-around;
    opacity: .5;
    margin-top: .5em;
}
.home .cards .two{
    display: grid;
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
}
.home .cards .two .card{
    padding: 1em 2em;
    margin: 1em;
}
.home .cards .two .card img{
    margin-top: 0;
    width: 90%;
}
.home .cards .two .card p{
    font-size: 13px;
    margin-bottom: .5em;
}
.home .cards .two .card span{
    color: var(--secondry-color);
    font-size: 13px;
}
.home .cards .card .details span{
    color: var(--text-color);
    font-weight: 550;
}


/* FOOTER */
.home footer{
    background-color: #173a62;
    color: white;
    padding: 2em;
    border-top: 5px #219ebc solid;
}

/* FOOTER => NEWS */
.home  footer .three{
    display: grid;
    grid-template-columns: 50% 50%;
}
.home  footer .top h3 i{
    background-image: linear-gradient(180deg,#9d4edd,#923ed6);
}
.home footer .three .card{
    display: flex;
    justify-content: space-between;
    background-color: #dcf4e324;
    align-items: center;
    text-align: left;
    padding: 1em;
    padding-right: 0;
    border-radius: 1em;
    height: 70%;
    transition: .3s;
    cursor: pointer;
    margin: .5em;
}
.home  footer .three .card img{
    width: 36%;
    height: 120%;
    border-radius: 0 1em 1em 0;
    opacity: .8;
}
.home footer .three .card:hover img{
    opacity: 1;
    transform: translateY(0);
}
.home footer .three .card .deta{
    display: flex;
    flex-direction: column;
}
.home footer .three .card span{
    background-color: #dcf4e324;
    border-radius: 2em;
    padding: .5em;
    font-size: 13px;
    width: fit-content;
    margin-bottom: 1.5em;
}
.home footer .three .card p{
    font-size: 13px;
    font-weight: 500;
    margin-top: .3em;
}
.home footer .three .card a{
    color: var(--secondry-color);
    text-decoration: none;
    position: relative;
    top: 1em;
}
/* FOOTER => COMMENTS */
.home  footer .four{
    display: grid;
    grid-template-columns: 33% 33% 33%;
}
.home  footer .four .card{
    background-color: #dcf4e324;
    padding: 1em;
    border-radius: 1em;
    text-align: center;
    margin: .5em;
}
.home  footer .four .card img{
    width: 50px;
    clip-path: circle();
    position: relative;
    margin-top: -1.5em;
}
.home  footer .four .card .name{
    opacity: .5;
    font-size: 13px;
}
.home  footer .four .card p{
    font-size: 14px;
    color: var(--secondry-color);
    margin: .5em 0;
}
.home  footer .four .card .feedback{
    color: var(--primary-color);
}
.home  footer .four .card .date{
    font-size: 12px;
    opacity: .5;
}



/* SECEND PAGE */
.home .app_info{
    background-color: #173a62;
    color: white;
    padding: 2em;
    padding-bottom: 7em;
    position: relative;
    text-align: center;
}
.home .app_info h3{
    font-size: 30px;
    margin-bottom: 2em;
}
.home .app_info div{
    display: flex;
    justify-content: center;
}
.home .app_info div img{
    border-radius: 1em;
    width: 18%;
    height: 18%;
    margin-right: 4em;
}
.home .app_info div ul{
    list-style-type: none;
    text-align: left;
    line-height: 3em;
    margin-right: 2em;
}
.home .app_info div ul li i{
    color: var(--secondry-color);
    font-size: 18px;
    margin-right: 1em;
}
.home .app_info div .rate{
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: -10em;
}
.home .app_info div .rate span{
    font-size: 13px;
    opacity: .5;
    margin: 1em 0;
}
.home .app_info div .rate p{
    font-size: 12px;
    padding: .5em 1em;
    background-color: var(--secondry-color);
    border-radius: 2em;
}
.home .app_info div .information .inf ul li{
    color: white;
}

/* DESCRIPTION */
.home .description{
    background-color: var(--primary-color);
    padding: 2em;
    display: flex;
    justify-content: center;
}
.home .description .main{
    background-color: white;
    padding: 2em;
    width: 60%;
    border-radius: 1em;
    position: relative;
    margin-top: -5em;
}
.home .description .main button:first-child{
    border: none;
    font-family: 'Poppins';
    background-color: transparent;
    border-top: 4px var(--secondry-color) solid;
    color: var(--secondry-color);
    font-weight: 550;
    position: relative;
    top: -2.4em;
    padding-top: 1em;
}
.home .description .main .content{
    border-left: var(--secondry-color) 4px solid;
    padding: 1em 2em;
    margin: 1em 0;
    border-radius: 1em;
    background-color: #dcf4e379;
}
.home .description .main .content .titl{
    display: flex;
    justify-content: space-between;
}
.home .description .main .content .titl i{
    color: var(--primary-color);
    background-color: var(--secondry-color);
    clip-path: circle();
    padding: .5em;
    cursor: pointer;
}
.home .description .main .content  ul{
    margin-left: 2em;
    color: var(--secondry-color);
    line-height: 2em;
    /* display: none; */
}
.home .description .main button:last-child{
    background-color: var(--secondry-color);
    padding: 1em;
    border-radius: 2em;
    border: none;
    font-family: 'Poppins';
    color: var(--primary-color);
    position: relative;
    left: 43%;
    top: 1em;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.142);
}

/* SCREEN */

.home  .screen{
    background-color: var(--primary-color);
    text-align: center;
    padding: 2em;
    display: flex;
    justify-content: center;
}
.home  .screen div:first-child{
    background-color: white;
    padding: 2em;
    width: 60%;
    border-radius: 1em;
    position: relative;
}
.home  .screen div i{
    color: white;
    background-color: #f77f00;
    padding: .6em;
    font-size: 20px;
    clip-path: circle();
    position: relative;
    top: -3em;
}
.home  .screen div h3{
    font-size: 25px;
    margin-top: -1em;
    margin-bottom: .5em;
}
.home  .screen div div img{
    width: 180px;
    transition: .5s;
}
.home  .screen div div img:hover{
    transform: translateY(-.5em);
}

/* RATING */
.home .rating{
    background-color: var(--primary-color);
    text-align: left;
    padding: 2em;
    display: flex;
    justify-content: space-around;
}
.home .rating .share p{
    opacity: .5;
}
.home .rating .share ul{
    display: flex;
    list-style-type: none;
    opacity: .5;
}
.home .rating .share ul a{
    display: flex;
    color: var(--text-color);
    /* font-size: 14px; */
    align-items: center;
    text-decoration: none;
    margin: .5em;
    transform: .5s;
}
.home .rating .share ul a:hover{
    color: var(--secondry-color);
    opacity: 1;
}

.home .rating .share ul a i{
    margin-right: .5em;
    font-size: 20px;
    transform: .5s;
}
.home .rating .vote{
    display: flex;
    align-items: center;
}
.home .rating .vote img{
    width: 70px;
    border-radius: 1em;
}
.home .rating .vote h3{
    color: var(--secondry-color);
    font-size: 40px;
    margin: 0 .3em;
}
.home .rating .vote div i{
    color: var(--secondry-color);
    font-size: 13px;
}
.home .rating .vote div span{
    font-size: 13px;
    font-weight: 550;
    opacity: .5;
}

/* DOWNLOAD */
.home .download{
    background-color: var(--primary-color);
    padding: 2em;
    display: flex;
    justify-content: center;
}
.home .download .down{
    width: 60%;
    padding: 2em;
    border-radius: 1em;
    border: 3px var(--secondry-color) solid;
    background-color: white;
}
.home .download .down div:first-child{
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
}
.home .download .down div:first-child img{
    width: 50px;
    height: 50px;
    margin-right: 1em;
    border-radius: .5em;
}
.home .download .down div:last-child{
    margin-top: 2em;
}
.home .download .down div a{
    background-color: var(--secondry-color);
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: .7em 1em;
    border-radius: 2em;
    margin: .5em 0;
    align-items: center;
    transition: .5s;
}
.home .download .down div a:hover{
    box-shadow: 0 0 5px 5px #60e4856b;
}
.home .download .down div a:last-child{
    background-color: #219ebc;
}
.home .download .down div a i{
    margin-right: 1em;
}
.home .download .down div a span{
    background-color: rgba(0, 0, 0, 0.29);
    border-radius: 2em;
    padding: .5em 1em;
    font-size: 12px;
}


/* COMMENTS */
.home .comments{
    background-color: var(--primary-color);
    padding: .5em 2em;
    display: flex;
    justify-content: center;
}
.home .comments .main_com{
    width: 60%;
    padding: 2em;
    border-radius: 1em;
    background-color: white;
}
.home .comments .top{
    justify-content: space-between;
    margin: 0;
}
.home .comments .comment{
    padding: 1.5em 1em;
    border-radius: 1em;
    background-color: var(--primary-color);
    margin: 1em 0;
}
.home .comments .comment .part_1{
    display: flex;
    justify-content: space-between;
    padding-bottom: 1em;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
}
.home .comments .comment .user{
    display: flex;
    align-items: center;
}
.home .comments .comment .user{
    font-size: 13px;
}
.home .comments .comment .user img{
    width: 40px;
    clip-path: circle();
    margin-right: 1em;
}
.home .comments .comment .user div{
    margin-right: 1em;
}
.home .comments .comment .user div p{
    font-weight: 550;
    font-size: 15px;
}
.home .comments .comment .user div span{
    font-size: 13px;
    background-color: var(--text-color);
    color: var(--primary-color);
    border-radius: 2em;
    padding: 0 .5em;
}
.home .comments .comment .like{
    display: flex;
    justify-content: space-between;
    width: 15%;
    text-align: center;
}
.home .comments .comment .like div button{
    border: none;
    background-color: transparent;
    color: var(--secondry-color);
    font-size: 20px;
    cursor: pointer;
}
.home .comments .comment .like div .disliked{
    color: #f13636;
}
.home .comments .comment .part_2{
    padding-top: 1em;
}
.home .comments .comment .part_2 button{
    background-color: transparent;
    color: var(--text-color);
    border: none;
    font-size: 15px;
    margin-top: 1em;
    font-weight: 550;
    opacity: .5;
    cursor: pointer;
    transition: .3s;
}
.home .comments .comment .part_2 button i{
    margin-left: .5em;
}
.home .comments .comment .part_2 button:hover{
    opacity: 1;
}
/* ADD COMMENT */
.home .msg{
    background-color: var(--primary-color);
    padding: 1em 2em;
    display: flex;
    justify-content: center;
}
.home .msg .top{
    justify-content: space-between;
    margin: 0;
    margin-bottom: 1em;
}
.home .msg form{
    width: 60%;
    padding: 2em;
    border-radius: 1em;
    background-color: white;
}
.home .msg form label{
    font-size: 13px;
    margin-left: .5em;
    opacity: .7;
}
.home .msg form .cont{
    display: flex;
    justify-content: space-between;
}
.home .msg form .cont div{
    width: 100%;
}
.home .msg form .cont input{
    border: 1px rgba(0, 0, 0, 0.211) solid;
    border-radius: .5em;
    padding: .8em 1em;
    width: 85%;
    margin:.5em;
    color: var(--text-color);
    /* box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.1); */
}
.home .msg form .cont input:focus{
    outline: none;
     box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.056);
}
.home .msg form .big{
    width: 100%;
}
.home .msg form .big textarea{
    width: 92%;
    border: 1px rgba(0, 0, 0, 0.211) solid;
    border-radius: .5em;
    padding: .8em 1em;
    margin:.5em;
    color: var(--text-color);
}
.home .msg form .big textarea:focus{
    outline: none;
    box-shadow: 5px 5px 5px rgba(12, 12, 12, 0.056);
}
.home .msg form button{
    background-color: var(--secondry-color);
    color: var(--primary-color);
    border-radius: 2em;
    padding: .8em 1.5em;
    border: none;
    font-family: 'Poppins';
    margin-top: 1em;
    cursor: pointer;
}
.home .related{
    position: relative;
    background-color: var(--primary-color);
    margin-top: -1em;
    padding: 2em 0;
}

/* ABOUT */
.home .about{
    display:grid;
    grid-template-columns: 25% 25% 25% 25%;
    padding: 4em 2em;
}
.home .about div{
    margin: 1em;
}
.home .about div p:first-child{
    padding-bottom: .5em;
    margin-bottom: 1em;
    border-bottom: 2px white solid;
    font-size: 14px;
}
.home .about div p:first-child::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #219ebc;
    margin-top: 1.95em;
}
.home .about div p:last-child,ul{
    color: var(--secondry-color);
    list-style-type:square;
}
.home .about div ul{
    line-height: 2em;
    margin-left: 1em;
}
/* BOTTOM BAR */
.home .bottom_bar{
    display: flex;
    justify-content: center;
    position: relative;
    top: 2em;
}
.home .bottom_bar .bot{
    background-color: #191a1924;
    padding: 1em 4em;
    border-radius: 2em 2em 0 0;
}
.home .bottom_bar .icons a{
    color: var(--primary-color);
    margin: 0 .5em;
    padding: .5em;
    clip-path: circle();
    background-color: #173a62;
}
.home .bottom_bar .icons a:nth-child(2){
    background-color:rgb(12, 144, 245);
}
.home .bottom_bar .icons a:nth-child(3){
    background-color:rgb(25, 136, 221);
}
.home .bottom_bar ul{
    list-style: none;
    display: flex;
}
.home .bottom_bar ul li a{
    color: var(--secondry-color);
    text-decoration: none;
    margin: 0 1em;
    font-size: 14px;
}
.home .bottom_bar div div{
    display: flex;
    justify-content: space-between;
    margin-top: .5em;
    align-items: center;
}
.home .bottom_bar div div p{
    font-size: 14px;
}
.home .bottom_bar div div p span{
    color: var(--secondry-color);
    margin: 0 .3em;
}

/* LEFT MENU */
.home .left_menu{
    padding: 2em;
    background-color: white;
    border-radius: 0 2em 0 0;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 5;
    height: 100vh;
    width: 40%;
    visibility: hidden;
    transition: .5s;
}
.home .left_menu button{
    background-color: var(--primary-color);
    color: var(--secondry-color);
    border: none;
    padding: 1em;
    clip-path: circle();
    cursor: pointer;
}
.home .left_menu #title{
    margin: 1em 0;
}
.home .left_menu .ser{
    margin: 2em 0;
    margin-top: 0;
    
}
.home .left_menu .ser input{
    width: 95%;
    padding: .7em 1em;
    border-radius: 1.5em;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.home .left_menu .ser input:focus{
    outline: none;
}
.home .left_menu .ser input:focus + i{
    display: none;
}
.home .left_menu .ser i{
    margin-left: -2em;
}
.home .left_menu .boxs{
    display: grid;
    grid-template-columns: 50% 50%;
}
.home .left_menu .boxs .box{
    padding: 1em;
    border-radius: 1em;
    margin: .5em;
    align-items: center;
    text-align: center;
    background-color: var(--secondry-color);
    cursor: pointer;
    box-shadow: 5px  5px 5px rgba(145, 144, 144, 0.1);
}
.home .left_menu .boxs .box i{
    font-size: 25px;
}
.home .left_menu .boxs .box:nth-child(1) i{
    color:#f77f00;
}
.home .left_menu .boxs .box:nth-child(1){
    background-color: #f7800010;
}
.home .left_menu .boxs .box:nth-child(2) i{
    color:#923ed6;
}
.home .left_menu .boxs .box:nth-child(2){
    background-color: #923ed610;
}
.home .left_menu .boxs .box:nth-child(3) i{
    color:#219ebc;
}
.home .left_menu .boxs .box:nth-child(3){
    background-color: #219ebc10;
}
.home .left_menu .boxs .box:nth-child(4) i{
    color:#289b7f;
}
.home .left_menu .boxs .box:nth-child(4){
    background-color: #289b7f10;
}
.home .left_menu .boxs .box p{
    margin: .5em 0;
    font-size: 14px;
}
.home .left_menu ul{
    text-align: center;
    margin: 2em 0;
    list-style: none;
}
.home .left_menu ul li a{
    line-height: 2em;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
}

/* TEXT */
.home .text{
   overflow: hidden;
   max-height: 100px;
}
/* .home .text .text_2{
    display: none;
} */
.home .text::after{
    content: '';
    height: 100px;
    width: 100%;
    max-height: 100px;
    position: absolute;
    background-image: linear-gradient(360deg, #fff, transparent);
    left: 0;
    bottom: 5em;
}

/* FLOO */
.home .floo{
    width: 100%;
    height: 100vh;
    z-index: 4;
    background-color: var(--primary-color);
    opacity: .4;
    filter: blur(4px);
    position: absolute;
    top: 0;
    visibility: hidden;
}





/* MEDIA QUERY */

/* HEADER QUERY */
@media (max-width: 1340px) {
    .home header .bar{
        width: 70%;
    }
    .home footer .three .card span{
        font-size: 10px;
    }
    .home footer .three .card p{
        font-size: 11px;
    }
    .home footer .three .card a{
        font-size: 12px;
    }
    .home .about{
        grid-template-columns: 50% 50%;
    }
}
@media (max-width: 1130px) {
    .home header .bar{
        width: 80%;
    }
    .home .cards .card  .cl1{
        height: 70px;
    }
    .home .cards .two{
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
    }
    .home footer .three .card h3{
        font-size: 15px;
    }
    .home footer .three .card span{
        margin-bottom: 1em;
    }
    
}
@media (max-width: 997px) {
    .home header .bar{
        width: 96%;
        justify-content: space-between;
    }
    .home header .bar .menu{
        display: block;
    }
    .home header .bar .center{
        display: none;
    }
    .home header .bar .right button{
        display: none;
    }
    /* CARDS */
    .home .cards .columns{
        grid-template-columns: 33% 33% 33%;
    }
    .home .cards .card .info{
        margin-top: -8%;
    }
    .home footer .three{
        display: grid;
        grid-template-columns: 100%;
    }
    .home footer .three .card h3{
        font-size: 20px;
    }
    .home footer .three .card span{
        margin-bottom: 2.5em;
    }
    .home footer .three .card p{
        font-size: 13px;
    }
    /* DESCRIPTION */
    .home .description .main{
        width: 80%;
    }
    .home  .screen div:first-child{
        width: 80%;
    }
    .home .download .down{
        width: 80%;
    }
    .home .comments .main_com{
        width: 80%;
    }
    /* FORM */
    .home .msg form{
        width: 80%;
    }
}
@media (max-width: 790px) {
    /* CARDS */
    .home .cards .columns{
        grid-template-columns: 50% 50%;
    }
    .home .cards .card .info{
        margin-top: -13%;
    }
    .home  footer .four{
        display: grid;
        grid-template-columns: 50% 50%;
    }
    /* SECOND PAGE */
    .home .app_info div{
        display: contents;
    }
    .home .app_info div img{
        margin-right: 0;
        width: 175px;
        height: 175px;
    }
    .home .app_info div .information{
        display: flex;
    }
    .home .description .main{
        width: 90%;
    }
    .home .description .main button:last-child{
        left: 40%;
    }
    .home  .screen div:first-child{
        width: 90%;
    }
    .home .rating{
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    .home .rating .share{
        justify-content: center;
    }
    .home .rating .share ul{
        justify-content: center;
        margin: .5em 0;
    }
    .home .rating .vote{
        justify-content: center;
    }
    .home .download .down{
        width: 90%;
    }
    .home .comments .main_com{
        width: 90%;
    }
    /* FORM */
    .home .msg form{
        width: 90%;
    }
    /* FOOTER */
    .home .about div ul{
        font-size: 14px;
    }
    .home .bottom_bar div div{
        justify-content: center;
        flex-direction: column;
    }
    .home .bottom_bar div div .icons{
        flex-direction: row;
        margin: .5em 0;
    }
    .home .bottom_bar .bot ul li a{
        /* font-size: 12px; */
    }
    
}
@media (max-width: 730px) {
    .home footer .three .card h3{
        font-size: 15px;
    }
    .home footer .three .card span{
        margin-bottom: 1em;
    }
    .home footer .three .card p{
        font-size: 11px;
    }
    .home .about{
        grid-template-columns: 100%;
    }
    .home .left_menu{
        width: 50%;
    }
}
@media (max-width: 600px) {
    .home .title{
        font-size: 20px;
    }
    .home footer .three .card p{
        font-size: 8px;
    }
    .home  footer .four{
        display: grid;
        grid-template-columns:100%;
    }
    .home .app_info h3{
        font-size: 25px;
    }
    .home .app_info div .information{
        flex-direction: column;
    }
    .home .app_info div .information .inf{
        display: flex;
        flex-direction: row;
    }
    .home .app_info div .information .rate{
        margin-top: 0;
    }
    .home .description {
        padding: 0;
    }
    .home .description .main{
        border-radius: 0;
    }
    .home  .screen {
        padding: 4em 0;
    }
    .home  .screen div:first-child h3{
        font-size: 20px;
    }
    .home .download{
        padding: 0;
    }
    .home .comments{
        padding: 2em 0;
    }
    /* FORM */
    .home .msg{
        padding: 0;
    }
    .home .msg form .cont{
        flex-direction: column;
    }
    .home .msg form .cont input {
        width: 90%;
    }

}
@media (max-width: 509px) {
    /* CARDS */
    .home .cards .columns{
        grid-template-columns: 100%;
    }
    .home .cards .two{
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .home .cards .card .info{
        margin-top: -27%;
    }
    .home .cards .card .cl1{
        margin-top: -41%;
    }
    .home .cards .card img{
        width: 37%;
        margin-top: -1.5em;
        top: -2em; 
    }
    .home .cards .two .card img{
        margin-top: 0;
        width: 90%;
        top: 0;
    }
    .home .cards .two .card  span{
        font-size: 10px;
    }
    .home  .top a i{
        display: block;
        font-size: 12px;
    }
    .home  .top a span{
        display: none;
    }
    .home  .top a{
        border-radius: 0;
        clip-path: circle();
    }
    .home  .top h3{
        font-size: 14px;
    }
    .home footer .three .card h3{
        font-size: 10px;
    }
    .home footer .three .card p{
        font-size: 6px;
    }
    .home footer .three .card span{
        font-size: 8px;
    }
    .home footer .three .card a{
        font-size: 8px;
    }
    .home  footer .three .card img{
        height: 125%;
    }
    .home .app_info div .information ul li{
        font-size: 13px;
    }
    .home .download .down p{
        font-size: 14px;
    }
    .home .download .down a span{
        display: none;
    }
    .home .comments .main_com .comment .user p{
        font-size: 13px;
    }
    .home .comments .main_com .comment .like i{
        font-size: 15px;
    }
    .home .comments .main_com .part_2 p{
        font-size: 13px;
    }
    .home .left_menu{
        width: 60%;
    }
    .home .app_info h3{
        margin-top: -5em;
    }
    
}
@media (max-width: 460px) {
    .home  footer .three .card img{
        height: 135%;
    }
    .home .description .main p{
        font-size: 13px;
    }
    .home .description .main button:last-child{
        left: 35%;
        font-size: 10px;
    }
    .home .description .main .content .titl{
        font-size: 15px;
    }
    .home .description .main .content .titl i{
        font-size: 12px;
    }
    .home .description .main .content ul{
        font-size: 13px;
    }
    .home .about div{
        margin: 1em 0;
    }
    .home .bottom_bar .bot ul li a{
        font-size: 12px;
    }
    .home .bottom_bar .bot{
        padding: 1em 2em;
    }
    .home .bottom_bar div div p{
        font-size: 12px;
    }
    .home .left_menu{
        width: 70%;
    }
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.search-input-2 {
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    height: 50px;
}
.toggle-hide-search {
    position: absolute;
    left: unset;
    right: 21px;
    top: 61px;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 26px 30px;
  z-index: 1;
  border-radius: 8px  
}

.dropdown:hover .dropdown-content {
  display: block;
}
.lang_img{
    vertical-align: middle; 
}
.lang_a{
    display: block;
    margin-bottom: 9px;
}
.lang_span {
    margin: 0 6px;
}
.ads{
   margin: 2rem 0;
}
.color-white{
    color: white;
}
.color-green{
    color: #36cb70;
}
.progress{
    display: -ms-flexbox;
    /* display: flex; */
    /* height: 1rem; */
    /* overflow: hidden; */
    line-height: 2;
    font-size: .75rem;
     background-color: #e9ecef;
    border-radius: 0.25rem;
}
.progress-bar{
    display: -ms-flexbox;
    /* display: flex; */
    /* height: 1rem; */
    /* overflow: hidden; */
    line-height: 1.7;
    font-size: .75rem;
     background-color: #e9ecef;
    border-radius: 0.25rem;
    color: white;
}
