/* Home: Slideshow */
.slideshow-wrap {
    position: relative;
}

.slideshow-canvas {
    position: relative;
}

.slideshow-slider {
    position: relative;
}

.slideshow-slider::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 50%);
}

.slideshow-slider::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7) 14%, transparent);
}

.slideshow-slider .aios-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-slider > canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.slideshow-tagline {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    margin: 0 auto;
    max-width: 1400px;
    bottom: calc((135/900)*100%);
    width: calc((1400/1600)*100%);
}

.slideshow-tagline h1 {
    line-height: 1;
    font-weight: 500;
    font-size: 1.875em;
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

.slideshow-tagline h1 span {
    display: block;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 2.667em;
    text-transform: none;
    font-family: var(--font-family-title);
    margin-top: 0.138em;
}

.slideshow-tagline p {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.417;
    letter-spacing: 0.1em;
    margin-top: 1.583em;
    margin-bottom: 0;
}

.slideshow-cta {
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    bottom: calc((120/900)*100%);
    width: calc((1400 / 1600)* 100%);
    padding-right: 3.125em;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.25em;
    z-index: 1;
}

.slideshow-cta a {
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2);
    position: relative;
    height: 26.563em;
    width: 9.375em;
}

.slideshow-cta a:nth-child(odd) {
    margin-bottom: 8.75em;
}

.slideshow-cta a:nth-child(even) {
    margin-top: auto;
}

.slideshow-cta a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(0.438em);
    backdrop-filter: blur(0.438em);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--default-transition);
}

.slideshow-cta.first-slide a::before {
    -webkit-filter: brightness(1.4);
    filter: brightness(1.4);
}

.slideshow-cta a::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image: url('../images/overlay-noise.svg');
}

.slideshow-cta a span {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.417;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    font-family: var(--font-family-title);
    padding-top: 5.417em;
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
}

.slideshow-cta a span::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    margin: auto;
    height: 4.167em;
    background: currentColor;
}

.slideshow-cta a span::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    background: var(--secondary);
    transition: var(--default-transition);
}

.slideshow-cta a:hover span::after {
    opacity: 0.73;
}

/* Home: Quick Search */
.search {
    color: #fff;
    background: var(--primary);
}

.search-wrap {
    padding: 2.5em 0 2.75em;
}

.search-header h2 {
    line-height: 1;
    font-weight: 400;
    font-size: 1.563em;
    text-align: center;
    letter-spacing: 1em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.search-form p {
    font-weight: 400;
    font-size: 0.688em;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
}

.search-form-fields {
    display: flex;
    align-items: flex-end;
    padding: 1.25em 0 1.875em;
    gap: 1.25em;
}

.search-form-field {
    width: calc((130/1400)*100%);
}

.search-form-field.lg {
    width: calc((250/1400)*100%);
}

.search-form-field select,
.search-form-field input {
    width: 100%;
    border: none;
    outline: none;
    line-height: 1;
    padding: 1em 0;
    appearance: none;
    font-weight: 400;
    font-size: 0.813em;
    letter-spacing: 0.1em;
    background: transparent;
    text-transform: uppercase;
    border-bottom: 1px solid #aaabab;
}

.search-form-field select option {
    color: #000;
}

.search-form-field > select {
    max-height: 3.077em;
}

.search-form-field .bootstrap-select .dropdown-toggle {
    width: 100%;
    border: none;
    outline: none;
    color: inherit;
    line-height: 1;
    padding: 1em 0;
    appearance: none;
    font-weight: 400;
    border-radius: 0;
    font-size: 0.813em;
    letter-spacing: 0.1em;
    background: transparent;
    text-transform: uppercase;
    box-shadow: none !important;
    border-bottom: 1px solid #aaabab;
}

.search-form-field .bootstrap-select input {
    color: #000;
}

.search-form-field .bootstrap-select > .dropdown-toggle:hover,
.search-form-field .bootstrap-select > .dropdown-toggle:focus,
.search-form-field .bootstrap-select > .dropdown-toggle:active,
.search-form-field .bootstrap-select.open > .dropdown-toggle:focus,
.search-form-field .bootstrap-select.open > .dropdown-toggle:hover {
    background: transparent;
    outline: none !important;
    color: inherit !important;
    box-shadow: none !important;
    border-color: #aaabab;
}

.search-form-field .bootstrap-select .dropdown-toggle::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    width: 0.769em;
    height: 0.462em;
    background: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: url('../images/icon-arrow-d.svg');
    mask-image: url('../images/icon-arrow-d.svg');
}

