.landing {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
}

.bg {
  left: 0;
  position: absolute;
  top: 20%;
  z-index: -1;
}

.col {
  margin: 4rem 0;
  width: 50%;
}

.landing-img {
  align-items: center;
  display: flex;
  justify-content: center;
}

.landing-img img {
  max-height: 100%;
  max-width: 100%;
}

.mission h1 {
  font-family: MontyB;
  font-size: 2.5rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 75%;
  text-align: left;
  text-transform: uppercase;
}

.mission p {
  font-size: 1rem;
  padding: 1.5rem 0;
  width: 70%;
}

.mission button {
  font-size: .9rem;
}

.mission i {
  font-size: .8rem;
}

.info {
  align-items: center;
  display: flex;
  justify-content: center;
}

.info-img img {
  height: 100%;
  max-width: 100%;
}

.key {
  height: 100%;
  position: relative;
}

.key-txt {
  background-color: #1f1f22;
  padding: 3.5rem;
  width: 100%;
  box-shadow: 0px 3px 6px #00000087;
  border-radius: 38px;
}

.key-txt h2 {
  font-family: MontyB;
  font-size: 2.18rem;
  padding-bottom: 2rem;
  text-transform: uppercase;

}

.key-txt p {
  font-family: MontyL;
  font-size: .9rem;
  padding-bottom: 2rem;

}

.key-bg {
  background-color: #0d8584;
  bottom: -2.18rem;
  height: 100%;
  position: absolute;
  right: 0;
  width: 95%;
  z-index: -1;
  box-shadow: 0px 3px 6px #00000087;
  border-radius: 38px;
  opacity: 0.73;
}

.bulb {
  position: absolute;
  right: 1.875rem;
  top: 1rem;
  transform: rotate(10deg);
}

.unlock {
  align-items: center;
  background: center / cover no-repeat url("../img/blue-bg.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
  padding: 5rem;
  width: 100%;
}

.unlock h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

@media only screen and (max-width: 1500px) {
  .landing-img {
    width: 100%;
  }

  .col {
    width: 100%;
    text-align: left;

  }

  .bulb{
    right: 2rem;
    top: .75rem;
    width: 12%;
  }

  .mission h1 {
    max-width: 100%;
    margin: 0 2rem;
  }

  .mission p {
    max-width: 100%;
    width: 90%;
    margin: 0 2rem;
  }

}

@media only screen and (max-width: 992px) {
  .wrapper {
    width: 100%;
  }

  .col{
    margin: 2rem 0;
  }

  .landing-img {
    padding: 0 1rem;
  }

  .landing-img img{
    width: 100%;
  }

  .info-img {
    display: none;
  }

  .landing button{
    margin: 2rem;
  }

  .key-txt {
    min-width: 100%;
    padding: 2.5rem;
  }
  
  .key-txt p{
      font-size: 1rem;
      padding-bottom: 2rem;
  }

  .bg img {
    max-width: 100vw;
  }

  .bulb {
    position: absolute;
    right: 2rem;
    top: .75rem;
    width: 8%;
  }

  .unlock {
    width: 100%;
    text-align: center;
  }

}

@media only screen and (max-width: 600px) {

  .landing {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .unlock{
    padding: 3rem;
  }

  .bulb{
    top: 1rem;
    right: .7rem;
    width: 15%;
    display: none;
  }

}

@media only screen and (max-width: 480px) {

    .bulb{
        display: none;
    }

}