body,
html {
  overflow-y: visible;
  /* overflow-x: hidden; */
  margin: 0 auto;
  padding: 0;
}

/* Top section - start */

.top-section {
  width: 100%;
  /* height: 600px; */
  height: 900px;
  background: #000000;
  position: relative;
  z-index: 99;
  transition: all 600ms ease;
}

.top-section.add-height {
  height: 700px;
}

.top-section.generic-pages {
  height: 450px;
}

.top-section.generic-pages .generic-content {
  width: 95%;
  margin: 0 auto;
  height: 100%;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-section.generic-pages .generic-content h1 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 68px;
  line-height: 110%;
  color: #ffffff;
}

.top-section .city-data-container {
  position: absolute;
  opacity: 0;
  /* visibility: hidden; */
}

.top-section .city-data-container.rankings {
  width: 700px;
  margin: 0 auto;
  height: 100%;
  left: 0;
  right: 0;
  top: -70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-section .city-data-container.rankings h1 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 68px;
  line-height: 110%;
  color: #ffffff;
}

.top-section .city-data-container.rankings .search-bar {
  position: relative;
}
.top-section .city-data-container.rankings .search-bar .search-bar-text-box {
  /* margin-top: 40px; */
  background: #000000;
  padding: 12px 25px;
  width: 570px;
  outline: 0;
  color: #ffffff;
  border-radius: 30px;
  border: solid 1px #4d4d4d;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.top-section .city-data-container.rankings .search-bar .search-icon {
  display: block;
  position: absolute;
  right: 105px;
  margin-top: -33px;
  opacity: 1;
  cursor: pointer;
  transition: all 500ms ease;
}
.top-section .city-data-container.rankings .search-bar .search-icon.hide-icon {
  opacity: 0;
  filter: blur(5px);
}

.top-section .city-data-container.profiles-compare {
  /* width: 96%; */
  height: 100%;
  position: relative;
  margin: 0 auto;
}
.top-section .city-data-container.profiles-compare .left-data,
.top-section .city-data-container.profiles-compare .right-data {
  padding-top: 200px;
}

.top-section .city-data-container.profiles-compare .left-data {
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

@media (max-width: 1200px) {
  .top-section .city-data-container.profiles-compare .left-data {
    width: 100%;
    padding-top: 100px;
  }
}
.top-section .city-data-container.profiles-compare .left-data.border-right {
  border-right: solid 1px #1a1a1a;
}

.top-section .city-data-container.profiles-compare .right-data {
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;

  /* shams */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .top-section .city-data-container.profiles-compare .right-data {
    display: none;
  }
}
.top-section .city-data-container.active {
  opacity: 1;
  visibility: visible;
}

.top-section .city-data-container .cdc-container {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  filter: blur(20px);
  width: 100%;
  transform: translateY(180px);
  transition: all 600ms ease;
}
.top-section .city-data-container .cdc-container.search-container {
  width: 100%;
}

.top-section .city-data-container .cdc-container.show-this {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
  transform: translateY(0px);
}

.top-section .city-data-container .cdc-container .profile-selector .profile-selector-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.top-section .city-data-container .cdc-container .profile-selector h2 {
  display: inline-block;
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 120%;
  color: #ffffff;
}

.top-section .city-data-container .cdc-container .profile-selector .city-selector {
  display: inline-block;
  border: solid 1px #4d4d4d;
  cursor: pointer;
  border-radius: 30px;
  position: relative;
  top: -10px;
  left: 10px;
}
.top-section .city-data-container .cdc-container .profile-selector .city-selector span {
  display: inline-block;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #ffffff;
  padding: 5px 12px 6px 12px;
  transition: all 300ms ease;
}

.top-section .city-data-container .cdc-container .profile-selector .city-selector span img {
  display: inline-block;
  padding-left: 7px;
  position: relative;
  top: 3px;
}

.top-section .city-data-container .cdc-container .profile-selector .city-selector span.active {
  color: #c8dc00;
}

.top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown {
  position: absolute;
  width: 300px;
  background: #000000;
  border: solid 1px #4d4d4d;
  border-radius: 10px;
  margin-top: 20px;
  display: none;
  opacity: 0;
  transition: all 300ms ease;
  z-index: 10;
}
.top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown.active {
  display: block;
  opacity: 1;
}
.top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown .city-search {
  padding: 10px;
}

.top-section
  .city-data-container
  .cdc-container
  .profile-selector
  .city-selector
  .city-dropdown
  .city-search
  .city-search-box {
  width: 100%;
  outline: 0;
  background: #000000;
  color: #ffffff;
  border: solid 1px #4d4d4d;
  border-radius: 30px;
  padding: 8px 15px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
}

.top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown .city-content {
  max-height: 500px !important;
}
.top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown .city-content p {
  border-top: solid 1px #1a1a1a;
  border-bottom: solid 1px #1a1a1a;
  padding: 10px 10px 10px 20px;
  width: calc(100% - 40px);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  position: relative;
  transition: all 300ms ease;
  cursor: pointer;
}
.top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown .city-content p:hover {
  background: rgba(77, 77, 77, 0.39);
}

.top-section
  .city-data-container
  .cdc-container
  .profile-selector
  .city-selector
  .city-dropdown
  .city-content
  p.selected {
  color: #c8dc00;
  background: rgba(77, 77, 77, 0.39);
}

.top-section
  .city-data-container
  .cdc-container
  .profile-selector
  .city-selector
  .city-dropdown
  .city-content
  p.selected:after {
  content: "";
  position: absolute;
  background: url("/content/dam/oliver-wyman/ow-forum/template-scripts/urban-mobility-index-2023/images/check_icon_green.svg")
    center no-repeat;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 8px;
}

.top-section
  .city-data-container
  .cdc-container
  .profile-selector
  .city-selector
  .city-dropdown
  .city-content
  p.disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: default !important;
}

@media (max-width: 1024px) {
  .top-section .city-data-container .cdc-container .profile-selector .city-selector .city-dropdown.city-dropdown-right {
    right: 0;
  }
}
/* .top-section .city-data-container .cdc-container .profile-selector .summary-section {
  margin-top: 40px;
  padding-right: 100px;
}

.top-section .city-data-container .cdc-container .profile-selector .summary-section p {
  margin: 0;
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #999999;
} */

.top-section .city-data-container .cdc-container .scores-section .top-scores {
  display: flex;
  justify-content: left;
  gap: 170px;
}

@media (max-width: 1200px) {
  .top-section .city-data-container .cdc-container .scores-section .top-scores {
    justify-content: space-between;
    gap: 0;
    padding: 0 5px;
  }
}
.top-section .city-data-container .cdc-container .scores-section .top-scores .left,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right {
  position: relative;
}

.top-section .city-data-container .cdc-container .scores-section .top-scores .left .title,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .title,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #999999;
  display: inline-block;
  margin: 0 !important;
  padding: 0 !important;
}

.top-section .city-data-container .cdc-container .scores-section .top-scores .left .title .tooltip,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .title .tooltip,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .title .tooltip {
  font-size: 10px;
  position: relative;
  top: -2px;
  cursor: pointer;
}

.top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores .score-text,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores .score-text,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores .score-text {
  position: relative;
}

