@charset "UTF-8";
@urbanize-gray {
  color: #223843;
}
.flex-centered {
  display: flex;
  justify-content: center;
}

a {
  color: #08b2e3;
}
a:hover, a:focus {
  color: #0c92b8;
}

h1.page-header {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 64px;
  margin-top: 44px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
  padding-bottom: 0;
  border-bottom: none;
}

.pager-load-more li > a,
.pager-load-more li > span {
  display: block;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: url("/themes/custom/urbanize_2018/images/pager_icon.svg") no-repeat;
  background-color: #f9f9f9;
  background-size: 27px 27px;
  background-position-y: 50%;
  background-position-x: calc(50% - 86px);
}
.pager-load-more li > a:hover, .pager-load-more li > a:focus,
.pager-load-more li > span:hover,
.pager-load-more li > span:focus {
  text-decoration: none;
  background-color: #f9f9f9;
  color: #0c92b8;
  background: url("/themes/custom/urbanize_2018/images/pager_icon_hover.svg") no-repeat;
  background-color: #f0f0f0;
  background-size: 27px 27px;
  background-position-y: 50%;
  background-position-x: calc(50% - 86px);
}
.pager-load-more li > a .ajax-progress-throbber,
.pager-load-more li > span .ajax-progress-throbber {
  display: none;
}

.link-to-landing-page {
  display: block;
  padding: 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: url("/themes/custom/urbanize_2018/images/arrow_circle_right.svg") no-repeat;
  background-size: 27px 27px;
  background-position-y: 50%;
  cursor: pointer;
  background-position-x: calc(50% + 68px);
}
.link-to-landing-page:hover, .link-to-landing-page:focus {
  color: #08b2e3;
  text-decoration: none;
}

.pagination > li > a,
.pagination > li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  border-color: #e8e8e8;
  font-family: "Roboto Condensed", sans-serif;
  color: #33373d;
  font-weight: 900;
  font-size: 18px;
  padding: 6px 16px;
  background-color: white;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #33373d;
  color: white;
  border-color: #33373d;
}

.pagination > li.next,
.pagination > li.prev {
  width: 9px;
  height: 25px;
  overflow: hidden;
}
.pagination > li.next > a,
.pagination > li.prev > a {
  text-indent: 9999px;
  background: url("/themes/custom/urbanize_2018/images/pager_next.svg") no-repeat;
  background-size: 15px 15px;
  width: 10px;
  background-position: 50% 50%;
}

.pagination > li.prev > a {
  transform: rotate(180deg);
}

.pagination > li.pager-last,
.pagination > li.pager-first {
  width: 9px;
  height: 25px;
  overflow: hidden;
}
.pagination > li.pager-last > a,
.pagination > li.pager-first > a {
  text-indent: 9999px;
  background: url("/themes/custom/urbanize_2018/images/pager_last.svg") no-repeat;
  background-size: 15px 15px;
  width: 10px;
  background-position: 50% 50%;
}

.pagination > li.pager-first > a {
  transform: rotate(180deg);
}

.page-background-image {
  position: relative;
}
.page-background-image svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 25%;
  z-index: 1;
}
.page-background-image svg.mask-dark {
  display: none;
}
.page-background-image img {
  width: 100%;
}

.b-lazy {
  opacity: 0;
  transition: all 700ms;
}

.b-loaded {
  opacity: 1;
}

.tetromino {
  width: 24px;
  height: 28px;
  position: absolute;
  transition: all ease 0.3s;
  background: url('data:image/svg+xml;utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 612 684"%3E%3Cpath fill="%238991A5" d="M305.7 0L0 170.9v342.3L305.7 684 612 513.2V170.9L305.7 0z"/%3E%3Cpath fill="%23fff" d="M305.7 80.1l-233.6 131 233.6 131 234.2-131-234.2-131"/%3E%3C/svg%3E') no-repeat top center;
}

.box1 {
  animation: tetromino1 3s ease-out infinite;
}

.box2 {
  animation: tetromino2 3s ease-out infinite;
}

.box3 {
  animation: tetromino3 3s ease-out infinite;
  z-index: 2;
}

.box4 {
  animation: tetromino4 3s ease-out infinite;
}

@keyframes tetromino1 {
  0%, 40% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -6px);
  }
  60%, 100% {
    transform: translate(24px, 0);
  }
}
@keyframes tetromino2 {
  0%, 20% {
    transform: translate(24px, 0px);
  }
  40%, 100% {
    transform: translate(36px, 6px);
  }
}
@keyframes tetromino3 {
  0% {
    transform: translate(36px, 6px);
  }
  20%, 60% {
    transform: translate(24px, 12px);
  }
  90%, 100% {
    transform: translate(12px, 6px);
  }
}
@keyframes tetromino4 {
  0%, 60% {
    transform: translate(12px, 6px);
  }
  90%, 100% {
    transform: translate(0, 0);
  }
}
.sup-blue {
  color: #10B1E2;
  font-size: 12px;
  position: relative;
  bottom: 7px;
  left: 3px;
}

.pre-header-wrapper {
  background-color: #f0eff4;
  padding: 32px 0;
}
@media (max-width: 767px) {
  .pre-header-wrapper {
    display: none;
  }
}

body.front .pre-header-wrapper {
  display: none;
}

.region-header {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .region-header {
    margin-bottom: 0;
  }
}

.region-post-header {
  margin-bottom: 30px;
}

.region-page-break {
  margin-bottom: 30px;
}

.page-break-2-wrapper,
.page-break-wrapper {
  margin-bottom: 30px;
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 40px;
}
.page-break-2-wrapper h2,
.page-break-wrapper h2 {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 25px;
  color: white;
  font-size: 36px;
  border-bottom: 4px solid #08B2E3;
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 45px;
  margin-top: 25px;
}

.region-page-break-3 {
  margin-bottom: 30px;
}

.region-page-break-4 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .second-container {
    width: 100%;
  }
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: transparent;
}

.navbar-wrapper {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  height: 118px;
  z-index: 999;
}

.navbar {
  background-color: #fff;
  border: none;
}

.navbar-toggle {
  margin-top: 22px;
}

.navbar-btn.logo {
  margin-top: 19px;
}
.navbar-btn.logo img {
  width: 159px;
  height: 57px;
}
.navbar-btn.logo img.dark-mode-logo {
  display: none;
}

.navbar-default .navbar-nav > li > a {
  color: #223843;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.navbar-default .navbar-nav > li.leaf-highlight > a {
  color: #00aaff;
  font-weight: 800;
}

.navbar-default .navbar-nav > li.dropdown li {
  color: #bac2c5;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  padding: 0 20px;
}
.navbar-default .navbar-nav > li.dropdown li a {
  color: #223843;
}

.navbar-default .navbar-nav > li.dropdown li.leaf-group-heading {
  color: #223843;
}

