/* css for newletter popup */
#newsletter-popup{
  margin: 70px auto;
  padding: 20px 20px 20px;
  background: #f7f7f6;
  border-radius: 5px;
  width: 35%;
  position: relative;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 1366px){
  #newsletter-popup{
    width: 50%;
  }
}
@media screen and (max-width: 992px){
  #newsletter-popup{
    width: 90%;
  }
}
.newsletter-overlay{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.40);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
  display: none;
  z-index: 1;
}
#newsletter-popup .popup-close{
  color: #000;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right:0;
  left:0;
  text-align: center;
  text-decoration: none;
  line-height: 30px;
  font-family:  "Gloria Hallelujah",cursive;
  font-weight: bold;
}
/* newsletter css ends */