
@charset "utf-8";
/* Caliber Construction 2024 - Mobile Essentials */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
	--dark-color: #2E3A41;
	--light-color: #E8E6DB;
	--lighter-color: #F5F4EF;
	--secondary-color: #90866C;
	--complement-color: #A09C90;
	--accent-color: #5B6B8D;
	--main-font: "Anek Devanagari", sans-serif;
	--serif-font: "Anek Devanagari", sans-serif; /* single-typeface site: was Antonia */
	--brand-bg: #DDD9CA;
}
/* latin-ext */
@font-face {
	font-family: 'Anek Devanagari';
	font-style: normal;
	font-weight: 100 800;
	font-stretch: 100%;
	font-display: swap;
	src: url("/assets/scripts/fonts/anek-devanagari-ext.woff2") format('woff2');
	unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
	font-family: 'Anek Devanagari';
	font-style: normal;
	font-weight: 100 800;
	font-stretch: 100%;
	font-display: swap;
	src: url("/assets/scripts/fonts/anek-devanagari.woff2") format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
img {
	vertical-align: middle;
}
.sans {
	font-family: var(--main-font);
}
.serif {
	font-family: var(--serif-font);
}
.white {
	color: #FFF;
}
.white-bg {
	background-color: var(--brand-bg);
}
.dark, .black {
	color: var(--dark-color);
}
.dark-bg, .black-bg {
	background-color: var(--dark-color);
}
.secondary {
	color: var(--secondary-color);
}
.secondary-bg {
	background-color: var(--secondary-color);
}
.complement, .complement a, .complement a:visited {
	color: var(--complement-color);
}
.complement a, .complement a:visited, a.complement, a.complement:visited {
	color: var(--complement-color) !important;
}
.complement-bg {
	background-color: var(--complement-color);
}
.light {
	color: var(--light-color);
}
.light a, .light a:visited, a.light, a.light:visited {
	color: var(--light-color) !important;
}
.light-bg {
	background-color: var(--light-color);
}
.lighter {
	color: var(--lighter-color);
}
.lighter-bg {
	background-color: var(--lighter-color);
}
.shadow {
	text-shadow: 0px 0px 16px rgba(0,0,0,0.6);
}
.group:after {
	display: block;
	width: 100%;
	clear: both;
}
.wrapper {
	overflow-x: hidden;
	max-width: 2100px;
	margin: auto;
}

body, html {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	color: var(--dark-color);
	font-family: var(--main-font);
	font-size: 20px;
	font-weight: 300;
	background-color: var(--brand-bg);
}
html {
	scroll-padding-top: 76px;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
.svg-logo {
	fill: var(--light-color);
}
.logo, .transitional {
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.logo {
	display: block;
	padding: 12px;
	max-width: 200px;
	margin: auto;
}
.logo svg {
	width: 100%;
}
.header.scrolled, #hidenav:checked ~ .header {
	background-color: var(--dark-color);
}
.header.scrolled .svg-logo, #hidenav:checked ~ .header .svg-logo {
	fill: var(--complement-color);
}
.header.scrolled .logo, #hidenav:checked ~ .header .logo {
	max-width: 100px;
}
.yoink {
	position: fixed;
	display: block;
	top: 0;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
#main-nav {
	display: block;
	overflow: hidden;
	visibility: hidden;
	max-height: 0;
	padding-top: 0;
	width: 100%;
	pointer-events: none;
}
#hidenav:checked ~ .header #main-nav {
	visibility: visible;
	max-height: 1000px;
	padding-top: 32px;
	pointer-events: all;
}
.hidenav-toggle {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hidenav-toggle::before, .hidenav-toggle::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 0;
	border-top: solid 2px var(--light-color);
	transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.hidenav-toggle::before {
	top: 12px;
}
.hidenav-toggle::after {
	bottom: 12px;
}
#hidenav:checked ~ .header .hidenav-toggle::before {
	transform: rotate(45deg);
	top: 50%;
}
#hidenav:checked ~ .header .hidenav-toggle::after {
	transform: rotate(-45deg);
	bottom: 50%;
}
#hidenav:checked ~ .header .hidenav-toggle::before, #hidenav:checked ~ .header .hidenav-toggle::after, .header.scrolled .hidenav-toggle::before, .header.scrolled .hidenav-toggle::after {
	border-color: var(--complement-color);
}
.header-text {
	margin: auto;
	color: var(--light-color);
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 2px;
	z-index: 2;
}
.header.scrolled .header-text, #hidenav:checked ~ .header .header-text {
	display: none;
}
.mainnav, .dropdown ul {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: left;
}
.mainnav a, .mainnav a:visited {
	color: var(--complement-color);
	text-decoration: none;
}
.mainnav a:hover {
	color: var(--light-color);
}
.toplink > a, .toplink > a:visited, .dropdown > a, .dropdown > a:visited, .header-link {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 12px;
}
.wrapper:before {
	position: relative;
	display: block;
	content: "";
	height: 85px;
}
.header-link, .header-link:visited {
	color: var(--complement-color);
	text-decoration: none;
	display: none;
}
.header-link:hover {
	color: var(--light-color);
}
#hidenav:checked ~ .header .header-link, #hidenav:checked ~ .header .header-link:visited {
	display: block;
}
.dropdown ul a, .dropdown ul a:visited {
	padding: 4px 0 4px 12px;
	font-size: 20px;
	font-weight: 500;
}
.page {
	position: relative;
	z-index: 3;
}
.relative, .relative-box {
	position: relative;
}
.container {
	width: 100%;
	max-width: 2000px;
	margin: auto;
}
.full-width {
	width: 100%;
}
.nine-sixty, .container.nine-sixty {
	max-width: 960px;
}
.seven-twenty, .container.seven-twenty {
	max-width: 720px;
}
.content {
	padding: 32px;
}
.content-block {
	margin-bottom: 64px;
}
.padding-block {
	padding-top: 64px;
	padding-bottom: 64px;
}
h1, h2, h3 {
	margin: 0 auto;
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 0.5px;
}
h2.small, h3.small {
	margin: 24px auto;
	font-size: 24px;
}
.team-member {
	margin-bottom: 24px;
}
.team-member h3 {
	margin-top: 12px;
	line-height: 28px;
}
.team-member h3 span {
	display: block;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none !important;
}
p.small, .small p {
	font-size: 16px;
}
.hero-image h1 {
	padding: 12px;
	width: 100%;
	color: var(--light-color);
	background-color: var(--dark-color);
}
.hero-image h1 span, .lead-title span {
	display: table;
	margin: auto;
	padding: 12px;
	border-top: solid 2px var(--light-color);
	font-size: 24px;
}
@media (max-width: 600px) {
	h1, h2, h3 { font-size: 26px; }
	.hero-image h1 { font-size: 22px; padding: 16px 14px; line-height: 1.3; }
	.hero-image h1 span, .lead-title span { font-size: 14px; padding: 8px; letter-spacing: 1px; }
	.spaced { letter-spacing: 1px; }
	h2.spaced, h3.spaced { letter-spacing: 2px; }
	.slider { -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%); }
}
.intro-content p {
	margin: 0 auto;
	font-size: 20px;
	line-height: 26px;
}
.align-left {
	text-align: left;
}
.align-center {
	text-align: center;
}
.align-right {
	text-align: right;
}
.uppercase {
	text-transform: uppercase;
}
.normalcase {
	text-transform: unset;
}
.spaced {
	letter-spacing: 1px;
}
h2.spaced, h3.spaced {
	letter-spacing: 2px;
}
p.big, .big p {
	font-size: 28px;
	font-weight: 600;
}
.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex-start, .flex.flex-start {
	justify-content: flex-start;
}
.flex-center, .flex.flex-center {
	justify-content: center;
}
.flex-end, .flex.flex-end {
	justify-content: flex-end;
}
.flex-vertical-justify {
	flex-direction: column;
	justify-content: space-between
}
.hero-image {
	position: relative;
}
.hero-image img {
	position: relative;
	width: 100%;
	height: auto;
	max-width: 2000px;
	z-index: 1;
}
.hero-image:before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(46, 58, 65, 0.5) 1%, rgba(46, 58, 65, 0.5) 25%, rgba(46, 58, 65, 0) 100%);
	z-index: 2;
}
.no-overlay.hero-image:before {
	display: none;
}
.underlayed {
	position: relative;
	z-index: 2;
}
.pattern-overlay {
	position: relative;
	width: 98%;
	height: 100px;
	pointer-events: none;
	z-index: 3;
}
.pattern-overlay img {
	position: absolute;
	width: calc(100% + 64px);
	height: auto;
	top: -50%;
	left: -32px;
}
.pattern-overlay.short img {
	top: -70%;
}
.overlayed {
	position: relative;
	z-index: 4;
}
.page-image img {
	width: 100%;
	vertical-align: middle;
}
.line-bottom {
	border-bottom: solid 2px var(--complement-color);
}
.locations-list a, .locations-list a:visited {
	color: var(--dark-color);
	font-family: var(--main-font);
	font-weight: 600;
	padding-right: 12px;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
}
.contact-cta, .contact-cta:visited {
	position: absolute;
	display: block;
	font-size: 36px;
	line-height: 42px;
	text-decoration: none;
	left: 36px;
	bottom: 0;
}
.contact-cta span {
	display: block;
	padding-top: 8px;
}
.has-cta {
	position: relative;
	padding-bottom: 144px;
}
.partner-logo {
	border-right: solid 2px var(--dark-color);
	margin-bottom: 36px;
	text-align: center;
}
.partner-logo img {
	width: 80%;
	height: 90px;
	object-fit: contain;
	object-position: center;
}
.partner-logo:nth-child(3n) {
	border-right: none;
}
.portfolio-list-item {
	padding: 12px;
}
.portfolio-neighborhood {
	margin-top: 0;
	margin-bottom: 24px;
}
.portfolio-image {
	position: relative;
	display: block;
	width: 100%;
	min-height: 540px;
}
.portfolio-image img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.footer {
	position: relative;
	padding-top: 64px;
	color: var(--complement-color);
	background-color: var(--dark-color);
	z-index: 4;
}
.divider {
	width: 100%;
	margin: 64px 0;
	border-top: solid 2px var(--complement-color);
}
.footer-logo {
	max-width: 200px;
}
.footer a, .footer a:visited {
	color: var(--complement-color);
}
.footer a:hover {
	color: var(--light-color);
}
.footer .social-icons {
	margin-right: 48px;
}
.social-icons a, .social-icons a:visited {
	display: block;
	width: 24px;
	height: 24px;
	background-image: url("/assets/elements/images/social-icons.png");
	background-repeat: no-repeat;
	background-size: 72px;
	background-position: top left;
	overflow: hidden;
	text-indent: 50px;
	margin-right: 8px
}
.social-icons a.facebook, .dark-social .social-icons a.facebook:hover {
	background-position: 0 0;
}
.social-icons a.facebook:hover {
	background-position: -24px 0;
}
.dark-social .social-icons a.facebook {
	background-position: -48px 0;
}
.social-icons a.facebook:hover {
	background-position: -24px 0;
}
.social-icons a.instagram, .dark-social .social-icons a.instagram:hover {
	background-position: 0 -24px;
}
.dark-social .social-icons a.instagram {
	background-position: -48px -24px;
}
.social-icons a.instagram:hover {
	background-position: -24px -24px;
}
.complement a, .complement a:visited {
	color: var(--complement-color);
}
.complement a:hover {
	color: var(--light-color);
}
/*Interactives*/

