.popup_form_section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding: 30px 0;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.popup_form_section_inner_wrapper {
    z-index: 10;
    display: flex;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.popup_form_section_inner_wrapper>div {
    display: flex;
}

.popup_form_section_inner {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: auto 0;
    gap: 20px 30px;
    min-height: 300px;
    padding: 30px 40px;
    border-radius: 10px;
    background: rgb(30 41 59);

}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: all 0.5s ease;
}

.popup-close:hover {
    color: rgb(37 99 235);

}

.popup_heading {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.popup_short_description {
    font-size: 16px;
    color: rgb(255, 255, 255, 0.7);
}

.left_side,
.right_side {
    width: calc(50% - 15px);
}

.popup_form_section_inner .gform_wrapper.gravity-theme .gfield_description {
    color: #FFFFFF;
}

@media (max-width:1359px) {
    .popup_form_section_inner {
        max-width: 1000px;
        margin:  auto;
    }
}

@media (max-width:1199px) {
    .popup_form_section_inner {
        max-width: 880px;
    }
}

@media (max-width:991px) {
    .popup_form_section_inner {
        max-width: 720px;
    }
}

@media (max-width:767px) {
    .popup_form_section_inner {
        max-width: none;
        justify-content: flex-start;
    }

    .left_side,
    .right_side {
        width: 100%;
    }
}