body {
    font-family: Arial, sans-serif;
}

.popup {
    display: none; /* Initially hide the popup */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
	z-index: 999 !important;
}
#popup{
z-index: 999 !important;
}
.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    width: 500px;
    position: relative;
	z-index: 999 !important;
}
.close-btn1 {
    position: absolute;
    top: -5px;
    right: 10px;
    cursor: pointer;
    font-size: 35px;
}

.learn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1a1d30;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.learn-more:hover {
	color: white;
}