/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

/* Loader */
#loader {
    background: #fff;
    height: 100vh;
    background-size: 20%;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000000;
}

#loader h1 {
    font-weight: 500;
    position: relative;
    font-size: 30px;
    z-index: 100;
    /* color: #191919; */
}

#loader h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    /* height: 1000px; */
    overflow-x: hidden;
    transition: all 0.5s;

}

html::-webkit-scrollbar {
    width: 0px;
}

body::-webkit-scrollbar{
    width: 0px;
}
/* Navbar */
#logo-c {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    /* box-shadow: 0px 5px 10px #00000036; */
    background: linear-gradient(to right, #00eaff, #003537);
    animation: logo 8s infinite;
    transition: 0.5s;
    position: relative;
}

@keyframes logo {
    0% {
        transform: translateX(49px) scale(0.3) translateY(2px);
    }

    10% {
        transform: translateX(49px) scale(0.3) translateY(2px);
    }

    20% {
        transform: translateX(49px) scale(0.3) translateY(2px);
    }

    30% {
        transform: translateX(107px) scale(0.3) translateY(2px);
    }

    40% {
        transform: translateX(107px) scale(0.3) translateY(2px);
    }

    50% {
        transform: translateX(107px) scale(0.3) translateY(2px);
    }

    60% {
        transform: translateX(153px) scale(0.3) translateY(2px);
    }

    70% {
        transform: translateX(153px) scale(0.3) translateY(2px);
    }

    80% {
        transform: translateX(153px) scale(0.3) translateY(2px);
    }

    100% {
        transform: translateX(49px) scale(0.3) translateY(2px);
    }
}

#logo-a {
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    width: 100%;
    background: #f5f5f5;
    padding: 10px;
    background: #f5f5f5d1;
    backdrop-filter: blur(16.3px);
    -webkit-backdrop-filter: blur(16.3px);
    z-index: 10000;
}

#navbar #logo {
    display: flex;
    justify-content: center;
    align-items: center;

}

#navbar #logo a {
    text-decoration: none;

}

#navbar #logo h1 {
    font-weight: 500;
    font-size: 20px;
    color: #181818;
    margin-left: 10px;
}

#navbar #logo h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

#navbar #circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00eeff;
}

#navbar #settings {
    display: flex;
    justify-content: center;
    align-items: center;
}

#navbar #settings #modes {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.5s;
    color: #181818;
}

#navbar #settings #modes:hover {
    background-color: #ccc;
}

#navbar #settings #modes i {
    font-size: 22px;
    color: #181818;
}

#navbar #settings #menu {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}

#navbar #settings #menu:hover {
    background-color: #ccc;
}

#navbar #settings #menu i {
    font-size: 22px;
    color: #181818;
}


#home {
    position: relative;
    top: 130px;
}

#home h1 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #181818;
}

#home h1 span{
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* font-weight: 900; */
}

#flip {
    /* margin-left: 20px; */
    height: 80px;
    /* background: #000; */
    position: relative;
    
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center ;
}

.aniText {
    background: -webkit-linear-gradient(top left, #00eaff,#000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    text-align: center;
    /* font-weight: 600; */
    animation: textflip 10s linear infinite;
    margin: 20px 0px;
}
@keyframes textflip {
    0% {
        transform: translateY(215px);
    }

    10% {
        transform: translateY(215px);
    }

    20% {
        transform: translateY(100px);
    }

    30% {
        transform: translateY(100px);
    }

    40% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-115px);
    }

    70% {
        transform: translateY(-115px);
    }
    80% {
        transform: translateY(-230px);
    }
    90% {
        transform: translateY(-230px);
    }
    100% {
        transform: translateY(-230px);
    }
}
@media screen and (max-width:600px) {
    body{
        /* background: #000; */
    }
    #heading{
        font-weight: 500;
        font-size: 2rem;
    }
    #animation{
        display: none;
        font-weight: 500;
    }
}

