button{cursor: pointer !important} 

.container, section .heading__block {
    max-width: 1200px;
    padding-inline: 20px;
    margin-inline: auto
}

.button, .container {
    padding-inline: 20px
}

    .button.button__primary:hover path, section .heading__block h2 span path {
        fill: var(--secondary__color)
    }

.dropdown:hover .sub__menu li a, section .heading__block h2 {
    color: var(--primary__color)
}

.back-to-top, a {
    text-decoration: none
}

.app__drawer__links li:last-child a, .banner__form__row form .form__field .dropdown .dropdown__menu li:last-child {
    border-bottom: none
}

header .site__nav__dropdown .container ul li a, header .site__nav__dropdown .container ul li svg {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.banner__form__row form .form__field .dropdown button svg path, header .site__nav__dropdown .container .owl-nav button svg path {
    fill: #000
}
.banner__form__row form .form__field .dropdown .city__button svg {
    height: 16px;
    width: 16px;
}
.banner__form__row form .form__field .dropdown .city__button .icon {
    background: #f7f7f7;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.banner__form__row form .form__field .dropdown .city__button_layout svg path {
    fill: none;
}
.banner__form__row form .form__field .dropdown .city__button_layout svg {
    height: 16px;
    width: 16px;
}

.banner__form__row form .form__field .dropdown .city__button_layout .icon {
    background: #f7f7f7;
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner__form__row form .form__field .dropdown .city__button svg path {
    fill: none;
}





* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

:root {
    --primary__color: #05379a;
    --secondary__color: #e52f41;
    --color__white: #fff;
    --color__dark: #000;
    --color__grey: #94999f;
    --box__shdaow: 0 10px 20px rgba(10, 10, 10, 0.05);
    --box__shadow__large: 0 15px 25px rgba(10, 10, 10, 0.06);
    --border__radius__small: 6px;
    --border__radius__large: 24px;
    --font__weight__regular: 400;
    --font__weight__medium: 500;
    --font__weight__bold: 600
}

/*html {
    scroll-behavior: smooth
}*/

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body, h1, h2, h3, h4, input, select {
    font-family: Manrope,sans-serif;
}

.mobile__banner{
    display:none;
}
.desktop__banner{
    display:block;
}
.location__header {
    position: relative;
    display: inline-block;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.location__header button{
    background:transparent;
    font-family: Manrope, sans-serif;
    font-size:14px;
    font-weight:500;
    color:#fff;
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
}
.location__header button#resetCityButton{
    position:absolute;
    bottom:20px;
    right:12px;
    font-size:12px;
    background:#05379a;
    border-radius:4px;
    height:28px;
    padding-inline:12px;
        top: 50%;
    transform: translateY(-50%);
}
.location__header button svg{
    width:20px;
}

.location__header .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  width: 200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  visibility:hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

    .location__header .dropdown.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        width: max-content;
        visibility: visible;
    }

.location__header .dropdown__menu {
    padding: 0;
    margin: 0;
}

.location__header .dropdown__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 180px));
    gap: 12px;
    max-height: 500px;
    overflow: auto;
}

.location__header .dropdown__menu li {
    cursor: pointer;
}

.location__header .dropdown__menu .city__button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    text-align: left;
    font-size: 13px;
    color: #222;
    cursor: pointer;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
}
.location__header .city__button img {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    object-fit: cover
}

.location__header .city__button:hover {
    background: #f5f5f5;
}
    .location__header .dropdown__menu .city__button_layout {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 8px 12px;
        background: none;
        border: none;
        text-align: left;
        font-size: 13px;
        color: #222;
        cursor: pointer;
        font-size: 12px;
        border-bottom: 1px solid #ddd;
        font-size: 14px;
        font-weight: 500;
    }

    .location__header .city__button_layout img {
        width: 40px;
        height: 40px;
        border-radius: 40px;
        object-fit: cover
    }

    .location__header .city__button_layout:hover {
        background: #f5f5f5;
    }



.location__header .location__input {
    position: relative;
}
    .location__header .location__input #fetch_location_layout {
        position: absolute;
        top: 7px;
        left: 12px;
        padding: 0;
    }
    .location__header .location__input input {
        border: 1px solid #ddd;
        border-radius: 4px;
        padding-inline: 60px 12px;
        height: 40px;
        width: 100%;
        outline:none;
    }

@media (max-width:576px) {
    .mobile__banner {
        display: block;
    }

    .desktop__banner {
        display: none;
    }
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
    border-radius: 10px;
    background-color: #f5f5f5
}

    body::-webkit-scrollbar {
        width: 4px;
        height: 0;
        background-color: #f5f5f5
    }

    body::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
        background-color: #01479f
    }

.container {
    width: 100%
}

.button, .button.button__underlined {
    width: max-content;
    display: flex;
    gap: 10px
}

li {
    list-style: none
}

.logo img {
    height: 40px;
    width: auto
}

button {
    border: none
}

