.popups {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all linear 0.3s;
    display: flex;
    align-items: center;
}

.popups.active {
    padding: 80px 0;
    opacity: 1;
    visibility: visible;
    transition: all linear 0.3s;
    overflow-y: auto;
}

.popup {
    overflow-x: hidden;
    overflow-y: auto;
}

.popup .popup-header {
    margin-top: 20px;
    display: flex;
}

.popup .popup-header .popup-close {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    margin-left: auto;
}

.popup .popup-header .popup-close img {
    width: 100%;
}

.popup-card {
    min-height: auto;
    padding: 30px 20px;
    background-color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
    .popup-card {
        padding: 60px;
        min-height: 360px;
    }
}

.popup-card h1,
.popup-card p {
    color: #2A5979 !important;
    text-transform: uppercase;
}

.popup-card h1 {
    font-size: 20px;
    font-weight: 600;
}

.popup-card h1 span {
    font-weight: normal;
    color: #2A5979 !important;
}

.popup-card img.popup-card-icon {
    margin-bottom: 20px;
}