/* Infinite Slider */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: scrollSlider 28s linear infinite;
}

/* This makes the shortcode er stop acting like one huge block */
.slider-track > div {
  display: contents !important;
}

/* This is the actual image size */
.slider-track img {
  width: 400px !important;
  height: 500px !important;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  margin-right: 24px;
}

@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.port-lead-image img {
	object-fit: cover;
	object-position: center;
	max-height: 600px;
}
.port-overview {
	margin-bottom: 24px;
}
.port-gallery {
	width: 100%;
	list-style-type: none;
	padding: 0;
	margin: 0;
	column-count: 2;
	column-gap: 24px;
}
.port-gallery a {
	position: relative;
	display: block;
	overflow: hidden;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.port-gallery a:hover {
	-webkit-transform: scale(0.95, 0.95);
	-moz-transform: scale(0.95, 0.95);
	transform: scale(0.95, 0.95);
}
.port-gallery img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 24px;
	object-fit: cover;
}
.review-thumb {
	position: relative;
	padding: 24px 24px 48px;
	margin-bottom: 56px !important;
}
.stars {
	display: flex;
	justify-content: center;
	margin: 16px auto;
}
.stars i {
	display: block;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAVCAYAAACt4nWrAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAS1JREFUeNqsVcENwjAMDExQfohXePAGNoAJKBOUbgATICZghMIG3YCOUN486AvxgxE4IxeFkJAUEsmy3NpX93xJWsJzXS+nCC6G5d3e4O5T0xb+aw3L2IvQ4LHmw4CDkhGc5FByHKzzxBH/BR474t/AQYFUKBEKNdJV22IA6sTG49DSaQ47WmpKyDWvwQ9wExFuFQCf1rSsYFUgYMLZvDjHV0q4Mf/qP4vqx8ArXpxrA1zAbWFRA1A6DlYA3X0M1LJpsi9DfhseLOW/d0uRE/eeXe9NwC6dJz/uXicttEHODTjvo/vKt3Ob5ndN8m3gM4N2SWIpS7Zy5AubFEmCN027qXr7cE6mHQsd/YYydT5StEugc72IYnpO7zlPeMr22dnS59Srh0/5pncPAQYAJR9evXRi2+EAAAAASUVORK5CYII=");
	background-repeat: no-repeat;
	background-position: center;
	width: 23px;
	height: 21px;
	margin: auto 8px;
	overflow: hidden;
	text-indent: -9999px;
}
.stars[data-stars="1"] .s2, .stars[data-stars="1"] .s3, .stars[data-stars="1"] .s4, .stars[data-stars="1"] .s5, .stars[data-stars="2"] .s3, .stars[data-stars="2"] .s4, .stars[data-stars="2"] .s5, .stars[data-stars="3"] .s4, .stars[data-stars="3"] .s5, .stars[data-stars="4"] .s5 {
	display: none;
}
.rt-content {
	font-size: 14px;
}
.rt-name {
	text-align: right;
	font-weight: 700;
	margin-top: 24px;
}
.rt-source {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: solid 4px var(--dark-color);
	left: 0;
	right: 0;
	bottom: -40px;
	margin: auto;
	background-image: url("/assets/elements/images/review-spritesheet.png");
	background-color: #FFF;
	background-size: 80px;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999px;
	overflow: hidden;
}
.hide-field[data-content=""], .hide-field[data-content="0"], .hide-field[data-content="$"] {
	display: none;
}
.home-thumb {
	position: relative;
	width: 100%;
	min-height: 340px;
	border: solid 4px var(--dark-color);
}
.thumb-info, .thumb-image img, .link-overlay {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
	z-index: 1;
}
.link-overlay {
	text-indent: -9999px;
	z-index: 3;
}
.thumb-info {
	color: var(--light-color);
	background-color: rgba(0, 0, 0, 0.4);
	opacity: 1;
	z-index: 2;
}
.thumb-info h3, .thumb-info h4 {
	font-size: 24px;
	margin: 4px;
}
.thumb-info h3 span {
	display: block;
	font-size: 14px;
}
.thumb-info, .list-price:before {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.thumb-icons {
	max-width: 240px;
	margin: auto;
}
.thumb-icons span, .detail-icons span {
	position: relative;
	display: block;
	width: 50%;
	font-size: 20px;
	text-align: left;
	padding: 8px 8px 8px 38px;
}
.detail-icons span {
	width: 25%;
	padding: 8px 8px;
	text-align: center;
}
.thumb-icons span:before, .detail-icons span:before {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	top: 4px;
	left: 0;
	background-size: 60px;
	background-image: url("/assets/elements/images/listing-icons.png");
	background-repeat: no-repeat;
}
.detail-icons span:before {
	position: relative;
	margin: 0 auto 8px;
}
.list-price {
	margin-top: 8px;
}
.list-price:before {
	display: table;
	content: "";
	margin: auto;
	width: 0;
	max-width: 0;
	height: 3px;
	background-color: var(--light-color);
}
.home-thumb:hover .list-price:before {
	width: 100%;
	max-width: 180px;
}
.icon-beds:before {
	background-position: 0 0;
}
.white .icon-beds:before {
	background-position: -30px 0;
}
.icon-sqft:before {
	background-position: 0 -30px;
}
.white .icon-sqft:before, .white .thumb-icons span.icon-sqft:before {
	background-position: -30px -30px;
	top: 8px;
}
.icon-baths:before {
	background-position: 0 -60px;
}
.white .icon-baths:before {
	background-position: -30px -60px;
}
.icon-date:before {
	background-position: 0 -120px;
}
.white .icon-date:before {
	background-position: -30px -120px;
}
.icon-gbays:before {
	background-position: 0 -150px;
}
.white .icon-gbays:before {
	background-position: -30px -150px;
}
.thumb-status {
	display: table;
	margin: 8px auto;
	padding: 8px 12px 2px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 18px;
	border: solid 2px var(--light-color);
}
.status-banner {
	position: absolute;
	display: block;
	top: 24px;
	left: 0;
	color: #FFF;
	font-size: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 12px;
	background-color: var(--main-color);
	z-index: 10;
}
.service-thumb {
	margin-top: 64px;
}
.service-thumb h2 {
	margin-top: 12px;
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 4px;
	text-align: left;
	text-transform: uppercase;
}
.service-thumb h3 {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 2px;
	text-align: left;
}
.st-image img {
	position: relative;
	width: 100%;
	height: auto;
	top: -56px;
	margin-bottom: -56px;
}
.st-content {
	font-size: 20px;
	line-height: 24px;
}
.st-content .cta, .st-content .cta:visited {
	position: relative;
	display: block;
	font-size: 22px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
}
.st-content .cta:after {
	position: relative;
	display: inline-block;
	content: "";
	margin-left: 12px;
	width: 16px;
	height: 16px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAhCAYAAAA/F0BXAAAACXBIWXMAAAsSAAALEgHS3X78AAABGklEQVRIic2UvY2DQBBGH9blJkNkPokCKMEluAMCF+AWuBK2gJW8HVEAksksZ+6ACwx3/Cy7s+DAEyFg3nw78+1EbduyNXabCVOI0So2Wh1CIVF/HKPVCbgCe8AAZXG+NKFK8g4AUAA3o9VVoszXExFM2lgnLHQ6Q1i8FjKE5VshAM8tEAN8F+dL1b/4Cky2ekcC8RrPBRG7NhreYqNVCRykyVbI2nj/Klgbo8Y+7vUROEoSkzQr++e/njzudQw0/K8DX/z0oOFx4gAAvKbICJKkWcPLG9IoZ5DpB0+YrugcEqBmVMw2Yp+akQorRKBmVmTJbEtqZioWIQ41VrjL9tMEqwonxKLGqgI8q6C7CjnwTNKsWvrvc/bJL0OFa7AGMSzOAAAAAElFTkSuQmCC");
	background-repeat: no-repeat;
	background-position: top center;
}
.st-content .cta:hover::after {
	background-position: bottom center;
}
.attribution {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	padding: 8px;
	text-align: right;
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		/* Translate by the width of 4 images (3 visible, 1 scrolled off) */
		transform: translateX(calc(-133.333% - 24px * 4));
	}
}
@media (max-width: 768px) {
	.dropdown > a, .dropdown > a:visited {
		position: relative;
		padding-right: 24px;
	}
    .wrapper:before {
    	position: relative;
    	display: block;
    	content: "";
    	height: 73px;
    }
	.footer {
		padding-top: 40px;
		padding-bottom: 32px;
		text-align: center;
	}

	.footer .content {
		padding: 24px;
	}

	.footer-logo {
		max-width: 160px;
		margin: 0 auto 24px auto;
		display: block;
	}

	.footer .flex {
		flex-direction: column;
		align-items: center;
	}

	.footer .flex-half {
		width: 100%;
		margin-bottom: 24px;
		text-align: center;
	}

	.footer .social-icons {
		margin-right: 0;
		margin-top: 12px;
		display: flex;
		justify-content: center;
		gap: 12px;
	}

	.social-icons a,
	.social-icons a:visited {
		margin-right: 0;
	}

	.divider {
		margin: 32px 0;
	}

  .pattern-overlay{width: 97%;}
	.dropdown > a:after {
		position: absolute;
		display: block;
		content: "";
		color: var(--complement-color);
		top: 20px;
		right: 0;
		margin: auto;
		width: 16px;
		height: 16px;
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAhCAYAAAA/F0BXAAAACXBIWXMAAAsSAAALEgHS3X78AAABGklEQVRIic2UvY2DQBBGH9blJkNkPokCKMEluAMCF+AWuBK2gJW8HVEAksksZ+6ACwx3/Cy7s+DAEyFg3nw78+1EbduyNXabCVOI0So2Wh1CIVF/HKPVCbgCe8AAZXG+NKFK8g4AUAA3o9VVoszXExFM2lgnLHQ6Q1i8FjKE5VshAM8tEAN8F+dL1b/4Cky2ekcC8RrPBRG7NhreYqNVCRykyVbI2nj/Klgbo8Y+7vUROEoSkzQr++e/njzudQw0/K8DX/z0oOFx4gAAvKbICJKkWcPLG9IoZ5DpB0+YrugcEqBmVMw2Yp+akQorRKBmVmTJbEtqZioWIQ41VrjL9tMEqwonxKLGqgI8q6C7CjnwTNKsWvrvc/bJL0OFa7AGMSzOAAAAAElFTkSuQmCC");
		background-repeat: no-repeat;
		background-position: top center;
	}
	.dropdown.active > a {
		color: var(--light-color);
	}
	.dropdown.active > a:after {
		background-position: bottom center;
	}
	.dropdown ul {
		display: none;
	}
	.dropdown.active > ul {
		display: block;
	}
	.mainnav > li, .mainnav a, .mainnav a:visited {
		width: 100%;
	}
	.header.scrolled > .content, #hidenav:checked ~ .header > .content {
		padding: 8px 12px;
	}
	.flex-third, .flex-half {
		width: 100%;
	}
	.partner-logo {
		border-right: none;
	}
}

