#my-page {
    background: #f5f5f5;
    font-size: 16px;
    --blue: #003663;
    font-family: "Heebo", sans-serif;
}

@media (min-width: 1400px) {
    #my-page .container {
        max-width: 1187px;
    }
}

.has_bg_img {
    background-image: var(--bg);
    background-position: center;
    background-size: cover;
}

#nhp_top_image:before {
    content: '';
    display: block;
    padding-top: 24.2%
}

#nhp_h1_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -35px;
    color: var(--blue);
}

#nhp_h1_wrap h1 {
    font-size: 68px;
    font-family: 'Mikhmoret';
    font-weight: 100;
    margin: 0;
    line-height: 0.6;
}

#nhp_h1_wrap h1 strong {
    font-weight: 600;
}

.nhp_circle:before {
    content: '';
    background: #fff var(--bg) center no-repeat;
    height: 89px;
    width: 89px;
    border-radius: 50%;
    display: block;
}

.nhp_circle {
    text-decoration: none;
    text-align: center;
    color: var(--blue);
}

#nhp_circles {
    display: flex;
    column-gap: 40px;
}

#nhp_banners {
    display: grid;
    grid-auto-rows: 2fr;
    grid-template-columns: repeat(3, 1fr) 2fr;
    gap: 17px;
    margin-top: 90px;
    margin-bottom: 90px;
}

.nhp_banner {
    border-radius: 12px;
    text-decoration: none;
    position: relative;
}

.nhp_banner:before {
    content: '';
    display: block;
    padding-top: 68.75%;
}

.nhp_banner span {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: var(--padding, 13px);
    font-weight: bold;
    font-size: var(--fsize, 25px);
    font-family: 'Mikhmoret';
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 6px #000;
}

.nhp_banner:first-child {
    --fsize: 43px;
    --padding: 30px;
    grid-row: span 2;
    order: 3;
}

.nhp_banner:nth-child(n+5) {
    order: 3;
}

.new_title {
    font-family: 'Mikhmoret';
    font-size: 68px;
    color: var(--blue);
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.new_title:after {
    content: '';
    border-bottom: 6px #f8a12d solid;
    flex: 1 0 auto;
    margin-right: 35px;
}

#nhp_filters_wrap {
    color: var(--blue);
}

#nhp_filters_wrap > .row {
    --bs-gutter-x: 30px;
}

#nhp_filters_form {
    background: #fff;
    border-radius: 15px;
    padding: 0 20px;
}

.nhp_filters_fieldset {
    font: inherit;
    padding: 15px 0;
}

.nhp_filters_fieldset:not(:first-child) {
    border-top: 1px solid #E8E8E8;
}

.nhp_filters_fieldset legend {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 18px;
    /* float: none; */
    padding: 0;
    display: block;
}

.nhp_filters_fieldset input {
    position: absolute;
}

.nhp_filters_fieldset label {
    display: flex;
    line-height: 17px;
    margin: 13px 0;
}

.nhp_filters_fieldset label:before {
    content: "\77";
    font-family: "telechofesh-icons" !important;
    color: transparent;
    width: 19px;
    height: 19px;
    border: 1px solid var(--blue);
    margin-left: 10px;
    border-radius: 5px;
    transition: all .25s;
}

.nhp_filters_fieldset input:checked ~ label:before {
    background: var(--blue);
    color: #fff;
}

.filter_item {
    display: flex;
    margin-bottom: 27px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    color: var(--blue);
}

.filter_item_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue);
}

.filter_item_contents_a {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-grow: 1;
}

.filter_item_content {
    margin: 10px 0;
    font-size: 120%;
    line-height: 1.2;
}

.filter_item_features {
    margin-top: 10px;
    color: var(--blue);
}

.filter_item_feature {
    display: inline-flex;
    background: #F5F5F5;
    border-radius: 10px;
    line-height: 34px;
    padding: 0 10px;
    margin-left: 15px;
}

.filter_item_feature.red_feature {
    color: red;
}

.filter_item_feature:before {
    content: '';
    width: 28px;
    background-image: var(--feature);
    background-size: contain;
    background-position: center;
    margin-left: 5px;
}

.filter_item_img_a {
    display: block;
    position: relative;
    width: 35%;
    border-radius: 15px;
    overflow: hidden;
}

.filter_item_img_a:before {
    content: '';
    padding-top: 75%;
    display: block;
}

.filter_item img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.filter_item_data {
    display: flex;
    flex-direction: column;
    flex: 1 0 0;
    padding: 20px 30px;
}

.filter_item_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter_item_phone {
    display: flex;
    font-size: 19px;
    font-weight: bold;
}

.filter_item_phone:before {
    content: '';
    width: 17px;
    background: url(assets/img/phone-icon.svg) center no-repeat;
    background-size: contain;
    margin-left: 7px;
    flex-shrink: 0;
}

.filter_item_share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter_item_share_extend {
    --icon: url(assets/img/share.svg);
}

.filter_item_heart {
    --icon: url(assets/img/heart.svg);
}

