@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Roboto:wght@700&display=swap');

.popup-container {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 30%);
    z-index: 25;
}

.popup-container .close-btn {
    display: flex;
    position: absolute;
    align-self: end;
    z-index: 25;
}

.popup-container .mobile-img {
    display: none;
}

.popup-container .close-btn button {
    padding: 0.25rem;
    margin: 1rem;
    height: 2rem;
    width: 2rem;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    background-color: #E1E1E1;
    color: var(--dark-2);
}

.popup-container .close-btn button:hover {
    cursor: pointer;
}

.popup-container .content {
    display: flex;
    width: auto;
    height: 65%;
    background-color: var(--light-gray);
}

.popup-container .content .row {
    display: flex;
    width: auto;
}

.popup-container .content .row:last-child {
    display: flex;
    flex-direction: column;
}

.popup-container .text-container {
    font-family: 'Poppins', sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #504F4F;
}

.popup-container .text-container h2, span, p, b {
    text-align: center;
}

.popup-container .text-container h2 {
    font-family: 'Roboto', sans-serif;
    line-height: 0.9;
    font-size: 4.2rem;
    color: var(--dark);
}

.popup-container .text-container hr {
    display: block;
    width: 90%;
    margin: 1.5rem 0;
}

.popup-container .text-container .sub-title {
    text-align: center;
    line-height: 0.9;
    font-size: 1.55rem;
    font-weight: 300;
}

.popup-container .text-container .sub-title span {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark);
}

.popup-container .text-container p {
    font-size: 1rem;
    font-weight: 300;
}

.popup-container .text-container a {
    font-family: 'HK Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    background-color: #7296B8;
    color: #fff;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 2rem;
}

.popup-container .logo {
    width: 7rem;
    margin-top: 1.5rem;
}

.popup-container .logo img {
    filter: invert(1);
    width: 100%;
}

.web {
    display: flex !important;
}

.mobile {
    display: none !important;
}

@media only screen and (max-width: 1024px) {
    .popup-container .content {
        width: 90%;
        height: auto;
    }

    .popup-container .mobile-img {
        display: block;
        width: 100%;
    }

    .popup-container .web-img {
        display: none;
    }

    .popup-container .content {
        flex-direction: column;
    }

    .popup-container .logo img {
        display: none;
    }

    .web {
        display: none !important;
    }

    .mobile {
        display: flex !important;
    }
}