@media (min-width: 768px){
  
@charset "utf-8";
/* Caliber Construction 2024 - Desktop Styles */
.wrapper: before {
	height: 118px;
}
.flex-half {
	width: 50%;
}
.flex-third {
	width: 33.333%;
}
.flex-third.with-spacing {
	width: 32%;
}
.flex-reverse {
	flex-direction: row-reverse;
}
.half-box > .flex-half:first-child, .half-box > .flex-third {
	border-right: solid 2px var(--dark-color);
}
.half-box > .flex-third:last-child {
	border-right: none;
}
.flex-half:nth-of-type(odd) .flex-content, .flex-half.flex-content:nth-of-type(odd), .flex-third:nth-of-type(1) .flex-content, .flex-third:nth-of-type(2) .flex-content {
	padding-right: 36px;
}
.flex-half:nth-of-type(even) .flex-content, .flex-half.flex-content:nth-of-type(even), .flex-third:nth-of-type(2) .flex-content, .flex-third:nth-of-type(3) .flex-content {
	padding-left: 36px;
}
.flex-half.team-member:nth-of-type(odd) {
	padding-right: 12px;
}
.flex-half.team-member:nth-of-type(even) {
	padding-left: 12px;
}
.pattern-overlay {
	height: 200px;
}
.pattern-overlay img {
	top: -200%;
}
.pattern-overlay.short img {
	top: -110%;
}
.hero-image.multi-image img {
	width: 50%;
	border-right: solid 16px var(--dark-color);
}
.hero-image.multi-image img:nth-child(even) {
	border-left: 0;
}
.logo {
	max-width: 600px;
	padding: 32px 12px;
}
.header.scrolled .logo, #hidenav:checked ~ .header .logo {
	max-width: 250px;
	padding: 0 12px;
}
.header-text, .header.scrolled .header-text, #hidenav:checked ~ .header .header-text {
	position: absolute;
	display: block;
	top: 56px;
	left: 36px;
}
.header.scrolled .header-text, #hidenav:checked ~ .header .header-text {
	top: 48px;
	color: var(--complement-color);
}
.hidenav-toggle {
	top: 36px;
	right: 36px;
}

  .hero-image h1 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	color: var(--light-color);
	background-color: rgba(0, 0, 0, 0);
	z-index: 5;
}

