/* hero  */

.home-hero {
    min-height: 68vh;
	width: 100%;
    background-image: url('https://nicholsonandwoolf.com/wp-content/uploads/2026/02/53632627.webp');
    position: relative;
    background-position: 100% 30%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(9 32 61 / 0.45);
    pointer-events: none;
}


@supports (height: 1dvh) {
    .home-hero {
        min-height: 68dvh;
    }
}

.home-hero .hero-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    z-index: 1;
}

.home-hero .hero-wrapper .hero-content {
    display: flex;
    text-align: center;
    color: #fff;
    margin-bottom: 48px;
    flex-direction: column;
}

.home-hero .hero-wrapper .hero-content h2 {
    font-size: 72px;
    transition: all .3s ease-in-out;
    margin-top: 0;
	color: #fff;
    margin-bottom: 24px;
}

.home-hero .hero-wrapper .hero-content h1 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: bold;
	color: #fff;
}

@media (max-width: 767px) {
    .home-hero .hero-wrapper .hero-content h2 {
        font-size: 54px;
    }

    .home-hero .hero-wrapper {
        padding: 16px !important;
    }
}

.home-hero .hero-wrapper .hero-content h2 .hero-stop {
    font-weight: bold;
	color: #fff;
}


.home-hero .hero-wrapper .hero-content h2 .hero-living {
    position: relative;
    font-style: italic;
    font-weight: 500;
    text-wrap: nowrap;
	color: #fff;
}

.home-hero .hero-wrapper .hero-content h2 .hero-living::before {
    border-radius: 50% 50% 0 0;
    border-top: 3px solid #fff;
    bottom: -18px;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}


/* search form for hero  */

/* show when active */
.search-price-field.is-open .price-popup {
    display: block !important;
}

.search-bedroom-field.is-open .bedrooms-popup {
    display: block !important;
}


.home-hero .hero-wrapper .hero-search-form .inner-wrapper>* {
    min-width: 0;
}

