* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.container{
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup {
  width: 800px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 30px 30px;
  color: #fff;
}

.popup img{
  width: 100%;
  margin-top: -50px;
  border-radius: 50%;
 
}

@media (max-width:991px) {
	.popup {
    width: 400px
  }

  .popup img {
    width: 50%
  }

}