.menu-neighborhoods.navbar-nav,
.menu-regions.navbar-nav {
  font-family: "Roboto Condensed", sans-serif;
}
.menu-neighborhoods.navbar-nav .leaf-group-heading,
.menu-regions.navbar-nav .leaf-group-heading {
  padding: 0px 20px;
}
@media (min-width: 768px) {
  .menu-neighborhoods.navbar-nav,
  .menu-regions.navbar-nav {
    margin-left: 22px;
  }
  .menu-neighborhoods.navbar-nav ul.dropdown-menu,
  .menu-regions.navbar-nav ul.dropdown-menu {
    position: fixed;
    top: 119px;
    left: 0;
    right: 0;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    z-index: 9999;
    column-count: 5;
    column-gap: 15px;
    border: none;
    box-shadow: none;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu,
  .menu-regions.navbar-nav ul.dropdown-menu {
    width: 750px;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu,
  .menu-regions.navbar-nav ul.dropdown-menu {
    width: 970px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu,
  .menu-regions.navbar-nav ul.dropdown-menu {
    width: 1170px;
  }
}
@media (min-width: 768px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu a,
  .menu-regions.navbar-nav ul.dropdown-menu a {
    padding: 0px;
  }
  .menu-neighborhoods.navbar-nav ul.dropdown-menu .seperator,
  .menu-regions.navbar-nav ul.dropdown-menu .seperator {
    margin-bottom: 22px;
  }
  .menu-neighborhoods.navbar-nav ul.dropdown-menu .seperator:first-child,
  .menu-regions.navbar-nav ul.dropdown-menu .seperator:first-child {
    margin-bottom: 0;
  }
  .menu-neighborhoods.navbar-nav .menu-background,
  .menu-regions.navbar-nav .menu-background {
    width: 100%;
    height: 1000px;
    position: fixed;
    top: 118px;
    left: 0;
    background-color: white;
    border-top: 1px solid #e8e8e8;
    display: none;
  }
  .menu-neighborhoods.navbar-nav .dropdown.open > .menu-background,
  .menu-regions.navbar-nav .dropdown.open > .menu-background {
    display: block;
  }
}

@media all and (min-width: 768px) and (max-height: 800px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu {
    font-size: 13px;
  }
}
@media all and (min-width: 768px) and (max-height: 750px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (max-height: 705px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu {
    column-count: 6;
  }
}
@media all and (min-width: 768px) and (max-height: 625px) {
  .menu-neighborhoods.navbar-nav ul.dropdown-menu {
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .menu-regions.navbar-nav {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-default {
    padding-left: 0;
  }
  .navbar-default .menu-search {
    position: relative;
    left: 30px;
  }
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
@media (min-width: 768px) {
  .navbar-default .navbar-nav .leaf-icon a {
    display: block;
    text-indent: -9999px;
    width: 20px;
    height: 21px;
    padding: 0;
    margin-top: 15px;
    margin-left: 17px;
    background: url("/themes/custom/urbanize_2018/images/nav_icon_ig.svg");
    background-size: 20px 21px;
  }
  .navbar-default .navbar-nav .leaf-instagram a {
    margin-left: 39px;
  }
  .navbar-default .navbar-nav .leaf-twitter a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_tw.svg");
    background-size: 21.3px 17px;
    width: 21.3px;
    height: 17px;
    margin-top: 16px;
  }
  .navbar-default .navbar-nav .leaf-facebook a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_fb.svg");
    background-size: 9px 18px;
    width: 9px;
    height: 18px;
    margin-left: 15px;
  }
  .navbar-default .navbar-nav .leaf-youtube a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_yt.svg");
    background-size: 23px 17px;
    width: 23px;
    height: 17px;
    margin-left: 18px;
    margin-top: 16px;
  }
  .navbar-default .navbar-nav .leaf-rss a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_rss.svg");
    background-size: 19px 19px;
    width: 19px;
    height: 19px;
    margin-left: 18px;
  }
  .navbar-default .navbar-nav .leaf-search a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_search.svg");
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-top: 14px;
    margin-left: 37px;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    padding-top: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  ul.menu-neighborhoods.navbar-nav,
  ul.menu-regions.navbar-nav {
    margin-left: 0;
  }
  ul.menu-neighborhoods.navbar-nav a.dropdown-toggle,
  ul.menu-regions.navbar-nav a.dropdown-toggle {
    padding-right: 0;
  }
  ul.menu-neighborhoods.navbar-nav li.leaf-icon a,
  ul.menu-regions.navbar-nav li.leaf-icon a {
    margin-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  ul.menu-social {
    display: none;
  }
}
.search-expanded .menu-social {
  display: none;
}

@media (min-width: 768px) {
  .navbar-default .navbar-nav.menu-dev-resources-old {
    margin-left: 0;
  }
  .navbar-default .navbar-nav.menu-dev-resources-old > li.dropdown > a.shimmer, .navbar-default .navbar-nav.menu-dev-resources-old > li.dropdown > a.shimmer:hover, .navbar-default .navbar-nav.menu-dev-resources-old > li.dropdown > a.shimmer:visited, .navbar-default .navbar-nav.menu-dev-resources-old > li.dropdown > a.shimmer:active, .navbar-default .navbar-nav.menu-dev-resources-old > li.dropdown > a.shimmer:focus {
    font-weight: 800 !important;
    display: inline-block;
    color: rgba(255, 255, 255, 0.1);
    background: -webkit-gradient(linear, left top, right top, from(#00aaff), to(#00aaff), color-stop(0.5, #aee4ff));
    background: -moz-gradient(linear, left top, right top, from(#00aaff), to(#00aaff), color-stop(0.5, #aee4ff));
    background: gradient(linear, left top, right top, from(#00aaff), to(#00aaff), color-stop(0.5, #aee4ff));
    -webkit-background-size: 125px 100%;
    -moz-background-size: 125px 100%;
    background-size: 125px 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-animation-name: shimmer;
    -moz-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: 3;
    -moz-animation-iteration-count: 3;
    animation-iteration-count: 3;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: #00aaff;
    background-position: -11rem top;
  }
}
@-moz-keyframes shimmer {
  0% {
    background-position: -4.5rem top;
  }
  70% {
    background-position: 15rem top;
  }
  100% {
    background-position: 15rem top;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -4.5rem top;
  }
  70% {
    background-position: 15rem top;
  }
  100% {
    background-position: 15rem top;
  }
}
@-o-keyframes shimmer {
  0% {
    background-position: -4.5rem top;
  }
  70% {
    background-position: 15rem top;
  }
  100% {
    background-position: 15rem top;
  }
}
@keyframes shimmer {
  0% {
    background-position: -4.5rem top;
  }
  70% {
    background-position: 15rem top;
  }
  100% {
    background-position: 15rem top;
  }
}
.menu-dev-resources {
  font-family: "Roboto Condensed", sans-serif;
}
@media (min-width: 768px) {
  .menu-dev-resources > li > .dropdown-menu {
    left: 31px;
  }
}

@media (max-width: 767px) {
  .navbar-collapse {
    border-bottom: 1px solid #e8e8e8;
    overflow-y: scroll !important;
    max-height: 1000px;
  }
  .navbar-collapse ul.dropdown-menu li.leaf-group-heading,
  .navbar-collapse ul.dropdown-menu li.seperator {
    display: none;
  }
  .navbar-collapse ul.dropdown-menu li a {
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 300;
  }
}
.dropdown-arrow {
  width: 16px;
  height: 9px;
  margin-left: 2px;
  transition-duration: 200ms;
}

.dropdown.open .dropdown-arrow {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.dropdown.open .dropdown-arrow .caret-vector {
  fill: #00a7cc;
}

.dropdown-arrow-dark {
  display: none;
}

/* Hide Advertise and Dev Resources menus for widths 768px through 991px to prevent wrapping */
@media (min-width: 768px) and (max-width: 991px) {
  .menu-advertise,
  .menu-dev-resources {
    display: none;
  }
}

/* User menu (Piano) */
.primary-nav-sign-in,
.user-menu {
  display: none;
}

.primary-nav-sign-in.visible,
.user-menu.visible {
  display: block;
}

.primary-nav-sign-in,
.primary-nav-sign-out {
  cursor: pointer;
}

.user-menu .dropdown-user-menu {
  display: none;
}
.user-menu .dropdown-user-menu li.require-subscription {
  display: none;
}
.user-menu .dropdown-user-menu.subscribed li.require-subscription {
  display: block;
}

.user-menu.open .dropdown-user-menu {
  display: block;
}

#userMenuDropdownToggle {
  background-color: #161C28;
  color: white;
  height: 30px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  width: 30px;
  padding: 5px 7px;
}

#userMenuDropdownToggle {
  background-color: #161C28;
  color: white;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  width: 38px;
  display: inline-block;
  padding: 9px 5px;
  height: 36px;
  position: relative;
  bottom: 1px;
  text-align: center;
}
#userMenuDropdownToggle.with-image {
  padding: 0;
  overflow: hidden;
  background-color: transparent;
}

@media (min-width: 768px) {
  nav .dropdown-user-menu {
    margin-top: 9px;
    left: -79px;
    border-radius: 0;
    border: none;
  }
  nav .dropdown-user-menu li a {
    text-transform: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
  }
  nav .dropdown-user-menu li + li {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #userMenuDropdownToggle {
    display: none;
  }
  #userMenuLoggedIn {
    margin-top: 6px;
  }
  nav .user-menu .dropdown-user-menu {
    display: block;
    background: transparent;
  }
  nav .user-menu .dropdown-user-menu li.divider {
    display: none;
    display: none;
  }
  nav .user-menu .dropdown-user-menu li a {
    padding: 0;
  }
  .header .header__navs {
    margin-bottom: 90px !important;
  }
}
.region-search-bar .contextual-links-wrapper {
  display: none !important;
}
.region-search-bar .form-search .form-control::-webkit-input-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.region-search-bar .form-search .form-control:-moz-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.region-search-bar .form-search .form-control::-moz-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.region-search-bar .form-search .form-control:-ms-input-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.region-search-bar .form-search .form-text {
  padding-right: 20px;
  color: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 2px solid white;
  border-radius: 0;
  padding: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  width: 20px;
  background: url("/themes/custom/urbanize_2018/images/nav_icon_search.svg") no-repeat right center;
  background-size: 20px 20px;
  cursor: pointer;
  -webkit-transition: width 0.2s ease-in-out;
  -moz-transition: width 0.2s ease-in-out;
  -o-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
.region-search-bar .form-search .form-text.expanded {
  width: 280px;
  border-color: #08b2e3;
  color: #a3a8b0;
}
@media (max-width: 1199px) {
  .region-search-bar .form-search .form-text.expanded {
    width: 123px;
    padding-right: 20px;
  }
}
.region-search-bar .form-search .form-control.expanded::-webkit-input-placeholder {
  opacity: 1;
}
.region-search-bar .form-search .form-contro.expanded:-moz-placeholder {
  opacity: 1;
}
.region-search-bar .form-search .form-control.expanded::-moz-placeholder {
  opacity: 1;
}
.region-search-bar .form-search .form-control.expanded:-ms-input-placeholder {
  opacity: 1;
}
.region-search-bar .form-search button.btn-primary {
  display: none;
}

.page-search-content .main-container {
  margin-top: 30px;
}
.page-search-content .form-wrapper .form-item-keyword {
  width: 100%;
}
.page-search-content form.views-exposed-form {
  margin-top: 30px;
}
.page-search-content form.views-exposed-form .form-control::-webkit-input-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.page-search-content form.views-exposed-form .form-control:-moz-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.page-search-content form.views-exposed-form .form-control::-moz-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.page-search-content form.views-exposed-form .form-control:-ms-input-placeholder {
  color: #a3a8b0;
  opacity: 0;
}
.page-search-content form.views-exposed-form .form-control {
  padding-right: 20px;
  color: #a3a8b0;
  border: none;
  border-bottom: 2px solid #08b2e3;
  border-radius: 0;
  padding: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 20px;
  font-weight: 200;
  text-transform: uppercase;
  width: 100%;
  background: url("/themes/custom/urbanize_2018/images/nav_icon_search.svg") no-repeat right center;
  background-size: 20px 20px;
  cursor: pointer;
}
.page-search-content form.views-exposed-form button.btn-info {
  display: none;
}
.page-search-content ol.breadcrumb {
  display: none;
}
.page-search-content .ds-search-extra {
  font-family: "Roboto Slab", serif;
  color: #33373D;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.25em;
  margin-top: 30px;
  margin-bottom: 30px;
  letter-spacing: -0.018em;
}

/* Sticky Footer */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-container {
  flex: 1;
}

.col-footer-newsletter {
  z-index: 2;
}

.node-type-article .main-container {
  margin-bottom: 30px;
}

.neighborhood-tag {
  margin-top: 24px;
}
.neighborhood-tag a {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 11.95px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
}
.neighborhood-tag a:focus, .neighborhood-tag a:hover {
  text-decoration: none;
}

.container-article-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .container-article-info {
    flex-flow: column nowrap;
  }
}

.col-article-title {
  padding-right: 50px;
}

.col-article-project-link {
  flex: 0 0 197px;
  padding-top: 24px;
}
@media (max-width: 600px) {
  .col-article-project-link {
    flex: 0 0 20px;
    padding-top: 0;
    padding-bottom: 24px;
  }
}

h1.article-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 64px;
  margin-top: 20px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
}
@media (max-width: 767px) {
  h1.article-title {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  h1.article-title {
    font-size: 40px;
  }
}

.article-project-link .project-link-image {
  display: block;
  width: 197px;
  height: 197px;
}
.article-project-link .project-link-text {
  display: none;
  background: #03B0E0;
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 15px 12px 15px;
  display: none;
}
@media (max-width: 600px) {
  .article-project-link .project-link-image {
    display: none;
  }
  .article-project-link .project-link-text {
    display: inline-block;
  }
}

h2.article-subtitle {
  font-family: "Roboto Slab", serif;
  color: #33373D;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25em;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.018em;
}
@media (min-width: 1200px) {
  h2.article-subtitle {
    width: 66%;
  }
}
@media (max-width: 400px) {
  h2.article-subtitle {
    font-size: 16px;
  }
}

.article-byline {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.article-byline .author-image {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 4px;
  display: inline-block;
}

.byline-comment-link {
  font-weight: 700;
  display: inline-block;
  margin-left: 11px;
  cursor: pointer;
}
.byline-comment-link:hover, .byline-comment-link:focus, .byline-comment-link:active {
  text-decoration: none;
}

.comment-link-down-arrow {
  background: url("/themes/custom/urbanize_2018/images/comment-link-down-arrow.svg");
  background-size: 7px 11px;
  display: inline-block;
  width: 7px;
  height: 11px;
  position: relative;
  top: 1px;
}

.article-lead-image {
  position: relative;
}
@media (max-width: 767px) {
  .article-lead-image {
    margin-bottom: 25px;
  }
}
.article-lead-image .img-gallery-link {
  position: absolute;
  right: 0;
  top: 0;
  background-color: white;
  width: 130px;
  height: 53px;
  font-family: "Roboto Condensed", sans-serif;
  color: #08B2E3;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  padding-left: 15px;
  padding-top: 14px;
  cursor: pointer;
  user-select: none;
}
.article-lead-image .img-gallery-link .img-gallery-link-count {
  width: 27px;
  height: 22px;
  background: url("/themes/custom/urbanize_2018/images/gallery_link_icon.svg");
  background-size: 27px 22px;
  margin-left: 5px;
  color: white;
  display: inline-block;
  padding-top: 5px;
  padding-left: 6px;
  text-align: center;
  font-size: 13px;
}
.article-lead-image .img-gallery-link:hover {
  background-color: #f9f9f9;
  color: #0c92b8;
}
.article-lead-image .img-gallery-link:hover .img-gallery-link-count {
  background: url("/themes/custom/urbanize_2018/images/gallery_link_icon_hover.svg");
}

.node-article .article-body {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  margin-top: 48px;
}
.node-article .article-body p {
  margin-bottom: 36px;
  line-height: 30px;
}
.node-article .article-body a {
  font-weight: 700;
}
.node-article .article-body ul {
  margin-bottom: 36px;
}
.node-article .article-body ul li {
  margin-bottom: 20px;
}
.node-article .article-body .blockquote {
  font-family: "Roboto Condensed", sans-serif;
  color: #333333;
  font-weight: 700;
  font-size: 29px;
  margin-top: 0px;
  margin-bottom: 36px;
  quotes: "“" "”" "‘" "’";
  position: relative;
  padding-left: 45px;
  padding-right: 45px;
}
@media (max-width: 400px) {
  .node-article .article-body .blockquote {
    font-size: 22px;
  }
}
@media (max-width: 280px) {
  .node-article .article-body .blockquote {
    display: none;
  }
}
.node-article .article-body .blockquote:before {
  content: open-quote;
  color: #06b4d6;
  font-size: 70px;
  position: absolute;
  left: 0px;
  top: -10px;
}
.node-article .article-body .blockquote:after {
  content: close-quote;
  color: #06b4d6;
  font-size: 70px;
  position: absolute;
  right: 0px;
  top: -10px;
}
.node-article .field-name-field-image .field-item {
  margin-bottom: 30px;
}

.share-links {
  position: fixed;
  left: 0;
  top: 45%;
  z-index: 1;
}
@media (max-width: 767px) {
  .share-links {
    position: relative;
    top: 0;
  }
}

.share-link-list {
  list-style-type: none;
  padding-left: 0;
}

.share-link {
  margin-bottom: 1px;
  width: 48px;
  height: 48px;
  background-color: #33373d;
}
@media (max-width: 767px) {
  .share-link {
    margin-bottom: 0;
    margin-right: 1px;
    display: inline-block;
    width: 24px;
    height: 24px;
  }
}
.share-link a {
  background: url("/themes/custom/urbanize_2018/images/share_icon_twitter.svg");
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  display: block;
}
.share-link a.share-fb {
  background: url("/themes/custom/urbanize_2018/images/share_icon_facebook.svg");
}
.share-link a.share-li {
  background: url("/themes/custom/urbanize_2018/images/share_icon_linkedin.svg");
}
.share-link a.share-em {
  background: url("/themes/custom/urbanize_2018/images/share_icon_email.svg");
}
@media (max-width: 767px) {
  .share-link a {
    background-size: 24px 24px !important;
    width: 24px !important;
    height: 24px !important;
  }
}

.article-tags {
  list-style-type: none;
  padding-left: 0;
}

.article-tag {
  margin-right: 20px;
  display: inline-block;
}
.article-tag a {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 10px;
}
.article-tag a:hover {
  text-decoration: none;
}

.twentytwenty-wrapper {
  margin-top: 0;
  margin-bottom: 50px;
}

.article-inline-image {
  width: 100%;
  height: auto;
}

.article-body p.image-and-caption .caption {
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Roboto Condensed", sans-serif;
  color: #565656;
  width: 66%;
  margin-top: 0;
  padding: 5px 0;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

.field-name-field-video-embed {
  margin-top: 35px;
  margin-bottom: 25px;
}
.field-name-field-video-embed .player {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.field-name-field-video-embed .player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-container {
  margin-bottom: 50px;
  max-width: 100%;
}

.page-node-type-article .footer {
  margin-top: 200px;
}

.page-node.node-type-property-listing .ad-label {
  position: relative;
  top: 5px;
}

.listing-detail-header {
  position: relative;
  margin-top: 22px;
}

.listing-type {
  margin-top: 0;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 11.95px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
}

.listing-price {
  position: absolute;
  right: 0;
  top: 66px;
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: bold;
  font-size: 36px;
  letter-spacing: -0.53px;
}
@media (max-width: 767px) {
  .listing-price {
    position: relative;
    top: 5px;
  }
}

h1.listing-street-address {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 64px;
  margin-top: 20px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
  margin-top: 8px;
}
@media (max-width: 767px) {
  h1.listing-street-address {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  h1.listing-street-address {
    font-size: 40px;
  }
}

.listing-city-state-zip {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: -0.36px;
}

.listing-detail-carousel {
  margin-top: 47px;
}
.listing-detail-carousel .carousel-control {
  background-image: none;
}

.listing-detail-columns {
  margin-top: 30px;
}

.listing-attribute {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  letter-spacing: 0.22px;
  text-transform: uppercase;
  height: 58px;
  color: #33373D;
  padding-top: 13px;
  padding-left: 20px;
}
.listing-attribute .label-inline {
  display: inline-block;
  font-weight: normal;
  width: 245px;
}
.listing-attribute .item {
  display: inline-block;
  font-weight: bold;
}
.listing-attribute:nth-child(odd) {
  background-color: #f1f1f1;
}

.listing-team {
  margin-top: 60px;
}

.listing-team-header {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  font-weight: bold;
  color: #33373D;
  margin-bottom: 17px;
}

.listing-agent {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-item: flex-start;
  margin-bottom: 30px;
}

.agent-left-col {
  margin-right: 12px;
}

.agent-name {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: -0.36px;
  line-height: 24px;
  margin-top: -2px;
  margin-bottom: 7px;
}

.agent-firm,
.agent-phone,
.agent-email {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: -0.24px;
  line-height: 26px;
}

.social-links {
  margin-top: 22px;
}

.social-link {
  width: 19px;
  height: auto;
  display: inline-block;
  fill: #333333;
  margin-right: 13px;
}

.listing-description {
  margin-top: 30px;
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: 400;
  font-size: 18px;
}
.listing-description p {
  margin-bottom: 36px;
  line-height: 30px;
}
.listing-description a {
  font-weight: 700;
}
.listing-description ul {
  margin-bottom: 36px;
}
.listing-description ul li {
  margin-bottom: 20px;
}

.page-listings .ad-label {
  text-align: left;
  position: relative;
  top: 38px;
}
.page-listings h1.page-header {
  margin-bottom: 49px;
}
.page-listings .view-listings {
  margin-bottom: 300px;
}

.page-break-wrapper {
  padding-bottom: 0;
}
.page-break-wrapper .ad-label {
  margin-top: -14px;
  text-align: center;
}

.view-mode-article_thumb,
.view-mode-wide_article_thumb,
.view-mode-listing_thumb {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .view-mode-article_thumb,
  .view-mode-wide_article_thumb,
  .view-mode-listing_thumb {
    height: 159px;
  }
}
@media (min-width: 992px) {
  .view-mode-article_thumb,
  .view-mode-wide_article_thumb,
  .view-mode-listing_thumb {
    height: 212px;
  }
}
@media (min-width: 1200px) {
  .view-mode-article_thumb,
  .view-mode-wide_article_thumb,
  .view-mode-listing_thumb {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .view-mode-article_thumb,
  .view-mode-wide_article_thumb,
  .view-mode-listing_thumb {
    height: auto;
  }
  .view-mode-article_thumb .img-responsive,
  .view-mode-wide_article_thumb .img-responsive,
  .view-mode-listing_thumb .img-responsive {
    width: 100%;
  }
}
.view-mode-article_thumb a:hover,
.view-mode-article_thumb a:active,
.view-mode-article_thumb a:visited,
.view-mode-wide_article_thumb a:hover,
.view-mode-wide_article_thumb a:active,
.view-mode-wide_article_thumb a:visited,
.view-mode-listing_thumb a:hover,
.view-mode-listing_thumb a:active,
.view-mode-listing_thumb a:visited {
  text-decoration: none;
}

.thumb-bg {
  position: absolute;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .thumb-bg {
    position: relative;
  }
}

.thumb-info-block {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 60px 20px 20px;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 1200px), (max-width: 767px) {
  .thumb-info-block {
    padding-left: 30px;
    padding-bottom: 30px;
  }
}

.listing-thumb-info-block {
  padding-right: 20px;
}

.article-thumb-city {
  display: none;
}

.article-thumb-neighborhood,
.listing-thumb-type {
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  text-decoration: none;
  display: inline-block;
}
@media (min-width: 768px) {
  .article-thumb-neighborhood,
  .listing-thumb-type {
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .article-thumb-neighborhood,
  .listing-thumb-type {
    font-size: 11px;
  }
}
@media (min-width: 1200px) {
  .article-thumb-neighborhood,
  .listing-thumb-type {
    font-size: 12px;
  }
}

.article-thumb-sponsored {
  font-size: 10px;
  color: #C2C2C2;
  font-family: "Roboto";
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3px;
  margin-top: -17px;
}

.article-play-button {
  position: absolute;
  top: 30px;
  left: 30px;
  display: block;
  width: 44px;
  height: 44px;
  padding: 0;
  background: url("/themes/custom/urbanize_2018/images/article_thumb_play_btn.svg");
  background-size: 44px 44px;
}

.article-thumb-title,
.listing-thumb-address-1 {
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-weight: 700;
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
}
@media (min-width: 768px) {
  .article-thumb-title,
  .listing-thumb-address-1 {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .article-thumb-title,
  .listing-thumb-address-1 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .article-thumb-title,
  .listing-thumb-address-1 {
    font-size: 24px;
  }
}

.article-thumb-subtitle,
.listing-thumb-address-2 {
  font-family: "Roboto Slab", serif;
  color: white;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25em;
  margin-top: 6px;
  margin-bottom: 0;
  letter-spacing: -0.018em;
}
@media (min-width: 768px) {
  .article-thumb-subtitle,
  .listing-thumb-address-2 {
    display: none;
  }
}
@media (min-width: 992px) {
  .article-thumb-subtitle,
  .listing-thumb-address-2 {
    font-size: 10px;
    display: block;
  }
}
@media (min-width: 1200px) {
  .article-thumb-subtitle,
  .listing-thumb-address-2 {
    font-size: 12px;
    display: block;
  }
}
@media (max-width: 350px) {
  .article-thumb-subtitle,
  .listing-thumb-address-2 {
    display: none;
  }
}

.article-thumb-byline {
  display: none;
  font-family: "Roboto Condensed", sans-serif;
  color: #808894;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 5px;
}

.listing-thumb-price {
  display: inline-block;
  position: absolute;
  font-family: "Roboto Slab", serif;
  color: white;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25em;
  margin-top: 6px;
  margin-bottom: 0;
  right: 30px;
  bottom: 30px;
  letter-spacing: -0.018em;
}
@media (min-width: 768px) {
  .listing-thumb-price {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .listing-thumb-price {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .listing-thumb-price {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  .listing-thumb-price {
    display: none;
  }
}

.thumb-mask {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  opacity: 0.6;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 80%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 80%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#cc000000",GradientType=0 );
  transition: opacity 0.1s ease-in;
}

.thumb-mask:hover {
  opacity: 1;
}

.comment-count {
  position: absolute;
  right: 21px;
  bottom: 15px;
  background: url("/themes/custom/urbanize_2018/images/comment_count.svg");
  background-size: 28px 31.55px;
  width: 28px;
  height: 31.55px;
  z-index: 10;
}
.comment-count .disqus-comment-count {
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding-top: 2px;
}

.project-thumb-status-summary-element {
  color: white;
  font-size: 12px;
}
.project-thumb-status-summary-element .project-icon-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  margin-right: 3px;
}
.project-thumb-status-summary-element .project-icon-bullet.color-aqua {
  background-color: rgb(80, 175, 222);
}
.project-thumb-status-summary-element .project-icon-bullet.color-green {
  background-color: rgb(76, 156, 142);
}
.project-thumb-status-summary-element .project-icon-bullet.color-yellow {
  background-color: rgb(221, 202, 88);
}
.project-thumb-status-summary-element .project-icon-bullet.color-magenta {
  background-color: rgb(183, 97, 166);
}

body.node-type-page .pre-header-wrapper {
  display: none;
}
body.node-type-page .field-name-body {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  margin-top: 48px;
}
body.node-type-page .field-name-body p {
  margin-bottom: 36px;
  line-height: 30px;
}
body.node-type-page .field-name-body a {
  font-weight: 700;
}
body.node-type-page .field-name-body ul {
  margin-bottom: 36px;
}
body.node-type-page .field-name-body ul li {
  margin-bottom: 20px;
}

h1.page-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 64px;
  margin-top: 20px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
}
@media (max-width: 767px) {
  h1.page-title {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  h1.page-title {
    font-size: 40px;
  }
}

.term-page-header {
  margin-bottom: 30px;
}

.neighborhood-page .term-page-header {
  display: block;
}

.page-taxonomy-term h1.page-header {
  margin-bottom: 30px;
}

.page-neighborhood .term-page-header-right {
  margin-top: -6vw;
  background-color: transparent;
}
@media (max-width: 767px) {
  .page-neighborhood .term-page-header-right {
    margin-top: 0px;
  }
}

.neighborhood-map {
  border: none;
  margin-bottom: 10px;
  margin-top: 10px;
}

.neighborhood-description {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  margin-top: 18px;
}
.neighborhood-description p {
  margin-bottom: 36px;
  line-height: 30px;
}
.neighborhood-description a {
  font-weight: 700;
}
.neighborhood-description ul {
  margin-bottom: 36px;
}
.neighborhood-description ul li {
  margin-bottom: 20px;
}

.page-neighborhood .region-pre-header #block-urbanize-blocks-google-adsense-block-leaderboard .pre-header-container {
  padding-top: 24px;
}

body.page-user .region-content {
  margin-top: 58px;
}

.author-page-header {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .author-page-header {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .author-photo {
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
}
.author-photo img {
  border-radius: 50%;
}

h1.author-name {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 64px;
  margin-top: 5px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
}
@media (max-width: 767px) {
  h1.author-name {
    font-size: 50px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  h1.author-name {
    font-size: 40px;
  }
}

.field-name-field-author-title {
  font-family: "Roboto Slab", serif;
  color: #33373D;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25em;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.018em;
}
@media (max-width: 767px) {
  .field-name-field-author-title {
    text-align: center;
  }
}

.field-name-field-author-bio {
  font-family: "Roboto Slab", serif;
  color: #33373D;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25em;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.018em;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.region-author-page-header-right h2.block-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 10px;
}

.region-author-page-header-right {
  margin-top: 118px;
}
@media (max-width: 767px) {
  .region-author-page-header-right {
    margin-top: 30px;
    padding: 15px 25px;
    background-color: #f0f0f0;
  }
  .region-author-page-header-right h2.block-title {
    margin-top: 0;
  }
}

.view-author-most-popular-articles .views-row {
  margin-bottom: 8px;
}
.view-author-most-popular-articles .views-row a {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 400;
  font-size: 18px;
  color: #33373D;
}
.view-author-most-popular-articles .views-row a:hover {
  text-decoration: none;
}

form.theme-dev-options {
  z-index: 9999;
  display: block;
  position: fixed;
  bottom: 0px;
  left: 0;
  background-color: #eee;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px 0px;
  border: 1px solid #ccc;
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 400;
  font-size: 12px;
  width: 118px;
}
form.theme-dev-options li, form.theme-dev-options li.active {
  float: none;
}
form.theme-dev-options li a, form.theme-dev-options li a:hover, form.theme-dev-options li.active a, form.theme-dev-options li.active a:hover {
  padding: 0 5px 0 0;
  border: none;
  background-color: transparent;
  color: black;
}
form.theme-dev-options li a:hover, form.theme-dev-options li.active a:hover {
  color: #08b2e3;
}
form.theme-dev-options li.active a, form.theme-dev-options li.active a:hover {
  color: #999;
  font-weight: bold;
}

.tabs--primary {
  z-index: 9999;
  display: block;
  position: fixed;
  bottom: 0px;
  left: 0;
  background-color: #eee;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 5px 10px 0px;
  border: 1px solid #ccc;
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 400;
  font-size: 12px;
  width: 118px;
  bottom: 49px;
}
.tabs--primary li, .tabs--primary li.active {
  float: none;
}
.tabs--primary li a, .tabs--primary li a:hover, .tabs--primary li.active a, .tabs--primary li.active a:hover {
  padding: 0 5px 0 0;
  border: none;
  background-color: transparent;
  color: black;
}
.tabs--primary li a:hover, .tabs--primary li.active a:hover {
  color: #08b2e3;
}
.tabs--primary li.active a, .tabs--primary li.active a:hover {
  color: #999;
  font-weight: bold;
}

#toolbar {
  z-index: 10000;
}

#block-views-trending-topics-block,
#block-views-trending-topics-block-2 {
  margin-top: 46px;
  padding-left: 30px;
}
#block-views-trending-topics-block h2.block-title,
#block-views-trending-topics-block-2 h2.block-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  #block-views-trending-topics-block,
  #block-views-trending-topics-block-2 {
    display: none;
  }
}

#block-views-related-articles-block {
  margin-top: 46px;
  padding-left: 30px;
}
#block-views-related-articles-block h2.block-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 25px;
}

.region-sidebar .view-trending-topics .view-content .views-row,
.region-sidebar-2 .view-trending-topics .view-content .views-row,
.region-sidebar-3 .view-trending-topics .view-content .views-row {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.region-sidebar .view-trending-topics .view-content .views-row > a,
.region-sidebar-2 .view-trending-topics .view-content .views-row > a,
.region-sidebar-3 .view-trending-topics .view-content .views-row > a {
  flex: 1 36%;
  margin-right: 20px;
}
.region-sidebar .view-trending-topics .view-content .views-row .views-field-title,
.region-sidebar-2 .view-trending-topics .view-content .views-row .views-field-title,
.region-sidebar-3 .view-trending-topics .view-content .views-row .views-field-title {
  flex: 1 56%;
}
.region-sidebar .view-trending-topics .view-content .views-row .views-field-title a,
.region-sidebar-2 .view-trending-topics .view-content .views-row .views-field-title a,
.region-sidebar-3 .view-trending-topics .view-content .views-row .views-field-title a {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 400;
  font-size: 18px;
}

.homepage-trending-topics-block .attachment-after .views-row {
  margin-bottom: 25px;
}
.homepage-trending-topics-block .attachment-after .views-field-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
}
.homepage-trending-topics-block .attachment-after .views-field-title a {
  color: white;
  dispaly: block;
}
.homepage-trending-topics-block .attachment-after .views-field-title a .play-icon {
  width: 15px;
  height: 15px;
  background: url("/themes/custom/urbanize_2018/images/article_list_play_btn.svg");
  background-size: 15px 15px;
  position: relative;
  top: 2px;
  left: 4px;
  display: none;
}
.homepage-trending-topics-block .attachment-after .views-field-title a.video-1 .play-icon {
  display: inline-block;
}

.block-disqus {
  margin-top: 50px;
}

.term-page-header-right h2.block-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 10px;
}

.view-term-most-popular .views-row {
  margin-bottom: 9px;
}
.view-term-most-popular .views-row a {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 400;
  font-size: 18px;
  color: #33373D;
}
.view-term-most-popular .views-row a:hover {
  text-decoration: none;
}

.test_ad {
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  text-align: center;
  text-transform: uppercase;
  background-color: #aaa;
  font-weight: 700;
  font-size: 24px;
  line-height: 250px;
  margin: 0 0 0 auto;
}

.test_ad_leaderboard_responsive {
  margin: 0 auto;
  width: 300px;
  height: 250px;
  display: none;
}
@media (min-width: 768px) {
  .test_ad_leaderboard_responsive {
    display: block;
    width: 728px;
    height: 90px;
    line-height: 90px;
  }
}

@media all and (min-width: 992px) {
  .test_ad_skyscraper {
    width: 300px;
    height: 600px;
    line-height: 600px;
  }
}
@media all and (max-width: 991px) and (min-width: 768px) {
  .test_ad_skyscraper {
    width: 160px;
    height: 600px;
    line-height: 600px;
  }
}
@media all and (max-width: 767px) {
  .test_ad_skyscraper {
    width: 300px;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media all and (min-width: 600px) {
  .test_ad_gallery {
    width: 300px;
    height: 250px;
  }
}
@media all and (max-width: 599px) {
  .test_ad_gallery {
    width: 320px;
    height: 50px;
    line-height: 50px;
  }
}
@media all and (max-width: 900px) and (max-height: 600px) {
  .test_ad_gallery {
    width: 320px;
    height: 50px;
    line-height: 50px;
  }
}

.test_ad_med_rectangle {
  width: 300px;
  height: 250px;
}
@media (max-width: 767px) {
  .test_ad_med_rectangle {
    margin-left: auto;
    margin-right: auto;
  }
}

.test_email_signup_300x500 {
  margin-top: 30px;
}
.test_email_signup_300x500 img {
  display: block;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .test_email_signup_300x500 img {
    margin-left: auto;
    margin-right: auto;
  }
}

.region-page-midpoint .test_ad_leaderboard_responsive {
  margin-bottom: 30px;
}

#block-urbanize-blocks-disqus-custom h2.block-title,
#block-urbanize-blocks-disqus-custom-taxonomy h2.block-title,
#block-urbanize-blocks-google-matched-content h2.block-title {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
  margin-bottom: 25px;
}

body.gallery-open {
  overflow: hidden;
  max-height: 100vh;
}

.gallery {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in;
}
.gallery.is-open {
  z-index: 99999;
  opacity: 1;
  background: white;
}

.gallery-slider {
  height: 100%;
}

.gallery-error {
  text-align: center;
  margin: 20px;
}

.gallery-wrapper {
  display: flex;
  height: 100%;
}
.gallery-wrapper.is-hidden {
  display: none;
}

.gallery-left-col {
  flex: 1 auto;
  padding: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.gallery-right-col {
  background-color: #3F4C59;
  flex: 0 0 300px;
  width: 300px;
  padding: 0;
  z-index: 1;
}

.gallery-close-wrapper {
  text-align: right;
  padding: 10px;
}

.gallery-close-btn {
  display: inline-block;
  background: transparent;
  border: none;
  width: 15px;
  height: 15px;
  outline: none;
}
.gallery-close-btn::before, .gallery-close-btn::after {
  background-color: #CCD1D8;
}
.gallery-close-btn::before {
  position: absolute;
  color: #FFF;
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #fff;
  transform: rotate(-45deg);
  transition: background-color 0.3s ease;
}
.gallery-close-btn::after {
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #fff;
  transform: rotate(45deg);
  transition: background-color 0.3s ease;
}

.gallery-arrow {
  border: none;
  outline: none;
  background: none;
  content: "";
  display: inline-block;
  width: 19px;
  height: 18px;
  border-top: 4px solid #CCD1D8;
}

.gallery-arrow-left {
  border-left: 4px solid #CCD1D8;
  transform: rotate(-45deg);
}

.gallery-arrow-right {
  border-right: 4px solid #CCD1D8;
  transform: rotate(45deg);
}

.gallery-image-slider {
  position: relative;
}

.gallery-images {
  overflow: hidden;
}

.gallery-image-list {
  width: 100%;
  white-space: nowrap;
  padding: 0;
}

.gallery-image-li {
  width: 100%;
  display: inline-block;
  height: 100vh;
  text-align: center;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image-li:first-child,
.gallery-image-li:last-child {
  display: none;
}

.gallery-image {
  max-width: 100%;
  height: auto;
}

.portrait .gallery-image {
  width: auto;
}

.gallery-img-info-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  height: calc(100vh - 289px);
}

.gallery-img-info {
  color: #F2F2F4;
  min-height: 200px;
}

.gallery-img-counter {
  font-size: 12px;
  margin: 0 0 10px;
}

.gallery-img-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin: 20px 0 0;
}

.gallery-img-description {
  font-size: 14px;
  margin: 20px 0 0;
}

.gallery-img-credit {
  font-size: 14px;
  margin: 20px 0 0;
  color: #8991A5;
}

@media all and (max-width: 900px) {
  .gallery-wrapper {
    flex-direction: column;
  }
  .gallery-left-col {
    height: 78vh;
    padding: 0;
  }
  .gallery-right-col {
    width: 100%;
    display: flex;
    flex: 0 0 250px;
    height: 250px;
    justify-content: flex-start;
  }
  .gallery-close-wrapper {
    position: fixed;
    top: 10px;
    right: 15px;
  }
  .gallery-close-wrapper .gallery-close-btn::before, .gallery-close-wrapper .gallery-close-btn::after {
    background-color: #CCD1D8;
    width: 5px;
    height: 20px;
  }
  .gallery-adplacement {
    margin-top: -40px;
    order: 0;
    display: none;
  }
  .gallery-img-info-wrapper {
    order: 1;
    height: 150px;
  }
  .gallery-image-li.portrait {
    height: calc(100vh - 350px);
  }
  .gallery-arrow {
    position: absolute;
  }
  .gallery-arrow-left {
    left: 7px;
  }
  .gallery-arrow-right {
    right: 7px;
  }
  .gallery-img-title {
    font-size: 14px;
    line-height: 15.4px;
  }
  .gallery-img-credit {
    font-size: 12px;
  }
}
@media all and (max-width: 599px) {
  .gallery-right-col {
    flex-direction: column;
    flex: 0 0 auto;
    height: auto;
  }
  .gallery-adplacement {
    order: 0;
    background-color: white;
    padding-bottom: 10px;
  }
  .test_ad_gallery {
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-img-info-wrapper {
    order: 1;
  }
  .gallery-img-info {
    min-height: auto;
  }
  .gallery-image-li {
    padding-left: 0;
    padding-right: 0;
  }
}
@media all and (max-width: 900px) and (max-height: 600px) {
  .gallery-right-col {
    flex-direction: column;
    flex: 0 0 auto;
    height: auto;
  }
  .gallery-adplacement {
    order: 0;
    background-color: white;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .test_ad_gallery {
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-img-info-wrapper {
    order: 1;
    padding: 5px 10px;
  }
  .gallery-img-info {
    min-height: auto;
  }
  .gallery-img-info .gallery-img-counter {
    margin-bottom: 0;
  }
  .gallery-img-info .gallery-img-title {
    margin-top: 0;
  }
  .gallery-img-info .gallery-img-credit {
    margin: 50x 0 0;
  }
}
.view-primary-features {
  margin-bottom: 30px;
}
.view-primary-features .view-mode-article_thumb {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .view-primary-features {
    margin-bottom: 0;
  }
  .view-primary-features .primary-xl {
    height: 486px;
  }
  .view-primary-features .primary-xl .article-thumb-title {
    font-size: 48px;
  }
  .view-primary-features .primary-xl .article-thumb-subtitle {
    font-size: 16px;
  }
  .view-primary-features .primary-large {
    height: 486px;
  }
  .view-primary-features .primary-large .article-thumb-title {
    font-size: 48px;
  }
  .view-primary-features .primary-large .article-thumb-subtitle {
    font-size: 16px;
  }
  .view-primary-features .primary-med {
    height: 486px;
  }
  .view-primary-features .primary-small {
    height: 229px;
  }
  .view-primary-features .article-thumb-title {
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 971px) {
  .view-primary-features .primary-xl .article-thumb-subtitle {
    display: block;
  }
  .view-primary-features .primary-large .article-thumb-title {
    font-size: 36px;
  }
  .view-primary-features .primary-large .article-thumb-subtitle {
    display: block;
  }
  .view-primary-features .primary-small .article-thumb-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .view-primary-features {
    margin-bottom: 0;
  }
  .view-primary-features .view-mode-article_thumb {
    margin-bottom: 30px;
  }
  .view-primary-features .article-thumb-title {
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .view-primary-features .article-thumb-title {
    font-size: 24px;
  }
}
.view-primary-features .primary-small.views-row-2 {
  margin-bottom: 30px;
}

.frontpage-feed .views-row {
  position: relative;
}
@media all and (min-width: 768px) {
  .frontpage-feed .views-row .thumb-mask,
  .frontpage-feed .views-row .thumb-bg {
    width: 220px;
  }
}
@media all and (min-width: 992px) {
  .frontpage-feed .views-row .thumb-mask,
  .frontpage-feed .views-row .thumb-bg {
    width: 293px;
  }
}
@media all and (min-width: 1200px) {
  .frontpage-feed .views-row .thumb-mask,
  .frontpage-feed .views-row .thumb-bg {
    width: 360px;
  }
}
@media all and (max-width: 767px) {
  .frontpage-feed .views-row .article-thumb-bg {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .frontpage-feed .views-row .article-thumb-info-block {
    position: relative;
    padding-left: 250px;
  }
}
@media all and (min-width: 992px) {
  .frontpage-feed .views-row .article-thumb-info-block {
    padding-left: 323px;
  }
}
@media all and (min-width: 1200px) {
  .frontpage-feed .views-row .article-thumb-info-block {
    padding-left: 390px;
  }
}
@media all and (min-width: 768px) {
  .frontpage-feed .views-row .article-thumb-title {
    color: #33373d;
    size: 34px;
  }
  .frontpage-feed .views-row .article-thumb-neighborhood {
    color: #33373d;
  }
  .frontpage-feed .views-row .article-thumb-subtitle {
    color: #33373d;
    font-size: 16px;
  }
  .frontpage-feed .views-row .article-thumb-byline {
    display: block;
  }
  .frontpage-feed .views-row .comment-count {
    display: none;
  }
}
@media (min-width: 1200px) {
  .frontpage-feed .views-row .article-thumb-title {
    font-size: 34px;
  }
}
.frontpage-feed a:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .view-frontpage-new {
    margin-top: 25px;
  }
}

.page-frontpage .page-break-2-wrapper,
.page-frontpage .page-break-wrapper {
  background-color: #4f555d;
}

#homepage-cities-nav {
  background-color: #161C28;
  color: #FFFFFF;
  font-family: "Roboto Condensed", sans-serif;
}
#homepage-cities-nav .hcn-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#homepage-cities-nav .hcn-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  flex: 0 0 120px;
}
#homepage-cities-nav .hcn-links {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex-grow: 1;
  transition: scroll 0.3s;
}
#homepage-cities-nav .hcn-links::-webkit-scrollbar {
  display: none;
}
#homepage-cities-nav .hcn-links div {
  padding: 17px 0 15px 0;
  margin: 0 20px 0 20px;
  flex: 0 0 auto;
}
#homepage-cities-nav .hcn-links div a {
  color: #858585;
  text-decoration: none;
  font-size: 15;
  font-weight: medium;
}
#homepage-cities-nav .hcn-links div:hover, #homepage-cities-nav .hcn-links div.active {
  border-bottom: 4px solid #10B1E2;
}
#homepage-cities-nav .hcn-links div:hover a, #homepage-cities-nav .hcn-links div.active a {
  color: #FFFFFF;
}
#homepage-cities-nav .hcn-pager {
  display: flex;
  flex: 0 0 50px;
  align-self: stretch;
  align-items: stretch;
}
#homepage-cities-nav .hcn-pager .hcn-scroll {
  display: flex;
  align-items: stretch;
}
#homepage-cities-nav .hcn-pager .hcn-scroll a {
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 35px;
  background-color: #10B1E2;
  background-image: url("../images/tabs-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.4s;
}
#homepage-cities-nav .hcn-pager .hcn-scroll a:hover {
  opacity: 0.7;
}
#homepage-cities-nav .hcn-pager .hcn-scroll a.link-next {
  rotate: 180deg;
}

.view-mode-article_teaser_horizontal_small {
  margin: 13.5px 0;
}
.view-mode-article_teaser_horizontal_small .thumb-mask {
  display: none;
}
.view-mode-article_teaser_horizontal_small .thumb-info-block {
  position: relative;
  padding: 0;
  font-family: "Roboto Condensed", sans-serif;
}
.view-mode-article_teaser_horizontal_small .article-thumb-city {
  color: #161C28;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #08B2E3;
  display: inline-block;
}
.view-mode-article_teaser_horizontal_small .article-thumb-title {
  color: #161C28;
  font-size: 14px;
  font-weight: bold;
}
.view-mode-article_teaser_horizontal_small .article-thumb-neighborhood,
.view-mode-article_teaser_horizontal_small .article-thumb-subtitle,
.view-mode-article_teaser_horizontal_small .article-thumb-byline {
  display: none;
}
.view-mode-article_teaser_horizontal_small .aths--inner {
  display: flex;
  gap: 18px;
}
.view-mode-article_teaser_horizontal_small .aths--image {
  min-width: 70px;
}

.homepage-articles.block .hab--articles .view-mode-article_thumb {
  height: auto;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-bg {
  position: relative;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-info-block {
  position: relative;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-info-block .article-thumb-city {
  display: none;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-info-block .article-thumb-neighborhood {
  display: block;
  color: #161C28;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-info-block .article-thumb-title {
  color: #161C28;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-info-block .article-thumb-subtitle {
  color: #757575;
}
.homepage-articles.block .hab--articles .view-mode-article_thumb .thumb-mask {
  display: none;
}

.block-urbanize-ad-slot h2.block-title {
  display: none;
}
.block-urbanize-ad-slot h2.block-title .content > div {
  text-align: center;
}

#block-urbanize-blocks-google-ad-sidebar-1,
#block-urbanize-blocks-google-ad-sidebar-2 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  #block-urbanize-blocks-google-ad-main-2 {
    margin-top: 30px;
  }
}

#block-urbanize-blocks-google-sidebar-matched-content {
  padding-left: 30px;
  padding-top: 0;
  margin-bottom: 30px;
  margin-top: 15px;
}

#block-urbanize-ad-slots-m-sticky-banner {
  display: none;
  background-color: #f0f0f0;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  height: 60px;
  padding-top: 5px;
  width: 100%;
  transition: bottom 0.5s;
  transition-timing-function: ease-in;
}
@media (max-width: 767px) {
  #block-urbanize-ad-slots-m-sticky-banner {
    display: block;
  }
}
#block-urbanize-ad-slots-m-sticky-banner > .content {
  margin-left: auto;
  margin-right: auto;
  width: 320px;
  display: block;
}

#block-urbanize-ad-slots-m-sticky-banner.closed {
  bottom: -60px;
}

.m-sticky-close-btn:after {
  display: inline-block;
  content: "×";
  font-size: 22px;
  position: absolute;
  right: 4px;
  top: -5px;
  color: #9a9a9a;
  font-weight: 400;
}

#block-urbanize-ad-slots-d-home-main-atf,
#block-urbanize-ad-slots-d-home-main-btf,
#block-urbanize-ad-slots-d-home-main-btf-dyn,
#block-urbanize-ad-slots-d-home-sidebar-atf,
#block-urbanize-ad-slots-d-home-sidebar-btf,
#block-urbanize-ad-slots-d-home-sidebar-btf-dyn,
#block-urbanize-ad-slots-m-home-atf,
#block-urbanize-ad-slots-m-home-btf-upper,
#block-urbanize-ad-slots-m-home-btf-mid,
#block-urbanize-ad-slots-m-home-btf-lower,
#block-urbanize-ad-slots-m-home-btf-dyn,
#block-urbanize-ad-slots-d-article-main-atf-upper,
#block-urbanize-ad-slots-d-article-main-atf-lower,
#block-urbanize-ad-slots-d-article-main-btf-upper,
#block-urbanize-ad-slots-d-article-main-btf-lower,
#block-urbanize-ad-slots-d-article-sidebar-btf-upper,
#block-urbanize-ad-slots-d-article-sidebar-btf-mid,
#block-urbanize-ad-slots-d-article-sidebar-btf-lower,
#block-urbanize-ad-slots-m-article-atf,
#block-urbanize-ad-slots-m-article-btf-upper,
#block-urbanize-ad-slots-m-article-btf-lower,
#block-urbanize-ad-slots-d-cat-main-atf,
#block-urbanize-ad-slots-d-cat-main-btf,
#block-urbanize-ad-slots-d-cat-main-btf-dyn,
#block-urbanize-ad-slots-m-cat-atf,
#block-urbanize-ad-slots-m-cat-btf,
#block-urbanize-ad-slots-m-cat-btf-dyn,
#block-urbanize-ad-slots-d-home-sidebar-btf-dyn,
#block-urbanize-ad-slots-d-home-sidebar-btf,
#block-urbanize-ad-slots-d-home-sidebar-atf,
#block-urbanize-ad-slots-d-article-sidebar-btf-mid,
#block-urbanize-ad-slots-desktop-homepage-main-aux-1,
#block-urbanize-ad-slots-desktop-homepage-main-aux-2,
#block-urbanize-ad-slots-desktop-homepage-main-aux-3,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-1,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-2,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-3,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-4,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-5,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-6,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-7,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-8,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-9,
#block-urbanize-ad-slots-desktop-article-main-aux-1,
#block-urbanize-ad-slots-desktop-article-main-aux-2,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-1,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-2,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-3,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-4,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-5,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-6,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-7,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-8,
#block-urbanize-ad-slots-mobile-homepage-aux-1,
#block-urbanize-ad-slots-mobile-homepage-aux-2,
#block-urbanize-ad-slots-mobile-homepage-aux-2--2,
#block-urbanize-ad-slots-mobile-homepage-aux-3,
#block-urbanize-ad-slots-mobile-homepage-aux-4,
#block-urbanize-ad-slots-mobile-homepage-aux-5 {
  text-align: center;
}

.ad-label {
  font-size: 10px;
  color: #C2C2C2;
  font-family: "Roboto";
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3px;
}

#block-urbanize-ad-slots-d-cat-main-btf-dyn,
#block-urbanize-ad-slots-d-cat-main-btf,
#block-urbanize-ad-slots-m-cat-atf,
#block-urbanize-ad-slots-m-cat-btf,
#block-urbanize-ad-slots-m-home-atf,
#block-urbanize-ad-slots-m-home-btf-upper,
#block-urbanize-ad-slots-m-home-btf-lower,
#block-urbanize-ad-slots-m-home-btf-dyn {
  margin-bottom: 30px;
}

