.container {
	max-width: 960px;
}

/*
 * Custom translucent site header
 */

.site-header {
 	background-color: #fff;
	/*
	background-color: rgba(0, 0, 0, 0);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	*/
}
.site-header a {
	color: #8e8e8e;
	transition: color .15s ease-in-out;
}
.site-header a:hover {
	color: #fff;
	text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

.hero {
	background-image: url(../img/cover.png);
	background-color: rgba(255,255,255,0.3);
	background-blend-mode: lighten;
	background-size: cover;
}

.product-device {
	position: absolute;
	right: 10%;
	bottom: -30%;
	width: 300px;
	height: 540px;
	background-color: #333;
	border-radius: 21px;
	transform: rotate(30deg);
	
	background-image: url(../img/img1.png);
}

.product-device::before {
	position: absolute;
	top: 10%;
	right: 10px;
	bottom: 10%;
	left: 10px;
	content: "";
	background-color: rgba(255, 255, 255, .1);
	border-radius: 5px;
}

.product-device-2 {
	top: -25%;
	right: auto;
	bottom: 0;
	left: 5%;
	background-color: #e5e5e5;
	
	background-image: url(../img/img2.png);
}


/*
 * Extra utilities
 */

.flex-equal > * {
	flex: 1;
}
@media (min-width: 768px) {
	.flex-md-equal > * {
		flex: 1;
	}
}


.bg_onetime_popup {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9999;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: 0.5s;
}

.bg_onetime_popup.js_active {
	opacity: 1;
	visibility: visible;
}

.onetime_popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 50%;
	min-width: 500px;
	background-color: #fff;
	cursor: pointer;
}

.onetime_popup_title {
	position: relative;
	padding: 30px 90px;
	margin: 0px;
	background-color: #3388dd;
	color: #fff;
	font-size: 32px;
	text-align: center;
	line-height: 1.5;
}
.onetime_popup_title::before,
.onetime_popup_title::after {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	width: 30px;
	height: 4px;
	background-color: #fff;
	content: "";
}
.onetime_popup_title::before {
	transform: rotate(45deg);
}
.onetime_popup_title::after {
	transform: rotate(-45deg);
}

.onetime_popup_content {
	padding: 60px 30px;
	text-align: center;
}
