@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  background-color: #eaebec;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-size: 100%;
}
nav{
  background:transparent;
  padding: 10px 40px;
}
nav ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
nav ul li{
  padding: 10px 0px 10px 0px;
  cursor: pointer;
}
nav ul li.items{
  position: relative;
  width: fit-content;
  text-align: center;
  margin-left: 2.2rem;
  order: 3;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: 0.6;
}
nav ul li a{
  color: black;
  font-size: 1rem;
  text-decoration: none;
  transition: .4s;
}
nav ul li:hover a{
    color:rgb(139, 139, 139);
}
nav ul li i{
  font-size: 25px;
}
nav ul li.btn{
  display: none;
}
nav ul li.btn.hide i:before{
  content: '\f00d';
}
@media all and (max-width: 1025px){
  nav{
    padding: 5px 30px;
  }
  nav ul li.items{
    width: 100%;
    display: none;
    margin-left: 0rem;
  }
  .logo{
    align-items: center;
    display: block;
  }
  nav ul li.items.show{
    display: block;
  }
  nav ul li.btn{
    display: block;
  }
  nav ul li:hover a{
    color:rgb(139, 139, 139);
  }
}

.containers {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    grid-gap: 2rem;
    align-items: center;
    position: relative;
}

.box1 {
    background-image: url(images/boxabout.jpg);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: darken;
    height: 86vh;
    width: 100%;
    color: rgb(255, 255, 255);
    border-radius: 1rem;
    position: relative;
    padding: 2.5rem;
    font-size: 1.75rem;
    font-family: montserrat, sans-serif;
    font-weight: 100;
    font-style: normal;
    letter-spacing: .25rem;
    text-align: left;
    text-overflow: ellipsis;
    overflow: scroll;
}

.gmap_canvas {
    height: 86vh;
    border-radius: 1rem;
    position: relative;
    display: grid;
    background-size: auto;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: darken;
}

.box3 {
  background-image: url(images/LOBBY/DSCF0622.JPG);
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.500);
  background-blend-mode: darken;
  height: 86vh;
  color: rgb(0, 0, 0);
  border-radius: 1rem;
  position: relative;
}

footer{
    margin-top: auto;
}

.footer-content {
    background-color: #eaebec;
    display: flex;
    min-width: 100%;
    position: sticky;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    letter-spacing: .3rem;
}


.socials {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.82rem 0 1.75rem 0;
}

.socials li {
    margin: 0 1.3rem;
}

.socials a{
    text-decoration: none;
    color: black;
}

.socials a i{
    font-size: 1.5rem;
    transition: 0.3s;
}

.socials a:hover i{
    color:rgb(139, 139, 139);
}