@media screen and (min-width:600px){
    body{
        /* background: #000; */
    }
    #heading{
        display: none;

    }
}
/*
@media (max-width:370px) and (min-width:320px){
    #flip {
        margin-left: 20px;
        height: 80px;
        background: #000;
        position: relative;
        left: -10px;
        overflow: hidden;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center ;
    }

    @keyframes textflip {
        0% {
            transform: translateY(245px);
        }
    
        10% {
            transform: translateY(245px);
        }
    
        20% {
            transform: translateY(110px);
        }
    
        30% {
            transform: translateY(110px);
        }
    
        40% {
            transform: translateY(20px);
        }
    
        50% {
            transform: translateY(20px);
        }
    
        60% {
            transform: translateY(-70px);
        }
    
        70% {
            transform: translateY(-70px);
        }
        80% {
            transform: translateY(-200px);
        }
        90% {
            transform: translateY(-200px);
        }
        95%{
            transform: translateY(-270px);
        }
        99%{
            transform: translateY(-290px);
        }
        100% {
            transform: translateY(-290px);
        }
    }
    
    
}
*/
/* Tools Home Page */
#tools {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* background-color: #191919; */
    width: 100%;
    position: relative;
    left: 0%;
    margin-top: 30px;
    border-radius: 10px;
    /* border: 1px solid #505050; */
}

#tools .toolBox {
    /* width: 200px;
    height: 200px; */
    margin: 20px;
    padding: 20px 30px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.5s;

}

#tools .toolBox .uil-code-branch {
    font-size: 50px;
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    /* margin: 10px; */
    /* background: #0000003e; */
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

#tools .toolBox #pageup {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 10px;
    /* background: #000; */
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    background: #fff;
}

#tools .toolBox #pageup p {
    color: #181818;
    transition: 0.5s;
}

#tools .toolBox:hover #pageup p {
    transition: 0.5s;
    color: #139ea1;
    text-decoration: underline;
    text-underline-offset: 5px;
}

#tools .toolBox #pageup .uil-external-link-alt {
    color: #181818;
    font-size: 18px;
    transition: 0.5s;
}

#tools .toolBox:hover #pageup .uil-external-link-alt {
    transition: 0.5s;
    color: #269193;
    text-decoration: underline;
    text-underline-offset: 5px;
}

#tools .toolBox #iconBox {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
}


html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

#iconBox img {
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/** SideBar */
#sideBar {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    justify-content: flex-start;

    align-items: flex-start;
    flex-direction: column;
    width: 280px;
    background: #fff;
    height: 100%;
    z-index: 100000;
    padding: 20px;
    /* margin: 10px; */
    transition: 0.5s;
    transform: translateX(400px);
}

#sideBar #close {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    font-size: 20px;
    color: #181818;
    border-radius: 3px;
    cursor: pointer;
    /* transition: 0.5s; */

}

#sideBar a {
    display: flex;
    position: relative;
    top: 50px;
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    /* display: inline; */
    width: 85%;
    margin: 6px 0px;
    border-radius: 3px;
    text-decoration: none;
    color: #181818;
    text-underline-offset: 3px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.5s;
}

#sideBar #terms {
    position: absolute;
    bottom: 100px;
    width: 86%;

}

#sideBar a:hover {
    text-decoration: underline;
    color: #008386;
}

#sideBar #terms a {
    width: 86%;
    text-decoration: underline;
    color: #008386;
}


/*Responsive */
@media (max-width:1130px) and (min-width:300px) {
    body {
        /* Margin bottom by footer height */
        margin-bottom: 230px;
    }
}

@media (max-width:450px) and (min-width:320px) {
    footer a {
        display: none;
    }
}

/* Home */
#headerHome {
    position: relative;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#headerHome h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    color: #202020;
}

#headerHome h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#headerHome h2 {
    width: 50%;
    text-align: center;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 20px;
}

#headerHome a {
    text-decoration: none;
}

