#home_popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999999;
	opacity: 0;
	visibility: hidden;
	transition: .3s

}
#home_popup.show{
	opacity: 1;
	visibility: visible;
}
#home_popup .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
}
#home_popup .content{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 70%;
	z-index: 6
}
#home_popup .content .close_popup{
	position: absolute;
	top: -10px;
	right: -10px;
	background: #fff;
	box-shadow: 1px 1px grey;
	color: #f00;
    text-decoration: none;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	z-index: 3
}
.img_mobile{
    display: none;
}
@media(max-width: 640px){
	#home_popup .content{
		width: 90%;
	}
	#home_popup .padding_ratio:before{
		padding-bottom: 100%
	}
    .img_dsk{
        display: none;
    }
    .img_mobile{
    display: table;
}
}