.button {
    height: 40px;
    align-items: center;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    text-transform: capitalize;
    transition: .5s;
    letter-spacing: .5px;
    box-shadow: 0 0 20px #eee;
    border-radius: var(--border__radius__small)
}

    .button.button__primary {
        background: var(--secondary__color);
        color: #fff;
        transition: .2s ease-in
    }

    .button.button__secondary, .button.button__underlined:hover::before {
        background: var(--primary__color)
    }

    .banner__form__row form button svg path, .button.button__primary path, header .navigation .menu__items .app__drawer___btn svg path {
        fill: #fff
    }

    .button.button__primary:hover {
        background: #fff;
        color: var(--secondary__color);
        border: 1px solid var(--secondary__color)
    }

    .button.button__secondary {
        color: #fff;
        box-shadow: none
    }

    .button.button__underlined {
        position: relative;
        box-shadow: none;
        border-radius: 0;
        color: #94999f;
        padding-bottom: 10px;
        justify-content: center;
        align-items: center;
        margin-inline: auto;
        font-size: 18px;
        transition: .3s;
        font-weight: var(--font__weight__medium)
    }

        .button.button__underlined:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            border-radius: 10px;
            width: 100%;
            background: #94999f
        }

        .button.button__underlined svg path {
            fill: #94999f
        }

        .button.button__underlined:hover {
            transform: scale(.15)
        }

section {
    padding-block: 40px
}

    section .heading__block h2 {
        font-size: 28px;
        display: flex;
        justify-content: space-between;
        font-weight: var(--font__weight__bold);
        align-items: center;
        text-align: center;
        width: 100%;
        padding-bottom: 6px;
        position: relative
    }

        .navigation .logo a, section .heading__block h2 span {
            display: flex;
            align-items: center
        }

        section .heading__block h2 span {
            color: var(--secondary__color);
            font-weight: 600;
            font-size: 16px;
            justify-content: center;
            gap: 10px;
            cursor: pointer
        }

    section .heading__block .des {
        color: #666;
        font-size: 16px;
        line-height: 26px;
        padding-top: 10px
    }

header .navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin-inline: auto
}

.logo__blue {
    display: none
}

.nav__ul {
    display: flex;
    align-items: center;
    margin-inline: auto 30px
}

    .nav__ul li {
        padding: 22px 15px
    }

        .nav__ul li a {
            color: #fff;
            letter-spacing: .5px;
            font-weight: 500;
            font-size: 14px
        }

header.sticky .nav__ul li a {
    color: #fff
}

.app__drawer__overlay, .banner__form__row__mobile, .breadcrumb ul li:last-child::after, .hamburger__icon, .pagination, .sub__menu, header.sticky .logo__blue {
    display: none
}

header.sticky .logo__white {
    display: block
}

.button.button__nav:hover .modal__property__dropdown, .login__btn, .modal__property__dropdown a {
    display: flex
}

.nav__ul li a.currentPage {
    position: relative;
    font-weight: 600;
    padding-bottom: 5px
}

.dropdown, header .nav__item {
    position: relative
}

    .dropdown:hover .sub__menu {
        display: block;
        position: absolute;
        top: 62px;
        left: 0;
        background: #fff;
        border-radius: 6px;
        min-width: 300px;
        padding-block: 10px
    }

        .dropdown:hover .sub__menu li {
            padding-block: 6px
        }

            .dropdown:hover .sub__menu li a:hover {
                background: #f7f7f7
            }

.login__btn {
    height: 68px;
    align-items: center;
    margin-left: 20px
}

.button.button__nav {
    box-shadow: none;
    height: 36px;
    background: #fff;
    color: #191e3b;
    border-radius: 6px;
    font-size: 14px;
    padding-inline: 10px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

    .button.button__nav::after {
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-name: moveAfter;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        background: linear-gradient(180deg,#fff0,hsl(0 0% 100% / .5) 50%,#fff0);
        bottom: -50%;
        content: "";
        left: -50%;
        position: absolute;
        right: -50%;
        top: -50%;
        -webkit-transform: rotate(60deg) translate(-5em,7.5em);
        transform: rotate(60deg) translate(-5em,7.5em)
    }

@keyframes moveAfter {
    100% {
        transform: rotate(60deg) translate(1em,-9em)
    }
}

.button.button__nav span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

    .button.button__nav span img {
        width: 16px
    }

.modal__property__dropdown {
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 40px;
    left: 0;
    padding: 10px;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    box-shadow: rgb(99 99 99 / .2) 0 2px 8px 0
}

 .banner__form__row form .form__field__row, .banner__search__wrapper .tabs {
    box-shadow: 0 0 1px 0 rgb(24 94 224 / .15),0 6px 12px 0 rgb(24 94 224 / .15);
}

.modal__property__dropdown img, header .submenu__parent .download__app__drodown .column {
    width: 100%
}

.banner__section {
    padding-block: 80px 100px;
    position: relative;
    margin-bottom: 60px;
    min-height: 450px;
}

    .banner__section .banner__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

        .banner__section .banner__image.mobile{
            display:none;
        }

        .banner__section .banner__image .owl-carousel,
        .banner__section .banner__image .owl-stage-outer,
        .banner__section .banner__image .owl-stage,
        .banner__section .banner__image .owl-item {
            height: 100%;
        }

        .banner__section .banner__image .owl-item .item {
            height: 100%;
        }

        .banner__section .banner__image img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .banner__section .banner__image .owl-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .banner__section .banner__image .owl-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 15;
            margin: 0;
            padding: 0;
        }

            .banner__section .banner__image .owl-nav button {
                width: 48px;
                height: 48px;
                background: rgba(255, 255, 255, 0.9) !important;
                border: 2px solid #E0E0E0 !important;
                border-radius: 50% !important;
                display: flex !important;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                pointer-events: all;
                margin: 0 !important;
                position: absolute;
            }

                .banner__section .banner__image .owl-nav button.owl-prev {
                    left: 40px;
                }

                .banner__section .banner__image .owl-nav button.owl-next {
                    right: 40px;
                }

                .banner__section .banner__image .owl-nav button:hover {
                    background: #05379a !important;
                    border-color: #05379a !important;
                    box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
                    transform: scale(1.1);
                }

                    .banner__section .banner__image .owl-nav button:hover svg path {
                        fill: #ffffff !important;
                    }

                .banner__section .banner__image .owl-nav button.disabled {
                    opacity: 0.3;
                    cursor: not-allowed;
                }

                    .banner__section .banner__image .owl-nav button.disabled:hover {
                        transform: none;
                        background: rgba(255, 255, 255, 0.9) !important;
                        border-color: #E0E0E0 !important;
                    }

                        .banner__section .banner__image .owl-nav button.disabled:hover svg path {
                            fill: #0C043F !important;
                        }

                .banner__section .banner__image .owl-nav button svg {
                    width: 8px;
                    height: 11px;
                }

                    .banner__section .banner__image .owl-nav button svg path {
                        fill: #0C043F;
                        transition: fill 0.3s ease;
                    }

    .banner__section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / .3);
        z-index: 1
    }

    .banner__section .container {
        z-index: 5;
        height: 100%;
    }

    .banner__section img {
        width: 120px;
        margin-inline: auto;
        display: block;
        margin-bottom: 12px
    }

