.home-bg{ width:100%; float:left; height:300px; margin-bottom:40px; } 
.home-search{ width:800px; margin:100px auto; z-index:999px;;}


.search {
  width: 800px;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid #00B4CC;
  border-right: none;
  padding: 5px;
  height: 55px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  width: 40px;
  height: 55px;
  border: 1px solid #00B4CC;
  background: #00B4CC;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 800px) 
{
.search {
width: 90%;
position: relative;
display: flex;
}
.home-bg{ width:100%; float:left; height:100px; margin-bottom:40px; } 
.home-search{ width:90%; margin:20px auto; z-index:999px;;}

}
