.divider {
    height: 1px;
    border-bottom: 1px solid #c9cbd4;
}

/* ------------------------------------------------------------ *\
	Corp-lp Shell
\* ------------------------------------------------------------ */
.wrapper .shell,
.wrapper .header-alt .shell-alt,
body .footer .shell-alt {
    max-width: calc(160rem + 1.6rem * 2);
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.8rem 0;
    z-index: 100;
}

body .wrapper {
    overflow: visible;
}

.wrapper .header-alt {
    position: sticky;
    top: 0;
}

.header-alt.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.header .header__inner {
    padding-right: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header__btn {
    min-width: 16.2rem;
    font-weight: 400;
    min-height: 4.3rem;
    line-height: 4.3rem;
    font-size: 2.4rem;
}

.header .header__nav {
    padding-bottom: 0.2rem;
}

@media only screen and (max-width: 767px) {
    .header {
        padding: 1.6rem 0;
    }

    .header__logo {
        display: inline-block;
    }

    .header .header__nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 100%);
        background-color: var(--nav-background-color);
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: auto;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    }

    .header .header__nav.is-active {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    body .wrapper {
        overflow: hidden;
    }

    .wrapper .header-alt {
        position: relative;
    }

    .header-alt.shadow {
        box-shadow: none;
    }
}

/* ------------------------------------------------------------ *\
	nav trigger
\* ------------------------------------------------------------ */

.nav-trigger {
    position: relative;
    width: 2.7rem;
    height: 1.7rem;
    display: none;
    margin-right: -0.7rem;
}

.nav-trigger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background-color: var(--nav-icon-color);
    border-radius: 2rem;
    transition: all 0.3s;
}

.nav-trigger span:first-child {
    top: 0;
}

.nav-trigger span:nth-child(2) {
    top: 0.7rem;
}

.nav-trigger span:last-child {
    top: 1.4rem;
}

.nav-trigger.is-active span:nth-child(2) {
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.nav-trigger.is-active span:first-child {
    top: 0.7rem;
    transform: rotate(45deg);
}

.nav-trigger.is-active span:last-child {
    top: 0.7rem;
    transform: rotate(-45deg);
}

@media only screen and (max-width: 767px) {
    .nav-trigger {
        display: block;
    }

    .nav-trigger.is-active span {
        background-color: white;
    }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.nav ul {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav li {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--nav-text-color);
}

.nav li a {
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 767px) {
    .nav ul {
        display: block;
        text-align: center;
    }

    .nav .nav-phone-number {
        font-size: 2.4rem;
        font-weight: 600;
    }

    .nav li {
        font-size: 1.6rem;
        color: white;
    }

    .nav li + li {
        margin-left: 0;
        margin-top: 2.4rem;
    }
}

/* ------------------------------------------------------------ *\
	Layout
\* ------------------------------------------------------------ */
.layout {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 7.2rem;
}

.layout--left {
    display: flex;
    flex-direction: column;
    gap: 4.8rem;
    align-items: center;
}

.layout--right {
    position: relative;
}

@media screen and (max-width: 1040px) {
    .layout {
        grid-template-columns: 2fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .layout {
        display: block;
    }
}

/* ------------------------------------------------------------ *\
	Navigate to Section
\* ------------------------------------------------------------ */
.layout--right .navigate-to-section {
    position: sticky;
    top: 10rem;
}

.navigate-to-section {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.navigate-to-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.navigate-to-section__divider {
    border-bottom: 1px solid #c9cbd4;
    height: 1px;
}

.navigate-to-section__link-container {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 1.6rem;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.navigate-to-section__link-container a {
    font-size: 1.6rem;
    color: #003cc5;
    text-decoration: none;
}

.navigate-to-section__link {
    font-weight: 700;
}

.navigate-to-section__link--sub-category {
    font-weight: 400;
    margin-left: 1.6rem;
}

.navigate-to-section.mobile-only {
    display: none;
}

.navigate-to-section.desktop-only {
    display: flex;
}

@media screen and (max-width: 767px) {
    .navigate-to-section.mobile-only {
        display: flex;
    }

    .navigate-to-section.desktop-only {
        display: none;
    }
}

.market-values__section-header,
.market-snapshot__section-header,
.market-values__section-header,
.market-values__section-header--subheader {
    scroll-margin-top: 12rem;
}

/* ------------------------------------------------------------ *\
	main
\* ------------------------------------------------------------ */

.main {
    display: flex;
    flex-direction: column;
    background-color: var(--body-background-color);
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
    gap: 6rem;
}

@media screen and (max-width: 767px) {
    .main {
        gap: 3.2rem;
    }
}

/* ------------------------------------------------------------ *\
	btn

	Basic classes for all buttons throgh out all pages.
\* ------------------------------------------------------------ */

.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    appearance: none;
    border-radius: 0.8rem;
    background-color: var(--button-background-primary);
    border: 0;
    padding: 0 1.5rem;
    min-height: 5.2rem;
    line-height: 5.2rem;
    font-family: var(--button-text-font);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.006em;
    color: var(--button-text-color);
    position: relative;
}

.btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-background-primary);
    border-radius: 0.8rem;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.btn span {
    z-index: 1;
    position: relative;
}

@media (hover: hover) {
    .btn:hover:after {
        opacity: 0;
        visibility: hidden;
    }
}

/*  btn blue  */

.btn--blue {
    color: var(--button-text-color);
    border: 2px solid var(--button-stroke-color-secondary);
    background: var(--button-background-secondary);
}

.btn--blue:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-background-secondary);
    border-radius: 3px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
.btn.search__btn {
    color: var(--body-text-color);
    border: 2px solid var(--semantic-background-color-dark);
    background-color: var(--button-background-dark-yellow);
}
.btn.search__btn:after {
    background: var(--button-background-dark-yellow);
    transition: opacity 0.3s, visibility 0.3s;
}
@media (hover: hover) {
    .btn.search__btn:hover {
        box-shadow: 0px 4px 4px var(--button-dropshadow);
        background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0) 50%,
                rgba(255, 255, 255, 0.25) 100%
            ),
            var(--button-background-dark-yellow);
    }
}

