  /* Styles for the popup container */
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1;
}

/* Styles for the popup content */
.popup-content {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Close button styles */
.close-button {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: red;
  font-weight: bolder;
}

/* Form styles (customize as needed) */
#newsletter-form {
    margin-top: 20px;
}

#newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

#newsletter-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
}

#newsletter-form button:hover {
    background-color: #0056b3;
}
#img{
    max-width: 500px;
    padding: 10px;
}
 @media only screen and (max-width:767px){
  #img{
    max-width: 300px;
  }
 }