@font-face {
    font-family: 'Haas Grot Disp R';
    src: url('/fonts/HaasGrotDispR-45Light.woff2') format('woff2'),
        url('/fonts/HaasGrotDispR-45Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Disp R';
    src: url('/fonts/HaasGrotTextR-55Roman.woff2') format('woff2'),
        url('/fonts/HaasGrotTextR-55Roman.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Disp R';
    src: url('/fonts/HaasGrotDispR-65Medium.woff2') format('woff2'),
        url('/fonts/HaasGrotDispR-65Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Disp R';
    src: url('/fonts/HaasGrotTextR-75Bold.woff2') format('woff2'),
        url('/fonts/HaasGrotTextR-75Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --yellow: #FFD600;
    --blue: #00B7FF;
    --green: #5DE22E;
	--red: #FF2424;
}

* {
    box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body, html {
    height: 100%;
}

body {
    -webkit-font-feature-settings: "kern";
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    font-feature-settings: "kern";
    margin: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 115px 0 0 0;
    text-rendering: optimizeLegibility;
    transition: opacity 0.2s ease;
    opacity: 0;
    transition-delay: 0.25s;
}

#__next {
    display: flex;
    flex-direction: column;
    flex: 1;
}

body.viewing-page-homepage {
    transition: opacity 1s ease, padding-top 0.75s ease;
}

body.viewing-page-homepage:not(.scrolled),
body.viewing-page-landingpage:not(.scrolled)
{
    padding: calc(15vw + 75px) 0 0 0;
}

body.has-splash:not(.hide-splash) {
    max-height: 100vh;
    overflow: hidden;
    position: relative;
}

body, input, select, textarea, .field-wrap label, .field-wrap .choices__inner {
    color: #000;
    font-family: 'Haas Grot Disp R';
    font-size: 16px;
    font-weight: 300;
}

body.loaded {
    opacity: 1;
}

a {
	color: #00BC51;
	outline: none;
	text-decoration: none;
}

a:hover {
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 100;
    line-height: 100%;
    margin: 0 0 30px 0;
    padding: 0;
}

h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 100%;
}

h2 {
    font-size: 64px;
    font-weight: 300;
    line-height: 100%;
}

h2.section-heading {
    border-top: 1px solid #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    padding-top: 5px;
}

h3 {
    font-size: 32px;
    font-weight: 300;
    line-height: 110%;
}

h3.circle-icon-heading {
    font-size: 45px;
    font-weight: 300;
    line-height: 107%;
    padding-left: 40px;
    position: relative;
}

h3.circle-icon-heading:before {
    border-radius: 100%;
    border: 1px solid #000;
    content: '';
    height: 22px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 22px;
}

h4 {
    font-size: 23px;
    font-weight: 600;
    line-height: 120%;
}

h5 {

}

h6 {

}

p {
    line-height: 140%;
    margin: 0 0 20px;
    padding: 0;
}

.hr {
    background: #000;
    height: 1px;
    margin: 0;
}

.hr hr {
    display: none;
}

@media (max-width: 768px) {
    body, input, select, textarea, .field-wrap label, .field-wrap .choices__inner {
        font-weight: 400;
    }

    body {
        font-size: 12px;
        padding-top: 70px;
    }

    h1, h2, h3, h4, h5, h6 {
        margin: 0 0 20px 0;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 31px;
    }

    h2.section-heading {
        font-size: 15px;
    }

    h3 {
        font-size: 16px;
    }

    h3.circle-icon-heading {
        font-size: 21px;
        padding-left: 20px;
    }

    h3.circle-icon-heading:before {
        height: 8px;
        top: 2px;
        width: 8px;
    }

    h4 {
        font-size: 12px;
    }
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
.content-block > ol:last-child,
.content-block > ul:last-child {
    margin-bottom: 0;
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Sections / Layouts --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap {
}

.content-block {
	display: block;
	margin-bottom: 40px;
	margin-left: 20px;
	margin-right: 20px;
	text-align: left;
	width: calc(100% - 40px);
}

.content-block p:last-child,
.content-block h2:last-child,
.content-block h3:last-child,
.content-block h4:last-child,
.content-block h5:last-child {
	margin-bottom: 0;
}

.content-block img {
	height: auto !important;
	max-width: 100%;
}

.section-wrap-inner {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768.5px) {
    p small {
        font-size: 75%;
    }
    
	.section-wrap-inner {
		display: flex;
		flex-wrap: wrap;
        margin: 0 auto;
        width: calc(100% - 50px);
	}

    .section-wrap.align-center .section-wrap-inner {
        justify-content: center;
    }

	.content-block {
		display: block;
		margin-bottom: 50px;
		margin-left: 25px;
		margin-right: 25px;
		width: calc(100% - 50px);
	}

    .content-block.small-margin-bottom {
        margin-bottom: 20px;
    }

    .content-block.no-margin-bottom {
        margin-bottom: 0;
    }

	.content-block.col-1,
	.content-block.col-2 {
		display: block;
	}

    .content-block.mobile-only {
        display: none;
    }

	.content-block.col-3 {
		width: calc((100% / 3) - 50px);
	}

	.content-block.col-2-3 {
		width: calc(((100% / 3) * 2) - 50px);
	}

	.content-block.col-4,
	.content-block.col-3-4,
	.content-block.col-5,
	.content-block.col-2-5,
	.content-block.col-4-5 {
		width: calc(50% - 50px);
	}

	.content-block.col-2,
	.content-block.col-4 {
		width: calc(50% - 50px);
	}

	.content-block.col-4 {
		width: calc(25% - 50px);
	}

	.content-block.col-3-4 {
		width: calc(75% - 50px);
	}
	
	.content-block.col-5 {
		width: calc(20% - 50px);
	}

	.content-block.col-2-5 {
		width: calc(40% - 50px);
	}

	.content-block.col-3-5 {
		width: calc(60% - 50px);
	}
	
	.content-block.col-4-5 {
		width: calc(80% - 50px);
	}
}

@media (min-width: 768.5px) and (max-width: 1500px) {
    .section-wrap-inner {
        width: calc(100% - 20px);
	}
    
    .section-wrap:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 768.5px) and (max-width: 1024px) {
    /*
    .section-wrap {
        margin-bottom: 50px;
    }
    
    .section-wrap:last-child {
        margin-bottom: 0;
    }
    */
}

.mobile-only {
    display: none;
}

#mobile-check-element,
#tablet-check-element {
    display: none;
}

@media (max-width: 1024px) {
    #tablet-check-element { 
        display: block;
    }
}

@media (max-width: 768px) {
    #mobile-check-element { 
        display: block;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        visibility: hidden;
        z-index: -999;
    }
    
    .mobile-hide {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .main-content .wrapper {
        display: flex;
        flex-direction: column;
    }

	.section-wrap {
        order: 2;
	}

    .section-wrap.mobile-first {
        order: 1;
    }
	
	.content-block {
		margin-left: 15px;
		margin-right: 15px;
		margin-bottom: 25px;
		width: auto;
	}
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button,
.download-button,
.arrow-button {
    background: transparent;
    border: 1px solid #000;
    border-radius: 25px;
    color: #000;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 35px;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.button:hover,
.button:focus,
.button:active,
.download-button:hover,
.download-button:focus,
.download-button:active,
.arrow-button:hover,
.arrow-button:focus,
.arrow-button:active {
    background-color: #000;
    color: #fff;
}

a.download-button,
.arrow-button {
    background-image: url(/images/icons/download-icon.svg);
    background-position: calc(100% - 25px) 50%;
    background-repeat: no-repeat;
    min-width: 125px;
    padding: 8px 80px 8px 25px;
    text-align: left;
}

a.download-button {
    background-size: 18px auto;
}

a.download-button:hover {
    background-image: url(/images/icons/download-icon-white.svg);
}

.arrow-button {
    background-image: url(/images/icons/small-right-arrow.svg);
    background-size: 20px auto;
    background-position: calc(100% - 20px) 50%;
}

.arrow-button:hover {
    background-image: url(/images/icons/white-small-arrow-right.svg);
}

@media (max-width: 768px) {
    .button,
    .download-button,
    .arrow-button {
        font-size: 15px;
    }

    a.download-button,
    .arrow-button {
        background-size: 15px auto;
        background-position: calc(100% - 15px) 50%;
        padding: 8px 40px 8px 22px;
    }

    .arrow-button {
        background-size: 15px auto;
        background-position: calc(100% - 15px) 50%;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header {
    background: #fff;
    height: 115px;
    left: 0;
    padding: 0 49px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 12;
}

body.viewing-page-homepage .header {
    transition: height 0.75s ease;
}

body.viewing-page-homepage:not(.scrolled) .header, 
body.viewing-page-landingpage:not(.scrolled) .header 
{
    height: calc(15vw + 75px);
}

.logo {
    display: inline-block;
    margin-top: 24px;
    width: 171px;
}

body.viewing-page-homepage .logo,
body.viewing-page-landingpage .logo
 {
    transition: margin-top 0.75s ease, width 0.75s ease;
}

body.viewing-page-homepage:not(.scrolled) .logo,
body.viewing-page-landingpage:not(.scrolled) .logo
 {
    margin-top: 33px;
    width: 100%;
}

.logo img {
    display: block;
    width: 100%;
}

.upper-info {
    bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    line-height: 100%;
    list-style: none;    
    margin: 0;
    padding: 0;
    position: absolute;
    right: 49px;
    text-align: right;
}

.upper-info p {
    line-height: 100%;
}

@media (min-width: 1200px), (min-width: 600.5px) and (max-width: 1024px) {
    .upper-info p .br-wrap,
    .upper-info p .br-wrap:before {
        display: inline-block;
        content: ' ';
        width: 30px;
    }

    .upper-info p br {
        display: none;
    }
}

@media (max-width: 1500px) {
    .header {
        padding: 0 35px;
    }
}

@media (max-width: 1100px) {
    .upper-info {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .upper-info {
        gap: 50px;
    }
}

#mobile-check-element { display: none; }


@media (max-width: 768px) {
    .header,
    body.scrolled .header {
        height: 70px;
        padding: 0 15px;
    }

    .header .logo,
    body.scrolled .header .logo {
        margin-top: 35px;
        width: 140px;
    }

    #mobile-check-element {
        display: block;
        pointer-events: none;
        position: fixed;
        z-index: -1;
    }

    body.viewing-page-homepage:not(.scrolled) .logo,
    body.viewing-page-landingpage:not(.scrolled) .logo
     {
        margin-top: 46px;
    }

    .upper-info {
        bottom: 10px;
        font-size: 11px;
        right: 15px;
    }
}

@media (max-width: 380px) {
    .upper-info {
        font-size: 8.5px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.nav-toggle {
    cursor: pointer;
    display: block;
    height: 40px;
    overflow: hidden;
    position: fixed;
    right: 15px;
    text-indent: -9999px;
    top: 15px;
    transition: transform 0.2s ease;
    width: 40px;
    z-index: 1001;
}

.nav-toggle span,
.nav-toggle:before,
.nav-toggle:after {
    background: #000;
    content: '';
    width: 30px;
    left: 50%;
    position: absolute;
    top: 10px;
    transform: translateX(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, left 0.2s ease;
    height: 1px;
}

.nav-toggle:before {
    top: 20px;
}

.nav-toggle:after {
    top: 30px;
}

body.show-nav .nav-toggle span {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}
body.show-nav .nav-toggle:before {
    transform: translateX(-50%) rotate(45deg);
}

body.show-nav .nav-toggle:after {
    opacity: 0;
}

@media (min-width: 768.5px) and (max-width: 1500px) {
    .nav-toggle {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        right: 4px;
        top: 0;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.horizontal-navigation-wrap {
    display: none;
}

@media (min-width: 1024px) {
    .horizontal-navigation-wrap {
        bottom: 20px;
        display: block;
        position: absolute;
    }

    .horizontal-navigation-wrap ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .horizontal-navigation-wrap a {
        color: #000;
        display: block;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.26px;
        text-decoration: none;
    }

    .horizontal-navigation-wrap > ul {
        display: flex;
        gap: 25px;
    }

    .horizontal-navigation-wrap > ul > li {
        position: relative;
    }

    .horizontal-navigation-wrap > ul > li > a {
        position: relative;
        padding-left: 15px;
    }

    .horizontal-navigation-wrap > ul > li > a:before {
        border-radius: 100%;
        border: 1px solid #000;
        content: '';
        height: 10px;
        left: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: background 0.2s ease, border 0.2s ease;
        width: 10px;
    }

    .horizontal-navigation-wrap > ul > li.selected > a:before,
    .horizontal-navigation-wrap > ul > li:hover > a:before { background: #000000; border-color: #000; }

    .horizontal-navigation-wrap > ul > li:nth-child(1).selected > a:before,
    .horizontal-navigation-wrap > ul > li:nth-child(1):hover > a:before { background: var(--red); border-color: var(--red);}

    .horizontal-navigation-wrap > ul > li:nth-child(2).selected > a:before,
    .horizontal-navigation-wrap > ul > li:nth-child(2):hover > a:before { background: #00B7FF; border-color: #00B7FF;}

    .horizontal-navigation-wrap > ul > li:nth-child(3).selected > a:before,
    .horizontal-navigation-wrap > ul > li:nth-child(3):hover > a:before { background: #FFD900; border-color: #FFD900;}

    .horizontal-navigation-wrap > ul > li:nth-child(4).selected > a:before,
    .horizontal-navigation-wrap > ul > li:nth-child(4):hover > a:before { background: #5DE22E; border-color: #5DE22E;}

    .horizontal-navigation-wrap > ul > li:nth-child(5).selected > a:before,
    .horizontal-navigation-wrap > ul > li:nth-child(5):hover > a:before { background: #FF6B00; border-color: #FF6B00;}

    .horizontal-navigation-wrap > ul > li:nth-child(6).selected > a:before,
    .horizontal-navigation-wrap > ul > li:nth-child(6):hover > a:before { background: #9D9D9D; border-color: #9D9D9D;}

    .horizontal-navigation-wrap > ul > li.has-sub-nav > a {
        padding-right: 15px;
    }

    .horizontal-navigation-wrap > ul > li.has-sub-nav > a:after {
        background: url(/images/icons/small-nav-arrow.svg) 50% 50% no-repeat;
        content: '';
        height: 9px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s ease;
        width: 5px;
    }

    .horizontal-navigation-wrap > ul > li.has-sub-nav:hover > a:after {
        transform: rotate(90deg) translate(-100%, 0);
    }

    .horizontal-navigation-wrap > ul > li > ul {
        background: #fff;
        left: 5px;
        right: 15px;
        padding: 5px 0;
        position: absolute;
        top: 100%;
        transition: opacity 0.2s ease, visibility 0.2s ease;   

        display: none;
    }

    .horizontal-navigation-wrap > ul > li:not(:hover) > ul {
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
    }

    .horizontal-navigation-wrap > ul > li > ul > li > a {
        padding: 2px 10px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.primary-navigation-wrap {
    background: #fff url(/images/template/grid-bg-new.png) 1px 0;
    background-size: 783px auto;
    bottom: 0;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    padding: 30px 15px 30px 40px;
    position: fixed;
    right: -750px;
    top: 0;
    transition: right 0.2s ease;
    width: 750px;
    z-index: 10;
}

body.show-nav .primary-navigation-wrap {
    right: 0;
}

.primary-navigation-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation-wrap > ul a {
    color: #000;
    display: block;
    line-height: 100%;
    text-decoration: none;
}

.primary-navigation-wrap > ul > li {
    align-items: flex-end;
    display: flex;
    gap: 30px;
    line-height: 100%;
    margin-bottom: 20px;
}

.primary-navigation-wrap > ul > li > a {
    font-size: 64px;
    font-weight: 300;
    position: relative;
}

.primary-navigation-wrap > ul > li > a:after {
     background: #000;
     border-radius: 100%;
     content: '';
     height: 12px;
     opacity: 0;
     position: absolute;
     right: -12px;
     top: 0;
     transition: opacity 0.2s ease;
     width: 12px;
}

.primary-navigation-wrap > ul > li:nth-child(1) > a:after { background: var(--red); }
.primary-navigation-wrap > ul > li:nth-child(2) > a:after { background: #00B7FF; }
.primary-navigation-wrap > ul > li:nth-child(3) > a:after { background: #FFD900; }
.primary-navigation-wrap > ul > li:nth-child(4) > a:after { background: #5DE22E; right: -18px; }
.primary-navigation-wrap > ul > li:nth-child(5) > a:after { background: #FF6B00; }
.primary-navigation-wrap > ul > li:nth-child(6) > a:after { background: #9D9D9D; }

.primary-navigation-wrap > ul > li.selected > a:after,
.primary-navigation-wrap > ul > li:hover > a:after {
    opacity: 1;
}

.primary-navigation-wrap > ul > li > ul {
    display: flex;
    gap: 45px;
    margin-bottom: 10px;

    display: none;
}

.primary-navigation-wrap > ul > li > ul > li > a {
    font-size: 16px;
    font-weight: 600;
}

.nav-flyout-buttons {
    display: flex;
    gap: 75px;
    margin-top: auto;
    padding-top: 40px;
    padding-right: 35px;
}

.nav-flyout-buttons a {
    flex: 1;
    font-size: 16px;
}

.nav-flyout-buttons a:not(:hover) {
    background-color: #fff;
}

@media (max-width: 768px) {
    .primary-navigation-wrap {
        width: 100%;
    }

    body:not(.show-nav) .primary-navigation-wrap {
        right: -100%;
    }

    .primary-navigation-wrap > ul > li > a {
        font-size: 32px;
    }

    .primary-navigation-wrap > ul > li > a:after {
        height: 7px;
        right: -9px;
        width: 7px;
    }

    .primary-navigation-wrap > ul > li:nth-child(4) > a:after {right: -11px; }

    .nav-flyout-buttons {
        gap: 20px;
        padding-right: 0;
    }
    
    .nav-flyout-buttons a {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .primary-navigation-wrap {
        background-size: 363px auto;
        padding: 33px 15px 30px;
    }

    .primary-navigation-wrap > ul > li {
        margin-bottom: 12.5px;
    }

    .nav-flyout-buttons a {
        font-size: 11px;
        padding-left: 16px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Embedded Slideshows --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.slick-slide img {
    width: 100% !important;
}

/*
.slick-slide img.landscape,
.slick-slide img.portrait {
    aspect-ratio: 1.82;
    object-fit: cover;
}

.slick-slide .image.portrait {
    background-color: #efefef;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
}

.slick-slide img.portrait {
    object-fit: contain;
}
*/

.stage:not(.slick-initialized) .slide:not(:first-child) {
    display: none;
}

.slick-slider div { transition: none; }
.slick-arrow {
    background: url(/images/icons/left-arrow.svg) 50% 50% no-repeat;
    background-size: contain;
    border: 0;
    cursor: pointer;
    height: 44px;
    outline: none;
    position: absolute;
    left: 35px;
    text-indent: -9999px;
    top: 0;
    transition: opacity 0.15s linear;
    width: 64px;
    z-index: 5;
}

@media (min-width: 1024.5px) {
    .slick-arrow:hover {
        opacity: 0.7;
    }
}

.slick-arrow.slick-next {
    background-image: url(/images/icons/right-arrow.svg);
    left: auto;
    right: 35px;
}

.slick-dots {
    align-items: center;
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    z-index: 4;
}


.slick-dots button {
	-webkit-appearance: none;
	-webkit-box-shadow: none;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #000;
    box-shadow: none;
    cursor: pointer;
    display: block;
    height: 10px;
    outline: none;
    padding: 0;
    text-indent: -9999px;
    transition: background 0.15s ease;
    width: 10px;
}

.slick-dots .slick-active button,
.slick-dots button:hover {
    background: #000;
}

.slick-dots {
    align-items: center;   
    display: flex;
    gap: 5px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 15px 0 0 0;
}

.slick-dots button {
    background: #fff;
    border-radius: 100%;
    border: 1px solid #000;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 12px;
    padding: 0;
    text-indent: -9999px;
    transition: background 0.2s ease;
    width: 12px;
}

.slick-dots .slick-active button,
.slick-dots button:hover {
    background: #000;
}

.slick-slide .caption {
    margin-top: 15px;
    padding-bottom: 5px;
    max-width: 100%;
    opacity: 0;
    padding: 0 0 10px;
    text-align: left;
    visibility: hidden;
}

.slick-slide .caption strong {
    display: block;
    margin: 0 0 7px 0;
}

.slick-slide.slick-center .caption,
.style-b .slick-slide.slick-current .caption {
    opacity: 1;
    transition: opacity 0.5s linear;
    transition-delay: 0.25s;
    visibility: visible;
}

@media (max-width: 768px) {
    .slick-arrow {
        height: 22px;
        width: 22px;
    }

    .slick-slide .caption {
        margin-top: 8px;
    }

    .slick-slide .caption strong {
        margin-bottom: 3px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Gallery Section - Style A --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.gallery.style-a {
    margin: -25px 0 50px 0;
    overflow: hidden;
    position: relative;
}

.section-wrap.gallery.style-a .upper-carousel-caption {
    margin: 0 0 50px 0;
    max-width: 770px;
    position: relative;
}

.section-wrap.gallery.style-a .upper-carousel-caption div {
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    left: 0;
    line-height: 110%;
    position: absolute;
    transition: opacity 0.5s ease;
    width: 100%;
}

.section-wrap.gallery.style-a .upper-carousel-caption div:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.section-wrap.gallery.style-a .upper-carousel-caption div sup {
    font-size: 8px;
    margin-top: -16px;
    position: absolute;
}

.slick-slider .slick-track {
    align-items: center;
    display: flex;
}

.slick-slide,
.slick-slide img,
.slick-slide figcaption {
    display: block;
    margin: 0;
    width: 100%;
    outline: none;
    padding: 0;
}

.section-wrap.gallery.style-a .slick-slide {
    padding: 0 25px;
    transform: translate3d(25%, 0, 0) scale(0.5);
    transition: all ease 1s;
    width: 53vw;
}
    
.section-wrap.gallery.style-a .slick-center {
    transition: all ease 0.9s;
    transform: scale(1);
}

.section-wrap.gallery.style-a .slick-current ~ .slick-slide:not(.slick-current) {
    transform: translate3d(-25%, 0, 0) scale(0.5);
}

.section-wrap.gallery.style-a .carousel:not(.loaded) figure:not(:first-child) {
    display: none;
}

.section-wrap.gallery.style-a .slick-list {
    overflow: visible;
}

.section-wrap.gallery.style-a .slick-dots {
    padding-top: 20px;
}

@media (max-width: 1250px) {
    .section-wrap.gallery.style-a .upper-carousel-caption div .br-wrap br {
        display: none;
    }
    
    .section-wrap.gallery.style-a .upper-carousel-caption div .br-wrap:before,
    .section-wrap.gallery.style-a .upper-carousel-caption div .br-wrap:after {
        content: ' ';
    }
}

@media (max-width: 1100px) {
    .section-wrap.gallery.style-a .upper-carousel-caption div sup {
        margin-left: 1px;
        margin-top: -8px;
    }
}

@media (max-width: 768px) {
    .section-wrap.gallery.style-a {
        margin-top: 10px;
    }

    .section-wrap.gallery.style-a .slick-slide img {
        aspect-ratio: 1.66;
        object-fit: cover;
        object-position: 50% 50%;
    }
    
    .section-wrap.gallery.style-a .slick-slider .slick-track {
        align-items: flex-start;
    }

    .section-wrap.gallery.style-a .slick-slide {
        width: 80vw;
    }

    .section-wrap.gallery.style-a .slick-prev {
        display: none !important;
    }

    .section-wrap.gallery.style-a .slick-next {
        bottom: auto;
        top: -80px;
        right: 0;
        height: 44px;
        width: 44px;
    }

    .section-wrap.gallery.style-a .upper-carousel-caption {
        margin: 0 85px 35px 35px;
    }

    .section-wrap.gallery.style-a .upper-carousel-caption div {
        font-size: 24px;
    }

    .section-wrap.gallery.style-a .upper-carousel-caption div sup {
        font-size: 6px;
        margin-top: -5px;
    }
}

@media (max-width: 450px) {
    .section-wrap.gallery.style-a {
        margin-bottom: 0;
    }

    .section-wrap.gallery.style-a .upper-carousel-caption {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 50px 25px 0;
        min-height: 80px;
    }

    .section-wrap.gallery.style-a .upper-carousel-caption div {
        font-size: 22px;
    }

    .section-wrap.gallery.style-a .slick-slide {
        padding: 0 10px;
    }

    .section-wrap.gallery.style-a .slick-slide .caption {
        font-size: 15px;
        width: calc(100% - 50px);
    }

    .slick-dots,
    .section-wrap.gallery.style-a .slick-dots {
        padding-top: 9px;
    }
}

@media (max-width: 380px) {  
    .section-wrap.gallery.style-a .upper-carousel-caption div {
        font-size: 17px;
    }
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Gallery Section - Style B --------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.gallery.style-b .stage.slick-slider {
    padding-left: 15vw;
    padding-right: 15vw;
}

@media (max-width: 768px) {
    .section-wrap.gallery.style-b .stage.slick-slider {
        padding-left: 50px;
        padding-right: 50px;
    }

    .section-wrap.gallery.style-b .slick-arrow.slick-prev {
        left: 5px;
    }

    .section-wrap.gallery.style-b .slick-arrow.slick-next {
        right: 5px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* WYSIWYG Template -> Figure with Image --------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
figure {
    margin: 0;
    padding: 0;
}

figure img {
    display: block;
}

figure figcaption {

}

@media (max-width: 768px) {

}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* WYSIWYG Template -> Fast Fact ----------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.fast-fact {
    display: flex;
    flex-direction: column;
    position: relative;
}

.fast-fact:not(:last-child) {
    padding-right: 100px;
}

.fast-fact:not(:last-child):after {
    content: '+';
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    left: 76%;
    top: 67%;
    transform: translateY(-50%);
}

.fast-fact:nth-child(3):after {
    content: '=';
    left: 85%;
}

.fast-fact .desc {
    order: -1;
    font-weight: 500;
    max-width: 295px;
}

.fast-fact .amount {
    font-size: 122px;
    font-weight: 300;
    line-height: 80%;
    margin-top: 20px;
    max-width: 100%;
    padding-left: 33px;
    position: relative;
    width: 330px;
}

.fast-fact .amount:before {
    background: var(--yellow);
    border-radius: 100%;
    content: '';
    height: 24px;
    left: 0;
    position: absolute;
    top: 0;
    width: 24px;
}

.fast-fact.blue .amount:before { background: var(--blue); }
.fast-fact.green .amount:before { background: var(--green); }
.fast-fact.red .amount:before { background: var(--red); }

.fast-fact .amount:after {
    color: #000;
    content: 'SF';
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    position: absolute;
    top: 0;
}

@media (max-width: 1690px) {
    .fast-fact:not(:last-child) {
        padding-right: 40px;
    }

    .fast-fact:not(:last-child):after {
        left: 83%;
    }

    .fast-fact:nth-child(3):after {
        left: 88%;
    }

    .fast-fact .desc {
        max-width: 100%;
    }
}

@media (max-width: 1490px) {
    .fast-fact .desc {
        font-size: 14px;
    }

    .fast-fact .amount {
        font-size: 80px;
        padding-left: 23px;
    }

    .fast-fact .amount:before {
        height: 18px;
        width: 18px;
    }

    .fast-fact:not(:last-child):after {
        font-size: 20px;
        left: 76%;
    }

    .fast-fact:nth-child(3):after {
        left: 85%;
    }
}

@media (max-width: 1100px) {
    .fast-fact .desc {
        font-size: 12px;
    }

    .fast-fact .amount {
        font-size: 55px;
    }

    .fast-fact .amount:before {
        height: 12px;
        width: 12px;
    }

    .fast-fact:not(:last-child):after {
        right: 15px;
        top: 81%;
    }
}

@media (max-width: 860px) {
    .fast-fact .amount {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .fast-fact {
        display: flex !important;
        padding: 0;
        width: 100%;
    }

    .fast-fact:not(:last-child) {
        padding: 0;
    }

    .fast-fact:not(:last-child):not(:nth-child(3)):after {
        display: none;
    }
    
    .fast-fact:nth-child(3):after {
        right: 55px;
        top: 61%;
    }

    .fast-fact .desc {
        font-size: 12px;
        min-height: 1px !important;
    }

    .fast-fact .amount {
        font-size: 115px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Intro Heading Section ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.introHeadingSection .content-block {
    padding-top: 50px;
    border-top: 1px solid #000;
}

.section-wrap.introHeadingSection h1 {
    font-size: 128px;
    font-weight: 300;
    line-height: 95%;
}

@media (max-width: 1350px) {
    .section-wrap.introHeadingSection h1 {
        font-size: 90px;
    }
}

@media (max-width: 1150px) {
    .section-wrap.introHeadingSection h1 {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .section-wrap.introHeadingSection .content-block {
        padding-top: 30px;
    }

    .section-wrap.introHeadingSection h1 {
        font-size: 45px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Hero Banner Section ------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.hero img {
    display: block;
    width: 100%;
}

@media (min-width: 768.5px) {
    body:not(.viewing-page-homepage):not(.viewing-page-landingpage) .section-wrap.hero img,
    body.viewing-page-landingpage .section-wrap.hero:not(:first-child) img
    {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .section-wrap.hero img {
        aspect-ratio: 0.9;
        object-fit: cover;
        object-position: 50% 50%;
        height: 100%;
    }

    body.viewing-page-homepage .section-wrap.hero:first-child img,
    body.viewing-page-landingpage .section-wrap.hero:first-child img
    {
        aspect-ratio: 0.7;
    }

    .section-wrap.hero .section-wrap-inner {
        display: flex;
        flex-direction: column;
    }

    .section-wrap.hero .image-block {
        order: -1;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Summary Text Section ------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.summaryTextSection p {
    font-size: 23px;
    line-height: 125%;
    max-width: 485px;
}

.section-wrap.summaryTextSection .arrow-button {
    margin-top: 30px;
}

@media (min-width: 768.5px) and (max-width: 1200px) {
    .section-wrap.summaryTextSection:not(.allstonway-info-section, #vision-intro-and-quote-section) .col-3-5 {
        width: calc(80% - 25px);
    }
}

@media (max-width: 768px) {
    .section-wrap.summaryTextSection p {
        font-size: 15px;
        max-width: 80%;
    }

    .section-wrap.summaryTextSection .arrow-button {
        margin-top: 0;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Fast Facts Section -------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.fastFactSection .section-wrap-inner {
    position: relative;
    margin-bottom: 75px;
}

@media (min-width: 768.5px) {
    .section-wrap.fastFactSection .section-wrap-inner:after {
        height: 1px;
        background: #000;
        bottom: 0;
        left: 25px;
        right: 25px;
        content: '';
        position: absolute;
    }
}

@media (max-width: 768px) {
    .section-wrap.fastFactSection {
        padding: 30px 15px;
    }

    .section-wrap.fastFactSection .section-wrap-inner {
        border-bottom: 1px solid #000;
        margin-bottom: 0;
        padding-bottom: 40px;
    }

    .stats-slider .desc-inner,
    .section-wrap.fastFactSection .desc-inner {
        max-width: 200px;   
    }

    .stats-slider .slick-arrow,
    .section-wrap.fastFactSection .slick-arrow {
        width: 44px;
        height: 44px;
    }

    .stats-slider .slick-prev,
    .section-wrap.fastFactSection .slick-prev {
        display: none !important;
    }

    .stats-slider .slick-arrow.slick-next,    
    .section-wrap.fastFactSection .slick-arrow.slick-next {
        right: 0;
        bottom: 115px;
        top: auto;
    }

    .stats-slider .slick-arrow.slick-next {
        bottom: auto;
        top: 0;
    }

    .stats-slider .slick-dots,
    .section-wrap.fastFactSection .slick-dots {
        bottom: 50px;
    }

    .stats-slider .slick-dots {
        bottom: 0;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Form Section -------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.form {
    margin-bottom: 40px;
}

body:not(.viewing-page-contact) .section-wrap.form .form-wrap-holder.partial form {
    gap: 0 50px;
}

body:not(.viewing-page-contact) .section-wrap.form .form-wrap-holder.partial .col .field-wrap:last-child {
    display: none;
}

@media (max-width: 768px) {
    .section-wrap.form h3.circle-icon-heading {
        font-size: 28px;
        padding-left: 0;
    }

    body.viewing-page-contact .section-wrap.form h3.circle-icon-heading {
        font-size: 40px;
    }

    .section-wrap.form h3.circle-icon-heading:before {
        display: none;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Video Section ------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.videoSection .content-block:nth-child(2),
.section-wrap.videoSection .content-block:nth-child(3) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-wrap.videoSection .content-block:nth-child(2) h2 {
    max-width: 550px;
}

.section-wrap.videoSection .content-block:nth-child(3) img {
    display: block;
    margin-left: auto;
    width: 94px;
}

.section-wrap.videoSection video,
.section-wrap.videoSection .video-play-button {
    cursor: pointer;
}

.section-wrap.videoSection .video-play-button {
    transition: opacity 0.2s ease;
}

.section-wrap.videoSection .video-play-button:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .section-wrap.videoSection .content-block:nth-child(3) img {
        margin-left: 0;
        width: 50px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Video Section ------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.brochureSection {
    margin-bottom: 35px;
}

@media (min-width: 768.5px) {
    .section-wrap.brochureSection h3.circle-icon-heading {
        max-width: 770px;
        margin-bottom: 63px;
    }

    .section-wrap.brochureSection .download-button {
        margin-left: 40px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Up Next Section ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 768.5px) {
    .section-wrap.upNextSection .section-wrap-inner {
        margin-bottom: 53px;
        position: relative;
    }

    .section-wrap.upNextSection .section-wrap-inner:after {
        border-bottom: 1px solid #000;
        content: '';
        display: block;
        height: 1px;
        margin-left: 25px;
        margin-right: 25px;
        width: 100%;
    }

    .section-wrap.upNextSection .content-block:first-child {
        margin-bottom: 27px;
    }

    .section-wrap.upNextSection .content-block:nth-child(2) {
        border-right: 1px solid #000;
        padding-right: 83px;
    }   
}

.section-wrap.upNextSection .content-block:nth-child(2) img {
    display: block;
    width: 100%;
}

.section-wrap.upNextSection .content-block:nth-child(3) {
}

@media (max-width: 768px) {
    @media (max-width: 768px) {
        .section-wrap.upNextSection h3.circle-icon-heading {
            font-size: 28px;
        }
    }    
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Page Bottom Image --------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.pageBottomImage figure {
    margin: 0;
    padding: 0;
    position: relative;
}

.section-wrap.pageBottomImage img {
    display: block;
    width: 100%;
}

.section-wrap.pageBottomImage figure figcaption {
    bottom: 100%;
    color: rgba(0, 0, 0, 0.40);
    font-family: Helvetica;
    font-style: italic;
    font-size: 11px;
    font-weight: 300;
    left: calc(100% + 4px);
    letter-spacing: 0.22px;
    line-height: 104.5%;
    position: absolute;
    text-align: right;
    transform-origin: bottom left;
    transform: rotate(90deg);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .section-wrap.pageBottomImage figure figcaption {
        font-size: 11px;
        left: calc(100% + 1px);
    }

    .section-wrap.pageBottomImage .content-block {
        margin-bottom: 15px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Vision -> Project Overview Interactive Map Feature -------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.project-overview-interactive-map-feature .content-block.disclaimer {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.42px;
    line-height: 120%;
    margin-bottom: 10px;
    text-align: right;
}

#project-overview-interactive-map-feature-map-block {
    max-width: 100vh;
}

#project-overview-interactive-map-feature-svg {
    display: block;
    height: auto !important;
    width: 100%;
    /* max-height: calc(100vh - 150px); */
}

g.hover-el {
    cursor: pointer;
}

g.text-el#the-atlas-hotel-text {
    transform: translateX(-2.3%);
}

.no-hover { pointer-events: none; }

g.hover-el > path {
    fill: #ededed;
    transition: fill 0.2s ease;
} 

@media (min-width: 768.5px) {
    .hover-el.bg-the-atlas-hotel:hover > path {
        fill: #5EE32F;
    }

    .hover-el.bg-david-rubenstein-treehouse:hover > path {
        fill: #9D9D9D;
    }

    .hover-el.bg-resi:hover > path {
        fill: #FEDE27;
    }

    .hover-el.bg-greenway:hover > path {
        fill: #284614;
    }

    .hover-el.bg-greenway:hover > .text-el > path {
        fill: #fff;
    }

    .hover-el.bg-onemilestone-labs:hover > path {
        fill: #FF6B00;
    }

    .hover-el.retail-circle-group:hover > circle {
        fill: #00B7FF;
        stroke: #00B7FF;
    }
}

@media (max-width: 768px) {
    .section-wrap.project-overview-interactive-map-feature .section-wrap-inner {
        display: flex;
        flex-direction: column;
    }

    .section-wrap.project-overview-interactive-map-feature .content-block.col-4 {
        order: 1;
    }

    .section-wrap.project-overview-interactive-map-feature .content-block.disclaimer {
        font-size: 12px;
        margin-bottom: 5px;
        order: 2;
    }

    .section-wrap.project-overview-interactive-map-feature .content-block.col-3-4 {
        order: 3;
    }
    
    .hover-el.bg-the-atlas-hotel.hovered > path {
        fill: #5EE32F;
    }

    .hover-el.bg-david-rubenstein-treehouse.hovered > path {
        fill: #9D9D9D;
    }

    .hover-el.bg-resi.hovered > path {
        fill: #FEDE27;
    }

    .hover-el.bg-greenway.hovered > path {
        fill: #284614;
    }

    .hover-el.bg-greenway.hovered > .text-el > path {
        fill: #fff;
    }

    .hover-el.bg-onemilestone-labs.hovered > path {
        fill: #FF6B00;
    }
}

@media (min-width: 768.5px) {
    #project-overview-interactive-map-feature-overlay-block,
    #project-overview-interactive-map-feature-overlay-block .mobile-stage {
        display: flex;
        flex: 1;
    }

    #project-overview-interactive-map-feature-overlay-block .mobile-stage {
        width: 100%;
    }

    .project-overview-interactive-map-overlay-content {
        align-items: flex-start;
        display: none;
        flex-direction: column;
        flex: 1;
        width: 100%;
    }

    .project-overview-interactive-map-overlay-content.show {
        display: flex;
    }
}

.stat-block .label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.48px;
    line-height: 120%;
}

.stat-block.the-atlas-hotel .label {
    color: #5EE32F;
}

.stat-block.david-rubenstein-treehouse .label {
    color: #9D9D9D;
}

.stat-block.resi .label {
    color: #FEDE27;
}

.stat-block.greenway .label {
    color: #284614;
}

.stat-block.onemilestone-labs .label {
    color: #FF6B00;
}

.stat-block .stat {
    display: inline-flex;
    font-size: 128px;
    font-weight: 300;
    position: relative;
    letter-spacing: -2.56px;
    line-height: 100%;
}

.stat-block .stat .counter {

}

.stat-block .stat .identifier {
    font-size: 15px;
    font-weight: 600;
    line-height: 100%;
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 0;
    top: 18px;
    left: calc(100% + 5px);
}

.stat-block .stat .identifier.higher {
    top: 14px;
}

.stat-block.project-overview-interactive-map-overlay-content .extra-info {

}

.stat-block.project-overview-interactive-map-overlay-content .extra-info ul {
    font-weight: 400;
    margin: 0;
    max-width: 250px;
    padding: 0 0 0 17px;
}

.stat-block.project-overview-interactive-map-overlay-content .extra-info ul li:not(:last-child) {
    margin-bottom: 15px;
}

.stat-block.project-overview-interactive-map-overlay-content .image {
    margin-top: auto;
}

.stat-block.project-overview-interactive-map-overlay-content .image .mobile {
    display: none;
}

.stat-block.project-overview-interactive-map-overlay-content .image .desktop {
    margin-bottom: 25%;
    margin-top: 50px;
}

/*
.stat-block.project-overview-interactive-map-overlay-content .image .desktop {
    left: calc(50vw + 3%);
    position: absolute;
    top: 43%;
    width: 290px;
}

.stat-block.project-overview-interactive-map-overlay-content.the-atlas-hotel .image .desktop {
    left: calc(50vw + 14%);
    top: 15%;
}

.stat-block.project-overview-interactive-map-overlay-content.david-rubenstein-treehouse .image .desktop {
    left: calc(50vw + 2%);
    top: 26%;
}

.stat-block.project-overview-interactive-map-overlay-content.resi .image .desktop {
    left: calc(50vw + 2%);
    top: 45%;
}

.stat-block.project-overview-interactive-map-overlay-content.greenway .image .desktop {
    left: calc(50vw + -7%);
    top: 15%;
}

.stat-block.project-overview-interactive-map-overlay-content.retail .image .desktop {
    left: calc(50vw + 24%);
    top: 25%;
}
*/

#project-overview-interactive-map-feature-overlay-block .slick-arrow.slick-prev {
    display: none !important;
}

#project-overview-interactive-map-feature-overlay-block .slick-arrow.slick-next {
    height: 44px;
    right: 0;
    width: 44px;
}

@media (min-width: 768.5px) {
    #project-overview-interactive-map-feature-overlay-block .slick-arrow.slick-next { 
        display: none !important;
    }
}

#project-overview-interactive-map-feature-overlay-block .slick-dots {
    bottom: auto;
    top: 88px;
}

@media (max-width: 768px) {
    .stat-block .label {
        font-size: 12px;
        letter-spacing: 0.24px;
        min-height: 30px;
    }

    .stat-block .stat {
        font-size: 95px;
    }

    .stat-block .stat .identifier {
        font-size: 10px;
        top: 13px;
    }

    .stat-block .stat .identifier.higher {
        top: 10px;
    }

    .mobile-extra-info-toggle {
        background: url(/images/icons/plus-icon.svg) 50% 50% no-repeat;
        border-radius: 100%;
        border: 1px solid #000;
        cursor: pointer;
        font-size: 0;
        height: 26px;
        margin-bottom: 15px;
        text-indent: -9999px;
        transition: transform 0.2s ease;
        width: 26px;
    }
    
    .clicked .mobile-extra-info-toggle {
        transform: rotate(-45deg);
    }

    .project-overview-interactive-map-overlay-content .extra-info {
        display: none;
    }

    .stat-block.project-overview-interactive-map-overlay-content .image {
        margin-top: 10px;
    }

    .stat-block.project-overview-interactive-map-overlay-content .image .mobile {
        display: block;
    }
    
    .stat-block.project-overview-interactive-map-overlay-content .image .desktop {
        display: none;
    }
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Partners Section ---------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.partnersSection {
    margin-bottom: 10px;
}

.partner-block {
    
}

.partner-block .role {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.48px;
    line-height: 120%;
    margin-bottom: 22px;
}

.partner-block .name {
    font-size: 32px;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 25px;
    min-height: 75px;

    display: none;
}

.partner-block .additional-info-toggle {
    background: url(/images/icons/plus-icon.svg) 50% 50% no-repeat;
    border-radius: 100%;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 0;
    height: 46px;
    margin-bottom: 15px;
    text-indent: -9999px;
    transition: transform 0.2s ease;
    width: 46px;

    display: none;
}

.partner-block.clicked .additional-info-toggle {
    transform: rotate(-45deg);
}

.partner-block .additional-info {
    display: none;

    display: block;
}

.partner-block .logo {
    align-items: center;
    display: flex;
    height: 104px;
    margin: 0;
}

.partner-block .logo img {
    display: block;
    max-height: 76px;
    width: auto;
}

.partner-block .bio {
    font-size: 14.51px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 380px;
}

@media (min-width: 768.5px) {
    .section-wrap.partnersSection .content-block {
        margin-left: 0;
        margin-right: 0;
        padding-left: 35px;
        padding-right: 35px;
        width: 25%;
    }

    .section-wrap.partnersSection .content-block:not(:last-child) {
        border-right: 1px solid #000;
    }
}

@media (max-width: 768px) {
    .partner-block {
        margin-bottom: 45px;
        position: relative;
    }

    .partner-block .role {
        font-size: 10px;
        letter-spacing: 0.24px;
        margin-bottom: 5px;
    }

    .partner-block .name {
        font-size: 20px;
        min-height: 0;
        max-width: 190px;
    }

    .partner-block .additional-info-toggle {
        background-size: 12px auto;
        height: 30px;
        position: absolute;
        right: 0;
        top: 2px;
        width: 30px;
    }

    .partner-block .logo {
        height: auto;
        margin-bottom: 22px;
        margin-top: 15px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Floating Image Section ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.floatingImage {
    margin-bottom: 10px;
}

.section-wrap.floatingImage .section-wrap-inner {
    justify-content: center;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Quote with Image Section -------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.quoteWithImageSection img {
    display: block;
    width: 100%;
}

.section-wrap.quoteWithImageSection blockquote {
    font-size: 32px;
    font-weight: 300;
    line-height: 110%;
    margin: 0 0 30px 0;
    padding: 0 0 0 74px;
    position: relative;
}

.section-wrap.quoteWithImageSection blockquote:before {
    content: '“';
    font-family: Helvetica;
    font-size: 125px;
    font-style: normal;
    font-weight: 300;
    left: 0;
    line-height: 100%;
    letter-spacing: -2.5px;
    position: absolute;
    top: -11px;
}

.section-wrap.quoteWithImageSection .author {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.48px;
    line-height: 120%;
    margin-left: 74px;
}

@media (max-width: 768px) {
    .section-wrap.quoteWithImageSection {
        margin-bottom: 50px;
    }

    .section-wrap.quoteWithImageSection blockquote {
        font-size: 18px;
        line-height: 124%;
        margin-bottom: 20px;
        padding-left: 50px;
    }

    .section-wrap.quoteWithImageSection blockquote:before {
        font-size: 95px;
    }

    .section-wrap.quoteWithImageSection .author {
        font-size: 11px;
        margin-left: 50px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Building Animated Stats (injected via public/js/main.js) ------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.building-animated-stats-section {
    margin-bottom: -40px;
}

.section-wrap.building-animated-stats-section.labcenteral {
    margin-bottom: 114px;
    transition: margin-bottom 0.2s ease;
}

.section-wrap.building-animated-stats-section.labcenteral.expanded {
    margin-bottom: 268px;
}

.section-wrap.building-animated-stats-section .section-wrap-inner {
    position: relative;
}

.building-animated-stat {
    margin-bottom: 0;
}

.building-animated-stat .animated-stat-category {
    align-items: center;
    border-radius: 100%;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    font-size: 13.066px;
    font-weight: 600;
    height: 362px;
    justify-content: center;
    line-height: 16.141px;
    margin: 0 auto;
    text-align: center;
    width: 362px;
}

.building-animated-stat .animated-stat-category img {
    display: block;
    margin-bottom: 10px;
    width: 156px;
}

.section-wrap.building-animated-stats-section.studiolabs,
.section-wrap.building-animated-stats-section.studiolabs .section-wrap-inner {
    position: relative;
    z-index: 1;
}

.section-wrap.building-animated-stats-section.studiolabs .building-animated-stat .animated-stat-category {
    height: 283px;
    width: 283px;
}

.section-wrap.building-animated-stats-section.studiolabs .building-animated-stat .animated-stat-category img {
    width: 83px;
}

.section-wrap.building-animated-stats-section.labcenteral .building-animated-stat .animated-stat-category {
    height: 182px;
    width: 182px;
}

.section-wrap.building-animated-stats-section.labcenteral .building-animated-stat .animated-stat-category img {
    width: 49px;
}

.building-animated-stat .stat-overlay {
    left: 30px;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: translateY(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition-delay: 0.5s;
}

.section-in-view .building-animated-stat .stat-overlay {
    opacity: 1;
    transform: none;
}

@media (min-width: 768.5px) {
    .building-animated-stat:before {
        background: #000;
        border-radius: 100%;
        content: '';
        height: 4px;
        position: absolute;
        right: calc(50% + 120px);
        transition: opacity 0.5s ease;
        top: 94px;
        width: 4px;
    }

    .building-animated-stat:after {
        border-bottom: 1px solid #000;
        content: '';
        height: 1px;
        position: absolute;
        right: calc(50% + 120px);
        top: 95px;
        transition: opacity 0.5s ease, width 0.75s ease;
        transition-delay: 0.5s;
        width: 0;
    }
}

.section-in-view .building-animated-stat:before {
    opacity: 1;
}

.section-in-view .building-animated-stat:after {
    opacity: 1;
    width: calc(50vw - 600px);
}

.section-wrap.building-animated-stats-section.studiolabs .building-animated-stat .stat-overlay {
    left: auto;
    right: 30px;
    top: 30px;
}

.section-wrap.building-animated-stats-section.studiolabs .building-animated-stat:before {
    right: auto;
    left: calc(50% + 100px);
    top: 139px;
}

.section-wrap.building-animated-stats-section.studiolabs .building-animated-stat:after {
    right: auto;
    left: calc(50% + 100px);
    top: 140px;
}

.section-wrap.building-animated-stats-section.studiolabs.section-in-view .building-animated-stat:after {
    width: calc(50vw - 500px);
}

.section-wrap.building-animated-stats-section.labcenteral.building-animated-stat .stat-overlay {
    top: 30px;
}

.section-wrap.building-animated-stats-section.labcenteral .building-animated-stat:before {
    right: calc(50% + 65px);
    top: 104px;
}

.section-wrap.building-animated-stats-section.labcenteral .building-animated-stat:after {
    right: calc(50% + 65px);
    top: 105px;
}

.section-wrap.building-animated-stats-section.labcenteral.section-in-view .building-animated-stat:after {
    width: calc(50vw - 450px);
}


.building-animated-stat .stat-overlay .stat-block {
    
}

.building-animated-stat .stat-overlay .stat-additional-info-toggle {
    background: url(/images/icons/plus-icon.svg) 50% 50% no-repeat;
    border-radius: 100%;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 0;
    height: 46px;
    margin-bottom: 15px;
    text-indent: -9999px;
    transition: transform 0.2s ease;
    width: 46px;
}

.expanded .building-animated-stat .stat-overlay .stat-additional-info-toggle {
    transform: rotate(-45deg);
}

.building-animated-stat .stat-overlay .stat-additional-info {
    display: none;
    width: 250px;
}

.building-animated-stat .stat-overlay .stat-additional-info p {
    
}

.building-animated-stat .stat-overlay .stat-additional-info p:last-child {

}

@media (max-width: 768px) {
    .section-wrap.building-animated-stats-section {
        margin-bottom: -18px;
    }

    .building-animated-stat {
        margin-left: auto;
        margin-right: 0;
        max-width: 180px;
    }

    .building-animated-stat .animated-stat-category {
        height: 182px;
        width: 182px;
        font-size: 9px;
    }
    
    .building-animated-stat .animated-stat-category img {
        margin-bottom: 5px;
        width: 80px;
    }

    .section-wrap.building-animated-stats-section.studiolabs .building-animated-stat .animated-stat-category {
        height: 143px;
        width: 143px;
    }

    .section-wrap.building-animated-stats-section.studiolabs .building-animated-stat .animated-stat-category img {
        width: 41px;
    }

    .section-wrap.building-animated-stats-section.labcenteral .building-animated-stat .animated-stat-category {
        height: 90px;
        width: 90px;
    }

    .section-wrap.building-animated-stats-section.labcenteral .building-animated-stat .animated-stat-category img {
        width: 25px;
    }
    
    .building-animated-stat .stat-overlay .stat-additional-info-toggle {
        background-size: 10px auto;
        height: 24px;
        margin-bottom: 7px;
        position: absolute;
        width: 24px;

        display: none;
    }

    .building-animated-stat .stat-overlay .stat-additional-info {
        display: block;
    }

    .building-animated-stat .stat-overlay {
        left: 15px;
        top: 0;
    }

    .section-wrap.building-animated-stats-section.studiolabs .building-animated-stat .stat-overlay {
        left: 15px;
        right: auto;  
        top: 0;      
    }

    .section-wrap.building-animated-stats-section.labcenteral .building-animated-stat .stat-overlay {
        top: 50px;
    }

    .building-animated-stat .stat-overlay .stat-additional-info p {
        font-size: 10px;
        margin-bottom: 6px;
        max-width: 200px;
    }

    .building-animated-stat .stat-overlay .stat-additional-info p .arrow-button {
        font-size: 10px;
        padding: 4px 20px 4px 15px;
    }
}

@media (max-width: 420px) {
    .building-animated-stat .stat-block .label {
        font-size: 10px;
    }

    .building-animated-stat .stat-block .stat {
        font-size: 65px;
    }

    .building-animated-stat .stat-block .stat .identifier {
        font-size: 9px;
        top: 9px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Building Summary Stats (injected via public/js/main.js) ------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.building-summary-stats {
    margin-top: 50px;
}

@media (min-width: 768.5px) {
    .section-wrap.building-summary-stats .content-block {
        border-left: 1px solid #000;
        padding-left: 22px;
    }

    .section-wrap.building-summary-stats .content-block:first-child {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .section-wrap.building-summary-stats {
        padding: 30px 15px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Amenities Interactive Map Block (injected via pages/amenities.js) --------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.amenities-interactive-map-block {
    position: relative;

    display: none !important;
}

.amenities-interactive-map-block-image-wrap {
}

.amenities-interactive-map-block-image-wrap img {
    display: block;
    width: 100%;
}

.amenities-interactive-map-block-image-wrap img.hover-image {
    left: 0;
    mix-blend-mode: multiply;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: opacity 0.2s linear;
    z-index: 1;
}

.amenities-interactive-map-block-image-wrap img.hover-image.active {
    opacity: 1;
}

.amenities-interactive-map-block-image-wrap img.main-image {

}

.amenities-interactive-map-hotspots {
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenities-interactive-map-hotspots li {

}

.amenities-interactive-map-hotspots li a {
    background: var(--red);
    border-radius: 100%;
    border: 0.25vw solid #fff;
    font-size: 0;
    height: 2vw;
    left: 39.5%;
    position: absolute;
    text-indent: -9999px;
    top: 59.5%;
    width: 2vw;
}

.amenities-interactive-map-hotspots li a.blue-hotspot {
    background: var(--blue);
    left: 60.2%;
    top: 34%;
}  

.amenities-interactive-map-hotspots li a.green-hotspot {
    background: var(--green);
    left: 74.76%;
    top: 37.72%;
}

.amenities-interactive-map-hotspots li a.yellow-hotspot {
    background: var(--yellow);
    left: 71.3%;
    top: 42.85%;
}

.amenities-interactive-map-hotspots li a:hover,
.amenities-interactive-map-hotspots li a.active {

}

.amenities-interactive-map-popups {
    
}

.amenities-interactive-map-popup {
    background: #fff;
    border: 1px solid #000;
    left: 28%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 25%;
    z-index: 3;
}

.amenities-interactive-map-popup.active {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.amenities-interactive-map-connector {
    background: #000;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
    z-index: 2;
}

.amenities-interactive-map-connector.active {
    opacity: 1;
    transition: opacity 0.2s linear;
    transition-delay: 0.1s;
}

.amenities-interactive-map-connector.red {
    height: 60%;
    left: 40.5%;
    top: 0;
}

.amenities-interactive-map-connector.blue {
    position: static;
}

.amenities-interactive-map-connector.blue:before,
.amenities-interactive-map-connector.blue:after {
    background: #000;
    content: '';
    position: absolute;
}

.amenities-interactive-map-connector.blue:before {
    height: 19%;
    left: 61.25%;
    top: 15%;
    width: 1px;
}

.amenities-interactive-map-connector.blue:after {
    height: 1px;
    left: 52%;
    top: 15%;
    width: 9.25%;
}

.amenities-interactive-map-connector.yellow {
    position: static;
}

.amenities-interactive-map-connector.yellow:before,
.amenities-interactive-map-connector.yellow:after {
    background: #000;
    content: '';
    position: absolute;
}

.amenities-interactive-map-connector.yellow:before {
    height: 27.75%;
    left: 72.35%;
    top: 15%;
    width: 1px;
}

.amenities-interactive-map-connector.yellow:after {
    height: 1px;
    left: 52%;
    top: 15%;
    width: 20.35%;
}

.amenities-interactive-map-connector.green {
    position: static;
}

.amenities-interactive-map-connector.green:before,
.amenities-interactive-map-connector.green:after {
    background: #000;
    content: '';
    position: absolute;
}

.amenities-interactive-map-connector.green:before {
    height: 22.75%;
    left: 75.75%;
    top: 15%;
    width: 1px;
}

.amenities-interactive-map-connector.green:after {
    height: 1px;
    left: 52%;
    top: 15%;
    width: 23.75%;
}

.amenities-interactive-map-popup-image {
    border-bottom: 1px solid #000;
}

.amenities-interactive-map-popup-image img {
    display: block;
    width: 100%;
}

.amenities-interactive-map-popup-content {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.55px;
    line-height: 120%;
    padding: 5px 20px;
    text-align: center;
    text-transform: uppercase;
}

/* Two column amenities */
.section-wrap.om-and-erc-amenities-section  {
    margin-bottom: 30px;
}

/*
@media (min-width: 768px) {
    .section-wrap.om-and-erc-amenities-section .col-2 {
        margin-right: 100px;
        width: 488px;
    }
}
*/

.section-wrap.om-and-erc-amenities-section .temp-two-col-amenities h3 {
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 37px;
}

.section-wrap.om-and-erc-amenities-section .temp-two-col-amenities p {
    border-bottom: 1px solid #000;
    font-size: 32px;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.section-wrap.om-and-erc-amenities-section .temp-two-col-amenities p:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (min-width: 768.5px) {
    .section-wrap.om-and-erc-amenities-section .content-block.temp-two-col-amenities {
        display: flex;
        gap: 50px;
        justify-content: flex-end;
    }

    .section-wrap.om-and-erc-amenities-section .content-block.temp-two-col-amenities p {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .amenities-interactive-map-hotspots li a {
        height: 15px;
        width: 15px;
    }

    .amenities-interactive-map-connectors {
        display: none;
    }

    .section-wrap.om-and-erc-amenities-section .temp-two-col-amenities h3 {
        font-size: 12px;
        margin-bottom: 27px;
    }

    .section-wrap.om-and-erc-amenities-section .temp-two-col-amenities p {
        font-size: 18px;
    }

    .amenities-interactive-map-popup {
        left: -15px;
        right: -15px;
        top: 80%;
        width: calc(100% + 30px);
    }

    .section-wrap.om-and-erc-amenities-section .content-block.temp-two-col-amenities .sub {
        margin-bottom: 40px;
    }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> ZO Amenity Info Section --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.zo-amenity-info-section {
    margin-bottom: 20px;
    margin-top: 50px;
}

.section-wrap.zo-amenity-info-section .content2 {
    background: url(/images/amenities/zo-by-tishman-speyer-logo.png) 100% 0 no-repeat;
    background-size: 288px auto;
    padding-right: 350px;
    width: calc(100% - 50px);
}

.section-wrap.zo-amenity-info-section .content2 .arrow-button {
    margin-left: 9.5vw;
}

@media (max-width: 1250px) {
    .section-wrap.zo-amenity-info-section .content2 {
       background-position: calc(100% - 50px);
    }      
}

@media (max-width: 768px) {
    .section-wrap.zo-amenity-info-section .content2 {
        background-size: 160px auto;
        background-position: 50% 0;
        padding: 90px 0 0 0;
        width: auto;
    }

    .section-wrap.zo-amenity-info-section .content2 .arrow-button {
        margin-left: 0;
        margin-top: 0;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Scientific Advisory Board Section ----------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.scientific-advisory-board-section {
    margin-bottom: 50px;

    display: none !important;
}

.section-wrap.scientific-advisory-board-section h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 120%; 
}

.section-wrap.scientific-advisory-board-section .content-block.col-4:not(:nth-child(-n+5)) {
    display: none;
}

.section-wrap.scientific-advisory-board-section .content-block.col-4 {
    padding-left: 31px;
    position: relative;
}

.section-wrap.scientific-advisory-board-section .content-block.col-4:before {
    border-radius: 100%;
    border: 1px solid #000;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 10px;
}

.section-wrap.scientific-advisory-board-section .content-block.col-4 p {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    max-width: 330px;
}

.section-wrap.scientific-advisory-board-section .content-block.col-4 p .strong {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
}

.scientific-advisory-board-section-see-all {
    align-items: center;
    color: #000;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    gap: 14px;
    line-height: 32px;
    position: relative;
}

.scientific-advisory-board-section-see-all:before {
    background: url(/images/icons/plus-icon.svg) 50% 50% no-repeat;
    border-radius: 100%;
    border: 1px solid #000;
    content: '';
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 46px;
    text-indent: -9999px;
    transition: transform 0.2s ease;
    width: 46px;
}

.scientific-advisory-board-section-see-all.clicked:before {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .section-wrap.scientific-advisory-board-section h3 {
        font-size: 14px;
    }

    .section-wrap.scientific-advisory-board-section .content-block.col-4 {
        padding-left: 20px;
    }

    .section-wrap.scientific-advisory-board-section .content-block.col-4:before {
        height: 7px;
        width: 7px;
    }

    .section-wrap.scientific-advisory-board-section .content-block.col-4 p {
        font-size: 12px;
    }

    .section-wrap.scientific-advisory-board-section .content-block.col-4 p .strong {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .scientific-advisory-board-section-see-all {
        font-size: 14px;
        gap: 8px;
    }

    .scientific-advisory-board-section-see-all:before {
        background-size: 12px;
        height: 30px;
        width: 30px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Breakthrough Operations Section ------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.breakthrough-operations-section {
    display: none;

    margin-bottom: 50px;
}

.section-wrap.breakthrough-operations-section .col-1 h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 120%; 
}

.section-wrap.breakthrough-operations-section .col-4 h2 {   
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.48px;
    margin-bottom: 10px;
    line-height: 120%;
}

.section-wrap.breakthrough-operations-section .col-4 h3 {   
    font-size: 32px;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 30px;
}

.section-wrap.breakthrough-operations-section .col-4 p {   
    display: none;
    font-size: 14.51px;
    margin-top: 38px;
}

.section-wrap.breakthrough-operations-section .show-more-toggle {
    background: url(/images/icons/plus-icon.svg) 50% 50% no-repeat;
    border-radius: 100%;
    border: 1px solid #000;
    content: '';
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 46px;
    text-indent: -9999px;
    transition: transform 0.2s ease;
    width: 46px;
}

.section-wrap.breakthrough-operations-section .show-more-toggle.clicked {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .section-wrap.breakthrough-operations-section .section-wrap-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .section-wrap.breakthrough-operations-section .col-1 h3 {
        font-size: 14px;
    }

    .section-wrap.breakthrough-operations-section .col-4 {
        width: calc(50% - 30px);
    }

    .section-wrap.breakthrough-operations-section .col-4 h2 {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .section-wrap.breakthrough-operations-section .col-4 h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .section-wrap.breakthrough-operations-section .show-more-toggle {
        background-size: 12px auto;
        height: 30px;
        width: 30px;
    }

    .section-wrap.breakthrough-operations-section .col-4 p {
        font-size: 12px;
        margin-top: 18px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Allstonway Info Section --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 768px) {
    .section-wrap.allstonway-info-section .col-3-5:last-child {
        width: 100%;
    }

    .section-wrap.allstonway-info-section .content2 {
        margin-bottom: 80px;
    }
}

@media (min-width: 1460px) {
    .allstonway-stats .inline-stat-blocks .stat-block {
        min-width: 220px;
    }
}

.section-wrap.allstonway-info-section .content2 p:not(:first-child) {
    border-bottom: 1px solid #000;
    margin: 0;
    max-width: 408px;
    padding: 10px 0;
}

.section-wrap.allstonway-info-section .content1 .inline-quote-block {
    margin: 50px 0 50px 42px;
    max-width: 610px;
}

@media (min-width: 768.5px) and (max-width: 1500px) {
    .section-wrap.allstonway-info-section .content1 .inline-quote-block {
        margin-left: 40px;
    }    
}

.inline-stat-blocks {
    display: flex;
    align-items: flex-start;
    gap: 75px;
}

.inline-stat-blocks .stat-block {
    border-left: 1px solid #000;
    padding-left: 15px;
}

.inline-stat-blocks .stat-block .label {
    margin-bottom: 30px;
}

.allstonway-info-section .arrow-button {
    display: none;
}

@media (min-width: 1250px) {
    .inline-stat-blocks {
        gap: 150px;
    }

    .inline-stat-blocks .stat-block {
        min-width: 150px;
    }
}

@media (max-width: 1020px) {
    .allstonway-stats .inline-stat-blocks {
        flex-wrap: wrap;
    }

    .allstonway-stats .inline-stat-blocks .stat-block {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .inline-stat-blocks {
        margin-top: 30px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Neighborhood Section 2 ---------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.neighborhood-section-2 {

}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Neighborhood Section 2 Stats ---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.neighborhood-section-2-stats {

}

.section-wrap.neighborhood-section-2-stats .inline-stat-blocks {
    align-items: unset;
    margin-top: 0;
}

.section-wrap.neighborhood-section-2-stats .stat-block {
    min-width: 260px;
}

.inline-stat-blocks .arrow-button {
    margin-top: auto;

    display: none;
}

@media (min-width: 768.5px) and (max-width: 1205px) {
    .section-wrap.neighborhood-section-2-stats {
        position: relative;
        padding-bottom: 50px;
    }

    .inline-stat-blocks .arrow-button {
        position: absolute;
        right: 35px;
        bottom: 35px;
    }
}

@media (max-width: 768px) {
    .section-wrap.neighborhood-section-2-stats .inline-stat-blocks .stat-block {
        padding-left: 0;
        border-left: 0;
    }

    .section-wrap.neighborhood-section-2-stats .stats-slider .slick-arrow.slick-next {
        bottom: 110px;
        top: auto;
    }

    .section-wrap.neighborhood-section-2-stats .inline-stat-blocks .stat-block .image {
        margin-bottom: 30px;
    }

    .section-wrap.neighborhood-section-2-stats .inline-stat-blocks .stat-block .image img {
        display: block;
    }

    .section-wrap.neighborhood-section-2-stats .inline-stat-blocks .stat-block .label,
    .section-wrap.neighborhood-section-2-stats .inline-stat-blocks .stat-block .stat {
        border-left: 1px solid #000; 
        padding-left: 15px;
    }

    .section-wrap.neighborhood-section-2-stats .inline-stat-blocks .stat-block .label {
        margin-bottom: 0;
        padding-bottom: 30px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Map and Location Intro Section -------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.allston-map-and-location-intro-section {
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .section-wrap.allston-map-and-location-intro-section .col-3-5:last-child {
        width: calc(40% - 50px);
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Easy to Get To Summary Section -------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.easy-to-get-to-summary-text-section {
    margin-bottom: 50px;
    margin-top: 50px;
}

.section-wrap.easy-to-get-to-summary-text-section .inline-stat-blocks {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .section-wrap.easy-to-get-to-summary-text-section .col-3-5:nth-child(2) {
        width: calc(40% - 50px);
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Neighborhood Transit Map -------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.transit-map-text img {
    width: 280px;
}

@media (min-width: 768.5px) {
    .content-block.col-3.transit-map-text {
        width: 320px;
    }

    .content-block.col-2-3.transit-map-image-wrap {
        width: calc(100% - 420px);
    }
}

@media (max-width: 768px) {
    .transit-map-text img {
        width: 200px;
    }
}

.transit-map-mobile-note {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28px;
    line-height: 120%;
    margin-bottom: -18px;
    margin-top: 30px;
    text-align: right;
}

.transit-map-mobile {
    height: 50vh;
}

.transit-map-mobile img {
    max-width: none;
}

.transit-map-image-wrap {
    cursor: zoom-in;
    overflow: hidden;
    position: relative;
}

.transit-map-image-wrap.zoomed {
    cursor: move;
}

.transit-map-image-wrap #transit-map-image {
    display: block;
    width: 100%;
}

.transit-map-image-wrap #zoomable-transit-map-image {
    display: block;
    transform: translate(0, 0);
    transition: opacity 0.3s ease;
    opacity: 0;
    width: 200%;
    max-width: none;
    position: absolute;
    left: 0;
    top: 0;
}

.transit-map-image-wrap.zoomed #zoomable-transit-map-image {
    opacity: 1;
}

@media (max-width: 768px) {
    .transit-map-image-wrap {
        cursor: auto;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Availability Intro Section ------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 768.5px) {
    .section-wrap.availability-intro-summary-section {
        margin-bottom: 50px;
        margin-top: 50px;
    }
}

@media (min-width: 768px) {
    .section-wrap.availability-intro-summary-section .col-3-5 {
        width: calc(50% - 50px);
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Availability Image and Table Section -------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.availability-image-and-table-section {
    margin-bottom: 50px;
}

.availabilty-image-key {
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: center;
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.availabilty-image-key li {
    align-items: center;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    gap: 5px;
    letter-spacing: 0.48px;
    line-height: 120%;
}

.availabilty-image-key li:before {
    background: #FF6B00;
    border-radius: 100%;
    content: '';
    display: block;
    height: 10px;
    width: 10px;
}

.availabilty-image-key li:nth-child(2):before {
    background: var(--yellow);
}

.availabilty-image-key li:nth-child(3):before {
    background: var(--blue);
}

.availability-image-wrap {
    position: relative;
}

.availability-image-wrap img {
    display: block;
    width: 100%;
}

.availability-table-block table {
    border-collapse: collapse;
    width: 100%;
}

.availability-table-block table th {
    border-bottom: 1px solid #000;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.48px;
    line-height: 120%;
    padding: 7px 0 7px 0;
    text-align: left;
}

.availability-table-block table tbody tr {
    position: relative;
}

.availability-table-block table td {
    border-bottom: 1px solid #000;
    padding: 5px 0;
}

.availability-table-block table td:first-child {
    font-size: 45px;
}

.availability-table-block table tbody tr:hover td:first-child:before {
    background: var(--blue);
    bottom: -1px;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    top: -1px;
    width: 50vw;
    z-index: 0;
}

.availability-table-block table tbody tr:hover td:first-child span {
    position: relative;
    z-index: 1;
}

.availability-table-block table tbody tr:hover td {
    background: var(--blue);
    position: relative;
}

.availability-table-block table tbody tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 768px) {
    .availabilty-image-key {
        gap: 25px;
    }

    .availabilty-image-key li {
        font-size: 10px;
        letter-spacing: 0.2px;
    }

    .availability-table-block table th {
        font-size: 12px;
    }

    .availability-table-block table td:first-child {
        font-size: 25px;
    }

    .availability-table-block table tbody tr:hover td:first-child:before {
        left: -15px;
        width: 100vw;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Studio Labs Summary Section ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.studio-labs-summary-section {
    margin-bottom: 50px;
}

.section-wrap.studio-labs-summary-section .content2 {

}

@media (min-width: 768.5px) {
    .section-wrap.studio-labs-summary-section .content1 h2 {
        font-size: 45px;
        max-width: 630px;
    }

    .section-wrap.studio-labs-summary-section .stats {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .section-wrap.summaryTextSection.studio-labs-summary-section .content1 p {
        max-width: 565px;
    }

    .section-wrap.studio-labs-summary-section .inline-image-wrap {
        max-width: 990px;
        margin: 0 auto;
    }

    .section-wrap.studio-labs-summary-section .content2,
    .section-wrap.studio-labs-summary-section .image-block {
        margin-top: 80px;
    }
}

.section-wrap.studio-labs-summary-section .stats:before {
    background: url(/images/availability/studiolabs-by-breakthrough-logo.png) 0 0 no-repeat;
    background-size: 350px auto;
    content: '';
    height: 300px;
    pointer-events: none;
    position: absolute;
    right: 50px;
    top: 0;
    width: 300px;
}

.section-wrap.studio-labs-summary-section .content2 p {
    align-items: center;
    background: url(/images/availability/turnkey.svg) 2px 50% no-repeat;
    display: flex;
    margin: 0 0 20px;
    min-height: 50px;
    padding-left: 100px;
    max-width: 500px;
}

.section-wrap.studio-labs-summary-section .content2 p:nth-child(2) {
    background-image: url(/images/availability/designed.svg);
}

.section-wrap.studio-labs-summary-section .content2 p:nth-child(3) {
    background-image: url(/images/availability/suites.svg);
    background-position: 5px 50%;
}

.section-wrap.studio-labs-summary-section .content2 p:nth-child(4) {
    background-image: url(/images/availability/full-furnished.svg);
    background-position: 5px 50%;
}

.section-wrap.studio-labs-summary-section .content2 p:nth-child(5) {
    background-image: url(/images/availability/shared.svg);
}

@media (max-width: 1200px) {
    .section-wrap.studio-labs-summary-section .content2:before {
        left: -270px;
    }
}

@media (max-width: 1024px) {
    .section-wrap.studio-labs-summary-section .content2 p {
        padding-left: 80px;
        margin: 0 15px 25px;
    }
}

@media (max-width: 900px) {
    .section-wrap.studio-labs-summary-section .content2 {
        display: block;
        max-width: calc(80% - 25px);
    }
}

@media (max-width: 768px) {
    .section-wrap.studio-labs-summary-section .inline-stat-blocks { 
        margin: 30px 0;
    }

    .section-wrap.studio-labs-summary-section .stats {
        padding-top: 100px;
        position: relative;
    }

    .section-wrap.studio-labs-summary-section .stats:before {
        background-position: 0 -40px;
        display: block;
        height: 140px;
        margin: -30px 0 0 0;
        right: auto;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Project Timeline Secondary Section ---------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.project-timeline-secondary-section {
    margin-bottom: 30px;
}

.section-wrap.project-timeline-secondary-section .col-5 {
    border-left: 1px solid #000;
    padding-left: 20px;
}

.section-wrap.project-timeline-secondary-section .col-5 p:first-child {
    margin-bottom: 18px;
}

.section-wrap.project-timeline-secondary-section .col-5 .strong {
    color: var(--red);
    font-size: 18.376px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.section-wrap.project-timeline-secondary-section .col-5:nth-child(2) .strong {
    color: #FF6B00;
}

.section-wrap.project-timeline-secondary-section .col-5:nth-child(3) .strong {
    color: var(--yellow);
}

.section-wrap.project-timeline-secondary-section .col-5:nth-child(4) .strong {
    color: var(--blue);
}

.section-wrap.project-timeline-secondary-section .col-5:nth-child(5) .strong {
    color: var(--green);
}

.section-wrap.project-timeline-secondary-section .col-5 p:last-child {
    font-size: 44.801px;
    font-weight: 300;
    line-height: 107%
}

@media (max-width: 1350px) {
    .section-wrap.project-timeline-secondary-section .col-5 p:last-child {
        font-size: 35px;
    }
}
@media (max-width: 1110px) {
    .section-wrap.project-timeline-secondary-section .col-5 p:last-child {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .section-wrap.project-timeline.hero img {
        aspect-ratio: 0;
        object-fit: unset;
        width: 100%;
        height: auto !important;
    }

    .section-wrap.project-timeline-secondary-section .section-wrap-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .section-wrap.project-timeline-secondary-section .col-5 {
        width: calc(50% - 50px);
    }

    .section-wrap.project-timeline-secondary-section .col-5 p:first-child {
        margin-bottom: 6px;
    }

    .section-wrap.project-timeline-secondary-section .col-5 .strong {
        font-size: 11px;
    }

    .section-wrap.project-timeline-secondary-section .col-5 p:last-child {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-wrap.project-timeline-secondary-section .col-5 {
        width: calc(50% - 30px);
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Section Template -> Contact Leasing Team Section ---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.contact-leasing-team-section .content-block.col-4:not(:last-child) {
    padding-left: 35px;
    position: relative;
}

.section-wrap.contact-leasing-team-section .content-block.col-4:not(:last-child):before {
    border-radius: 100%;
    border: 1px solid #000;
    content: '';
    height: 12px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 12px;
}

.section-wrap.contact-leasing-team-section p:first-child {
    font-weight: bold;
    margin-bottom: 15px;
}

.section-wrap.contact-leasing-team-section a:not(.download-button) {
    border-bottom: 1px solid transparent;
    color: #000;
    transition: border 0.2s ease;
}

.section-wrap.contact-leasing-team-section a:not(.download-button):hover {
    border-bottom: 1px solid #000;
}

.section-wrap.contact-leasing-team-section a.download-button {
    margin-top: 25px;
}

@media (min-width: 768.5px) and (max-width: 1350px) {
    .content-block.col-4.leasing-team-last-block {
        text-align: right;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-wrap.contact-leasing-team-section .content-block.col-4:not(:last-child) {
        padding-left: 20px;
    }

    .section-wrap.contact-leasing-team-section .content-block.col-4:not(:last-child):before {
        height: 8px;
        width: 8px;
    }

    .section-wrap.contact-leasing-team-section p:first-child {
        margin-bottom: 5px;
    }

    .section-wrap.contact-leasing-team-section a.download-button {
        margin-top: 0;
    }
    
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Figure - Image With Caption ------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
figure.image-with-caption {
    margin: 0;
    padding: 0;
}

figure.image-with-caption img {
    display: block;
    width: 100%;
}

figure.image-with-caption figcaption {
    margin-top: 15px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Splash Video ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.splash {
    background: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}

.splash video {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: fixed;
    top: 0;
    width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Homepage ----------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 1024px) {
    body.viewing-page-homepage .summaryTextSection .col-3-5 {
        min-width: 850px;
    }
}

@media (min-width: 768.5px) {
    body.viewing-page-homepage .fastFactSection .section-wrap-inner {
        flex-direction: row-reverse;
    }
}

body.viewing-page-homepage .section-wrap.fastFactSection .content-block:last-child .fast-fact .amount:after {
    content: 'ACRES';
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Vision ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 1024px) {
    body.viewing-page-vision .summaryTextSection .col-3-5.content1 {
        min-width: 850px;
    }

    body.viewing-page-vision .summaryTextSection .col-3-5.content1 h2 {
        max-width: 1080px;
    }
}

.inline-quote-block .quote {
    font-size: 23px;
    font-weight: 300;
    line-height: 110%;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative;
}

.inline-quote-block .quote:before {
    color: #FF2424;
    content: '“';
    font-family: Helvetica;
    font-size: 100px;
    font-style: normal;
    font-weight: 300;
    left: -44px;
    letter-spacing: -2.5px;
    line-height: 100%;
    position: absolute;
    top: -11px;
}

.inline-quote-block .quote.yellow:before {
    color: #FFD600;
}

.inline-quote-block .quote-source {
    font-size: 17px;
    font-weight: 600;
    line-height: 120%;
}



@media (max-width: 768px) {
    .inline-quote-block .quote {
        font-size: 18px;
        line-height: 124%;
        margin-bottom: 20px;
        padding-left: 35px;
        max-width: 80%;
    }

    .inline-quote-block .quote:before {
        font-size: 85px;
        left: 0;
    }

    .inline-quote-block .quote-source {
        font-size: 11px;
        margin-left: 35px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Amenities ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 1024px) {
    body.viewing-page-amenities .summaryTextSection .col-3-5 {
        min-width: 790px;
    }

    body.viewing-page-amenities .summaryTextSection .col-3-5 h2 {
        max-width: 1080px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Building (East and West Lab) --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-east-and-west-lab .section-wrap.summaryTextSection:nth-child(3),
body.viewing-page-east-and-west-lab .building-animated-stats-section {
    display: none;
}

@media (min-width: 768px) {    
    .section-wrap.summaryTextSection.building-1-summary-section .content-block.col-3-5:nth-child(2),
    .section-wrap.summaryTextSection.building-2-summary-section .content-block.col-3-5:nth-child(2) {
        width: calc(20%);
    }

    .section-wrap.summaryTextSection.building-1-summary-section .content-block.col-3-5:nth-child(3),
    .section-wrap.summaryTextSection.building-2-summary-section .content-block.col-3-5:nth-child(3) {
        width: calc(30%);
    }

    .section-wrap.summaryTextSection.building-1-summary-section .content-block.col-3-5:nth-child(4),
    .section-wrap.summaryTextSection.building-2-summary-section .content-block.col-3-5:nth-child(4) {
        margin-left: auto;
        width: calc(40%);
    }

    .section-wrap.summaryTextSection.building-1-summary-section .content-block.col-3-5:nth-child(4) img,
    .section-wrap.summaryTextSection.building-2-summary-section .content-block.col-3-5:nth-child(4) img {
        width: 100%;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Availability ------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-availability .section-wrap.introHeadingSection h1 sup {
    font-size: 10px;
    position: absolute;
    transform: translate(13%, -14%);
}

.section-wrap.introHeadingSection h1 {
    max-width: 1470px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Neighborhood ------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-neighborhood .gallery.style-b .slick-slider .slick-track {
    align-items: flex-start;
}

body.viewing-page-neighborhood .gallery.style-b .slide .image img {
    object-fit: cover;
    aspect-ratio: 1.67;
    object-position: 50% 50%;
}

.section-wrap.neighborhood-map-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.content-block.col-2-3.map-content-box {
    margin: 0 0 0 auto;
    width: calc(100% - 416px);
}

.content-block.col-3.map-list-box {
    -webkit-overflow-scrolling: touch;
    height: 60vh;
    margin-right: 0;
    margin-bottom: 0;
    order: -1;
    overflow-y: scroll;
    padding-right: 40px;
    padding-top: 40px;
    position: relative;
    width: 347px;
}

.content-block.col-3.map-list-box::-webkit-scrollbar {
    width: 10px;
}

.content-block.col-3.map-list-box::-webkit-scrollbar-track {
    /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); */
}

.content-block.col-3.map-list-box::-webkit-scrollbar-thumb {
    background-color: #000;
    outline: 1px solid #000;
}

.map-categories {
    margin-bottom: 30px;
}

.map-categories-list {
    align-items: center;
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.map-categories-list li {

}

.map-categories-list li a {
    border-bottom: 1px solid transparent;
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.38px;
    line-height: 120%;
    padding-bottom: 2px;
    padding-left: 17px;
    position: relative;
    white-space: nowrap;
}

.map-categories-list li a:before {
    background-color: var(--red);
    border-radius: 100%;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 10px;
}

.map-categories-list li a[data-cat="Cafes"]:before {
    background-color: var(--blue);
}

.map-categories-list li a[data-cat="Groceries & Shopping"]:before {
    background-color: #FF6B00;
}

.map-categories-list li a[data-cat="Parks & Greenspace"]:before {
    background-color: var(--green);
}

.map-categories-list li a[data-cat="Arts & Culture"]:before {
    background-color: var(--yellow);
}

.map-categories-list li a[data-cat="Fitness / Wellness"]:before {
    background-color: #9D9D9D;
}

.map-categories-list li a[data-cat="Harvard / Academic"]:before {
    background-color: #fff;
    border: 2px solid #A51C30;
}

.map-categories-list li a.selected,
.map-categories-list li a:hover {
    border-bottom: 1px solid #000;
}

.locations-list {
    display: none;
}

.location-card {
    border-top: 1px solid #000;
    cursor: pointer;
    padding: 20px 0;
    position: relative;
    transition: background 0.2s ease;
}

.location-card.hidden {
    display: none !important;
}

.location-card:hover {
    background: rgba(0,0,0,0.01);
}

.location-card .title {
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: normal
}

.location-card .short-desc {
    margin-bottom: 15px;
}

.links-wrap,
.links-wrap a {
    color: #000;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.links-wrap {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 50px;
}

@media (max-width: 1680px) {
    .map-categories-list {
        gap: 22px;
    }

    .map-categories-list li a {
        font-size: 12px;
        padding-left: 13px;
    }

    .map-categories-list li a:before {
        height: 8px;
        top: 2px;
        width: 8px;
    }
}

@media (max-width: 1390px) {
    .map-categories-list {
        flex-wrap: wrap;
    }

    .map-categories-list li a {
        font-size: 10px;
        padding-left: 11px;
    }
}

@media (max-width: 1200px) {
    .map-categories-list {
        gap: 25px;
    }

    .map-categories-list li a {
        font-size: 13px;
        padding-left: 15px;
    }

    .map-categories-list li a:before {
        top: 0;
    }
}

@media (max-width: 1024px) {
    .content-block.col-2-3.map-content-box,
    .content-block.col-3.map-list-box {
        /* height: auto; */
        margin: 0 15px 15px;
        padding-right: 0;
        width: calc(100% - 30px);
    }

    .content-block.col-2-3.map-content-box {
        display: flex;
        flex-direction: column;
    }
    
    .map-container {
        height: 50vh;
        margin-top: 10px;
    }

    .content-block.col-3.map-list-box {
        order: 1;
    }

    .map-categories-list {
        gap: 20px;
    }

    .map-categories-list li a {
        font-size: 11px;
        padding-left: 12px;
    }

    .map-categories-list li a:before {
        top: 1px;
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 768px) {
    .viewing-page-neighborhood .section-wrap.hero:nth-child(2) .section-heading-block {
        display: none;
    }

    .map-categories {
        margin-bottom: 10px;
    }

    .map-categories-list {
        gap: 10px;
    }

    .map-categories-list li a {
        font-size: 11px;
        padding-left: 10px;
    }

    .map-categories-list li a:before {
        top: 2px;
        width: 5px;
        height: 5px;
    }

    .content-block.col-3.map-list-box {
        padding-top: 0;
    }

    .location-card .title {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .links-wrap {
        gap: 25px;
    }

    .links-wrap, .links-wrap a {
        font-size: 9px;
        letter-spacing: 0.25px;
    }
}

@media (max-width: 500px) {
    .map-categories-list li {
        width: calc(50% - 5px);
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Neighborhood -> Map Styles ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.map-container {
    background: #000;
    height: 60vh;
    outline: none;
}

.gm-style iframe + div { border:none!important; }

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 12px 12px 0 !important;
}

.main-map-marker {
    background: url(/images/icons/1m-map-pin.svg) 50% 50% no-repeat;
    background-size: contain;
    width: 83px;
    height: 83px;
}

.custom-marker {
    cursor: pointer;
}

.custom-map-marker-inner {
    background: var(--red);
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    font-family: 'Greenwich';
    font-size: 10px;
    font-weight: 300;
    height: 15px;
    line-height: 15px;
    text-align: center;
    transition: transform 0.2s ease;
    width: 15px;
}

.custom-map-marker-inner[data-category="Cafes"] {
    background-color: var(--blue);
}

.custom-map-marker-inner[data-category="Dining & Bars"] {
    background-color: var(--red);
}

.custom-map-marker-inner[data-category="Groceries & Shopping"] {
    background-color: #FF6B00;
}

.custom-map-marker-inner[data-category="Parks & Greenspace"] {
    background-color: var(--green);
}

.custom-map-marker-inner[data-category="Arts & Culture"] {
    background-color: var(--yellow);
}

.custom-map-marker-inner[data-category="Fitness / Wellness"] {
    background-color: #9D9D9D;
}

.custom-map-marker-inner[data-category="Harvard / Academic"] {
    background-color: #fff;
    border: 2px solid #A51C30;
}

.custom-map-marker-inner.selected {
    transform: scale(1.5);
    z-index: 9999 !important;
}

.marker-popup {
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.marker-popup.coming-soon {
    text-align: center;
    text-transform: none;
}

.gm-style-iw button {display: none !important;}

.leaflet-popup-close-button {
    display: none !important;
}

.leaflet-popup-content-wrapper, 
.leaflet-popup-tip {
    border: 1px solid #000;
    box-shadow: none;
    background: #fff;
}

.leaflet-popup-content-wrapper {
    border-radius: 3px;
    font-family: var(--default-font-family);
    font-size: 21px;
}

.leaflet-popup-tip-container {
    margin-top: -1px;
}

@media (max-width: 768px) {
    .map-container {
        height: 100vw;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Team --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Press -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-press .main-content .wrapper {
    display: flex;
    flex-direction: column;
}

body.viewing-page-press .section-wrap:first-child {
    margin-bottom: 50px;
}

body.viewing-page-press .section-wrap.prev-next-page-section {
    order: 100;
}

.section-wrap.news-items .section-wrap-inner {
    padding: 50px 0;
    position: relative;
}

.section-wrap.news-items .content-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding: 0 20px;
}

.section-wrap.news-items .image {
    margin-bottom: 25px;
}

.section-wrap.news-items .image img {
    aspect-ratio: 1.5;
    display: block;
    object-fit: cover;
    width: 100%;
}

.section-wrap.news-items h3 {
    font-size: 50px;
}

.section-wrap.news-items .publication,
.section-wrap.news-items .read-article-link-wrap a {
    color: #000;
    font-family: 'Styrene A Web';
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.75px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-wrap.news-items .read-article-link-wrap a {
    font-size: 11px;
    letter-spacing: 2.12px;
}

.section-wrap.news-items .read-article-link-wrap a:hover {
    border-bottom: 1px solid #000;
}

.section-wrap.news-items .abstract {
    margin-bottom: 30px;
}

.section-wrap.news-items .read-article-link-wrap {
    margin-top: auto;
}

.section-wrap.news-items .date {
    display: none;
}

@media (max-width: 1500px) {
    .section-wrap.news-items h3 {
        font-size: calc(50px * 0.90)
    }  
}

@media (max-width: 1250px) {
    .section-wrap.news-items .content-block {
        padding: 0;
    }

    .section-wrap.news-items h3 {
        font-size: calc(50px * 0.75)
    }  

    .section-wrap.news-items .publication,
    .section-wrap.news-items .read-article-link-wrap a {
        font-size: 10px;
        letter-spacing: 1.75px;
    }

    .section-wrap.news-items .read-article-link-wrap a {
        font-size: 9px;
        letter-spacing: 1.55px;
    }
}

@media (max-width: 1024px) {
    .section-wrap.news-items h3 {
        font-size: calc(50px * 0.65)
    }  
}

@media (max-width: 768px) {
    body.viewing-page-press .section-wrap:first-child {
        margin-bottom: 0;
    }

    .section-wrap.news-items .section-wrap-inner {
        padding: 0;
    }

    .section-wrap.news-items .section-wrap-inner:before {
        display: none;
    }

    .section-wrap.news-items .content-block {
        border-top: 1px solid #000;
        margin-top: 30px;
        padding: 30px 0 0;
    }

    .section-wrap.news-items h3 {
        font-size: 25px;
    }  

    .section-wrap.news-items .publication,
    .section-wrap.news-items .read-article-link-wrap a {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .section-wrap.news-items .read-article-link-wrap a {
        font-size: 8px;
        letter-spacing: 1px;
    }
}

@media (max-width: 550px) {
    .section-wrap.news-items h3 {
        font-size: 25px;
    }  
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Inquire ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.viewing-page-contact h3.circle-icon-heading {
    font-size: 90px;
    font-weight: 300;
    line-height: 82px;
    max-width: 820px;
    padding-left: 0;
}

.viewing-page-contact h3.circle-icon-heading:before {
    display: none;
}

@media (min-width: 768px) {
    .viewing-page-contact .customTextSection h2.h2 {
        font-size: 45px;
    }
}

.site-contact-form {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    position: relative;
}

.site-contact-form.submitting:before {
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0.6;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 4;
}

.site-contact-form .col {
    width: calc(50% - 25px);
}

.field-wrap:not(:last-child) {
    margin-bottom: 50px;
}

.field-wrap label {
    display: none;
}

::placeholder {
    color: #000;
}

.error::placeholder {
    color: var(--red);
}

.field-wrap input[type=text],
.field-wrap input[type=email],
.field-wrap input[type=zip],
.field-wrap select,
.field-wrap textarea {
    -webkit-appearance: none;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    box-shadow: none;
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    height: 32px;
    letter-spacing: 0.55px;
    line-height: 120%;
    outline: none;
    padding: 8px 0;
    text-transform: uppercase;
    width: 100%;
}

.field-wrap input[type=text].error,
.field-wrap input[type=email].error,
.field-wrap input[type=zip].error,
.field-wrap select.error,
.field-wrap textarea.error {
    border-color: var(--red);
    color: var(--red);
}

.field-wrap textarea {
    border: 1px solid #000;
    height: 83px;
    padding: 8px;
}

.submit-wrap {
    width: 100%;
}

.thank-you-wrap,
.submitting-wrap {
    display: none;
    font-weight: 500;
    position: relative;
    z-index: 5;
}

.thank-you-wrap .button,
.submitting-wrap .button {
    background: #000;
    color: #fff;
}

.submitting-wrap .button,
.thank-you-wrap .button {
    background-image: none;
}

.submit-wrap .button,
.submit-wrap .arrow-button {
	-webkit-appearance: none;
	-webkit-box-shadow: none;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 20px;
    outline: none;
}

@media (max-width: 1024px) {
    section.form h2 {
        font-size: 90px;
    }

    .viewing-page-contact h3.circle-icon-heading {
        font-size: 70px;
        line-height: 100%;
    }
}

@media (max-width: 768px) {
    section.form h2 {
        font-size: 50px;
    }

    .viewing-page-contact h3.circle-icon-heading {
        font-size: 32px;
    }

    .submit-wrap .button,
    .submit-wrap .arrow-button {
        font-size: 15px;
    }

    body.viewing-page-contact .section-wrap.contact-leasing-team-section h2 {
        font-size: 20px;
        max-width: 180px;
    }

    body.viewing-page-contact .footer .upper-footer .sub-row:first-child .sub-col:first-child,
    body.viewing-page-contact .footer .upper-footer .sub-row:last-child,
    body.viewing-page-contact .footer .upper-footer > .col:last-child {
        display: none;
    }

    body.viewing-page-contact .section-wrap.form .submit-wrap {
        margin-bottom: 50px;
        margin-top: 35px;
    }
}

@media (max-width: 450px) {
    section.form {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .section-label {
        margin-bottom: 35px;
    }

    section.form h2 {
        margin-bottom: 35px;
    }

    .site-contact-form {
        display: block;
    }

    .site-contact-form .col {
        width: 100%;
    }

    .field-wrap,
    .field-wrap:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media (max-width: 1024px) {
    input, select, textarea {
        font-size: 16px;
    }
}

@media (max-width: 450px) {
   input, select, textarea {
        font-size: 14px;
    }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Footer ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.footer {
    background: #000;
    color: #fff;
    margin-top: auto;
    padding: 50px 50px 15px 50px;
}

.footer a:not(.button) {
    border-bottom: 1px solid transparent;
    color: #fff;
    text-decoration: none;
    transition: border 0.15s ease;
}

.footer a:not(.button):hover {
    border-bottom: 1px solid #fff;
}

.footer .upper-footer {
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    padding: 35px 0;
}

.footer .upper-footer > .col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer .upper-footer > .col:first-child {
    padding-right: 50px;
}

.footer .upper-footer .sub-row {
    display: flex;
}

.footer .upper-footer .sub-row:first-child,
.footer-form-intro {
    font-size: 32px;
    gap: 50px;
    line-height: 110%; 
    margin-bottom: 50px;
}

.footer .upper-footer .sub-row:first-child p,
.footer-form-intro p {
    line-height: 110%; 
    font-weight: 300;
}

.footer .upper-footer .sub-row:first-child .sub-col {
    max-width: 305px;
}

.footer .upper-footer .sub-row:last-child {
    gap: 50px;
    margin-top: auto;
}

.footer .upper-footer .sub-row:last-child .sub-col {
    padding-left: 18px;
    position: relative;
}

.footer .upper-footer .sub-row:last-child .sub-col:before {
    border-radius: 100%;
    border: 1px solid #fff;
    content: '';
    height: 10px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 10px;
}

/* footer form */
.footer .upper-footer > .col:last-child {
    border-left: 1px solid #fff;
    max-width: 520px;
    padding-left: 50px;
}

.footer .site-contact-form {
    gap: 30px 50px;
}

.footer .site-contact-form .field-wrap {
    margin-bottom: 15px;
}

.footer .site-contact-form .field-wrap:nth-child(2) {
    margin-bottom: 0;
}

.footer .site-contact-form .field-wrap:last-child {
    display: none;
}

.footer .site-contact-form ::placeholder {
    color: #fff;
}

.footer .site-contact-form .error::placeholder {
    color: pink;
}

.footer .site-contact-form .field-wrap input[type=text],
.footer .site-contact-form .field-wrap input[type=email],
.footer .site-contact-form .field-wrap input[type=zip],
.footer .site-contact-form .field-wrap select,
.footer .site-contact-form .field-wrap textarea {
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.footer .site-contact-form .submit-wrap .arrow-button {
    background-image: url(/images/icons/right-arrow-white.svg);
    background-position: calc(100% - 11px) 50%;
    background-repeat: no-repeat;
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    padding-left: 17px;
    padding-right: 75px;
}

.footer .site-contact-form .submit-wrap .arrow-button:hover {
    background-color: #fff;
    background-image: url(/images/icons/small-right-arrow.svg);
    border-color: #fff;
    color: #000;
}

.footer .site-contact-form .thank-you-wrap .button,
.footer .site-contact-form .submitting-wrap .button {
    background-image: none;
}

.footer .site-contact-form.submitting:before {
    background: #000;
}


.footer .middle-footer {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
}

.footer .middle-footer .col:first-child {
    width: 65%;
}

.footer .middle-footer .col:first-child img {
    display: block;
    width: 100%;
}

.footer .middle-footer .col:last-child {
    text-align: right;
}

.footer .middle-footer .col:last-child img {
    display: block;
    height: 100%;
    margin-left: auto;
}

.footer .lower-footer {
    align-items: center;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 15px;
}

.footer .lower-footer ul {
    align-items: center;
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .lower-footer .col:last-child ul {
    font-size: 11px;
    gap: 20px;
}

.footer .lower-footer .col:last-child ul a {
    border-bottom: 1px solid #fff;
    font-size: 11px;
}

.footer .lower-footer .col:last-child ul a.footer-credit {
    border-bottom: 1px solid transparent;
}

.footer .lower-footer .col:last-child ul a.footer-credit:hover {
    border-bottom: 1px solid #fff;
}

@media (max-width: 1150px) {
    .footer {
        font-size: 14px;
        padding: 30px 20px 15px 20px;
    }

    .footer .upper-footer .sub-row:first-child, .footer-form-intro {
        font-size: 24px;
        gap: 30px;
        margin-bottom: 50px;
    }

    .footer .upper-footer > .col:last-child {
        padding-left: 30px;
    }

    .footer .site-contact-form {
        gap: 20px;
    }

    .footer .site-contact-form .col {
        width: calc(50% - 10px);
    }

    .footer .site-contact-form .submit-wrap .button {
        font-size: 14px;
    }
}

@media (max-width: 1023px) {
    .footer .upper-footer {
        display: block;
        padding-bottom: 0;
    }

    .footer .upper-footer .sub-row:first-child, 
    .footer-form-intro {
        margin-bottom: 25px;
    }

    .footer .upper-footer > .col:last-child {
        margin-top: 30px;
        border-left: 0;
        border-top: 1px solid #fff;
        max-width: 100%;
        padding: 30px 0;
    }
}

@media (max-width: 768px) {
    .footer {
        display: flex;
        flex-direction: column;
        padding: 20px 15px 15px;
    }

    .footer .middle-footer {
        order: -1;
        margin-bottom: 30px;
    }

    .footer .middle-footer .col:first-child {
        width: 100%;
    }

    .footer .middle-footer .col:last-child {
        display: none;
    }

    .footer .upper-footer > .col:first-child {
        padding-right: 0;
    }

    .footer .upper-footer .sub-row:last-child {
        background: url(/images/template/1m-logo-white.svg) 100% 100% no-repeat;
        background-size: auto 100px;
        gap: 20px;
        flex-direction: column;
        padding-right: 0;
    }

    .footer .lower-footer {
        align-items: flex-start;
        border-top: 0;
        flex-direction: column;
        margin-top: 0;
    }

    .footer .lower-footer img {
        max-width: 100%;
    }

    .footer .lower-footer .col:first-child {
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .footer {
        font-size: 12px;
        margin-top: 30px;
    }

    body.viewing-page-homepage .footer {
        margin-top: 0;
    }

    body.viewing-page-contact .footer {
        margin-top: 0;
    }

    .footer .upper-footer .sub-row:first-child, .footer-form-intro {
        font-size: 20px;
        gap: 15px;
    }

    .footer .upper-footer .sub-row:first-child .sub-col {
        width: 50%;
    }

    .footer .site-contact-form .col {
        margin-bottom: 15px;
        width: 100%;
    }

    .footer .site-contact-form .submit-wrap {
        margin-top: 45px;
    }
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Page Styles -> Landingpage -------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-landingpage .section-wrap:nth-child(4) .content-block {
  border-top: none;
  padding-top: 0;
}

body.viewing-page-landingpage .horizontal-navigation-wrap,
body.viewing-page-landingpage footer {
  display:none;
}

body.viewing-page-landingpage h3.circle-icon-heading:before {
  display: none;
}

body.viewing-page-landingpage h3.circle-icon-heading {
  font-size: 90px;
  font-weight: 300;
  line-height: 82px;
  max-width: 820px;
  padding-left: 0;
}

body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) {
  background: #000;
}

body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .field-wrap input,
body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .field-wrap input::placeholder,
body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .arrow-button,
body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) {
  border-color: #fff;
  color:#fff;
}

body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .arrow-button {
  background-image: url(/images/icons/white-small-arrow-right.svg); 
}

body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .arrow-button:hover {
  background-image: url(/images/icons/small-right-arrow.svg);
  background-color: #fff;
  color: #000;
}

body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .field-wrap input.error,
body.viewing-page-landingpage .section-wrap:has(.form-wrap-holder) .field-wrap input.error::placeholder {
  border-color: var(--red);
  color: var(--red);
}

body.viewing-page-landingpage .temp-two-col-amenities .sub > p {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.viewing-page-landingpage .temp-two-col-amenities .sub > p:before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 60px;
  height: 32px;
  flex-shrink: 0;
}

body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(2):before {
  background-image: url(/images/landingpage/5000-sf-convener.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(3):before {
  background-image: url(/images/landingpage/3000-SF-of-outdoor-terraces.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(4):before {
  background-image: url(/images/landingpage/On-site-food-and-beverage-offerings.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(5):before {
  background-image: url(/images/landingpage/5000-SF-fitness-center--locker-rooms.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(6):before {
  background-image: url(/images/landingpage/3-ground-floor-AV-equipped-conference-rooms.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(7):before {
  background-image: url(/images/landingpage/600-on-site-bike-parking-spaces-with-a-repair-station.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(1) > p:nth-child(8):before {
  background-image: url(/images/landingpage/Access-to-Tishman-Speyers-ZO-platform.png);
}

body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(2) > p:nth-child(2):before {
  background-image: url(/images/landingpage/2-acre-public-greenway-with-dynamic-year-round-programming.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(2) > p:nth-child(3):before {
  background-image: url(/images/landingpage/45000-SF-of-ground-floor-retail-and-F-B.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(2) > p:nth-child(4):before {
  background-image: url(/images/landingpage/Shuttle-access-to-Harvard-Square-and-Boston-Landing-MBTA-station.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(2) > p:nth-child(5):before {
  background-image: url(/images/landingpage/16-floor-upscale-lifestyle-hotel-with-246-rooms.png);
}
body.viewing-page-landingpage .temp-two-col-amenities .sub:nth-child(2) > p:nth-child(6):before {
  background-image: url(/images/landingpage/David-Rubenstein-Treehouse-at-Harvard-University.png);
}
body.viewing-page-landingpage .nav-toggle {
  display: none !important;
}


@media (max-width: 768px) {
  body.viewing-page-landingpage .inline-quote-block {
    display:none;
  }
} 