*{
    margin: 0;
    padding: 0;
}

/* html {
    scroll-behavior: smooth;
} */

body{
    background-color: #00bf63;
    color: white;
    width: 100vw;
    
}

#Home-screen{
    width: 100%;
    height: 100vh;
    background-image: url(image/mainbg.jpg);
    background-size: cover;
    background-position: center;
}

/* Other tools section */
::selection{
    background: rgb(185, 185, 185);
    color: rgb(149, 0, 0);
}
::-webkit-scrollbar-track{
    -webkit-appearance: none;
}
::-webkit-scrollbar{
    width: 0px;
}
::-webkit-scrollbar-thumb{
    border-radius: 6px;
    background: #00072d;
}



#Navbar{
    display: flex;
    justify-content: center;
    height: 80px;
    color: white;
    align-items: center;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    flex-wrap: wrap;
    position: fixed;
    width: 100vw;
    z-index: 1000;
}

.show{
    display: flex !important;
}

#logo{
    width: 150px;
    height: 80px;
    position: absolute;
    left: 15px;
}
#Navbar ul{
    display: flex;
    margin: 12px;

}
#Navbar ul li{
    margin-top: 20px;
    list-style: none;
    margin: 0 12px;
}
#Navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #00BF63;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

#categories{
    height: 26px;
    position: relative;
   
}
#drop-down-box{
    display: none;
    position: absolute;
    width: max-content;
    left: -28px;
    margin-top: 7px;
    border-radius: 9px;
    z-index: 1;
    background-color: #00072d;
    box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.2);

}
#drop-down-box a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 12px 16px;
}
#drop-down-box a:hover{
    background: #00BF63;
    border-radius: 3px;
}

#categories:hover #drop-down-box{
    display: block;
}


.nav-buttons {
    /* margin-top: 35px; */
    position: absolute;
    right: 0;
    margin: 0 12px;
    display: flex;
    align-items: center;
}

.nav-buttons button {
    padding: 10px 20px ;
    border-radius: 7px;
    border: 1px solid rgb(0, 0, 0);
    outline: none;
    cursor: pointer;
    margin: 10px;
    background: #00bf6392;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 17px;
}

.nav-buttons button:hover {
    background-color: #00BF63;
    color: black;
}

.nav-bg-color{
    background-image: url(image/background.jpg);
    /* background-color: #00072d; */
    color: white;
}




/* #Menu-Btn{
    position: absolute;
    right: 0;
    top: 15px;
    width: 25px;
    margin-right: 30px;
    filter: invert(100);
    display: none;
} */
/* Navbar section */

.header-text{
    padding: 210px;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;

}
.bio {
    font-size: 60px;
    font-weight: 600;
}

.auto-input {
    color: #00BF63;
}

.bio1 {
    margin-top: 10px;
    font-size: 60px;
    font-weight: 600;

}

.search{
    font-size: 25px;
    color: #00BF63;
}

#search1::placeholder{
    width: 500px;
}

#search1{
    margin-top: 20px;
    background: white;
    border-radius: 50px;
    color: black;
    padding: 15px 300px;
    position: relative;
}


