@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
body, input {
  font-family: "Poppins";
}

.home-sec {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4470588235);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  z-index: 2;
  width: 100%;
  height: 100vh;
  transition: height 0.3s ease;
  font-size: 14px;
  text-align: center;
  padding: 0px 5vh;
}
.home-sec h1, .home-sec p {
  margin: 0px;
}
.home-sec .home-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
.home-sec .home-content .cockpit-access-btn {
  cursor: pointer;
  border: none;
  padding: 20px 35px;
  border-radius: 1000px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
  transition: 0.1s ease;
  background-color: #357cff;
  color: #fff;
}
.home-sec .home-content .cockpit-access-btn:hover {
  transform: scale(1.1);
}
.home-sec .home-content .cockpit-access-btn span {
  font-size: 20px;
}
.home-sec .credits-p {
  margin-bottom: 2vh;
  color: #515151;
}
.home-sec .credits-p a {
  color: #515151;
  text-decoration: none;
}
.home-sec .credits-p a span:first-of-type:hover {
  text-decoration: underline;
}
.home-sec .credits-p .material-symbols-outlined {
  font-size: 12px;
}

.nav-sec {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  font-size: 14px;
  margin-top: 2vh;
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-sec ul {
  display: flex;
  padding: 12px 25px;
  border-radius: 1000px;
  background-color: #fff;
  gap: 15px;
  margin: 0px;
  transition: padding 0.1s ease;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.2078431373);
}
.nav-sec ul:hover {
  padding: 12px 50px;
}
.nav-sec ul li {
  list-style: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav-sec ul li a {
  text-decoration: none;
  white-space: nowrap;
  color: #000;
  cursor: pointer;
}
.nav-sec ul li a:hover {
  text-decoration: underline;
}
.nav-sec ul li span {
  font-size: 14px;
}
.nav-sec ul .separator-box {
  display: flex;
  align-items: center;
}
.nav-sec ul .separator-box span {
  width: 1px;
  height: 10px;
  background-color: #000;
}

.data-sec {
  font-size: 14px;
  line-height: 1.7;
  color: #4e4e4e;
}
.data-sec h4, .data-sec h1, .data-sec p {
  margin: 0px;
}
.data-sec .header {
  text-align: center;
  margin: 120px 0px 70px 0px;
  background-color: #f2f7ff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 15vw;
  color: #357cff;
}
.data-sec .header a {
  color: #357cff;
}
.data-sec .header h1 {
  font-size: 22px;
  font-weight: 500;
}
.data-sec .header h1 span {
  font-size: 22px;
  vertical-align: middle;
  margin-bottom: 2.5px;
}
.data-sec .charts-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.data-sec .charts-box .chart-and-infos {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.data-sec .charts-box .chart-and-infos .infos-box {
  padding: 0px 15vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.data-sec .charts-box .chart-and-infos .infos-box h4 {
  font-size: 18px;
  font-weight: 500;
}
.data-sec .charts-box .chart-and-infos .chart-box {
  padding: 0px 15vw;
  background-color: #f2f7ff;
  margin-bottom: 20px;
}
.data-sec .charts-box .chart-and-infos .chart-box#type-count-chart-box {
  padding: 0px 12vw;
}
.data-sec .charts-box .chart-and-infos .chart-box .chart {
  width: 100%;
  height: auto;
  max-width: 100vw;
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  min-height: 100vh;
}

.material-symbols-outlined {
  cursor: pointer;
}

.cockpit-sec {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #5a5a60;
}
.cockpit-sec .screen {
  height: 100vh;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  overflow: hidden;
}
.cockpit-sec .screen .top {
  height: 25px;
  background-color: #5e5e64;
  flex-shrink: 0;
}
.cockpit-sec .screen .windshield {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.cockpit-sec .screen .windshield .windshield-landscape {
  width: 100%;
  height: 100%;
  background-image: url("../images/illustrations/rails_landscape_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cockpit-sec .screen .windshield .windshield-landscape .windshield-content-sub-box {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2980392157);
}
.cockpit-sec .screen .windshield .windshield-landscape .windshield-content-sub-box .windshield-content-box {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}
.cockpit-sec .screen .sides-box {
  position: absolute;
  pointer-events: none;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.cockpit-sec .screen .sides-box .side-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.cockpit-sec .screen .sides-box .side-box:last-child {
  justify-content: end;
}
.cockpit-sec .screen .sides-box .side-box .slide-extra {
  width: 1vw;
  min-width: 10px;
  background-color: #5e5e64;
}
.cockpit-sec .screen .sides-box .side-box .side-svg {
  display: block;
  fill: #5e5e64;
  margin: -0.4px;
}
.cockpit-sec .screen .dashb-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cockpit-sec .screen .dashb-box .minimap-sub-box {
  width: 38%;
  height: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cockpit-sec .screen .dashb-box .minimap-sub-box .minimap-box {
  width: clamp(130px, 40%, 9999px);
  position: absolute;
  background-color: #5e5e64;
  transform: translateX(-50%);
  left: 50%;
  bottom: 50%;
  border-radius: 10px;
  padding: 15px;
}
.cockpit-sec .screen .dashb-box .minimap-sub-box .minimap-box .minimap {
  overflow: hidden;
  cursor: pointer;
  background-color: #0072d6;
  padding: 9%;
  border-radius: 10px;
}
.cockpit-sec .screen .dashb-box .minimap-sub-box .minimap-box .minimap-wrapped {
  aspect-ratio: 2/1.1;
}
.cockpit-sec .screen .dashb-box .minimap-sub-box .minimap-box .selector-map-icon {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  cursor: pointer;
  color: #fff;
  font-size: 50px;
  background-color: rgba(0, 0, 0, 0.295);
  border-radius: 1000px;
  padding: 7%;
}
.cockpit-sec .screen .dashb-box .dash-right {
  height: 65%;
  width: 50vw;
  background-color: #878791;
  position: absolute;
  bottom: 0;
  right: 0;
}
.cockpit-sec .screen .dashb-box svg {
  width: 25%;
  min-width: 200px;
  z-index: 1;
}
.cockpit-sec .screen .dashb-box svg .cls-1 {
  fill: #c43d3d;
}
.cockpit-sec .screen .dashb-box svg .cls-2 {
  fill: #ccccd6;
}
.cockpit-sec .screen .dashb-box svg .cls-3 {
  fill: #49494f;
}
.cockpit-sec .screen .dashb-box svg .cls-4 {
  fill: #aaaab2;
}
.cockpit-sec .screen .dashb-box svg .cls-5 {
  fill: #49494f;
}
.cockpit-sec .screen .dashb-box svg .cls-6 {
  fill: #406dbf;
}
.cockpit-sec .screen .dashb-back {
  min-height: clamp(76px, 9.5vw, 9999px);
  background-color: #5e5e64;
}
.cockpit-sec .extra-cockpit-height {
  background-color: #878791;
  min-height: clamp(0px, (750px - 100vw) * 0.3, 100px);
}

input {
  background-color: transparent;
  border: none;
}
input:focus {
  border: none;
  outline: none;
}

button {
  border: none;
  cursor: pointer;
}

.map-sub-box {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2980392157);
}
.map-sub-box .map-box {
  position: relative;
  width: clamp(370px, 50%, 9999px);
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 10px;
}
.map-sub-box .map-box #map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.map-sub-box .map-box #map .leaflet-popup button {
  width: 100%;
  background-color: #ff9641;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.map-sub-box .map-box #map .marker-cluster {
  background-color: #ff9641;
  border: none;
  color: white;
}
.map-sub-box .map-box #map .marker-cluster div {
  font: 13px "Poppins";
}
.map-sub-box .map-box #map .marker-cluster-large div,
.map-sub-box .map-box #map .marker-cluster-medium div,
.map-sub-box .map-box #map .marker-cluster-small div {
  background-color: transparent;
}
.map-sub-box .map-box .map-header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 15px;
  display: flex;
  justify-content: space-between;
}
.map-sub-box .map-box .map-header .map-header-left {
  width: 77px;
}
.map-sub-box .map-box .map-header .close-map {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  width: 53px;
  height: 53px;
  color: #9898a3;
  background-color: #fcfcfc;
  margin-right: 20px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3176470588);
}
.map-sub-box .map-box .map-header .map-search-box {
  background-color: #fcfcfc;
  display: flex;
  align-items: center;
  border-radius: 1000px;
  padding: 4px 22px;
  gap: 12px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3176470588);
}
.map-sub-box .map-box .map-header .map-search-box input {
  font-size: 14px;
  padding: 12px 5px 12px 0px;
  width: 107px;
}
.map-sub-box .map-box .map-header .map-search-box input::placeholder {
  color: #9898a3;
}
.map-sub-box .map-box .map-header .map-search-box span {
  color: #9898a3;
  font-size: 21px;
}

