#popup {
  display: none;
  width: 55%;
  max-width: 850px;	
  background-color: white;
  position: fixed; 
  top: 45vh;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 5px;
  transition: opacity 0.5s ease-in-out;
  opacity: 0; 
  z-index: 999;
  overflow-y:scroll;
  overflow: hidden;
  margin-top: 0px;
}

#popup p {
  font-family: Helvetica,sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: .1px;
  line-height: 20pt;
  margin-bottom: 30px;
  color: black;	
}

#popup h2 {
  margin-bottom: 20px;
  margin-top: 0px;
  color: #389138;
  font-family: Helvetica,sans-serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .1px;
  line-height: 34px;
}

@media (min-width: 769px) and (max-width: 980px) { 
#popup {
  width: 80%;
  padding: 20px;
}
#popup p {
  font-size: 13px;
  margin-bottom: 20px;
}
#popup h2 {
  margin-bottom: 20px;
  margin-top: 0px;
  color: #389138;
  font-family: Helvetica,sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .1px;
  line-height: 30px;
}
}

@media (max-width: 768px) { 
#popup {
  width: 90%;
  padding: 20px;
}

#popup p {
  font-family: Helvetica,sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .1px;
  line-height: 16pt;
  margin-bottom: 20px;
  color: black;	
}

#popup h2 {
  margin-bottom: 20px;
  margin-top: 0px;
  color: #389138;
  font-family: Helvetica,sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .1px;
  line-height: 34px;
}
}

#closeBtn {
  border: 2px solid #389138;
  border-bottom-left-radius: 23px;
  border-top-right-radius: 23px;
  color: #389138;
  display: inline-block;
  font-family: Helvetica,sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.3;
  padding: 13px 22px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color .2s ease-in-out,background-color .2s ease-in-out;
  transition: color .2s ease-in-out,background-color .2s ease-in-out;
  word-break: break-word;
  background-color: white;
}

#closeBtn:hover {
  cursor: pointer;
  background-color: #389138;
  color: white;
  transition: color .2s ease-in-out,background-color .2s ease-in-out;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}



#popup.show {
  visibility: visible;
}