body, html {
  height: 100%;
  margin: 0;
}

.bg {
  /* The image used */
  background-image: url("bg.svg");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.popup {
	box-shadow: 0 10px 40px 0 rgba(47,47,47,.1);
	background: white;
	border: 1px solid #eee;
	border-radius: 5px;
	text-align: center;
	padding: 10px;
	    position: fixed;
top: 50%;
left: 50%;
max-width: 484px;
width: 100%;
background: #fff;
border-radius: 0;
transform: translate(-50%,-50%);
text-align: center;
}
.inner {
	box-sizing: border-box;
width: 100%;
padding: 30px 60px;
}
}
.popup img {
	width: 200px;
	height: 200px;
	object-fit: contain;
}
.popup h1 {
	    font-size: 50px;
color: #333;
font-weight: 800;
margin-top: 0;
margin-bottom: .45em;
}
.popup p {
	    margin: 0 0 2em;
line-height: 1.8;
}
.btn {
	box-sizing: border-box;
padding: 11px 35px 12px 25px;
border-radius: 6px;

font-weight: 700;
font-size: 16px;
color: #000;
text-decoration: none;
border: none;
text-align: center;
background-color: #2d4488;
box-shadow: none;
color: #fff;
transition: background .5s ease;
display: inline-block;
width: 100%;
max-width: 300px;
margin-bottom: 1em;
padding-top: 16px;
padding-bottom: 16px;
}
.btn:after {
	content: "\203A";
top: 50%;
right: -7px;
display: inline-block;
position: relative;
}
.btn:hover {
	background-color: #17246e;
box-shadow: none;
color: #fff;
text-decoration: none;
}
.popup img {
	width: 60px;
	height:50px;
	
}
@media only screen and (max-width: 480px) {
  .popup {
        width: 95%;
  }
  .inner {
  	padding: unset;
  }
}