@charset "utf-8";
/* CSS Document */
.img-banner{
	background-image: url("../img/the-smith-thumb.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 25vh;
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	align-content: center;
	align-items: center;
	position: relative;
}
.img-banner .container {
	width: 95%;
}
.home-link {
	text-decoration: none;
	cursor: pointer;
	color: black;
}
.card-img-top img {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.construction-badge {
	top:5%; 
	left:60%; 
	background-color:#9A1114;
}
.home-link .card{
	transition: .2s ease-out;
}
.home-link .card:hover{
	color: white;
	background-color: #9a1114;
}
.home-link .card:active{
	color: white;
	background-color: #6B0203;
}
.show-more {
	background-color: #9a1114;
	color: white;
}
.show-more:hover {
	background-color: darkred;
	color: white;
}
.show-more:active {
	background-color: lightcoral !important;
	color: white !important;
	border: none !important;
}
@media screen and (min-width: 576px){
		.construction-badge {
		top:5%; 
		left:40%; 
	}
}
@media screen and (min-width: 768px){
	.img-banner {
		height: 40vh;
	}		
	
	.construction-badge {
		top:5%; 
		left:60%; 
	}
}
@media screen and (min-width: 992px){
	.construction-badge {
		top:5%; 
		left:50%; 
	}
	.img-banner .container{
		width: 70%;
	}
}
@media screen and (min-width: 1200px){
	.img-banner {
		height: 45vh;
	}
	.construction-badge {
		top:5%; 
		left:60%; 
	}
}
@media screen and (min-width: 1400px){
	.img-banner {
		height: 50vh;
	}
}


