* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.lp-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 80px;
  z-index: 50;
}
.lp-logo img {
  width: 100%;
}

.navigation {
  position: absolute;
  max-width: 130px;
  padding: 10px 0;
  right: 10px;
  bottom: 10px;
  width: 100%;
  z-index: 50;
}
.navigation .none {
  display: none !important;
}
.navigation .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.navigation .grid-3 .grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  position: absolute;
  bottom: 20px;
  left: 10%;
  max-width: 300px;
  width: 100%;
  z-index: 50;
  background-color: #fff;
  border: 1px solid #233562;
}
.menu .down-arrow {
  position: absolute;
  right: 10px;
}
.menu .down-arrow.open {
  transform: rotate(180deg);
}
.menu .menu-title {
  font-size: 25px;
  padding: 5px 10px;
  background-color: #233562;
  color: #fff;
}
.menu .menu-title:hover {
  cursor: pointer;
}
.menu .menu-items {
  height: 400px;
  position: relative;
  overflow: auto;
  margin: 0;
  padding: 0;
  display: none;
}
.menu .menu-items li {
  position: relative;
  list-style: none;
  font-size: 18px;
  padding: 5px 10px;
}

.map-buttons {
  position: absolute;
  display: flex;
  top: 10px;
  right: 20px;
  z-index: 1;
}
.map-buttons .nav-btn {
  margin: 10px;
}

.nav-btn {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #233562;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.nav-btn i {
  color: #fff;
}
.nav-btn i:hover {
  color: #555;
  cursor: pointer;
}

#map-container {
  position: relative;
  margin: 0;
  height: 100vh;
  width: 100%;
}
#map-container #map-wrap {
  position: relative;
  text-align: center;
  height: 100%;
}
#map-container #map-wrap img {
  position: absolute;
  width: auto;
  height: 100%;
  width: 100%;
  top: 0;
  left: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateX(-50%);
}
#map-container #map-wrap svg {
  position: relative;
  height: 100%;
  width: 100%;
}
#map-container #map-wrap svg image {
  display: none;
}
#map-container .owl-carousel {
  position: relative;
  margin: auto;
  width: 100%;
}
#map-container .owl-carousel .owl-item {
  position: relative;
  display: block;
  float: left;
  height: 100%;
}
#map-container .owl-carousel .owl-item .video-wrap {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#map-container .owl-carousel .owl-item .video-wrap video {
  width: 80%;
}
#map-container .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
#map-container .owl-carousel .owl-nav button {
  background: none;
  border: none;
}
#map-container .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 10px;
}
#map-container .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 10px;
}
#map-container .owl-carousel .owl-nav .arrows:hover i {
  color: #233562;
  cursor: pointer;
}
#map-container .owl-carousel .owl-nav .arrows i {
  font-size: 30px;
  color: #fff;
}
#map-container .owl-carousel .owl-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}
#map-container .owl-carousel .owl-dots .owl-dot {
  background-color: #D6D6D6;
  width: 10px;
  height: 10px;
  border: 0;
  margin: 5px;
  border-radius: 50%;
  padding: 0;
}
#map-container .owl-carousel .disabled {
  display: none;
}

.tab-content {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.tab-content .area-title {
  position: absolute;
  top: 40px;
  font-size: 60px;
  color: #fff;
  z-index: 10;
  margin: 0;
  text-shadow: 0 0 5px #000;
}

.tab-content.active {
  display: inherit;
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.content-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  position: relative;
  max-width: 100%;
  min-height: 100vh;
  width: 100%;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 20px;
  overflow: auto;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
}

.tabs:hover, .close {
  cursor: pointer;
}

.img-wrap {
  width: 100%;
  height: 100%;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
  overflow: hidden;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 10px;
  overflow: hidden;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.st1 {
  fill: #fff;
}

.st0 {
  fill: #233562;
  stroke-miterlimit: 10;
  stroke: #fff;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .lp-logo {
    top: 10px;
    left: 50%;
    max-width: 50px;
    z-index: 50;
    transform: translateX(-50%);
  }
  .menu {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    z-index: 50;
  }
  .map-buttons {
    display: block;
    top: 10px;
    right: 0;
  }
  .tab-content .area-title {
    top: 90px;
    font-size: 40px;
  }
  .navigation {
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
  }
  .navigation .grid-3 {
    display: grid;
    grid-template-columns: auto auto auto;
  }
}/*# sourceMappingURL=styles.css.map */