/* The alert message box */
.alert {
	padding: 20px;
	padding-left: 50px;
	background-color: #f44336;
	color: white;
	margin-bottom: 15px;
}

/* Success, Info And warning alert boxes */
.alertsuccess {
	padding: 20px;
	padding-left: 50px;
	background-color: #04AA6D;
	color: white;
	margin-bottom: 15px;
}
.alertinfo {
	padding: 20px;
	padding-left: 50px;
	background-color: #7289DA;	
	color: white;
	margin-bottom: 15px;
}
.alertwarning {
	padding: 20px;
	padding-left: 50px;
	background-color: #ff9800;
	color: white;
	margin-bottom: 15px;
}
  
/* The close button */
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
color: black;
}

/* Showcase */
.showcase {
	height: 700px;
	position: relative;
}

.showcase h1 {
	font-size: 40px;
	position: center;
	text-align: center;
}

.showcase p {
	margin: 20px 0;
	text-align: center;
}

.showcase .flex {
	overflow: visible;
	justify-content: center;
}

/* Showcase Plans */
.showcase-plans {
	height: 900px;
	position: relative;
}

.showcase-plans h1 {
	font-size: 40px;
	position: center;
	text-align: center;
}

.showcase-plans p {
	margin: 20px 0;
	text-align: center;
}

.showcase-plans .flex {
	overflow: visible;
	justify-content: center;
}

/* Panels */
.features {
	height: auto 500px;
	margin: 50px 0;
}

.features h3 {
	text-align: center;
	font-size: 25px;
	font-weight: 400;
}

.features p {
	text-align: center;
}

.features img {
	border-radius: 5px;
	justify-self: center;
	width: 75%;
}

.mobile {
	display: none;
}

/* Tablet Responsive */
@media (max-width: 768px) {
	.features img {
		width: 100%;
	}
}

@media (max-width: 550px) {
	.showcase {
		height: 450px; /* 450px */
	}

	.showcase-plans {
		height: 1400px; /* 450px */
	}

	.showcase .buttons {
		flex-direction: column;
	}

	.showcase h1 {
		font-size: 25px;
	}

	.showcase p {
		font-size: 14px;
	}

	.showcase a {
		width: 100%;
		text-align: center;
	}
	
	/* */
	.showcase-plans .buttons {
		flex-direction: column;
	}

	.showcase-plans h1 {
		font-size: 25px;
	}

	.showcase-plans p {
		font-size: 14px;
	}

	.showcase-plans a {
		width: 100%;
		text-align: center;
	}

	.features .grid {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
	}

	.desktop {
		display: none;
	}

	.mobile {
		display: block;
	}
}