/* ------------------------------------------------------------ *\
	hero
\* ------------------------------------------------------------ */
.hero__container {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.hero {
    --hero-height: 27.4rem;
    height: var(--hero-height);
    position: relative;
}

.hero .shell {
    position: relative;
    height: var(--hero-height);
}

.hero .hero__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 0 1.6rem;
}

.hero .hero__inner h1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-weight: 800;
    font-size: 5.6rem;
    color: white;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
}

.hero__inner--county {
    word-break: break-word;
    text-align: left;
}

.hero .hero__inner--background-image {
    position: absolute;
    filter: brightness(0.8);
    height: var(--hero-height);
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

@media only screen and (max-width: 767px) {
    .hero {
        --hero-height: 15rem;
    }

    .hero__container {
        gap: 1.6rem;
    }

    .hero .hero__inner h1 {
        font-size: 3.6rem;
    }
}

@media only screen and (max-width: 480px) {
    .hero .hero__inner h1 {
        font-size: 2.8rem;
    }
}

/* ------------------------------------------------------------ *\
	breadcrumbs
\* ------------------------------------------------------------ */

.breadcrumbs {
    align-self: flex-start;
}

.breadcrumbs__inner {
    display: flex;
    gap: 0.4rem;
}

.breadcrumbs__inner a,
.breadcrumbs__inner span {
    font-size: 2rem;
    color: var(--semantic-text-color-base);
    text-decoration: none;
}

.breadcrumbs__inner a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .breadcrumbs__inner a,
    .breadcrumbs__inner span {
        font-size: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	button-container
\* ------------------------------------------------------------ */

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.button-container p {
    font-size: 2rem;
}

.button-container .btn {
    min-width: 35.8rem;
}

.toggle-counties a {
    color: #181819;
}

/* ------------------------------------------------------------ *\
	market-values headers
\* ------------------------------------------------------------ */

.market-values__section-header {
    font-size: 3.4rem;
    margin-bottom: 2.8rem;
}

.market-values__section-header--subheader {
    font-size: 2.4rem;
    margin-bottom: 0rem;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .market-values__section-header {
        text-align: center;
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
}

/* ------------------------------------------------------------ *\
	market-summary
\* ------------------------------------------------------------ */
.market-summary__inner {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    font-size: 2rem;
}

.market-summary__content {
    line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
    .market-summary__inner {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        font-size: 1.6rem;
    }

    .market-summary__content {
        line-height: 2rem;
    }
}

/* ------------------------------------------------------------ *\
	market-snapshot
\* ------------------------------------------------------------ */
.market-snapshot {
    font-size: 2rem;
}

.market-snapshot__section-header {
    text-align: center;
}

.market-snapshot__section-subheader {
    font-size: 2.4rem;
    margin-bottom: 0;
}

.market-snapshot__inner {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.market-snapshot__inner p {
    line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
    .market-snapshot__inner p {
        line-height: 2.4rem;
    }
}

/* ------------------------------------------------------------ *\
	sc-container
\* ------------------------------------------------------------ */
.sc-container {
    width: 35.8rem;
    border-radius: 16px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.sc-container__header {
    padding: 1.6rem;
    color: #ffffff;
    background-color: #181819;
    border-radius: 16px 16px 0 0;
    font-size: 2rem;
    font-weight: 700;
}

.sc-container__body {
    padding: 1.6rem;
    border-radius: 0 0 16px 16px;
    border: 1px solid #181819;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.sc-container__body__line-item {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.sc-container__body__line-item p {
    font-size: 1.6rem;
    font-weight: 700;
}

.sc-container__body__line-item__table {
    display: flex;
    padding: 1.6rem;
    flex-direction: column;
    border-radius: 8px;
    gap: 1.6rem;
    border: 1px solid #c9cbd4;
}

.sc-container__body__line-item__table__table-row--value {
    font-weight: 700;
}

.sc-container__divider {
    height: 1px;
    border-bottom: 1px solid #c9cbd4;
}

.sc-container__body__line-item__table__table-row .sc-container__divider {
    margin-top: 8px;
}

/* ------------------------------------------------------------ *\
	Banner
\* ------------------------------------------------------------ */
.banner {
    background-color: var(--banner-background-color);
}

.banner__inner {
    padding: 1.6rem 0;
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 4fr;
    justify-content: space-between;
    align-items: center;
}

.banner__content-header {
    font-size: 2.4rem;
    font-weight: 700;
}

.banner__content-body {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.banner__content-body .search__meta {
    font-size: 1.3rem;
    display: flex;
    gap: 0.4rem;
}

.banner__content-body .search__meta i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1040px) {
    .banner__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner__inner {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .banner__content-body {
        flex-direction: column;
        gap: 0.4rem;
    }

    .banner__content-header {
        font-size: 2rem;
    }

    .banner .search__ai {
        font-size: 1.2rem;
    }

    .banner .search__meta {
        font-size: 1rem;
    }
}

/* ------------------------------------------------------------ *\
	Search

	Basic classes for all search fields throgh out all pages.
\* ------------------------------------------------------------ */

.search {
    position: relative;
    max-width: 69rem;
    width: 100%;
    margin: 0 0 0 auto;
}

.search .search__controls {
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
    gap: 0.8rem;
}

.search .search__label {
    display: none;
}

.search .search__field {
    padding: 0 1.5rem;
    min-height: 5.2rem;
    background: var(--input-background-color-default);
    border: 0.1rem solid var(--input-border-color-default);
    border-radius: 0.8rem;
    font-size: 1.8rem;
    line-height: 0.095;
    letter-spacing: -0.008em;
    width: 100%;
    max-width: 45.8rem;
    /* margin-bottom: 0.8rem; */
    color: var(--input-text-color-default);
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.4s;
}

.search .search__field:focus,
.search .search__field:active {
    border: 2px solid var(--semantic-color-success);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.search .search__field::-webkit-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field:-moz-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field::-moz-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field::-ms-input-placeholder {
    color: var(--input-text-color-placeholder);
}

.search .search__field::placeholder {
    color: var(--input-text-color-placeholder);
}

.search.is-disabled .search__field,
.search .search__field:disabled {
    background-color: var(--input-background-color-disabled);
    border-color: var(--input-border-color-disabled);
    pointer-events: none;
    opacity: 1;
}

.search.has-error .search__field {
    background: var(--input-background-color-error);
    border-color: var(--input-border-color-error);
    color: var(--input-text-color-error);
}

.search.has-error .search__field:focus {
    box-shadow: none;
}

.search .search__btn {
    width: 100%;
    max-width: 45.8rem;
}

.search .search__error {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 45.8rem;
    background: var(--input-background-color-default);
    border: 0.1rem solid var(--input-errormessage-border-color);
    color: var(--input-text-color-error);
    font-size: 1.4rem;
    border-radius: 0.8rem;
    margin-top: 0.6rem;
    padding: 0.6rem 1.2rem;
    margin-left: 0;
    transition: transform 0.4s;
    transform-origin: center top;
    transform: scaleY(0);
    pointer-events: none;
    position: absolute;
    filter: drop-shadow(0 0.4rem 0.4rem var(--input-errormessage-dropshadow));
}

.search.has-error .search__error {
    position: relative;
    transform: none;
}

.search .search__error:before {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.75rem 0.5rem 0.75rem;
    border-color: transparent transparent var(--input-errormessage-border-color)
        transparent;
}

.search .search__meta {
    display: block;
    max-width: 50%;
    text-align: center;
    margin: 2.2rem auto 0;
    font-size: 1.4rem;
    letter-spacing: -0.008em;
    color: var(--hero-text-color-subtle);
}

.search .search__meta i {
    margin-right: 0.4rem;
}

.search.is-disabled .search__btn:after,
.search .search__btn:disabled:after {
    pointer-events: none;
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        var(--input-background-color-disabled);
}

.search.is-disabled .search__btn,
.search .search__btn:disabled {
    background: linear-gradient(
            180deg,
            var(--button-primary-overlay-highlight) 0%,
            var(--button-primary-overlay-shade) 100%
        ),
        var(--input-background-color-disabled);
}

@media only screen and (max-width: 767px) {
    .hero__body {
        width: 100%;
    }

    .search form {
        display: flex;
        flex-direction: column;
    }

    .search .search__controls {
        display: contents;
    }

    .search .search__field {
        max-width: 100%;
        margin-bottom: 0.8rem;
        margin-right: 0;
        order: -2;
    }

    .search .search__btn {
        max-width: 100%;
    }

    .search .search__error {
        order: -1;
        margin-top: -0.7rem;
        max-width: 100%;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        padding: 0.7rem 0.9rem;
    }

    .search .search__meta {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .search .search__meta svg {
        max-width: 1rem;
        max-height: 1.2rem;
    }
}

/* ------------------------------------------------------------ *\
	section search
\* ------------------------------------------------------------ */

.section__search {
    background-color: var(--banner-background-color);
    padding: 2.4rem 0 1.6rem;
}

.section__search .search {
    margin: 0 auto;
}

.section__search__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.search__meta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .section__search .search__ai {
        font-size: 1.2rem;
    }

    .section__search .search__meta {
        font-size: 1rem;
    }
}

/* ------------------------------------------------------------ *\
	market-header
\* ------------------------------------------------------------ */
.market-header {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    font-size: 2rem;
}

.market-header__container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.market-header .market-values__section-header {
    text-align: left;
    margin-bottom: 0;
}

.market-header p {
    line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
    .market-header p {
        line-height: 2.4rem;
    }
}

/* ------------------------------------------------------------ *\
	market stats overview
\* ------------------------------------------------------------ */
.market-values-overview__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.4rem;
}

.market-values-overview__inner__column {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.market-values-overview__inner__item__divider {
    --divider-height: 0.15rem;
    border-bottom: var(--divider-color-trends) solid var(--divider-height);
    width: 100%;
    margin: 0 auto;
    height: var(--divider-height);
}

.market-values-overview__inner__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: baseline;
    gap: 1.6rem;
}

.market-values-overview__inner__item--label {
    font-size: 2.1rem;
    font-weight: 600;
}

.market-values-overview__inner__item--value {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2.6rem;
    color: var(--semantic-text-color-trend);
    font-weight: 700;
}

.market-values-overview__inner__item__trend-description {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    vertical-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

@media screen and (max-width: 1040px) {
    .market-values-overview__inner {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .market-values-overview__inner__item__divider {
        display: none;
    }

    .market-values-overview__inner__item {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .market-values-overview__inner__item {
        gap: 0.4rem;
    }

    .market-values-overview__inner__item--label {
        font-size: 1.6rem;
    }

    .market-values-overview__inner__item--value {
        font-size: 2.4rem;
    }

    .market-values-overview__inner__item__trend-description {
        font-size: 1.2rem;
    }

    .market-values-overview__inner__item__trend-description svg {
        max-width: 2rem;
        max-height: 2rem;
    }
}

/* ------------------------------------------------------------ *\
	Nearby Markets
\* ------------------------------------------------------------ */

.nearby-markets .shell {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.nearby-markets .nearby-markets__data-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.nearby-markets__inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.nearby-markets h2 {
    text-align: center;
}

.nearby-markets h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 0;
}

.nearby-markets p {
    font-size: 2rem;
    line-height: 2.8rem;
}

.nearby-markets--last {
    margin-bottom: 4.8rem;
}

.data-section__inner {
    display: flex;
    flex-direction: column;
    padding: 3.2rem;
    border-radius: 1.6rem;
    background-color: #f5f5f5;
}

.data-section__inner:has(.toggle-counties) {
    gap: 1.6rem;
}

.data-section__inner--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem 3.2rem;
}

.data-section__inner--grid > .data-section__inner__item:nth-child(n + 11) {
    display: none;
}

.data-section__inner--grid > .data-section__inner__item:nth-child(9),
.data-section__inner--grid > .data-section__inner__item:nth-child(10) {
    border-bottom: none;
}

.data-section__inner--grid.expanded > .data-section__inner__item {
    display: block;
}

.data-section__inner--grid.expanded > .data-section__inner__item:nth-child(9),
.data-section__inner--grid.expanded > .data-section__inner__item:nth-child(10) {
    border-bottom: var(--divider-color-trends) solid 1px;
}

.data-section__inner__item {
    border-bottom: var(--divider-color-trends) solid 1px;
    padding: 1.2rem 0;
}

.data-section__inner__item:first-child {
    padding-top: 0;
}

.data-section__inner--grid .data-section__inner__item:nth-child(2) {
    padding-top: 0;
}

.data-section__inner__item:nth-last-of-type(1) {
    border-bottom: none;
    padding-bottom: 0;
}

.data-section__inner--grid .data-section__inner__item:nth-last-of-type(2) {
    border-bottom: none;
    padding-bottom: 0;
}

.nearby-markets__data-collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
}

.data-section__inner__item a,
.data-section__inner p {
    font-size: 2.1rem;
    color: var(--semantic-text-color-base);
}

.nearby-markets__content {
    font-size: 2rem;
    line-height: 2.4rem;
    column-count: 2;
    column-gap: 2rem;
}

.toggle-counties {
    font-size: 2.1rem;
    border: none;
    background: none;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .nearby-markets h3 {
        font-size: 2rem;
        padding-left: 0rem;
    }

    .nearby-markets__inner {
        gap: 2rem;
    }

    .nearby-markets__content {
        font-size: 1.6rem;
        line-height: 2rem;
        column-count: 1;
    }

    .data-section__inner--grid {
        display: flex;
        flex-direction: column;
    }

    .data-section__inner__item {
        padding: 0.8rem 0;
    }

    .data-section__inner--grid .data-section__inner__item:first-child {
        padding-top: 0;
    }

    .data-section__inner--grid .data-section__inner__item:nth-child(2) {
        padding-top: 0.8rem;
    }

    .data-section__inner--grid .data-section__inner__item:nth-last-child(2) {
        border-bottom: var(--divider-color-trends) solid 1px;
        padding-bottom: 0.8rem;
    }

    .data-section__inner--grid > .data-section__inner__item:nth-child(9) {
        border-bottom: var(--divider-color-trends) solid 1px;
    }

    .data-section__inner--grid.expanded
        > .data-section__inner__item:nth-child(9) {
        border-bottom: var(--divider-color-trends) solid 1px;
    }

    .data-section__inner {
        padding: 2.8rem 2rem;
    }

    .nearby-markets__data-collection {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .data-section__inner__item a,
    .data-section__inner p {
        font-size: 1.6rem;
    }

    .toggle-counties {
        font-size: 1.6rem;
    }

    .nearby-markets p {
        line-height: 2rem;
    }
}

/* ------------------------------------------------------------ *\
	disclaimer

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.disclaimer {
    background: var(--disclaimer-background-color);
    font-size: 1.3rem;
    letter-spacing: -0.018em;
    padding: 2.4rem 0;
    color: var(--disclaimer-text-color-base);
}

.disclaimer .disclaimer__inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.disclaimer a {
    color: inherit;
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .disclaimer {
        padding: 1.5rem 0;
        line-height: 1.33;
        letter-spacing: -0.017em;
    }

    .disclaimer .disclaimer__inner {
        padding-right: 0.2rem;
    }
}

/* ------------------------------------------------------------ *\
	footer
\* ------------------------------------------------------------ */

.footer {
    position: relative;
    flex-shrink: 0;
    position: relative;
    background-color: var(--footer-background-color);
    padding: 2.6rem 0;
    color: var(--footer-text-color-base);
    font-size: 1.5rem;
    line-height: 1.2;
}

.footer .footer__logo {
    display: inline-block;
    margin-bottom: 2.2rem;
}

.footer .footer__inner {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer .footer__content {
    flex: 0 0 16.3%;
    max-width: 16.3%;
    padding-right: 1rem;
}

.footer .footer__cols {
    display: flex;
    flex: 1;
    margin: 0rem -1rem;
}

.footer .footer__col {
    padding: 0rem 1rem;
}

.footer .footer__col--size1 {
    flex: 0 0 26.2%;
    max-width: 26.2%;
}

.footer .footer__col--size2 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer .footer__col--size3 {
    flex: 0 0 31.8%;
    max-width: 31.8%;
}

.footer h5 {
    font-size: 2.4rem;
    color: var(--footer-text-color-base);
    margin-bottom: 1rem;
}

.footer .footer__nav ul {
    list-style: none;
}

.footer .footer__nav li + li {
    margin-top: 1.2rem;
}

.footer .footer__nav li a {
    color: var(--footer-text-color-anchor);
    text-decoration: none;
}

.footer .footer__nav a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1023px) {
    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 1.5rem 0 1.8rem;
    }

    .footer .footer__inner {
        display: block;
    }

    .footer .footer__nav {
        text-align: center;
    }

    .footer .footer__logo {
        margin-bottom: 3rem;
    }

    .footer .footer__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__cols {
        display: block;
        margin: 0 0 -4.5rem;
    }

    .footer .footer__col {
        text-align: center;
        padding: 0;
        margin-bottom: 4.5rem;
    }

    .footer .footer__col--size1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__col--size3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer .footer__socials {
        position: absolute;
        top: 0.6rem;
        right: -0.1rem;
    }
}

/* ------------------------------------------------------------ *\
	copyright

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.copyright {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.copyright span {
    display: block;
}

.copyright span.copyright-year {
    display: inline;
}

@media only screen and (max-width: 767px) {
    .copyright {
        text-align: center;
    }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */

.socials ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
}

.socials li + li {
    margin-left: 1.6rem;
}

.socials li a {
    transition: opacity 0.3s;
}

.socials li:hover a {
    opacity: 0.7;
}

@media only screen and (max-width: 767px) {
    .socials li {
        transform: scale(0.95);
    }

    .socials li + li {
        margin-left: 1.6rem;
    }
}

.footer .shell-alt {
    max-width: calc(117.2rem + 1.8rem * 2);
    padding: 0rem 1.6rem;
    margin: 0 auto;
}

/* ------------------------------------------------------------ *\
	Popup Modals
\* ------------------------------------------------------------ */
.js-popup.popup {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-background-color);
    z-index: 1;
    max-width: 100%;
}

.js-popup.popup:before {
    content: none;
}

.js-popup.popup .popup__content {
    padding: 28px 21px 20px;
    width: 616px;
    background-color: red;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: -o-radial-gradient(
        center top,
        ellipse,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    background: radial-gradient(
        ellipse at center top,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    border-radius: 12px;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}

@media (max-width: 767px),
    screen and (max-width: 812px) and (orientation: landscape) {
    .js-popup.popup .popup__content {
        width: 94%;
    }
}

.js-popup.popup .popup__title {
    text-align: center;
    font-size: 24px;
    color: var(--modal-header-text-color);
    text-transform: uppercase;
    margin-bottom: 23px;
    pointer-events: none;
}

.js-popup.popup .popup__body {
    background-color: var(--modal-content-background-color);
    padding: 33px 20px 20px 28px;

    border-radius: 5px;
    overflow: auto;
    height: 368px;
    font-size: 13px;
    letter-spacing: -0.0125em;
    margin-bottom: 23px;
    max-width: 100%;
    text-align: left;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
}

.js-popup.popup .popup__body h3 {
    color: var(--modal-content-header-text-color);
    margin-bottom: 17px;
    font-size: 16px;
    letter-spacing: 0.017em;
    text-transform: uppercase;
}

.js-popup.popup .popup__body p {
    margin-bottom: 42px;
}

.js-popup.popup .popup__actions {
    text-align: center;
    margin-bottom: 6px;
}

/* .js-popup.popup .popup__actions .btn {
    background: var(--button-background-secondary);
} */
.js-popup.popup.is-visible {
    opacity: 1;
    pointer-events: all;
    z-index: 1060;
}

.wrapper.is-fixed {
    overflow: hidden;
}

.offer-wrapper.is-fixed {
    overflow: inherit;
}

.is-fixed {
    overflow: hidden;
}

.popup__actions .js-close:after {
    content: normal;
    min-width: 280px;
}
