.popup-wrap {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.67);
    z-index:99999;
    transition:all 0.3s ease;
    overflow:hidden;
}
.popup-wrap.hide{
    opacity:0;   
    z-index:-1;
}
.popup-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 95%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
    position: relative;
}
.popup-image {
  width: 100%;
  height: 40%;
  margin-bottom: 0px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}
.popup-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60%;
  padding: 0px 20px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0da3e8), color-stop(55%, #fff));
  background-image: linear-gradient(180deg, #0da3e8, #fff 55%);
}
.popup-heading {
  margin-top: 10px;
  font-family: Roboto, sans-serif;
  color: #fff;
  font-size: 25px;
  line-height: 35px;
  font-weight: 600;
  text-align: center;
}
.popup-paragraph {
  font-family: Roboto, sans-serif;
  color: #000;
  text-align: justify;
}
.popup-donate-heading {
  color: #2c557d;
  font-size: 20px;
  text-align: center;
}
.popup-image-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.popup-image-link {
  width: 200px;
}
.popup-logo-img {
  width: 100%;
}
.popup-close-button{
    position: absolute;
    width:20px;
    height:20px;
    top:2%;
    left:auto;
    right:2%;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}
.popup-close-button svg{
    color:#fff;    
}
@media screen and (max-width: 991px) {
.popup-container {
    width: 70%;
    height:80%;
    margin-top:auto;
    margin-bottom:auto;
  }
    .popup-content {
        -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
        padding-top:30px;
    }
    .popup-donate-heading{
        margin-top:30px;
    }
}
@media screen and (max-width: 767px) {
.popup-container {
    width: 80%;
  }
    .popup-heading {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }
    .popup-container {
    width: 70%;
    height:95%;
  }
    
}
@media screen and (max-width: 479px) {
    .popup-container{
        width: 80%;
        height:90%;
        overflow-y: auto;
    }
.popup-image {
    height: 30%;
  }
.popup-content {
    height: 70%;
    padding-top: 10px;
  }
.popup-heading {
    margin-top:20px;
    font-size: 20px;
    line-height: 22px;
  }
    .popup-paragraph {
    margin-top: 20px;
    font-size: 13px;
    line-height: 17px;
  }
    .popup-donate-heading {
    margin-top: 20px;
    font-size: 18px;
    line-height: 20px;
  }
    .popup-image-link {
    width: 45%;
  }
}