.search-form-field .bootstrap-select .dropdown-toggle .filter-option {
    color: inherit;
    font-size: inherit;
    text-overflow: ellipsis;
}

.search-form-field .bootstrap-select .dropdown-backdrop {
    z-index: 98;
}

.search-form-field .bootstrap-select .dropdown-menu {
    z-index: 99;
}

.search-form-field:not(.lg) .bootstrap-select .dropdown-menu {
    min-width: 0;
}

.search-form-field .bootstrap-select .dropdown-menu.inner {
    max-height: 250px !important;
}

.search-form-button {
    gap: 1.563em;
    display: flex;
    margin-left: auto;
    align-items: center;
    width: calc((248/1400)*100%);
}

.search-form-button button {
    padding: 0;
    height: 1em;
    border: none;
    outline: none;
    width: 1.138em;
    font-size: 1.813em;
    background: transparent;
    transition: var(--default-transition);
}

.search-form-button button:hover {
    color: var(--secondary);
}

.search-form-button a {
    color: #fff;
}

/* Home: About */
.about-wrap {
    display: flex;
}

.about-text {
    /*padding: 7.5em 0 9.875em;*/
    padding: 7.5em 0 6.875em;
    width: calc((700/1400)*100%);
}

.about-text p {
    padding-right: 3.556em;
}

.about-text p:first-of-type {
    margin-top: 1.056em;
}

.about-text .site-button {
    margin-top: 1.071em;
}

.about-photo {
    display: flex;
    position: relative;
    width: calc((700/1400)*100%);
}

.about-photo img {
    object-position: top;
}

.about-photo .site-image {
    z-index: 1;
    margin-top: auto;
}

.about-photo-bg {
    position: absolute;
    bottom: 0;
    right: calc((-100 / 700)* 100%);
    width: calc((750 / 700)* 100%);
}

.about-photo-bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.about-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}

.about-bg canvas {
    -webkit-filter: invert();
    filter: invert();
    background-position-y: bottom;
}

/* Home: CTA */
.cta-wrap {
    display: flex;
    padding: 3.75em 0;
    position: relative;
}

.cta-wrap::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    width: 50vw;
    background: #fff;
    right: calc((1000 / 1400)* 100%);
}

.cta-links {
    display: flex;
    flex-direction: column;
    width: calc((540 / 1400)* 100%);
    gap: 1.25em;
}

.cta-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #636363;
    background: var(--primary);
    position: relative;
    z-index: 1;
}

.cta-link-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    background: var(--secondary);
    transition: var(--default-transition);
}

.cta-link-item::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    margin: auto;
    left: 0.875em;
    width: 13.313em;
    height: 13.563em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../images/site-monogram.png');
    transition: var(--default-transition);
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
    transform: translateX(-10%);
}

.cta-link-item:hover::before {
    opacity: 1;
}

.cta-link-item:hover::after {
    transform: translateX(0%);
    opacity: 0.10;
}

.cta-link-item strong {
    position: absolute;
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    line-height: 2.125;
    text-align: center;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    z-index: 1;
}

.cta-link-item strong span {
    display: block;
    line-height: 1;
    font-size: 2.5em;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    margin-top: 0.15em;
}

.cta-link-item canvas {
    width: 100%;
    height: 100%;
    opacity: 0.60;
    display: block;
    background-size: 100vw 63vw;
    background-repeat: no-repeat;
    background-position: -6.25vw -24vw;
}

.cta-link-item:nth-child(2) canvas {
    background-position: -6.25vw -35.875vw;
}

.cta-link-item:nth-child(3) canvas {
    background-position: -6.25vw -47vw;
}

.cta-text {
    margin-left: auto;
    align-self: center;
    width: calc((750 / 1400)* 100%);
}

.cta-text p {
    padding-left: 1.778em;
}

.cta-text p:last-child {
    margin-bottom: 0;
}

.cta-bg {
    overflow: hidden;
    max-height: 1606px;
    background: var(--primary);
    height: calc((1606/1600)*100vw);
}

.cta-bg::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    background: #fff;
    right: calc((1100/1600)*100%);
}

.cta-bg canvas {
    opacity: 0.25;
    background-position-y: top;
}

/* Home: Properties */
.listings {
    overflow: hidden;
}

.listings-wrap {
    position: relative;
    padding: 6.75em 0 6.625em;
}

.listings-wrap::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    width: 100vw;
    background: #fff;
    right: calc((360/1400)*100%);
}