#block-urbanize-ad-slots-d-home-sidebar-btf-dyn,
#block-urbanize-ad-slots-d-home-sidebar-btf,
#block-urbanize-ad-slots-d-home-sidebar-atf,
#block-urbanize-ad-slots-d-article-sidebar-btf-upper,
#block-urbanize-ad-slots-d-article-sidebar-btf-mid,
#block-urbanize-ad-slots-d-article-sidebar-btf-lower,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-1,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-2,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-3,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-4,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-5,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-6,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-7,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-8,
#block-urbanize-ad-slots-desktop-homepage-sidebar-aux-9,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-1,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-2,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-3,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-4,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-5,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-6,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-7,
#block-urbanize-ad-slots-desktop-article-sidebar-aux-8 {
  margin-bottom: 30px;
}

#block-urbanize-ad-slots-mobile-homepage-aux-2 {
  margin-top: 16px;
}

.page-node-5689 .pre-header-wrapper {
  display: none;
}

.newsletter-signup-modal {
  background-color: rgba(0, 0, 0, 0.5);
}

.newsletter-modal-dialog {
  background-color: white;
  margin: 30px auto;
  width: calc(100% - 40px);
  height: calc(100% - 60px);
}

.newsletter-modal-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}

.newsletter-modal-image {
  width: fit-content;
}
.newsletter-modal-image img {
  width: 100%;
  height: auto;
}
.newsletter-modal-image img.mobile {
  display: inline;
  object-fit: cover;
}
.newsletter-modal-image img.desktop {
  display: none;
}

