* {
  box-sizing: border-box;
  font: Monty;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

@font-face {
  font-family: MontyB;
  src: url("../fonts/monty-bold.otf");
}

@font-face {
  font-family: MontyL;
  src: url("../fonts/monty-light.otf");
}

@font-face {
  font-family: Monty;
  src: url("../fonts/monty-regular.otf");
}

body {
  align-items: center;
  background: #000 url(../img/background.png) no-repeat center top -90px;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: MontyL;
  justify-content: center;
  overflow-x: hidden;
}

h3 {
  font-family: MontyB;
}

.wrapper {
  width: 1400px;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  padding: 1rem 0;
}

ul {
  display: flex;
  justify-content: flex-end;
}

ul li {
  font-family: Monty;
  list-style-type: none;
  margin: 1.5rem;
  text-transform: lowercase;
}

ul li a {
  border-radius: .5rem;
  border: 1px transparent solid;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 0.5rem;
}


ul li a:hover {
  border: 1px #137B77 solid;
  border-radius: .5rem;
  color: #137B77;
}

.logo img {
  width: 110%;
}

img {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-zoom: none;
  user-select: none;
}

button {
  background-color: #15a59e;
  border-radius: 15px;
  color: #fff;
  font-family: Monty;
  font-size: 1.25rem;
  margin: 1rem 0;
  padding: 1rem 1.8rem;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
}

a {
  text-decoration: none;
}

i {
  font-size: 1rem;
  margin: 0 8px;
}

button:hover {
  background-color: #1F1F22;
  border: 1px solid #15a59e;

}

footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  width: 1400px;
  font-size: .75rem;
}


@media only screen and (min-width: 1921px) {
  html {
    font-size: 20px;
  }

  .wrapper,
  footer {
    width: 80%;
  }

  .landing-img img {
    width: 80%;
  }

  .info-img img {
    width: 80%;
  }

  .logo img {
    width: 8.625rem;
  }
}

@media only screen and (max-width: 1500px) {
  html {
    font-size: 14px;
  }

  .wrapper,
  footer {
    width: 90%;
  }

  .logo img{
    max-width: 100%;
  }

  .landing-img img {
    width: 80%;
  }

  .info-img img {
    width: 80%;
  }

  button {
    margin: 0 2rem;
  }
}

@media only screen and (max-width: 992px) {

  body,
  html {
    overflow-x: hidden;
  }

  body {
    width: 100%;
  }

  .wrapper {
    width: 100%;
  }

  button {
    margin: 0 1rem;
    font-size: 1rem;
  }

  .logo{
    margin-left: 1rem;
  }

}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
}

#hamburger-icon div {
  width: 35px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: .4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 57px;
  left: 0;
  height: calc(60vh - 50px);
  width: 100%;
  background-color: rgba(20, 20, 23, .99);
  z-index: 15;
}


@media only screen and (max-width: 600px) {
  header {
    padding: 1rem;
    align-items: center;
    background-color: rgba(20, 20, 23, .9);
    min-width: 100vw;
    
  }

  header img{
    margin-top: 7px;
  }

  header nav {
    display: none;
  }

  #hamburger-icon {
    display: block;

  }

}

.hidden {
  opacity: 0;
  filter: blur(3px);
  transition: all .7s;
  transition-timing-function: ease-out;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}