* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Rubik', sans-serif !important;
}

.wrapper {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: rgba(0, 87, 184, 0.89);
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 100px;
  overflow-y: scroll;
}

.logo-container, .title-container {
  position: relative;
  z-index: 15;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
}

.logo-container {
  max-width: 250px;
  margin: 90px 0;
}

.title-container {
  font-size: 24px;
  line-height: 150%;
  color: white;
  margin-bottom: 85px;
}

.maps-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}


.map-item {
  width: 150px;
  height: 220px;
  margin-right: 5%;
}
.maps-container .map-item:last-child {
  margin: 0;
}

.map-img-container {
  width: 100%;
  height: 150px;
  background-color: #AAC0DB;
  border: 1px solid white;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.map-img-container:hover {
  background-color: white;
  transition: all .3s ease-in-out;
}

.map-title {
  font-size: 16px;
  color: white;
  line-height: 42px;
  margin: 0;
}

.map-bar-container {
  width: 100%;
  height: 6px;
  border-bottom: 2px solid white;
  position: relative;
  cursor: pointer;
}


.map-bar {
  position: absolute;
  width: 60px;
  height: 150%;
  background-color: white;
  border-radius: 4px 0px;
  transition: all .5s ease;
}

.map-bar.right {
  right: 39%; 
  transform: translate(100%, 0);
  opacity: .8;
}

.opacity {
  opacity: .8;
}

@media (max-width: 1006px) {
  .maps-container .map-item:last-child {
    margin-right: 6%;
  }
}

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