.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9970;
    background-color: #14997f;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-popup.active {
    visibility: visible;
    opacity: 1;
}

.contact-popup .close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-popup .close-button i {
    font-size: 10px;
}

.contact-popup .close-button:hover {
    background-color: #e2e2e2;
}

.contact-popup .contact-popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.contact-popup .contact-popup-content .contact-popup-icon {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 20px;
}

.contact-popup .contact-popup-content .contact-popup-icon::before {
    position: absolute;
    content: '';
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    background-color: #e2e2e281;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.contact-popup .contact-popup-content .contact-popup-icon i {
    font-size: 30px;
    color: #14997f;
}

.contact-popup .contact-popup-content .contact-popup-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: #ffffff;
}

.contact-popup .contact-popup-content .contact-popup-text h3 {
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
}

.contact-popup .contact-popup-content .contact-popup-text a {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.75rem;
}

.contact-popup .contact-popup-content .contact-popup-text a:hover {
    color: #e2e2e2;
}


@media (min-width: 768px) {
    .contact-popup {
        top: auto;
        bottom: 10px;
        left: 10px;
        width: fit-content;
        border-radius: 9px;
    }

    .contact-popup .close-button {
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
    }

    .contact-popup .close-button i {
        font-size: 20px;
    }
}


/* Contact Popup 2 */
.contact-popup2 {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9980;
    display: flex;
    background-color: #00000060;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: auto;
    padding: 20px;
}

.contact-popup2.active {
    visibility: visible;
    opacity: 1;
}

.contact-popup2 .contact-popup-content2 {
    position: relative;
    width: fit-content;
    height: fit-content;
    margin: auto;
    z-index: 9990;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #14997f;
    border-radius: 9px;
}

.contact-popup2 .contact-popup-content2 .close-button2 {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-popup2 .contact-popup-content2 .close-button2 i {
    font-size: 10px;
}

.contact-popup2 .contact-popup-content2 .close-button2:hover {
    background-color: #e2e2e2;
}

.contact-popup2 .contact-popup-content2 .contact-popup-form-wrap h2 {
    color: #fffafa;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-popup2 .contact-popup-content2 .contact-popup-form-wrap p {
    color: #fffefe;
}

.contact-popup2 .contact-popup-content2 .contact-popup-form-wrap .contact-popup-form button {
    background-color: #ffffff;
    color: #14997f;
    text-shadow: none;
}