.top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores .score-text .rank-text,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores .score-text .rank-text,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores .score-text .rank-text {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 125%;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores .score-text .rank-text,
  .top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores .score-text .rank-text,
  .top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores .score-text .rank-text {
    font-size: 28px;
  }
}
.top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores .score-text .rank-status,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores .score-text .rank-status,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores .score-text .rank-status {
  position: absolute;
  top: 0px;
  right: -50px;
  width: 50px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .left
  .scores
  .score-text
  .rank-status
  .arrow-stats
  .hide-this,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .mid
  .scores
  .score-text
  .rank-status
  .arrow-stats
  .hide-this,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .right
  .scores
  .score-text
  .rank-status
  .arrow-stats
  .hide-this {
  display: none;
}
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .left
  .scores
  .score-text
  .rank-status
  .number-status,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .mid
  .scores
  .score-text
  .rank-status
  .number-status,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .right
  .scores
  .score-text
  .rank-status
  .number-status {
  display: inline-block;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  text-transform: uppercase;
}
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .left
  .scores
  .score-text
  .rank-status
  .number-status.green,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .mid
  .scores
  .score-text
  .rank-status
  .number-status.green,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .right
  .scores
  .score-text
  .rank-status
  .number-status.green {
  color: #26cf73;
}
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .left
  .scores
  .score-text
  .rank-status
  .number-status.red,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .mid
  .scores
  .score-text
  .rank-status
  .number-status.red,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .right
  .scores
  .score-text
  .rank-status
  .number-status.red {
  color: #ff2b3d;
}

.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .left
  .scores
  .score-text
  .rank-status
  .number-status.yellow,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .mid
  .scores
  .score-text
  .rank-status
  .number-status.yellow,
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .top-scores
  .right
  .scores
  .score-text
  .rank-status
  .number-status.yellow {
  color: #ffbe00;
}

.top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores .score-text .new-tag,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores .score-text .new-tag,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores .score-text .new-tag {
  position: absolute;
  top: 0px;
  right: -30px;
}
.top-section .city-data-container .cdc-container .scores-section .top-scores .left .scores .score-text .new-tag span,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .scores .score-text .new-tag span,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .scores .score-text .new-tag span {
  background: #c8dc00;
  padding: 5px 8px;
  border-radius: 20px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 9px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.1em;
  color: #000000;
}
.top-section .city-data-container .cdc-container .scores-section .top-scores .left .bottom-title,
.top-section .city-data-container .cdc-container .scores-section .top-scores .mid .bottom-title,
.top-section .city-data-container .cdc-container .scores-section .top-scores .right .bottom-title {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
}

.top-section .city-data-container .cdc-container .scores-section .bottom-scores {
  width: 100%;
}
.top-section .city-data-container .cdc-container .scores-section .bottom-scores .profile-scores-table {
  width: 100%;
  /* margin-top: 70px; */
  margin-top: 44px;
}
.top-section .city-data-container .cdc-container .scores-section .bottom-scores .profile-scores-table tr td {
  border-bottom: solid 1px #4d4d4d;
  padding: 8px 0;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.16px;
  color: #999999;
}

.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .bottom-scores
  .profile-scores-table
  tr
  td:nth-of-type(2) {
  width: 100px;
  text-align: right;
}
.top-section
  .city-data-container
  .cdc-container
  .scores-section
  .bottom-scores
  .profile-scores-table
  tr
  td:nth-of-type(2)
  span {
  color: #ffffff;
}

.top-section .city-data-container .cdc-container .city-summary-header {
  transition: all 600ms ease;
}
.top-section .city-data-container .cdc-container .city-summary-header.hide-this {
  filter: blur(20px);
  transform: translateY(100px);
  opacity: 0;
}

.top-section .city-data-container .cdc-container .city-summary {
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}

.top-section .city-data-container .cdc-container .city-summary.hide-this {
  -webkit-filter: blur(20px);
  filter: blur(20px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.top-section .city-data-container .cdc-container .city-data-container-left {
  /* padding-right: 50px; */
  margin-top: 44px;
  transition: all 600ms ease;
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}
.top-section .city-data-container .cdc-container .city-data-container-left.hide-this {
  filter: blur(20px);
  transform: translateY(100px);
  opacity: 0;
}

.top-section .city-data-container .cdc-container .city-data-container-right {
  margin-top: 44px;
  transition: all 600ms ease;
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}
.top-section .city-data-container .cdc-container .city-data-container-right.hide-this {
  filter: blur(20px);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1;
}

@media (max-width: 992px) {
  .top-section {
    height: 650px;
  }
  .top-section .city-data-container.rankings {
    width: 95%;
    margin: 0 auto;
    top: 0px;
  }
  .top-section .city-data-container.rankings .search-bar h1 {
    font-size: 46px;
  }
  .top-section .city-data-container.rankings .search-bar .search-bar-text-box,
  .top-section .city-data-container.rankings .search-bar .search-icon {
    display: none;
  }
  .top-section .city-data-container.profiles-compare {
    /* display: none; */
  }

  .top-section.profiles-compare-only {
    display: none;
  }
}

.tooltip-parent {
  display: inline-block;
  position: relative;
}
.tooltip-parent.tooltip-ranking {
  text-align: left !important;
}
.tooltip-parent.tooltip-ranking span {
  left: 3px;
}
.tooltip-parent.tooltip-profiles {
  font-size: 10px;
  position: relative;
  top: 2px;
  left: 2px;
  display: inline-block;
  cursor: pointer;
}
.tooltip-parent.tooltip-profiles span {
  color: #999;
}
.tooltip-parent span {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 900;
  font-size: 10px;
  position: relative;
  top: -5px;
  line-height: 22px;
  letter-spacing: -0.16px;
  color: #000;
  cursor: pointer;
}
.tooltip-parent .tooltip-content {
  display: none;
  position: absolute;
  width: 300px;
  background: #000000;
  border: solid 1px #4d4d4d;
  z-index: 10;
  padding: 10px;
  top: 25px;
  left: -15px;
  border-radius: 8px;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12px;
  color: #ffffff;
  z-index: 1;
}
.tooltip-parent .tooltip-content:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #4d4d4d transparent;
}
.tooltip-parent .tooltip-content:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #000000 transparent;
}
.tooltip-parent .tooltip-content.flip {
  left: unset;
  right: -20px;
}
.tooltip-parent .tooltip-content.flip:before {
  left: unset;
  right: 14px;
}
.tooltip-parent .tooltip-content.flip:after {
  content: "";
  left: unset;
  right: 14px;
}
.tooltip-parent:hover .tooltip-content {
  display: block;
}
@media (max-width: 768px) {
  .tooltip-parent .tooltip-content {
    /* display: block; */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: unset;
    background: #fff;
    height: 300px;
    width: 100%;
    z-index: 101;
    opacity: 1;
    visibility: visible;
    max-height: unset;
    border-radius: unset;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: unset;
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.16px;
    padding: 0;
    transition: all 300ms ease;
    transform: translateY(800px);
    z-index: 1001;
  }
  .tooltip-parent .tooltip-content:after,
  .tooltip-parent .tooltip-content:before {
    display: none;
  }
  .tooltip-parent .tooltip-content .responsive-title {
    display: block;
    text-align: center;
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.16px;
    color: #202020;
    padding: 40px 0 10px 0;
    border-bottom: solid 2px #dadada;
  }
  .tooltip-parent .tooltip-content .tooltip-desc {
    padding: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .tooltip-parent.tooltip-parent-active .tooltip-content {
    transform: translateY(0px);
  }
  .tooltip-parent.tooltip-parent-active .tooltip-mobile-overlay {
    visibility: visible;
    opacity: 1;
  }
}
/* Top section -end */
.index-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.index-container .content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  width: 95%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.index-container .content.active {
  z-index: 5;
  visibility: visible;
  opacity: 1;
}

.index-container .content.cc-rankings .table-content .rankings-table {
  width: 100%;
  margin-top: 20px;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th,
.index-container .content.cc-rankings .table-content .rankings-table tr td {
  padding: 15px 10px;
  width: 100px;
  text-align: right;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  cursor: pointer;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th:nth-of-type(1),
.index-container .content.cc-rankings .table-content .rankings-table tr td:nth-of-type(1) {
  width: 5%;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th.text-left,
.index-container .content.cc-rankings .table-content .rankings-table tr td.text-left {
  text-align: left;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th.text-center,
.index-container .content.cc-rankings .table-content .rankings-table tr td.text-center {
  text-align: center;
}

/* .index-container .content .cc-rankings .table-content .rankings-table tr:hover td {
  background: red;
} */

.index-container .content.cc-rankings .table-content .rankings-table tr th {
  border-bottom: solid 1px #000000;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th .sorting {
  cursor: pointer;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th .sorting img {
  display: inline-block;
  padding-right: 10px;
  opacity: 0;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th .sorting img.show {
  opacity: 1;
}

.index-container .content.cc-rankings .table-content .rankings-table tr th .sorting img.flip {
  opacity: 1 !important;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
/* 
.index-container .content.cc-rankings .table-content .rankings-table tr td {
  border-top: solid 1px #e3e3e3;
  border-bottom: solid 1px #e3e3e3;
} */

.index-container .content.cc-rankings .table-content .rankings-table tr td a {
  color: #000000;
  /* border-bottom: solid 1px #000000; */
  outline: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  cursor: pointer;
}

/* .index-container .content.cc-rankings .table-content .rankings-table tr td a:hover {
  text-decoration: none;
} */

/* .index-container .content.cc-rankings .table-content .rankings-table tr:hover td a {
  border-bottom: dotted 1px #000000;
} */

.h1-100 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 700;
  font-size: 70px;
  line-height: 100%;
  color: #000000;
  text-align: center;
  margin: 0;
}

.h1-70 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 70px;
  line-height: 110%;
  color: #ffffff;
  text-align: center;
  margin: 0;
  margin-bottom: 30px;
}


@media (max-width: 1024px) {

  .h1-70 {
    font-size: 35px;
    line-height: 120%;
    text-align: left;
    width: 100%;
  }

}

@media (max-width: 890px) {
  .h1-100 {
    font-size: 60px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .h1-100 {
    font-family: Tiempos, serif;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 110%;
    color: #000000;
    text-align: center;
    margin: 0;
  }
}

.h1-60 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 110%;
  color: #ffffff;
  text-align: left;
  margin: 0px;
}

@media (max-width: 768px) {
  .h1-60 {
    font-size: 50px;
  }
}

@media (max-width: 576px) {
  .h1-60 {
    font-size: 35px;
  }
}

h2 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 150%;
  color: #000000;
  padding: 0;
  margin: 0;
  /* margin-bottom: 20px; */
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-family: Inter, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin: 0;
  margin-bottom: 30px;
  opacity: 0.95;
}

h4 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #000000;
  margin: 0;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  h4 {
    font-size: 18px;
  }
}

.h4-home {
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  font-family: Inter;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

@media (max-width: 768px) {
  .h4-home {
    font-size: 18px;
    margin-bottom: 0;
  }
}

p {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 165%;
  color: #000000;
  margin: 0;
  margin-bottom: 20px;
}

.lead {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 300;
  font-size: 25px;
  line-height: 150%;
  color: #f2f2f2;
  max-width: 800px;
  text-align: center;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .lead {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .h4-home,
  .h1-100 {
    text-align: left;
    width: 100%;
  }
  .lead {
    text-align: center;
    max-width: 100%;
    margin: 20px 0;
  }
}

a {
  font-family: Tiempos, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  /* text-decoration: underline; */
}

/* @media (max-width: 576px) {
  a {
    font-size: 16px;
  }
} */

a:hover {
  color: #000000;
}

.hero-link {
  font-family: Tiempos, serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-link {
    font-size: 18px;
  }
}

.hero-link:hover {
  color: #c8dc00;
}

.white-link {
  color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.white {
  color: #ffffff;
}

.neon-underline {
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid #c8dc00;
}
.section-ow {
  padding: 80px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0px;
  }
}

.container {
  width: 100%;
  margin-top: 0px !important;
  /* padding: 0px 175px; */
  /* max-width: 2000px; */
  max-width: 1366px;
  margin: 0 auto;
}

@media (max-width: 1490px) {
  .container,
  .homepage-content,
  section .about {
    padding: 0px 20px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0px 10px;
  }
}
@media (min-width: 2000px) {
  .container {
    max-width: 1366px;
  }
}

.read-more {
  max-height: 450px;
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
}

.read-more .trigger {
  position: absolute;
  top: 250px;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  cursor: pointer;
  padding-top: 150px;
  background-image: linear-gradient(0deg, #fff 30%, rgba(244, 227, 227, 0.06) 100%);
}
.read-more .trigger a {
  font-family: Inter, sans-serif;
  color: black;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}

@media (max-width: 1024px) {
  .read-more {
    max-height: 400px;
    font-size: 60px;
  }
  .read-more .trigger {
    text-align: left;
    top: 250px;
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  .read-more {
    max-height: 650px;
    margin-bottom: 100px;
  }
  .read-more .trigger {
    /* text-align: left; */
    top: 250px;
    padding-top: 115px;
  }
}

.flex-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .flex-space-between {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.col-2 {
  width: 50%;
}

.col-3 {
  width: 33%;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-0 {
  margin-bottom: 0px;
}

@media (max-width: 576px) {
  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 576px) {
  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }
}

.mb-50 {
  margin-bottom: 50px;
}

.pr-30 {
  padding-right: 30px;
}

@media (max-width: 576px) {
  .pr-30 {
    padding-right: 0px;
  }
}

.mr-50 {
  margin-right: 50px;
}

@media (max-width: 768px) {
  .mr-50 {
    margin-right: 30px;
  }
}

@media (max-width: 576px) {
  .mr-50 {
    margin-right: 0px;
  }
}

.max-width-380 {
  max-width: 380px;
}

@media (max-width: 576px) {
  .max-width-380 {
    max-width: 100%;
  }
}

/* @media (max-width: 576px) {
  .mobile-hide {
    display: none !important;
  }
} */

/* .mobile-show {
  display: none;
} */

/* @media (max-width: 576px) {
  .mobile-show {
    display: block;
  }
} */

.hero-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  height: 145vh;
}

.hero-bg-rm{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/Cover.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1024px) {
  .hero-home {
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .hero-home {
    padding-bottom: 80px;
  }
}

@media (max-width: 576px) {
  .hero-home {
    padding-bottom: 70px;
    height: 100vh;
  }
  .hero-bg-rm{
    background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/Cover-mobile.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.hero-home .hero-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 200px;
  padding-bottom: 130px;
  max-width: 65%;
}

@media (max-width: 1490px) {
  .hero-home .hero-box{
    padding-top: 170px;
    max-width: 67%;
  }
}

@media (max-width: 1477px) {
  .hero-home .hero-box{
    padding-top: 170px;
    max-width: 68%;
  }
}

@media (max-width: 1455px) {
  .hero-home .hero-box{
    padding-top: 170px;
    max-width: 69%;
  }
}

@media (max-width: 1434px) {
  .hero-home .hero-box{
    padding-top: 170px;
    max-width: 70%;
  }
}

@media (max-width: 1455px) {
  .hero-home .hero-box{
    padding-top: 170px;
    max-width: 100%;
  }
}

@media (max-width: 890px) {
  .hero-home .hero-box{
    padding-top: 120px;
    max-width: 100%;
  }
}

.home-img-box {
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .home-img-box {
    margin-bottom: 20px;
  }
}

.hero-1 {
  padding-top: 217px;
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .hero-1 {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .hero-1 {
    padding-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .hero-1 {
    padding-bottom: 50px;
    padding-top: 140px;
  }
}

.separator {
  max-width: 1350px;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}

.col-gap-30 div {
  margin-right: 30px;
}

@media (max-width: 576px) {
  .col-gap-30 div {
    margin-right: 0px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
  }
}

.col-gap-30 div:last-child {
  margin-right: 0px;
}

@media (max-width: 576px) {
  .col-gap-30 div:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}

.col-gap-20 div:last-child {
  margin-right: 0px;
}

@media (max-width: 576px) {
  .col-gap-20 div:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
}

@media (max-width: 576px) {
  .mobile-full-width {
    width: 100%;
  }
}

.no-line-break {
  white-space: nowrap;
}

.highlight-new-box {
  background-color: #c8dc00;
  border-radius: 10px;
  padding: 3px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Inter, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 9px;
  line-height: 22px;
  color: #000000;
  margin: 0px;
}

/* .slick-slider div {
  margin-right: 20px;
}

.slick-img {
  margin-bottom: 30px;
}

.slick-data {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #999999;
  margin-bottom: 5px;
}

.slick-slider .item:hover a,
.slick-slider .item:active a {
  text-decoration: none !important;
}

.related-content:active a {
  text-decoration: none;
}

.slick-heading {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #ffffff;
  margin-bottom: 0px;
}

.slick-list {
  padding: 0 15% 0 0 !important;
} */

.mobile-box-releted-content {
  padding-bottom: 20px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 20px;
}

.no-border {
  border: none !important;
}

/* .slick-data-mobile {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 10px;
  color: #999999;
  margin-bottom: 10px;
}

.slick-heading-mobile {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 0px;
} */

.width-70percentage {
  width: 70%;
}

.width-30percentage {
  width: 30%;
}

.pr-20 {
  padding-right: 20px;
}

.video-baner {
  width: 100%;
  height: 698px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .video-baner {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .video-baner {
    height: 380px;
  }
}

/* html {
    scroll-behavior: smooth;
  } */
.index-bg {
  background: url("/content/dam/oliver-wyman/ow-forum/template-scripts/urban-mobility-index-2023/images/mobility-index-banner-image_about.jpg");
  background-size: cover;
  width: 100%;
  height: 445px;
  background-position: center;
}

.index-bg-1 {
  background: url("/content/dam/oliver-wyman/ow-forum/template-scripts/urban-mobility-index-2023/images/mobility-index-banner-image_main.jpg");
  background-size: cover;
  width: 100%;
  height: 445px;
  background-position: center;
}

.play-pause-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* @media (max-width: 992px) {
  .play-pause-btn {
    display: none;
  }
} */

.play-pause-btn .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.play-pause-btn .container a {
  padding: 10px 20px;
  width: 95px;
  height: 43px;
  color: white;
  cursor: pointer;
  border: 1px solid #4d4d4d;
  background: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10%;
  gap: 3px;
}

.play-pause-btn .container a span {
  color: #c8dc00;
  font-family: Inter, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-right: 3px;
  width: 50px;
  height: 20px;
  display: inline-block;
  text-align: center;
}

@media (max-width: 768px) {
  .play-pause-btn .container a span {
    display: none;
  }

  .play-pause-btn .container a {
    padding: 0;
    width: 43px;
    height: 43px;
  }
}
.play-pause-btn .container a svg {
  display: none;
}

.play-pause-btn .container a svg.active {
  display: inline;
}
.full-width-container{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

section#page-with-two-col {
  display: flex;
  max-width: 1370px;
  width: 100%;
  flex-direction: column; 
  justify-content: center;
  align-items: flex-start;
}

.wrapper {
  max-width: 1090px;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: left;
  padding: 70px 0;
}

@media (max-width: 1100px) {
  section#page-with-two-col{
    padding: 0 20px 0 0;
  }
}
@media (max-width: 1060px) {
  section#page-with-two-col{
    padding: 0px;
  }
}
@media (max-width: 910px) {
  .wrapper {
    gap: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 0;
    padding-bottom: 70px;
  }
}

/* @media (max-width: 768px) {
  .wrapper {
    padding: 40px 0px;
  }
} */

.wrapper li {
  padding-bottom: 20px;
}

.wrapper a {
  text-decoration: none;
}

.sidebar ul li.active {
  text-decoration: underline;
  text-decoration-color: #c8dc00;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
}



.wrapper li.active .sidebar-item {
  text-decoration: underline;
  text-decoration-color: #c8dc00;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
  color: #000000 !important;
}

.wrapper li .sidebar-item:hover {
  color: #000000;
  text-decoration: underline;
  text-decoration-color: #c8dc00;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
}

.main,
.sidebar {
  background-color: #fff;
  /* padding: 15px; */
  opacity: 1;
  transition: opacity 2s;
}

.sidebar{
  background-color: transparent;
}
.main {
  width: 100%;
}
@media (max-width: 1024px) {
  .main {
    width: 100%;
  }
}
@media (max-width: 910px) {
  .wrapper li .sidebar-item:hover {
    text-decoration: none;
  }
}

@media (max-width: 1490px) {
  /* #Related-Articles-Section,
  #About-Section-Home, 
  .main-article #About-Introduction,
  .main-article #About-Ranking-Dimensions,
  .main-article #About-Methodology,
  .main-article #About-Sustainable-Mobility,
  .main-article #About-Public-Transit,
  .main-article #About-Index-Structure-Reliability,
  .main-article #About-References,
  .main-article #About-Authors {
    padding: 0 20px;
  } */

  /* .sidebar, */
  /* .main-article #Overview,
  .main-article #Title-One,
  .main-article #Title-Two,
  .main-article #Title-Three,
  .main-article #Title-Four,
  .main-article #Title-Five {
    padding: 0 20px;
  } */
}


@media (max-width: 1060px) {
  .main-article #Overview,
  .main-article #Title-One,
  .main-article #Title-Two,
  .main-article #Title-Three,
  .main-article #Title-Four,
  .main-article #Title-Five {
    padding: 20px;
    margin: 0!important;
  }


  /* #Related-Articles-Section,
  #About-Section-Home,  */
  .main-article #About-Introduction,
  .main-article #About-Ranking-Dimensions,
  .main-article #About-Methodology,
  .main-article #About-Sustainable-Mobility,
  .main-article #About-Public-Transit,
  .main-article #About-Index-Structure-Reliability,
  .main-article #About-References,
  .main-article #About-Authors {
    padding: 20px;
    margin-bottom: 0!important;
  }

  .sidebar ul li.active,
  .wrapper li.active .sidebar-item,
  .wrapper li .sidebar-item:hover {
    text-decoration: none;
  }

  .sidebar ul li.active .sidebar-item {
    padding-bottom: 10.2px;
    border-bottom: 4px solid #c8dc00;
  }
}


@media (max-width: 600px) {  
  /* #Related-Articles-Section,
  #About-Section-Home,  */
  .main-article #About-Introduction,
  .main-article #About-Ranking-Dimensions,
  .main-article #About-Methodology,
  .main-article #About-Sustainable-Mobility,
  .main-article #About-Public-Transit,
  .main-article #About-Index-Structure-Reliability,
  .main-article #About-References,
  .main-article #About-Authors,
  .main-article #Overview,
  .main-article #Title-One,
  .main-article #Title-Two,
  .main-article #Title-Three,
  .main-article #Title-Four,
  .main-article #Title-Five {
    padding: 0 10px;
  }

}
/* @media (max-width: 410px) {
  .wrapper,
  .main #About-Section,
  .main #Related-Articles-Section {
    margin: 0;
  }
} */

ul {
  list-style: none;
}

.sidebar {
  /* position: -webkit-fixed;
  position: fixed; */
  position: static;
  top: auto;
  width: 100%;
  height: 100%;
  background-color: transparent;
  /* white-space: nowrap; */
  /* height: 50px; */
  height: 75vh;
  max-width: -webkit-fill-available;
  -webkit-box-orient: horizontal;
  z-index: 1;
  padding-left: 0px; 
}

.empty-width{
  max-width: 280px;
    height: 100%;
    width: 100%;
}

.left{
  max-width: 280px;
  width: 100%;
  position: relative;
  
}

@media (max-width: 1490px){
  .empty-width{
    padding: 0 20px;
  }
}

@media (max-width: 1060px){
  .empty-width{
    display: none;
  }
  .left{
    width: auto;
    position: relative;
    left: 0px;
    max-width: 100%;
  }
}

@media (max-width: 1024px){
  .banner-title-wrapper{
    padding: 0 20px;
  }
}



@media (max-width: 1382px){
.sidebar{
  padding-left: 20px;
}

}

.fixe{
  position: fixed!important;
  top: 80px;
  min-width: 250px;
  max-width: 250px;
  width: 18%;
}

 /* @media (max-width: 1382px){
  .fixe{
    min-width: 322px;
  }
}

@media (max-width: 1358px){
  .fixe{
    min-width: 319px;
  }
}

@media (max-width: 1347px){
  .fixe{
    min-width: 316px;
  }
}

@media (max-width: 1240px){
  .fixe{
    min-width: 290px;
  }
} */

/* @media (max-width: 1703px){
  .fixe{
    width: 22%;
  }
}

@media (max-width: 1464px){
  .fixe{
    width: 25%;
  }
} */
@media (max-width: 1094px){
  .fixe{
    min-width: 244px;
  }
}

@media (max-width: 1074px){
  .fixe{
    min-width: 244px;
  }
}
  

.main-article {
  max-width: 810px;
  width: 100%;
}

@media (max-width: 1060px) {
  .main-article {
    max-width: 100%;
    width: 100%;
  }
}
.sidebar-home {
  padding: 0 10px !important;
}
.timepicker {
  /* width: 100%; */
  padding: 5px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* overflow-x: scroll; */
  /* white-space: nowrap; */
  background-color: transparent;
  padding-left: 16px;
}

.underline {
  text-decoration: underline !important;
}

.sidebar-item {
  font-family: Inter, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #000000 !important;
}

@media (max-width: 768px) {
  .sidebar {
    overflow: scroll;
    white-space: nowrap;
  }
  .sidebar .timepicker {
    scroll-behavior: smooth;
    /* -webkit-overflow-scrolling: touch; */
    overflow-x: scroll;
    white-space: nowrap;
  }

  .sidebar-item {
    font-size: 14px;
    position: relative;
  }
}

@media screen and (max-width: 720px) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  ul {
    padding-left: 0;
  }
  .sidebar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: scroll;
    white-space: nowrap;
    width: 100%;
    padding: 0;
    height: -webkit-fill-available;
    border-bottom: 1px solid #e6e6e6;
    display: block;
    position: sticky;
    height: 50px;
    overflow-y: hidden;
    max-width: -webkit-fill-available;
    /* -webkit-overflow-scrolling: touch; */
    z-index: 1;
  }

  .sidebar ul li {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px;
  }
}

.download-item {
  max-width: 620px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.download-item .download-pdf-icon {
  margin-right: 20px;
}

.download-pdf-icon {
  width: 60px;
}

.download-item .download-pdf-title {
  font-family: Inter, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.download-item .download-pdf-size {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 0px;
}

.download-item .flex-vertical-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .download-pdf-description {
    width: 70%;
  }
}

section#article {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.homepage-content {
  max-width: 810px;
  width: 100%;
}
section .related-articles,
section .about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1370px;
  width: 100%;
  border-top: 1px solid #e6e6e6;
  padding: 80px 0;
  display: flex;
  flex-direction: row;
  justify-content: left;
}

.about-container .left-side {
  max-width: 280px;
  width: 100%;
}
.about-container .right-side {
  max-width: 1090px;
  width: 100%;
}

.about-container .right-side a {
  color: #000;
  font-family: Inter, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}

.about-container .right-side a.green-link.city-name {
  font-family: Tiempos, serif;
}

.related-articles-container {
  max-width: 1370px;
  width: 100%;
  border-top: 1px solid #e6e6e6;
  padding: 80px 0;
}

.related-articles-container h2 {
  margin-bottom: 40px;
}


.related-articles-container .related-articles-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 50px;
}

.related-articles-container .related-articles-grid .ra-grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: -webkit-fill-available;
}


.related-articles-container .related-articles-grid .ra-grid-item a {
  font-family: Inter, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  /* margin-top: 30px; */
  display: inline-block;
  color: rgba(0, 0, 0, 0.9);
}

.related-articles-container .related-articles-grid .ra-grid-item a h4 {
  margin-bottom: 15px !important;
}

.related-articles-container .related-articles-grid .ra-grid-item p {
  margin-bottom: 15px !important;
}

@media (max-width: 1490px) {
  .about-container{
    padding: 40px 20px;
  }
  
  .related-articles-container {
    padding: 40px 20px 80px 20px;
  }
}

@media (max-width: 1024px) {
  .about-container {
    gap: 30px;
    /* padding: 40px 0; */
    flex-direction: column;
  }

  /* .related-articles-container {
    padding: 0;
    padding-top: 40px;
  } */

  .about-container .left-side,
  .about-container .right-side {
    width: 100%;
  }


  .related-articles-container .related-articles-grid {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 40px 10px;
  }

  .related-articles-container {
    padding: 40px 10px 80px 10px;
  }

  .related-articles-container .related-articles-grid {
    grid-template-columns: auto;
    gap:0;
  }

  .related-articles-container .related-articles-grid .ra-grid-item {
    border-bottom: 1px solid #E6E6E6;
    padding: 20px 0;
    gap: 10px;
    /* height: 180px; */
    height: 100%;
    justify-content: flex-start;
  }

  .related-articles-container .related-articles-grid .ra-grid-item:last-child {
    border-bottom: none;
  }

  .related-articles-container .related-articles-grid .ra-grid-item p,
  /* .related-articles-grid .ra-grid-item h4, */
  .related-articles-container .related-articles-grid .ra-grid-item a,
  .related-articles-container .related-articles-grid .ra-grid-item a h4 {
    margin: 0 !important;
    padding: 0;
  }


  .related-articles-container h2 {
    margin:0 !important;
  }

}

.timepicker {
  /* -webkit-overflow-scrolling: touch; */
  padding: 15px 0;
  scroll-behavior: smooth;
  margin: 0;
  margin-right: 30px;
  padding-left: 20px;
}


@media (max-width: 720px) {
  .timepicker {
    padding: 0;
    padding-left: 16px;
  }
}
/* @media screen and (max-width: 910px) { */
@media screen and (max-width: 1060px) {
  .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* padding: 0 10px; */
  }

  ul {
    padding-left: 0;
    overflow-x: scroll;
  }
  .sidebar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: scroll;
    white-space: nowrap;
    width: 100%;
    height: -webkit-fill-available;
    padding: 0;
    border-bottom: 1px solid #e6e6e6;
    max-width: -webkit-fill-available;
  }
  /* .main {
    width: 100%;
    margin-left: 0;
  } */
  .sidebar ul li {
    display: inline-block;
    color: white;
    text-align: center;
    padding-left: 20px;
  }

  .sidebar ul li:first-child {
    padding-left: 5px !important;
  }

  /* #timepicker {
    white-space: nowrap;
    padding: 15px 0;
  } */

  .timepicker {
    white-space: nowrap;
    /* padding: 0; */
    margin: 0;
  }

  .sidebar {
    /* top: 128px; */
    height: 50px !important;
    overflow-y: hidden;
  }

  .home-submenu-share-mobile,
  .about-submenu-share-mobile {
    display: none !important;
  }
}

.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element,
.scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  /* overflow: hidden; */
  background-color: #000;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  border-radius: 8px;
  background-color: #000;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

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

.newpar {
  display: none;
}

.font-inter {
  font-family: Inter, sans-serif;
}

/* HEADER - start */

/* header {
  position: fixed;
  background: #000000;
  width: 100%;
  height: 110px;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid #1a1a1a;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} */

/* .header-content {
  background: #000000;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  height: 110px;
  overflow: hidden;
  z-index: 10;
}  */
/* header .header-content .logo {
  width: 33.333%;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
} */

/* header .header-content .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  height: 100%;
} */

/* header .header-content .logo a img {
  width: 150px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
} */

/* @media (max-width: 576px) {
  header .header-content .logo a img {
    width: 110px;
  }
} */

/* header .navigation {
  position: absolute;
  width: 33.333%;
  height: 100%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
} */

/* header .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
} */

/* header .navigation ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0 20px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} */

/* @media (max-width: 576px) {
  header .navigation ul li {
    margin: 0 15px;
  }
} */

/* header .navigation ul li a {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 125%;
  text-decoration: none;
  font-weight: 400;
  color: #ffffff;
  outline: 0;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
  height: 106px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: solid 4px transparent;
  top: 2px;
} */

/* header .navigation ul li a:hover {
  color: #c8dc00;
} */

/* header .navigation ul li a.active {
  color: #c8dc00;
  border-bottom: solid 2px #c8dc00;
} */

/* header .country-navigation {
  position: absolute;
  right: 3%;
  width: auto;
  height: 100%;
  -webkit-filter: blur(8px);
  filter: blur(8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  text-align: right;
} */

/* header .country-navigation.overview {
  width: auto;
} */

/* header .country-navigation.unblur {
  -webkit-filter: blur(0px);
  filter: blur(0px);
} */

header .country-navigation .display-pdf {
  border: solid 1px #4d4d4d;
  width: 200px;
  padding: 10px;
  border-radius: 20px;
  position: relative;
  display: inline-block;
  text-align: left !important;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

header .country-navigation .display-pdf:hover {
  background: #333;
}

header .country-navigation .display-pdf span {
  display: inline-block;
  padding-left: 10px;
  color: #ffffff;
}

header .country-navigation .display-pdf img {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 17px;
}

/* header.fixed {
  height: 80px;
  width: 100%;
} */

/* header.fixed .header-content .logo {
  height: 80px;
} */

/* header.fixed .header-content .logo a img {
  height: 50px;
} */

/* header.fixed .header-content .navigation {
  height: 80px;
} */

header.fixed .header-content .navigation ul li a {
  height: 76px;
}

/* @media (max-width: 990px) {
  header .header-content .logo {
    border-right: none;

    width: 50% !important;
    align-items: start !important;
  }

  header .navigation {
    position: absolute;
    width: 95%;
  }

  .dropbtn {
    width: 191px;
  }

  .dropdown-content {
    width: 191px;
  }
} */

/* @media (max-width: 910px) {
  header {
    height: 130px;
  }

  header .navigation {
    margin-top: 77px;
    display: flex;
    border-top: 1px solid #1a1a1a;
    height: 50px;
    margin-left: 0px;
  }

  header.fixed .header-content .navigation {
    margin-top: 77px;
    height: 50px;
  }

  header.fixed {
    height: 130px;
  }

  header .header-content .logo {
    height: 80px;
  }

  header .navigation ul {
    height: 50px;
    padding-left: 0px;
    overflow-y: hidden;
  }

  header .navigation ul li:first-child {
    margin-left: 5px;
  }

  .main-downloads {
    align-items: start !important;
    width: 50%;
  }

  .dropdown {
    margin-top: 16px;
  }

  header .navigation ul li a {
    height: 48px;
  }

  header.fixed .header-content .navigation ul li a {
    height: 48px;
  }
} */

/* @media (max-width: 768px) {
  header .navigation {
    margin-left: 0px;
    display: flex;
  }

  .dropbtn {
    font-size: 14px !important;
    width: 179px !important;
  }

  .dropdown-content {
    width: 179px !important;
  }

  .dropdown-content a {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  header .navigation ul li a {
    font-size: 14px;
  }
} */

/* @media (max-width: 576px) {
  .dropbtn {
    padding: 8px 15px !important;
  }

  .dropdown-content a {
    padding: 8px 15px !important;
  }

  .dropdown-content {
    width: 163px !important;
  }

  .dropbtn {
    width: 163px !important;
  }
} */

/* @media (max-width: 500px) {
  header .navigation ul {
    display: inline-flex;
    justify-content: flex-start;
  }

  header .navigation ul li:first-child{
    margin-left:5px;
  }

  header .navigation {
    margin-left: 0px;
    display: flex;
  }
} */

/* @media (max-width: 375px) {
  header .header-content .logo {
    width: 116px;
    height: 80px;
  }
} */

/* main downloads button - start*/

/* .main-downloads {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 33.333%;

} */

/* .turn {
  transform: rotate(180deg);
} */

/* .open-dropdown-menu {
  border-top: 1px solid #4d4d4d !important;
  border-right: 1px solid #4d4d4d !important;
  border-left: 1px solid #4d4d4d !important;
  border-bottom: none !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
} */

/* .dropbtn {
  width: 209px;
  border: 1px solid #4d4d4d;
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 300ms ease;
} */

/* .dropbtn:hover {
  color: #c8dc00;
} */

/* button#btnDownloads:hover .dropdown-main-downloads-icon path {
  stroke: #c8dc00;
} */

.color-green path {
  stroke: #c8dc00;
}

/* .dropbtn.open-dropdown-menu {
  color: #c8dc00;
} */

/* .dropbtn:focus {
  outline: none !important;
} */

/* .dropdown {
  position: fixed;
  display: inline-block;
  text-align: start;
  width: 209px;
} */

/* .dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  width: 207px;
  overflow: auto;
  z-index: 1;
  border-right: 1px solid #4d4d4d;
  border-left: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
} */

/* .dropdown-content a {
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
} */

/* .dropdown-main-downloads-icon {
  transition: all 500ms ease;
} */

.dropdown a:hover {
  background-color: #4d4d4d;
}

/* .download-pdf-button-mobile {
  width: 140px;
  border: 1px solid #4d4d4d;
  padding: 5px 20px;
  background-color: #000000;
  color: white;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
} */

/* @media (max-width: 576px) {
  .download-pdf-btn-mobile {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 78px;
  }
} */

/* main downloads button - end*/

/* popup for Download PDF in main nav - start*/

/* .mobile-popup-downloads {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
} */

/* .mobile-popup-downloads .bg-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} */

/* .mobile-popup-downloads .mobile-popup-downloads-content {
  height: 300px;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 101;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
} */

/* .mobile-popup-downloads.active {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}

.mobile-popup-downloads.active .bg-overlay {
  opacity: 1;
  visibility: visible;
}

.mobile-popup-downloads.active .mobile-popup-downloads-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
} */

/* .downloads-mobile-title {
  text-align: center;
  padding: 25px 20px 20px 20px;
  border-bottom: solid 1px #e6e6e6;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #202020;
} */

/* .downloads-mobile-files {
  display: flex;
  flex-direction: column;
}

.downloads-mobile-file {
  padding: 15px 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  margin: 0px 10px;
}

.downloads-mobile-files a:first-child {
  border-bottom: 1px solid #e6e6e6;
} */

/* .download-pdf-button-mobile:focus {
  outline: none !important;
  color: #c8dc00;
} */


/* popup for Download PDF in main nav - end*/

/* HEADER - end */

/* .show {
  display: block;
} */

.font-weight-600 {
  font-weight: 600;
}

.styled-bullets {
  list-style: disc;
  margin-left: 0;
  padding-left: 20px;
}

.styled-bullets li {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  padding-bottom: 10px;
}

.sources-city {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 10px;
}

.styled-bullets-sources {
  list-style: disc;
  margin-left: 0;
  padding-left: 20px;
}

.styled-bullets-sources li {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  padding-bottom: 10px;
}

.sources-link {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  padding-bottom: 10px;
  text-decoration: underline !important;
}

.authors-link {
  font-family: Tiempos, serif;
  text-decoration: underline !important;
  font-size: 18px !important;
  line-height: 27px !important;
}

.exhibit-title {
  font-family: Inter, serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  padding-top: 0rem;
}

.exhibit-source {
  font-family: Inter, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #666666;
  margin-top: 10px;
  margin-bottom: 0px;
}

/* City Profile - shams*/
#city-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #000000;
}

#city-article {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 90px;
}

.city-article-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
}