.banner__section__row h1 {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    padding-top: 40px;
}

    .banner__section__row h1 img {
        width: 42px;
        margin: 0
    }




.banner__search__wrapper {
    max-width: 1160px;
    margin-inline: auto;
    margin: 0 auto;
    width: calc(100% - 48px);
    position: absolute;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 0;
}

    .banner__search__wrapper .tabs {
        background: #fff;
        border-radius: 12px 12px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-block: 0;
        max-width: max-content;
        margin-inline: auto;
        overflow: hidden;
        padding-inline: 12px;
        position: relative;
        box-shadow: 0 -2px 8px 0 rgb(0 0 0 / 0.08);
        width: max-content;
        margin-bottom: 0;
    }

        .banner__search__wrapper .tabs .tab__link {
            color: #666;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            position: relative;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-inline: 24px;
            transition: color .3s ease;
        }
        
        .banner__search__wrapper .tabs .tab__link.active,
        .banner__search__wrapper .tabs .tab__link:hover {
            color: #05379a;
        }

            .banner__search__wrapper .tabs .tab__link label {
                margin-bottom: 0;
                height: 56px;
                display: flex;
                align-items: center;
                cursor: pointer
            }

            .banner__search__wrapper .tabs .tab__link input {
                position: absolute;
                width: 100%;
                appearance: none;
                visibility: hidden
            }

        .banner__search__wrapper .tabs .tab__glider {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 90px;
            background: #05379a;
            color: #05379a;
            z-index: 2;
            border-radius: 0;
            height: 3px;
            margin-left: 0;
            transition: left .3s ease-in-out
        }
          .home  .banner__search__wrapper .tabs .tab__glider{
                margin-left:26px;
            }

            .banner__search__wrapper .tabs .tab__link img {
                width: 32px
            }

.banner__form__row {
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
    margin-top: 0;
    padding-block: 0;
    border: none;
    border-radius: 0 0 12px 12px;
    position: relative;
    z-index: 15;
}

    .banner__form__row form .form__field__row {
        width: 100%;
        align-items: center;
        z-index: 4;
        position: relative;
        background: #fff;
        padding-block: 20px;
        padding-inline: 24px;
        border-radius: 0 0 12px 12px;
        width: 100%;
        display: flex;
        gap: 16px;
    }
#filter__btn {
    background: transparent;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ddd;
    padding-right: 12px;
    cursor: pointer;
    cursor: pointer;
    position: absolute;
    right: 0;
    bottom: 0px;
}
#filter__btn span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}
#filter__btn svg{
    width:20px;
    height:20px;
}
.banner__form__row .additional__filters {
    position: absolute;
    top: 70px;
    background: #fff;
    padding: 20px;
    padding-top:40px;
    left: 0;
    width: 100%;
    box-shadow:0 3px 12px 0 rgb(0 0 0/0.15);
    border-radius:8px;
    z-index: -1;
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}
    .banner__form__row .additional__filters.open {
        opacity: 1;
        visibility: visible;
    }
.banner__form__row .additional__filters h4{
        padding-bottom: 12px;
    font-size: 15px;
    display:flex;
    align-items:center;
    gap:4px;
}
.banner__form__row .additional__filters h4 span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    border-radius:28px;
    background:rgba(245, 245, 245, 1)
}
.banner__form__row .additional__filters .flex__row{
    display:flex;
    align-items:center;
    margin-bottom:20px;
    gap:12px;
}