.mouse {
    position: absolute;
    bottom: 80px;
    left: 50%;
    margin-left: -15px;
    text-align: center;
    z-index: 100;
    font-size: 12px;
    text-transform: uppercase;
    color: #00BF63;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .mouse h3 {
    margin-left: -14px;
    padding-top: 15px;
  }
  
  .mouse-icon {
    width: 25px;
    height: 45px;
    border-radius: 15px;
    position: relative;
    border: 2px solid #00BF63;
    text-align: center;
  }
  .mouse-icon span {
    width: 3px;
    height: 8px;
    margin: 2px auto 0;
    display: block;
    background: #00BF63;
    border-radius: 5px;
    -webkit-animation: 1.2s ease infinite wheel-up-down;
            animation: 1.2s ease infinite wheel-up-down;
  }
  
  @-webkit-keyframes wheel-up-down {
    0% {
      margin-top: 2px;
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    100% {
      margin-top: 20px;
      opacity: 0;
    }
  }
  
  @keyframes wheel-up-down {
    0% {
      margin-top: 2px;
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    100% {
      margin-top: 20px;
      opacity: 0;
    }
  }


  /* category */

.home-category{
    position: absolute;
    margin-top: 110px;
    margin-left: 8px;
    display: flex;
    align-items: center;
}
.home-category button {
    padding: 50px 180px ;
    border-radius: 14px;
    border: 1px solid rgb(0, 0, 0);
    outline: none;
    cursor: pointer;
    margin: 10px;
    background: #00bf6392;
    color: white;
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
    font-weight: bolder;
    background-image: url(image/backtop.jpg);

}




/* Slide section */
.slides-box{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.slider{
  width: 100%;
  height: 400px;
  border-radius: 4px;
  overflow: hidden;
}

.slides{
  width: 500%;
  height: 400px;
  display: flex;
  
}

.slides input{
  display: none;
}

.slide{
  width: 20%;
  transition: 2s;
  
}

.slide img{
  width: 1000px;
  height: 500px;
}

.first{
    animation-name: slide;
    animation-iteration-count: infinite;
    animation-duration: 25s;
    background: url('./image/slide.png') ;
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
    margin-top: 300px;
    height: 100px;
}
.second{
    background: url('./image/slide.png') ;
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
    margin-top: 300px;
}

.third{
    background: url('./image/slide.png') ;
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
    margin-top: 300px;
}

@keyframes slide {
    0%{
        margin-left: 0;
    }
    16%{
        margin-left: 0;
    }
    32%{
        margin-left: -20%;
    }
    48%{
        margin-left: -20%;
    }
    64%{
        margin-left: -40%;
    }
    80%{
        margin-left: -40%;
    }
    100%{
        margin-left: 0;
    }
}
/* Slide section */




.section-1{
    font-size: 35px;
    color: #2c97de;
    text-align: center;
    text-transform: uppercase;
}
.accordionMenu{
    width: 500px;
    margin: 0 auto;
}
.accordionMenu input[type=radio]{
    display: none;
}
.accordionMenu label{
    display: block;
    height: 50px;
    line-height: 47px;
    padding: 0 25px 0 10px;
    background: #2c97de;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #e6e6e6;
}
.accordionMenu label::after{
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    right: 10px;
    top: 20px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
}
.accordionMenu .content{
    max-height: 0;
    height: 0;
    overflow: hidden;
    transition: all 2s ease-in-out;
}
.accordionMenu .content .inner{
    font-size: 1.2rem;
    color: #2c97de;
    line-height: 1.5;
    background: white;
    padding: 20px 10px;
}
.accordionMenu input[type=radio]:checked + label:after{
    
    transform: rotate(90deg);
}
  
.accordionMenu input[type=radio]:checked + label + .content{
    max-height: 2000px;
    height: auto;
}



.trending-apps{
    display: flex;
    flex-direction: column;
}
.trend-apps{
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 35px;
    font-weight: bolder;
    margin: 0;
    padding-top: 20px;
    color: #00072d;
}
.trending-apps-contener{
    display: flex;
    /* flex-wrap: wrap; */
}
.trending-content a{
    text-decoration: none;
}
.trending-content.gallery{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 50px;
}
.trending-content{
    width: 20%;
    margin: 15px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    padding-top: 10px;
    box-shadow: 0 14px 28px #00072d;
    transition: .4s;
    /* background: #2c97de; */
    background-image: url(image/backtop.jpg);
}
.trending-content:hover{
    box-shadow: 0 3px 3px red;
    transform: translate(0px, -8px);
}
.trending-content img{
    width: 200px;
    height: 200px;
    text-align: center;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 10px;
    display: block;
}
.trending-content p{
    margin-top: 10px;
    text-align: center;
    color: antiquewhite;
    padding-top: 0 8px;
    
}
.trending-content h5{
    font-size: 20px;
    /* font-weight: 600; */
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    color: #00bf63;
    margin-top: 10px;
}
.trending-content ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    /* border: 1px solid black; */
}
.trending-content li{
    padding-top: 5px;
    /* border: 1px solid black; */

}
.trending-content .fa{
    font-size: 26px;
    transition: .4s;
    margin: 3px;
}
.trending-content .checked{
    color: #FF9529;
}
.trending-content .fa:hover{
    transform: scale(1.3);
    transition: .6s;
}
.trending-content button{
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Ubuntu', sans-serif;
    color: #00072d;
    width: 100%;
    padding: 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    margin-top: 6px;
    border-radius: 0  0 20px 20px;
}
.trending-content .download-trending{
    background: white;
}
.trending-content .download-trending:hover{
    background: #00bf10;
    color: white;
}

 footer{
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background-image: url(image/background.jpg);
    /* background-color: #00072d; */
    color: #ffffff;
    padding: 10px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
 }
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Ubuntu', sans-serif;
    margin-top: 10px;
}
.col{
    flex-basis: 25%;
    /* padding: 10px; */
}

.logo2{
    width: 200px;
    height: 60px;
    margin-left: 50px;
}

.col1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-left: 65px;
}
.col1 a{
    text-decoration: none;
    font-size: 20px;
    margin-right: 25px;
    color: white;
    display: inline-block;
    transition: transform 0.5s;
}
.col1 a:hover{
    color: #00BF63;
    transform: translate(-5px);
}
.col1 a i{
    color: #00BF63;
    margin-bottom: 10px;
    font-size: 25px;
}

.footer-form{
    /* display: flex; */
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    margin-left: 50px;

}

.footer-form input{
    width: 255px;
    background: transparent;
    color: white;
    border: 0;
    outline: none;
    font-size: 15px;
    text-align: center;
    margin-bottom: 4px;
}
.footer-form i{
    font-size: 25px;
    color: #00BF63;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid white;
    margin: 10px auto;
}
.copyrights{
    text-align: center;
    margin-bottom: -20px;
}

/* .col1 ul li{
    display: inline;
    margin-bottom: 25px;
    
}
.col1 ul li a{
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
} */

/* .col2{
    flex-basis: 25%;
    padding: 30px;
}
.col2 h3{
    width: fit-content;
    margin-bottom: 30px;
    position: relative;
    font-size: 25px;
}
.col2 ul li{
    list-style: none;
    margin-bottom: 12px;
}
.col2 ul li a{
    font-size: 15px;
    text-decoration: none;
    color: #ffffff;
} */