.button1 {
  cursor: pointer;
  color: #fff;
  font-size: 15px;
}
.button1:hover {
  color: #f8a618;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup2 {
  margin: 70px auto;
  /*background: #fff;*/

  border-radius: 5px;
  width: 80%;
  position: relative;
}
.popup2 .close {
  position: absolute;
  top: 20px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  z-index: 99999;
}
.popup2 .close:hover {
  color: #06D85F;
}
.popup2 .content {
  overflow: auto;
}
.popup2 .content .container {
  background: #fff;
}
 @media only screen and (max-width:967px) {
.button1 {
  display: none;
}
.popup2 {
  display: none;
}
}
 @media screen and (max-width: 700px) {
.box1 {
  width: 70%;
}
.popup2 {
  width: 70%;
}
}