.banner__form__row .additional__filters .flex__row div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}
.banner__form__row .additional__filters .block:last-child .flex__row{
    margin-bottom:0;
    display:flex;
    flex-wrap:wrap;
    justify-content:start;  
}
    .banner__form__row .additional__filters .flex__row label {
        margin: 0;
        border: 1px solid #ddd;
        padding: 4px 12px;
        border-radius: 90px;
        cursor:pointer;
    }
    .banner__form__row .additional__filters .flex__row input {
        width: max-content;
        border: 1px solid #ddd;
        padding: 4px 12px;
        border-radius: 4px;
        position: absolute;
        top: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        visibility: hidden;
    }
        .banner__form__row .additional__filters .flex__row input:checked ~ label{
            background:#05379a;
            color:#fff;
        }

        .banner__form__row form .form__field {
            display: flex;
            flex-direction: column;
            padding-inline: 16px;
            border-right: 1px solid #e5e7eb;
            width: 100%;
            position: relative;
        }
 .banner__form__row form .form__field.city__field,
 .banner__form__row form .form__field.budget__field{
    max-width:180px;
}

.banner__form__row form .form__field:last-child,
.banner__form__row form .form__field.search__button {
    border-right: none;
}

        .banner__form__row form .form__field.dropdown {
            position: relative;
            cursor: pointer
        }

            .banner__form__row form .form__field .dropdown button {
                background: 0 0;
                font-size: 15px;
                display: grid;
                grid-template-columns: 24px calc(100% - 24px);
                align-items: center;
                gap: 4px;
                color: #333;
                cursor: pointer;
                width: 100%;
                border: none;
                padding: 0;
            }
            
            .banner__form__row form .form__field .dropdown button input {
                border: none;
                outline: 0;
                background: transparent;
                color: #333;
                font-size: 15px;
                padding: 0;
                width: 100%;
            }
            
            .banner__form__row form .form__field .dropdown button input::placeholder {
                color: #999;
            }

                .banner__form__row form .form__field .dropdown button svg {
                    height: 24px;
                    width: 24px;
                    min-width:24px;
                }

            .banner__form__row form .form__field .dropdown .dropdown__menu {
                display: none;
                opacity: 0;
                position: absolute;
                top: 30px;
                left: 0;
                width: 200px;
                border: 1px solid #e6efd9;
                background: #fff;
                border-radius: 12px;
                z-index: 20;
                padding-top: 8px;
                box-shadow: 0 2px .75rem rgb(12 14 28 / .08)
            }

            .banner__form__row form .form__field .dropdown.show .dropdown__menu {
                display: block;
                opacity: 1 ;
            }

            .banner__form__row form .form__field .dropdown .dropdown__menu ul {
                max-height: 260px;
                overflow: auto
            }

                .banner__form__row form .form__field .dropdown .dropdown__menu ul::-webkit-scrollbar-thumb {
                    background-color: #bfbfbf;
                    border-radius: 20px
                }

                .banner__form__row form .form__field .dropdown .dropdown__menu ul::-webkit-scrollbar {
                    width: 8px;
                    height: 8px;
                    background-color: rgb(255 255 255 / .1);
                    position: absolute;
                    z-index: 10000
                }

            .banner__form__row form .form__field .dropdown .dropdown__menu li button {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 8px 12px;
                border-bottom: 1px solid #ddd;
                font-size: 13px
            }

            .banner__form__row form .form__field .dropdown .dropdown__menu li img {
                width: 32px;
                height: 32px;
                border-radius: 32px;
                margin: 0
            }

            .banner__form__row form .form__field .dropdown .budget__dropdown {
                padding: 12px;
                width: max-content
            }


                .banner__form__row form .form__field .dropdown .budget__dropdown .title {
                    color: #191e3b;
                    font-size: 18px;
                    margin-bottom: 12px;
                    font-weight: 500
                }

           
                .banner__form__row form .form__field .dropdown .budget__dropdown .valueInput {
                    display: grid;
                    grid-template-columns:1fr 1fr;
                    gap:12px;
                    align-items: start;
                }
                    .banner__form__row form .form__field .dropdown .budget__dropdown  .budget_drp_header {
                        position: sticky;
                        top: 0px;
                        gap: 12px;
                    }
            .banner__form__row form .form__field .dropdown .budget__list__container {
                max-height: 200px;
                overflow-y: auto;
            }
                    .banner__form__row form .form__field .dropdown .budget__dropdown .valueInput input {
                        border: 1px solid #818494;
                        height: 30px;
                        border-radius: 6px;
                        padding-inline: 6px 0;
                        font-size:13px;
                    }

                    .banner__form__row form .form__field .dropdown .budget__dropdown .valueInput label {
                        margin-bottom: 4px;
                        font-size: 16px
                    }

                  

                    .banner__form__row form .form__field .dropdown .budget__dropdown .valueInput input::placeholder {
                        color: #000
                    }

                    .banner__form__row form .form__field .dropdown .budget__dropdown .valueInput input::-webkit-inner-spin-button, .banner__form__row form .form__field .dropdown .budget__dropdown .valueInput input::-webkit-outer-spin-button {
                        -webkit-appearance: none;
                        -moz-appearance: none;
                        appearance: none;
                        margin: 0
                    }

                .banner__form__row form .form__field .dropdown .budget__dropdown .submit__budget__btn {
                    background: #05379a;
                    color: #fff;
                    height: 35px;
                    width: 100px;
                    text-align: center;
                    display: flex;
                    justify-content: center;
                    border-radius: 90px;
                    margin-top: 12px;
                    margin-left: auto
                }


    .banner__form__row form button.search__button {
        background: #05379a;
        width: auto;
        min-width: 120px;
        height: auto;
        min-height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 12px 24px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border: none;
        transition: background .3s ease;
    }
    
    .banner__form__row form button.search__button:hover {
        border: 1px solid #05379a;
        color: #05379a;
        background: transparent;
    }
    
    .banner__form__row form button.search__button svg {
        display: none;
    }
    
    .banner__form__row form button.search__button::after {
        content: 'SEARCH';
    }

    .banner__form__row form input, .banner__form__row form select {
        border: none;
        outline: 0;
        cursor: pointer;
        font-size: 15px;
        color: #333;
        background: transparent;
        padding: 4px 0;
    }
    
    .banner__form__row form input::placeholder {
        color: #999;
        font-size: 15px;
    }

    .banner__form__row form label {
        font-size: 13px;
        font-weight: 500;
        display: block;
        margin-bottom: 8px;
        color: #121212;
    }

