.popup-container {
    width:100vw;
    height:100vh;    
	z-index:1000;
    position:fixed;
    top:0px;
    left:0px;    
	background-color: rgba(0, 0, 0, 0.5);    
}

.popup{
   	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%, -50%);
	width:600px;
    height: 470px;
	border-radius:10px;
    padding: 48px 30px 30px 30px;
    box-shadow: 5px 5px 43px 5px rgba(0, 0, 0, 0.1);
	background-color: #7e1946;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	color: #fff;
    overflow:hidden;
}

.popup h2{
    font-size: 42px;
    font-weight: 900;
    max-width: 320px;
    line-height: 1;
    margin: 0;
}

.img-popup{
    position: absolute;
    left:50%;
    bottom: 100px;
    transform:translate(-50%, 0%);
    width: 440px;
    height:auto;
}

.nm-badge-popup{
    position: absolute;
    width: 164px;
    right: 30px;
    top: 30px;
}

.white-bar{
    position:absolute;
    bottom:0;
    left:0;
    background-color: white;
    height: 100px;
    width:100%;
    z-index: 100;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.popup-btn, a.popup-btn{
    height: 40px;
    width: 255px; 
    color: #fff;
    background-color: var(--nm-purple);
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    line-height: 40px;
    display: inline-block;
    text-align: center;

}

.popup-btn.outline, a.popup-btn.outline {
    color: var(--nm-purple);
    background-color: white;
    border: 2px solid var(--nm-purple);
    line-height: 38px;
}

.popup-btn:hover, .popup-btn:focus, a.popup-btn:hover, a.popup-btn:focus{
    background-color: var(--nm-blue);
    color: #fff;
}

.popup-btn.outline:hover, .popup-btn.outline:focus, a.popup-btn.outline:hover, a.popup-btn.outline:focus{
    background-color: white;
    border: 2px solid var(--nm-blue);
    color: var(--nm-blue);
}

.close-btn{
    position: absolute;
    top: 14px;
    right: 14px;
    color:rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.close-btn:hover, .close-btn:focus, .close-btn:active{
    color: rgb(255, 255, 255, 0.5);
}

#pop-up{
    display:none;
}

@media (max-width:600px){
    .popup{
        width: 320px;
        height: 470px;
    }

    .nm-badge-popup{
        display:none;
    }

    .img-popup{
        bottom:130px;
        width:300px;
    }

    .leaf-popup{
        bottom: -8%;
        width: 300px;
    }

    .white-bar{
        height: auto;
        flex-direction: column;
        gap:15px;
        padding: 30px;
    }
}