
.popupWrap {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
}
.wrapContent {
	width: 600px;
	height: 400px;
	max-width: calc(100% - 20px);
	max-height: calc(100% - 20px);
	background-color: #001726;
	background-size: cover;
	background-position: center center;
	position: relative;
	border: 8px solid white;
}
.popupImage {
	width: 100%;
	height: 150px;
	border-bottom: 1px solid lightgray;
}
.popupClose {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.popupClose:before {
	content: "";
	display: block;
	position: absolute;
	width: 70%;
	height: 1px;
	background-color: #fff;
	transform-origin: center;
	transform: rotate(45deg);
	pointer-events: none;
}
.popupClose:after {
	content: "";
	display: block;
	position: absolute;
	width: 70%;
	height: 1px;
	background-color: #fff;
	transform-origin: center;
	transform: rotate(-45deg);
	pointer-events: none;
}
.textContent {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	    padding: 2em;
	    text-align: center;
}
.textContent .text {
	padding: 5%;
	color: white;
	text-align: center;
}
.textContent .image {
	line-height: 0;
	text-align: center;
	padding-top: 14%;
}
.textContent .image img {
	max-width: 100%;
}

.textContent .title {
	font-size: 55px;
	margin-bottom: 25px;
	    color: white;
}
.textContent .subtitle {
	line-height: 1;
font-size: 2em;
	margin-bottom: 0px;
	    color: white;
}
.textContent .botText {
	font-size: 1em;
	color: white;
	
}