.breadcrumb {
    margin-block: 0 40px;
    background: #daf7fb
}

    .breadcrumb ul {
        display: flex;
        border-radius: 6px;
        padding: 10px 20px
    }

        .breadcrumb ul li {
            padding-right: 20px;
            position: relative;
            white-space: nowrap;
            overflow: hidden !important;
            text-overflow: ellipsis
        }

            .breadcrumb ul li::after {
                content: "/";
                position: absolute;
                top: 50%;
                font-size: 12px;
                width: 1px;
                display: flex;
                right: 10px;
                transform: translateY(-50%);
                align-items: center;
                justify-content: center
            }

        .breadcrumb ul a {
            color: #00234c;
            font-weight: 500;
            font-size: 13px
        }

            .breadcrumb ul a.active {
                font-weight: 400;
                color: #666
            }

.back-to-top {
    background-color: #d4eef9;
    cursor: pointer;
    width: 48px;
    height: 48px;
    z-index: 20;
    position: fixed;
    right: 32px;
    bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 100%
}

    .back-to-top svg.icon__arrow-up {
        fill: #05379A;
        width: 24px;
        height: 24px
    }

/* budget drodpown */
.budget__list div{
   font-size:13px;
   padding-block:4px;
   padding-left:12px;
}
.budget__list.max__budget__list {
    grid-column-start:2;
}
.selectedBudgetValue{
    font-size:13px;
    text-align:left;
}
.home__layout{
    padding-top: 60px;
}

@media (max-width:1440px) {
    header {
        padding-inline: 20px
    }

    .nav__ul li a {
        font-size: 14px
    }

    section .heading__block h2 {
        font-size: 20px;
        padding-inline: 0
    }

        section .heading__block h2 span {
            font-size: 13px
        }

    .button.button__nav {
        font-size: 13px;
        border: 1px solid #fff;
        height: 35px;
        line-height: 35px
    }
}

@media (max-width:1024px) {
    header {
        padding-block: 12px
    }

    .button.button__nav {
        margin-inline: auto 0
    }

    .login__btn {
        margin-inline: 20px
    }

    .hamburger__icon {
        display: block;
        background: 0 0;
        border: none;
        height: 24px;
        cursor: pointer
    }

        .hamburger__icon svg path {
            fill: #fff
        }

    .navigation {
        position: relative
    }

    .nav__ul {
        transform: translate(-100%);
        position: absolute;
        top: 60px;
        left: -20px;
        width: 100vw;
        height: max-content;
        flex-direction: column;
        align-items: flex-end;
        background: #fff;
        transition: .3s;
        box-shadow: 0 0 25px 0 rgb(0 0 0 / .1);
        padding-block: 20px
    }

        .nav__ul li {
            text-align: left;
            width: 100%;
            padding-block: 10px
        }

            .nav__ul li a {
                color: var(--secondary__color)
            }

        .nav__ul.show {
            transform: translate(0)
        }

    .button.button__nav:hover .modal__property__dropdown {
        display: none
    }

    .button.button__nav.show .modal__property__dropdown {
        display: flex
    }

    .banner__section {
        padding-block: 50px
    }

    .banner__search__wrapper {
        margin-bottom: 152px 0
    }
}

@media (max-width:576px) {
    .navigation .logo img {
        width: 100px;
        height: auto
    }

    .back-to-top, .fixed__sidebar__btn {
        right: 20px;
        bottom: 80px
    }

    .button.button__nav {
        font-size: 11px;
        padding-inline: 12px
    }

    .login__btn {
        height: max-content
    }

    .nav__ul {
        top: 52px
    }

    .button.button__nav:hover .modal__property__dropdown {
        width: 150px
    }

    .banner__section {
        margin-bottom: 50px;
        min-height:320px;
    }

    .search__button button {
        background: 0 0;
        padding: 0;
        max-width: max-content
    }

    .banner__form__wrapper form select {
        font-size: 13px;
        padding-left: 0
    }

    .search__icon__mobile {
        display: block
    }

        .search__icon__mobile img {
            width: 16px
        }

    .search__button__text {
        display: none
    }

    .banner__form__wrapper {
        padding: 10px 15px 10px 10px
    }

    .banner__section__row h1 {
        font-size: 28px;
        line-height: 28px;
        padding-top: 80px
    }

        .banner__section__row h1 span {
            font-size: 16px
        }

    .banner__form__wrapper .search__block input {
        padding-left: 0;
        font-size: 13px;
        background: 0 0
    }

    .banner__form__wrapper .form__field:first-child {
        margin-right: 0
    }

    .breadcrumb ul {
        padding: 10px 20px
    }
}

