/*Html*/
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: rgb(244, 248, 251);
}

section {
  padding-top: 3%;
  padding-bottom: 3%;
}

#contact-section {
  background-color: white;
}

/*
h1,
h2 {
  margin-bottom: 5%;
  color: rgb(0, 103, 206);
}
*/

.btn-primary {
  background-color: rgb(0, 103, 206);
}

/*Navbar*/
.navbar {
  border-bottom: 0.5px solid #888888;
}

#logo>img {
  height: 55px;
  margin-left: 10px;
  margin-right: 25px;
}

#menu {
  margin-left: 30px;
  font-size: 16px !important;
}

#menu li {
  padding: 5px;
}

#menu li:hover {
  color: #508236;
}

#menu li.active {
  box-shadow: inset 0 -1px #327CDD;
}

#lang-select-pc {
  margin-left: 3%;
  margin-right: 3%;
}

.dropdown-menu {
  min-width: 100px !important;
  left: 50%;
  right: auto;
  text-align: center;
  transform: translate(-50%, 0);
}

#lang-select-pc .dropdown-toggle::after {
  content: none;
}

#lang-select-mobile {
  margin-top: 25px !important;
}

/*Main Body*/
.main {
  margin-top: 70px;
}

/*Footer*/
footer #map-section {
  margin-bottom: 0px;
}

footer #contact-method-section {
  padding: 3% 0%;
  background-color: rgb(0, 103, 206);
  margin-bottom: 0px;
  margin-top: 0px;

}

footer .qrcode,
#qrcode_label {
  width: 7.5vw;
  min-width: 100px;
}

footer .email-link {
  color: white;
  text-decoration: underline;
}

footer .email-link:hover {
  color: rgb(200, 200, 200);
  background-color: transparent;
}

.input-icons i {
  position: absolute;
}

.input-icons {
  width: 100%;
  margin-bottom: 10px;
}

.icon {
  padding: 10px;
  width: 50px;
  height: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: rgb(87, 112, 252);
}

.input-field {
  width: 100%;
  padding: 10px;
  padding-left: 45px;
}

/*Social Media Icon*/
.fa-brands {
  padding-top: 10px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 20px 5px 0px;
  border-radius: 50%;
  color: white;
}

.fa-brands:hover {
  opacity: 0.7;
  color: white;
}

.fa-facebook-f {
  background: #3B5998;
}

.fa-instagram {
  background: #F70095;
}

.fa-twitter {
  background: #55ACEE;
}

/*Responsive design on mobile devices*/
@media (max-width: 992px) {

  #logo {
    border-right: 0px;
  }

  .navbar-collapse {
    position: fixed;
    top: 70px;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    width: 200px;
    height: 100%;
  }

  .navbar-collapse.collapsing {
    right: -200px;
    transition: height 0s ease;
  }

  .navbar-collapse.show {
    right: 0;
    transition: right 300ms ease-in-out;
  }

  .navbar-toggler {
    border: 0px
  }

  .navbar-toggler.collapsed~.navbar-collapse {
    transition: right 500ms ease-in-out;
  }

  #navbarCollapse {
    border: 0.5px gray;
  }

  #menu {
    margin-left: 0px;
    font-size: 20px;
  }

  #lang-btn {
    margin-top: 50px !important;
  }

  #download-btn {
    font-size: 18px;
  }

}

/*Downsize Logo Image on mobile devices with width < 420px*/
@media screen and (max-width: 420px) {
  #logo>img {
    height: 50px;
    width: auto;
  }

  .main {
    margin-top: 65px;
  }

  .navbar-collapse {
    top: 65px
  }
}