.city-article-container .strenghts,
.city-article-container .weaknesses,
.city-article-container .recommendations {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.city-article-container .strenghts h2,
.city-article-container .weaknesses h2,
.city-article-container .recommendations h2 {
  font-family: Tiempos, serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  width: 50%;
}

@media (max-width: 1140px) {
  .city-article-container .strenghts h2,
  .city-article-container .weaknesses h2,
  .city-article-container .recommendations h2 {
    width: 100%;
  }
}

.city-article-container .strenghts .content-exhibit,
.city-article-container .weaknesses .content-exhibit,
.city-article-container .recommendations .content-exhibit {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 86px;
  width: 100%;
}

@media screen and (max-width: 1140px) {
  .city-article-container .strenghts .content-exhibit,
  .city-article-container .weaknesses .content-exhibit,
  .city-article-container .recommendations .content-exhibit {
    flex-direction: column;
    align-items: center;
  }
}

.city-article-container .strenghts .content-exhibit .content,
.city-article-container .weaknesses .content-exhibit .content,
.city-article-container .recommendations .content-exhibit .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  width: 50%;
  font-family: Tiempos, serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 165%;
}

@media screen and (max-width: 1140px) {
  .city-article-container .strenghts .content-exhibit .content,
  .city-article-container .weaknesses .content-exhibit .content,
  .city-article-container .recommendations .content-exhibit .content {
    width: 100%;
  }
}

