* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Kalam";
  box-sizing: border-box;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  z-index: 100;
  padding: 20px 100px;
}
header .logo {
  position: relative;
  font-weight: 700;
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.6s;
}
header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  position: relative;
  list-style: none;
}
header ul li a {
  position: relative;
  margin: 0 15px;
  letter-spacing: 2px;
  font-weight: 500;
}
header a {
  color: #eee;
  text-decoration: none;
}
header.sticky {
  padding: 5px 100px;
  background-color: #333;
}
header .hamberger {
  display: block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background: none;
}
header .hamberger .bar, header .hamberger:after, header .hamberger:before {
  content: "";
  position: relative;
  display: block;
  margin: 5px 0;
  height: 3px;
  border-radius: 1px;
  width: 100%;
  background-color: #eee;
  transition: 0.4s;
}
header .hamberger.is-active:before {
  transform: rotate(-45deg) translate(-4px, 3px);
}
header .hamberger.is-active:after {
  transform: rotate(45deg) translate(-9px, -8px);
}
header .hamberger.is-active .bar {
  opacity: 0;
}
@media (max-width: 700px) {
  header ul#main-menu {
    display: none;
  }
}
@media (min-width: 701px) {
  header .mobile-nav {
    display: none;
  }
  header .hamberger {
    display: none;
  }
}
@media (max-width: 501px) {
  header .logo span.hidesm {
    display: none;
  }
}

@media (max-width: 800px) {
  header {
    padding: 20px 20px;
  }
  header.sticky {
    padding: 5px 20px;
  }
}
.mobile-nav {
  z-index: 9;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: block;
  padding-top: 120px;
  background-color: #333;
  transition: 0.4s;
}
.mobile-nav a {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  background-color: #444;
  color: #eee;
  text-decoration: none;
}
.mobile-nav a:hover {
  background-color: #555;
  color: #f5f5f5;
}
.mobile-nav.is-active {
  left: 0;
}

body {
  background-color: #eee;
  max-width: 100vw;
  overflow-x: hidden;
}

section {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
}

.container {
  color: #eee;
  text-align: center;
  position: relative;
}

#contact {
  background-image: url("/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
#contact .bg {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0.8;
}
#contact h1 {
  font-size: 5rem;
  text-transform: uppercase;
  z-index: 1;
}
#contact .sm a {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #333;
  color: #ddd;
  font-size: 2.8rem;
  border-radius: 50%;
  margin: 0 10px;
  line-height: 80px;
  opacity: 0.7;
  transition: 0.3s linear;
  z-index: 1;
}
#contact .sm a i {
  line-height: inherit;
}
#contact .sm a:hover {
  transform: scale(1.1);
  opacity: 1;
  color: #eee;
}
@media (max-width: 1200px) {
  #contact h1 {
    font-size: 4rem;
  }
}
@media (max-width: 800px) {
  #contact h1 {
    font-size: 3rem;
  }
  #contact .sm a {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    line-height: 70px;
  }
}
@media (max-width: 600px) {
  #contact h1 {
    font-size: 2.5rem;
  }
  #contact .sm a {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    line-height: 60px;
  }
}

#webcam {
  position: relitive;
  background-color: #ccc;
}
#webcam .towercam img {
  max-width: 100%;
  max-height: 99vh;
}/*# sourceMappingURL=style.css.map */