.hidden {
  display: none;
}

html,
body {
  font-family: Montserrat;
  margin: 0;
  height: 100%;
  width: 100%;
}

.main-left {
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  float: left;
  display: flex;
  align-items: center;
  position: relative;
}

.content h1 {
  font-weight: 300;
  font-size: 4vw;
  margin: 0;
}
.content {
  text-align: left;
  width: 100%;
  position: absolute;
  left: 15%;
}

.content p {
  margin-left: 3px;
  font-weight: 600;
  font-size: 1.2vw;
}
.content p > span {
  padding-bottom: 1px;
  border-bottom: #8b9b90 solid 2px;
}

.content h1 > span {
  color: #8b9b90;
}
.content img {
  width: 2.5%;
  margin-right: 15px;
  margin-top: 2%;
  margin-left: 5px;
}

.bg {
  width: 50%;
  height: 100%;
  float: left;
  background-image: url(content/images/homepage_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#copyrights {
  color: #dddcda;
  text-align: left;
  width: 100%;
  position: absolute;
  left: 15%;
  bottom: -6px;
  margin-left: 3px;
  font-weight: 600;
  font-size: 0.9vw;
}

/* navigation */

.nav {
  z-index: 1;
  display: flex;
  justify-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 20px;
}
.logo img {
  width: 72px;
  margin-left: 100px;
}
.links {
  margin-right: 100px;
  margin-top: 5px;
}
.links tr td {
  padding-left: 50px;
  text-align: center;
  z-index: 2;
}
.links tr #menu {
  display: none;
}
.links a {
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.links td > span {
  position: relative;
  top: -15px;
  font-weight: 600;
  color: #fff;
  font-size: 2vw;
}

/* menu */
.menu {
  width: 100%;
  height: 100%;
  background-image: url(content/images/nav-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 1;
  margin: 0 auto;
  display: none;

  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.menu ul {
  width: 50%;
  position: absolute;
  font-size: 30px;
  font-weight: 700;
  list-style: none;
  color: #fff;
  bottom: 40%;
  text-align: center;
  left: 20%;
}
.menu li {
  padding-top: 20px;
  display: block;
}
.menu a {
  text-decoration: none;
  color: #fff;
}
.menu span {
  position: absolute;
  right: 0;
  color: #fff;
  top: 25px;
  font-weight: 600;
  font-size: 15px;
  margin-right: 100px;
  cursor: pointer;
}
.show-menu {
  display: block;
}

/* loading animation */
#anim {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  top: 20%;
}

.animation-container {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}

/* responsive */

@media (max-width: 1050px) {
  .content {
    width: 50%;
    bottom: 200px;
    left: 15%;
  }
  .content h1 {
    font-size: 6vw;
    color: #fff;
  }
  .content p {
    color: #ffffff;
    font-size: 1.6vw;
  }
  #copyrights {
    display: none;
  }
  .bg {
    /* width: 100%; */
    display: none;
  }
  .main-left {
    width: 100%;
    height: 100%;
    background-image: url(content/images/homepage_bgg.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .content h1 > span {
    color: #f7f7f7;
  }
  .content p > span {
    border-bottom: #f7f7f7 solid 2px;
  }

  .content img {
    display: none;
  }

  /* navigation */
  .links tr td {
    display: none;
  }
  .links tr #menu {
    display: block;
  }
}

@media (max-width: 800px) {
  .main-left {
    background-position: right;
    background-image: url(content/images/homepage_bg1_small.jpg);
  }
  .content {
    width: 75%;
  }
  .logo img {
    width: 50px;
    margin-left: 30px;
    margin-top: 7px;
  }
  .content p > span {
    border-bottom: #f7f7f7 solid 1.7px;
  }
  .content h1 {
    font-size: 7vw;
  }
  .content p {
    font-size: 2.5vw;
    font-weight: 500;
  }
  .links {
    margin-right: 30px;
  }
}
