/* *{
    transition: all 10s ease-in-out;
} */

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flexbox;
    align-items: center;
    justify-content: center;
}

body{
    background-color: #000000;
    color: antiquewhite;font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

section{
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    width: 100%;
}

#loader{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    position:fixed;
    top:0;
    left:0;
    background-color: #000000;
    /* width: 100vw;
    height: 100vh; */
    transition: all 0.3s ease-in-out;
}

.pulse{
    position : relative;
    width: 200px;
    height: 200px;
    box-shadow: inset 0 0 40px #000000, 0 0 50px #0e76e7;
    border-radius: 50%;
    border: 1px solid #0e76e7;
    background: url("image/incoh1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pulse span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid #0e76e7;
    animation: plse_anima 6s linear infinite;
    animation-delay: calc(var(--i) * -1s);
    border-radius: 50%;
}

@keyframes plse_anima {
    0%{
        width: 200px;
        height: 200px;
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    100%{
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

@media screen and (max-width: 900px) {
    .pulse{
        width: 100px;
        height: 100px;
    }

    @keyframes plse_anima {
        0%{
            width: 100px;
            height: 100px;
            opacity: 1;
        }
        50%{
            opacity: 1;
        }
        100%{
            width: 300px;
            height: 300px;
            opacity: 0;
        }
    }
}


.tito{
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 18vh;
}

#icon{
    width: 25vw;
    height: 25vw;
    /* background: linear-gradient(25deg, #010833 20%, #2046ed 40%, #b500ec 70%, #ff0000 90%); */
    border-radius: 50%;
    /* border: 2px solid #ffffff; */
    filter: drop-shadow(0 0 10px #0e76e7);
    animation: border_anime 3s ease-in-out infinite;
}


@keyframes border_anime {
    0%{
        filter: drop-shadow(0 0 10px #0e76e7);
    }
    50%{
        filter: drop-shadow(0 0 10px #770ee7);
    } 
    100%{
        filter: drop-shadow(0 0 10px #0e76e7);
    }
}


#title{
    font-size: 5vw;
    font-weight: 900;
    background: linear-gradient(25deg, #4f00ec -20%, #ff007b  20%, #0331fa 50%, #4f00ec 70%, #ff007b 95%);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: til_anime 8s linear infinite;
    /* animation-delay: 5s; */
    /* animation-iteration-count: infinite; */
}


@keyframes til_anime {
    0%{
        background-position: 0 0;
    }
    100%{
        background-position: 100vw 0;
    }
}


@media screen and (max-width: 900px) {
    .tito{
        display: block;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 30vh;
    }
    
    #icon{
        width: 50vw;
        height: 50vw;
    }
    
    
    #title{
        font-size: 12vw;
        font-weight: 900;
    }
}

a{
    text-decoration: none;
    font-weight: 700;
    color: white;
    font-size: 10vw;
    padding: 0.5vw 2vw;
    background-color: #00000072;
    box-shadow: 0 0 10px #000408;
    border-radius: 5px;
    border: 3px solid white;
    z-index: 1;
}

a:hover{
    color: #0e76e7;
}


.creation{
    display: flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10vh;
}

.card{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
}


#kn0{
    background: url(assets/imgs/dashboard.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn0::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0037711f;
}

#kn1{
    background: url(assets/imgs/bot.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000001f;
}

#kn2{
    background: url(assets/imgs/chem.png);
    background-size:contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn2::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0037711f;
}

#kn3{
    background: url(assets/imgs/calci.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn3::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000001f;
}

#kn4{
    background: url(assets/imgs/disa.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn4::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0037711f;
}

#kn5{
    background: url(assets/imgs/whatsapp.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn5::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000000;
}

#kn6{
    background: url(assets/imgs/periodic.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn6::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0037711f;
}

#kn7{
    background: url(assets/imgs/india.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#kn7::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(100deg, orangered 0%, white 50%, green 100%);
    z-index: -1;
}

#kn7 a{
    background: linear-gradient(100deg, orangered 0%, green 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@media only screen and (max-width: 600px) {
    #kn0::after, #kn2::after, #kn4::after, #kn6::after{
        background: #0037714a;
    }
}




.foot{
    height:max-content;
}

#logo{
    height: 40vw;
    width: 40vw;
    border: 2px solid;
    border-radius: 50%;
    margin-top: 10vw;
    margin-bottom: 10vw;
    /* animation: border_anime 2s ease-in-out infinite; */
}

.footer{
    text-align: center;
    color: white;
    font-size: 100%;
}

.footer::after{
    content: " © 2024 All Rights Reserved.";
    color: rgba(255, 255, 255, 0.375);
    font-size: 70%;
}