/* Row 1 */
.row1 {
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  z-index: 2;
  position: relative;
  justify-content: space-between;
}
.row1 .txtBlock {
  /*width: 50%;*/
  display: flex;
  align-items: center;
}
.row1 .cardBlock {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.row1 .cardBlock .mapBox .mapPopOver {
  position: absolute;
  z-index: 10;
  border-radius: var(--unit_x8);
  background-color: var(--col_pd80);
  width: var(--unit_x230);
  height: var(--unit_x222);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-box-shadow: 0px 0px 15px 0px #000000;
  box-shadow: 0px 0px 15px 0px #000000;
  display: none;
  overflow: hidden;
}
.row1 .cardBlock .mapBox .mapPopOver .img {
  height: 50%;
  background-size: cover;
  background-position: center;
}
.row1 .cardBlock .mapBox .mapPopOver .data {
  height: 50%;
  display: flex;
  text-align: left;
  padding: var(--unit_x17);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.row1 .cardBlock .mapBox .mapPopOver .data .locLnk {
  display: flex;
  text-decoration: underline;
}
.row1 .cardBlock .mapBox .mapPopOver .data .locLnk svg {
  margin-right: var(--unit_x5);
}
.row1 .cardBlock .mapBox {
  height: var(--unit_x468);
  width: var(--unit_x632);
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
.row1 .cardBlock #map {
  height: 100%;
  border-radius: var(--unit_x8);
  width: calc(100%  - var(--unit_x20));
  border-radius: var(--unit_x8);
  overflow: hidden;
}
.row1 .cardBlock .mapBox .streeringBox {
  background-color: #BFB8AF;
  border-radius: var(--unit_x40);
  width: var(--unit_x40);
  height: var(--unit_x80);
  position: absolute;
  z-index: 2;
  left: 0;
  display: flex;
  color: var(--col_pl10);
  background-color: var(--col_pr60);
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
.row1 .cardBlock .mapBox .streeringBox svg {
  cursor:pointer;
  width: var(--unit_x20);;
}
.row1 .txtBlock .head {
  margin-bottom: var(--unit_x7);
}
.row1 .txtBlock .subhead {
  margin-bottom: var(--unit_x7);
}
.row1 .txtBlock .body p {
  margin-bottom: var(--unit_x15);
}

@media only screen and (max-width: 768px) {
  .row1 {
    flex-direction: column;
    justify-content: center;
  }
  .row1 .txtBlock {
    text-align: center;
    margin: calc(var(--unit_x112)*-1) auto 0px auto !important;
  }
  .row1 .cardBlock {
    display: none;
    width: 100% !important;
    height: 300px;
    margin-left: 0 !important;
    text-align: center;
    overflow-x: hidden;
    margin: var(--unit_x35) auto 0px auto;
  }
  .row1 .mapBox {
    width: calc(100% - var(--unit_x20)) !important;
    height: 100% !important;
    margin-left: 0 !important;
    text-align: center;
    overflow-x: hidden;
    margin: var(--unit_x35) auto 0px auto;
  }
  .row1 .cardBlock img {
    width: 100%;
  }
  .row1 .button {
    margin: 0px auto;
  }
}

/* Location Row(s) */
.locationRow {
  z-index: 2;
  position: relative;
  text-align: center;
  display: flex;
  align-content: center;
  align-items: center;
}
.locationRow .elm .floatingName {
  font-family: 'Good Times';
  font-size: var(--unit_x88);
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  -webkit-text-stroke: 1px var(--col_pl20);
  text-stroke: 1px var(--col_pl20);
  white-space: nowrap;

  -webkit-transition: margin-left 0.1s linear;
  -moz-transition: margin-left 0.1s linear;
  -ms-transition: margin-left 0.1s linear;
  -o-transition: margin-left 0.1s linear;
  transition: margin-left 0.1s linear;
}
.locationRow .elm {
  width: 100%;
  position: relative;
}
.locationRow .elm .locationImg {
  width: 50%;
  position: absolute;
  bottom: 26.5%;
  display: flex;
  border-radius: var(--unit_x8);
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.locationRow .elm .locationImg img {
  height: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.locationRow .elm .locationImg img:hover {
  transform: rotate(1deg) scale(1.05) !important;
}
.locationRow .elm .locationImg.right {
  right: 0px;
}

.locationRow .infoBox {
  text-align: left;
  width: var(--unit_x253);
  height: var(--unit_x253);
  padding: var(--unit_x17);
  position: absolute;
  bottom: 0px;
  left: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.locationRow .infoBox > div:nth-child(1) {
  height: 70%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.locationRow .infoBox .toLocationPageLnkBox .info {
  display: flex;
  align-items: center;
  text-decoration: underline;
  color: var(--col_pl10);
}
.locationRow .infoBox .toLocationPageLnkBox .info > svg {
  width: var(--unit_x20);
  margin-right: var(--unit_x6);
}

@media only screen and (max-width: 768px) {
  .mainContent {
    padding-bottom: var(--unit_x86) !important;
  }
  .locationRow .elm .locationImg {
    width: 110%;
    height: 250px;
    bottom: auto;
    top: 0px;
    right: -5% !important;
    /*align-items: flex-start;*/
  }
  .locationRow {
    height: auto  !important;
    min-height: 0px !important;
    padding-top: 0px !important;
    margin-bottom: var(--unit_x160);
    align-items: flex-start;
  }
  .locationRow:last-of-type {
    margin-bottom: 0 !important;
  }
  .locationRow .infoBox {
    left: 10%;
    width: 80%;
    margin-left: 0px !important;
  }
  .floatingName {
    display: none;
  }
}




.nav_scrollElm {
  display: block;
  z-index: 3;
}
@media (max-height:720px) and (min-width:998px) {
  .row1 .cardBlock {
    width: 50%;
  }
  .nav_scrollElm {
    display: none;
  }
}





.horizontalScrollIndikator {
  position: fixed;
  left: 0px;
  height: var(--unit_x85);
  bottom: 0px;
  width: 100%;
  z-index: 0;
  display: none;
  /*bottom: var(--unit_x50);*/
}

.horizontalScrollIndikator .inner {
  position: fixed;
  left: 0px;
  height: var(--unit_x68);
  bottom: 50px;
  width: 100%;
  z-index: 0;
}

.horizontalScrollIndikator .entryLine {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  letter-spacing: var(--unit_x5);
  text-transform: uppercase;
  font-size: var(--unit_x10);
  color: var(--col_pd60);
  margin-left: 50%;
  white-space: nowrap;

  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.horizontalScrollIndikator .entryLine .elm {
  cursor: pointer;
  margin-right: var(--unit_x45);
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.horizontalScrollIndikator .entryLine .elm:last-child {
  margin-right: 0;
}
.horizontalScrollIndikator .entryLine .elm.active {
  color: var(--col_pr60);
}
.horizontalScrollIndikator .middleElm {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: var(--unit_x44);
  font-size: var(--unit_x14);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.horizontalScrollIndikator .middleElm .up {
  opacity: 0;
  cursor: pointer;
}
.horizontalScrollIndikator .middleElm .down {
  cursor: pointer;
}
.horizontalScrollIndikator .middleElm .pos {
  font-size: var(--unit_x14);
  font-weight: bold;
}


#osm {
  font-size: 0.7em;
  font-style: italic;
  margin-bottom: 20px;
}

.grayscale {
  filter: grayScale(1);
}
