* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6367FF;
    --secondary-color: #8494FF;
    --tertiary-color: #C9BEFF;
    --quaternary-color: #FFDBFD;
    --text-color: white;
}


body {
    width: 100vw;
    background-color: var(--primary-color);
    overflow-x: hidden;
}

header {
    display: flex;
    align-items: center;
    height: 10vh;
    padding: 10px;
    width: 100%;
    background-color: var(--secondary-color);
    border-bottom: 1.5px solid var(--tertiary-color);
}

#logo {
    font-weight: 900;
    font-size: xx-large;
    color: var(--text-color);
    font-family: 'Playfair Display', Times, serif;
    margin-left: 4rem;
}

#options {
    width: 100%;
    height: 10vh;
    padding: 60px;
    background-color: var(--primary-color);
    border-bottom: 1.5px solid var(--quaternary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    perspective: 1000px;
}


#options #filterbtn {
    width: 148px;
    height: 51px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    background-color: var(--quaternary-color);
    transform-style: preserve-3d;
    border: 1.2px solid black;
}

#options #filterbtn:hover {
    transform: translateZ(-2px);
    font-weight: 700;
}




#tools {
    width: 100%;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    perspective: 1000px;
}

#tools .tool {
    width: 16rem;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    border: 1px solid var(--quaternary-color);
}

.imgContainer {
    width: 100%;
    height: 180px;
    background-color: transparent;
    overflow: hidden;
}

.imgContainer img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.tool .info {
    font-weight: 600;
    color: var(--text-color);
}

.tool .info h3 {
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: 'Playfair Display', Times, serif;
    width: 100%;
    height: 25px;
}

.tool .info p {
    margin-top: 3px;
    font-size: 0.8rem;
    width: 100%;
    height: 30px;
    white-space: wrap;
    overflow: hidden;
}

.tool .tags {
    width: 100%;
    height: 40px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms;
}

.tool:hover {
    transform: rotateX(5deg) rotateY(-3deg);

}

.tool .tags ul {
    margin-top: 10px;
    list-style: none;
    display: flex;
    gap: 10px;
    color: var(--text-color);
    flex-wrap: wrap;
}

.tool .tags ul li {
    width: max-content;
    padding: 4px;
    border-radius: 9px;
    height: 30px;
    background-color: white;
    color: black;
}

.tool:hover .tags {
    visibility: visible;
    opacity: 1;
}



.loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after {
    position: absolute;
    top: 0;
    content: '';
}

.jimu-primary-loading:before {
    left: -19.992px;
}

.jimu-primary-loading:after {
    left: 19.992px;
    -webkit-animation-delay: 0.32s !important;
    animation-delay: 0.32s !important;
}

.jimu-primary-loading:before,
.jimu-primary-loading:after,
.jimu-primary-loading {
    background: var(--tertiary-color);
    -webkit-animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    animation: loading-keys-app-loading 0.8s infinite ease-in-out;
    width: 13.6px;
    height: 32px;
}

.jimu-primary-loading {
    text-indent: -9999em;
    margin: auto;
    position: absolute;
    right: calc(50% - 6.8px);
    top: calc(50% - 16px);
    -webkit-animation-delay: 0.16s !important;
    animation-delay: 0.16s !important;
}

@-webkit-keyframes loading-keys-app-loading {

    0%,
    80%,
    100% {
        opacity: .75;
        box-shadow: 0 0 var(--quaternary-color);
        height: 32px;
    }

    40% {
        opacity: 1;
        box-shadow: 0 -8px var(--quaternary-color);
        height: 40px;
    }
}

@keyframes loading-keys-app-loading {

    0%,
    80%,
    100% {
        opacity: .75;
        box-shadow: 0 0 var(--quaternary-color);
        height: 32px;
    }

    40% {
        opacity: 1;
        box-shadow: 0 -8px var(--quaternary-color);
        height: 40px;
    }
}

.group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    max-width: 190px;
}

.input {
    height: 35px;
    line-height: 28px;
    padding: 0 1rem;
    width: 20rem;
    padding-left: 2.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color: #D9E8D8;
    color: #0d0c22;
    box-shadow: 0 0 5px #C1D9BF, 0 0 0 10px #f5f5f5eb;
    transition: .3s ease;
}

.input::placeholder {
    color: #777;
}

.icon {
    position: absolute;
    left: 1rem;
    fill: #777;
    width: 1rem;
    height: 1rem;
}


.filterClass {
    display: flex;
    gap: 68px;
    margin-top: 13px;
    margin-bottom: 10px;
}