.newsletter-modal-body {
  padding: 10vw;
  flex-grow: 1;
}
.newsletter-modal-body button.close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 26px;
  height: 26px;
}
.newsletter-modal-body button.close span {
  font-size: 41px;
  line-height: 17px;
  display: block;
  color: white;
  width: 26px;
  height: 26px;
}
.newsletter-modal-body .form-group-checkboxes {
  margin-bottom: 0;
}
.newsletter-modal-body .form-group-checkboxes ul {
  list-style-type: none;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  padding-left: 0;
  height: 78px;
  margin-top: 20px;
  margin-bottom: 0;
}
.newsletter-modal-body .form-group-checkboxes ul li {
  padding-left: 10px;
  padding-right: 5px;
}
.newsletter-modal-body .form-group-checkboxes ul li label {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #565a61;
}
.newsletter-modal-body input.email {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #7E7F80;
  text-align: center;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: 50px;
}
.newsletter-modal-body input.email::-webkit-input-placeholder {
  color: #c4c4c4;
}
.newsletter-modal-body input.email:-moz-placeholder {
  color: #c4c4c4;
}
.newsletter-modal-body input.email::-moz-placeholder {
  color: #c4c4c4;
}
.newsletter-modal-body input.email:-ms-input-placeholder {
  color: #c4c4c4;
}
.newsletter-modal-body .button-wrapper {
  text-align: center;
}
.newsletter-modal-body .button-wrapper .btn {
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-weight: 900;
  font-size: 18.7px;
  background-color: #08B2E3;
  border-radius: 0;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
}
.newsletter-modal-body .noShowWelcome {
  color: #7C7D80;
  text-align: center;
  margin-top: 7px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 12px;
  padding-top: 0px;
  text-decoration: underline;
}