.windshield-content-sub-box-placesmod-init {
  align-items: start !important;
  transform: scale(0.1);
  overflow-y: scroll;
}
.windshield-content-sub-box-placesmod-init.windshield-content-sub-box-placesmod-extend {
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
}

.windshield-content-box-placesmod-extend {
  border-radius: 0px !important;
  transition: border-radius 0.5s ease;
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
}

.places-box {
  padding: 65px 12vw 65px 12vw;
  gap: 40px;
  display: none;
  flex-direction: column;
}
.places-box .places-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin: 20px 0px;
}
.places-box .places-header h1 {
  font-size: 22px;
  font-weight: 500;
}
.places-box .places-header h1 span {
  color: #357cff;
}
.places-box .places-header p span {
  color: #357cff;
  font-weight: 450;
}
.places-box .places-cards-box {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.places-box .places-cards-box .chart-card {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.places-box .places-cards-box .chart-card .chart {
  background-color: #f5f5f5;
  border-radius: 10px;
}
.places-box .places-cards-box .chart-card .chart-infos {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0px 15px 15px 15px;
}
.places-box .places-cards-box .chart-card .chart-infos .chart-info-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.places-box .places-cards-box .chart-card .chart-infos .chart-info-top .chart-name {
  font-weight: bold;
  font-size: 16px;
}
.places-box .places-cards-box .chart-card .chart-infos .chart-info-top .chart-desc {
  color: #969696;
  font-size: 12px;
}
.places-box .places-cards-box .chart-card .chart-infos .chart-info-top .chart-desc span {
  vertical-align: middle;
  margin-bottom: 2.5px;
  margin-right: 7px;
}
.places-box .places-cards-box .chart-card .chart-infos .chart-footer {
  text-align: center;
  color: #357cff;
  font-weight: 450;
  margin-bottom: 10px;
  font-style: italic;
}
.places-box .places-cards-box .place-card {
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  padding: 5px;
}
.places-box .places-cards-box .place-card span {
  font-size: 14px;
}
.places-box .places-cards-box .place-card .place-top-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.places-box .places-cards-box .place-card .place-top-box .place-image {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 10px;
}
.places-box .places-cards-box .place-card .place-top-box .place-infos-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0px 15px;
}
.places-box .places-cards-box .place-card .place-top-box .place-infos-box .place-name {
  font-weight: bold;
  font-size: 16px;
}
.places-box .places-cards-box .place-card .place-top-box .place-infos-box .place-address {
  color: #969696;
  font-size: 12px;
}
.places-box .places-cards-box .place-card .place-top-box .place-infos-box .place-address span {
  vertical-align: middle;
  margin-bottom: 2.5px;
  margin-right: 7px;
}
.places-box .places-cards-box .place-card .place-links-box {
  display: flex;
  gap: 10px;
  margin: 0px 15px 15px 15px;
}
.places-box .places-cards-box .place-card .place-links-box a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  gap: 7px;
}
.places-box .places-cards-box .place-card .place-links-box a.streetview-link {
  padding: 10px;
  border-radius: 1000px;
  background-color: #357cff;
  color: #fff;
}
.places-box .places-cards-box .place-card .place-links-box a.google-link {
  margin: 10px;
  color: #357cff;
  font-weight: 450;
}
.places-box .places-cards-box .place-card .place-links-box a.google-link:hover {
  text-decoration: underline;
}
.places-box .places-cards-box .place-card .place-links-box a span {
  font-weight: bold;
}
.places-box p, .places-box h1 {
  margin: 0px;
}

