* {
  list-style: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 0;
  font-family: 'Montserrat', sans-serif;
}

/*      Header      */

.menu {
  height: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}

.menu-items {
  display: flex;
  margin-right: 30px;
  font-size: 16px;
}

.subMenu-items {
  display: none;
  position: absolute;
  background-color: white;
  padding-top: 21px;
  border-radius: 3px;
  text-align: left;
  z-index: 10;
}

.menu-items li:hover > ul {
  display: block;
}

.margin-rigth {
  margin-right: 10px;
}

.menu-items li a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 7px 10px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1000;
}
.menu-items li {
  transition: .4s;
}

.subMenu-items li a {
  padding: 5px 5px;
  margin: 0px;
  margin-bottom: 10px;
}

.menu-items li:hover, li.active {
  background-color: rgba(0, 0, 0, .3);
  border-radius: 2px;
  transition: .4s;
}

.nav-logo {
  margin: 0 40px;
  width: 150px;
}

.menu-btn {
  margin-right: 30px;
  font-size: 25px;
  color: black;
  cursor: pointer;
  display: none;
}

ul.show {
  top: 49px;
  z-index: 10;
}

@media (max-width: 952px){
  .menu-items li a {
    font-size: 16px;
  }
}

@media (max-width: 1130px) {
  .menu-btn {
    display: inline-flex;
  }
  .menu-items {
    position: absolute;
    width: 100vw;
    height: calc(100% - 65px);
    background: #414141;
    top: -100vh;
    text-align: center;
    transition: all .4s;
    flex-direction: column;
    z-index: 900;
  }
  .menu-items li {
    margin: 15px 0 0 0;
    line-height: 30px;
  }
  .menu-items li:hover {
    background: none;
  }
  .menu-items li a {
    font-size: 20px;
    color: #fff;
  }
  .menu-items li a:hover {
    color: cornflowerblue;
  }
  .menu {
    height: 50px;
  }
  .nav-logo {
    margin-left: 15px;
    padding-top: 5px;
    width: 115px;
  }
  .menu-items li:hover > ul {
  display: none;
  }
}

@media (max-width: 885px) and (orientation: landscape){
  .menu-items li {
    margin: 15px 0 0 0;
  }
  .menu-items {
    overflow: scroll;
    height: calc(100% - 65px);
  }
}

/*      Home      */

.welcome-container {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-background {
  background-image: url(../images/home.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
  position: relative;
}

.title {
  font-size: 27px;
  text-align: center;
  color: white;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.welcome {
  text-align: center;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 25px;
  color: white;
  font-weight: 500;
}

.welcome-img {
  display: block;
  margin-top: 45px;
}

@media (min-width: 748px){
  .welcome {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}

@media (min-width: 375px){
  .title, .map-title {
    font-size: 30px;
  }

  .welcome {
    font-size: 17px;
  }
}

@media (min-width: 575px){
  .title {
    font-size: 32px;
  }

  .welcome {
    font-size: 18px;
  }
}

@media (min-width: 870px){
  .title{
    font-size: 35px;
  }

  .welcome {
    font-size: 20px;
  }
}

@media (min-width: 1020px){
  .welcome {
    width: 60%;
  }
}

/*      Footer      */

footer {
  background-color: lightgray;
  padding: 20px 0 10px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-item {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 5px;
}

.footer-title {
  margin-bottom: 20px;
}

.footer-img {
  width: 30px;
}

.footer-ubi {
  margin-top: 20px;
}

.copyrigth {
  margin-top: 20px;
  font-weight: 700;
  font-size: 13px;
}
