* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Arial, Helvetica, sans-serif;
	background: url('../images/bg-image.jpg') center center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.75);
	backdrop-filter: blur(6px);
}
.construction-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5;
	padding: 40px 15px;
}
.construction-card {
	background: #ffffffef;
	border-radius: 25px;
	padding: 60px;
	text-align: center;
	box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.logo {
	max-width: 350px;
	margin-bottom: 25px;
}
.tagline {
	display: inline-block;
	background: #E41E26;
	color: #fff;
	padding: 12px 28px;
	border-radius: 50px;
	font-size: 15px;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 30px;
}
h1 {
	font-size: 56px;
	font-weight: 800;
	color: #222;
	margin-bottom: 20px;
}
p {
	color: #666;
	font-size: 20px;
	line-height: 34px;
	margin-bottom: 35px;
}
.count-text {
	font-size: 24px;
	font-weight: 700;
	color: #E41E26;
	margin-bottom: 30px;
}
.btn-coming {
	background: #E41E26;
	color: #fff;
	padding: 15px 45px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: bold;
	transition: .3s;
}
.btn-coming:hover {
	background: #c6131a;
	color: #fff;
	transform: translateY(-3px);
}

/*---------------Large Desktop----------------*/

@media(max-width:1400px) {
h1 {
	font-size: 50px;
}
}

/*---------------Laptop----------------*/

@media(max-width:1200px) {
.construction-card {
	padding: 50px;
}
h1 {
	font-size: 45px;
}
}

/*---------------Tablet----------------*/

@media(max-width:992px) {
.construction-card {
	padding: 45px 35px;
}
.logo {
	max-width: 280px;
}
.tagline {
	font-size: 14px;
	padding: 10px 22px;
}
h1 {
	font-size: 38px;
}
p {
	font-size: 18px;
	line-height: 30px;
}
.count-text {
	font-size: 20px;
}
}

/*---------------Mobile Landscape----------------*/

@media(max-width:768px) {
.construction-card {
	padding: 40px 25px;
	border-radius: 18px;
}
.logo {
	max-width: 240px;
}
h1 {
	font-size: 32px;
}
p {
	font-size: 17px;
	line-height: 28px;
}
.btn-coming {
	padding: 13px 35px;
	font-size: 17px;
}
}

/*---------------Mobile----------------*/

@media(max-width:576px) {
.construction-section {
	padding: 20px;
}
.construction-card {
	padding: 30px 20px;
}
.logo {
	max-width: 200px;
	margin-bottom: 20px;
}
.tagline {
	font-size: 12px;
	padding: 10px 18px;
	letter-spacing: 1px;
}
h1 {
	font-size: 26px;
	line-height: 36px;
}
p {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 25px;
}
.count-text {
	font-size: 18px;
}
.btn-coming {
	width: 100%;
	font-size: 16px;
	padding: 14px;
}
}

/*---------------Small Mobile----------------*/

@media(max-width:360px) {
.logo {
	max-width: 170px;
}
h1 {
	font-size: 22px;
	line-height: 30px;
}
p {
	font-size: 14px;
}
.tagline {
	font-size: 11px;
	padding: 8px 15px;
}
}
