*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Barlow', sans-serif;
}

.popupn {
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 10;
    display: none;
    /* display:flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    /* overflow-y: scroll; */
    background-color: rgba(0, 0, 0, 0.85);
}

.popupn-wrapper {
    width: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border-radius: 16px;
    background-image: linear-gradient(90deg, #9c3b35 0%, #d04941 40%);
    box-shadow: 0 0 20px #d04941;
    opacity: 1;
    z-index: 20;
}

.popupn-imgtext-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupn-img-wrapper {
    width: 35%;
}

.popupn-img {
    max-width: 100%;
}

.popupn-content-wrapper {
    width: 65%;
}

.popupn-heading {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Barlow', sans-serif;
    color: #fff200;
    letter-spacing: 2px;
    text-align:left;
    margin-bottom: 0;
    text-transform: uppercase;
}

.popupn .divaider {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(90deg, #fff200 0%, #17587c 80%);
    margin-top: 20px;
    margin-bottom: 20px;
}

.popupn-heading-promotion {
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.popupn-heading-promotion span {
    font-weight: bold;
}

.popupn-paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.popupn-paragraph span {
    font-weight: bold;
}

.popupn-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.popupn-btn-promotion {
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 50px;
    display: inline-block;
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    background-color: #fff200;
    box-shadow: 0 0 5px #fff200;
    border-radius: 32px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.popupn-resign {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: underline;
}

@media (max-width: 840px) {
    .popupn-wrapper {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .popupn {
        width: 100%;
        /* min-height: 100vh; */
        display:flex;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.85);
    }

    .popupn-wrapper {
        width: 100%;
        padding: 20px;
    }

    .popupn-imgtext-wrapper {
        flex-direction: column;
    }

    .popupn-img-wrapper {
        width: 45%;
    }

    .popupn-content-wrapper {
        width: 100%;
    }

    .popupn-btn-promotion {
        padding: 10px 25px;
        font-size: 22px;
    }
}

@media (max-width: 568px) {
    .popupn {
        width: 100%;
        /* min-height: 100vh; */
        display:flex;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.85);
    }

    .popupn-wrapper {
        width: 100%;
        padding: 20px;
    }

    .popupn-imgtext-wrapper {
        flex-direction: column;
    }

    .popupn-img-wrapper {
        width: 60%;
    }

    .popupn-content-wrapper {
        width: 100%;
    }

    .popupn-btn-promotion {
        padding: 10px 25px;
        font-size: 22px;
    }
}