/*!
Theme Name: PHCX_theme
Author: Litpeaks Team
Author URI: https://litpeaks.com/
Description: Description
Version: 1.0.0
*/

@font-face {
	font-family: 'Proxima Soft';
	src: url('assets/fonts/ProximaSoft-Regular.ttf');
}

@font-face {
	font-family: 'Proxima Soft Medium';
	src: url('assets/fonts/ProximaSoft-Medium.ttf');
}

@font-face {
	font-family: 'Proxima Soft Bold';
	src: url('assets/fonts/ProximaSoft-Bold.ttf');
}

@font-face {
	font-family: 'Proxima Soft SBold';
	src: url('assets/fonts/ProximaSoft-SemiBold.ttf');
}

body {
	font-family: 'Proxima Soft', sans-serif !important;
	background: url('assets/images/bg-image.png') no-repeat center center/cover;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.logo {
	margin-bottom: 20px;
}

.overlay {
	background: rgba(255, 255, 255, 0.43);
	border-radius: 12px;
	padding: 15px;
	text-align: center;
	width: 70%;
	max-width: 900px;
	border: 1px solid #FFF;
}

.coming-soon {
	font-size: 2.6rem;
	font-weight: 700;
	color: #85160E;
	margin-bottom: 0;
	font-family: 'Proxima Soft Bold', sans-serif;
}

.subtitle {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #85160E;
	margin-bottom: 0px;
	letter-spacing: 2px;
	font-family: 'Proxima Soft Bold', sans-serif;
}

.visit-btn {
	background: #00B2CA;
	color: #fff;
	font-weight: 400;
	border-radius: 12px;
	padding: 7px 25px;
	margin-top: 30px;
	text-decoration: none;
	display: inline-block;
	transition: 0.3s;
	font-family: 'Proxima Soft', sans-serif;
	text-transform: uppercase;
}

.footer {
	background: #85160E;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 7px;
	transition: 0.3s;
	height: 40px;
	width: 40px;
}

.ourLocationBtn {
	padding: 5px 35px;
	text-transform: uppercase;
	color: #85160E;
	border-radius: 12px;
	font-size: 18px;
	background: #FFF;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.overlay {
		background: rgba(255, 255, 255, 0.43);
		border-radius: 12px;
		padding: 15px;
		text-align: center;
		width: 95%;
		max-width: 900px;
		border: 1px solid #FFF;
	}

	body {
		background: url('assets/images/bg-image-mobile.png') no-repeat center center/cover;
        min-height: 94vh;
	}

	.coming-soon {
		font-size: 2.5rem;
	}
}

/*404 page */
.btn-primary.home-btn {
  background-color: #85160E !important;
  padding: 12px 30px;
  border-color: #85160E !important;
}