#headerHome a button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 230px;
    font-size: 16px;
    margin-top: 10px;
    border: none;
    color: #003537;
    font-weight: 500;
    background: #09d1d4;
    border-radius: 50px;
    box-shadow: 4px 8px 0px #003537;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
    animation: btn 10s infinite;
    z-index: 1000;
}

#ball {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0px 5px 10px #00000036;
    background: linear-gradient(to right, #00eaff, #003537);
    position: relative;
    /* left: -70px; */
    top: 10px;
    animation: ball 10s infinite;
}

@keyframes ball {
    0% {
        left: 45px;
        transform: rotate(0deg);
        top: 10px;
    }

    50% {
        left: -45px;
        transform: rotate(180deg);

    }

    100% {
        left: 45px;
        transform: rotate(0deg);
        top: 10px;
    }
}

@keyframes btn {
    0% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(-5deg);
    }

}

#headerHome a button:hover {
    background: #009ea1;
    color: #fff;
    /* color: #181818; */
}

#headerHome a button i {
    font-size: 20px;
    margin-left: 5px;
}

#home {
    top: 230px;
    width: 100%;
}

#tools {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    position: relative;
    left: 5%;
    /* background:#008386; */
}

#toolsitem {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* z-index: -1; */
}

.tiles {
    display: flex;
    width: 20px;
    height: 20px;
    transition: 0.5s;
}

.tiles:hover {
    background: #0cb6b9;
    transition: 0s;
}

.card {
    width: 350px;
    height: 350px;
    /* height: auto; */
    padding: 30px;
    border: 1px solid #ccc;
    position: relative;
    gap: 20px;
    margin: 20px;
    z-index: 1000;
    background: #fffdfd;
    border-radius: 10px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: 0.5s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px #00000013;
}

.card:not(:hover) {
    transform: scale(1);
}

#tools .card h3 {
    font-size: 30px;
    font-weight: 500;
}

#tools .card a {
    height: 50px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    background: #09d1d4;
    box-shadow: 8px 8px 0px #003537;
    color: #181818;
    transition: 0.5s;
}

#tools .card a:hover {
    box-shadow: 0px 0px 0px #003537;
}

/* footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    height: 60px;
    bottom: 0;
    margin: auto;
    left: 0;
    width: 100%;
    background: #f5f5f5;
} */
#home h1 {
    font-size: 3rem;
}

body {}

#whyus {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    /* background: #008386; */
    left: 10%;
    top: 100px;
    margin-bottom: 200px;
    flex-direction: column;
    /* box-shadow: 20px 20px 0px #003537; */
}

#whyus h1 {
    color: #181818;
    padding: 30px 0px;
}

#whyus #whylogo {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyBox {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    margin: 40px 20px;
    /* background: #009ea1; */
    transition: 0.5s;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.whyBox:hover {
    box-shadow: 10px 10px 0px #003537;
}

.whyBox div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whyBox div:nth-child(1) h3 {
    font-weight: 500;
    margin-left: 10px;
}

.whyBox div:nth-child(1) div {
    border-radius: 50%;
}

.whyBox div:nth-child(2) p {
    padding: 15px;
    margin: 10px 0px;
    background: #ffffff;

}

#getstart {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border-radius: 100px; */
    background: #08a0a3;
    position: relative;
    flex-direction: column;
    gap: 20px;
    padding: 100px 20px;
    /* margin-bottom: -100px; */
}

#getstart h1 {
    color: #fff;
    font-size: 3rem;
}

#getstart p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    max-width: 70%;
}

#getstart a {
    height: 50px;
    width: 200px;
    background: #fff;
    color: #181818;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 8px 8px 0px #003537;
    cursor: pointer;
    transition: 0.5s;
}

#getstart div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
}



#getstart a:hover {
    box-shadow: 0px 0px 0px #003537;
}