.listings-wrap::after {
    position: absolute;
    content: '';
    bottom: 0;
    width: 50vw;
    height: 50%;
    z-index: -1;
    left: calc((1000 / 1400)* 100%);
    background: linear-gradient(to top, #fff 20%, transparent);
}

.listings-wrap::before,
.listings-wrap::after {
    bottom: -2px;
}

.listings-list {
    position: relative;
    padding-top: 3.125em;
}

.listings-slider:not(.slick-initialized) {
    display: flex;
    justify-content: space-between;
}

.listings-slider:not(.slick-initialized) .listing-card:nth-child(n+4) {
    display: none;
}

.listings-slider.slick-initialized {
    margin: 0 -0.531em -3.875em;
}

.listings-slider.slick-initialized::before {
    position: absolute;
    content: '';
    top: 0;
    /* left: -0.531em;
    right: -0.531em; */
    left: 0.438em;
    right: 0.438em;
    bottom: 9.625em;
    box-shadow:
        0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2),
        0px -4.375em 2.375em 0.25em rgba(0, 0, 0, 0.2) inset;
}

.listings-slider.slick-initialized .slick-slide > div {
    margin: 0 0.531em 3.875em;
}

.listing-card {
    position: relative;
}

.listing-card a {
    display: block;
    margin-bottom: 5.625em;
}

.listing-card-photo {
    background: #000;
    transition: var(--default-transition);
}

.listing-card-photo img {
    opacity: 0.80;
}

.listing-card-photo .site-button {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.listing-card-photo .site-button {
    color: #fff;
    border-color: #fff;
}

.listing-card-photo .site-button::before {
    background: #fff;
}

.listing-card-photo .site-button:hover {
    border-color: var(--secondary);
}

.listing-card-photo .site-button:hover::before {
    background: var(--secondary);
}

.listing-card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    text-align: center;
    background: var(--primary);
    width: calc((360/450)*100%);
    border: 1px solid #636363;
    transition: var(--default-transition);
    box-shadow: 0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2);
    padding: 2.125em 3.125em 2.25em;
    overflow: hidden;
}

.listing-card-info .price {
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    font-size: 1.875em;
    font-family: var(--font-family-title);
}

.listing-card-info .address {
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    font-size: 1.25em;
    margin: 1.2em 0 0.9em;
}

.listing-card-info .features {
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: -2.5em;
    transition: var(--default-transition);
    opacity: 0;
}

.listing-card a:hover .listing-card-photo {
    background: #808080;
}

.listing-card a:hover .listing-card-photo img {
    opacity: 0.20;
}

.listing-card a:hover .listing-card-photo .site-button {
    opacity: 1;
}

.listing-card a:hover .listing-card-info {
    background: var(--secondary);
}

.listing-card a:hover .listing-card-info .features {
    margin-bottom: 0;
    opacity: 1;
}

.listings-buttons .site-button {
    position: absolute;
    bottom: 100%;
    right: 0;
    min-width: 20em;
    margin-bottom: 1.143em;
}

.listings-buttons .site-arrow {
    display: none !important;
}

.listings-bg {
    overflow: hidden;
    background: var(--primary);
}

/* Home: Communities */
.communities-wrap {
    padding: 5em 0 6.5em;
}

.communities-header {
    display: flex;
    align-items: flex-start;
}

.communities-text {
    width: calc((700 / 1400)* 100%);
    text-align: right;
    margin-left: auto;
}

.communities-text .subtitle {
    font-weight: 400;
    font-size: 1.438em;
    line-height: 1.217;
    color: var(--primary);
    letter-spacing: 0.025em;
    margin: 0.522em 0 0.391em;
    font-family: var(--font-family-title);
}

.communities-text p {
    font-weight: 400;
    font-size: 0.938em;
    line-height: 1.733;
    letter-spacing: 0.05em;
    margin: 0;
}

.communities-list {
    margin: 3.25em 0 0;
}

.communities-slider:not(.slick-initialized) {
    display: flex;
    justify-content: space-between;
}

.communities-slider:not(.slick-initialized) .community-card:nth-child(n+5) {
    display: none;
}

.communities-slider.slick-initialized {
    margin: 0 -0.438em -4.375em;
}

.communities-slider.slick-initialized::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0.438em;
    width: 21.25em;
    bottom: 4.375em;
    transition: var(--default-transition);
    box-shadow: 0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2);
}