p.big, .big p, p.bigger, .bigger p, p.biggest, .biggest p {
	margin: 24px auto;
	font-size: 44px;
	font-weight: 600;
}
p.bigger, .bigger p {
	font-size: 72px;
}
p.biggest, .biggest p {
	font-size: 88px;
	line-height: 104px;
}
.team-member img {
	max-height: 600px;
	object-fit: cover;
	object-position: 0 -24px;
}
.flex-overflow {
	position: absolute;
	top: 0;
	bottom: 0;
}
.flex-overflow-left {
	left: 0;
}
.flex-overflow-right {
	right: 0;
}
.single-neighborhood .flex-overflow-right {
	max-height: 600px;
}
.flex-image > img, .nt-image img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}
.thumb-info {
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.7);
}
.home-thumb:hover .thumb-info {
	opacity: 1;
}
.st-image {
	width: 40%;
}
.st-content {
	width: 60%;
}
}

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	width:100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	background: #fff;
	height: auto !important;
}
.elevation-photos{
pointer-events: all;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: var(--complement-color);
	text-indent: -9999px;
	display: block;
	width: 16px;
	height: 16px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: var(--dark-color);
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: -50px;
	background-position: top;
}

.bx-wrapper .bx-next {
	right: -50px;
	background-position: bottom;
}
.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	z-index: 500;
	border-radius:50%;
	opacity:0.7;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAABkCAYAAADE6GNbAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDkuMS1jMDAyIDc5LmI3YzY0Y2NmOSwgMjAyNC8wNy8xNi0xMjozOTowNCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg2Q0JCMDVFOEZFOTExRUY4NjE5QzQzMEJFQjdBMkQ2IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg2Q0JCMDVGOEZFOTExRUY4NjE5QzQzMEJFQjdBMkQ2Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODZDQkIwNUM4RkU5MTFFRjg2MTlDNDMwQkVCN0EyRDYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODZDQkIwNUQ4RkU5MTFFRjg2MTlDNDMwQkVCN0EyRDYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5uivv0AAAB50lEQVR42uzby23CQBAGYJsK6CS552JSASVAB0klSQdQAhWAL7knnaQDZy0tEofYRLvz+Mf5R7IQHCw+7Xu00w7D0CwhVs1CghDJeHh67san5h2t5xhJf36dPi7pecw/vX99nF9DtcgviDF2obrWBGKMPgxkBvGZnn0IyB3EJo2Pb3iIJsIMoo0wgVgg1CFWCFWIJUINYo1QgXggxCFeCFGIJ0IM4o0QgSAgqiEoiCoIEqIYgoYogiAiSltki4aAyaJ4QU65BW5jbKFL7nYxILn7bNAwRV0LEVM8RtAwVYMdCVM9a6FgRKZfBIzYOuKNEV0QPTHiK7sXRmWL4oFR22tZY1Q3jZYY9d2vFcZkG2+BMTuPaGNMD1aaGPMT4h3MIdRRdwbThTuzT2COpe9rEW4HXa9vJFwfGhJmHSGEEEKCQyRuvklF8fSbAG/p4yV/DZ2N31lnSrQgvXWmRAuyb5jEBpu1mMRGXRCZxEbdojCJjbppZBIbdRvPJDbqwYpJbNSj7n9KYhdj0JLYxRi0JPYVsw0DCbOy/yELM3fJ8xQConFTdbUEhDmE5XsoEJbvoUBYvocCYfkeCoTleygQlu+hQFi+B9YihyZy+d5NdCiIWsgRBTFG1cUziZtvEBBmUQiZjh8BBgDyHehsV//SlQAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
}
.bx-wrapper .bx-controls-direction a:hover{
	opacity:1.0;
	}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