.newsletter-modal-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.033em;
  font-weight: 700;
  color: #8991A5;
}

.newsletter-modal-subheading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.033em;
  font-weight: 700;
  color: #33373D;
  margin-top: 10px;
}

.newsletter-modal-status {
  font-family: "Roboto Slab", serif;
  color: #33373D;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25em;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.018em;
  color: #08B2E3;
  margin-top: 75px;
  text-align: center;
  display: none;
}

.newsletter-modal-status.info {
  display: block;
}

.newsletter-modal-status.error {
  display: block;
  color: #FA6E4E;
  background-color: transparent;
  margin-top: 75px;
}

.newsletter-modal-loader.tetrominos-loader {
  display: none;
  width: 72px;
  margin: 100px auto 0;
}
.newsletter-modal-loader.tetrominos-loader .loader-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #8991A5;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  top: 50px;
  left: -15px;
  width: 99px;
}

@media (min-width: 500px) {
  .newsletter-modal-image img.mobile {
    height: 307px;
  }
}
@media (min-width: 799px) {
  .newsletter-modal-dialog {
    margin-top: calc(50vh - 181px);
    width: 760px;
    height: 362px;
  }
  .newsletter-modal-content {
    flex-flow: row nowrap;
  }
  .newsletter-modal-image {
    height: 362px;
  }
  .newsletter-modal-image img {
    width: auto;
    height: 100%;
  }
  .newsletter-modal-image img.mobile {
    display: none;
  }
  .newsletter-modal-image img.desktop {
    display: inline;
  }
  .newsletter-modal-body {
    position: relative;
    padding: 50px;
  }
  .newsletter-modal-heading {
    font-size: 31px;
    line-height: 31px;
  }
  .newsletter-modal-subheading {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (min-width: 1042px) {
  .newsletter-modal-dialog {
    margin-top: calc(50vh - 238px);
    width: 984px;
    height: 476px;
  }
  .newsletter-modal-image {
    height: 476px;
  }
  .newsletter-modal-body {
    padding: 100px;
  }
  .newsletter-modal-heading {
    font-size: 34px;
    line-height: 34px;
  }
  .newsletter-modal-subheading {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (min-width: 1250px) {
  .newsletter-modal-dialog {
    margin-top: calc(50vh - 291px);
    width: 1192px;
    height: 582px;
  }
  .newsletter-modal-image {
    height: 582px;
  }
  .newsletter-modal-heading {
    font-size: 44px;
    line-height: 44px;
  }
  .newsletter-modal-subheading {
    font-size: 29px;
    line-height: 29px;
  }
}
@media screen and (orientation: landscape) and (max-width: 798px) {
  .newsletter-modal-image {
    display: none;
  }
  .newsletter-modal-body {
    padding: 5vw;
  }
  .newsletter-modal-body .form-group-email {
    width: 49%;
    display: inline-block;
    margin-bottom: 0;
  }
  .newsletter-modal-body .form-group-email input {
    border-right: none;
  }
  .newsletter-modal-body .button-wrapper {
    width: 50%;
    display: inline-block;
    margin: 0;
    position: relative;
    left: -4px;
    top: -3px;
  }
}
.page-node.node-type-project .alert-block {
  margin-top: -200px;
}
.page-node.node-type-project .pre-header-wrapper {
  display: none;
}
.page-node.node-type-project .main-container {
  margin-top: -130px;
}
.page-node.node-type-project .mapboxgl-canvas {
  z-index: 2;
}
.page-node.node-type-project .group-left {
  padding-top: 110px;
}
.page-node.node-type-project .project-status {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #737373;
  text-transform: uppercase;
}
.page-node.node-type-project .project-status .status-circle {
  width: 19px;
  height: 19px;
  background: black;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 3px;
}
.page-node.node-type-project .status-proposed .status-circle {
  background: #50E3C2;
}
.page-node.node-type-project .status-completed .status-circle {
  background: #005E7C;
}
.page-node.node-type-project .status-approved .status-circle {
  background: #08B2E3;
}
.page-node.node-type-project .status-under-construction .status-circle {
  background: #F8E71C;
}
.page-node.node-type-project .status-cancelled .status-circle {
  background: #F93950;
}
.page-node.node-type-project h1.page-header {
  margin-top: 10px;
  margin-bottom: 28px;
}
.page-node.node-type-project .group-data-container {
  border: none;
}
.page-node.node-type-project .group-data-container .horizontal-tabs {
  border: none;
}
.page-node.node-type-project .group-data-container .horizontal-tabs-list {
  border: none;
  background-color: transparent;
}
.page-node.node-type-project .group-data-container .horizontal-tabs-list li {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  border: none;
  background-color: transparent;
  margin-right: 40px;
}
.page-node.node-type-project .group-data-container .horizontal-tabs-list li a {
  padding: 0;
  color: #A8A8A8;
}
.page-node.node-type-project .group-data-container .horizontal-tabs-list li a:hover {
  background-color: transparent;
}
.page-node.node-type-project .group-data-container .horizontal-tabs-list li.selected {
  border-bottom: 4px solid #08B2E3;
}
.page-node.node-type-project .group-data-container .horizontal-tabs-list li.selected a {
  color: #33373D;
}

.project-htabs .horizontal-tabs .group-basic-info {
  padding: 0;
}
.project-htabs .horizontal-tabs .group-basic-info .panel-body {
  padding-left: 0;
  padding-right: 0;
}
.project-htabs .field-label-inline:nth-child(odd) {
  background-color: #f1f1f1;
}
.project-htabs .field-label-inline {
  color: #33373D;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 17px;
  line-height: 20px;
  padding: 10px 20px;
}
.project-htabs .field-label-inline .field-label {
  width: 233px;
  text-transform: uppercase;
}

body.page-projects iframe#giraffe-map-iframe {
  display: block;
  border: none;
  height: 89vh;
  width: 100vw;
}

.projects-map-modal {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
.projects-map-modal button.close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 26px;
  height: 26px;
}
.projects-map-modal button.close span {
  font-size: 41px;
  line-height: 17px;
  display: block;
  color: white;
  width: 26px;
  height: 26px;
  color: #161C28;
}

.projects-map-modal-dialog {
  background-color: white;
  margin: 30px auto;
  width: calc(100% - 40px);
  height: calc(100% - 60px);
  -webkit-box-shadow: 0 3px 6px;
  -moz-box-shadow: 0 3px 6px;
  box-shadow: 0 3px 6px;
  border-radius: 5px;
}

.projects-map-modal-content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
}

.projects-map-modal-preheading {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #10B1E2;
  text-transform: uppercase;
  text-align: center;
  padding-top: 0;
  margin-top: 50px;
}

@media (min-width: 731px) {
  .projects-intro-modal .projects-map-modal-dialog {
    width: 691px;
    height: 531px;
  }
  .added-company-thanks-modal .projects-map-modal-dialog {
    width: 600px;
    height: 300px;
  }
}
.projects-map-modal-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 44px;
  color: #161C28;
  text-align: center;
  margin-top: -1px;
}

.projects-map-modal-subhead {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #757575;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 26px;
  padding-left: 25px;
  padding-right: 25px;
  line-height: 20px;
}

.projects-map-modal-image {
  margin-left: auto;
  margin-right: auto;
  width: 460px !important;
  height: 251px !important;
}

.projects-map-modal-carousel .carousel-inner {
  padding-bottom: 75px;
}
.projects-map-modal-carousel .carousel-control {
  background-image: none !important;
}
.projects-map-modal-carousel .carousel-control {
  opacity: 1 !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.projects-map-modal-carousel .carousel-indicators {
  bottom: 12px;
}
.projects-map-modal-carousel .carousel-indicators li {
  background-color: #CCCDD0;
  width: 8px;
  height: 8px;
  border: none;
  margin: 2px;
}
.projects-map-modal-carousel .carousel-indicators li.active {
  background-color: #161C28;
  width: 8px;
  height: 8px;
  margin: 2px;
}

.add-company-form-container h1.page-header {
  font-size: 44px;
  margin-top: 0;
  margin-bottom: 20px;
}
.add-company-form-container h2.project-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #10B1E2;
  margin-top: 60px;
  margin-bottom: 8px;
}

.webform-submission-add-company-to-project-form {
  margin-bottom: 75px;
}
.webform-submission-add-company-to-project-form .form-item {
  margin-bottom: 25px;
}
.webform-submission-add-company-to-project-form .form-required:after {
  background-image: none;
  color: #10B1E2;
  content: "*";
  font-size: 13px;
  padding-left: 5px;
}
.webform-submission-add-company-to-project-form label, .webform-submission-add-company-to-project-form .fieldset-legend {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
.webform-submission-add-company-to-project-form input.form-control,
.webform-submission-add-company-to-project-form select.form-control {
  border: 1px solid #C4C4C4;
  border-radius: 0;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  padding: 20px 10px;
}
.webform-submission-add-company-to-project-form select.form-control {
  padding: 5px 10px;
}
.webform-submission-add-company-to-project-form input.form-control::placeholder {
  color: #ccc;
}
.webform-submission-add-company-to-project-form fieldset {
  margin-bottom: 0;
}
.webform-submission-add-company-to-project-form fieldset legend {
  border-bottom: none;
}
.webform-submission-add-company-to-project-form button.button--primary {
  background-color: black;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  padding: 15px 15px;
  margin: 0;
  width: 100%;
  text-align: center;
  transition: all 250ms ease-out;
  border: none;
  border-radius: 0;
}
.webform-submission-add-company-to-project-form button.button--primary::before {
  background-color: white;
  border-radius: 100%;
  color: #000;
  content: "+";
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  text-align: center;
  transition: all 250ms ease-out;
  width: 20px;
}
.webform-submission-add-company-to-project-form button.button--primary:hover::before {
  color: #08B2E3;
}
.webform-submission-add-company-to-project-form button.button--primary:hover {
  background-color: #08B2E3;
  color: #fff;
}
.webform-submission-add-company-to-project-form .form-group.error .control-label,
.webform-submission-add-company-to-project-form .form-group.error label,
.webform-submission-add-company-to-project-form .form-group.has-error .control-label,
.webform-submission-add-company-to-project-form .form-group.has-error label {
  color: #10B1E2;
}
.webform-submission-add-company-to-project-form .captcha__title,
.webform-submission-add-company-to-project-form .captcha__description {
  display: none;
}
.webform-submission-add-company-to-project-form .captcha__element {
  margin-bottom: 20px;
}

.node-project.view-mode-article_thumb .thumb-bg {
  width: 100%;
  height: 100%;
}
.node-project.view-mode-article_thumb .thumb-bg .img-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-cityspeak,
.page-title-cityspeak-advertise {
  background-color: #171C29;
}
body.page-cityspeak .pre-header-wrapper,
.page-title-cityspeak-advertise .pre-header-wrapper {
  display: none;
}
body.page-cityspeak img.cityspeak-intro-photo,
.page-title-cityspeak-advertise img.cityspeak-intro-photo {
  width: 100%;
}
body.page-cityspeak h1.page-header,
.page-title-cityspeak-advertise h1.page-header {
  display: none;
}
body.page-cityspeak img.cityspeak-logo,
.page-title-cityspeak-advertise img.cityspeak-logo {
  width: 600px;
  height: auto;
  display: block;
  margin: 60px auto 20px;
}
@media all and (max-width: 767px) {
  body.page-cityspeak img.cityspeak-logo,
  .page-title-cityspeak-advertise img.cityspeak-logo {
    width: 100%;
  }
}
body.page-cityspeak img.cityspeak-available-at,
.page-title-cityspeak-advertise img.cityspeak-available-at {
  width: 450px;
  height: auto;
  display: block;
  margin: 50px auto 50px;
}
body.page-cityspeak h2.cityspeak-landing-page-headline,
.page-title-cityspeak-advertise h2.cityspeak-landing-page-headline {
  font-family: "Roboto Condensed", sans-serif;
  color: #33373D;
  font-weight: 700;
  font-size: 64px;
  margin-top: 20px;
  margin-bottom: 0px;
  letter-spacing: -0.007em;
  line-height: 1.03em;
  color: white;
  font-size: 48px;
  margin-bottom: 40px;
  margin-top: 40px;
  line-height: 1.13em;
}
@media (max-width: 767px) {
  body.page-cityspeak h2.cityspeak-landing-page-headline,
  .page-title-cityspeak-advertise h2.cityspeak-landing-page-headline {
    font-size: 50px;
  }
}
@media (max-width: 400px) {
  body.page-cityspeak h2.cityspeak-landing-page-headline,
  .page-title-cityspeak-advertise h2.cityspeak-landing-page-headline {
    font-size: 40px;
  }
}
body.page-cityspeak .cityspeak-intro p,
.page-title-cityspeak-advertise .cityspeak-intro p {
  font-family: "Roboto Slab", serif;
  color: #33373D;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25em;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.018em;
  color: #b1b3b8;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.5em;
}
body.page-cityspeak .podcast-player,
.page-title-cityspeak-advertise .podcast-player {
  margin-top: 60px;
}

.view-cityspeak-landing-page {
  margin-top: 25px;
  margin-bottom: 75px;
}
.view-cityspeak-landing-page .view-header {
  margin-bottom: 75px;
}
.view-cityspeak-landing-page .views-row {
  margin-bottom: 75px;
  margin-top: 95px;
  position: relative;
}
.view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 {
  height: auto !important;
}
.view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 a {
  display: flex;
  flex-flow: row nowrap;
}
.view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 a:hover, .view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 a:active, .view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 a:focus {
  text-decoration: none;
}
.view-cityspeak-landing-page .views-row .thumb-bg {
  position: relative;
  flex-basis: 48%;
}
@media all and (max-width: 767px) {
  .view-cityspeak-landing-page .views-row .article-thumb-bg {
    width: 100%;
  }
}
.view-cityspeak-landing-page .views-row .thumb-info-block {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
.view-cityspeak-landing-page .views-row .article-thumb-title {
  color: white;
  margin-top: 0;
  font-size: 43px;
  line-height: 43px;
}
.view-cityspeak-landing-page .views-row .article-thumb-subtitle {
  color: white;
  font-size: 25px;
  margin-bottom: 15px;
  margin-top: 20px;
}
.view-cityspeak-landing-page .views-row .article-thumb-body {
  font-family: "Roboto Slab", serif;
  color: #333333;
  font-weight: 400;
  font-size: 18px;
  color: #b1b3b8;
  font-size: 18px;
  line-height: 28px;
}
.view-cityspeak-landing-page .views-row .article-thumb-body p {
  margin-bottom: 36px;
  line-height: 30px;
}
.view-cityspeak-landing-page .views-row .article-thumb-body a {
  font-weight: 700;
}
.view-cityspeak-landing-page .views-row .article-thumb-body ul {
  margin-bottom: 36px;
}
.view-cityspeak-landing-page .views-row .article-thumb-body ul li {
  margin-bottom: 20px;
}
.view-cityspeak-landing-page .views-row-odd .thumb-bg {
  order: 1;
}
.view-cityspeak-landing-page .views-row-odd .thumb-info-block {
  padding-left: 0;
}
@media all and (max-width: 767px) {
  .view-cityspeak-landing-page .views-row-odd .thumb-bg {
    order: 0;
  }
}

@media (max-width: 991px) {
  .view-cityspeak-landing-page .views-row .article-thumb-subtitle {
    display: block;
  }
}
@media (max-width: 767px) {
  .view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 a {
    flex-flow: column nowrap;
  }
  .view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 .thumb-bg img {
    width: 100%;
  }
  .view-cityspeak-landing-page .views-row .node-article.view-mode-article_thumb_2 .thumb-info-block {
    padding: 0px 0px;
    margin-top: 30px;
  }
  body.page-cityspeak img.cityspeak-available-at {
    width: 100%;
  }
}
.cityspeak-advertise-form .form-control {
  font-size: 18px;
  height: 42px;
  background-color: #171c29;
  color: white;
  border-radius: 0;
}
.cityspeak-advertise-form .form-group {
  margin-bottom: 25px;
}
.cityspeak-advertise-form .form-control:focus {
  border: 1px solid white;
  box-shadow: none;
}

.page-title-cityspeak-advertise .cityspeak-intro {
  margin-bottom: 34px;
}
.page-title-cityspeak-advertise .cityspeak-intro p {
  font-size: 26px;
}
.page-title-cityspeak-advertise .btn-submit {
  margin-left: auto;
  margin-right: auto;
  display: block;
  background-color: #2596be;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  font-size: 20px;
  padding: 14px 17px;
  font-family: "Roboto";
  letter-spacing: 0.02em;
}

.embed-responsive.embed-responsive-16by9 {
  margin-bottom: 30px;
}

.urbanize-paywall-message {
  display: flex;
  flex-direction: column;
  max-width: 290px;
}
@media (min-width: 768px) {
  .urbanize-paywall-message {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 740px;
  }
}
.urbanize-paywall-message .logo-banner {
  width: 290px;
}
.urbanize-paywall-message .logo-banner img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .urbanize-paywall-message .logo-banner img {
    height: auto;
  }
}
.urbanize-paywall-message .message-container {
  padding: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .urbanize-paywall-message .message-container {
    text-align: left;
    width: 450px;
  }
}
.urbanize-paywall-message .message-container h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #8991a5;
}
@media (min-width: 768px) {
  .urbanize-paywall-message .message-container h2 {
    font-size: 40px;
  }
}
.urbanize-paywall-message .message-container h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  color: #33373d;
}
@media (min-width: 768px) {
  .urbanize-paywall-message .message-container h3 {
    font-size: 27px;
  }
}
.urbanize-paywall-message .message-container button.cta {
  border: none;
  display: inline-block;
  background-color: #08b2e3;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 30px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 900;
  font-size: 18.7px;
}
.urbanize-paywall-message .message-container button.cta:hover {
  text-decoration: none;
  opacity: 0.8;
}
.urbanize-paywall-message .message-container p.already-registered {
  margin-top: 20px;
}

