﻿*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
}
body{
    box-sizing: border-box;
    font-family: arial,garamond,'Times New Roman',verdana,'open sans','google fonts';
    margin: 5px;
   background: black;
    color: #c5c5c5;
}
.logo{  
    display: inline-block;  
    width: 50px;
    height: 50px;
    padding: 10px ;
   border-radius: 100%;
   border:rgb(73, 66, 138) solid 1px;
}
.navbar {
    padding: 50px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     box-sizing: border-box;
 
 }
 .navbar .nav_links ul
 {
     display: flex;
 }
 .navbar .nav_links ul li{   
 margin: 25px;
 
 }
 .ok{   
    color: #caec0b;
    
    }
 .navbar .menu{
     display: none;
     position: absolute;
     top: 50px;
     right: 50px;
     width: 35px;
     cursor: pointer;
 
 }
 @media screen and (max-width:900px) 
 {
 body .sidebar{
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     background-image: url(images/IMG_88841.PNG); 
     background-size: cover;
     color: #c5c5c5;
 }
 
     .navbar{
         padding: 0;
     }
        /* left: 50px; */
     /* } */
     .navbar .menu{
         display: block;
 
     }
     .nav_links{
         top: 0;
         left: 0;
         position: absolute;
         background-color: rgba(255, 255, 255, 0.582);
         backdrop-filter: blur(10px);
         width: 100%;
         height: 100vh;
         display: flex;
         justify-content: center;
         align-items: center;
         margin-left: -100%;
         transition: all 0.5s ease;
     }
     .mobile-menu{
         margin-left:0;
     }
     .nav_links ul{
         display: flex;
         flex-direction: column;
         align-items: center;
     }
     .navbar .nav_links ul li{
         margin: 25px 0;
         font-size: 1.2rem;
     }
     
 }
 .navy-search {
    /* display: inline-block; */
    width: 100%;
    text-align: right;
    vertical-align: middle;
    width: calc(70%-100%);
   
}
.navy-search_el{
    background-color: #c5c5c5;
    width: 40%;
    padding: 5px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;   
}   
.search-input{
    background-color: #c5c5c5;
    border: none;
    flex-basis: 60%;
    text-align: center;
    outline: none;
    border-radius: 100px;
}
.power{
    color: rgb(35, 85, 25);
    border-radius: 100px;
    border: 100px;
    font-weight: 600;}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* background: #042104; */
    /* animation: animateBg 10s linear infinite; */
}
h4{
    text-align: center;
    color: aliceblue;
}
@keyframes animateBg{
    0%
    {
       filter: hue-rotate(0deg);
    }
    100%{
        filter: hue-rotate(360deg);
    }

}
section .loader{
    position: relative;
    width: 120px;
    height: 120px;
}
section .loader span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(calc(18deg*var(--i)));
}
section .loader span::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #00ff0a;
    box-shadow: 0 0 10px #00ff0a,
                0 0 20px #00ff0a,
                0 0 30px #00ff0a,
                0 0 40px #00ff0a,
                0 0 60px #00ff0a,
                0 0 80px #00ff0a,
                0 0 100px #00ff0a;
    animation: animate 2s linear infinite;
    animation-delay: calc(0.1s * var(--i));
}
@keyframes animate
{
    0%{
        transform: scale(1);
    }
    80% ,100%{
        transform: scale(0);
    }

}
@media screen and (max-width:900px){
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    section{
        width: 90%;
        min-height:120vh; 
    }
    h4{
        text-align: center;
        color: aliceblue;
    }
}
footer{
    text-align: center;
    color: #08e025;
 }
.sci{
    margin-top: 40px;
    display: flex;
}
.sci li{
    list-style: none;
    margin-right: 15px;
}
.sci li a{
    color: #fff;
  font-size: 2em;
}
.sci li a:hover{
   color: #fff;
}