.filter_item_whatsapp {
    --icon: url(assets/img/whatsapp.svg);
}

body .filter_item_share .has_icon {
    text-decoration: none;
    border: 0;
    padding: 0;
    background: transparent var(--icon) center no-repeat;
    height: 30px;
    width: 30px;
    font-size: 0;
    margin: 0;
}

body .filter_item_share .has_icon:before {
    font-size: 20px;
}

.filter_item_share [class *= "icon-"] {
    font-size: 0;
    text-decoration: none;
    color: var(--blue);
    margin-bottom: 10px;
}

.filter_item_share [class *= "icon-"]:before {
    font-size: 20px;
}

.filter_item_share_wrap {
    position: relative;
}

.filter_item_share_dropdown {
    position: absolute;
    bottom: 100%;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s, visibility 0s 0.3s;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 10px 10px 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
}

.filter_item_share_wrap:hover .filter_item_share_dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
}

.nhp_item_below_filters {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.nhp_item_below_filters .has_bg_img:before {
    content: '';
    display: block;
    padding-top: 75%;
}

.nhp_item_below_filters .has_bg_img {
    border-radius: inherit;
}

.nhp_item_below_filters_title {
    margin: 15px 18px;
    font-weight: bold;
}

.nhp_item_below_filters_content {
    color: var(--blue);
    margin: 0 18px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nhp_item_below_filters_phone {
    margin: 15px 20px;
    color: var(--blue);
    display: flex;
}

.nhp_item_below_filters_phone:before {
    content: '';
    width: 17px;
    background: url(assets/img/phone-icon.svg) center no-repeat;
    background-size: contain;
    margin-left: 7px;
}

@media (max-width: 1000px) {
    #nhp_circles {
        column-gap: 9px;
    }

    #nhp_h1_wrap h1 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 768px) {
    #nhp_circles {
        padding-top: 15px;
    }

    #nhp_h1_wrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding-top: 15px;
    }

    #nhp_banners {
        grid-template-columns: repeat(2, 1fr);
    }

    .nhp_banner:first-child {
        order: -1;
    }

    .filter_item {
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 0 5px #00000055;
        flex: 1 0 40%;
        margin: 10px;
    }

    .filter_item_img_a {
        width: 100%;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .filter_item_title {
        font-size: 19px;
        font-weight: 600;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .filter_item_contents_a {
        display: flex;
        flex-direction: column;
    }

    .filter_item_data {
        padding: 10px;
    }

    .filter_item_bottom {
        padding-top: 8px;
        flex-wrap: wrap;
    }

    .filter_item_share {
        justify-content: center;
        width: 100%;
    }

    .filter_item_phone {
        font-weight: 600;
        font-size: 15px;
        margin: 12px 0;
    }

    .filter_item_content {
        font-size: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-grow: 1;
    }

    .filter_item_feature {
        line-height: 1;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .filter_item_feature:before {
        background-repeat: no-repeat;
        height: 31px;
        flex-shrink: 0;
    }

    #nhp_filters_main {
        padding: 0px 13px;
        display: flex;
        flex-wrap: wrap;
    }

    #nhp_items_below_filters {
        display: none;
    }

    #nhp_filters_aside {
        position: fixed;
        top: 15%;
        bottom: 15%;
        left: 30px;
        right: 30px;
        background: #fff;
        z-index: 9999;
        width: auto;
        border-radius: 30px;
        box-shadow: 0 0 20px #00000055;
        overflow: auto;
        transform: translateY(-20px);
        opacity: 0;
        /*transition: all .25s;*/
        pointer-events: none;
    }

    body.filter_open #nhp_filters_aside {
        transform: none;
        opacity: 1;
        pointer-events: visible;
    }
    body.filter_open .mm-slideout{
        position: static;
    }
    body:after{
        content: '';
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #00000055;
        opacity: 0;
        transition: all 0.25s;
        z-index: 999;
    }
    body.filter_open:after{
        opacity: 1;
         pointer-events: all;
    }

    .mobile_filter_close {
        border: 0;
        background: 0;
        position: fixed;
        top: calc(15% + 15px);
        left: 50px;
    }

    #mobile_filters_wrap{
        border-radius: 50px;
        display: block;
        margin: -30px auto 15px;
        position: relative;
        z-index: 0;
        width: fit-content;
    }

    #mobile_filters_wrap:before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        border-radius: inherit;
        background: var(--blue);
        z-index: -1;
        animation: pulse 1s infinite linear;
    }
    #mobile_open_filters {
        border: 2px solid var(--blue);
        color: var(--blue);
        background: #fff;
        font-size: 20px;
        padding: 10px 30px;
        border-radius: inherit;
    }

    @keyframes pulse {
        from{
            opacity: 0.8;
            transform: scale(.5)
        }
        to{
            opacity: 0;
            transform: scale(1.2, 2);
        }
    }
}
@media (min-width: 768.5px){
    #mobile_filters_wrap, .mobile_filter_close{
        display: none !important;
    }
}

#new_home_page_wrap{
    display: block !important;
}