.poll-view {
  border: 1px solid #707070;
  padding: 77px 27px 30px;
  background-image: url("/themes/custom/urbanize_2018/images/polls_logo.png");
  background-size: 97.5px 47px;
  background-repeat: no-repeat;
  background-position-x: 27px;
  background-position-y: 30px;
}
.poll-view .alert {
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 0px;
  background-color: #F3FAEF;
  border: none;
  border-left: 6px solid #77B25A;
}
.poll-view .alert p {
  font-family: Roboto, sans-serif;
  color: #3C3C3C;
  font-size: 12px;
  line-height: 15px;
}
.poll-view .alert-success {
  background-image: url("/themes/custom/urbanize_2018/images/vote_checkmark.svg");
  background-repeat: no-repeat;
  background-position-x: 18px;
  background-position-y: 13px;
  padding-left: 45px;
}
.poll-view .button--primary {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 17px;
  border-radius: 0px;
  background-color: #000;
  border: none;
  padding: 11px 16px;
}
.poll-view .button--primary:active, .poll-view .button--primary:focus, .poll-view .button--primary:hover {
  background-color: #888;
}

.poll legend {
  border-bottom: none;
}
.poll h3.poll-question {
  font-family: "Roboto Condensed", sans-serif;
  color: #161C28;
  font-weight: 700;
  font-size: 25px;
  line-height: 27px;
  margin-bottom: 27px;
}
.poll .form-type-radio label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #3C3C3C;
  font-size: 15px;
  line-height: 18px;
}
.poll .form-actions {
  margin-top: 20px;
}

