.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    z-index: 10000;
    opacity: 0;
    transition: all 1s ease-in-out;
    width: 90vw;
    height: auto;
}

.popup-title {
    font-size: 1.2rem;
    font-family: var(--headfont);
}

.popup-para {
    font-size: 1rem;
}

.overlay {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #000; */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    z-index: 2000;
    opacity: 0;
    transition: all 1s ease-in-out;
}

/* Add a class to make elements visible */
.visible {
    opacity: 1;
}

.btn-container {
    display: flex;
    justify-content: space-between;
}

.popup-btn {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.popup {
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
    width: 100%;
}

.description,
.banner {
    width: 100vw;
}

.banner {
    height: 70%;
    text-align: center;
}

.popup-footer {
    display: flex;
    border-top: 2px dashed #ccc;
    justify-content: space-evenly;
    align-items: center;
}

.tools-icon {
    display: flex;
}

.tools-icon img {
    width: 50px;
    /* margin: 1rem 0; */
}

.popup-content h6 {
margin-bottom: 1rem;
}