header, header.sticky {
    background: linear-gradient(to right,#00234c,#002c61,#003676,#003f8c,#0149a3)
}

.app__drawer__footer, .app__drawer__links {
    padding-inline: 20px;
    width: 380px
}

@keyframes slideDown {
    from {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

header {
    margin-inline: auto;
    position: sticky;
    top: 0;
    z-index: 90;
}

    header .navigation .menu__items {
        display: flex;
        align-items: center;
        gap: 20px
    }

        header .navigation .menu__items .app__drawer___btn {
            background: 0 0
        }

            header .navigation .menu__items .app__drawer___btn svg {
                width: 24px;
                height: 24px;
                cursor: pointer
            }

        .app__drawer__links .submenuInnerWrap a svg, header .navigation .menu__items .explore__maps__btn img {
            width: 16px;
            height: 16px
        }

.navigation .menu__items .app__drawer {
    background: #fff;
    box-shadow: -4px 0 8px 0 rgb(0 106 194 / .2);
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: .5s
}

    .navigation .menu__items .app__drawer.show {
        width: 380px
    }

.app__drawer__overlay.show {
    display: block;
    background: rgb(0 0 0 / .2);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 16
}

header .navigation .menu__items .explore__maps__btn {
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000;
    background: #fff;
    font-size: 14px;
    padding-inline: 16px;
    font-weight: 700;
    height: 36px
}

.app__drawer .app__drawer__menu {
    display: flex;
    flex-direction: column;
    height: 100%
}

.app__drawer__menu .drawer__back__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f5f7;
    padding: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    cursor: pointer
}

    .app__drawer__menu .drawer__back__btn img {
        width: 12px
    }

.app__drawer__body {
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    overflow-x: hidden
}

    .app__drawer__body::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #f4f5f7
    }

    .app__drawer__body::-webkit-scrollbar {
        width: 4px;
        background-color: #f4f5f7
    }

    .app__drawer__body::-webkit-scrollbar-thumb {
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / .3);
        background-color: #f4f5f7
    }

.app__drawer .app__drawer__menu .app__card {
    background: #e2f4d7;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 20px 20px 0 0;
    border-radius: 14px;
    position: relative;
    margin-inline: 20px;
    width: 340px
}

    .app__drawer .app__drawer__menu .app__card .app__icon {
        height: 100%;
        margin-right: 20px;
        width: 100px;
        display: flex
    }

        .app__drawer .app__drawer__menu .app__card .app__icon img {
            height: 100%;
            width: 100%
        }

    .app__drawer .app__drawer__menu .app__card svg {
        margin-inline: auto 20px;
        height: 12px;
        width: 12px
    }

    .app__drawer .app__drawer__menu .app__card .promo__content h4 {
        color: #070806;
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 2px
    }

    .app__drawer .app__drawer__menu .app__card .promo__content p {
        font-size: 12px;
        padding-bottom: 12px;
        font-weight: 600;
        color: #555
    }

.app__drawer__links li {
    overflow: hidden
}

    .app__drawer__links li a {
        display: flex;
        align-items: center;
        font-size: 15px;
        justify-content: space-between;
        border-bottom: 1px solid #ddd;
        padding: 16px 0;
        font-weight: 600;
        cursor: pointer;
        color:#000;
    }

        .app__drawer__links li a.submenuTrigger ~ .submenu {
            max-height: 0;
            transition: .5s ease-in
        }

            .app__drawer__links li a.submenuTrigger ~ .submenu.open {
                max-height: 500px;
                margin-bottom: 20px
            }

            .app__drawer__links li a.submenuTrigger ~ .submenu a {
                border-bottom: none;
                padding-bottom: 0;
                padding-left: 4px;
                color: #555;
                display: flex;
                align-items: center;
                justify-content: start;
                gap: 8px;
                font-weight: 500;
                font-size: 13.5px;
                  transition: transform 0.3s ease;
            }
                .app__drawer__links li a.submenuTrigger ~ .submenu a:hover {
                    transform: translateX(10px);
                }
                .app__drawer__links li a.submenuTrigger ~ .submenu a img {
                    width: 12px;
                    transform: rotate(180deg)
                }

.app__drawer__links .download__app__block .buttons__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .app__drawer__links .download__app__block .buttons__wrapper a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        color: #151515;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 1px solid #ddd;
        padding: 12px 20px;
        border-radius: 6px;
        background-color: #f7f7f7;
    }

        .app__drawer__links .download__app__block .buttons__wrapper a:hover {
            background-color: #e0ecff; /* Light blue */
            color: #003c85; /* Dark blue text */
            border-color: #c4d9f8; /* Light blue border */
        }

            .app__drawer__links .download__app__block .buttons__wrapper a:hover svg path {
                fill: #003c85; /* Icon turns dark blue */
            }






.app__drawer__links .download__app__block a {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
    color: #151515 !important;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    background: #f7f7f7;
    justify-content: start
}

.app__drawer__links .download__app__block .banner {
    background: #202020;
    max-width: 100%;
    padding: 20px;
    margin-bottom: 20px
}