body.path-neighborhoods h1.page-header {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  body.path-neighborhoods .view-content .view-group {
    column-count: 3;
  }
}
@media (min-width: 992px) {
  body.path-neighborhoods .view-content .view-group {
    column-count: 4;
  }
}
body.path-neighborhoods .view-content .views-row {
  margin-bottom: 7px;
}
body.path-neighborhoods .view-content h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  line-height: 18px;
  font-weight: bold;
  border-bottom: 2px solid #EFEFEF;
  padding-bottom: 22px;
  margin-bottom: 30px;
  margin-top: 45px;
}
body.path-neighborhoods .view-content .field-content a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 20px;
  color: #757575;
}

body.dark-mode {
  background-color: #000;
}
body.dark-mode .navbar {
  background-color: #000;
}
body.dark-mode .navbar-wrapper {
  background-color: #000;
}
body.dark-mode .navbar-wrapper img.dark-mode-logo {
  display: inline;
}
body.dark-mode .navbar-wrapper img.lite-mode-logo {
  display: none;
}
body.dark-mode .navbar-default .navbar-nav > li > a {
  color: #ccc;
}
@media (min-width: 768px) {
  body.dark-mode .navbar-default .navbar-nav .leaf-instagram a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_ig-dark.svg");
  }
  body.dark-mode .navbar-default .navbar-nav .leaf-twitter a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_tw-dark.svg");
  }
  body.dark-mode .navbar-default .navbar-nav .leaf-facebook a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_fb-dark.svg");
  }
  body.dark-mode .navbar-default .navbar-nav .leaf-youtube a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_yt-dark.svg");
  }
  body.dark-mode .navbar-default .navbar-nav .leaf-rss a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_rss-dark.svg");
  }
  body.dark-mode .navbar-default .navbar-nav .leaf-search a {
    background: url("/themes/custom/urbanize_2018/images/nav_icon_search-dark.svg");
  }
}
body.dark-mode .region-search-bar .form-search .form-text {
  background: url("/themes/custom/urbanize_2018/images/nav_icon_search-dark.svg") no-repeat right center;
  border-color: #000;
}
body.dark-mode .dropdown-arrow-dark {
  display: inline;
}
body.dark-mode .dropdown-arrow {
  display: none;
}
body.dark-mode .pre-header-wrapper {
  background-color: #191919;
}
body.dark-mode .page-background-image svg.mask-lite {
  display: none;
}
body.dark-mode .page-background-image svg.mask-dark {
  display: block;
}
body.dark-mode .node-project .project-status {
  color: #aaa;
}
body.dark-mode .node-project h1.page-header {
  color: #ccc;
}
body.dark-mode .node-project .group-data-container .horizontal-tabs-list li a strong {
  color: #666;
}
body.dark-mode .node-project .group-data-container .horizontal-tabs-list li.selected {
  border-color: #08B2E3;
}
body.dark-mode .node-project .group-data-container .horizontal-tabs-list li.selected a strong {
  color: #aaa;
}
body.dark-mode #projectDetailPageMap {
  border-color: #000;
}
body.dark-mode .region-header .neighborhood-tag a {
  color: #ccc;
}
body.dark-mode .region-header .article-title {
  color: #ccc;
}
body.dark-mode .region-header .article-subtitle {
  color: #ccc;
}
body.dark-mode .region-header .article-byline {
  color: #ccc;
}
body.dark-mode .node-article .article-body {
  color: white;
}

