


body {
	background-color: rgb(254, 254, 254); 
}


form label {
	color: #62727b;
}

/*.callouts a:before {
	background:rgba(0,0,0,0.5);
}*/

.callouts a h6 {
	/*border:1px solid #ccc;*/
	border: none;
	color: #FFFFFF;
	background: #242424;
	box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.45); 
}

.callouts a:before {
	background:rgba(0,0,0,0.5);
}

.gallery a:before {
	background:rgba(0,0,0,0.5);
}

.hero__card__subtitle,
.hero__card__text {
    color:#242424;  
	color: #62727b;
}

.flexnav > li > a:hover{
	text-decoration: underline solid #880000;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
}


.flexnav li > ul > li a:hover {
		text-decoration: underline;
	}

.page-width {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}





.intro h5 {
	color: #FFFFFF;
	text-decoration: none;
}

.intro h5 > a:hover {
	text-decoration: underline;
}

.colophon__hours {
	margin: 0 auto;
	width: fit-content; 
}
 
.image-grid {
	display: grid;
	grid-gap: 4px;
	width: 100%;
	height: auto;
}


.image-box {
	width: 100%;
	height: 100%;
	position: relative; 
	overflow: hidden;
	padding: 0;
	z-index: 1;
	box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.1);
}

.image-box img {
	position: absolute; 
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 300ms ease-in-out;	
	transition: all 300ms ease-in-out;
	z-index: 2;
	filter: brightness(1.0);
}


.image-box .overlay-top,
.image-box .overlay-bottom,
.image-box .overlay-top-gradient, 
.image-box .overlay-bottom-gradient, 
.image-box .link-arrow {
	position: absolute;
	margin: 0;
	display: grid; 
	grid-gap: 10px; 
	place-items: center; 
	pointer-events: none;
	color: white;
	z-index: 5;
}
 

.image-box .overlay-top, 
.image-box .overlay-top-gradient {
	width: 100%;
	top: 0;
	left: 0;
	padding: 15px 0px 30px 0px;
}

.image-box .overlay-bottom, 
.image-box .overlay-bottom-gradient {
	width: 100%;
	bottom: 0;
	left: 0;
	padding: 30px 0px 15px 0px;
}

.image-box .overlay-top-gradient {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.0));
}

.image-box .overlay-bottom-gradient {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.0));
}


.image-box .link-arrow {
	width: 48px;
	height: 48px;
	
	top: 0;
	right: 0;
	/*padding: 15px 0px 30px 0px;*/
	
	display: grid; 
	place-items: center; 
	font-size: 32px;
	
	content: "Prefix Text: ";
	color: white;
	
	/*background: radial-gradient(circle, rgba(0,0,0,0.7), rgba(0,0,0,0.0));*/
	text-shadow: 0px 0px 20px #000000;
	/*background-color: aqua;*/ 
	/*background-color: #616161;
	border: 1px solid #373737;
	border-radius: 7px;*/
}

.image-box h5 {
	position: relative;
	display: flex;
	width: fit-content;
	height: auto;
	margin: 0 15px;
	color: #FFFFFF;
	text-align: center;
}

.image-box button {
	position: absolute;
	top: 0;
	right: 0;

	/*width: 100px;*/
	margin: 0;
	padding: 5px 30px;
	
	display: inline-block;
	align-items: center;
	text-align: center;
	
	color: #FFFFFF;
	background-color: #595D72;
	/*background-image: url("../resources/images/up-right-arrow.png");
	background-size: cover;*/
	border-radius: 10px;
	z-index: 65;
	opacity: 0.0;
	/*transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out, right 0.3s ease-in-out;*/
	transition: all 300ms ease-out;
	/*text-transform: uppercase;*/
	
}

.image-box button > span {
  cursor: pointer;
  display: inline-block;
  transition: 0.5s;
  position: relative;
}

.image-box button > span::after {
	display: inline-block;
	content: '⟶';
	width: 60px;
	height: 100%;
	text-align: center;
}

.image-box button:hover {
	color: #595D72;
	background-color: #9195A9;
	padding: 5px 60px 5px 0px;
}

