/* UnFlux Minimal Styles */
body {
	font-family: 'Lato', sans-serif;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-wrapper {
	text-align: center;
}

.loading-logo-wraper img {
	max-width: 200px;
	margin-bottom: 30px;
}

.tp-loader.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255,255,255,0.2);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.bg-mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg-mask-50 {
	background: rgba(0,0,0,0.5);
}

.page-background-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.page-background {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.header {
	padding: 30px 0;
}

.logo-image img {
	max-height: 80px;
}

.main-text {
	text-align: center;
	color: #fff;
	margin: 50px 0;
}

.main-phrase {
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.secondary-phrase {
	color: #fff;
	font-size: 24px;
	margin: 20px 0;
	min-height: 40px;
}

.mini-block {
	width: 60px;
	border: 2px solid #fff;
	margin: 20px auto;
}

.subscribe-text {
	color: #fff;
	font-size: 18px;
	margin: 30px 0;
	text-align: center;
}

.bot-content {
	text-align: center;
}

.btn-subscribe {
	background: #28a745;
	color: #fff;
	border: none;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 4px;
	transition: all 0.3s;
}

.btn-subscribe:hover {
	background: #218838;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(40,167,69,0.4);
	color: #fff;
}

.page-wrap {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	overflow-y: auto;
}

.page-bg {
	background: rgba(0,0,0,0.9);
	width: 100%;
	min-height: 100%;
	padding: 50px 15px;
}

.page-box {
	background: rgba(255,255,255,0.95);
	padding: 50px;
	border-radius: 8px;
	margin: 0 auto;
	max-width: 600px;
	position: relative;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.ico-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 10;
}

.ico-close:before,
.ico-close:after {
	content: '';
	position: absolute;
	width: 30px;
	height: 3px;
	background: #333;
	top: 14px;
	left: 0;
	transition: all 0.3s;
}

.ico-close:before {
	transform: rotate(45deg);
}

.ico-close:after {
	transform: rotate(-45deg);
}

.ico-close:hover:before,
.ico-close:hover:after {
	background: #e74c3c;
}

.tcenter {
	text-align: center;
}

.close-box-button a {
	color: #333;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.close-box-button a:hover {
	color: #e74c3c;
}

.box-tit1 {
	color: #333;
	font-weight: 700;
	margin-bottom: 20px;
}

.hr-p {
	border-color: #ddd;
	margin: 20px 0;
}

.form-control {
	margin-bottom: 15px;
}

.contact-feedback {
	display: none;
	padding: 15px;
	border-radius: 4px;
	margin-top: 15px;
	text-align: center;
}

#contactSuccess {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

#contactError {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}
