/* ===== OVERLAY ===== */
.overlay_contact_reg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0.95);
    opacity: 0;
    visibility: hidden;
    z-index: 10000000;
    transition: opacity .4s;
}

.overlay_contact_reg:target {
    opacity: 1;
    visibility: visible;
}

/* ===== CONTAINER ===== */
.contact_toggle_popup_container_reg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1000000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .4s;
}

.overlay_contact_reg:target + .contact_toggle_popup_container_reg {
    opacity: 1;
    visibility: visible;
}

/* ===== BACKGROUND ===== */
.contact_toggle_popup_background_reg {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CLOSE ===== */
.close_reg_contact {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 50%;
    background: #a31d2b;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
}

.close_reg_contact:before {
    content: "x";
    color: #fff;
    font-size: 42px;
}

/* ===== CONTENT ===== */
.popup_container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

/* ===== TOP TITLE RTL ===== */
.popup_title_up {
    direction: rtl;
    text-align: center;
    margin-bottom: 30px;
}

.popup_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup_title_up .popup_desc {
    font-size: 23px;
    color: #555;
}

/* ===== CARDS GRID ===== */
.popup_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    direction:rtl;
}

/* ===== CARD ===== */
.popup_card {
    width: 100%;
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.popup_card:hover {
    transform: translateY(-5px);
}

.popup_card_img img {
    width: 100%;
    display: block;
}

.popup_card_content {
    padding: 18px;
}

.popup_title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #000;
    font-family: 'almoni-neue-tzar';
	letter-spacing: 0.3px;
}

.popup_desc {
    font-size: 21px;
    color: #000;
}

/* ===== LINE ===== */
.popup_line {
    height: 4px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.popup_line_red {
    background: #d60000;
}

.popup_line_orange {
    background: #ff9800;
}

@media (max-width: 768px) {

    .popup_cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .popup_title {
        font-size: 35px;
    }

    .popup_desc {
        font-size: 14px;
    }


.popup_title_up .popup_desc {
    font-size: 19px;
    color: #555;
}
.popup_card_content .popup_desc {
    font-size: 21px;
     line-height:1.1em
}
.popup_card_content .popup_title {
    font-size: 25px;
     line-height:1.1em
}
.popup_container {
    width: 100%;
    max-width: 320px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
    .popup_title_up {
    direction: rtl;
    text-align: center;
    margin-bottom: 10px;
}

}