body.path-subscribe h1.page-header {
  text-align: center;
  font-size: 35px;
}
@media (min-width: 992px) {
  body.path-subscribe h1.page-header {
    font-size: 66px;
  }
}

/* Subscribe button */
.nav li.nav-subscribe .btn-subscribe-paywall,
.articles_remain__wrapper .btn-subscribe-paywall {
  color: white;
  background-color: #03B0E0;
  height: 38px;
  border-radius: 5;
  line-height: 20px;
  font-weight: 500;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
}
.nav li.nav-subscribe .btn-subscribe-paywall:active, .nav li.nav-subscribe .btn-subscribe-paywall:hover, .nav li.nav-subscribe .btn-subscribe-paywall:focus,
.articles_remain__wrapper .btn-subscribe-paywall:active,
.articles_remain__wrapper .btn-subscribe-paywall:hover,
.articles_remain__wrapper .btn-subscribe-paywall:focus {
  color: white;
}

/* Subscribe button visibility based on subdomain */
/* and whether user is already subscribed */
.nav li.nav-subscribe {
  display: none;
}

body.site-la .nav li.nav-subscribe,
body.site-atlanta .nav li.nav-subscribe,
body.site-chicago .nav li.nav-subscribe {
  display: list-item;
}

body.subscribed-user .nav li.nav-subscribe {
  display: none;
}

/* "You have X articles remaining" ribbon */
.articles_remain__wrapper {
  background-color: #fff;
  position: fixed;
  border-top: 1px solid #e8e8e8;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  padding: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(153, 153, 153, 0.15);
  -moz-box-shadow: 0px 0px 25px 0px rgba(153, 153, 153, 0.15);
  box-shadow: 0px 0px 25px 0px rgba(153, 153, 153, 0.15);
}

.articles_remain__wrapper.hide {
  display: none;
}

.articles_remain__heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.033em;
  font-weight: 700;
  color: #8991A5;
}
@media (min-width: 813px) {
  .articles_remain__heading {
    font-size: 36px;
    line-height: 36px;
  }
}

.articles_remain__subhead {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.033em;
  font-weight: 700;
  color: #33373D;
  margin-top: 10px;
}
@media (min-width: 813px) {
  .articles_remain__subhead {
    font-size: 36px;
    line-height: 36px;
  }
}

.articles_remain__wrapper .btn-subscribe-paywall {
  font-size: 18px;
  padding: 22px 43px;
  font-weight: 600;
}
@media (min-width: 813px) {
  .articles_remain__wrapper .btn-subscribe-paywall {
    font-size: 24px;
  }
}

.articles_remain__close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
