/*Global css*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #253440;
}

a, button {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

a {
    text-decoration: none;
    color: #025ea7;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: #000000;
}

a, img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

label {
    font-weight: 500;
    color: #253440;
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    color: #253440;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.3;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    display: block;
    margin: 0 0 16px;
    color: #253440;
}

p:last-child {
    margin: 0;
}

.font-10 {
    font-size: 10px !important;
}
.font-11 {
    font-size: 11px !important;
}
.font-12 {
    font-size: 12px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-17 {
    font-size: 17px !important;
}
.font-19 {
    font-size: 19px !important;
}
.font-21 {
    font-size: 20px !important;
}

.btn-custom {
    text-align: center;
    padding: 0px 26px;
    background-color: #025ea7;
    border: solid 1px transparent;
    border-radius: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    outline: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.btn-custom:hover {
    color: #ffffff;
    background-color: #28283c;
    border-color: #28283c;
}

.btn-custom-white {
    background-color: #ffffff;
    color: #253440;
}

.btn-custom-outline {
    background-color: #ffffff;
    color: #253440;
    border: 1px solid #bec2c6;
}

.btn-disabled {
    opacity: 1 !important;
    background-color: #ccc !important;
    color: #2c3034 !important;
    border-color: #bbb !important;
    cursor: not-allowed !important;
}

button:focus {
    outline: none;
}

.btn-custom-banner {
    height: auto;
    line-height: normal;
}

.btn-custom small {
    display: block;
}

.btn-custom.btn-sm {
    font-size: 14px;
    font-weight: 400;
    height: 30px;
    line-height: 28px;
    padding: 0 20px;
}

.btn-custom.btn-lg {
    font-size: 20px;
    height: 74px;
    line-height: 72px;
    padding: 0 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    height: 55px;
    line-height: 55px;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    outline: none;
    padding: 0px 15px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-control:focus {
    color: #68727b;
    background-color: #fff;
    border-color: #d9d9d9;
    outline: 0;
    box-shadow: none;
    outline: none;
}

.form-control::-webkit-input-placeholder {
    color: #68727b;
}

.form-control:-ms-input-placeholder {
    color: #68727b;
}

.form-control::placeholder {
    color: #68727b;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background: #fff url(../images/select-arrow.svg) no-repeat center right 16px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-60 {
    padding-bottom: 60px;
}

.owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

.owl-nav button {
    width: 40px;
    height: 40px;
}

.owl-nav button.owl-prev {
    background: transparent url(../images/arrow2.svg) no-repeat center center !important;
    background-size: cover !important;
}

.owl-nav button.owl-next {
    background: transparent url(../images/arrow3.svg) no-repeat center center !important;
    background-size: cover !important;
}

.owl-nav button span {
    display: none;
}

.padding-30 {
    padding: 30px;
}

.padding-50 {
    padding: 50px;
}

.bg-light-blue {
    background-color: #e5eff6;
}

.bg-light-grey {
    background-color: #f0f0f0;
}

.bg-light-purple {
    background-color: #f0f0ff;
}

.bg-light-cream {
    background-color: #fff6e8 !important;
}

.bg-green {
    background-color: #E9FFE6;
}

.bg-cream {
    background-color: #FFF0D8;
}

.bg-light-green {
    background-color: #ECF6E6;
}

.bg-light-pink {
    background-color: #FFEFFC;
}

.bg-blue {
    background-color: #E6EFF6 !important;
}

.bg-skyblue {
    background-color: #E8FCFF;
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #282828;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-mark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: solid 1px #B8B7B7;
    border-radius: 3px;
}

.check-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .check-mark:after {
    display: block;
}

.custom-checkbox .check-mark:after {
    left: 4px;
    top: 5px;
    width: 15px;
    height: 12px;
    background: url(../images/check-icon.svg) no-repeat;
}

.width-150 {
    width: 150px;
}

.width-200 {
    width: 200px;
}

.width-250 {
    width: 250px;
}

.content-page {
    padding: 40px 0;
}

.content-page ul {
    margin-bottom: 20px;
}

.content-page ul li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-page ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    background: url(../images/liIcon.svg) no-repeat center center;
    width: 14px;
    height: 14px;
}

.container {
    width: 100%;
    max-width: 1390px;
    position: relative;
}

.cmn-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px #c7c7c740;
    margin: 0 0 50px;
}

/* Global Table */
.table-responsive {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.custom-table {
    margin: 0;
}

.custom-table th {
    background-color: #025EA7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: none;
    padding: 15px;
}

.custom-table td {
    font-size: 14px;
    padding: 15px;
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    color: #253440;
}

.custom-table tr:nth-child(2n+2) td {
    background: #F9F9F9;
}

.custom-table.tbl-small th, .custom-table.tbl-small td {
    padding: 8px 15px;
}

.custom-table.tbl-small th.s-font {
    font-weight: 400;
    font-size: 12px !important;
    text-align: center;
    padding: 3px 15px;
    line-height: 14px;
}

.custom-table.tbl-small.tail-risk-tbl th, .custom-table.tbl-small.tail-risk-tbl td {
    font-size: 13px
}

.map-table {
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}

.map-table th {
    background-color: #025EA7;
    color: #ffffff;
    font-weight: 500;
    border-bottom: none;
    padding: 4px;
}

.map-table td {
    padding: 4px;
    border-top: none;
    border-bottom: 1px solid #dee2e6;
    color: #253440;
}

.custom-table tfoot td {
    background: #253440;
    color: #fff;
    font-weight: 600;
}

.custom-table .sortable {
    position: relative;
    padding-right: 16px;
    cursor: pointer;
}

.custom-table .sortable::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url(../images/column-sorting.svg) no-repeat center center;
    background-size: cover;
}

/* Global Table */

/* Global Pagination */
.custom-pagination .pagination {
    box-shadow: 0 4px 4px 0 #0000000d;
    border-radius: 30px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid #fbfbfb;
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 1;
    position: relative
}

.custom-pagination .pagination li, .custom-pagination .pagination li a {
    border: 0;
    margin: 0 3px
}

.custom-pagination .pagination li img {
    vertical-align: sub;
    opacity: .5
}

.custom-pagination .pagination li a {
    color: #253440;
    border-radius: 50%;
    height: 28px;
    width: 28px;
    padding: 0;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    font-size: 14px
}

.custom-pagination .pagination li a:hover, .custom-pagination .pagination li.active a {
    background: #025EA7;
    color: #fff;
    outline: none
}

.custom-pagination .pagination li a:hover img {
    filter: brightness(100);
    opacity: 1
}

.custom-pagination .page-item:first-child .page-link, .custom-pagination .page-item:last-child .page-link {
    border-radius: 50%;
    margin: 0
}

.custom-pagination-with-listing {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Global Pagination */

/* Global Jquery UI Date Picker */
.ui-datepicker {
    width: 15em;
    z-index: 9999999 !important;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    background: #fff;
    border: 1px solid #cfc8c8;
    border-radius: 4px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    padding: 2px;
    outline: none;
    box-shadow: none
}

.ui-widget-header {
    border: none;
    background: transparent;
    border-bottom: 1px solid #ddd;
    border-radius: 0 !important;
    padding: 2px 0 5px !important
}

.ui-datepicker th {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 5px 0;
    font-size: 13px;
    width: 33px
}

.ui-datepicker td {
    font-size: 13px;
    width: 33px
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #eaf5fd;
    background: #eaf5fd;
    font-weight: 400;
    color: #454545;
    border-radius: 4px;
    text-align: center
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid #d7e8f5;
    background: #d7e8f5
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #1b84d7;
    background: #1b84d7;
    color: #fff
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #025ea7;
    background: #025ea7;
    color: #fff
}

.ui-slider .ui-slider-handle {
    z-index: 1
}

.ui-widget-header .ui-icon {
    width: 20px;
    height: 20px;
    background-position: center center;
    background-size: 100% auto;
    border: transparent !important
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 7px;
    width: 20px;
    height: 20px;
    border: transparent !important;
    cursor: pointer;
    background-color: transparent;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px
}

.ui-datepicker .ui-datepicker-next {
    right: 5px
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    left: 0;
    top: 0;
    margin: 0;
    border: transparent !important;
    cursor: pointer;
    background-color: transparent;
}

.ui-datepicker .ui-datepicker-prev span {
    background-image: url(../images/arrow1.svg)
}

.ui-datepicker .ui-datepicker-next span {
    background-image: url(../images/arrow.svg)
}

.ui-datepicker .ui-datepicker-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 28px
}

/* Global Jquery UI Date Picker */

@media screen and (max-width: 1440px) {
    .container {
        max-width: 1260px;
    }
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }

    .padding-30 {
        padding: 20px;
    }

    .padding-50 {
        padding: 30px;
    }

    .pb-60 {
        padding-bottom: 40px;
    }

    .custom-table th, .custom-table td {
        white-space: nowrap;
    }

    .cmn-card {
        padding: 15px;
        border-radius: 10px;
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 991px) {
    .btn-custom {
        padding: 0px 26px;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }

    .owl-nav button {
        width: 30px;
        height: 30px;
    }

    .padding-30 {
        padding: 16px;
    }

    .padding-50 {
        padding: 20px;
    }

    .form-control {
        height: 45px;
        line-height: 45px;
    }

    .btn-custom.btn-lg {
        font-size: 16px;
        height: 50px;
        line-height: 48px;
        padding: 0 25px;
    }

    .content-page h2 {
        font-size: 30px;
    }

    .content-page h3 {
        font-size: 26px;
    }
}

@media screen and (max-width: 767px) {
    .pb-60 {
        padding-bottom: 30px;
    }

    label {
        margin-bottom: 6px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .custom-table th, .custom-table td {
        font-size: 14px;
        padding: 8px;
    }

    .custom-table.tbl-small th, .custom-table.tbl-small td {
        padding: 8px;
    }

    .custom-pagination-with-listing {
        display: block;
        text-align: center;
    }

    .pag-list-lt {
        padding: 0 0 7px;
    }
}

/*Global css*/


/**header**/
.header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #d3d6d9;
}

.header .container {
    position: static
}

.logo {
    display: block;
    width: 170px
}

.logo img {
    display: block
}

.menu > ul > li {
    margin-left: 2px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.menu > ul > li > a {
    display: flex;
    padding: 3px 16px;
    color: #253440;
    border-radius: 20px;
    align-items: center;
    gap: 8px
}

.menu > ul > li.active > a, .menu > ul > li:hover > a {
    color: #fff;
    background-color: #025ea7
}

.menu > ul > li.sub-nav-link > a::after {
    background: url(../images/nav-arrow.svg) no-repeat center center;
    content: "";
    width: 9px;
    height: 5px
}

.menu > ul > li.sub-nav-link:hover > a::after {
    background: url(../images/nav-arrow-hover.svg) no-repeat center center
}

.menu > ul > li.sub-nav-link ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 40px;
    display: none;
    padding: 40px 0 0;
}

.menu > ul > li.sub-nav-link ul::before {
    content: "";
    position: fixed;
    inset: 0;
    display: block;
    background: #0009;
    z-index: -1;
    top: 106px;
    pointer-events: none;
}

.menu > ul > li.sub-nav-link:hover > ul {
    display: block;
}

.menu > ul > li.sub-nav-link ul li {
    width: 100%;
    max-width: 1390px;
    padding: 0 15px;
    margin: 0 auto;
}

.menu > ul > li.sub-nav-link ul li::before {
    position: absolute;
    content: "";
    display: block;
    inset: 0;
    background: #fff;
    z-index: -1;
    border-top: 1px solid #d3d6d9;
    top: 39px;
}

.menu > ul > li.sub-nav-link ul li:last-child::before {
    display: none;
}

.menu > ul > li.sub-nav-link.active > a::after {
    filter: invert(100%) brightness(100);
}

.menu > ul > li.sub-nav-link.active:hover > a::after {
    filter: inherit;
}

.menu .nav-top {
    padding: 24px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -12px
}

.menu .nav-top a {
    width: calc(20% - 24px);
    margin: 0 12px;
    position: relative
}

.menu .nav-top a span {
    position: absolute;
    right: 6px;
    top: 6px;
    background-color: #F24C1A;
    height: 24px;
    line-height: 24px;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 0 15px
}

.menu .nav-top a strong {
    display: flex;
    margin: 0;
    padding: 15px 0 0;
    color: #253440;
    font-size: 16px;
    font-weight: 600;
    align-items: center
}

.menu .nav-top a strong::after {
    background: url(../images/rt-arw.svg) no-repeat right center;
    width: 35px;
    height: 10px;
    background-size: 24px auto;
    content: "";
    transition: all .3s ease
}

.menu .nav-top a img {
    width: 100%;
    display: block
}

.menu .nav-top a:hover strong::after {
    width: 40px
}

.menu .nav-btm {
    margin: 0 0 24px;
    background-color: #fff9f0;
    padding: 20px 20px 5px;
    display: flex;
    flex-wrap: wrap
}

.menu .nav-btm a {
    color: #253440;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    width: 33.33%;
    margin: 0 0 15px
}

.menu .nav-btm a:hover {
    color: #025ea7;
    text-decoration: none
}

.searchIcon {
    margin-left: 20px;
    position: relative
}

.searchIcon a {
    display: block;
}

.search-box {
    position: absolute;
    top: 65px;
    right: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .3s ease-in-out;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.search-box.open {
    width: 450px;
    opacity: 1;
    visibility: visible;
    padding: 10px
}

.searchIcon span:nth-child(1), .searchIcon span:nth-child(2) {
    display: inline-block;
    transition: opacity .3s ease
}

.searchIcon.active span:nth-child(1) {
    opacity: 0;
    pointer-events: none
}

.searchIcon.active span:nth-child(2) {
    opacity: 1;
    pointer-events: auto
}

.searchIcon span:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0
}

.search-box .form-control {
    padding-right: 50px
}

.search-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    z-index: 1
}

.mobile-nav li.dropdown .user-nav {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 0;
    padding: 0 10px 0 45px;
    font-size: 14px;
    position: relative
}

.mobile-nav li.dropdown .user-nav img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    position: absolute;
    left: 0;
    top: -12px
}

.mobile-nav li.dropdown .user-nav.dropdown-toggle::after {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    right: 0;
    top: 9px;
    background: url(../images/nav-arrow.svg) no-repeat center center;
    content: "";
    width: 9px;
    height: 5px;
    transition: all .3s ease
}

.mobile-nav li.dropdown .user-nav.show.dropdown-toggle::after {
    transform: rotate(180deg)
}

.mobile-nav li.dropdown .dropdown-menu {
    transform: inherit !important;
    left: 0 !important;
    right: auto !important;
    top: 49px !important;
    bottom: auto !important;
    padding: 0 0 12px;
    border: none;
    box-shadow: 0 20px 10px #00000008;
    border-radius: 0 0 10px 10px;
    width: 222px
}

.mobile-nav li.dropdown .dropdown-menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #253440
}

.mobile-nav li.dropdown .dropdown-menu ul li a:hover {
    color: #025ea7
}

.mobile-nav li.dropdown .user-nav span {
    width: 75px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media screen and (max-width: 1440px) {
    .menu > ul > li.sub-nav-link ul li {
        max-width: 1260px;
    }

    .menu .nav-top a strong {
        font-size: 14px;
    }

    .menu .nav-btm a {
        font-size: 14px;
        margin: 0 0 10px;
    }
}

@media screen and (max-width: 1199px) {
    .header {
        padding: 10px 0;
    }

    .logo {
        width: 120px;
    }

    .menu > ul > li > a {
        padding: 3px 12px;
        font-size: 14px;
    }

    .menu > ul > li.sub-nav-link ul {
        top: 47px;
        padding: 23px 0 0;
    }

    .menu > ul > li.sub-nav-link ul li::before {
        top: 23px;
    }

    .menu .nav-top {
        padding: 15px 0;
        margin: 0 -7px;
    }

    .menu .nav-top a {
        width: calc(20% - 14px);
        margin: 0 7px;
        font-size: 14px;
    }

    .menu .nav-btm {
        margin: 0 0 15px;
        padding: 15px 15px 5px;
    }

    .menu .nav-top a:hover strong::after {
        width: 30px
    }

    .menu > ul > li > a {
        gap: 5px;
    }

    .search-box {
        top: 48px;
    }
}

@media screen and (max-width: 991px) {
    /*Mobile Menu CSS*/
    .menu {
        display: none;
    }

    .menu-icon {
        display: block;
        height: 18px;
        position: absolute;
        right: 15px;
        top: 22px;
        width: 26px;
        z-index: 9
    }

    .menu-icon span {
        background: #025ea7;
        border-radius: 2px;
        display: block;
        height: 2px;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        transition: all 0.3s ease
    }

    .menu-icon span.line2 {
        top: 8px
    }

    .menu-icon span.line3 {
        top: 16px
    }

    .nav-body .menu-icon span.line2 {
        width: 0;
        opacity: 0
    }

    @keyframes line-animation {
        0% {
            opacity: 1;
            transform: rotate(0) scaleX(1)
        }
        50% {
            opacity: 1;
            transform: rotate(0) scaleX(0)
        }
        100% {
            opacity: 1;
            transform: rotate(45deg) scaleX(1)
        }
    }
    .nav-body .menu-icon span.line1 {
        animation: line-animation 1s;
        transform: rotate(45deg);
        top: 8px;
        transform-origin: center
    }

    @keyframes line-animation2 {
        0% {
            opacity: 1;
            transform: rotate(0) scaleX(1)
        }
        50% {
            opacity: 1;
            transform: rotate(0) scaleX(0)
        }
        100% {
            opacity: 1;
            transform: rotate(-45deg) scaleX(1)
        }
    }
    .nav-body .menu-icon span.line3 {
        animation: line-animation2 1s;
        transform: rotate(-45deg);
        top: 8px;
        transform-origin: center
    }

    .mobile-navigation {
        background: #fff;
        bottom: 0;
        display: block !important;
        left: 0;
        overflow-y: auto;
        margin: 0;
        position: fixed;
        top: 61px;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        width: 100%;
        right: 0;
        padding: 15px;
        transform: translateX(-120%);
        -webkit-transform: translateX(-120%);
        box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2) inset;
        z-index: 99999999
    }

    .nav-open {
        transform: translateX(0) !important;
        -webkit-transform: translateX(0) !important
    }

    .mobile-navigation ul li {
        position: relative
    }

    .parent-menu > div.sub-item {
        cursor: pointer;
        height: 46px;
        width: 30px;
        position: absolute;
        right: 0;
        z-index: 3;
        background: url(../images/arrow-up.svg) no-repeat right center;
        background-size: 16px auto;
    }

    .parent-menu.parent-menu-active > div.sub-item {
        background: url(../images/arrow-down.svg) no-repeat right center;
        background-size: 16px auto;
    }

    .mobile-navigation ul li a {
        color: #253440;
        display: block;
        padding: 12px 25px 12px 0;
        text-align: left;
        border-bottom: 1px solid rgba(210, 35, 125, 0.4);
        text-decoration: none;
        position: relative;
        font-size: 15px;
        transition: all 0 ease;
        font-weight: 500;
    }

    .mobile-navigation ul ul li a {
        font-size: 14px;
        padding-left: 15px;
        font-weight: 400;
    }

    .mobile-navigation ul li a:hover {
        color: #253440;
        text-decoration: none
    }

    .mobile-navigation ul li a strong {
        font-weight: 400;
    }

    .mobile-navigation > ul ul {
        width: 100%;
        display: none
    }

    .mobile-nav .nav-top a span, .mobile-nav .nav-top a img {
        display: none;
    }

    /*Mobile Menu CSS*/
    .logo {
        width: 100px;
    }

    .searchIcon {
        margin-left: 0;
        margin-right: 45px;
    }

    .search-box {
        top: 42px;
    }

    .search-btn {
        top: 20px;
    }

    .search-box.open {
        width: 350px;
    }

    .mobile-nav li.dropdown {
        background: #f9f7f7;
        padding: 12px;
        margin: 12px 0 0;
        border-radius: 10px
    }

    .mobile-nav li.dropdown .user-nav {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0
    }

    .mobile-nav li.dropdown .user-nav img {
        width: 40px;
        height: 40px;
        position: relative;
        left: 0;
        top: auto
    }

    .mobile-nav li.dropdown .user-nav span {
        width: auto;
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: inherit;
        margin: 0 10px
    }

    .mobile-nav li.dropdown .user-nav.dropdown-toggle::after {
        top: 19px
    }

    .mobile-nav li.dropdown .dropdown-menu {
        transform: inherit !important;
        left: 0 !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        padding: 10px 10px 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        position: relative !important;
        background: transparent
    }

    .mobile-nav li.dropdown .dropdown-menu ul {
        display: block
    }

    .mobile-nav li.dropdown .dropdown-menu ul li a {
        padding: 10px 0
    }

    .mobile-nav li.dropdown .dropdown-menu ul li:last-child a {
        border: none
    }
}

