.wrap{
  height: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}

.rob-header{
  width: 100%;
  height: fit-content;
  background-color: rgba(0, 0,0, 0);
  position: absolute;
  top: -1px;
  transition: 0.2s ease-in-out;
}

.rob-header img{
  display: inline-block;
  padding: 20px;
  width: 280px;
}

.btn-want{
  text-decoration: none;
  padding: 10px 50px;
  width: fit-content;
  font-size: 20px;
  font-weight:500;
  letter-spacing: 2px;
  font-family: 'Big Shoulders Display', cursive;
  border: none;
  color: white;
  background-color: rgb(75, 75, 75);
  border-radius: 4px;
  box-shadow: inset 0 0 0 0 #4afd1d;
  transition: ease-out 0.3s;
  outline: none;
  float: right;
  margin-top: 15px;
  margin-right: 20px;
}

.btn-want:hover{
  box-shadow: inset 300px 0 0 0 #4afd1d;
  color: black;
  cursor: pointer;
}

@media screen and (max-width:1024px){}


@media screen and (max-width:768px){
  .rob-header{
    height: 70px;
  }

  .rob-header img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
  }

  .btn-want{
    width: 200px;
    height: 40px;
    font-size: 18px;
    position: fixed;
    bottom: 10%;
    left: 50%;
    margin-left: -100px;
    border-radius: 20px;
    background-color: black;
    transition: none;
  }

  .btn-want:hover{
    box-shadow: none;
    color: rgb(255, 255, 255);
  }
}