.communities-slider.slick-initialized::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0.438em;
    z-index: -1;
    bottom: 4.375em;
    width: 21.25em;
    transition: var(--default-transition);
    box-shadow: 0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2);
}

.communities-slider.slick-initialized::before,
.communities-slider.slick-initialized::after {
    opacity: 0;
}

.communities-slider.first-slide.slick-initialized::before,
.communities-slider.last-slide.slick-initialized::after {
    opacity: 1;
}

.communities-slider.first-slide.slick-initialized .community-card a:hover .community-card-photo,
.communities-slider.last-slide.slick-initialized .community-card a:hover .community-card-photo {
    box-shadow: none;
}

.communities-slider.slick-initialized .slick-slide > div {
    margin: 0 0.438em 4.375em;
}

.community-card {
    position: relative;
}

.community-card-photo {
    transition: var(--default-transition);
}

.community-card-photo::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.80;
    height: 43.4375%;
    background: linear-gradient(to top, #000, transparent);
}

.community-card-photo::after {
    position: absolute;
    content: '';
    top: 0.438em;
    left: 0.438em;
    right: 0.438em;
    bottom: 0.438em;
    background-color: transparent;
    border: 1px solid rgba(203, 208, 220, 0.7);
    transition: var(--default-transition);
    z-index: 1;
}

.community-card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    text-align: center;
    transition: var(--default-transition);
}

.community-card-info strong {
    font-weight: 400;
    line-height: 1.3;
    font-size: 1.875em;
    text-align: center;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    margin-bottom: 0.667em;
    display: block;
}

.community-card-info .site-button {
    opacity: 0;
    margin-bottom: -1.143em;
    border-color: #fff;
}

.community-card-info .site-button::before {
    background: #fff;
}

.community-card-info .site-button:hover {
    border-color: var(--secondary);
}

.community-card-info .site-button:hover::before {
    background: var(--secondary);
}

.community-card a:hover .community-card-photo {
    box-shadow: 0px 1.875em 2.25em 0.25em rgba(0, 0, 0, 0.2);
}

.community-card a:hover .community-card-photo::after {
    border-color: transparent;
    background: rgba(128, 128, 128, 0.75);
}

.community-card a:hover .community-card-info {
    bottom: 50%;
    transform: translateY(50%);
}

.community-card a:hover .community-card-info .site-button {
    opacity: 1;
    margin-bottom: 0;
}

.communities-bg canvas {
    background-position-y: 31%;
    -webkit-filter: invert();
    filter: invert();
    opacity: 0.30;
}

/* Home: Awards */
.awards-wrap {
    padding: 6.688em 0 5.5em;
}

.awards-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-header .site-title {
    color: var(--secondary);
}

.awards-stats {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 6.25em 0 2.25em;
}

.awards-stats-num {
    text-align: center;
}

.awards-stats-num strong {
    display: block;
    font-size: 5em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.875;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.awards-stats-num p {
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.25em;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 1.15em 0;
}

.awards-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.8em;
}

.awards-list-logo {
    text-align: center;
    width: calc((162 / 1400)* 100%);
}

.awards-list-logo img {
    -webkit-filter: brightness(0) invert();
    filter: brightness(0) invert();
    max-width: 6em;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.awards-list-logo p {
    font-size: 1em;
    line-height: 1.25;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0.938em 0;
}

.awards-bg {
    height: auto;
    background: var(--primary);
}

.awards-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--primary), transparent);
}

.awards-bg canvas {
    background-position-y: top;
    -webkit-filter: grayscale();
    filter: grayscale();
    opacity: 0.10;
}

/* Home: Testimonials */
.reviews {
    padding-bottom: min(143px, 8.9375vw);
}

.reviews::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background: var(--primary);
}

.reviews-wrap {
    background: #fff;
    padding: 6.125em 11.25em 5.813em;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reviews-header::after {
    position: absolute;
    content: '';
    top: -4.125em;
    margin: 0 auto;
    width: 11.688em;
    height: 11.563em;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../images/icon-quotes.png');
    -webkit-filter: brightness(0);
    filter: brightness(0);
    opacity: 0.10;
}

.reviews-slider {
    padding: 1.313em 0 4.5em;
}

.reviews-slider:not(.slick-initialized) .review-card:nth-child(n+2) {
    display: none;
}

.review-card {
    text-align: center;
}

.review-card strong {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.167;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-family-title);
}

.reviews-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em;
}

.reviews-buttons .site-button {
    min-width: 22.857em;
}