.city-article-container .strenghts .content-exhibit .exhibit,
.city-article-container .weaknesses .content-exhibit .exhibit,
.city-article-container .recommendations .content-exhibit .exhibit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  width: 50%;
}

@media screen and (max-width: 1140px) {
  .city-article-container .strenghts .content-exhibit .exhibit,
  .city-article-container .weaknesses .content-exhibit .exhibit,
  .city-article-container .recommendations .content-exhibit .exhibit {
    width: 100%;
  }
}

.city-article-container .strenghts .content-exhibit .exhibit h4,
.city-article-container .weaknesses .content-exhibit .exhibit h4,
.city-article-container .recommendations .content-exhibit .exhibit h4 {
  font-family: Inter, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

.city-article-container .strenghts .content-exhibit .exhibit img,
.city-article-container .weaknesses .content-exhibit .exhibit img,
.city-article-container .recommendations .content-exhibit .exhibit img {
  width: 645px;
  height: 443px;
}

@media screen and (max-width: 1024px) {
  .city-article-container .strenghts .content-exhibit .exhibit img,
  .city-article-container .weaknesses .content-exhibit .exhibit img,
  .city-article-container .recommendations .content-exhibit .exhibit img {
    width: 100%;
    height: 443px;
  }
}

/* Share button in profile page */
.share-cta {
  
  right: 0;
  z-index: 1;
  left: 0;
  /* top: 80px;   */
}

.share-cta.mobile-home-share {
  position: relative;
  width: 100%;
  margin-top: 20px;
  display: none;
}

@media (max-width: 1024px) {
  .share-cta.mobile-home-share {
    display: block;
  }
}

.share-cta .share-btn {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  background: #000000;
  color: #c8dc00;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

@media (max-width: 1024px) {
  .share-cta .share-btn {
    border: solid 1px #4d4d4d;
  }
}

.share-cta .share-btn img {
  margin: 0;
  padding: 0 0 0 5px;
  position: relative;
  top: 2px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.share-cta .share-btn:hover {
  background: #c8dc00;
  color: #000000;
}
.share-cta .share-btn:hover img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(12%) hue-rotate(62deg) brightness(97%)
    contrast(102%);
}
.share-cta .share-btn.active {
  background: #c8dc00;
  color: #000000;
}
.share-cta .share-btn.active img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(12%) hue-rotate(62deg) brightness(97%)
    contrast(102%);
}

.share-cta .share-dropdown {
  position: absolute;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
  background: #1a1a1a;
  margin-top: 10px;
}

.share-cta .share-dropdown.active {
  opacity: 1;
  visibility: visible;
}

.share-cta .share-dropdown ul {
  margin: 0;
  margin-left: -40px;
}
@media (max-width: 1024px) {
  .share-cta .share-dropdown ul {
    margin-left: 0;
  }
}
@media (max-width: 910px) {
  .share-cta .share-dropdown ul {
    margin-left: 0;
  }
}

.share-cta .share-dropdown ul li {
  display: block;
  list-style: none;
}

.share-cta .share-dropdown ul li a {
  outline: 0;
  cursor: pointer;
  color: rgba(230, 230, 230, 0.85);
  font-family: Inter, sans-serif;
  border-bottom: solid 1px rgba(77, 77, 77, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  background: #1a1a1a;
  text-decoration: none;
  display: block;
  /* padding: 10px 20px; */
  padding: 10px 17.5px;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
}

.share-cta .share-dropdown ul li a:hover {
  background: rgba(153, 153, 153, 0.25);
}

.share-cta .share-dropdown ul li a.copy-link .copy-link-text {
  position: relative;
  display: inline-block;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}
.share-cta .share-dropdown ul li a.copy-link .copy-link-text img {
  position: absolute;
  top: 5px;
  right: -25px;
}
.share-cta .share-dropdown ul li a.copy-link .copy-link-text.animate {
  filter: blur(3px);
  opacity: 0;
}
.share-cta .share-dropdown ul li a.copy-link .copy-link-text .copied {
  color: #c8dc00;
}

/* Share mobile menu */

.share-cta-mobile {
  display: none;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.share-cta-mobile.active {
  opacity: 1;
  z-index: 100;
  visibility: visible;
  display: block;
}

.share-cta-mobile.active .share-menu-mobile {
  opacity: 1;
  z-index: 101;
  visibility: visible;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  height: 300px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* height: calc(100vh - 600px);  */
  transition: all 400s ease;
}

@media (max-width: 992px) {
  .share-cta-mobile.active .share-menu-mobile {
    transform: translateY(0);
  }
}

.share-cta-mobile .bg-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transition: all 300ms ease;
}
.share-cta-mobile.active .bg-overlay {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.share-cta-mobile.active .share-mobile-list {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  height: 88%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* height: calc(100vh - 600px); */
}

.share-cta-mobile.active .share-mobile-list ul {
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 20px;
}
.share-cta-mobile.active .share-mobile-list ul li {
  padding: 15px 20px;
}
.share-cta-mobile.active .share-mobile-list ul li:hover {
  background-color: rgba(153, 153, 153, 0.1);
}

.share-cta-mobile.active .share-mobile-list ul li.share-mobile-title:hover {
  background-color: #ffffff !important;
}

.share-cta-mobile.active .share-mobile-list ul li.share-mobile-title {
  border-bottom: 1px solid #e6e6e6;
}
.share-cta-mobile.active .share-mobile-list ul li.share-mobile-title a {
  font-weight: 600 !important;
}

.share-cta-mobile.active .share-mobile-list ul li a {
  text-decoration: none;
  cursor: pointer;
  color: var(--ow-primary-black, #000);
  font-family: Inter, serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  display: block;
  width: 100%;
}

.references-about {
  max-height: 800px;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding-left: 0;
  transition: 2s ease;
  margin: 0;
}
.references-about .read-more-ref {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-top: 200px;
  /* background-image: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.06) 100%); */
  background-image: linear-gradient(0deg, #fff 30%, rgba(244, 227, 227, 0.06) 100%);
}

@media (max-width: 1024px) {
  .references-about .read-more-ref {
    text-align: start;
  }
}
.references-about .read-more-ref a {
  font-family: Inter, sans-serif;
  /* color: #c8dc00; */
  color: #000000;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 165%;
  padding-bottom: 3px;
  border-bottom: 2px solid #c8dc00;
}
/* .references-about .read-more-ref a:hover {
  color: #E8FF00;
} */

.references-about li {
  padding-bottom: 30px;
}
.references-about li {
  font-family: Tiempos, serif;
  font-weight: 300;
  font-size: 18px;
  color: #000000;
  line-height: 165%;
  /* flex-direction: row;
  justify-content: left;
  align-items: center; */
}
.references-about li:last-child {
  padding-bottom: unset;
}
.references-about li a {
  text-decoration: none;
  /* color: #c8dc00; */
  /* padding-left: 10px; */
}

.references-about li a .link-icon {
  padding: 0;
  margin: 0;
}

.references-about li a img {
  padding-left: 5px;
  /* padding-top: 30px; */
}

#consent_blackbar {
  z-index: 10;
}

.black-text{
  color: #000000;
}

.map-section{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px 50px 20px;
  background-color: #E7E6F0;
  height: 100%;
}

@media (max-width: 990px){
  .map-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background-color: #E7E6F0;
    height: 100%;
  }
}

.map-placeholder{
    max-width: 1270px;
    width: 100%;
}

.no-break{
  white-space: nowrap
}

.inter-18{
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 165%;
  margin-bottom: 0;
}
.inter-14{
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 165%;
  margin-bottom: 0;
}

.mt-120-slick{
  margin-top: 120px;
}

.quote-slick{
  margin-top: 90px;
  font-size: 18px;
  line-height: 165%;
}

.quote-slick h3{
  font-size: 18px;
  line-height: 165%;
  margin-bottom: 24px;
}

.quote-slick h3 i{
  font-size: 18px;
  line-height: 165%;
  margin-bottom: 24px;
}

@media (max-width: 768px){
  .quote-slick{
    margin-top: 50px;
  }
  .mt-120-slick{
    margin-top: 100px;
  }
}

.slick-dots{
  bottom: -72px;
}

.slick-dots li button{
  width: 18px;
  height: 18px;
  background-color: #d9d9d9;
  border-radius: 50px;
}

.slick-dots li.slick-active button{
  width: 18px;
  height: 18px;
  background-color: #C8DC00;
  border-radius: 50px;
}

.slick-dots li button:before{
  content: none;
}

.authors-wrapper{
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 30px;
}

.authors-container{
  width: auto;
  height: auto;
}

.author-photo{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.author-photo.silvana{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/silvana_koch-mehrin.jpg");
}
.author-photo.dominik{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/dominik-headshot.jpg");
}
.author-photo.norman{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/norman-headshot.jpg");
}


.p-mb-30{
  margin-bottom: 30px;
}

@media (max-width: 576px){
  .authors-wrapper{
    display: grid;
    grid-template-columns: auto;
    row-gap: 30px;
    margin-bottom: 0px;
  }
}

.background-blur-banner{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/backgrounds/RM_cover-image_Background_Oct8.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 348px;
  display: flex;
  justify-content: center;
}

.bg-one{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/backgrounds/RM_website-image1_rgb_1920x348px.jpg");
  background-position-y: 20%;
    background-position-x: 100%;
    background-size: auto;
}

.bg-two{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/backgrounds/RM_website-image2_rgb_1920x348px.jpg");
  background-position-y: 16%;
}

.bg-three{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/backgrounds/RM_website-image3_rgb_1920x348px.jpg");
  background-position-y: 31%;
}

.bg-four{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/backgrounds/RM_website-image4_rgb_1920x348px.jpg");
  background-position-y: 6%;
  background-position-x: 43%;
  background-size: auto;
}

.banner-title-wrapper{
  display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1370px;
    width: 100%;
}

.white-text{
  color: white;
}

.inter-22{
  font-family: Inter, sans-serif;
  font-size: 22px;
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 30px;
  opacity: 1;
}

@media (max-width: 576px){
  .inter-22{
    font-size: 20px;
    line-height: 165%;
  }
}

.bolded{
  font-weight: 700;
}

.owf-li{
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 165%;
  color: #000000;
  margin-bottom: 20px;
  padding-left: 0;
}

.owf-li li{
  padding-bottom: 0;
}

.tiempos-20{
  font-family: Tiempos, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 165%;
  opacity: 1;
}

@media (max-width: 576px){
  .tiempos-20{
    font-family: Tiempos, serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 165%;
  }
}

.data-wrapper-wrapper .two-col-exhibit{
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 30px;
}

@media (max-width: 768px){
  .data-wrapper-wrapper .two-col-exhibit{
    display: grid;
    grid-template-columns: auto;
    row-gap: 30px;
  }
}

.foreverblur{
  text-shadow: 0 0 10px black;
  color: transparent;
  transition: text-shadow 0.5s ease;
}

.no-blur{
  text-shadow: 0 0 0px black;
  color: transparent;
  transition: text-shadow 0.8s ease;
  max-width: 810px;
  width: 100%;
}

/* .blur-container {
  width: 80%;
  height: 100px;
  left: 50%;
  top: 50%;
  font-size: 1.5em;
  text-align: center;
  transform: translateX(-50%);
  margin-top: -50px;
  max-width: 100%;
  background-attachment: fixed;
}

.blur-container h2 {
  color: white;
  text-shadow: 2px 2px 4px #d1d1d1;
  font-family: arial, sans-serif;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
} */

/*ACCORDION*/
.accordion-wrapper{
  width: auto;
  height: auto;
  background-color: #f0f0f0;
}

.accordion-content{
  padding: 30px 16px;
}

.profile-mini{
}

.authors-container-impact{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.author-more{
  display: flex;
}
 
.author-info{
  margin-left: 30px;
}

.author-photo-impact{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1;
}

.author-photo-impact.millie{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/millie.jpg");
  /* background-position-y: -5px; */
}

.author-photo-impact.marta{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/marta.JPG");
}

.author-photo-impact.frances{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/frances.png");
}

.author-photo-impact.maria{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/maria.jpeg");
}

.author-photo-impact.neema{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/neema.jpg");
  background-position-y: -4px;
}
.author-photo-impact.donna{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/donna.jpg");
}
.author-photo-impact.wafa{
  background-image: url("/content/dam/oliver-wyman/ow-forum/template-scripts/representation-matters/assets/headshots/wafa.jpg");
  background-position-y: -2px;
}

.styled-bullets {
  list-style: disc;
  margin-left: 0;
  padding-left: 20px;
}

.author-name{
  font-family: Tiempos, serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 165%;
    margin-bottom: 0;
}

@media (max-width: 768px){
  .author-name{
    line-height: 150%;
  }
}

.inter-16{
  font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 165%;
    margin-bottom: 0;
}

.figure{
  font-family: Inter, sans-serif;
    font-size: 40px;
    line-height: 150%;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 1;
}

.figures-container{
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 30px;
}

.mb-44{
  margin-bottom: 44px;
}

.accordion{
  transition: 0.4s;
  cursor: pointer;
}
.panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.authors-container-impact .arrow{
  transform: rotate(270deg);
}

.active-panel .accordion-content .profile-mini .authors-container-impact .arrow{
  transform: rotate(0deg);
}
.data-wrapper-wrapper{
  padding: 30px;
  background-color: #f0f0f0;
}

@media (max-width: 576px){
  .author-photo-impact{
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
  }

  .author-info{
    margin-left: 20px;
    margin-top: 0px;
  }

  .hide-mobile{
    display: none;
  }

  .mt-10{
    margin-top: 10px;
  }

  .figures-container{
    display: grid;
    grid-template-columns: auto;
    row-gap: 30px;
  }

  .mb-44{
    margin-bottom: 30px;
  }

  .data-wrapper-wrapper{
    padding: 20px;
  }
}

.banner-visible{
  opacity: 0;
  transition: opacity 1s;
}

@media (max-width: 1060px){

  .sidebar{
    background-color: #ffffff;
  }
}

@media (max-width: 1024px){
  .banner-visible{
    opacity: 1;
    background-color: #ffffff;
  }
}

.hide-desk{
  display: none;
}

@media (max-width: 576px){
  .hide-desk{
    display: block;
  }
}

.bg-light-grey {
  background-color: #E7E6F0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 210px 20px 280px 20px;
}

@media (max-width: 768px){
  .bg-light-grey {
    padding: 100px 20px 130px 20px;
  }
}


@media (max-width: 768px) {
  h2 {
    font-size: 24px;
    line-height: 120%;
  }
}

h3 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 150%;
  color: #000000;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  h4 {
    font-size: 20px;
  }
}

p {
  font-family: Tiempos, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 20px;
  opacity: 0.95;
}


a {
  font-family: Tiempos, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  /* text-decoration: underline; */
}

/* @media (max-width: 576px) {
  a {
    font-size: 16px;
  }
} */

a:hover {
  color: #000000;
}



.bg-light-grey {
  background-color: #E7E6F0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 210px 20px 280px 20px;
}

@media (max-width: 576px){
  .bg-light-grey {
    padding: 100px 20px 58px 20px;
  }
}

.container {
  width: 100%;
  margin-top: 0 !important;
  /* padding: 0 175px; */
  max-width: 1370px;
  margin: 0 auto;
}


@media (max-width: 1490px){
  .container{
    padding: 0 20px;
  }
}

@media (max-width: 600px){
  .container {
    padding: 0 10px;
  }
}



.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

ul {
  list-style: none;
}


/* Share mobile menu */

.share-cta-mobile {
display: none;
visibility: hidden;
opacity: 0;
z-index: -1;
width: 100%;
height: 100%;
}

.share-cta-mobile.active {
opacity: 1;
z-index: 100;
visibility: visible;
display: block;
}


.share-cta-mobile.active .share-menu-mobile {
opacity: 1;
z-index: 101;
visibility: visible;
position: fixed;
left:0;
bottom:0;
right:0;
height: 300px;
background: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
/* height: calc(100vh - 600px);  */
transition: all 400s ease;
}

@media (max-width: 992px) {
.share-cta-mobile.active .share-menu-mobile{
  transform: translateY(0);
}
}

.share-cta-mobile .bg-overlay {
position: fixed;
background: rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
transition: all 300ms ease;
}
.share-cta-mobile.active .bg-overlay {
opacity: 1;
visibility: visible;
height: 100%;
}


.share-cta-mobile.active .share-mobile-list {
position: fixed;
left:0;
right: 0;
bottom: 0;
overflow-y: scroll;
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
/* height: calc(100vh - 600px); */
} 

.share-cta-mobile.active .share-mobile-list ul {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}

.share-cta-mobile.active .share-mobile-list ul li a {
text-decoration: none;
cursor: pointer;
color: var(--ow-primary-black, #000);
font-family: Inter,serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 135%;
display: block;
width: 100%;
}
.share-cta-mobile.active .share-mobile-list ul li {
padding: 15px 20px;
}
.share-cta-mobile.active .share-mobile-list ul li:hover {
background-color: rgba(153, 153, 153, 0.10);
}

.share-cta-mobile.active .share-mobile-list ul li.share-mobile-title:hover{
background-color: #FFFFFF !important;
}

.share-cta-mobile.active .share-mobile-list ul li.share-mobile-title{
border-bottom: 1px solid #E6E6E6;
}
.share-cta-mobile.active .share-mobile-list ul li.share-mobile-title a{
font-weight: 600 !important;
}

.mb-0{
  margin-bottom: 0px;
}

.mb-50{
  margin-bottom: 50px;
}

.about-title, .related{
  font-size: 26px;
  font-weight: 600;
  line-height: 150%;
}

.ra-grid-item a h4{
  font-size: 26px;
  font-weight: 600;
  line-height: 150%;
}
.author-info p{
  line-height: 150%;
  opacity: 1;
  }

@media (max-width: 576px){
  .about-title, .related{
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
  }
  .ra-grid-item a h4{
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
  }
  .author-info p{
    line-height: 120%;
    }
}

.mb-20{
  margin-bottom: 20px;
}
.data-wrapper-wrapper p {
  line-height: 150%;
}


.close-btn-wrap{
  display: flex;
  width: 100%;
  justify-content: end;
}

.close-btn-wrap img {
  margin-right: 20px;
    margin-top: 20px;
    width: 16px;
    height: 16px;
    margin-bottom: 20px;
}

.black-op{
  opacity: 1;
}

.impact-desk{
  display: block;
}

.impact-mobile{
  display: none;
}

.table-circles-desk{
  display: block;
}

.table-circles-mobile{
  display: none;
}

@media (max-width: 530px){
  .impact-desk{
    display: none;
  }
  .impact-mobile{
    display: block;
  }
  .table-circles-desk{
    display: none;
  }
  .table-circles-mobile{
    display: block;
  }
}

.sup-link {
  font-family: Tiempos, serif!important;
  font-style: normal!important;
  font-weight: 400!important;
  font-size: 12px!important;
  line-height: 27px!important;
  color: #000000!important;
  margin-bottom: 20px!important;
  cursor: pointer!important;
  text-decoration: none!important;
}

.appendix-sup-note {
  font-family: Tiempos, serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16%;
  opacity: 1;
  margin: 0;
  margin-bottom: 10px;
}

.dot-li{
  list-style: disc;
  padding-left: 20px;
}

.right-citations .owf-li li a{
  word-break: break-all;
}

.logo-logo{
  height: 74%!important;
}
@media (max-width: 530px){
  .appendix-container-exhibit{
    position: relative;
      width: 100%;
      overflow: scroll;
      margin: 0;
      padding: 0;
  }
  .appendix-container-image{
    overflow-x: scroll;
      white-space: nowrap;
      margin: 0;
      display: flex;
      width: 200%;
  }
  .appendix-container-exhibit .appendix-container-image img{
    width: 800px;
      height: auto;
      display: inline-block;
      margin: 0;
      padding: 0;
      color: white;
      overflow: scroll;
  }
}

.sup-note{
  font-family: Inter, serif!important;
    font-style: normal!important;
    font-weight: 400!important;
    font-size: 10px!important;
    color: #666666!important;
    margin-top: 10px!important;
    margin-bottom: 0px;
    cursor: pointer;
}

.mb-15-li li{
  margin-bottom: 15px;
}