.app__drawer__links .download__app__block .pre__title {
    color: #fff;
    letter-spacing: .05em;
    text-transform: uppercase;
    background-color: #146ef5;
    border-radius: 4px;
    padding: .25rem .5rem;
    font-size: .625rem;
    font-weight: 600;
    display: inline-block
}

.app__drawer__links .download__app__block .main__title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-block: 12px
}

.app__drawer__links .submenuInnerWrap {
    background: #fff;
    height: calc(100vh - 40px);
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
    padding: 60px 20px 20px;
    transition: .5s;
    left: 100%
}

    .app__drawer__links .submenuInnerWrap.show {
        left: 0
    }

    .app__drawer__links .submenuInnerWrap .close__submenuInnerWrap {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        background: #f4f5f7;
        padding: 12px;
        margin-bottom: 20px;
        font-weight: 600;
        cursor: pointer
    }

.app__drawer__footer {
    margin-top: auto;
    background: #f4f5f7;
    padding-block: 12px
}

    .app__drawer__footer .contact {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: #555;
        margin-bottom: 8px
    }

        .app__drawer__footer .contact a {
            font-size: 12px;
            color: #555
        }

    .app__drawer__footer .links {
        display: flex;
        gap: 20px
    }

        .app__drawer__footer .links a {
            color: #008cff;
            font-size: 12px
        }

header .site__nav__dropdown {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: .2s cubic-bezier(.4,0,.2,1)
}

header .nav__item:hover > .site__nav__dropdown {
    display: block;
    width: max-content;
    max-width: max-content;
    left: 50%;
    transform: translateX(-50%);
    top: 65px;
    border-radius: 8px;
    padding: 30px 0 20px;
    background-color: #fff;
    color: #1d1d1d;
    border: 1px solid #e6e6e6;
    position: absolute;
    box-shadow: 0 1px 4px #0000001a;
    z-index: 20;
    box-shadow: 0 10px 30px #0c043f14;
    opacity: 1;
    visibility: visible;
    height: max-content
}

    header .nav__item:hover > .site__nav__dropdown.property__dropdown {
        left: -120px;
        transform: translate(0)
    }

header .submenu__parent .submenu__item {
    display: flex;
    align-items: center;
    gap: 2px;
    cursor: pointer
}

    header .submenu__parent .submenu__item svg {
        width: 24px;
        height: 24px
    }

header .submenu__parent .divider {
    height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 12px;
    overflow: hidden;
    background: #fff;
    transform: translate(0) translateY(-6px) translateZ(0) rotateX(0) rotateY(0) rotate(-45deg);
    transform-origin: 50% 50%;
    flex-shrink: 0;
    padding: 0;
    bottom: -12px;
    position: absolute;
    left: 50%
}

header .submenu__parent:hover > .divider {
    height: 12px;
    box-shadow: 0 6px 12px #1a1b251f,0 1px 3px #1a1b251f,0 0 0 1px #1a1b250f
}

header .site__nav__dropdown .column {
    width: max-content
}

header .site__nav__dropdown .container .title {
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding: 0 12px 12px;
    margin-bottom: 12px;
    font-weight:600;
}

header .site__nav__dropdown .container ul li {
    padding: 4px 12px 8px 0;
    display: flex;
    gap: 6px
}

    header .site__nav__dropdown .container ul li svg {
        width: 16px;
        height: 16px;
        min-width: 16px;
        opacity: .3
    }

    header .site__nav__dropdown .container ul li a {
        color: #000;
        opacity: .8;
        font-size: 13px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden
    }