.text-placeholder {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field.is-open {
    flex-basis: 50% !important;
    box-shadow: 0 2px 9px #0003;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field.is-open {
    flex-basis: 50% !important;
    box-shadow: 0 2px 9px #0003;
    background-color: #fff;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field.is-open {
    flex-basis: 50% !important;
    box-shadow: 0 2px 9px #0003;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
}

.search-price-field.is-open .price-container {
    border-left: 2px solid transparent !important;
}

.search-bedroom-field.is-open .bedrooms-container {
    border-left: 2px solid transparent !important;
}

.home-hero .hero-wrapper .hero-search-form {
    width: 100%;
    max-width: 736px;
    margin: 0 auto;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper {
    width: 100%;
    padding: 16px 0;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form {
    width: 100%;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 9px #0003;
    display: flex;
    /* overflow: hidden;  */
    padding: 0;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper {
    border-radius: 4px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    position: relative;
    flex-wrap: nowrap;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field {
    flex-basis: 40%;
    min-height: 72px;
    background-color: #fff;
    border: thin solid transparent;
    border-radius: 16px;
    display: flex;
    flex-grow: 1;
    line-height: 1.5rem;
    position: relative;
    text-align: left;
    transition: box-shadow .2s ease, flex-basis .2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field:hover {
    background-color: #fff !important;
    box-shadow: 0 2px 9px #0003;
    flex-basis: 50% !important;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field {
    background-color: transparent;
    min-height: 72px;
    border: thin solid transparent;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-basis: 25%;
    flex-grow: 1;
    cursor: pointer;
    line-height: 1.5rem;
    position: relative;
    text-align: left;
    transition: box-shadow .2s ease, flex-basis .2s ease;
    -webkit-user-select: none;
    user-select: none;
    flex-basis: 25%;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field:hover {
    background-color: #fff !important;
    box-shadow: 0 2px 9px #0003;
    flex-basis: 50% !important;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field:hover .price-container {
    border-left: 2px solid transparent;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field {
    display: flex;
    flex-basis: calc(25% + 65px);
    padding-right: 65px;
    min-height: 72px;
    background-color: #fff;
    cursor: pointer;
    border: thin solid transparent;
    border-radius: 16px;
    display: flex;
    flex-grow: 1;
    line-height: 1.5rem;
    position: relative;
    text-align: left;
    transition: box-shadow .2s ease, flex-basis .2s ease;
    -webkit-user-select: none;
    user-select: none;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field:hover {
    background-color: #fff !important;
    box-shadow: 0 2px 9px #0003;
    flex-basis: 50% !important;
    /* border-radius: 16px 16px 0 0; */
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field:hover .bedrooms-container {
    border-left: 2px solid transparent;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-submit-btn {
    bottom: auto;
    display: block;
    left: auto;
    margin: .5rem;
    position: absolute;
    right: 0rem;
    width: auto;
    z-index: 2;
    background-color: #004155;
    border: 0;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    padding: 16px;
    font-weight: 700;
    user-select: none;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-submit-btn::before {
    background: linear-gradient(90deg, #fff0, #fff 75%, #fff);
    border-radius: 0;
    border-radius: 1rem;
    content: "";
    display: block;
    height: 100%;
    left: -1.5rem;
    position: absolute;
    right: 22px;
    top: 0;
    width: 1.5rem;
    z-index: 2;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-submit-btn .search-button-contents {
    display: flex;
    color: #fff;
    gap: 4px;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.5rem;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-submit-btn .search-button-contents .submit-icon{
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M25.81201,40.34863h2c0-7.02539,5.71582-12.74121,12.74121-12.74121v-2c-8.12842,0-14.74121,6.61279-14.74121,14.74121Z" fill="%23fff" stroke="%23fff" stroke-width="1.2" stroke-linejoin="round" stroke-linecap="round" paint-order="stroke fill"/><path d="M72.52002,64.83447c-1.86053-1.85968-4.71271-2.11548-6.86157-.79468l-7.77631-7.77631c8.48102-9.23041,8.27472-23.62616-.6712-32.57257-9.18604-9.18604-24.13135-9.18408-33.31543,0-9.18457,9.18506-9.18457,24.13037,0,33.31543,4.59229,4.59229,10.625,6.88867,16.65771,6.88867,5.71875,0,11.42255-2.09003,15.91486-6.21747l7.71014,7.71014c-1.68634,2.18591-1.55157,5.33325.45166,7.33691l8.85059,8.8501c1.05371,1.05371,2.45459,1.63428,3.94482,1.63428s2.89111-.58008,3.94482-1.63428c1.0542-1.05371,1.63428-2.45459,1.63428-3.94482s-.58057-2.89111-1.63428-3.94482l-8.8501-8.85059ZM25.30957,55.59229c-8.40479-8.40527-8.40479-22.08203,0-30.4873,4.20264-4.20264,9.72314-6.30371,15.24365-6.30371s11.04102,2.10107,15.24365,6.30371c8.40332,8.40576,8.4043,22.08252,0,30.4873-8.40576,8.40527-22.08252,8.40527-30.4873,0ZM79.95605,80.16064c-1.35254,1.35254-3.70898,1.35254-5.06152,0l-8.85059-8.8501c-1.39502-1.396-1.39551-3.6665,0-5.06201.69775-.69775,1.61426-1.04639,2.53125-1.04639.9165,0,1.83301.34912,2.53076,1.04639l8.8501,8.85059c.67627.67627,1.04834,1.57471,1.04834,2.53076s-.37207,1.85449-1.04834,2.53076Z" fill="%23fff" stroke="%23fff" stroke-width="1.2" stroke-linejoin="round" stroke-linecap="round" paint-order="stroke fill"/></svg>');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 36px 36px;
  height: 24px;
  min-width: 24px;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-submit-btn .search-button-contents .submit-label {
    font-size: 0;
    opacity: 0;
    transition: .3s font-size ease-in-out, .3s opacity ease-in-out;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-submit-btn:hover .search-button-contents .submit-label {
    font-size: 18px;
    opacity: 1;
}


.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-container {
    width: 100%;
    border-left: 2px solid rgba(59, 25, 83, .09);
    cursor: pointer;
    margin: .75rem;
    padding-left: 1rem;
    text-align: start;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-container .bed-label {
    display: block;
    white-space: nowrap;
    color: #004155;
    font-size: 14px;
    font-weight: 700;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-container .text-placeholder {
    color: #000;
    opacity: .6;
}


.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup {
    left: -1px;
    position: absolute;
    top: 100%;
    width: calc(100% + 2px);
    border-radius: 0 0 1rem 1rem;
    border-top: 1px solid rgba(59, 25, 83, .22);
    background: #fff;
    box-shadow: 0 2px 9px #0003;
    box-sizing: border-box;
    margin-bottom: 4rem;
    display: none;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner {
    padding: 16px;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-head {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
    gap: 4px;
    align-items: center;
    color: #09203d;
    font-weight: 700;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-head svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    max-width: 100%;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-head button {
    background-color: transparent;
    border: unset;
    padding: unset;
    margin: unset;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-head #next-bedrooms-btn svg {
    transform: rotate(180deg);
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body {
    width: 100%;
    margin-top: 32px;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body .radio-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body .radio-wrapper .radio-input-container {
    margin-bottom: .5rem;
    margin-right: .5rem;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body .radio-wrapper .radio-input-container .screen-reader-only {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body .radio-wrapper .radio-input-container input[type="radio"]:checked+label {
    border: 2px solid #bf9903;
    color: #bf9903;
    padding: calc(.75rem - 2px) calc(1.5rem - 2px);
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body .radio-wrapper .radio-input-container label {
    background-color: #d2c5c845;
    border-radius: 1rem;
    color: #09203d;
    cursor: pointer;
    display: block;
    font-weight: 700;
    min-width: 2ch;
    padding: .75rem 1.5rem;
    text-align: center;
}


.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field .bedrooms-popup .bedroom-popup-inner .inner-body .radio-wrapper .radio-input-container label:hover {
    background-color: #09203d;
	color: #bf9903;
}



.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-container {
    cursor: pointer;
    margin: .75rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(59, 25, 83, .09);
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-container .price-label {
    color: #004155;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 700;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-container .text-placeholder {
    color: #000;
    opacity: .6;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup {
    position: absolute;
    top: 100%;
    width: calc(100% + 2px);
    color: #09203d;
    left: -1px;
    border-radius: 0 0 1rem 1rem;
    border-top: 1px solid rgba(59, 25, 83, .22);
    text-align: center;
    background-color: #fff;
    display: none;
    box-shadow: 0 2px 9px #0003;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-popup-inner {
    padding: 16px;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-head {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #09203d;
    gap: 4px;
    justify-content: space-between;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-head button {
    background-color: transparent;
    border: unset;
    padding: unset;
    margin: unset;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-head button svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    max-width: 100%;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-head #next-price-btn svg {
    transform: rotate(180deg);
}


.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-body {
    width: 100%;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-body .price-input-wrapper {
    flex-basis: 100%;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-body .price-input-wrapper .price-input {
    position: relative;
    color: #09203d;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-body .price-input-wrapper .price-input span {
    font-weight: 700;
    left: 14px;
    position: absolute;
    top: 13px;
    z-index: 1;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field .price-popup .price-body .price-input-wrapper .price-input input {
    border: 1px solid #d2c5c8;
    border-radius: .25rem;
    line-height: normal;
    min-height: 3rem;
    padding-left: calc(1rem + 12px);
    padding-right: calc(1rem + 12px);
    width: 100%;
    position: relative;
    font-size: 14px;
}



.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field .searchable-wrapper {
    width: 100%;
    position: relative;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field .searchable-wrapper .location-container {
    width: 100%;
    cursor: pointer;
    margin: .75rem;
    padding-left: 1rem;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field .searchable-wrapper .location-container .location-label {
    color: #004155;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 700;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field .searchable-wrapper .location-container .text-placeholder {
    color: #000;
    opacity: .6;
}

.home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-location-field .searchable-wrapper .location-container .text-placeholder input {
    width: 80%;
    font-size: 16px;
    border: 0;
	padding: 0;
	border-radius: 0;
}

.search-location-field:focus-within {
/*     box-shadow: 0 0 0 2px rgba(198, 26, 65, .35); */
    border-radius: 16px;
}

.home-hero .location-input:focus,
.home-hero .location-input:focus-visible {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-price-field {
        display: none;
    }

    .home-hero .hero-wrapper .hero-search-form .hero-form-wrapper #search-form .inner-wrapper .search-bedroom-field {
        display: none;
    }
}

/* end of search form for hero  */

/* end of hero  */


/* past search  */

.from-last-visit {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 64px 8px;
}

@media (max-width: 767px) {
    .from-last-visit {
        padding: 32px 8px !important;
    }

    .from-last-visit .last-visit-wrapper .last-visit-flex-wrap .search-card {
        flex-basis: calc(100%) !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .from-last-visit .last-visit-wrapper .last-visit-flex-wrap .search-card {
        flex-basis: calc(50% - 32px) !important;
    }
}

.from-last-visit .last-visit-wrapper {
    max-width: 1200px;
    display: flex;
    width: 100%;
    justify-content: center;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap .search-card {
    flex-basis: calc(33.333% - 32px);
    border-radius: .5rem;
    box-shadow: 0 2px 9px #0003;
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: space-between;
    min-height: 450px;
    overflow: hidden;
    position: relative;
    transition: transform .2s;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-visit-card {
    background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.15)),
    url("https://nicholsonandwoolf.com/wp-content/uploads/2026/02/54176229-scaled.webp");
    background-size: cover;
    background-position: 10% 50%;
    background-repeat: no-repeat;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-visit-card .last-visit-card-details {
    color: #fff;
    flex: 1 1 auto;
    padding: 32px 16px 16px 16px;
    z-index: 1;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-visit-card .last-visit-card-details .last-visit-title {
    font-size: 76px;
    font-weight: bold;
}


.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

#search-again-card .search-again-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

#search-again-card .search-again-stats {
    position: relative;
    z-index: 2;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats {
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    box-shadow: 0 2px 9px #0003;
    color: #000;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats-title {
    width: auto;
    padding: 8px 16px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats-title span {
    font-size: 28px;
    font-weight: bold;

}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats {
    color: #000;
    width: auto;
    padding: 8px 16px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats .plot-key-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats .plot-key-stats .key-stat {
    margin-bottom: 16px;
    flex: 1 0 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card
.search-again-stats .stats .plot-key-stats .key-stat svg{
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 100%;
  transform: scale(1.3);
  transform-origin: center;
}

/* thicker icon (default) */
.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card
.search-again-stats .stats .plot-key-stats .key-stat svg path{
  fill: #000 !important;          /* change default colour if needed */
  stroke: #000 !important;
  stroke-width: 1.2px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats .plot-key-stats .key-stat.bedroom {
    flex-basis: 10%;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats .plot-key-stats .key-stat.price {}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats .plot-key-stats .key-stat.price span {
    white-space: nowrap;
    text-wrap: nowrap;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card .search-again-stats .stats .plot-key-stats .key-stat.location {}



.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card,
.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card{
  transition: box-shadow 220ms ease-in-out;
  will-change: box-shadow;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #search-again-card:hover,
.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card:hover{
  box-shadow:
    0 14px 35px rgba(0,0,0,.25),
    0 6px 14px rgba(0,0,0,.18);
  
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .image-wrapper {
    height: 240px;
    width: 100%;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .image-wrapper img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents {
    width: 100%;
    background-color: #fff;
    padding: 16px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-title {
    width: 100%;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-title span {
    font-weight: bold;
    font-size: 22px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-area {
    width: 100%;
    margin-top: 8px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-area span {
    font-size: 14px;

}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 16px;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-stats .beds {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1 0 50%;
    flex-basis: 10%;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card
.location-contents .location-stats .beds svg{
  width: 24px;
  height: 24px;
  min-width: 24px;
  max-width: 100%;
  transform: scale(1.3);
  transform-origin: center;
}

/* thicker icon */
.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card
.location-contents .location-stats .beds svg path{
  fill: #000 !important;     /* change if needed */
  stroke: #000 !important;
  stroke-width: 1.2px;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-stats .price-range {
    flex: 1 0 50%;
}

.from-last-visit .last-visit-wrapper .last-visit-flex-wrap #last-location-searched-card .location-contents .location-description {
    font-size: 16px;
    text-overflow: ellipsis;
}


/* end of past search  */


/* perfect home  */

.perfect-home {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .perfect-home {
        padding: 32px 16px !important;
    }
}

.perfect-home .perfect-home-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perfect-home .perfect-home-wrapper .perfect-home-intro {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 24px;
}

.perfect-home .perfect-home-wrapper .perfect-home-intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}

.perfect-home .perfect-home-wrapper .perfect-home-grid {
    display: grid;
    align-items: stretch;
    gap: 0px;
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 577px) and (max-width: 1024px) {
    .perfect-home .perfect-home-wrapper .perfect-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .perfect-home .perfect-home-wrapper .perfect-home-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item {
        padding: 20px 0px !important;
    }
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item {
    width: 100%;
    display: flex;
	color: #bf9903;
	text-decoration: underline;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 8px;
    transition: .3s background-color ease-in-out;
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item:hover {
    background-color: #f3f3f3;
	text-decoration: none;
}


.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item .grid-img {
    width: 100%;
    overflow: hidden;
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item .grid-img img {
    width: 100%;
    height: auto;
    transition: .3s transform ease-in-out;
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item:hover .grid-img img {
    transform: scale(1.05);
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item .grid-title {
    width: 100%;
    padding: 0 8px;
    text-align: center;
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item .grid-title span {
    font-size: 20px;
    font-weight: bold;
}

.perfect-home .perfect-home-wrapper .perfect-home-grid .grid-item:hover {
    text-decoration: none;
}

/* end of perfect home  */


/* buying  */

/* buying  */

.home-buying {
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .home-buying {
        padding: 0 !important;
    }
}

.home-buying .buying-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 1024px) {
    .home-buying .buying-wrapper {
        flex-direction: column;
    }

    .home-buying .buying-wrapper .buying-content,
    .home-buying .buying-wrapper .buying-img {
        width: 100% !important;
    }

    .home-buying .buying-wrapper .buying-img {
        display: flex;
        justify-content: center;
        max-height: 400px;
        min-height: 400px!important;
    }

    .home-buying .buying-wrapper .buying-img img {
        max-width: 100% !important;
    }
    .home-buying .buying-wrapper .buying-content .inner-wrapper {
        max-width: 100%!important;
        padding-left: 16px!important;
        padding-right: 16px;
    }
}

.home-buying .buying-wrapper .buying-content,
.home-buying .buying-wrapper .buying-img {
    width: 50%;
}

.home-buying .buying-wrapper .buying-img {
    position: relative;
    min-height: 700px;
}

.home-buying .buying-wrapper .buying-content {
    display: flex;
    justify-content: end;
}

.home-buying .buying-wrapper .buying-content .inner-wrapper {
    max-width: 600px;
    padding-left: 32px;
}

.home-buying .buying-wrapper .buying-content span {
    color: #bf9903;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 27.5px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.home-buying .buying-wrapper .buying-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.home-buying .buying-wrapper .buying-content p {
    margin-top: 0;
}

.home-buying .buying-wrapper .buying-content a {
    width: fit-content;
    display: flex;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    background-color: #004155;
	border: 1px solid transparent;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
	transition: .2s ease-in-out;
}

.home-buying .buying-wrapper .buying-content a:hover {
	background: transparent;
	color: black;
	border: 1px solid #004155;
}

.home-buying .buying-wrapper .buying-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    max-width: 100%;
}

/* end of buying  */


/* book your valuation  */

.book-valuation {
    width: 100%;
    padding: 100px 32px;
    display: flex;
    justify-content: center;
    background-color: #09203D;
}

@media (max-width: 767px) {
    .book-valuation {
        padding: 64px 16px !important;
    }
}

.book-valuation .book-valuation-wrapper {
    max-width: 1140px;
    width: 100%;
    text-align: center;
}

.book-valuation .book-valuation-wrapper .content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.book-valuation .book-valuation-wrapper .content h2 {
    font-size: 48px;
	color: #fff;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 0;
}

.book-valuation .book-valuation-wrapper .content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.book-valuation .book-valuation-wrapper .content a {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #bf9903;
    padding: 12px 16px;
	border: 1px solid transparent;
    color: #fff;
    text-decoration: none;
	transition: .2s ease-in-out;
}

.book-valuation .book-valuation-wrapper .content a:hover {
	background: transparent;
	border: 1px solid #bf9903;
}

/* end of book your valuation  */



/* selling  */


.home-selling {
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .home-selling {
        padding: 32px 0px !important;
    }
}

.home-selling .selling-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 1024px) {
    .home-selling .selling-wrapper {
        flex-direction: column-reverse;
    }

    .home-selling .selling-wrapper .selling-img,
    .home-selling .selling-wrapper .selling-content {
        width: 100% !important;
    }

    .home-selling .selling-wrapper .selling-img {
        display: flex;
        justify-content: center;
        min-height: 400px!important;
    }

    .home-selling .selling-wrapper .selling-img img {
        max-width: 100% !important;
        
    }
    .home-selling .selling-wrapper .selling-content .inner-wrapper {
        padding: 0 16px!important;
        max-width: 100%!important;
    }
}

.home-selling .selling-wrapper .selling-img,
.home-selling .selling-wrapper .selling-content {
    width: 50%;
}

.home-selling .selling-wrapper .selling-content {
    display: flex;
    justify-content: start;
}

.home-selling .selling-wrapper .selling-content .inner-wrapper 
{
    max-width: 600px;
    width: 100%;
    padding-right: 32px;
}

.home-selling .selling-wrapper .selling-img {
    position: relative;
    min-height: 700px;
}

.home-selling .selling-wrapper .selling-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    max-width: 100%;
    object-fit: cover;
}

.home-selling .selling-wrapper .selling-content span {
    color: #bf9903;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 27.5px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.home-selling .selling-wrapper .selling-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.home-selling .selling-wrapper .selling-content p {
    margin-top: 0;
}

.home-selling .selling-wrapper .selling-content a {
    width: fit-content;
    display: flex;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
	border: 1px solid transparent;
    text-decoration: none;
	transition: .2s ease-in-out;
}

.home-selling .selling-wrapper .selling-content a:hover {
	background: transparent;
	color: black;
	border: 1px solid #004155;
}

/* end of selling  */

/* video  */

.home-video-container {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f7f7;
}

@media (max-width: 767px) {
    .home-video-container {
        padding: 32px 16px!important;
    }
    .home-video-container .bunny-vid-wrapper {
        padding: 8px!important;
    }
}

.home-video-container .intro {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin-bottom: 24px;
}

.home-video-container .intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.home-video-container .bunny-vid-wrapper {
    width: 100%;
    max-width: 1400px;
    padding: 32px;
    border-radius: 4px;
    background-color: #d7d6d6;
}

/* end of viddeo  */


/* tools new home  */

.new-home-tools {
    padding: 64px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.new-home-tools .new-home-tools__wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.new-home-tools .new-home-tools__intro {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 32px auto;
}

.new-home-tools .new-home-tools__intro h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: bold;
}

.new-home-tools .new-home-tools__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .new-home-tools .new-home-tools__cards {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 767px) {
    .new-home-tools {
        padding: 32px 16px !important;
    }
}

/* ============================================================
   Card
   ============================================================ */

.new-home-tools .new-home-tools__card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1.9px 5.3px rgba(0, 0, 0, .027),
        0 6.5px 17.9px rgba(0, 0, 0, .043),
        0 29px 80px rgba(0, 0, 0, .07);
	transition: box-shadow 0.2s ease-in-out;
}

.new-home-tools .new-home-tools__card:hover {
	text-decoration: none;
	color: black;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22),
    0 26px 70px rgba(0, 0, 0, 0.28)
}

.new-home-tools .new-home-tools__card-inner {
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 480px;
    padding: 220px 45px 35px;
    position: relative;
}

@media (max-width: 576px) {
    .new-home-tools .new-home-tools__card-inner {
        padding: 200px 24px 24px !important;
        min-height: unset;
    }
}

/* ============================================================
   Background circle + icon
   ============================================================ */

.new-home-tools .new-home-tools__card-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

.new-home-tools .new-home-tools__card-bg svg {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.new-home-tools .new-home-tools__card-bg .img-top {
    left: 50%;
    position: absolute;
    top: 40px;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
/*     display: flex; */
	display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.new-home-tools .new-home-tools__card-bg .img-top img {
    width: 86px;
    height: 86px;
    max-width: 100%;
    height: auto;
    fill: #fff;
}

/* ============================================================
   Card theme colours (modifiers)
   ============================================================ */

.new-home-tools .new-home-tools__card--stamp .bg-circle {
    fill: #09203d;
}

.new-home-tools .new-home-tools__card--mortgage .bg-circle {
    fill: #bf9903;
}

/* ============================================================
   Content
   ============================================================ */

.new-home-tools .new-home-tools__card-content {
    position: relative;
    z-index: 2;
}

.new-home-tools .new-home-tools__card-content span {
    font-size: 18px;
    font-weight: bold;
}

.new-home-tools .new-home-tools__card-content h3 {
    margin-top: 20px;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
}

.new-home-tools .new-home-tools__card-content p {
    margin-top: 0;
    margin-bottom: 18px;
}

.new-home-tools .new-home-tools__card-points {
    padding: 0;
    margin: 0 0 18px 0;
    list-style-type: none;
}

.new-home-tools .new-home-tools__card-points li {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
}

.new-home-tools .new-home-tools__card-points li img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 100%;
}

.new-home-tools .new-home-tools__card-points li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 100%;
	transform: scale(1);
    transform-origin: center;
    transition: .2s ease-in-out;
}

.new-home-tools .new-home-tools__card-points li svg * {
	stroke-width: 3px;
    fill: #000 !important;
    stroke: black !important;
    stroke-linejoin: round;
    stroke-linecap: round;
    paint-order: stroke fill;
    transition: .2s ease-in-out;
}

.new-home-tools .new-home-tools__card-points li span {
    font-weight: normal;
}

.new-home-tools .new-home-tools__card-cta {
    margin-top: 18px;
}

.new-home-tools .new-home-tools__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: bold;
    border: 1px solid #e9ecf1;
    background: #fff;
}

.new-home-tools .new-home-tools__card:hover .new-home-tools__card-btn {
    border-color: #000;
}


/* end of tools new home  */


/* book valuation  */

.home-book-valuation {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .home-book-valuation {
        padding: 32px 16px !important;
    }

    .home-book-valuation .valuation-wrapper {
        padding: 24px !important;
    }

    .home-book-valuation .valuation-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .home-book-valuation .valuation-wrapper .content {
        text-align: center;
        align-items: center;
    }

    .home-book-valuation .valuation-wrapper .img-wrapper {
        text-align: center;
        justify-content: center !important;
    }
}

.home-book-valuation .valuation-wrapper {
    max-width: 1140px;
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 12px;
    padding: 50px 10px 50px 50px;
    background-color: hsl(213, 74%, 92%);
}

.home-book-valuation .valuation-wrapper .content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-book-valuation .valuation-wrapper .content h3 {
    font-size: 40px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 16px;
}

.home-book-valuation .valuation-wrapper .content a {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #004155;
	border: 1px solid transparent;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
	transition: .2s ease-in-out;
}

.home-book-valuation .valuation-wrapper .content a:hover {
	background: transparent;
	color: black;
	border: 1px solid #004155;
}

.home-book-valuation .valuation-wrapper .img-wrapper {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.home-book-valuation .valuation-wrapper .img-wrapper img {
    width: 220px;
    max-width: 100%;
    height: auto;
}


/* end of book valuation  */


/* comparison table  */

.comparison-table {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 767px) {
    .comparison-table {
        padding: 32px 16px !important;
    }
}

.comparison-table .intro {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 32px;
}

.comparison-table .intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.comparison-table .table-wrapper {
    width: 100%;
    max-width: 840px;
}

.comparison-table .table-wrapper #comparison-table {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 0.125rem 0;
    border-collapse: separate;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody {
    display: table-row-group;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row {}

.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row svg {
	width: 28px;
	height: 28px;
	max-width: 100%;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-first {
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    border-bottom-color: rgb(224, 224, 224);
    text-align: left;
    padding: 16px;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    min-width: 6.875rem;
    color: #0e0066;
    border-top: 0;
    border-bottom-color: #FFFFFF;
    border-left: 0;
    padding-right: 0;
    vertical-align: bottom;
    border-radius: 0.625rem 0.625rem 0 0;
    background: #E3E8F2;
}

@media (max-width: 767px) {
    .comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-first {
        width: 6.875rem;
    }

    .comparison-table .table-wrapper {
        overflow-x: scroll;
    }
}


.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-nicholson {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
    position: relative;
    box-sizing: border-box;
    width: 5.375rem;
    padding: 0.750rem 0.125rem 0 0.125rem;
    color: #fff;
    vertical-align: bottom;
    background-color: #09203d;
    border-bottom: 0;
    border-radius: 0.625rem 0.625rem 0 0;
    border-inline-color: #09203d;
    border-bottom-color: #09203d;
}

@media (min-width: 768px) {
    .comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-nicholson {
        width: 10.375rem;
    }
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-highstreet {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
    position: relative;
    box-sizing: border-box;
    padding: 0.750rem 0.125rem 0 0.125rem;
    color: #000;
    width: 5.375rem;
    vertical-align: bottom;
    background-color: #efefef;
    border-bottom: 0;
    border-radius: 0.625rem 0.625rem 0 0;
}

@media (min-width: 768px) {
    .comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-highstreet {
        width: 10.375rem;
    }
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-online-agent {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
    position: relative;
    box-sizing: border-box;
    padding: 0.750rem 0.125rem 0 0.125rem;
    color: #000;
    vertical-align: bottom;
    width: 5.375rem;
    background-color: #efefef;
    border-bottom: 0;
    border-radius: 0.625rem 0.625rem 0 0;
}

@media (min-width: 768px) {
    .comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .comp-head-row-online-agent {
        width: 10.375rem;
    }
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .comp-head-row .title {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .info-rows {
    color: inherit;
    display: table-row;
    vertical-align: middle;
    outline: 0;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .info-rows svg {
	width: 18px;
	height: 18px;
	max-width: 100%;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .info-rows th {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1)!important;
    border-bottom-color: rgb(224, 224, 224)!important;
    text-align: left;
    padding: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    min-width: 6.875rem;
    color: #000;
    border-top: 0;
    border-bottom-color: #FFFFFF!important;
    border-left: 0;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    border-radius: 0;
    background: #F4F7FC;
}

.comparison-table #comparison-table th,
.comparison-table #comparison-table td {
  border: 0 !important;
}

@media (min-width: 768px) {
    .comparison-table .table-wrapper #comparison-table .comp-tbody .info-rows th {
        padding: 16px !important;
        font-size: 16px;
    }
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .info-rows .nicholson-td {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    vertical-align: inherit;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
	vertical-align: middle;
    padding: 16px;
    font-family: TGGSans;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    position: relative;
    box-sizing: border-box;
    padding: 0.500rem;
    color: #fff;
    border-right: 0.125rem solid transparent;
    border-right-color: transparent;
    border-bottom: unset;
    border-left: 0.125rem solid transparent;
    border-left-color: transparent;
    border-left-color: #09203d;
    border-right-color: #09203d;
    background-color: #3670b92e;
}

.comparison-table .table-wrapper #comparison-table .comp-tbody .info-rows .others-td {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
	vertical-align: middle;
    padding: 16px;
    font-family: TGGSans;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    position: relative;
    box-sizing: border-box;
    padding: 0.500rem;
    color: #0e0066;
    border-right: 0.125rem solid transparent;
    border-left: 0.125rem solid transparent;
}


.comparison-table .table-wrapper #comparison-table tfoot {
    display: table-footer-group;
}

.comparison-table .table-wrapper #comparison-table tfoot tr {
    color: inherit;
    display: table-row;
    vertical-align: middle;
    outline: 0;
}

.comparison-table .table-wrapper #comparison-table tfoot tr .foot-first {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    border-bottom-color: rgb(224, 224, 224);
    text-align: left;
    padding: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-family: TGGSans;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    min-width: 6.875rem;
    color: #0e0066;
    border-top: 0;
    border-bottom-color: #FFFFFF;
    border-left: 0;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    border-radius: 0;
    background: #E3E8F2;
}

.comparison-table .table-wrapper #comparison-table tfoot tr .foot-nicholson {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
    padding: 16px;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    position: relative;
    box-sizing: border-box;
    color: #fff;
    border-right: 0.125rem solid transparent;
    border-right-color: transparent;
    border-bottom: unset;
    border-left: 0.125rem solid transparent;
    border-left-color: transparent;
    border-left-color: #09203d;
    border-right-color: #09203d;
    background-color: #fff6f4;
    padding: 0;
    border-bottom: 0.125rem solid transparent;
    background-color: #09203d;
}

.comparison-table .table-wrapper #comparison-table tfoot tr .foot-nicholson a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
	color: #fff;
	text-decoration: none;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.comparison-table .table-wrapper #comparison-table tfoot tr .foot-others {
    font-weight: normal;
    letter-spacing: 0;
    display: table-cell;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
    text-align: center;
    padding: 16px;
    font-size: 0.875rem;
    line-height: 1.000rem;
    font-weight: 400;
    position: relative;
    box-sizing: border-box;
    padding: 0.500rem;
    color: #0e0066;
    border-right: 0.125rem solid transparent;
    border-bottom: unset;
    border-left: 0.125rem solid transparent;
    padding: 0.750rem;
    border-bottom: 0.125rem solid transparent;
}

/* end of comparison table  */

/* who we are  */


.home-who-we-are {
    width: 100%;
    display: flex;
    justify-content: center;
}

.home-who-we-are .home-who-we-are-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

@media (max-width: 1024px) {
    .home-who-we-are .home-who-we-are-wrapper {
        flex-direction: column;
    }
    .home-who-we-are .home-who-we-are-wrapper .content, .home-who-we-are .home-who-we-are-wrapper .image-wrapper {
        width: 100%!important;
    }
    .home-who-we-are .home-who-we-are-wrapper .image-wrapper {
        min-height: 400px!important;
    }
    .home-who-we-are .home-who-we-are-wrapper .content .inner-wrapper {
        max-width: 100%!important;
        padding: 0 16px!important;
    }
}

.home-who-we-are .home-who-we-are-wrapper .content {
    width: 50%;
    display: flex;
    justify-content: end;
}

.home-who-we-are .home-who-we-are-wrapper .content .inner-wrapper {
    max-width: 600px;
    padding-left: 32px;
    width: 100%;
}

.home-who-we-are .home-who-we-are-wrapper .content .inner-wrapper span {
    color: #bf9903;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 27.5px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.home-who-we-are .home-who-we-are-wrapper .content .inner-wrapper h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
}

.home-who-we-are .home-who-we-are-wrapper .content .inner-wrapper a {
    width: fit-content;
    display: flex;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    background-color: #004155;
    padding: 12px 16px;
    color: #fff;
    border: 1px solid transparent;
    text-decoration: none;
    transition: .2s ease-in-out;
}

.home-who-we-are .home-who-we-are-wrapper .content .inner-wrapper a:hover {
    background: transparent;
    color: black;
    border: 1px solid #004155;
}

.home-who-we-are .home-who-we-are-wrapper .image-wrapper {
    width: 50%;
    min-height: 700px;
    position: relative;
}

.home-who-we-are .home-who-we-are-wrapper .image-wrapper img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    inset: 0;
}

/* end of who we are  */

/* local expertise  */

.local-expertise {
    width: 100%;
    padding: 64px 32px;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .local-expertise {
        padding: 32px 16px !important;
    }
}

.local-expertise .local-expertise-wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.local-expertise .local-expertise-wrapper .local-expertise-intro {
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
}

.local-expertise .local-expertise-wrapper .local-expertise-intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
}

.local-expertise .local-expertise-wrapper .local-expertise-intro p {
    margin-top: 0;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card {
    background: #fff;
    border: 1px solid #e9ecf1;
    border-radius: 10px;
    padding: 50px 24px;
    grid-column: span 2;
}

@media (min-width: 577px) and (max-width: 1024px) {
    .local-expertise .local-expertise-wrapper .local-expertise-grid .local-card {
        grid-column: span 3;
    }

    .local-expertise .local-expertise-wrapper .local-expertise-grid .local-card:nth-last-child(-n+2) {
        grid-column: span 3 !important;
    }
}

@media (max-width: 576px) {
    .local-expertise .local-expertise-wrapper .local-expertise-grid .local-card {
        grid-column: span 6 !important;
    }
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card:nth-last-child(-n+2) {
    grid-column: span 3;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card .card-img {
    width: 100%;
    margin-bottom: 24px;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card .card-img img {
    width: 80px;
    max-width: 100%;
    height: auto;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card .card-img svg {
    width: 80px;
    max-width: 100%;
    height: auto;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card .card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card .card-content span {
    font-size: 18px;
    font-weight: bold;
}

.local-expertise .local-expertise-wrapper .local-expertise-grid .local-card .card-content p {
    margin-top: 0;
}

/* end of local expertise  */

/* faqs  */

.home-faqs {
    padding: 64px 32px;
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .home-faqs {
        padding: 32px 16px !important;
    }
}

.home-faqs .home-faqs__wrapper {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-faqs .home-faqs__intro {
    margin-bottom: 24px;
    text-align: center;
}

.home-faqs .home-faqs__intro h2 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.home-faqs .home-faqs__list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home-faqs .home-faqs__item {
    width: 100%;
}

/* question row */
.home-faqs .home-faqs__title {
    background-color: transparent;
    position: relative;
    border-top: 1px solid #e9ecf1;
    cursor: pointer;
    display: flex;
	gap: 20px;
    justify-content: space-between;
    align-items: center;
    outline: none;
    padding: 34px 0;
    text-align: left;
    transition: all .3s cubic-bezier(.47, 0, .745, .715) 0s;
    width: 100%;
}

.home-faqs .home-faqs__item:last-child .home-faqs__title {
    border-bottom: 1px solid #e9ecf1;
}

.home-faqs .home-faqs__title h4 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    white-space: normal;
    padding-right: 16px;
}

/* plus / minus icon */
.home-faqs .home-faqs__title::after {
    align-items: center;
    background-color: #f4f6fb;
    background-image: url('https://www.axept.io/hubfs/4424028/axeptio-hs-theme/plus.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    border-radius: 50%;
    content: "";
    display: flex;
    height: 36px;
    justify-content: center;
    position: relative;
    right: 0;
    transition: all .15s ease 0s;
    width: 36px;
	min-width: 36px;
    flex: 0 0 36px;
}

/* if your JS toggles .active on the title */
.home-faqs .home-faqs__title.active::after {
    background-image: url('https://www.axept.io/hubfs/4424028/axeptio-hs-theme/minus.svg');
    transform: rotate(180deg);
}

/* answer reveal */
.home-faqs .home-faqs__answer {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.home-faqs .home-faqs__answer-inner {
    overflow: hidden;
}

/* open state (your JS should toggle .is-open on .home-faqs__item) */
.home-faqs .home-faqs__item.is-open .home-faqs__answer {
    grid-template-rows: 1fr !important;
}

/* spacing + reveal */
.home-faqs .home-faqs__answer-inner p {
    margin: 0;
    padding: 0 0 24px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.home-faqs .home-faqs__item.is-open .home-faqs__answer-inner p {
    opacity: 1;
    transform: translateY(0);
}

/* mobile typography */
@media (max-width: 576px) {
    .home-faqs .home-faqs__title {
        padding: 24px 0;
    }

    .home-faqs .home-faqs__title h4 {
        font-size: 20px;
    }
}

/* end of faqs  */