.reviews-bg {
    top: auto;
    bottom: 0;
    height: auto;
    background: var(--primary);
}

.reviews-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--primary) 20%, transparent 125%);
}

.reviews-bg canvas {
    opacity: 0.60;
    background-position-y: top;
}

/* Home: Socials */
.socials-wrap {
    padding: 7.625em 0 6.563em;
}

.socials-list {
    display: flex;
    gap: 3.125em;
}

.socials-list:not(:last-child) {
    margin-bottom: 4.813em;
}

.socials-list:nth-child(odd) {
    flex-flow: row-reverse;
}

.socials-header {
    padding-top: 2.313em;
    padding-top: 1em;
    margin-right: auto;
}

.socials-header a {
    transition: var(--default-transition);
}

.socials-header a:hover {
    color: var(--secondary);
    opacity: 0.6;
}

.socials-list:nth-child(odd) .socials-header {
    margin-right: 0;
    margin-left: auto;
}

.socials-header strong {
    line-height: 1;
    font-weight: 600;
    font-size: 1.25em;
    display: inline-block;
    letter-spacing: 0.1em;
    color: var(--secondary);
    padding-left: 1.5em;
    margin-top: 1.15em;
}

.socials-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.25em;   
    margin-top: 1.5em;
}

.socials-buttons a {
    height: 1.25em;
    color: var(--primary);
}

.socials-buttons a i {
    font-size: 1.375em;
    top: -0.091em;
}

.socials-posts {
    display: flex;
    align-items: center;
    width: calc((882/1400)*100%);
    gap: 0.625em;
}

.social-post {
    background: #000;
    width: calc((213/882)*100%);
    transition: var(--default-transition);
}

.social-post img {
    opacity: 0.70;
}

.social-post i.ai-font-instagram {
    position: absolute;
    top: 0.286em;
    left: 0.321em;
    opacity: 0.50;
    color: #fff;
    width: 0.786em;
    height: 0.786em;
    font-size: 1.75em;
}

.social-post i.ai-font-facebook {
    position: absolute;
    opacity: 0.50;
    color: #fff;
    top: 0.345em;
    left: 0.448em;
    width: 0.448em;
    height: 0.793em;
    font-size: 1.813em;
}

.social-post a:hover img {
    opacity: 1;
}

.socials-bg {
    height: auto;
}

.socials-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #fff, transparent);
}

.socials-bg canvas {
    transform: scaleY(-1);
    background-position-y: 39.75%;
    -webkit-filter: invert();
    filter: invert();
}