@media (max-width:425px) and (min-width:320px) {
    body {
        /* background: #181818; */
    }

    #headerHome h2 {
        width: 90%;
    }

    #tools {
        width: 100%;
        left: 0;
    }

    #whyus h1 {
        font-size: 2.5rem;
    }

    #whyus {
        width: 100%;
        left: 0;
    }

    #getstart p {
        max-width: 100%;
    }

    #getstart h1 {
        font-size: 2rem;
    }

    #getstart a {
        margin-top: 10px;
    }

    #headerHome {
        position: relative;
        top: 120px;
    }

    #headerHome a button {
        width: 200px;
    }

    #headerHome h1 {
        font-weight: 500;
        font-size: 2rem;
    }

    #home {
        position: relative;
        top: 170px;
    }

    #navbar #logo {
        position: relative;
        left: -35px;
    }
    #navbar #menu{
        position: relative;
        left: -20px;
    }

}

@media (max-width:375px) and (min-width:320px) {

    #getstart h1 {
        text-align: center;
        font-size: 2.2rem;
    }

    #getstart p {
        text-align: center;

    }


    #whyus {
        width: 100%;
        left: 0;
    }

    #headerHome h1 {
        font-size: 2rem;
    }

    #whyus h1 {
        font-size: 2rem;
    }

    #getstart h1 {
        font-size: 1.7rem;
    }


}

/** Footer - Code */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: 140px;
}

.footer-container {
    display: flex;
    width: 100%;
    background: #f5f5f5;
}

.footer-container #first {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
}

.footer-container #first h1 {
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.footer-container #second {
    width: 25%;
    padding: 30px;
}

.footer-container #second h3 {
    font-weight: 500;

}

.footer-container #second ul {
    padding-top: 10px;
}

.footer-container #second ul li {
    list-style: none;
    padding: 5px;
}

#second ul li a {
    text-decoration: none;
    color: #00867f;
}

.footer-container #third {
    width: 35%;
    padding: 30px;
}

.footer-container #third h3 {
    font-weight: 500;
}

.footer-container #third ul {
    padding-top: 10px;
}

.footer-container #third ul li {
    list-style: none;
    padding: 5px;
}

.footer-container #third ul li a {
    text-decoration: none;
    color: #00867f;
}

.footer-container #third #div {
    display: flex;
    position: relative;
    /* left: -40px; */
    /* justify-content:space-around; */
}

.footer-container #third #div ul:nth-child(2) {
    position: relative;
    left: 5%;
}

.copyright {
    padding: 20px;
}

.copyright p {
    font-weight: 500;
}

.copyright p span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width:800px) {
    .footer-container {
        display: flex;
        width: 100%;
        background: #f5f5f5;
        flex-direction: column;
    }

    .footer-container #first {
        align-items: flex-start;
        justify-content: flex-start;
        width: 90%;
    }

    .footer-container #first p {
        text-align: left;
    }

    .footer-container #second {
        width: 90%;
    }

    .footer-container #third {
        width: 90%;
    }
}

@media screen and (max-width:770px) {
    .footer-container #first p {
        text-align: left;
        position: relative;
        left: 0;
        margin: 0;
    }

    .copyright p {
        text-align: center;
    }
}
/* Why Logo */
#whylogo i{
    font-size: 25px;
}
.card div{
    display: flex;
    align-items: center;
}
.card div img{
    width: 50px;
    height: 50px;
}
.card .cardTop h3{
    font-size: 20px;
    margin-left: 20px;
}
@media (max-width:600px) and (min-width:400px){
    #headerHome #heading{
        font-weight: 600;
        font-size: 2rem;
        width: 80%;
    }
    #navbar #logo{
        position: relative;
        left: -30px;
    }
    #headerHome h2{
        width: 80%;
    }
    
}
@media (max-width:400px) and (min-width:300px){
    #headerHome #heading{
        font-weight: 600;
        font-size: 1.5rem;
        width: 90%;
    }
    #headerHome h2{
        width: 80%;
    }
}
@media (max-width:340px) and (min-width:300px) {
    .card{
        height: 400px;
        
    }
}