


body {
  min-height: 100vh;
  /* background: #56ab2f; 
  background: -webkit-linear-gradient(to right, #a8e063, #56ab2f); 
  background: linear-gradient(to right, #a8e063, #56ab2f);  */
}

.popupBox {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
	    z-index: 1;
}

.popupBox__content {
  position: relative;
  width: 600px;
  height: 400px;
  background:  blue;
  border-radius: 30px;
  display: flex;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.popupBox__img {
  position: relative;
  width: 276px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popupBox__img img{
  width: 60%;
}

.popupBox__img::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #e7ffe0;
  border-radius: 50%;
}

.popupBox__img img {
  position: relative;
  max-width: 250px;
  z-index: 1;
}

.popupBox__contentTwo {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popupBox__title {
  color: #fff;
  line-height: 1em;
  font-weight: 500;
  font-size: 24px;
}

.popupBox__titleTwo {
  font-size: 4em;
  color: #887fff;
  line-height: 1em;
}

.popupBox__titleTwo span {
  color: #333;
  font-size: 0.75em;
  text-transform: uppercase;
}

.popupBox__description {
  font-weight: 300;
	color: #fff;
}

.popupBox__btn {
  display: inline-block;
  padding: 10px 20px;
  background: #887fff;
  text-decoration: none;
  color: #000;
  margin-top: 15px;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #cc1d1d;
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
	color: #fff;
	opacity: 1;
	padding-left: 10px;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .popupBox__content {
    width: 300px;
    height: auto;
    flex-direction: column;
  }
  .popupBox__img {
    height: 200px;
    transform: translateY(-50px);
  }
  .popupBox__contentTwo {
    height: auto;
    text-align: center;
    padding: 20px;
    padding-top: 0;
  }
  .popupBox__img::before {
    background: #fff;
  }
  .close {
    top: -50px;
    right: -10px;
    background: #fff url(./img/close.png);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
  }
}
.credit a{
  text-decoration: none;
  color: #887fff;
}
.credit {
    margin-top: 10px;
}