@media screen and (max-width: 767px) {
    .search-box {
        right: -52px;
    }
}

/**header End**/


/***footer***/
.footer {
    background-color: #fdfdfd;
    font-size: 14px;
}

.footer-top {
    padding: 40px 0;
}

.padding-right {
    padding-left: 80px;
}

.footer-info {
    padding-right: 30px;
}

.ft-logo {
    display: block;
    width: 120px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-links span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.footer-links ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    display: inline-block;
}

.footer-contact ul li {
    display: flex;
    align-items: self-start;
    gap: 16px;
    margin-bottom: 26px;
}

.footer-contact ul li:last-child {
    margin-bottom: 0;
}

.footer-contact ul li i {
    width: 28px;
    flex: 0 0 28px;
}

.footer-contact ul li span {
    flex: auto;
    display: block;
}

.footer-contact ul li span strong {
    display: block;
    font-weight: 500;
    padding-bottom: 2px;
}

.footer-contact ul li a {
    display: inline-block;
}

.footer-bottom {
    padding: 22px 0;
    border-top: solid 1px #e4e4e4;
}

.footer-bottom ul {
    display: flex;
    gap: 38px;
}

.footer-bottom ul li {
    flex: auto;
    display: block;
}

.footer-bottom ul li a {
    display: block;
}

.footer a {
    color: #253440;
}

.footer a:hover {
    color: #025ea7;
}

@media screen and (max-width: 1199px) {
    .footer-bottom {
        padding: 16px 0;
    }

    .footer-info {
        padding-right: 0;
    }

    .padding-right {
        padding-left: 40px;
    }
}