@media (max-width:768px){
.bx-wrapper .bx-viewport {
	pointer-events: all;
}
}

@charset "utf-8";
/* Magnific Popup CSS */
.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8;
filter: alpha(opacity=80); }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #cccccc;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #cccccc; }
.mfp-preloader a:hover {
color: white; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close, button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
-webkit-box-shadow: none;
box-shadow: none; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
filter: alpha(opacity=65);
padding: 0 0 18px 10px;
color: white;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover, .mfp-close:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333333; }
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
color: white;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #cccccc;
font-size: 12px;
line-height: 18px; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
filter: alpha(opacity=65);
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover, .mfp-arrow:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after, .mfp-arrow .mfp-a {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before, .mfp-arrow .mfp-b {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
border-right: 17px solid white;
margin-left: 31px; }
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
margin-left: 25px;
border-right: 27px solid #3f3f3f; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
border-left: 17px solid white;
margin-left: 39px; }
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
border-left: 27px solid #3f3f3f; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Main image in popup */
img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; }
/* The shadow behind the image */
.mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444444; }
.mfp-figure small {
color: #bdbdbd;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #f3f3f3;
word-wrap: break-word;
padding-right: 36px; 
}
.mfp-title a,
.mfp-title a:visited{
	color:inherit;
	}
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
/**
* Remove all paddings around the image on small screen
*/
.mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }
.mfp-ie7 .mfp-img {
padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
width: 600px;
left: 50%;
margin-left: -300px;
margin-top: 5px;
padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
padding: 0; }
.mfp-ie7 .mfp-content {
padding-top: 44px; }
.mfp-ie7 .mfp-close {
top: 0;
right: 0;
padding-top: 0; }

