.close-button {
    position: absolute;
    top: 4px;
    right: 5px;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    z-index: 1001;
}

.close-button:hover {
    color: #FAC60F;
}

/* PopUp Container */
#popUp-container {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* PopUp Content */
#popUp-content {
    width: 53%;
    padding: 60px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 10px;
    text-align: center;
    height: inherit;
    max-height: 700px;
    overflow: auto;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Title and Intro */
#popUp-title {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 200;
}

#popUp-intro {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 200;

}

/* Section */
.popUp-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-inline: 90px;
}

.popUp-icon span {
    width: 70px;
}

.popUp-icon {
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 15px;
}

.popUp-text {
    text-align: left;
}

.popUp-heading {
    font-size: 18px;
    margin: 0 0 5px;
}

.popUp-text p {
    font-size: 14px;
    margin: 0;
    font-weight: 200;
}

/* Footer */
#popUp-footer {
    font-size: 16px;
    margin: 20px 0;
    font-weight: 200;
}

#popUp-button {
    margin-top: 20px;
    letter-spacing: 5px;
    font-weight: 200 !important;
}

@media (min-width: 1067px) {
    #popUp-content {
        width: 1067px;
    }
}

@media (max-width: 1067px) {
    #popUp-content {
        padding: 20px !important;
        width: 97% !important;

    }
    #popUp-title{
        margin-top: 20px;
    }
    .popUp-section {

        padding-inline: 10px !important;
    }
}

body.no-scroll {
    overflow: hidden;
}