.about-sec {
  font-size: 14px;
  line-height: 1.7;
  color: #4e4e4e;
}
.about-sec h4, .about-sec h1, .about-sec p {
  margin: 0px;
}
.about-sec li {
  margin-bottom: 10px;
}
.about-sec b {
  font-weight: 550;
}
.about-sec header {
  text-align: center;
  margin: 120px 0px 70px 0px;
  background-color: #f2f7ff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 15vw;
  color: #357cff;
}
.about-sec header a {
  color: #357cff;
}
.about-sec header h1 {
  font-size: 22px;
  font-weight: 500;
}
.about-sec header h1 span {
  font-size: 22px;
  vertical-align: middle;
  margin-bottom: 2.5px;
}
.about-sec .articles {
  padding: 0px 15vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-sec .articles a {
  color: #4e4e4e;
}
.about-sec .article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer {
  color: #357cff;
  font-size: 14px;
  text-align: center;
  background-color: #f2f7ff;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}
footer p {
  margin: 0px;
}
footer .site-name {
  padding: 20px 15vw 20px 15vw;
  font-weight: 450;
  background-color: #357cff;
  color: #fff;
}
footer .bottom {
  padding-bottom: 30px;
  font-size: 12px;
}
footer .bottom .credits-p {
  padding: 30px 15vw;
}
footer .bottom a {
  text-decoration: none;
  color: #357cff;
}
footer .bottom a span:first-of-type:hover {
  text-decoration: underline;
}
footer .bottom a .material-symbols-outlined {
  font-size: 14px;
}

.story-box {
  width: 340px;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  padding: clamp(25px, 5%, 200px);
  gap: 20px;
  text-align: center;
  border-radius: 10px;
}
.story-box p {
  margin: 0;
}
.story-box .progress-box {
  width: 100%;
  height: 15px;
  background-color: #e0e0e0;
  border-radius: 100px;
}
.story-box .progress-box .progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  background-color: #45a3f5;
  transition: width 1s ease;
}

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