.openBtn {
margin-top: 30px;
padding: 1em 30px;
text-align: center;
display: block;
-webkit-transition: all linear 0.15s;
transition: all linear 0.15s;
border-radius: 3px;
background: #3D9970;
font-size: 26px;
text-decoration: none;
letter-spacing: 1px;
text-transform: uppercase;
color: #fafafa;
z-index: 0;
}
.openBtn:hover {
  opacity: 0.95;
}

.obscure {
  width: 100%;
  height: 100%;
   position: fixed;
    top: 0;
    left: 0;
    right: 0;

bottom: 0;
  background: rgba(9, 9, 9, 0.67);
  z-index: 99999999!important;
  overflow:hidden;
  overflow-y: scroll;
  display: none;  
}

.popup {
width: 60%;
padding: 40px 55px;
transform: translate(-50%, -50%) scale(0.5);
position: absolute!important;
margin-top: 25%!important;
left: 50%!important;
box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
border-radius: 5px;
background: #fff;
text-align: center;
z-index: 9999999999!important;

}
.popup img{
  max-width: 100%;
}
.popup .closeBtn {
display: inline-block;
position: absolute;
bottom: 20px;
right: 20px;
font-weight: bold;
text-decoration: none;
color: #fff;
line-height: 10px;
background: #be1313!important;
padding: 6px 16px;
border-radius: 2px;
}

.animationOpen, .animationClose {
  display: block;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

.animationOpen {
  -webkit-transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.animationClose {
	opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(.5);
  transform: translate(-50%, -50%) scale(.5);
}

@media (min-width: 250px ) {
.popup h1{font-size: 22px!important}
.popup h4{font-size: 12px!important}
.popup img{width: 120px}

.popup{width: 80%; padding: 10px 5%;margin-top:97%!important;}
.popup .closeBtn {margin-top: 8%; position: relative; right: 0;}
}
@media (min-width: 768px ) {
.popup{width: 80%; padding: 10px 5%;margin-top: 35%!important;}
.popup .closeBtn {margin-top:0%; position: absolute; right: 20px;}
.popup h1{font-size: 28px!important}
.popup h4{font-size: 14px!important}
.popup img{width: 180px}
}
@media (min-width: 800px ) {
.popup{margin-top: 25%!important;}
}
@media (min-width: 1200px ) {
.popup{width: 60%; padding: 10px 5%;margin-top: 20%!important;}
.popup h1{font-size: 30px!important}
.popup h4{font-size: 15px!important}
.popup img{width: 230px}
}