.popup-outer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 99999;
}

.popup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	font-family: 'roboto';
	align-content: space-around;
	background: rgba(0, 0, 0, 0.4);
	z-index: 100000;
}

.popup-content {
	position: relative;
	margin: 40px auto;
	padding: 20px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	width: 80%;
	max-width: 800px;
}

.popup-content h1 {
	color: #035d90;
	font-family: 'roboto';
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 5px;
}

.popup-content .close-popup {
	position: absolute;
	top: 5px;
	right: 5px;
	background: #fff;
	color: #bbb;
	border: none;
	font-size: 26px;
	font-weight: 600;
	cursor: pointer;
}

.popup-content .close-popup:hover {
	background: #00cd42;
	color: #0a8ef3;
	border: 1px solid #fff;
	border-radius: 50%;
}

.bullet-btn {
	background-color: #0a8ef3;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	padding: 10px 10px;
	border-radius: 5px;
	margin-bottom: 20px;
}

.call-btn {
	background-color: #00cc32;
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	padding: 10px 10px;
	border-radius: 25px;
	margin-bottom: 10px;
}

.subtitle-1 {
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 35px;
	font-family: 'roboto';
	line-height: 1;
}

.subtitle-2 {
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	margin-top: 15px;
	margin-bottom: 5px;
	font-family: 'roboto';
	line-height: 1;
}

.title {
	width: 100%;
	font-size: 26px;
	font-weight: 600;
	line-height: 1;
}

.pictr,
.contnt {
	z-index: 1;
}

@media (min-width:768px) {
	.popup-container {
		top: 0;
	}

	.popup-content .img-phone-1 {
		display: block;
		position: absolute;
		max-width: 250px;
	}

	.popup-content .img-phone-2 {
		display: none;
	}
}

@media (max-width:767px) {
	.popup-container {
		top: 0;
	}

	.popup-content .img-phone-1 {
		display: none;
	}

	.popup-content .img-phone-2 {
		display: block;
		position: relative;
		max-width: -webkit-fill-available;
		width: 40%;
		border-radius: 50%;
		border: 1px solid #005a8e;
		left: 50%;
		transform: translate(-50%) scale(1, 1);
	}

	.bullet-btn {
		margin-bottom: 10px;
	}

	.call-btn {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.subtitle-1 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.subtitle-2 {
		font-size: 18px;
		margin-top: 10px;
	}
}