.image-box button:hover span::after {
	display: none;
}

.image-box:hover .image-box-button {
	opacity: 1.0;
	top: 15px;
	right: 15px;
}

.arrow-button {
	display: inline-block;
	align-items: center;
	text-align: center;
	margin: 0;
	padding: 5px 10px;
	border-radius: 10px;
	z-index: 65;
	opacity: 1.0;
	color: #FFFFFF;
	background-color: #595D72;
	transition: all 300ms ease-out;
}

.arrow-button:hover {
	color: #595D72;
	background-color: #9195A9;
	padding-left: 0px;
	padding-right: 20px;
}

.arrow-button span {
	margin: 0 15px;
	color: #FFFFFF;
  	cursor: pointer;
  	display: inline-block;
  	position: relative;
}

.arrow-button span::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	content: '⟶';
	opacity: 0.0;
	text-align: right;
	transition: all 300ms ease-in-out;
}

.arrow-button:hover span::after {
	opacity: 1.0;
	right: -25px;
}


 

/*- Anniversary -*/
.anniversary {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: grid; 
	place-items: center;
	background-image: url("/resources/images/marble-01.jpg");
}

.anniversary h1 {
	width: 100%;
	text-align: center;
	color: #FFFFFF;
	margin: 30px 0 15px 0;
	padding: 0;
}

.anniversary p {
	position: relative;
	margin: 0 0 20px 0;
	padding: 0;
}
 
.anniversary p:before,
.anniversary p:after {
	position: absolute;
	top: calc(50% - 3px);
	-webkit-transform: translateY(calc(-50% - 3px));
	transform: translateY(calc(-50% - 3px));	
	width: 125px;
	height: 3px;
	display: block;
	content: "";
	background: #880000;
} 
  
.anniversary p:before {
	left: -125px;
}

.anniversary p:after {
	right: -125px;
}

.anniversary img {
	width: 100%;
	max-width: 199px;
	margin: 0;
}

.index-applications, .index-why {
	background-color: #F7F7F7;
}

.index-products, .index-showrooms {
	background-color: #E9E9E9;
}

.index-services {
	background-color: #E0E0E0;
}

.index-applications, 
.index-products, 
.index-services, 
.index-showrooms, 
.index-why {
	display: grid;
	place-items: center;
}
.index-applications > h2, 
.index-products > h2, 
.index-services > h2, 
.index-showrooms > h2, 
.index-why > h2 {
	margin-top: 60px;
	margin-bottom: 10px;
	text-align: center;
	color: #434343;
}
.index-applications > p, 
.index-products > p,
.index-services > p, 
.index-showrooms > p, 
.index-why > p {
	display: none;
	max-width: 1024px;
	margin-top: 0;
	margin-bottom: 40px;
	padding: 0 30px;
	text-align: center;
	color: #434343;
} 

.index-applications > a,
.index-products > a, 
.index-services > a,  
.index-showrooms > a  {
	margin: 25px 0 50px 0;
}


.index-applications .image-grid {
	max-width: 1840px; 
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
}
.index-products .image-grid {
	max-width: 1440px;
	grid-template-rows: repeat(6, 1fr);
	grid-template-columns: repeat(2, 1fr); 
}
.index-services .image-grid {
	max-width: 1840px;
	grid-template-columns: 1fr;
}
	

.index-applications .image-box {
	aspect-ratio: 4 / 5;
}
.index-products .image-box {
	aspect-ratio: 4 / 5;
	grid-column: auto;
}
.index-products .image-box.wide {
	aspect-ratio: 8 / 5;
	grid-column: auto / span 2;
}
.index-products .image-box.tall {
	aspect-ratio: 4 / 10;
	grid-row: auto / span 2;
}
.index-services .image-box {
	/*aspect-ratio: 5 / 4;*/
	aspect-ratio: 1;
}


.index-why-grid {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 25px;
	max-width: 1440px;
	
	padding: 30px;
	margin-top: 10px;
	/*background-color: #F0F0F0;*/
	
	/*border: 5px double #880000; */
	
}
.index-why h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #434343;
}
 
.index-why p {
	/*color: #434343;*/
}






 








