  #newsletter-popup{
    margin: 70px auto;
    padding:30px 40px 40px;
    background: #061f2f;
    border-radius: 5px;
    width: 40%;
    position: relative;
    transition: all 5s ease-in-out;
    text-align: center;
  }
  
  @media screen and (max-width: 1366px){
    #newsletter-popup{
      width: 40%;
    }
  }
  
  @media screen and (max-width: 992px){
    #newsletter-popup{
      width: 70%;
    }
  }
  
  .newsletter-overlay{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  
  #newsletter-popup h3{
    color: #fff;
    font-size: 24px;
    margin: 0 0 10px;
    font-family: 'Gloria Hallelujah',cursive;
  }
  
  #newsletter-popup input[type="text"]{
      width: 100%;
      height: 36px;
      border: none;
      text-indent: 10px;
      font-size: 13px;
      border-bottom: 2px solid #faeaec;
      border-top: 2px solid #fff;
      padding: 0;
      color: #666;
      margin-bottom: 15px;
  }
  
  #newsletter-popup input[type="submit"]{
    background: #dc3545;
      border: none;
      border-bottom: 3px solid #dc3545;
      color: #fff;
      text-align: center;
      display: block;
      padding: 0;
      line-height: 1.5;
      width: 100%;
      cursor: pointer;
      margin: 0;
      font-size: 21px;
      font-family: "Gloria Hallelujah",cursive;
  }
  
  #newsletter-popup .popup-close{
    color: #fff;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    text-decoration: none;
    line-height: 30px;
    font-family:  "Gloria Hallelujah",cursive;
    font-weight: bold;
  }