@media screen and (max-width: 991px) {
    .padding-right {
        padding-left: 0;
    }

    .footer-links ul li {
        margin-bottom: 6px;
    }

    .footer-contact ul li {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-contact ul li i {
        width: 18px;
        flex: 0 0 18px;
    }

    .footer-bottom ul {
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        font-size: 13px;
    }

    .footer-top {
        padding: 20px 0 20px;
    }

    .ft-logo {
        width: 100px;
    }

    .footer-info {
        padding-bottom: 20px;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-links ul li {
        width: 50%;
        flex: 0 0 50%;
    }

    .footer-links span {
        padding-bottom: 10px;
    }

    .footer-links {
        padding-bottom: 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom ul {
        flex-wrap: wrap;
        gap: 8px;
        margin: 0 0 10px;
    }

    .footer-contact ul li {
        margin-bottom: 10px;
        border-bottom: solid 1px #e4e4e4;
        padding-bottom: 10px;
    }

    .footer-contact ul li:last-child {
        border: none;
    }
}

/***footer end***/


/***heading***/
.heading {
    margin: 0 auto 30px;
    max-width: 1000px;
}

.sub-heading {
    display: inline-block;
    border-radius: 30px;
    padding: 3px 26px;
    text-transform: uppercase;
    border: 1px solid rgba(37, 52, 64, 0.3);
    font-size: 14px;
    font-weight: 500;
    color: rgba(37, 52, 64, 0.7);
    margin-bottom: 10px;
}

.blue-sub-heading {
    border-color: #025ea7;
    background-color: #025ea7;
    color: #ffffff;
}

@media screen and (max-width: 1199px) {
    .heading {
        max-width: 800px;
    }

    .heading h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .heading {
        margin: 0 auto 16px;
    }

    .sub-heading {
        padding: 3px 16px;
        font-size: 12px;
        font-weight: 500;
    }

    .heading h2 {
        font-size: 22px;
    }
}

/***heading end***/


/***banner***/
.banner {
    margin-bottom: 60px;
    position: relative;
}

.banner-item {
    position: relative;
}

.banner-img {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-img::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 1) 100%);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1000px;
    transform: translateY(-50%);
    text-align: center;
}

.banner-content .sub-heading {
    border-color: #fff;
    color: #fff;
}

.banner-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.banner-content .btn-custom {
    min-width: 200px;
    margin: 0 auto;
}

.banner .owl-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.banner-links {
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    z-index: 7;
    gap: 20px;
}

.banner-links li a {
    color: #fff;
    font-weight: 600;
    padding: 20px 0;
    display: block;
}

.banner-links li a:hover {
    color: #3792d9;
}

.banner-content .btn-custom.single-btn {
    margin-top: 10px;
    height: 60px;
    line-height: 20px;
    min-width: 274px;
}

.banner-content .btn-custom.single-btn span {
    display: block;
    font-size: 13px;
}

.banner-content.wd-1230 {
    max-width: 1230px;
}

@media screen and (max-width: 1440px) {
    .banner-content h1 {
        font-size: 50px;
        line-height: 1.2;
    }

    .banner-content.wd-1230 {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1199px) {
    .banner-content {
        max-width: 660px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-img {
        height: 360px;
    }

    .banner-content .btn-custom {
        padding: 0px 15px;
        height: 40px;
        line-height: 40px;
    }

    .banner-links li a {
        padding: 6px 0;
        font-size: 14px;
        font-weight: 500;
    }
}

@media screen and (max-width: 991px) {
    .banner-content h1 {
        font-size: 36px;
    }

    .banner-links li a {
        padding: 8px 0;
        font-size: 13px;
    }

    .banner {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .banner-content {
        padding: 0 16px;
    }

    .banner-content h1 {
        font-size: 26px;
    }

    .banner-img {
        height: 300px;
    }

    .banner-content .btn-custom {
        min-width: auto;
    }

    .banner-links {
        gap: 10px;
    }

    .banner .owl-nav {
        padding: 0 10px;
    }
}

/***banner end***/


/***inner-banner***/
.inner-banner {
    position: relative;
    z-index: 3;
}

.inner-banner {
    background-color: #000000;
}

.inner-banner .banner-img {
    height: auto !important;
}

.inner-banner .banner-content h1 {
    font-size: 50px;
    margin-bottom: 0;
}

.banner-content p {
    font-size: 22px;
    color: #fff;
}

.inner-banner .banner-content {
    position: relative;
    transform: none;
    padding: 40px 16px;
    z-index: 1;
}

@media screen and (max-width: 1440px) {
    .inner-banner .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .inner-banner .banner-content h1 {
        font-size: 24px;
    }

    .banner-content p {
        font-size: 14px;
        margin: 0 0 10px;
    }

    .inner-banner .banner-content {
        padding: 30px 16px;
    }
}

/***inner-banner end***/


/***breadcrumb***/
.breadcrumb-card {
    position: relative;
    border-top: solid 1px rgba(255, 255, 255, 0.1);
    z-index: 7;
    gap: 20px;
}

.breadcrumb-card li {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
}

.breadcrumb-card li:after {
    content: "/";
    position: absolute;
    right: -14px;
    top: 16px;
}

.breadcrumb-card li:last-child:after {
    display: none;
}

.breadcrumb-card li a {
    color: #d7d7d7;
    padding: 15px 0;
    display: block;
}

@media screen and (max-width: 767px) {
    .breadcrumb-card {
        display: none !important;
    }

    .breadcrumb-card li:after {
        top: 7px;
    }

    .breadcrumb-card li a {
        padding: 5px 0;
    }
}

/***breadcrumb***/


/***research-data***/
.research-data-item {
    border-radius: 8px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
}

.research-data-item i {
    display: block;
    margin-bottom: 15px;
}

.research-data-item .title {
    display: block;
    font-size: 28px;
    font-weight: 600;
}

.research-data-item p {
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.research-data-item ul {
    margin-bottom: 26px;
}

.research-data-item ul:last-child {
    margin-bottom: 0;
}

.research-data-item ul li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 13px;
}

.research-data-item ul li:last-child {
    margin-bottom: 0;
}

.research-data-item ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    background: url(../images/liIcon.svg) no-repeat center center;
    width: 14px;
    height: 14px;
}

.research-data-small .title {
    font-size: 22px;
    line-height: 1.3;
    padding-bottom: 16px;
}

.research-data-small p {
    font-size: 16px;
    margin-bottom: 20px;
}

.research-data-item ul.new-list {
    margin: 0;
    padding: 0;
}

.research-data-item ul.new-list li {
    border-bottom: 1px solid #b5ccde;
    margin: 0;
    padding: 5px 0;
}

.research-data-item ul.new-list li span {
    background-color: #0FB300;
    color: #fff;
    border-radius: 0 7px 0 7px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 1px 7px;
}

.research-data-item ul.new-list li strong {
    color: #025EA7;
    font-weight: 500;
}

.research-data-item ul.new-list li:last-child {
    border-bottom: none;
}

.research-data-item ul.new-list li a {
    color: #253440;
    display: block;
    background: url(../images/chevron-rt.svg) no-repeat right center;
}

.research-data-item ul.new-list li a:hover {
    text-decoration: none;
}

.research-data-item ul.new-list li:before {
    display: none;
}

.research-data-item ul.new-list li:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
}

.research-data-item.bg-light-cream ul.new-list li a {
    background-image: url(../images/chevron-rt2.svg)
}

.research-data-item.bg-light-cream ul.new-list li {
    border-color: #fee3b8;
}

@media screen and (max-width: 1440px) {
    .research-data-item .title {
        font-size: 26px;
    }

    .research-data-item p {
        font-size: 18px;
    }

    .research-data-item ul li {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 1199px) {
    .research-data-item .title {
        font-size: 22px;
    }

    .research-data-item p {
        font-size: 15px;
    }
}

@media screen and (max-width: 991px) {
    .research-data-item .title {
        font-size: 20px;
    }

    .research-data-item p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .research-data-item {
        margin-bottom: 16px;
        height: auto;
    }

    .research-data-item ul li {
        margin-bottom: 6px;
    }

    .research-data-item ul {
        margin-bottom: 10px;
    }

    .research-data-item i {
        margin-bottom: 10px;
    }

    .research-data-small .title {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .research-data-small p {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

/***research-data end***/


/***great-deal***/
.great-deal-card {
    position: relative;
}

.great-deal-card-info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
    max-width: 350px;
}

.rating-head {
    padding-bottom: 10px;
}

.great-deal-title {
    display: block;
    font-size: 26px;
    font-weight: 300;
    color: #025ea7;
    padding-right: 20px;
}

.rating-deal {
    text-align: center;
}

.rating-deal img {
    display: block;
}

.rating-deal span {
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.great-deal-subtitle {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    padding-bottom: 10px;
}

.great-deal-card-info p {
    font-size: 18px;
}

.great-deal-card-info p span {
    font-size: 26px;
    color: #025ea7;
}

.great-deal-card-image {
    position: relative;
    height: 330px;
}

.great-deal-card-image::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 90%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}

.great-deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
}

.ready-to-work .great-deal-card-info {
    width: 100%;
    max-width: 530px;
}

.great-deal-card.property-report-add-card .great-deal-card-info {
    max-width: 730px
}

.great-deal-card.property-report-add-card .prac-hd {
    color: #025EA7;
    font-size: 26px;
    font-weight: 600
}

.great-deal-card.property-report-add-card .great-deal-subtitle strong {
    color: #025EA7;
    font-weight: 600
}

.great-deal-card.property-report-add-card .great-deal-card-info p {
    font-size: 16px
}

.great-deal-card.property-report-add-card .btn-custom {
    width: 350px;
    height: 70px;
    line-height: normal;
    padding: 0 0 0 70px;
    text-align: left;
    position: relative
}

.great-deal-card.property-report-add-card .btn-custom span {
    font-weight: 300;
    display: block
}

.great-deal-card.property-report-add-card .btn-custom img {
    position: absolute;
    left: 24px;
    top: 16px
}

@media screen and (max-width: 1440px) {
    .great-deal-title {
        font-size: 20px;
    }

    .great-deal-subtitle {
        font-size: 30px;
    }

    .great-deal-card-info p span {
        font-size: 20px;
    }
}

@media screen and (max-width: 1199px) {
    .great-deal-card-image::before {
        padding-top: 30%;
    }

    .great-deal-card-info p {
        font-size: 18px;
    }

    .great-deal-card.property-report-add-card .prac-hd {
        font-size: 22px;
    }

    .great-deal-card.property-report-add-card .great-deal-card-info p {
        font-size: 15px;
    }
}

@media screen and (max-width: 991px) {
    .great-deal-card-image::before {
        padding-top: 40%;
    }
}

@media screen and (max-width: 767px) {
    .great-deal-card-info {
        padding: 0 15px;
    }

    .great-deal-title {
        font-size: 15px;
    }

    .great-deal-subtitle {
        font-size: 22px;
    }

    .great-deal-card-image {
        border-radius: 10px;
        overflow: hidden;
        height: 260px;
    }

    .great-deal-card-image::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    }

    .great-deal-card-info p {
        font-size: 14px;
    }

    .great-deal-card.property-report-add-card .great-deal-card-image {
        height: 380px;
    }

    .great-deal-card.property-report-add-card .btn-custom {
        width: auto;
        padding: 0 15px 0 60px;
    }

    .great-deal-card.property-report-add-card .btn-custom img {
        left: 15px;
    }

    .great-deal-card.property-report-add-card .prac-hd {
        font-size: 16px;
    }

    .great-deal-subtitle br {
        display: none;
    }
}

/***great-deal end***/


/***news-publication***/
.top-news-item {
    padding-bottom: 50px;
    gap: 30px;
}

.top-news-item .news-item-img {
    width: 64%;
    flex: 0 0 64%;
    margin-bottom: 0;
}

.top-news-item .news-item-img::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
}

.news-item-img .news-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 1;
}

.news-item-img .news-item-info h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.news-item-img .news-item-info ul li {
    color: #fff;
}

.top-news-item .news-item-info p {
    font-size: 18px;
    line-height: 32px;
}

.top-news-item .news-item-info p span {
    font-size: 36px;
}

.news-item-img {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.news-item-img img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    display: inline-block;
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #025ea7;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
}

.news-item-info h3 {
    font-size: 20px;
    font-weight: 600;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.news-item-info h3 a {
    color: #253440;
    display: block;
}

.news-item-info h3 a:hover {
    color: #025EA7;
}

.news-item-info ul {
    gap: 16px;
}

.news-item-info ul li {
    font-size: 12px;
    color: #253440;
}

.news-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-btn .btn-custom.btn-custom-outline {
    height: 26px;
    line-height: 24px;
    font-size: 12px;
    font-weight: 500;
    padding: 0 15px;
}

.news-item-img .news-item-info h3 a {
    color: #fff;
}

@media screen and (max-width: 1440px) {
    .news-item-img .news-item-info {
        padding: 20px;
    }

    .news-item-img .news-item-info h3 {
        font-size: 28px;
    }

    .top-news-item .news-item-info p {
        font-size: 16px;
        line-height: 28px;
    }

    .top-news-item .news-item-info p span {
        font-size: 28px;
    }
}

@media screen and (max-width: 1199px) {
    .top-news-item .news-item-img {
        width: 56%;
        flex: 0 0 56%;
    }

    .news-item-img .news-item-info h3 {
        font-size: 22px;
    }

    .top-news-item .news-item-info p {
        font-size: 14px;
        line-height: 24px;
    }

    .top-news-item .news-item-info p span {
        font-size: 22px;
    }

    .news-item-info h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .news-item.top-news-item {
        margin-bottom: 0;
        padding-bottom: 30px;
        align-items: self-start !important;
    }

    .news-item {
        margin-bottom: 20px;
    }

    .news-item-img {
        margin-bottom: 10px;
    }

    .news-item-info h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 767px) {
    .news-item.top-news-item {
        padding-bottom: 20px;
    }

    .top-news-item .news-item-img {
        width: 100%;
        margin-bottom: 15px;
        height: 180px;
    }

    .news-item-img .news-item-info {
        padding: 0 15px 15px;
    }
}

/***news-publication end***/


/***testimonial-block***/
.testimonial-item {
    background-color: #D7F5F5;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 20px;
    height: 100%;
}

.bg-light-green {
    background-color: #CDF0CE;
}

.testimonial-item-reverse {
    flex-direction: row-reverse;
}

.testimonial-content {
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content i {
    opacity: 0.2;
    display: block;
    margin-bottom: 15px;
    width: 50px;
}

.testimonial-content p {
    font-size: 18px;
    font-weight: 500;
}

.testimonial-content span {
    font-size: 22px;
    font-weight: 600;
    display: block;
}

.testimonial-content span small {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.testimonial-img {
    width: 47%;
    flex: 0 0 47%;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clientSaysSlider.owl-carousel .owl-stage {
    display: flex;
}

.clientSaysSlider.owl-carousel .owl-stage .owl-item .items {
    height: 100%;
}

.clientSaysSlider .owl-nav {
    left: -60px;
    right: -60px;
}

.clientSaysSlider .owl-nav button.owl-prev {
    background: url(../images/arrow1.svg) no-repeat center center !important;
    background-size: cover !important;
}

.clientSaysSlider .owl-nav button.owl-next {
    background: url(../images/arrow.svg) no-repeat center center !important;
    background-size: cover !important;
}

@media screen and (max-width: 1500px) {
    .clientSaysSlider .owl-nav {
        left: 10px;
        right: 10px;
    }

    .clientSaysSlider .owl-nav button.owl-prev, .clientSaysSlider .owl-nav button.owl-next {
        opacity: 0.3;
    }

    .clientSaysSlider .owl-nav button.owl-prev:hover, .clientSaysSlider .owl-nav button.owl-next:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 1199px) {
    .testimonial-content p {
        font-size: 15px;
    }

    .testimonial-content span {
        font-size: 18px;
    }

    .testimonial-content i {
        margin-bottom: 10px;
        width: 30px;
    }

    .testimonial-block {
        padding-bottom: 100px;
    }

    .clientSaysSlider .owl-nav {
        left: 0;
        top: auto;
        right: 0;
        transform: none;
        bottom: -60px;
        width: 100px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 991px) {
    .clientSaysSlider .owl-nav {
        width: 80px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial-item {
        padding: 10px;
    }

    .testimonial-content i {
        margin-bottom: 6px;
        width: 22px;
    }

    .testimonial-content p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .testimonial-content span {
        font-size: 15px;
    }

    .testimonial-content span small {
        font-size: 13px;
        font-weight: 400;
    }
}

/***testimonial-block end***/


/***newsletter-block***/
.newsletter-content {
    border: solid 1px #FFD18B;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.newsletter-content-left {
    width: 65%;
    flex: 0 0 65%;
    padding: 40px 70px 40px 120px;
}

.newsletter-content-left .heading {
    max-width: 100%;
    margin: 0 0 30px;
}

.newsletter-content-left .heading h2 {
    font-size: 66px;
}

.newsletter-content-left .heading p {
    font-size: 18px;
}

.newsletter-form {
    box-shadow: 0px 4px 120px 0px rgba(142, 131, 113, 0.15);
    border-radius: 100px;
    position: relative;
    margin-right: -40px;
    background-color: #ffffff;
}

.newsletter-form .form-control {
    border: none;
    height: 70px;
    line-height: 100px;
    background-color: transparent;
    font-size: 18px;
    padding-left: 100px;
    padding-right: 180px;
}

.newsletter-form i {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8F8F8;
    border-radius: 50%;
}

.newsletter-form .btn-custom {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    line-height: 70px;
    padding: 0 50px;
    font-size: 20px;
}

.newsletter-content-Img {
    background-color: #fff6e8;
}

@media screen and (max-width: 1440px) {
    .newsletter-content-left .heading h2 {
        font-size: 50px;
    }

    .newsletter-form .form-control {
        height: 100px;
        line-height: 100px;
        font-size: 16px;
        padding-left: 90px;
    }

    .newsletter-form .btn-custom {
        height: 50px;
        line-height: 50px;
        padding: 0px 30px;
        font-size: 16px;
    }

    .newsletter-form i {
        left: 16px;
    }
}

@media screen and (max-width: 1199px) {
    .newsletter-content-left {
        width: 65%;
        flex: 0 0 65%;
        padding: 30px;
    }

    .newsletter-content-left .heading h2 {
        font-size: 40px;
    }

    .newsletter-content-left .heading p {
        font-size: 16px;
    }

    .newsletter-form {
        margin-right: 0;
    }
}

@media screen and (max-width: 991px) {
    .newsletter-content-left {
        padding: 20px;
    }

    .newsletter-content-left .heading h2 {
        font-size: 36px;
    }

    .newsletter-content-left .heading p {
        font-size: 16px;
    }

    .newsletter-content-left .heading p br {
        display: none;
    }

    .newsletter-form {
        margin-right: 0;
    }

    .newsletter-form .form-control {
        height: 60px;
        line-height: 60px;
        font-size: 14px;
        padding-left: 50px;
        padding-right: 140px;
    }

    .newsletter-form i {
        left: 10px;
        width: 26px;
        height: 26px;
        padding: 6px;
    }

    .newsletter-form .btn-custom {
        right: 10px;
        height: 44px;
        line-height: 44px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .newsletter-content {
        display: block;
    }

    .newsletter-content-left {
        width: 100%;
        padding: 16px;
        background-color: #fff6e8;
    }

    .newsletter-content-left .heading h2 {
        font-size: 26px;
    }

    .newsletter-content-left .heading p {
        font-size: 14px;
    }

    .newsletter-content-Img {
        display: none;
    }

    .newsletter-content-left .heading {
        margin: 0px 0 20px;
    }

    .newsletter-form .form-control {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        padding-left: 10px;
        padding-right: 105px;
    }

    .newsletter-form i {
        display: none;
    }

    .newsletter-form .btn-custom {
        padding: 0 10px;
        right: 10px;
        font-size: 13px;
        height: 34px;
        line-height: 34px;
    }
}

/***newsletter-block end***/


/***fund-explorer***/
.fund-explorer {
    padding: 60px 0;
    background: #ececec url(../images/fund-explorer-bg.jpg) no-repeat;
    background-size: cover;
}

.fund-explorer-content h5 {
    font-size: 22px;
    font-weight: 500;
}

.fund-explorer-content h6 {
    font-size: 18px;
    font-weight: 500;
}

.fund-explorer-content ul {
    margin-bottom: 26px;
}

.fund-explorer-content ul li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
}

.fund-explorer-content ul li:last-child {
    margin-bottom: 0;
}

.fund-explorer-content ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    background: url(../images/liIcon.svg) no-repeat center center;
    width: 14px;
    height: 14px;
}

.fund-explorer-btn {
    display: flex;
    gap: 10px;
}

.fund-explorer-btn .btn-custom {
    min-width: 180px;
}

.fund-explorer-btn .btn-custom-outline {
    border-color: #bec2c6;
}

.fund-explorer-gallery {
    gap: 16px 0
}

.gallery-img {
    width: 48%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    display: block;
}

.view-gallery {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #253440CF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 400;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.gallery-img:hover .view-gallery {
    opacity: 1;
    transform: scale(1);
}

.view-gallery span {
    color: #fff;
    font-size: 14px;
    display: block;
    text-align: center;
}

.view-gallery span i {
    display: block;
    margin-top: 20px;
}

.gallery-border-left {
    border-radius: 60px 0 0 0;
}

.gallery-border-right {
    border-radius: 0 60px 0 0;
}

.gallery-border-left-bottom {
    border-radius: 0 0 0 60px;
}

.gallery-border-right-bottom {
    border-radius: 0 0 60px 0;
}

.coverage-card {
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.coverage-title {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 500;
    gap: 16px;
    padding-bottom: 16px;
}

.coverage-card ul li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
}

.coverage-card ul li:last-child {
    margin-bottom: 0;
}

.coverage-card ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    background: url(../images/liIcon.svg) no-repeat center center;
    width: 14px;
    height: 14px;
}

@media screen and (max-width: 1199px) {
    .fund-explorer {
        padding: 40px 0;
    }
}

@media screen and (max-width: 767px) {
    .fund-explorer {
        padding: 40px 0 0;
    }

    .fund-explorer-content {
        padding-bottom: 20px;
    }

    .fund-explorer-btn .btn-custom {
        min-width: 140px;
    }

    .fund-explorer-btn .btn-custom {
        padding: 0;
    }

    .gallery-border-left {
        border-radius: 20px 0 0 0;
    }

    .gallery-border-right {
        border-radius: 0 20px 0 0;
    }

    .gallery-border-left-bottom {
        border-radius: 0 0 0 20px;
    }

    .gallery-border-right-bottom {
        border-radius: 0 0 20px 0;
    }

    .view-gallery span i {
        margin-top: 10px;
    }
}

/***fund-explorer end***/


/***top-rated-funds***/
.top-rated-funds {
    padding: 60px 0;
}

.top-rated-funds-top {
    padding-bottom: 20px;
}

.top-rated-funds-top h3 {
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 600;
}

.rated-funds-Filter {
    gap: 16px;
}

.rated-funds-Filter label {
    margin-bottom: 0;
}

.rated-funds-Filter .form-group {
    margin: 0;
}

.rated-funds-Filter .form-control {
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    font-size: 14px;
}

.source-text p {
    font-size: 14px;
}

.source-text p strong {
    font-weight: 500;
}

@media screen and (max-width: 1199px) {
    .top-rated-funds {
        padding: 30px 0;
    }
}

@media screen and (max-width: 767px) {
    .top-rated-funds-top h3 {
        padding-bottom: 16px;
    }
}

/***top-rated-funds end***/


/***fund-rating-report***/
.fund-rating-card {
    position: relative;
}

.fund-rating-img {
    position: relative;
}

.fund-rating-img:before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 70%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    content: "";
}

.fund-rating-img img {
    display: block;
    width: 100%;
}

.fund-rating-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    max-width: 570px;
}

.fund-rating-content h3 {
    font-size: 36px;
    font-weight: 700;
}

.fund-rating-content p {
    font-size: 18px;
}

@media screen and (max-width: 1199px) {
    .fund-rating-img {
        height: 200px;
    }

    .fund-rating-img img {
        height: 100%;
        object-fit: cover;
    }

    .fund-rating-content h3 {
        font-size: 26px;
    }

    .fund-rating-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .fund-rating-content h3 {
        font-size: 22px;
    }

    .fund-rating-img {
        height: 260px;
    }

    .fund-rating-content {
        padding: 0 16px;
    }

    .fund-rating-img:before {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    }
}

/***fund-rating-report end***/


/***subscribe-block***/
.subscribe-block {
    padding: 60px 0;
}

.pricing-card {
    box-shadow: 0px 106.67px 106.67px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.pricing-card.active {
    background: linear-gradient(135deg, #025EA7 17.98%, rgba(2, 94, 167, 0.6) 82.02%);
    color: #ffffff;
}

.pricing-card.active .pricing-card-space img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.pricing-card.active .pricing-title {
    background: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.active .add-price {
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-title {
    padding: 26px;
    background: url(../images/card.png) no-repeat center;
    background-size: cover;
    border-bottom: solid 1px transparent;
}

.pricing-title i {
    display: block;
    margin-bottom: 16px;
}

.pricing-title i img {
    display: block;
}

.pricing-title span {
    display: block;
    font-size: 24px;
    font-weight: 500;
}

.ratings-price-head-left {
    padding-right: 16px;
}

.ratings-text {
    align-items: self-start;
    font-size: 14px;
    gap: 8px;
    padding-bottom: 8px;
}

.ratings-text:last-child {
    padding-bottom: 0;
}

.ratings-text i {
    width: 16px;
    flex: 0 0 16px;
    display: block;
    margin: 2px 0 0;
}

.ratings-text i img {
    display: block;
}

.price-tag {
    font-size: 20px;
    font-weight: 500;
    display: block;
    flex: 0 0 auto;
}

.price-tag small {
    font-size: 11px;
    font-weight: 400;
    display: block;
}

.pricing-content {
    padding: 8px 12px;
    border-radius: 8px;
}

.total-price-tag {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
}

.total-price-tag small {
    font-size: 18px;
    font-weight: 500;
    display: block;
}

.save-tag {
    padding-left: 8px;
}

.save-tag span {
    min-width: 95px;
    text-align: center;
    display: inline-block;
    background-color: #0FB300;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    padding: 4px 10px;
    margin-bottom: 3px;
}

.save-tag small {
    display: block;
    font-size: 14px;
    font-weight: 400;
}

.pricing-card .btn-custom {
    display: block;
    width: 100%;
    margin-top: 16px;
}

.add-price {
    border-bottom: solid 1px #bec2c6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 30px;
}

.add-price a {
    display: block;
    margin-bottom: -12px;
    position: relative;
    z-index: 1;
}

.pricing-card-bottom {
    padding: 15px 30px 30px;
}

.pricing-card-space {
    padding: 20px;
}

.subscribe-price-text {
    background-color: #ffffff;
    padding: 26px;
    position: relative;
}

.subscribe-price-text p {
    font-size: 13px;
}

.subscribe-price-text p strong {
    font-weight: 500;
}

@media screen and (max-width: 1440px) {
    .pricing-card-bottom {
        padding: 20px;
    }

    .total-price-tag {
        font-size: 36px;
    }

    .pricing-title {
        padding: 20px;
    }

    .pricing-card-space {
        padding: 10px;
    }
}

@media screen and (max-width: 1199px) {
    .subscribe-block {
        padding: 40px 0;
    }

    .pricing-title {
        padding: 16px;
    }

    .pricing-title i {
        margin-bottom: 10px;
        width: 36px;
    }

    .pricing-title span {
        font-size: 20px;
    }

    .total-price-tag {
        font-size: 26px;
    }

    .total-price-tag small {
        font-size: 15px;
    }

    .save-tag span {
        font-size: 12px;
        padding: 2px 10px;
    }
}

@media screen and (max-width: 767px) {
    .pricing-card {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        height: auto;
        margin-bottom: 15px;
    }

    .pricing-title {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
    }

    .pricing-card-bottom {
        padding: 15px;
    }

    .subscribe-price-text {
        padding: 0;
    }

    .pricing-title i {
        margin-bottom: 0;
    }

    .pricing-content {
        padding: 0;
    }

    .pricing-card-space {
        padding: 10px 15px 0;
    }

    .pricing-content.bg-green, .pricing-content.bg-cream {
        padding: 5px 15px;
    }
}

/***subscribe-block end***/


/***contact-page***/
.contact-page .container {
    max-width: 970px;
}

.contact-get-started {
    padding-bottom: 50px;
}

.contact-get-started h2 {
    font-size: 26px;
    margin-bottom: 30px;
}

.captcha-card .btn-custom {
    width: 180px;
}

.contact-assist {
    padding-bottom: 30px;
}

.contact-assist h3 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.assist-card {
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.1);
    padding: 26px;
    border-radius: 8px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
    text-align: center;
}

.assist-card i {
    display: block;
    background-color: #FFF1DA;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px 15px 30px;
    margin: 0 auto 10px;
}

.assist-card span {
    display: block;
    color: #253440;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
}

.assist-card p a {
    color: #253440;
}

.assist-card p a:hover {
    color: #025ea7;
}

@media screen and (max-width: 991px) {
    .assist-card {
        padding: 16px;
    }
}

@media screen and (max-width: 767px) {
    .captcha-card .btn-custom {
        width: 130px;
        margin-left: 10px;
    }

    .contact-assist h3 {
        font-size: 26px;
    }

    .contact-get-started h2 {
        margin-bottom: 20px;
    }
}

/***contact-page end***/


/***testimonials-page***/
.testimonials-page .container {
    max-width: 1280px;
}

.testimonials-card {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.testimonials-card p a {
    font-size: 14px;
}

.testimonials-rating {
    padding-bottom: 30px;
}

.rating-card span {
    color: #FF7F22;
}

.cotIcon {
    opacity: 0.2;
}

.client-card-info {
    gap: 20px;
    padding-top: 10px;
}

.client-card-info i {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    overflow: hidden;
    border-radius: 50%;
}

.client-card-info i img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-card-info-right span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 5px;
}

.client-card-info-right p {
    display: block;
    font-size: 14px;
}

.see-more {
    padding-top: 30px;
}

.see-more .btn-custom {
    gap: 10px;
}

@media screen and (max-width: 1199px) {
    .testimonials-card {
        padding: 16px;
    }

    .testimonials-rating {
        padding-bottom: 20px;
    }

    .testimonials-card p {
        font-size: 14px;
    }

    .testimonials-card p a {
        word-break: break-all;
    }

    .client-card-info {
        gap: 10px;
    }

    .client-card-info i {
        width: 45px;
        height: 45px;
        flex: 0 0 45px;
    }

    .client-card-info-right span {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .see-more {
        padding-top: 10px;
    }

    .ready-to-work .great-deal-title i {
        display: none;
    }
}

/***testimonials-page end***/


/***login-page***/
.login-page {
    background: #f5f7fa url(../images/loginBg.png) no-repeat center top;
    background-size: cover;
    padding: 60px 0;
}

.login-inner {
    max-width: 350px;
    margin: 0 auto;
}

.login-inner h1 {
    font-size: 60px;
    font-weight: 700;
}

.login-card {
    background-color: #fff;
    padding: 26px;
    box-shadow: 0px 34px 33px -23px #161C2D21;
    border: 1px solid #E7E9ED;
    border-radius: 10px;
    margin-bottom: 25px;
}

.login-card .btn-custom {
    height: 58px;
    line-height: 58px;
    border-radius: 8px;
}

.login-inner p {
    text-align: center;
}

.remember-checkbox .custom-checkbox {
    margin-bottom: 0;
}

@media screen and (max-width: 1440px) {
    .login-page {
        padding: 50px 0;
    }

    .login-inner h1 {
        font-size: 50px;
    }
}

@media screen and (max-width: 991px) {
    .login-page {
        padding: 40px 0;
    }

    .login-inner h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 767px) {
    .login-page {
        padding: 20px 0;
    }
}

/***login-page end***/


/***register-page***/
.register-page {
    min-height: 100vh;
    position: relative;
}

.register-left {
    width: 60%;
    flex: 0 0 60%;
    background: url(../images/register-img.png) no-repeat center top;
    background-size: cover;
    height: 100vh;
    /*position: fixed;*/
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-left-info {
    padding: 20px;
}

.register-logo {
    display: block;
    margin-bottom: 20px;
}

.register-left-info h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}

.register-left-info p {
    color: #fff;
    font-size: 20px;
}

.register-form {
    padding: 20px 60px;
    justify-content: center;
    align-items: center;
    width: 40%;
    display: flex;
    margin-left: auto;
    background: #fff url(../images/graphic-bg.png) no-repeat right center;
}

.register-form-inst {
    width: 100%;
}

.register-form-card .btn-custom {
    height: 58px;
    line-height: 58px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.register-form-card p {
    text-align: center;
    font-size: 14px;
}

.register-form-card p a {
    text-decoration: underline;
}

.input-icon {
    position: relative;
}

.register-form-inst h2 {
    margin-bottom: 5px;
}

.input-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.input-icon .form-control {
    padding-left: 50px;
}

.captcha-input {
    position: relative;
    width: 85%;
}

.captcha-input i {
    position: absolute;
    top: 1px;
    right: -1px;
}

.captcha-input input {
    padding-right: 200px;
}

@media screen and (max-width: 1199px) {
    .register-left {
        width: 50%;
        flex: 0 0 50%;
    }

    .register-logo {
        width: 120px;
    }

    .register-left-info h1 {
        font-size: 36px;
    }

    .register-form {
        width: 50%;
        padding: 20px;
    }

    .captcha-input i {
        position: absolute;
        top: 50%;
        right: 10px;
        width: 80px;
        border-radius: 4px;
        overflow: hidden;
        transform: translateY(-50%);
    }

    .captcha-input input {
        padding-right: 100px;
    }
}

@media screen and (max-width: 991px) {
    .input-icon i {
        left: 12px;
    }

    .input-icon .form-control {
        padding-left: 45px;
    }

    .register-form-card .btn-custom {
        height: 45px;
        line-height: 45px;
    }

    .register-left-info h1 {
        font-size: 32px;
    }

    .register-left-info p {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .register-left {
        width: 100%;
        height: auto;
        position: static;
        display: block;
    }

    .register-form {
        width: 100%;
        padding: 20px;
    }

    .register-logo {
        width: 100px;
    }

    .register-left-info h1 {
        font-size: 26px;
    }

    .register-form-inst h2 {
        font-size: 26px;
    }
}

/***register-page end***/


/***events-page***/
.event-time {
    padding-bottom: 36px;
}

.event-time h2 {
    margin: 0;
    font-size: 46px;
}

.calendar-tag {
    background-color: #025EA7;
    border-radius: 8px;
    padding: 10px;
    min-width: 700px;
}

.calendar-tag-left {
    gap: 12px;
}

.calendar-tag-left i {
    width: 33px;
    flex: 0 0 33px;
}

.calendar-tag-info {
    max-width: 410px;
}

.calendar-tag-info span {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.calendar-tag-info p {
    color: #fff;
    line-height: 1.2;
}

.time-tag {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-left: 16px;
}

.event-content {
    padding-bottom: 40px;
}

.event-content a {
    text-decoration: underline;
}

.event-content a:hover {
    text-decoration: none;
}

.event-show-page {
    padding-bottom: 30px;
}

.event-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.event-card-page {
    height: calc(100% - 16px);
    margin-bottom: 16px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.event-card-page:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 100%);
}

.event-card-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-page span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    z-index: 7;
    padding: 20px;
}

.sponsors-card-block {
    position: relative;
    padding-top: 20px;
}

.sponsors-card-block::after {
    z-index: -1;
    position: absolute;
    top: -340px;
    bottom: 0;
    left: -200px;
    right: 0;
    content: "";
    width: 970px;
    height: 860px;
    background: url(../images/glow-effect.svg) no-repeat;
}

.sponsors-card {
    padding-bottom: 60px;
}

.sponsors-tag {
    gap: 16px;
    width: 310px;
    flex: 0 0 310px;
}

.sponsors-tag i {
    display: block;
}

.sponsors-tag i img {
    display: block;
}

.sponsors-tag span {
    display: block;
    font-size: 22px;
    font-weight: 500;
}

.sponsors-card-list {
    gap: 14px;
    flex-wrap: wrap;
}

.client-logo-card {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
}

.client-logo-card img {
    display: block;
    width: 100%;
}

.event-gallery {
    padding-bottom: 60px;
}

.event-gallery-img {
    display: block;
    height: calc(100% - 10px);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.event-gallery-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-event-page {
    padding-bottom: 60px;
}

.upcoming-event-page .owl-nav {
    left: -50px;
    right: -50px;
}

.upcoming-event-page .owl-nav button.owl-prev {
    background: #fff url(../images/arrow1.svg) no-repeat center center !important;
    background-size: cover !important;
}

.upcoming-event-page .owl-nav button.owl-next {
    background: #fff url(../images/arrow.svg) no-repeat center center !important;
    background-size: cover !important;
}

.location-tag {
    gap: 10px;
    font-size: 14px;
}

.location-tag i {
    width: 18px;
    flex: 0 0 18px;
}

@media screen and (max-width: 1440px) {
    .sponsors-tag {
        width: 250px;
        flex: 0 0 250px;
    }

    .sponsors-tag i {
        width: 50px;
    }

    .client-logo-card {
        width: 200px;
    }

    .sponsors-tag span {
        font-size: 18px;
    }
}

@media screen and (max-width: 1359px) {
    .upcoming-event-page .owl-nav {
        left: 15px;
        right: 15px;
        top: 64px;
    }

    .upcoming-event-page .owl-nav button.owl-prev, .upcoming-event-page .owl-nav button.owl-next {
        background-color: transparent !important;
        opacity: 0.5;
    }

    .upcoming-event-page .owl-nav button.owl-prev:hover, .upcoming-event-page .owl-nav button.owl-next:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 1199px) {
    .event-time h2 {
        font-size: 28px;
    }

    .calendar-tag-left {
        gap: 10px;
    }

    .calendar-tag-left i {
        width: 24px;
        flex: 0 0 24px;
    }

    .calendar-tag-info span {
        font-size: 16px;
    }

    .calendar-tag-info p {
        font-size: 12px;
    }

    .time-tag {
        font-size: 14px;
    }

    .calendar-tag {
        min-width: 460px;
    }

    .calendar-tag-info {
        max-width: 280px;
    }

    .event-card-page span {
        font-size: 20px;
        font-weight: 600;
    }

    .sponsors-tag {
        width: 200px;
        flex: 0 0 200px;
    }

    .sponsors-tag i {
        width: 30px;
    }

    .sponsors-tag span {
        font-size: 16px;
    }

    .client-logo-card img {
        display: block;
    }

    .upcoming-event-page {
        padding-bottom: 100px;
    }

    .upcoming-event-page .owl-nav {
        left: 0;
        top: auto;
        right: 0;
        transform: none;
        bottom: -60px;
        width: 100px;
        margin: 0 auto;
    }

    .client-logo-card {
        width: 160px;
    }

    .sponsors-card {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 991px) {
    .event-gallery {
        padding-bottom: 30px;
    }

    .upcoming-event-page .owl-nav {
        bottom: -30px;
        width: 80px;
    }

    .upcoming-event-page {
        padding-bottom: 60px;
    }

    .client-logo-card {
        width: 120px;
    }

    .sponsors-card-block::after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .event-time h2 {
        padding-bottom: 16px;
    }

    .calendar-tag {
        min-width: 100%;
    }

    .calendar-tag-left {
        padding-bottom: 6px;
    }

    .event-card-page {
        height: 200px;
    }

    .event-card-page span {
        font-size: 18px;
        font-weight: 500;
    }

    .time-tag {
        padding-left: 35px;
    }

    .event-time {
        padding-bottom: 16px;
    }

    .event-time h2 {
        padding-bottom: 10px;
    }

    .sponsors-tag {
        padding-bottom: 16px;
        width: 100%;
    }

    .sponsors-card {
        padding-bottom: 30px;
    }

    .sponsors-card-block {
        padding-top: 0;
    }

    .event-content {
        padding-bottom: 30px;
    }

    .client-logo-card {
        width: 150px;
    }
}

/***events-page end***/


/***Equities***/
.stock-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px 20px;
    margin-bottom: 10px;
}

.stock-card:last-child {
    margin-bottom: 0;
}

.stock-title {
    gap: 16px;
    width: 20%;
}

.stock-title i {
    margin: 0;
    width: 24px;
    flex: 0 0 24px;
    height: 24px;
    background: #025EA714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stock-title a {
    color: #000;
    text-decoration: underline;
}

.stock-title a:hover {
    text-decoration: none;
    color: #025ea7;
}

.stock-info {
    width: 32%;
    flex: 0 0 32%;
}

.stock-info i {
    margin: 0 6px 0 0;
    flex: 0 0 auto;
}

/***Equities end***/


/***professional-block***/
.professional-block {
    background: url(../images/professional-block.png) no-repeat center bottom;
}

.professional-info-card {
    padding: 40px;
    border-radius: 8px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    background-position: right 10px bottom;
    background-repeat: no-repeat;
}

.professional-info-card h4 {
    margin-bottom: 20px;
    min-height: 74px;
}

.professional-info-img {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
    margin-bottom: 30px;
}

.professional-info-img img {
    display: block;
    border-radius: 8px 8px 0 0;
}

.ul-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.ul-list li:last-child {
    margin-bottom: 0;
}

.ul-list li:after {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    content: "";
    border-radius: 50%;
    background: url(../images/check-circle.svg) no-repeat center center;
    background-size: cover;
}

.equities-gallery .event-gallery {
    padding-bottom: 0;
}

.subscribe-img {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
    position: relative;
}

.subscribe-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subscribe-img::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background: linear-gradient(280deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.rating-inst-card {
    max-width: 920px;
    margin: 0 auto;
}

.rating-tag {
    background: #025EA71A;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -80px;
}

.rating-tag span {
    width: 200px;
    height: 200px;
    line-height: 200px;
    border-radius: 50%;
    background: #025EA7;
    font-size: 26px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.rating-inst-info {
    flex: 1;
    position: relative;
}

.rating-inst-info ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 20px 0px #0000001A;
    background-color: #fff;
    border-radius: 8px;
    margin: 34px 0;
    padding: 22px 0;
    gap: 10px;
}

.rating-inst-info ul li > span {
    font-size: 18px;
    font-weight: 600;
}

.rating-inst-info ul li.left-space {
    margin-right: 60px;
    margin-left: -60px;
}

.rating-inst-info ul li.right-space {
    margin-right: -60px;
    margin-left: 60px;
}

.professional-info-card.bg-light-blue {
    background-image: url(../images/candle-1.png);
}

.professional-info-card.bg-light-purple {
    background-image: url(../images/candle-2.png);
}

@media screen and (max-width: 1440px) {
    .professional-info-card {
        padding: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .rating-inst-card {
        padding: 0 20px;
    }

    .rating-tag {
        background: #025EA71A;
        width: 280px;
        height: 280px;
        margin: 0 -60px;
    }

    .rating-tag span {
        width: 120px;
        height: 120px;
        line-height: 120px;
        font-size: 20px;
    }

    .rating-inst-info ul li {
        margin: 20px 0;
        padding: 15px 0;
    }

    .rating-inst-info ul li.left-space {
        margin-right: 40px;
        margin-left: -20px;
    }

    .rating-inst-info ul li.right-space {
        margin-right: -20px;
        margin-left: 40px;
    }

    .rating-inst-info ul li > span {
        font-size: 16px;
    }

    .professional-info-card {
        padding: 16px;
    }

    .professional-info-card h4 {
        min-height: auto;
        font-size: 22px;
    }

    .professional-info-img {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .subscribe-img {
        margin-bottom: 0;
        height: auto;
    }

    .rating-inst-card {
        padding: 0;
    }

    .rating-tag {
        display: none;
    }

    .rating-inst-info ul li {
        margin: 0 0 10px;
        padding: 10px 0;
    }

    .rating-inst-info ul li.left-space {
        margin-right: 0;
        margin-left: 0;
    }

    .rating-inst-info ul li.right-space {
        margin-right: 0;
        margin-left: 0;
    }
}

/***professional-block end***/


/*******auction-schedule***Start******/
.auction-schedule {
    background: url(../images/auction-schedule-bg.png) no-repeat bottom left;
    background-color: #F9F9F9
}

.auction-schedule-filter {
    max-width: 850px;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 1
}

.auction-schedule-filter form {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end
}

.auction-schedule-filter .input-col {
    display: inline-block
}

.auction-schedule-filter .input-col label {
    margin-right: 10px;
    font-weight: 400;
}

.auction-schedule-filter .input-col select {
    width: 165px;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    display: inline-block
}

.btn-go {
    font-weight: 600;
    border: none;
    height: 40px;
    line-height: 40px
}

.tab-sec .tab-nav-outer {
    box-shadow: 0 0 100px 0 #0000001a;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 1
}

.tab-sec .tab-nav-outer .nav-pills li button {
    width: 100%;
    text-align: left;
    padding: 15px 22px;
    min-height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #253440;
}

.tab-sec .tab-nav-outer .nav-pills .nav-link.active {
    background-color: #025EA7;
    color: #fff;
    box-shadow: 0 20px 50px 0 #0000001a
}

.tab-sec .tab-nav-outer .nav-pills .nav-link.active img {
    filter: brightness(100)
}

.tab-sec .tab-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 100px 0 #0000001a;
    padding: 20px 28px 10px;
    margin: 0 auto
}

.stat-card-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.stat-card-items li {
    width: calc(50% - 18px);
    background: url(../images/liIcon.svg) no-repeat 15px center;
    background-size: auto;
    background-size: 20px;
    box-shadow: 0 0 10px 0 #0000000d;
    border-radius: 10px;
    padding: 16px 15px 16px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    height: calc(100% - 20px)
}

.stat-card-items li h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - 85px)
}

.stat-card-items li .stat-value {
    border: 1px solid #D9D9D9;
    border-radius: 30px;
    font-size: 15px;
    padding: 5px 15px;
    min-width: 76px;
    text-align: center;
    font-weight: 600
}

@media (max-width: 991px) {
    .auction-schedule-filter .input-col label {
        margin-right: 10px;
        font-size: 14px
    }

    .tab-sec .tab-nav-outer {
        margin-bottom: 20px
    }

    .tab-sec .tab-nav-outer .nav li {
        flex-grow: 1
    }

    .tab-sec .tab-nav-outer .nav {
        display: flex;
        flex-direction: inherit !important;
        justify-content: space-between
    }

    .stat-card-items li h6 {
        font-size: 14px;
        max-width: calc(100% - 70px)
    }

    .stat-card-items li .stat-value {
        font-size: 12px;
        padding: 5px;
        min-width: 64px
    }
}

@media (max-width: 767px) {
    .auction-schedule-filter {
        box-shadow: 0 0 100px 0 #0000001a;
        padding: 15px !important;
        background-color: #fff;
        border-radius: 10px
    }

    .auction-schedule-filter form {
        align-items: flex-end;
        justify-content: inherit;
        flex-wrap: wrap
    }

    .auction-schedule-filter .input-col, .auction-schedule-filter .input-col select {
        width: 100%
    }

    .tab-sec .tab-nav-outer {
        padding: 15px;
        margin: 0 0 -12px;
        box-shadow: none;
        border-radius: 8px 8px 0 0;
    }

    .tab-sec .tab-nav-outer .nav {
        flex-wrap: nowrap;
    }

    .tab-sec .tab-nav-outer .nav li {
        width: auto;
        margin: 0 !important;
    }

    .tab-sec .tab-nav-outer .nav-pills li button {
        padding: 7px 12px;
        min-height: inherit;
        border-radius: 30px;
        gap: 0;
        font-size: 15px;
    }

    .tab-sec .tab-nav-outer .nav-pills li button img {
        display: none;
    }

    .tab-sec .tab-content {
        padding: 15px;
    }

    .auction-stat-box h4 {
        font-size: 20px;
    }

    .stat-card-items li {
        width: 100%;
        background-position: 10px center;
        border-radius: 7px;
        padding: 10px 10px 10px 37px;
        margin-bottom: 15px;
        height: auto;
    }
}

/*******auction-schedule***End******/


/*******chart-history****Sec***Start******/
.chart-history-sec {
    background: url(../images/chart-sec-bg.jpg) no-repeat bottom left;
    overflow: hidden
}

.chart-history-sec h5 {
    font-size: 18px;
    margin-bottom: 5px
}

.chat-history-card {
    margin: 60px 0
}

.chart-history-inner {
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 100px 0 #0000000d;
    padding: 25px 35px
}

@media (max-width: 1199px) {
    .chart-history-sec h2 {
        font-size: 24px
    }
}

@media (max-width: 991px) {
    .chart-history-sec {
        background: url(../images/chart-sec-bg.jpg) no-repeat bottom left;
        overflow: hidden;
        padding-bottom: 50px
    }

    .chart-history-inner {
        padding: 25px
    }
}

/*******chart-history****Sec***End******/


/*******place-listing-sec***Start******/
.place-listing-row {
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 30px
}

.place-listing-container .place-listing-row:last-child {
    border: 0
}

.place-list-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 100px 0 #0000000d;
    padding: 20px;
    width: 100%;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px
}

.place-list-card .ribbon {
    position: absolute;
    top: -57px;
    width: 150px;
    background: #e6f0ff;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    padding: 70px 0 8px 26px;
    transform: rotate(30deg);
    border-radius: 4px;
    height: 100px;
    right: -39px;
    text-align: center
}

.place-list-card .ribbon.grey {
    background: #E5EFF6
}

.place-list-card .ribbon.orange {
    background: #FFEDDD
}

.place-list-card h5 {
    font-size: 16px;
    color: #253440;
    margin-bottom: 10px
}

.place-list-card ul {
    margin-bottom: 15px
}

.place-list-card ul li {
    margin-bottom: 5px;
    font-size: 14px
}

.place-list-card .place-status {
    display: block;
    margin-bottom: 5px;
    font-size: 14px
}

.place-list-card .place-status.text-green {
    color: #0FB300
}

.place-list-card .readmore-link {
    color: #025EA7;
    text-decoration: underline;
    font-size: 14px
}

.place-list-card .readmore-link:hover {
    text-decoration: none
}

.place-list-card .icon {
    margin-right: 5px
}

@media screen and (max-width: 767px) {
    .place-listing-row {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/*******place-listing-sec***End******/


/***my-account-page***/
.my-account-page {
    background-color: #FAFBFC;
    padding: 10px 0;
}

.subscriptions-products {
    background-color: #fff;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0px 4px 20px 0px #EEEEEE80;
    margin-bottom: 25px;
}

.subscriptions-products h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 26px;
}

.subscriptions-products-card {
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    height: calc(100% - 25px);
    position: relative;
}

.active-tag {
    position: absolute;
    top: 28px;
    right: 20px;
    background-color: #fff;
    border-radius: 30px;
    color: #0FB300;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 12px;
}

.subscriptions-products-card i {
    display: block;
    margin-bottom: 16px;
}

.subscriptions-products-card i img {
    display: block;
}

.products-card-heading {
    display: block;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 1.3;
}

.subscriptions-products-card p {
    font-size: 12px;
    color: #025EA7;
}

.link-card {
    box-shadow: 0px 13px 100px 0px #C7C7C740;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    color: #253440;
    word-break: break-all;
}

.link-card a {
    color: #253440;
}

.link-card a:hover {
    color: #025EA7;
    text-decoration: underline;
}

.bust-reports-graph {
    margin-bottom: 30px;
}

.disclaimers-info {
    padding-top: 20px;
}

.disclaimers-info h5 {
    font-size: 20px;
    font-weight: 500;
}

.disclaimers-info h6 {
    font-size: 18px;
    font-weight: 500;
}

.disclaimers-info p {
    font-size: 14px;
}

.disclaimers-info-inner {
    border-top: solid 1px #D9D9D9;
    padding-top: 20px;
}

.disclaimers-info-inner .red {
    color: #FF0000;
}

.admins-links {
    gap: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #025EA7;
    text-decoration: underline;
}

@media screen and (max-width: 1440px) {
    .my-account-page {
        padding: 50px 0;
    }
}

@media screen and (max-width: 1199px) {
    .subscriptions-products h2 {
        font-size: 26px;
    }

    .subscriptions-products-card {
        padding: 16px;
    }

    .products-card-heading {
        font-size: 18px;
    }

    .my-account-page {
        padding: 40px 0;
    }

    .admins-links {
        gap: 10px;
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    .my-account-page {
        padding: 30px 0;
    }

    .subscriptions-products {
        padding: 16px;
    }

    .subscriptions-products h2 {
        margin-bottom: 16px;
        font-size: 22px;
    }

    .active-tag {
        top: 25px;
        right: 16px;
    }

    .subscriptions-products .btn-custom {
        padding: 0 10px;
        font-size: 13px;
    }

    .disclaimers-info {
        padding-top: 0;
    }

    .my-account-page {
        padding: 30px 0;
    }

    .admins-links {
        margin: 6px 0;
        display: block;
    }

    .admins-links i {
        display: block;
        width: 30px;
    }
}

/***my-account-page end***/


/*******property-indexes**Result**Sec******Start*****/
.property-indexes {
    background-color: transparent;
    margin-bottom: 50px;
}

.property-indexes .table-head {
    padding: 11px 0;
    background: #025EA7;
    color: #fff;
    border: none;
}

.property-indexes .table-head:first-child {
    padding-left: 20px;
}

.property-stat-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #F9FAFC;
}

.property-stat-table th {
    background-color: #004c99;
    color: white;
    padding: 10px;
    text-align: left;
}

.property-stat-table td {
    padding: 4px;
    border-bottom: 1px solid #D9D9D9;
    text-align: left;
}

.property-stat-table td:first-child {
    vertical-align: middle;
}

.property-stat-table .up {
    color: #0FB300;
}

.property-stat-table .down {
    color: #FF0000;
}

.property-stat-table.city {
    text-align: left;
    border-right: 1px solid #D9D9D9;
    padding: 20px;
    font-weight: 500;
}

.next-update {
    margin-top: 20px;
    text-align: right;
}

.property-stat-table tbody tr:nth-of-type(odd) td > table tr td {
    background-color: #fff;
}

.property-stat-table tbody tr:nth-of-type(odd) td > table {
    border: none;
    padding: 0;
}

.property-stat-table tbody tr:nth-of-type(odd) td > table tr:last-child td, .property-stat-table tbody tr:nth-of-type(even) td > table tr:last-child td {
    border-bottom: 0;
}

.property-stat-table .city {
    border-right: 1px solid #D9D9D9;
    padding-left: 10px;
}

.research-data-item ul li a {
    color: #212529;
}

.research-data-item ul li a:hover {
    text-decoration: underline;
    color: #025ea7;
}

.verified-section .great-deal-card-info {
    max-width: 685px;
}

@media (max-width: 1199px) {
    .tab-sec .tab-nav-outer .nav-pills li button {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 10px;
    }

    .property-indexes .table-head {
        padding: 10px;
    }

    .property-stat-table td {
        white-space: nowrap;
    }

    .tab-sec .tab-nav-outer {
        padding: 15px;
    }

}

@media (max-width: 991px) {
    .tab-sec .tab-nav-outer {
        margin-bottom: 20px
    }

    .tab-sec .tab-nav-outer .nav li {
        flex-grow: 1
    }

    .tab-sec .tab-nav-outer .nav {
        display: flex;
        flex-direction: inherit !important;
        justify-content: space-between
    }

    .tab-sec .tab-nav-outer {
        padding: 12px;
    }

    .tab-sec .tab-nav-outer .nav-pills li button {
        padding: 9px 10px;
    }
}

@media (max-width: 767px) {
    .tab-sec .tab-nav-outer .nav-pills li button {
        padding: 12px 15px;
        min-height: 55px;
        border-radius: 10px;
        gap: 10px;
        font-size: 14px
    }

    .tab-sec .tab-nav-outer .nav-pills li button img {
        height: 16px
    }

    .property-indexes {
        margin-bottom: 30px;
    }

    .auction-schedule .tab-sec .tab-nav-outer .nav-pills li button {
        min-height: inherit;
    }
}

/*******property-indexes**Sec******End*****/


/***property-explorer-Start***/
.property-card-inner {
    border-radius: 40px;
    display: flex;
}

.property-card-left, .property-card-right {
    width: 50%;
}

.postcode-title {
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 40px;
    gap: 20px;
    display: flex;
    align-items: center;
}

.postcode-data-item {
    height: auto;
    margin-bottom: 10px;
}

.postcode-data-item .btn-custom {
    height: 40px;
    line-height: 40px;
}

.property-card-left ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.postcode-data-item ul li::before {
    width: 22px;
    height: 22px;
    background: url(../images/check-circle.svg) no-repeat center center;
    position: absolute;
    top: 2px;
    left: 0;
    content: "";
}

.postcode-data-item li {
    display: flex;
    width: 50%;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    padding-right: 10px;
}

.banner-search {
    position: relative;
    max-width: 450px;
    margin: 15px auto 0;
}

.banner-search .search-icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    z-index: 9;
}

.banner-search .search-input {
    box-shadow: none !important;
    height: 54px;
    font-family: "Poppins", serif;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    border-radius: 35px;
    padding: 0 15px 0 60px;
    border: solid 1px #D9D9D9;
    background-color: #fff;
    outline: none;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .property-card-left, .property-card-right {
        width: 100%;
    }

    .property-card-inner {
        flex-wrap: wrap;
    }

    .property-card-right img {
        display: none;
    }

    .postcode-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .postcode-title i img {
        max-width: 40px;
    }

    .postcode-data-item .btn-custom {
        line-height: 36px;
    }

    .property-card-inner {
        border-radius: 30px;
    }

    .postcode-data-item {
        margin-bottom: 0;
    }

    .verified-section .great-deal-card-image {
        height: 340px;
    }
}

@media screen and (max-width: 767px) {
    .postcode-data-item li {
        width: 100%;
    }

    .postcode-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .postcode-title i img {
        max-width: 30px;
    }
}

@media screen and (max-width: 575px) {
    .postcode-title {
        font-size: 20px;
        gap: 10px;
    }

    .postcode-data-item li {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .postcode-data-item ul li::before {
        width: 16px;
        height: 16px;
        background-size: cover;
    }

    .postcode-data-item li {
        padding-left: 25px;
    }
}

/***property-explorer-end***/


/***sold-properties-start***/
.properties-info {
    max-width: 90%;
    margin: 0 auto;
    background: #fff;
    margin-top: -30px;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
}

.sold-properties-sub-title {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.properties-info ul {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.properties-info ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.properties-info ul li i img {
    display: block;
}

.properties-info p {
    font-size: 14px;
}

.properties-info h6 {
    color: #025EA7;
    margin: 0 0 10px;
}

.properties-img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.properties-card {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    margin: 0 0 30px;
    height: calc(100% - 30px);
}

.sold-price-txt {
    font-weight: 500;
    color: #253440;
}

.price-graph {
    display: flex;
    padding: 16px;
    background: #fff;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    flex-direction: column;
}

.price-graph-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.price-graph-head-left {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

.price-graph-select {
    display: flex;
    align-items: center;
    width: 40%;
    gap: 20px;
}

.price-graph-select label, .price-graph-post label {
    margin-bottom: 0;
}

.price-graph-select select, .price-graph-post input {
    max-width: 150px;
    height: 40px;
    line-height: 40px;
}

.price-graph-post {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-input {
    gap: 10px;
}

.post-input .btn-custom {
    height: 40px;
    line-height: 40px;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.blue {
    background-color: #3a8ee6;
}

.black {
    background-color: #000;
}

.purple {
    background-color: purple;
}

.red-bg {
    background-color: #ff6b6b;
}

.legend-item {
    margin-bottom: 5px;
}

.price-graph-img {
    margin-top: 20px;
}

.price-graph-img img {
    width: 100%;
}

.reports-head {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #025EA7;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.reports-box {
    background: #fff;
    padding: 25px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.sold-properties .reports-list {
    padding: 0;
}

.prop-prc-block {
    font-size: 24px;
    font-weight: 500;
}

.properties-img {
    position: relative;
}

.properties-img span {
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 30px;
    width: 100px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.properties-card .house-bg {
    background-color: #025EA7;
}

.properties-card .town-bg {
    background-color: #F24C1A;
}

.properties-card .apart-bg {
    background-color: #0FB300;
}

.properties-card .studio-bg {
    background-color: #975BEC;
}

.properties-card .land-bg {
    background-color: #D3A903;
}

@media screen and (max-width: 1199px) {
    .reports-box {
        padding: 15px;
    }

    .reports-head {
        gap: 10px;
        font-size: 16px;
    }

    .price-graph-head {
        flex-direction: column;
        gap: 10px;
    }

    .price-graph-head-left {
        width: 100%;
    }

    .price-graph-head-right {
        width: 100%;
        display: flex;
    }

    .legend {
        width: 100%;
        display: flex;
        gap: 20px;
    }

    .price-graph {
        flex-direction: column;
    }

    .legend-item {
        margin-bottom: 0;
    }

    .price-graph-select select, .price-graph-post input {
        max-width: 150px;
    }

    .sold-properties h2 {
        font-size: 28px;
    }

    .properties-info h6 {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .sold-properties .reports-box {
        margin: 0 0 20px;
    }

    .prop-prc-block {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .price-graph-select, .price-graph-post {
        gap: 11px;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 5px;
        margin-bottom: 10px;
    }

    .price-graph-select label, .price-graph-post label {
        margin-bottom: 0;
        display: block;
    }

    .price-graph-select select, .price-graph-post input {
        max-width: 100%;
    }

    .post-input {
        width: 100%;
    }

    .price-graph-head {
        gap: 0px;
    }

    .sold-properties h2 {
        font-size: 22px;
    }
}

@media screen and (max-width: 575px) {
    .legend {
        gap: 0px;
        flex-direction: column;
    }

    .properties-info {
        padding: 15px;
    }

    .properties-card {
        margin: 0 0 20px;
        height: auto;
    }
}

/***sold-properties-end***/


/***Property Report Start***/
.report-provide-slider {
    margin-top: 30px
}

.report-provide-slider .owl-nav {
    left: -50px;
    right: -50px
}

.report-provide-slider .owl-nav button.owl-prev {
    background: #fff url(../images/arrow1.svg) no-repeat center center !important;
    background-size: cover !important
}

.report-provide-slider .owl-nav button.owl-next {
    background: #fff url(../images/arrow.svg) no-repeat center center !important;
    background-size: cover !important
}

.report-provide-slider .item a {
    display: block;
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 15px
}

.report-provide-slider .item .view-report {
    position: absolute;
    inset: 0;
    background: #253440CF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 300;
    opacity: 0;
    transform: scale(0);
    transition: all .5s ease
}

.report-provide-slider .item .view-report span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 300
}

.report-provide-slider .item .view-report img {
    width: auto
}

.report-provide-slider .item a:hover .view-report {
    opacity: 1;
    transform: scale(1)
}

.property-report-features {
    background: #fff url(../images/graphic-bg2.png) no-repeat center center;
    background-size: 100% auto
}

.prf-card {
    background-color: #fff;
    box-shadow: 0 0 20px 0 #0000000d;
    padding: 20px;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px
}

.prf-card ul li {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px
}

.prf-card ul li::before {
    position: absolute;
    top: 2px;
    left: 0;
    content: "";
    background: url(../images/liIcon.svg) no-repeat center center;
    background-size: 100% auto;
    width: 20px;
    height: 20px
}

.property-report-provide .heading {
    max-width: 100%
}

@media screen and (max-width: 1359px) {
    .report-provide-slider .owl-nav {
        left: 15px;
        right: 15px
    }

    .report-provide-slider .owl-nav button.owl-prev, .report-provide-slider .owl-nav button.owl-next {
        background-color: transparent !important;
        opacity: .5
    }

    .report-provide-slider .owl-nav button.owl-prev:hover, .report-provide-slider .owl-nav button.owl-next:hover {
        opacity: 1
    }
}

@media screen and (max-width: 1199px) {
    .prf-card ul li {
        padding-left: 30px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 991px) {
    .banner-content .btn-custom.single-btn {
        min-width: 200px
    }
}

/***Property Report End***/


/***Total Property Listing Start***/
.postcode-sec-card {
    background: #fff;
    padding: 25px;
    box-shadow: 0 0 50px 0 #0000000d;
    border-radius: 8px
}

.ps-top-block {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ps-top-lt {
    font-size: 24px;
    font-weight: 500
}

.ps-top-lt span {
    font-size: 14px;
    font-weight: 400
}

.ps-top-rt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px
}

.ps-top-rt label {
    margin: 0
}

.ps-top-rt .form-control {
    width: 150px;
    height: 40px
}

.ps-top-rt .btn-custom {
    height: 40px;
    line-height: 38px
}

.ps-main-block {
    margin: 25px 0 0;
    display: flex;
    flex-wrap: wrap
}

.ps-main-lt {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 30px
}

.ps-main-rt {
    flex: 0 0 75%;
    max-width: 75%
}

.light-blue-ind-card {
    background-color: #3AC4E91A;
    padding: 20px 20px 5px;
    border-radius: 8px
}

.light-blue-ind-card ul li {
    margin: 0 0 15px
}

.light-blue-ind-card ul li, .light-blue-ind-card ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #253440
}

.light-blue-ind-card ul li a:hover {
    text-decoration: underline
}

.light-blue-ind-card ul li span {
    width: 16px;
    height: 16px;
    border-radius: 50%
}

.light-blue-ind-card ul li .blue {
    background-color: #025EA7
}

.light-blue-ind-card ul li .light-blue {
    background-color: #26ADD2
}

.light-blue-ind-card ul li .green {
    background-color: #0FB300
}

.light-blue-ind-card ul li .orange {
    background-color: #F28E26
}

.light-blue-ind-card ul li .red {
    background-color: #F24C1A
}

.ps-btn-card .btn-custom {
    padding: 0;
    font-size: 15px;
    display: block;
    margin: 20px 0 0
}

.postcode-chart-sec {
    /*padding: 40px 0 20px;*/
    margin-bottom: 60px;
    background: #fff url(../images/graphic-bg3.png) no-repeat center center;
    background-size: cover
}

.chart-card {
    display: flex;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 50px 0 #0000000d;
    border-radius: 8px;
    height: calc(100% - 24px);
    margin: 0 0 24px;
    flex-direction: column;
    font-size: 22px;
    font-weight: 600;
    color: #253440;
    gap: 10px
}

.chart-card i {
    background: #FFF1DA;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px
}

.chart-card:hover {
    color: #025ea7
}

.postcode-content, .postcode-content p {
    color: #253440B2;
    font-size: 12px
}

@media screen and (max-width: 1199px) {
    .ps-main-lt {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 0 20px
    }

    .ps-main-rt {
        flex: 0 0 100%;
        max-width: 100%
    }

    .light-blue-ind-card ul {
        display: flex;
        gap: 25px
    }

    .ps-btn-card {
        display: flex;
        gap: 20px
    }

    .ps-btn-card .btn-custom {
        padding: 0;
        font-size: 15px;
        display: flex;
        margin: 20px 0 0;
        flex: auto;
        justify-content: center
    }

    .chart-card {
        font-size: 18px
    }

    .ps-top-lt {
        font-size: 20px
    }

    .ps-top-lt span {
        font-size: 13px
    }
}

@media screen and (max-width: 991px) {
    .postcode-sec-card {
        padding: 15px
    }

    .ps-top-lt span {
        display: block
    }

    .light-blue-ind-card {
        padding: 15px 15px 5px
    }

    .light-blue-ind-card ul {
        gap: 15px
    }

    .light-blue-ind-card ul li {
        margin: 0 0 10px
    }

    .ps-btn-card {
        gap: 10px
    }

    .ps-btn-card .btn-custom {
        font-size: 13px;
        margin: 15px 0 0
    }
}

@media screen and (max-width: 767px) {
    .ps-top-block, .ps-main-block, .light-blue-ind-card ul, .ps-btn-card {
        display: block
    }

    .ps-top-rt {
        gap: 5px;
        margin-top: 10px
    }

    .ps-top-rt label {
        font-size: 14px
    }

    .ps-top-rt .btn-custom {
        padding: 0;
        width: 40px
    }

    .ps-top-rt .form-control {
        width: 140px
    }

    .postcode-chart-sec {
        padding: 0;
        margin-bottom: 40px
    }
}

/***Total Property Listing End***/


/***Postcode Snapshot Start***/
.postcode-snapshot-analytics {
    background: #fff url(../images/graphic-bg4.png) no-repeat center center;
    background-size: cover;
    padding: 60px 0
}

.information-list {
    margin: 0 0 50px
}

.information-list ul {
    display: flex;
    gap: 15px
}

.information-list ul li {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 50px 0 #0000000d;
    position: relative;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-align: center;
    max-width: 190px
}

.information-list ul li span {
    background-color: #15b306;
    width: 54px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    border-radius: 0 10px
}

.information-slider .item a {
    display: block;
    background-color: #fff;
    padding: 15px
}

.information-slider .owl-nav {
    left: -50px;
    right: -50px
}

.information-slider .owl-nav button.owl-prev {
    background: url(../images/arrow1.svg) no-repeat center center !important;
    background-size: cover !important
}

.information-slider .owl-nav button.owl-next {
    background: url(../images/arrow.svg) no-repeat center center !important;
    background-size: cover !important
}

.postcode-snapshot-belobg-profession {
    background-color: #fff;
    padding: 60px 0 0
}

.belobg-profession-card {
    background-color: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    padding: 35px;
    margin: 0 0 35px
}

.belobg-profession-card h2 {
    margin: 70px 0 0;
    font-size: 54px;
    line-height: 64px
}

.belobg-profession-card h2 span {
    display: block
}

.bp-card {
    text-align: center
}

.bp-card img {
    border-radius: 15px;
    width: 100%;
    display: block
}

.bp-card h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin: 12px 0 0
}

.psbp-text h3 {
    font-size: 22px;
    font-weight: 400
}

@media screen and (max-width: 1359px) {
    .information-slider .owl-nav {
        left: 15px;
        right: 15px
    }

    .information-slider .owl-nav button.owl-prev, .information-slider .owl-nav button.owl-next {
        background-color: transparent !important;
        opacity: .5
    }

    .information-slider .owl-nav button.owl-prev:hover, .information-slider .owl-nav button.owl-next:hover {
        opacity: 1
    }
}

@media screen and (max-width: 1440px) {
    .belobg-profession-card {
        border-radius: 25px;
        padding: 20px
    }

    .belobg-profession-card h2 {
        margin: 55px 0 0;
        font-size: 50px;
        line-height: 60px
    }
}

@media screen and (max-width: 1199px) {
    .belobg-profession-card h2 {
        margin: 0 0 20px;
        font-size: 40px;
        line-height: 50px
    }
}

@media screen and (max-width: 991px) {
    .postcode-snapshot-analytics {
        padding: 40px 0
    }

    .information-list ul {
        flex-wrap: wrap;
        justify-content: center
    }

    .information-list {
        margin: 0 0 30px
    }

    .belobg-profession-card h2 img {
        width: 50px
    }

    .belobg-profession-card h2 {
        font-size: 32px;
        line-height: 40px
    }

    .bp-card h4 {
        font-size: 16px;
        line-height: 22px;
        margin: 10px 0 0
    }

    .belobg-profession-card {
        margin: 0 0 20px
    }

    .postcode-snapshot-belobg-profession {
        padding: 40px 0 0
    }
}

@media screen and (max-width: 767px) {
    .information-list ul {
        gap: 10px
    }

    .information-list ul li {
        padding: 8px;
        font-size: 13px;
        line-height: 18px;
        max-width: inherit;
        width: 48%;
        justify-content: center
    }

    .bp-card {
        margin: 20px 0 0
    }

    .belobg-profession-card h2 {
        font-size: 28px;
        line-height: 36px;
        margin: 0
    }

    .psbp-text h3 {
        font-size: 18px
    }
}

/***Postcode Snapshot End***/


/***filters-block start***/
.filters-block {
    padding: 28px 0;
    background-color: #fff;
    box-shadow: 0px 13px 100px 0px #C7C7C740;
    position: relative;
    z-index: 3;
}

.filters-block .container {
    position: initial;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    color: #025EA7;
    gap: 16px;
}

.filter-title i, .filter-title i img {
    display: block;
}

.filter-list-card {
    display: flex;
    align-items: center;
    gap: 40px;
}

.dropdown.filter-dropdown {
    position: initial;
}

.filter-dropdown .dropdown-toggle {
    border: none;
    background-color: #fff;
    padding: 8px 0;
    padding-right: 30px;
    border-bottom: 2px solid #D9D9D9;
    color: #253440;
    font-size: 14px;
    position: relative;
    text-align: left;
}

.filter-dropdown .dropdown-toggle::after {
    border: none;
    position: absolute;
    top: 14px;
    right: 0;
    background: url(../images/select-arrow.svg) no-repeat;
    width: 15px;
    height: 8px;
}

.filter-dropdown .dropdown-toggle[aria-expanded="true"] {
    color: #025EA7;
    border-color: #025EA7;
}

.filter-dropdown .dropdown-toggle[aria-expanded="true"]::after {
    background: url(../images/select-arrow-blue.svg) no-repeat;
}

.filter-width-240 {
    width: 240px;
}

.filter-width-140 {
    width: 140px;
}

.filter-list-card .custom-checkbox {
    font-weight: 400;
    margin-bottom: 0;
}

.filter-dropdown .dropdown-menu {
    transform: none !important;
    top: 95px !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 10px 10px;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto !important;
    position: absolute !important;
    z-index: 8;
    bottom: auto !important;
}

body.fltr-open, body.fltr-open2 {
    position: relative;
}

body.fltr-open::before, body.fltr-open2::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: #0009;
    z-index: 2;
    pointer-events: none;
    height: 100%;
}

.filter-information-card {
    padding: 35px;
    border-radius: 0 0 10px 10px;
}

.fltr2 .filter-information-card {
    background: #fbfbfb;
}

.filter-information-head {
    margin-bottom: 20px;
}

.filter-information-head h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    font-size: 14px;
    color: #253440;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.basic-information-filter {
    margin: 0 -8px;
}

.basic-information-filter .form-group {
    width: 20%;
    flex: 0 0 20%;
    padding: 0 8px;
    margin-bottom: 0;
}

.basic-information-filter select.form-control {
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
}

.basic-information-filter-tag {
    padding-top: 20px;
    padding-bottom: 20px;
}

.basic-information-filter-tag ul {
    gap: 10px;
}

.basic-information-filter-tag ul li a {
    display: block;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    font-size: 12px;
    border-radius: 50px;
    padding: 6px 14px;
    color: #253440;
}

.filter-dropdown-btn-card {
    gap: 20px;
}

.reset-links {
    color: #253440;
    text-decoration: underline;
}

.filter-dropdown-btn-card .btn-custom {
    height: 60px;
    line-height: 60px;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.prc-slider-outer {
    justify-content: space-between;
}

.prc-lt {
    position: relative;
    width: 630px;
    padding: 10px 0 0;
}

.prc-lt .slider-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 17px 0 0;
    font-size: 14px
}

.prc-lt .slider-label strong {
    font-weight: 600;
    color: #025EA7
}

.prc-lt .ui-slider-horizontal {
    height: 4px
}

.prc-lt .ui-widget-content {
    background: #d6d7d9
}

.prc-lt .ui-widget.ui-widget-content {
    border: none
}

.prc-lt .ui-widget-header {
    background: #035fa7
}

.prc-lt .ui-state-default, .prc-lt .ui-widget-content .ui-state-default, .prc-lt .ui-widget-header .ui-state-default, .prc-lt .ui-button, .prc-lt .ui-button.ui-state-disabled:hover, .prc-lt .ui-button.ui-state-disabled:active {
    border: none;
    background: #035fa7;
    border-radius: 50%
}

.prc-lt .ui-state-hover, .prc-lt .ui-widget-content .ui-state-hover, .prc-lt .ui-widget-header .ui-state-hover, .prc-lt .ui-state-focus, .prc-lt .ui-widget-content .ui-state-focus, .prc-lt .ui-widget-header .ui-state-focus, .prc-lt .ui-button:hover, .prc-lt .ui-button:focus {
    border: none;
    background: #035fa7;
    border-radius: 50%
}

.prc-lt .ui-slider-horizontal .ui-slider-handle {
    top: -7px
}

.filter-dropdown.fltr3 {
    position: relative;
}

.fltr3 .dropdown-menu {
    top: 40px !important;
    max-width: 100%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    max-height: 270px;
    overflow-y: auto;
}

.fltr3 .dropdown-menu ul {
    padding: 15px 0;
}

.fltr3 .dropdown-menu ul li {
    padding: 5px 15px;
    cursor: pointer;
}

.fltr3 .dropdown-menu ul li:hover {
    color: #035fa7;
}

@media screen and (max-width: 1440px) {
    .filter-dropdown-btn-card .btn-custom {
        height: 50px;
        line-height: 50px;
        width: 180px;
    }
}

@media screen and (max-width: 1199px) {
    .filters-block {
        padding: 20px 0;
    }

    .filter-title {
        font-size: 16px;
        gap: 10px;
    }

    .filter-list-card {
        gap: 20px;
    }

    .filter-width-240 {
        width: 180px;
    }

    .filter-information-card {
        padding: 20px;
    }

    .filter-dropdown .dropdown-menu {
        top: 78px !important;
    }

    .filter-dropdown.fltr3 .dropdown-menu {
        top: 40px !important;
    }

    .fltr3 .dropdown-menu ul li {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .filter-title {
        padding-bottom: 10px;
    }

    .basic-information-filter {
        flex-wrap: wrap;
    }

    .basic-information-filter .form-group {
        width: 25%;
        flex: 0 0 25%;
        margin-bottom: 15px;
    }

    .filter-dropdown-btn-card .btn-custom {
        height: 46px;
        line-height: 46px;
        width: 140px;
    }

    .filter-dropdown .dropdown-menu {
        top: 100px !important;
    }

    .prc-lt {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .filter-list-card {
        display: block;
    }

    .dropdown.filter-dropdown {
        margin-bottom: 6px;
    }

    .filter-dropdown .dropdown-toggle {
        width: 100%;
    }

    .filter-list-card .custom-checkbox {
        margin-top: 20px;
    }

    .filter-information-card {
        padding: 16px;
    }

    .basic-information-filter .form-group {
        width: 50%;
        flex: 0 0 50%;
        margin-bottom: 15px;
    }

    .reset-links {
        font-size: 14px;
    }

    body.fltr-open, body.fltr-open2 {
        position: static;
    }

    body.fltr-open::before, body.fltr-open2::before {
        display: none;
    }

    .filter-information-head h3 {
        font-size: 18px;
    }

    .prc-lt {
        width: 100%;
        padding: 5px 0 15px;
    }

    .dropdown.filter-dropdown {
        position: relative;
    }

    .filter-dropdown .dropdown-menu {
        top: 40px !important;
    }

    .filter-information-card {
        padding: 15px;
        max-height: 300px;
        overflow-y: auto;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
    }

    .basic-information-filter-tag ul li a {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/***filters-block end***/


/***distressed-properties-listing start***/
.distressed-properties-listing {
    padding: 30px 0;
    background-color: #FAFBFC;
}

.distressed-properties-card {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 13px 100px 0 #C7C7C740;
    gap: 20px;
    margin-bottom: 40px;
    height: calc(100% - 40px);
}

.distressed-properties-card-title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.distressed-properties-number {
    display: block;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #025EA7;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    color: #025EA7;
}

.distressed-card {
    box-shadow: 0px 4px 20px 0px #EEEEEE80;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    height: calc(100% - 40px);
}

.distressed-card-head {
    gap: 16px;
}

.distressed-card-head h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.distressed-card-head span {
    font-size: 14px;
    display: block;
}

.distressed-card-head p {
    font-size: 12px;
    padding-bottom: 5px;
}

.distressed-card-location {
    margin-top: -40px;
}

.distressed-card-location li {
    margin-bottom: 10px;
    font-size: 14px;
}

.distressed-card-location li:last-child {
    margin-bottom: 0;
}

.distressed-card-location li a {
    color: #253440;
}

.distressed-card-location li a:hover {
    color: #025ea7;
    text-decoration: underline;
}

.dpl-top-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px
}

.dpl-lt h2 {
    margin: 0
}

.dpl-lt h2 span {
    font-size: 14px;
    font-weight: 400;
    color: #025EA7
}

.dpl-rt {
    display: flex;
    align-items: center;
    gap: 12px
}

.dpl-rt label {
    margin: 0;
    white-space: nowrap
}

.dpl-rt select.form-control {
    height: 40px;
    line-height: 38px;
    width: 175px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
}

.dpl-rt .btn-custom {
    line-height: 16px;
    padding: 0;
    width: 146px;
    height: 40px;
    border-radius: 8px;
    font-size: 12px
}

.dpl-rt .btn-custom span {
    display: block;
    font-weight: 400
}

@media screen and (max-width: 1440px) {
    .distressed-properties-card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .distressed-properties-number {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1199px) {
    .distressed-properties-card {
        padding: 16px;
        gap: 16px;
    }

    .distressed-properties-card-title {
        font-size: 16px;
        line-height: 24px;
    }

    .distressed-card {
        padding: 16px;
    }

    .distressed-card-location {
        margin-top: 0;
    }

    .dpl-top-sec {
        display: block;
    }

    .dpl-rt {
        margin: 15px 0 0;
    }

    .dpl-lt h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {
    .distressed-properties-card {
        padding: 10px;
    }

    .distressed-properties-card-title {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 767px) {
    .distressed-properties-listing {
        padding: 20px 0;
    }

    .distressed-properties-card {
        padding: 16px;
        height: auto;
        margin-bottom: 16px;
    }

    .distressed-card {
        height: auto;
        margin-bottom: 16px;
    }

    .distressed-properties-card-title {
        font-size: 16px;
        line-height: 22px;
    }

    .dpl-lt h2 {
        font-size: 24px;
    }

    .dpl-rt {
        gap: 7px;
    }

    .dpl-rt .btn-custom {
        width: 115px;
    }

    .dpl-rt select.form-control {
        width: 150px;
    }

    .dpl-lt h2 span {
        display: block;
    }
}

/***distressed-properties-listing end***/


/***government-text start***/
.government-text {
    background-color: #ffffff;
    padding: 50px 0;
}

.disclaimers-info {
    padding: 0;
}

@media screen and (max-width: 991px) {
    .government-text {
        padding: 30px 0;
    }
}

/***government-text end***/


/* Distressed properties detail Start */
.distressed-properties-detail-sec {
    background-color: #fff;
    padding: 10px 0 50px;
}

.distressed-properties-detail-sec h1 {
    font-size: 36px;
    margin: 10px 0 25px
}

.distressed-properties-detail-sec h2 {
    font-size: 26px
}

.distressed-properties-detail-sec h3 {
    font-size: 20px
}

.dark-breadcrumb.breadcrumb-card li {
    color: #253440;
}

.dark-breadcrumb.breadcrumb-card li a {
    color: #253440;
    opacity: 0.7;
}

.dark-breadcrumb.breadcrumb-card li:after {
    opacity: 0.7;
}

.dpd-sec1 {
    margin: 20px 0 0
}

.dpd-label {
    display: flex;
    align-items: center;
    gap: 10px
}

.dpd-label span {
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    padding: 0 20px;
    color: #fff;
    font-size: 14px
}

.dpd-label .dpd-green-bg {
    background-color: #0FB300
}

.dpd-label .dpd-blue-bg {
    background-color: #253440
}

.dpd-sec2-lt {
    margin-right: 25px
}

.dpd-sec2-rt {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px #c7c7c740
}

.prop-spec {
    display: flex;
    padding: 6px 0
}

.prop-spec span {
    width: 45%
}

.prop-spec strong {
    width: 55%;
    font-weight: 500
}

.main-slider {
    border-radius: 12px;
    overflow: hidden;
    position: relative
}

.thumb-slider {
    margin-top: 20px
}

.thumb-slider .item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

.thumb-slider .item::before {
    position: absolute;
    inset: 0;
    content: "";
    display: block;
    opacity: 1;
    transition: all .3s ease;
    background-color: #25344080
}

.thumb-slider .item img {
    border-radius: 5px
}

.thumb-slider .item.active::before {
    opacity: 0
}

.thumb-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat
}

.thumb-slider .owl-nav .owl-prev {
    left: 5px;
    background-image: url(../images/thumb-lt.svg)
}

.thumb-slider .owl-nav .owl-next {
    right: 5px;
    background-image: url(../images/thumb-rt.svg)
}

.dpd-sec3 {
    margin-top: 50px;
}

.dpd-sec-lt {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 12px
}

.dpd-sec-lt span {
    display: block
}

.dpd-prc {
    width: 220px;
    height: 50px;
    border: 1px solid #d9d9d9ff;
    border-radius: 5px;
    line-height: 48px;
    text-align: center;
    background: #fff;
    font-weight: 500;
    font-size: 24px;
    color: #025ea7ff
}

.dpd-sec3 .btn-custom.w-100 {
    padding: 0
}

.dpd-sec4 {
    margin-top: 25px
}

.amenities-sec {
    margin: 0 0 25px
}

.amenities-sec li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px
}

.amenities-sec li i {
    border: 1px solid #d3d3d3ff;
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.dpd-sec4-lt p i img {
    width: 28px;
    height: 25px
}

.dpd-sec4-rt {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px #c7c7c740;
    margin: 0 0 20px
}

.dpd-sec4-rt ul li {
    display: block;
    margin: 8px 0 0
}

.dpd-sec4-rt ul li a {
    color: #253440;
    text-decoration: underline
}

.dpd-sec4-rt ul li a:hover {
    color: #253440;
    text-decoration: none
}

.dpd-sec6 {
    margin-top: 30px
}

@media (max-width: 1440px) {
    .distressed-properties-detail-sec h1 {
        font-size: 32px
    }

    .prop-spec {
        padding: 4px 0
    }
}

@media (max-width: 1199px) {
    .prop-spec {
        font-size: 14px
    }

    .dpd-sec3 .btn-custom.w-100 {
        font-size: 13px
    }
}

@media (max-width: 991px) {
    .distressed-properties-detail-sec h1 {
        font-size: 30px
    }

    .dpd-sec2-lt {
        margin: 0 0 25px
    }

    .dpd-sec3 {
        margin-top: 30px
    }

    .dpd-sec-lt {
        margin-bottom: 20px
    }
}

@media (max-width: 767px) {
    .distressed-properties-detail-sec {
        padding: 10px 0 40px
    }

    .dark-breadcrumb.breadcrumb-card li {
        line-height: 16px
    }

    .distressed-properties-detail-sec h1 {
        font-size: 26px
    }

    .distressed-properties-detail-sec h2 {
        font-size: 22px
    }

    .distressed-properties-detail-sec h3 {
        font-size: 18px
    }

    .dpd-sec2-rt {
        padding: 15px
    }

    .prop-spec {
        padding: 7px 0
    }

    .prop-spec, .prop-spec span, .prop-spec strong {
        display: block;
        width: 100%
    }

    .dpd-prc {
        width: 100%;
        height: auto;
        line-height: normal;
        font-size: 20px;
        margin: 0 0 15px;
        padding: 10px
    }
}

/* Distressed properties detail End */


/* Relevant Distressed Property Start */
.relevant-distressed-property {
    padding: 0 0 50px
}

.relevant-dp-slider .items {
    padding: 10px
}

.relevant-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px #c7c7c740
}

.relevant-img {
    height: 240px;
    position: relative
}

.relevant-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
}

.relevant-text {
    padding: 20px 10px 20px 30px;
    font-size: 18px;
    font-weight: 500
}

.relevant-text1 {
    display: flex;
    align-items: center;
    gap: 5px
}

.relevant-text2 {
    font-size: 28px;
    margin: 10px 0 0
}

.relevant-img span {
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 30px;
    width: 100px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center
}

.relevant-img .house-bg {
    background-color: #025EA7
}

.relevant-img .town-bg {
    background-color: #F24C1A
}

.relevant-img .apart-bg {
    background-color: #0FB300
}

.relevant-img .studio-bg {
    background-color: #975BEC
}

.relevant-img .land-bg {
    background-color: #D3A903
}

.relevant-dp-slider .owl-nav {
    left: -50px;
    right: -50px
}

.relevant-dp-slider .owl-nav button.owl-prev {
    background: #fff url(../images/arrow1.svg) no-repeat center center !important;
    background-size: cover !important
}

.relevant-dp-slider .owl-nav button.owl-next {
    background: #fff url(../images/arrow.svg) no-repeat center center !important;
    background-size: cover !important
}

@media (max-width: 1359px) {
    .relevant-dp-slider .owl-nav {
        left: 15px;
        right: 15px;
        top: 40%;
    }

    .relevant-dp-slider .owl-nav button.owl-prev, .relevant-dp-slider .owl-nav button.owl-next {
        background-color: transparent !important;
        opacity: 0.5;
    }

    .relevant-dp-slider .owl-nav button.owl-prev:hover, .relevant-dp-slider .owl-nav button.owl-next:hover {
        opacity: 1;
    }
}

@media (max-width: 1440px) {
    .relevant-text {
        padding: 15px;
        font-size: 16px;
    }

    .relevant-text2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .relevant-distressed-property {
        padding: 0 0 30px;
    }

    .relevant-text {
        padding: 12px;
        font-size: 14px;
    }
}

/* Relevant Distressed Property End */


/* Fund Explorer Chart Pack Start */
.fund-explorer-chart-pack {
    background-color: #fff;
    padding: 30px 0 50px
}

.fund-explorer-chart-pack h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700
}

.cmn-blue-grey-card {
    background: #f8f8f8
}

.bg-loop-block {
    display: flex;
    font-size: 14px
}

.bg-loop-block span {
    background: #025ea7;
    color: #fff;
    border-bottom: 1px solid #016abd;
    font-weight: 500;
    width: 41%;
    padding: 5px 5px 5px 18px
}

.bg-loop-block strong {
    border-bottom: 1px solid #fff;
    font-weight: 400;
    width: 59%;
    padding: 5px 5px 5px 18px
}

.bg-loop-block strong small {
    font-size: 12px;
    line-height: 18px
}

.admin-peer-sec {
    /*background: #fff url(../images/graphic-bg5.png) no-repeat center bottom;*/
    background-size: cover;
    padding: 0 0 50px;
    margin: 0 0 50px
}

.admin-peer-sec .nav.flex-column.nav-pills {
    width: 344px;
    min-width: 344px;
    max-width: 344px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 0 15px #c7c7c740;
}

.admin-peer-sec .tab-content {
    flex: 0 0 calc(100% - 374px);
    max-width: calc(100% - 374px);
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 15px #c7c7c740;
    margin-left: 30px;
}

.admin-peer-sec .nav.flex-column.nav-pills .nav-link {
    color: rgba(37, 52, 64, 1);
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    box-shadow: none;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 18px 20px;
}

.admin-peer-sec .nav.flex-column.nav-pills .nav-link.active {
    color: #fff;
    background: #025ea7;
    font-weight: 500;
}

.admin-peer-top {
    display: flex;
    justify-content: space-between;
    margin: 0 0 20px;
}

.admin-peer-rt p {
    font-size: 12px;
    color: #025EA7;
    margin: 0 0 5px;
}

.admin-peer-btn-block {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.admin-peer-btn-block .btn-custom.btn-sm {
    background-color: #253440;
    border-color: #253440;
    border-radius: 5px;
}

.admin-peer-btn-block .btn-custom.btn-sm:hover {
    background-color: #025ea7;
    border-color: #025ea7;
}

.fund-explorer-chart-pack-text, .fund-explorer-chart-pack-text p {
    font-size: 12px;
}

.fund-explorer-chart-pack-text p {
    opacity: 0.7;
}

.fund-explorer-chart-pack-text h6 {
    font-size: 12px;
}

@media (max-width: 1440px) {
    .fund-explorer-chart-pack h1 {
        font-size: 44px
    }

    .admin-peer-sec .nav.flex-column.nav-pills {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        padding: 15px;
        border-radius: 10px
    }

    .admin-peer-sec .nav.flex-column.nav-pills .nav-link {
        font-size: 16px;
        border-radius: 10px;
        padding: 12px 15px
    }

    .admin-peer-sec .tab-content {
        flex: 0 0 calc(100% - 270px);
        max-width: calc(100% - 270px);
        margin-left: 20px
    }
}

@media (max-width: 1199px) {
    .admin-peer-sec {
        padding: 0 0 30px;
        margin: 0 0 30px
    }

    .fund-explorer-chart-pack h1 {
        font-size: 38px
    }

    .fund-explorer-chart-pack h4 {
        font-size: 22px
    }
}

@media (max-width: 991px) {
    .admin-peer-sec .nav.flex-column.nav-pills {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
        display: flex;
        flex-direction: row !important
    }

    .admin-peer-sec .nav.flex-column.nav-pills .nav-link {
        font-size: 15px;
        border-radius: 7px;
        padding: 7px 15px;
        width: 33.33%;
        text-align: center
    }

    .admin-peer-sec .tab-content {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0
    }
}

@media (max-width: 767px) {
    .fund-explorer-chart-pack h1 {
        font-size: 32px
    }

    .fund-explorer-chart-pack h4 {
        font-size: 20px
    }

    .bg-loop-block {
        display: block
    }

    .bg-loop-block span, .bg-loop-block strong {
        border-bottom: none;
        width: 100%;
        padding: 5px 10px;
        display: block
    }

    .admin-peer-sec .nav.flex-column.nav-pills {
        padding: 0;
        justify-content: space-between;
        border-radius: 7px
    }

    .admin-peer-sec .nav.flex-column.nav-pills .nav-link {
        font-size: 14px;
        border-radius: 7px;
        padding: 8px 12px;
        width: auto
    }

    .admin-peer-top {
        display: block
    }

    .admin-peer-btn-block {
        display: block
    }

    .admin-peer-btn-block .btn-custom.btn-sm {
        display: block;
        margin: 10px 0 0
    }
}

/* Fund Explorer Chart Pack End */


/* Equities Home Start */
.equities-home-sec {
    background-color: #fff;
    padding: 0 0 50px
}

.equities-home-sec .container {
    max-width: 1740px;
}

.equities-home-sec h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.equities-home-text, .equities-home-text p {
    font-size: 12px;
}

.equities-home-text p {
    opacity: .7
}

.equities-home-hd {
    background-color: #fff;
    position: relative;
    z-index: 3;
    padding: 30px 0 20px;
}

.equities-home-filter {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 0 13px #C7C7C740;
    position: relative;
    z-index: 3;
}

.equities-home-filter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
}

.eh-filter-rt {
    display: flex;
    align-items: center;
    gap: 10px
}

.w-200 {
    width: 200px
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.h-60 {
    height: 60% !important;
}

.eh-filter-rt .form-control {
    height: 36px;
    line-height: 34px
}

.equities-home-filter-card .btn-sm {
    height: 36px;
    line-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.reset-link {
    color: #253440;
    font-size: 14px;
    text-decoration: underline;
    margin: 0 0 0 10px
}

.reset-link:hover {
    text-decoration: none
}

.equities-home-filter-card .btn-sm.dwn-btn {
    background-color: #28283c;
    border-color: #28283c
}

.equities-home-filter-card .btn-sm.dwn-btn:hover {
    background-color: #025ea7;
    border-color: #025ea7
}

.equities-home-share-list {
    padding: 30px 0;
}

.ehs-list-top {
    display: flex;
    align-items: center;
    margin: 0 0 20px;
    justify-content: space-between
}

.ehs-list-top h2 {
    margin: 0
}

.ehs-list-top .btn-custom {
    background-color: #fff;
    border-color: #fff;
    color: #253440;
    font-weight: 500;
    box-shadow: 0 0 10px #bfb9b940
}

.eh-filter-btn .dropdown-menu {
    transform: none !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 0 10px 10px;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 1716px;
    margin: 0 auto !important;
    position: absolute !important;
    z-index: 8;
    bottom: auto !important
}

.filter-advance-card {
    padding: 45px 20px 20px;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.dropdown-sltd {
    width: 16%
}

.dropdown-sltd .form-control {
    height: 36px;
    line-height: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: inherit;
}

.eh-filter-btn.dropdown, .equities-home-filter .container {
    position: static
}

.equities-home-filter-card .eh-filter-btn .btn-sm::after {
    display: none
}

.filter-advance-card .close-btn {
    position: absolute;
    right: 20px;
    top: 7px
}

body.eh-filter-open {
    position: relative
}

body.eh-filter-open::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: #0009;
    z-index: 2;
    pointer-events: none;
    height: 100%
}

.dropdown-menu.table-data-block {
    transform: inherit !important;
    right: 0 !important;
    top: 180px !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 180px !important;
    padding: 30px;
    border: none;
    border-radius: 50px 0 0 0;
    z-index: 8
}

.close-btn2 {
    font-size: 14px;
    color: #253440;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500
}

.tbl-data-btn {
    color: #253440
}

.tbl-data-btn::after {
    display: none;
}

.table-data-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.table-data-top h2 {
    margin: 0
}

.table-tab-outer .nav.flex-column.nav-pills {
    width: 240px;
    min-width: 240px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 40px #0000001A
}

.table-tab-outer .nav.flex-column.nav-pills .nav-link {
    color: #253440ff;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    box-shadow: none;
    border: none;
    outline: none;
    border-radius: 15px;
    padding: 18px 20px
}

.table-tab-outer .nav.flex-column.nav-pills .nav-link.active {
    color: #fff;
    background: #025ea7;
    font-weight: 500
}

.table-tab-outer .tab-content {
    flex: 0 0 calc(100% - 374px);
    max-width: calc(100% - 374px);
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 40px #0000001A;
    margin-left: 30px
}

.table-tab-top-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px
}

.tab-top-btn-rt {
    display: flex;
    align-items: center;
    gap: 10px
}

.table-tab-top-btn .btn-custom {
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.table-tab-top-btn .tab-top-btn-lt .btn-custom {
    background-color: #0FB300;
    border-color: #0FB300
}

.table-tab-top-btn .tab-top-btn-lt .btn-custom:hover {
    background-color: #28283c;
    border-color: #28283c
}

.table-tab-top-btn .tab-top-btn-rt .btn-custom.line-chart-btn {
    background-color: #28283c;
    border-color: #28283c
}

.table-tab-top-btn .tab-top-btn-rt .btn-custom.line-chart-btn:hover {
    background-color: #025ea7;
    border-color: #025ea7
}

body.table-data-open {
    position: relative
}

body.table-data-open::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: #0009;
    z-index: 4;
    pointer-events: none;
    height: 100%
}

@media (min-width: 1200px) {
    body.table-data-open .equities-home-sec * {
        position: static;
    }
}

@media (max-width: 1440px) {
    .equities-home-sec h1 {
        font-size: 44px
    }

    .w-200 {
        width: 165px
    }

    .equities-home-filter-card .btn-sm {
        padding: 0 15px
    }

    .reset-link {
        margin: 0
    }

    .dropdown-sltd {
        width: 19%;
    }

    .dropdown-menu.table-data-block {
        top: 150px !important;
        left: 40px !important;
        padding: 20px;
        border-radius: 30px 0 0 0;
    }

    .table-data-top h2 {
        font-size: 30px;
    }

    .table-tab-outer .nav.flex-column.nav-pills {
        width: 250px;
        min-width: 250px;
        padding: 15px;
        border-radius: 10px;
    }

    .table-tab-outer .tab-content {
        flex: 0 0 calc(100% - 270px);
        max-width: calc(100% - 270px);
        padding: 15px;
        border-radius: 10px;
        margin-left: 20px;
    }

    .table-tab-outer .nav.flex-column.nav-pills .nav-link {
        font-size: 16px;
        border-radius: 10px;
        padding: 12px 15px;
    }
}

@media (max-width: 1199px) {
    .equities-home-sec h1 {
        font-size: 38px
    }

    .equities-home-filter-card {
        align-items: flex-start
    }

    .eh-filter-btn {
        min-width: 165px;
        width: 165px
    }

    .eh-filter-rt {
        flex-wrap: wrap;
        justify-content: flex-end
    }

    .w-200 {
        width: 23%
    }

    .eh-filter-btn .dropdown-menu {
        top: 110px !important;
    }

    .dropdown-sltd {
        width: auto;
    }

    .dropdown-menu.table-data-block {
        top: 84px !important;
        left: 12px !important;
        border-radius: 20px;
        right: 12px !important;
        bottom: auto !important;
        height: calc(100vh - 100px);
        overflow-y: auto;
        position: fixed !important;
    }

    .table-tab-top-btn .btn-custom {
        font-size: 13px;
        gap: 5px;
        padding: 0 20px;
        height: 40px;
        line-height: 38px;
    }
}

@media (max-width: 991px) {
    .table-data-top h2 {
        font-size: 26px;
    }

    .table-tab-outer .nav.flex-column.nav-pills {
        width: 100%;
        min-width: 100%;
        padding: 10px;
        border-radius: 10px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row !important;
    }

    .table-tab-outer .nav.flex-column.nav-pills .nav-link {
        font-size: 14px;
        border-radius: 6px;
        padding: 8px 15px;
    }

    .table-tab-outer .tab-content {
        max-width: 100%;
        margin: 20px 0 0;
    }
}

@media (max-width: 767px) {
    .equities-home-sec h1 {
        font-size: 32px
    }

    .equities-home-share-list {
        background: #fff
    }

    .ehs-list-top {
        display: block
    }

    .ehs-list-top h2 {
        margin: 0 0 10px
    }

    .equities-home-filter-card {
        display: block
    }

    .equities-home-filter-card .btn-sm {
        margin: 0 0 0 10px
    }

    .eh-filter-btn {
        min-width: 100%;
        width: 100%
    }

    .eh-filter-rt {
        display: block
    }

    .w-200 {
        width: 100%;
        margin: 12px 0
    }

    .equities-home-filter-card .eh-filter-btn .btn-sm {
        width: 100%;
        justify-content: center;
        margin: 0
    }

    .equities-home-hd {
        padding: 20px 0 10px
    }

    .eh-filter-btn .dropdown-menu {
        top: 54px !important;
        left: 12px !important;
        right: 12px !important;
        width: auto
    }

    .filter-advance-card {
        padding: 40px 10px 10px;
        max-height: 320px;
        overflow-y: auto;
        box-shadow: 0 10px 10px #0000001a
    }

    body.eh-filter-open::before {
        display: none
    }

    .dropdown-sltd {
        width: 48%
    }

    .filter-advance-card .close-btn {
        position: absolute;
        right: 5px;
        top: 0;
        background: #fff;
        padding: 6px 10px
    }

    .dropdown-sltd .form-control {
        height: 32px;
        line-height: 30px;
        white-space: nowrap;
        text-overflow: ellipsis;
        word-wrap: inherit;
        font-size: 12px;
        padding: 0 22px 0 7px;
        background-size: 10px auto;
        background-position: right 7px center
    }

    .ehs-list-top h2 {
        margin: 0 0 10px;
        font-size: 28px
    }

    .equities-home-sec {
        padding: 0 0 30px
    }

    .dropdown-menu.table-data-block {
        padding: 15px
    }

    .table-data-top h2 {
        font-size: 20px;
        white-space: normal
    }

    .table-tab-top-btn {
        display: block;
        margin: 0 0 25px
    }

    .table-data-top {
        margin-bottom: 10px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        padding-right: 20px
    }

    .close-btn2 {
        font-size: 0;
        gap: 0;
        position: absolute !important;
        right: 10px;
        top: 10px
    }

    .tab-top-btn-rt {
        gap: 0;
        flex-direction: column
    }

    .table-tab-top-btn .btn-custom {
        width: 100%;
        justify-content: center;
        margin: 0 0 10px
    }
}

/* Equities Home End */


/* Fund Profile Start */
.fund-profile-sec {
    background-color: #fff;
}

.fund-fees-card {
    margin: 0 0 50px;
}

.fees-info h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

.fees-info .stock-title {
    width: 60%;
    flex: 0 0 60%;
}

.fees-info .stock-info {
    justify-content: flex-end !important;
    width: 40%;
    flex: 0 0 40%;
}

.fund-profile-text {
    font-size: 12px;
}

.fund-profile-text p {
    opacity: .7;
    font-size: 12px;
}

.fund-profile-text p strong {
    font-weight: 500;
}

@media (max-width: 991px) {
    .fees-info {
        margin-top: 20px;
    }

    .fees-info .stock-card {
        padding: 10px;
    }

    .fund-profile-sec h4, .fees-info h4 {
        font-size: 22px;
    }
}

/* Fund Profile End */


/* Fund Explorer Start */
.fund-explorer-sec {
    background-color: #fff;
    padding: 20px 0;
}

.fund-explorer-sec .container {
    max-width: 1740px;
}

.fe-sec-top {
    display: flex;
    justify-content: space-between;
}

.fe-sec-top h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    line-height: 50px;
}

.fe-sec-top span {
    color: #FF0000;
    font-size: 14px;
}

.fe-sec-top-rt .btn-custom.btn-sm {
    background-color: #10b300;
    height: 44px;
    line-height: 42px;
    border-color: #10b300;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 500;
}

.fe-sec-top-rt .btn-custom.btn-sm:hover {
    background-color: #025ea7;
    border-color: #025ea7;
}

.fe-search-tabs {
    margin-top: 40px;
    position: relative;
}

.fe-search-tabs .nav-tabs {
    border: none;
    margin: 0;
    padding: 0;
}

.fe-search-tabs .nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #253440;
    background: #fff;
    border: none;
    box-shadow: none;
    outline: none;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    line-height: 50px;
    padding: 0 22px;
    border-radius: 7px 7px 0 0
}

.fe-search-tabs .nav-tabs .nav-link.active {
    border: none;
    background: #025ea7;
    color: #fff
}

.fe-search-tabs .nav-tabs .nav-link.active img {
    filter: invert(100) brightness(100)
}

.fe-search-tabs .tab-content {
    border: 1px solid #d9d9d9;
    background: #f8f8f8;
    padding: 25px 25px 0
}

.fe-search-tabs .tab-content label {
    font-weight: 400;
    font-size: 14px;
    display: block
}

.fe-search-tabs .tab-content label.blank-lbl {
    display: block
}

.fe-search-tabs .tab-content label .link {
    color: #253440;
    text-decoration: underline
}

.fe-search-tabs .tab-content label .link:hover {
    text-decoration: none
}

.custom-chk {
    display: flex;
    align-items: center;
    gap: 10px
}

.custom-chk input {
    width: 18px;
    height: 18px
}

.custom-chk label {
    margin: 0 !important
}

.fe-search-tabs .btn-custom.btn-white {
    background: #fff;
    color: #253440;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    border: 1px solid #D9D9D9;
    width: 100%;
    padding: 0;
}

.fe-search-tabs .btn-custom.btn-white.btn-cream {
    background: #FFE8C3;
    border-color: #FFE8C3;
}

.fe-search-tabs .btn-custom.btn-white.btn-red {
    background: #F26060;
    border-color: #F26060;
    color: #fff;
}

.blue-text-info {
    color: #025EA7;
    font-size: 14px;
    text-align: right;
    font-weight: 500;
    margin: 35px 0 0;
}

.blue-text-info.text-left {
    text-align: left;
}

.pad-btm-25 {
    padding-bottom: 25px;
}

.fe-search-tabs .form-control {
    height: 50px;
    line-height: 48px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
}

.fe-search-tabs p {
    font-size: 14px;
}

.col-wd1 {
    flex: 0 0 16.66%;
    width: 16.66%
}

.col-wd2 {
    width: 66.68%;
    flex: 0 0 66.68%
}

.col-wd3 {
    width: 14.285714%;
    flex: 0 0 14.285714%
}

.col-wd4 {
    width: 20%;
    flex: 0 0 20%
}


.fe-table-tabs {
    margin: 30px 0 0;
    position: relative;
}

.fe-table-tabs .nav-tabs {
    border: none;
    margin: 0 0 1px;
    padding: 0;
}

.fe-table-tabs .nav-tabs .nav-item {
    margin: 0 1px 0 0;
}

.fe-table-tabs .nav-tabs .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #253440;
    background: #ebf9fc;
    border: none;
    box-shadow: none;
    outline: none;
    margin: 0;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    border-radius: 0
}

.fe-table-tabs .nav-tabs .nav-link.active {
    border: none;
    background: #025ea7;
    color: #fff
}

.tbl-grp-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tbl-grp-btn img {
    width: 24px;
    height: 24px;
}

.custom-table.tbl-small th.last-head {
    max-width: 200px;
    min-width: 200px;
    width: 200px;
}

.fe-text-block {
    margin: 40px 0 0;
}

.fe-text-block, .fe-text-block p {
    font-size: 12px;
}

.fe-text-block p {
    opacity: .7;
}

@media (max-width: 1440px) {
    .fe-sec-top h1 {
        font-size: 44px;
        line-height: 44px
    }

    .fe-search-tabs .nav-tabs .nav-link {
        font-size: 14px;
        gap: 7px;
        height: 42px;
        line-height: 42px;
        padding: 0 15px
    }

    .fe-search-tabs .tab-content {
        padding: 15px 15px 0
    }

    .fe-search-tabs .form-group {
        margin-bottom: 15px
    }

    .fe-search-tabs .tab-content label {
        font-size: 13px;
        margin: 0 0 5px
    }

    .fe-search-tabs .tab-content .row {
        margin-left: -5px;
        margin-right: -5px
    }

    .fe-search-tabs .tab-content .row > * {
        padding-right: 5px;
        padding-left: 5px
    }

    .fe-search-tabs .btn-custom.btn-white, .fe-search-tabs .btn-custom {
        font-size: 12px;
        gap: 5px;
        height: 40px;
        line-height: 38px;
        font-weight: 500
    }

    .blue-text-info {
        font-size: 13px;
        margin: 20px 0 0
    }

    .fe-search-tabs p {
        font-size: 13px
    }

    .fe-search-tabs .form-control {
        height: 40px;
        line-height: 38px;
        font-size: 13px
    }

    .fe-table-tabs .nav-tabs .nav-link {
        font-size: 14px;
        height: 44px;
        line-height: 44px;
        padding: 0 20px
    }

    .pad-btm-25 {
        padding-bottom: 15px
    }
}

@media (max-width: 1199px) {
    .fe-sec-top h1 {
        font-size: 38px;
        line-height: 40px;
    }

    .fe-search-tabs .nav-tabs .nav-link i {
        display: none;
    }

    .col-wd1, .col-wd2, .col-wd3, .col-wd4 {
        flex: 0 0 33.33%;
        width: 33.33%;
    }

    .tx1 {
        margin: 0 0 15px;
    }
}

@media (max-width: 991px) {
    .fe-search-tabs .nav-tabs {
        border: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
    }

    .fe-search-tabs .nav-tabs .nav-link {
        font-size: 13px;
        gap: 0;
        height: 38px;
        line-height: 38px;
        padding: 0 10px;
    }

    .fe-table-tabs .nav-tabs .nav-link {
        font-size: 13px;
        height: 38px;
        line-height: 38px;
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .fe-sec-top h1 {
        font-size: 32px;
        line-height: 34px
    }

    .fe-sec-top {
        display: block
    }

    .fe-sec-top span {
        font-size: 13px
    }

    .fe-sec-top-rt {
        margin: 12px 0 0
    }

    .fund-explorer-sec {
        padding: 30px 0
    }

    .fe-search-tabs, .fe-table-tabs, .fe-text-block {
        margin-top: 30px
    }

    .col-wd1, .col-wd2, .col-wd3, .col-wd4 {
        flex: 0 0 100%;
        width: 100%
    }

    .fe-search-tabs .tab-content label {
        margin: 0 0 2px
    }

    .fe-search-tabs .tab-content label.blank-lbl {
        display: none
    }

    .fe-search-tabs .btn-custom.btn-white, .fe-search-tabs .btn-custom {
        font-size: 13px
    }

    .fe-sec-top-rt .btn-custom.btn-sm {
        height: 40px;
        line-height: 38px;
        font-size: 14px
    }

    .blue-text-info {
        margin: 0
    }

    .row.pad-btm-25.csm-row9 .col {
        width: 100%;
        flex: 0 0 100%
    }

    .row.pad-btm-25.csm-row9 .col .btn-custom.btn-white.btn-red.w-100 {
        margin: 10px 0 0
    }

    .row.pad-btm-25.csm-row9 .col .btn-custom.btn-white.clk-btn {
        line-height: normal;
        padding: 10px 0;
        height: auto;
        min-height: 40px
    }

    .fe-search-tabs .tab-content label .link {
        margin: 0 0 10px;
        display: inline-block
    }

    .fe-table-tabs .nav-tabs {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto
    }
}

/* Fund Explorer End */


/***Property Explorer Property Detail Start***/
.property-explorer-dashboard {
    padding: 40px 0;
}

.property-explorer-breadcrumb {
    background-color: #fff;
    padding: 15px 0;
}

.search-explorer {
    position: relative;
    width: 420px;
}

.search-explorer-btn {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    width: 24px;
}

.search-explorer .form-control {
    height: 44px;
    line-height: 44px;
    border-radius: 40px;
    padding-left: 45px;
}

.property-explorer-detail-inner {
    background-color: #FAFBFC;
    padding: 30px 0;
}

.property-explorer-detail-inner .dpd-sec1 {
    margin: 0;
    padding-bottom: 20px;
}

.dpd-sec1-lt h1 {
    margin: 0;
    font-size: 32px;
}

.dpd-sec1-lt p {
    font-size: 18px;
}

.dpd-sec1-rt {
    gap: 20px;
}

.dpd-sec1-rt ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dpd-sec1-rt ul li {
    font-size: 16px;
    gap: 6px;
    display: flex;
    align-items: center;
}

.dpd-sec1-rt ul li i {
    display: block;
}

.unit-tag {
    display: block;
    background-color: #0FB300;
    color: #fff;
    font-size: 14px;
    padding: 4px 20px;
    border-radius: 5px;
}

.card-specifics {
    box-shadow: 0px 0px 30px 0px #D7D7D74D;
    border-radius: 5px;
    padding: 12px;
    height: calc(100% - 15px);
    margin-bottom: 15px;
}

.low-confidence-head {
    margin-bottom: 20px;
}

.low-confidence-head h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.confidence-tag {
    display: block;
    border-radius: 5px;
    padding: 5px 12px;
    color: #fff;
    background-color: #253440;
    font-size: 12px;
    font-weight: 500;
    flex: 0 0 auto;
}

.low-confidence-tag {
    background-color: #900;
}

.medium-confidence-tag {
    background-color: #f90;
}

.high-confidence-tag {
    background-color: #090;
}

.estimate-range {
    font-weight: 500;
    font-size: 16px;
}

.estimate-range.no-estimate {
    font-weight: 500;
    font-size: 14px;
}

.estimate-range small {
    font-weight: 400;
    font-size: 13px;
    display: block;
}

.estimate-price {
    background-color: #FFE8C3;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    padding: 5px 20px;
    display: block;
}

.estimate-link {
    margin-top: 20px;
}

.estimate-link a {
    font-size: 10px;
    font-weight: 400;
    text-decoration: underline;
}

.row-spacing .row {
    margin: 0 -8px;
}

.row-spacing .row [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

.rental-list li {
    padding-bottom: 10px;
}

.rental-list li:last-child {
    padding-bottom: 0;
}

.rental-list li span {
    font-size: 14px;
    display: block;
    width: 50%;
    flex: 0 0 50%;
}

.rental-list li strong {
    font-size: 14px;
    display: block;
    font-weight: 500;
    width: 50%;
    flex: 0 0 50%;
}

.map-specifics {
    padding: 0;
    overflow: hidden;
}

.map-specifics img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nearby-distressed-properties-info .container {
    max-width: 1260px;
}

.distressed-accordion .card {
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px #D7D7D74D;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    padding: 25px;
    margin-bottom: 45px;
}

.distressed-accordion .card-header {
    padding: 0;
    border: none;
    background-color: transparent;
}

.distressed-accordion .card-header .btn {
    padding: 0;
    outline: none;
    border: none;
    font-size: 24px;
    font-weight: 500;
    color: #253440;
    display: block;
    text-align: left;
    /*background: url(../images/ac-arrow.png) no-repeat center right;*/
    padding-right: 30px;
}

.distressed-accordion .card-header .btn[aria-expanded="false"] {
    /*background: url(../images/ac-arrow-top.png) no-repeat center right;*/
}

.distressed-accordion .card-body {
    padding: 0;
    padding-top: 25px;
}

.property-features ul {
    width: 50%;
    flex: 0 0 50%;
}

.property-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.property-features ul li:last-child {
    margin-bottom: 0;
}

.property-features ul li span {
    display: block;
}

.property-features ul li span strong {
    font-weight: 500;
}

.property-features ul li i {
    width: 30px;
    text-align: center;
}

.property-features ul li i img {
    display: block;
    margin: 0 auto;
}

.property-timeline {
    background-color: #fff;
    box-shadow: 0px 0px 30px 0px #D7D7D74D;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    padding: 25px;
    margin-bottom: 45px;
}

.property-timeline h3 {
    font-size: 24px;
    font-weight: 500;
    color: #253440;
    margin-bottom: 30px;
}

.property-timeline ul {
    padding-left: 30px;
    padding-top: 30px;
    position: relative;
}

.property-timeline ul::before {
    position: absolute;
    content: "";
    width: 3px;
    background-color: #D9D9D9;
    left: 110px;
    top: 0;
    bottom: 35px;
    border-radius: 10px;
}

.property-timeline ul li {
    margin-bottom: 30px;
}

.property-timeline ul li:last-child {
    margin-bottom: 0;
}

.timeline-date {
    width: 56px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    border-radius: 5px;
    background-color: #025EA7;
    text-align: center;
    margin-right: 58px;
    line-height: 20px;
    margin-top: 3px;
}

.property-timeline-card {
    align-items: self-start;
}

.timeline-card-info .unit-tag {
    padding: 0;
    line-height: 24px;
    width: 60px;
    text-align: center;
}

.timeline-card-info-top {
    gap: 10px;
    margin-bottom: 10px;
}

.timeline-card-info-top .unit-tag-price {
    font-size: 18px;
    font-weight: 500;
}

.timeline-card-info-inner {
    margin-bottom: 20px;
    position: relative;
}

.timeline-card-info-inner:before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: solid 1px #D9D9D9;
    left: -42px;
    top: 4px;
    border-radius: 50%;
}

.timeline-card-info-inner:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #025EA7;
    left: -36px;
    top: 10px;
    border-radius: 50%;
}

.timeline-card-info-inner:last-child {
    margin-bottom: 0;
}

.timeline-card-info-inner p {
    font-size: 12px;
    opacity: 0.7;
}

.timeline-card-tag {
    display: inline-block;
    line-height: 24px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border-radius: 5px;
    /*margin-bottom: 10px;*/
}

.green-color-card {
    background-color: #EAFDF0;
}

.pink-color-card {
    background-color: #FFF1F3;
}

.blue-color-card {
    background-color: #EAFAFF;
}

.grey-color-card {
    background-color: #E1E3EA;
}

.nearby-distressed-properties-info .great-deal-card-info {
    max-width: 580px;
    padding-left: 50px;
}

.nearby-distressed-properties-info .great-deal-card-info p {
    font-size: 16px;
}

.nearby-distressed-properties-info .great-deal-card-image {
    height: auto;
}

.relevant-distressed-sd .relevant-dp-slider .items {
    padding: 20px;
}

.relevant-distressed-sd .properties-card {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-radius: 10px 10px 0 0;
}

.relevant-distressed-sd .heading {
    margin-bottom: 10px;
}

.relevant-distressed-sd .relevant-text2 {
    font-size: 22px;
    font-weight: 500;
}

.comparable-properties-map {
    margin-bottom: 30px;
}

/*.comparable-properties-map img {*/
/*    width: 100%;*/
/*    display: block;*/
/*}*/

.comparable-disclaimers p {
    font-size: 12px;
    opacity: 0.7;
}

.properties-tabs .container {
    max-width: 1280px;
}

.properties-tabs .nav.nav-tabs {
    border: none;
    padding: 10px 0;
    justify-content: center;
    margin: 20px 0;
}

.properties-tabs .nav-item {
    width: 25%;
    padding: 0 10px;
}

.properties-tabs .nav-link {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    background-color: #fff;
    font-weight: 600;
    font-size: 16px;
    color: #253440;
    padding: 10px;
    text-align: center;
}

.properties-tabs .nav-link:hover {
    background-color: #025EA7;
    color: #fff;
    border-color: #025EA7;
}

.nearby-schools-card {
    box-shadow: 0px 0px 30px 0px #D7D7D74D;
    border: none;
    border-radius: 5px;
    overflow: hidden;
    padding: 25px;
    margin-top: 45px;
    margin-bottom: 45px;
    background-color: #fff;
}

.nearby-schools-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: #253440;
    margin-bottom: 30px;
}

.nearby-schools-card h3 small {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.nearby-schools-card .distressed-accordion .card {
    margin-bottom: 0;
    border-bottom: solid 1px #D9D9D9;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.nearby-schools-card .distressed-accordion .card-header .btn {
    display: flex;
    padding: 14px 15px;
    /*background: url(../images/ac-arrow-top.png) no-repeat center right 15px;*/
    background-size: 18px;
    border-radius: 0;
}

.nearby-schools-card .distressed-accordion .card-header .btn[aria-expanded="true"] {
    /*background: #ebf9fc url(../images/ac-arrow.png) no-repeat center right 15px;*/
    background-size: 18px;
}

.nearby-schools-card .distressed-accordion .card-body {
    padding: 0 15px 10px;
    background: #ebf9fc;
}

.nearby-schools-card .distressed-accordion .card-header .btn span {
    font-size: 14px;
}

.nearby-schools-head {
    display: flex;
    padding: 0 15px;
}

.nearby-schools-head span {
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 0;
    white-space: nowrap;
}

.span-col-bg-blue {
    background-color: #025EA7;
    color: #fff;
}

.span-col {
    width: 30%;
    flex: 0 0 30%;
}

.span-col-one {
    width: 14%;
    flex: 0 0 14%;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.nearby-schools-card .distressed-accordion .card-body .btn-custom {
    height: 32px;
    line-height: 30px;
    font-size: 14px;
}

@media (max-width: 1440px) {
    .dpd-sec1-lt h1 {
        font-size: 28px;
    }

    .low-confidence-head h3 {
        font-size: 18px;
    }

    .confidence-tag {
        padding: 4px 8px;
        font-size: 11px;
    }

    .estimate-range {
        font-size: 15px;
    }

    .estimate-range small {
        font-size: 12px;
    }

    .estimate-price {
        font-size: 16px;
        padding: 5px 10px;
    }

    .mater-card {
        padding: 0 10px;
    }

    .rental-list li {
        padding-bottom: 5px;
        gap: 6px;
    }

    .rental-list li span {
        font-size: 13px;
    }

    .rental-list li strong {
        font-size: 13px;
    }

    .properties-tabs .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .search-explorer {
        width: 280px;
    }

    .distressed-accordion .card {
        padding: 20px;
    }

    .property-timeline {
        padding: 20px;
    }

    .properties-tabs .nav-item {
        width: auto;
    }

    .properties-tabs .nav.nav-tabs {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .nearby-distressed-properties-info .great-deal-card-image {
        height: 220px;
    }

    .nearby-distressed-properties-info .great-deal-card-info {
        padding-left: 30px;
        max-width: 500px;
    }

    .properties-tabs .nav.nav-tabs {
        margin: 15px 0;
    }

    .properties-tabs .nav-item {
        width: auto;
        flex: auto;
        padding: 0 3px;
    }

    .nearby-schools-card .distressed-accordion {
        overflow: auto;
    }

    .nearby-schools-head {
        width: 850px;
    }

    .nearby-schools-card .distressed-accordion .card {
        width: 850px;
    }

    .nearby-schools-card .distressed-accordion .card-header .btn {
        /*background: url(../images/ac-arrow-top.png) no-repeat center left 15px;*/
        background-size: 15px;
    }

    .nearby-schools-card .distressed-accordion .card-header .btn[aria-expanded="true"] {
        background: #ebf9fc url(../images/ac-arrow.png) no-repeat center left 15px;
        background-size: 15px;
    }

    .span-col {
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .dpd-sec1-lt {
        padding-bottom: 16px;
    }

    .dpd-sec1-lt h1 {
        font-size: 24px;
    }

    .dpd-sec1-lt p {
        font-size: 15px;
    }

    .distressed-accordion .card {
        padding: 16px;
        margin-bottom: 16px;
    }

    .distressed-accordion .card-header .btn {
        font-size: 20px;
        background-size: 16px !important;
    }

    .property-features ul li i {
        width: 20px;
        flex: 0 0 20px;
    }

    .property-features ul li {
        gap: 6px;
        font-size: 14px;
    }

    .property-timeline ul {
        padding-left: 0;
        padding-top: 0;
    }

    .timeline-date {
        flex: 0 0 52px;
        margin-right: 38px;
    }

    .property-timeline ul::before {
        left: 66px;
    }

    .timeline-card-info-inner:before {
        left: -31px;
    }

    .timeline-card-info-inner:after {
        left: -25px;
    }

    .nearby-distressed-properties-info .great-deal-card-image {
        height: 290px;
    }

    .nearby-distressed-properties-info .great-deal-card-info {
        padding-left: 16px;
    }

    .search-explorer {
        width: 100%;
    }

    .nearby-schools-card {
        padding: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .nearby-schools-card h3, .property-timeline h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .nearby-distressed-properties-info .great-deal-card-info p {
        font-size: 14px;
    }

    .property-explorer-detail-inner {
        padding: 20px 0;
    }

    .property-features.d-flex {
        flex-wrap: wrap;
    }

    .property-features ul {
        width: 100%;
        flex: 0 0 100%;
        padding: 0 0 20px;
    }

    .property-features ul:last-child {
        padding: 0;
    }

    .distressed-accordion .card-body {
        padding-top: 15px;
    }

    .properties-tabs .nav.nav-tabs {
        display: block;
    }

    .properties-tabs .nav-item {
        padding: 7px 0;
    }

    .relevant-distressed-sd .relevant-dp-slider .items {
        padding: 10px;
    }

    .relevant-distressed-sd .properties-card {
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    }

    .properties-tabs .nav-link {
        font-size: 16px;
    }
}

/***Property Explorer Property Detail End***/


/***Street Search Page Start***/
.street-search-detail {
    background-color: #FAFBFC;
    padding: 26px 0;
}

.status-heading {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

.property-status {
    margin-bottom: 30px;
}

.property-radio-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.property-radio-group input[type="radio"] {
    display: none;
}

.property-radio-group label {
    padding: 7px 18px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    background-color: #fff;
    color: #71777c;
    transition: all 0.3s ease;
    font-weight: 400;
    margin: 0;
}

.property-radio-group input[type="radio"]:checked + label {
    background-color: #025EA7;
    color: #fff;
    border-color: #025EA7;
}

.range-card {
    margin-bottom: 30px;
}

.range-card .form-group {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.range-card .form-group label {
    font-size: 14px;
    font-weight: 400;
    flex: 0 0 auto;
    margin: 0;
}

.range-card .form-control {
    border-radius: 8px;
    padding: 0 16px;
    height: 36px;
    line-height: 36px;
    width: 70%;
    flex: 0 0 70%;
}

.room-select .form-group {
    margin-bottom: 0;
}

.room-select .form-group label {
    font-size: 14px;
    font-weight: 500;
    flex: 0 0 auto;
    margin: 0 0 10px;
}

.room-select .form-control {
    border-radius: 8px;
    padding: 0 16px;
    height: 36px;
    line-height: 36px;
}

.street-search-property-info .prc-lt {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
}

.street-search-detail-map {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-left: 50px;
    height: 100%;
}

.street-search-detail-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.street-search-detail-map .btn-custom {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.street-search-detail-map .btn-custom img {
    width: 20px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.street-search-property-info {
    /*border-radius: 16px;*/
    box-shadow: 0 13px 100px 0 #C7C7C740;
    /*margin-right: -40px;*/
    background-color: #fff;
    padding: 14px;
}

.street-search-detail-info {
    padding: 45px 0;
}

.street-search-detail-head {
    padding-bottom: 26px;
}

.street-search-detail-head h2 {
    margin: 0;
}

.street-search-detail-head .btn-custom {
    font-size: 14px;
    font-weight: 500;
    min-width: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.street-search-detail-head .btn-custom img {
    display: block;
}

.street-search-detail-head .btn-custom:hover img {
    filter: brightness(0) invert(1);
}

.street-search-page .table-responsive {
    box-shadow: none;
}

.location-td {
    gap: 16px;
}

.location-td span {
    gap: 5px;
}

.entries-card {
    padding-bottom: 40px;
}

.entries-card span {
    font-size: 14px;
}

.entries-card span strong {
    font-weight: 600;
}

.comparable-disclaimers {
    margin-top: 30px;
}

@media (max-width: 1440px) {
    .street-search-property-info {
        margin-right: 0;
        padding: 16px;
    }

    .property-radio-group label {
        padding: 7px 10px;
    }

    .street-search-detail-map {
        margin-left: 0;
    }

    .range-card .form-group label {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .street-search-detail-head h2 {
        font-size: 30px;
    }

    .street-search-detail-head .btn-custom {
        min-width: 200px;
    }

    .street-search-property-info {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .street-search-detail-info {
        padding: 30px 0;
    }

    .street-search-detail-head h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .entries-card {
        padding-bottom: 30px;
    }

    .entries-card span {
        padding-bottom: 10px;
        display: block;
    }

    .range-card .form-group {
        display: block;
    }

    .range-card .form-group label {
        font-size: 14px;
    }

    .range-card .form-control {
        width: 100%;
    }
}

/***Street Search Page End***/

.underline:hover {
    text-decoration: underline !important;
}

.map-container {
    position: relative;
    width: 70%;
    aspect-ratio: 16 / 9;
}

.responsive-map {
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

/* Optional: Responsive design */
@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}

.chart-title {
    background-color: #025EA7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: none;
    padding: 15px;
}

.text-primary {
    color: #025EA7 !important;
}

.bg-primary {
    background-color: #025EA7 !important;
}

.btn-primary {
    background-color: #025EA7 !important;
}

.btn-outline-primary {
    color: #025EA7 !important;
    border-color: #025EA7 !important;
}

.btn-outline-primary:hover {
    background-color: #025EA7 !important;
    color: #ffffff !important;
    border-color: #025EA7 !important;
}

.disclaimer-text {
    font-size: 12px;
}

@media (min-width: 992px) {
    .sidebar-sticky {
        position: sticky;
        top: 100px;
        z-index: 50;
    }
}

.form-check-input {
    border: 1.5px solid #5e5e5e !important;
}

.news-publication .col-md-6 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highest-investment-grade {
    background-color: #4169E1 !important;
}

.high-investment-grade {
    background-color: #52a445 !important;
}

.investment-grade {
    background-color: #f58022 !important;
}

.low-investment-grade {
    background-color: #f58022 !important;
}

.non-investment-grade {
    background-color: #ee1f25 !important;
}

.avoid-investment-grade {
    background-color: #000 !important;
}