@media screen and (max-width: 991px) {
    .slideshow-slider > canvas {
        min-height: 400px;
    }

    .slideshow-tagline {
        bottom: 50%;
        text-align: center;
        transform: translateY(50%);
    }

    .slideshow-cta {
        justify-content: center;
        flex-flow: row wrap;
        align-items: center;
        padding-right: 0;

        width: 100%;
        position: static;
        padding: max(8vw, 65px) 30px;
        background: var(--primary);
    }

    .slideshow-cta a {
        height: 7em;
        text-align: center;
        align-items: center;
        width: calc(50% - 0.625em);
        padding: 1em 2em;
    }

    .slideshow-cta a:nth-child(odd) {
        margin-bottom: 0;
    }

    .slideshow-cta.first-slide a::before {
        -webkit-filter: none;
        filter: none;
    }

    .slideshow-cta a span {
        z-index: 1;
        transform: none;
        writing-mode: initial;
        display: inline-block;
        padding: 0.25em 0 0 0.25em;
        margin: 0 auto;
        height: auto;
        width: auto;
    }

    .slideshow-cta a span::before {
        display: none;
    }

    .search-wrap {
        padding: max(8vw, 65px) 0;
    }

    .search-form-fields {
        flex-flow: row wrap;
        justify-content: center;
        padding: 2em 0;
    }

    .search-form-field {
        width: calc(50% - 0.625em);
    }

    .search-form-field.lg {
        width: 100%;
    }

    .search-form-field .bootstrap-select .dropdown-toggle::after {
        right: 0.25em;
    }

    .search-form-button {
        width: 100%;
        justify-content: center;
        margin-top: 1em;
    }

    .about-wrap {
        display: flex;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        flex-direction: column;
    }

    .about-text {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .about-text p {
        padding-right: 0;
    }

    .about-photo {
        width: 100%;
        max-width: 600px;
        margin: 3em auto 0;
    }

    .about-photo .site-image {
        margin: 0 auto;
    }

    .about-photo-bg {
        left: 50%;
        width: 120%;
        transform: translateX(-50%);
    }

    .cta-wrap {
        flex-direction: column-reverse;
        padding: max(10vw, 65px) 0 0;
    }

    .cta-wrap::before {
        top: auto;
        left: -15%;
        right: auto;
        bottom: -1px;
        width: 125vw;
        height: 46%;
    }

    .cta-links {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .cta-link-item canvas {
        background-size: cover;
        background-position: center !important;
    }

    .cta-text {
        margin: 0 auto 4em;
        width: 100%;
    }

    .cta-text p {
        padding-left: 0;
        text-align: center;
    }

    .listings {
        background: #fff;
    }

    .listings-wrap::before {
        right: -15%;
        width: 115vw;
        background: transparent;
    }

    .listings-slider.slick-initialized {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .listings-slider.slick-initialized::before {
        display: none;
    }

    .listing-card-photo img {
        opacity: 1;
    }

    .listing-card-info .features {
        margin-bottom: 0;
        opacity: 1;
    }

    .listings-buttons {
        text-align: center;
    }

    .listings-buttons .site-button {
        position: relative;
        margin: 4em 0 0;
        color: #000;
    }

    .communities-header {
        display: block;
    }

    .communities-text {
        width: 100%;
        text-align: center;
        margin: 2em auto 0;
    }

    .communities-slider.slick-initialized {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .communities-slider.first-slide.slick-initialized::before,
    .communities-slider.last-slide.slick-initialized::after {
        opacity: 0;
        display: none;
    }

    .community-card-photo canvas {
        max-height: 600px;
    }

    .awards-stats {
        flex-direction: column;
        align-items: center;
        padding-bottom: 4em;
        gap: 3em;
    }

    .awards-stats-num strong {
        font-size: 4em;
    }

    .awards-stats-num p {
        font-size: 1em;
        padding-left: 0.25em;
    }

    .awards-list {
        flex-flow: row wrap;
    }

    .awards-list-logo {
        width: 22%;
        min-width: 180px;
    }

    .awards-bg {
        height: 110%;
    }

    .reviews-wrap {
        padding: 8.125em 3.25em 5.813em;
    }

    .reviews-buttons {
        flex-flow: row wrap;
        max-width: 500px;
        margin: 0 auto;
    }

    .reviews-buttons .site-button {
        order: 1;
    }

    .socials-header,
    .socials-list:nth-child(odd) .socials-header {
        text-align: center;
        margin: 0 auto;
    }

    .socials-header strong {
        padding-left: 0;
    }

    .socials-list,
    .socials-list:nth-child(odd) {
        flex-direction: column;
    }

    .socials-posts {
        gap: 1em;
        width: 100%;
        flex-flow: row wrap;
        max-width: 600px;
        margin: 0 auto;
    }

    .social-post {
        width: calc(50% - 0.5em);
    }
}

@media screen and (max-width: 767px) {
    .slideshow-tagline h1 {
        font-size: 1.5em;
    }

    .cta-link-item canvas {
        background-position-y: -12vw;
    }

    .cta-link-item:nth-child(2) canvas {
        background-position-y: -23.875vw;
    }

    .cta-link-item:nth-child(3) canvas {
        background-position-y: -35vw;
    }
}

@media screen and (max-width: 567px) {
    .slideshow-cta a {
        font-size: 0.85em;
        height: 7.5em;
        width: 100%;
    }

    .search-header h2 {
        font-size: 2em;
        line-height: 1.4;
        letter-spacing: 0.05em;
    }

    .socials-wrap {
        padding-top: 5em;
    }

    .cta-wrap::before {
        height: 43%;
    }

    .cta-link-item strong {
        font-size: 0.8em;
    }

    .cta-text {
        margin-bottom: 5em;
    }

    .cta-bg {
        height: 100%;
    }
}

@media screen and (max-width: 480px) {
    .slideshow-tagline h1 {
        font-size: 1.25em;
    }

    .slideshow-tagline p {
        font-size: 1.125em;
    }

    .listing-card a {
        margin-bottom: 0;
    }

    .listing-card-info {
        width: 100%;
        box-shadow: none;
        font-size: 0.8em;
        position: static;
    }

    .communities-header .site-title span {
        font-size: 1.8em;
    }

    .cta-text .site-title span {
        font-size: 1.8em;
    }

    .reviews-wrap {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .awards-header .site-title span {
        font-size: 1.65em;
    }
}