header .site__nav__dropdown .container .owl-nav button, header .site__nav__dropdown .container .owl-nav button:hover {
    background: #fff;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    box-shadow: rgb(149 157 165 / .2) 0 8px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

    header .site__nav__dropdown .container .owl-nav button.disabled {
        opacity: 0
    }

    header .site__nav__dropdown .container .owl-nav button.owl-prev {
        position: absolute;
        left: 0;
        top: 50%
    }

    header .site__nav__dropdown .container .owl-nav button.owl-next {
        position: absolute;
        right: 0;
        top: 50%
    }

    header .site__nav__dropdown .container .owl-nav button svg {
        width: 12px;
        height: 12px
    }

header .submenu__parent .services__dropdown {
    padding-inline: 32px
}

    header .submenu__parent .services__dropdown .services__container {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 12px
    }

    header .submenu__parent .services__dropdown .main__title {
        font-size: 18px;
        padding-bottom: 8px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 20px;
        font-weight: 600;
    }

    header .submenu__parent .services__dropdown .services__container .service__block {
        display: flex;
        gap: 12px;
        border: 1px solid;
        padding: 20px 12px;
        border-radius: 6px;
        max-width: 380px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
        header .submenu__parent .services__dropdown .services__container .service__block:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
        }

        header .submenu__parent .services__dropdown .services__container .service__block img {
            width: 24px;
            height: 24px
        }

        header .submenu__parent .services__dropdown .services__container .service__block .title {
            color: #151515;
            font-size: 15px;
            font-weight: 800;
            padding-bottom: 4px
        }

        header .submenu__parent .services__dropdown .services__container .service__block p {
            font-size: 13.5px;
            color: #8c94a5
        }

header .site__nav__dropdown .container ul li:hover a, header .site__nav__dropdown .container ul li:hover svg {
    opacity: 1
}

header .submenu__parent .download__app__row {
    display: flex;
    gap: 32px;
    padding-inline: 20px
}

    header .submenu__parent .download__app__row .main__title {
        font-size: 18px;
        padding-bottom: 8px;
        border-bottom: 1px solid;
        margin-bottom: 20px;
        font-weight: 600;
    }

   /* header .submenu__parent .download__app__row .buttons__wrapper {
        display: flex;
        gap: 12px;
        flex-direction: column
    }*/
    header .submenu__parent .download__app__row .buttons__wrapper {
        display: flex;
        gap: 12px;
        flex-direction: column;
    }

        header .submenu__parent .download__app__row .buttons__wrapper a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: #151515;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #ddd;
            padding: 12px 20px;
            border-radius: 6px;
            background-color: #f7f7f7;
        }

            header .submenu__parent .download__app__row .buttons__wrapper a:hover {
                background-color: #e0ecff; /* Light blue */
                color: #003c85; /* Darker blue text for contrast */
                border-color: #c4d9f8; /* Optional: light border */
            }

                header .submenu__parent .download__app__row .buttons__wrapper a:hover svg path {
                    fill: #003c85; /* Icon turns dark blue */
                }



    header .submenu__parent .download__app__row a {
        border: 1px solid #ddd;
        padding: 12px;
        border-radius: 6px;
        color: #151515 !important;
        display: flex;
        align-items: center;
        padding-inline: 20px;
        gap: 8px;
        font-size: 14px;
        font-weight: 800;
        min-width: 220px;
        background: #f7f7f7
    }

    header .submenu__parent .download__app__row .banner {
        background: #202020;
        max-width: 284px;
        padding: 20px
    }

        header .submenu__parent .download__app__row .banner .pre__title {
            color: #fff;
            letter-spacing: .05em;
            text-transform: uppercase;
            background-color: #146ef5;
            border-radius: 4px;
            padding: .25rem .5rem;
            font-size: .625rem;
            font-weight: 600;
            display: inline-block
        }

        header .submenu__parent .download__app__row .banner .main__title {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
            color: #fff;
            margin-block: 12px
        }

#viewAllCitiesButton, #viewAllFeaturedButton, #viewAllNewlyLaunchedButton, #viewAllWebStoryButton {
    box-shadow: none;
    background: #0149a3;
    color: #fff;
    min-height: 40px;
    border-radius: 6px;
    font-size: 14px;
    padding-inline: 30px;
    font-weight: 600;
    height: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-inline: auto
}

@media (max-width:800px) {

    .banner__section {
        padding-block: 50px;
        margin-bottom: 0
    }
     .banner__section .banner__image{
         display:none;
     }
     .banner__section .banner__image.mobile{
         display:block;
     }
    .banner__section__row h1 {
        font-size: 24px;
        padding: 0;
        line-height: 1.25;
        margin-bottom: 20px;
        /*color: #05379a;*/
    }

    .banner__section img {
        width: 90px
    }
  /*  .banner__section::before {
        background: transparent;
    }

    .banner__section .banner__image {
        display: none;
    }*/
    .banner__form__row__mobile {
        overflow: hidden;
        border: 1px solid #ddd;
        box-shadow: 0px 120px 120px 0px #3B82F633;
    }
    .banner__form__row__mobile input::placeholder {
    color: #000;
    font-weight: 500;
    font-family: Manrope, sans-serif;
    }
}

@media (max-width:600px) {
    .banner__search__wrapper {
        margin-block: 22px 0;
        bottom: -25px;
    }

    .banner__form__row {
        display: none
    }

    .banner__form__row__mobile {
        display: flex;
        justify-content: space-between;
        background: #fff;
        border-radius: 90px;
        height: 52px;
        padding-inline: 20px 0;
        align-items: center
    }

        .banner__form__row__mobile input {
            border: none;
            border-radius: 90px;
            height: 52px;
            font-size: 14px;
            font-weight: 600
        }

            .banner__form__row__mobile input:focus-visible {
                border: none;
                outline: 0
            }

        .banner__form__row__mobile .search__icon__wrapper {
            background: #05379a;
            height: 52px;
            border-radius: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px
        }

            .banner__form__row__mobile .search__icon__wrapper svg path {
                fill: #fff
            }
}

@media (max-width:475px) {
    header {
        padding-inline: 12px
    }

    .navigation .logo img {
        width: 80px
    }

    header .navigation .menu__items {
        gap: 6px
    }
    header .navigation .menu__items a:nth-child(2){
        display:none;
    }
    .location__header{
        margin-inline:12px auto;
        position:static;
    }
    header .navigation{
        position:relative;
    }
    .location__header .dropdown {
        transform:  translateX(-50%);
        pointer-events: auto;
        width: 100vw;
        left: -10px;
    }
        .location__header .dropdown.show {
            transform: translateX(0);
            pointer-events: auto;
            width: 100vw;
            left: -10px;
        }
        .location__header .dropdown__menu ul {
            grid-template-columns: repeat(2, minmax(0, 180px));
        }

        header .button.button__nav span {
            gap: 4px;
            height: 28px
        }

    header .button.button__nav {
        font-size: 10px;
        padding-inline: 10px;
        height: 28px
    }

        header .button.button__nav span img {
            width: 12px
        }
}
