@charset "utf-8";
/* BnB SUB PAGE STYLES */

/* LAYOUT */
aside { 
	display: inline-block;
}
.none {
	display: none;
}
.sidebar{
	background: white;
	height: min-content;
	margin: 0 10px 0 10px;
	width: 1fr;
	position: fixed!important;
	z-index: 20;
	overflow: auto;
}
aside ul {
	list-style-type: none;
}
ul {
	list-style-type: none;
 }


/* ALIGNMENT */
.center {
	/*margin: auto;*/
	text-align: center;
}
.unjust {
	text-align: left;
	text-justify: unset;
}
.just {
	text-align: left;
	text-justify: auto;
}
.left {
	position: absolute;
	text-align: left;	
	left: 0;
}
.text-center {
	text-align: center;
}
.sm-caps {
	font-variant: small-caps;
}
.topMost {
	z-index: 100;
}

/*HEADER*/
.logo1 {
	position: absolute;
	top: 0;
	left: 0;
	margin: 5px;
}
.m-logo1 {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	margin: 5px;
	z-index: 100;
}
.img-logo {
	width: 200px;
}
.m-img-logo {
	width: 150px;
}
.call {
	position: absolute;
	top: 100px;
	left: 00px;
	margin: 20px 435px 0 15px;
}
.img-call {
	width: 25px;
}
.pageTitle {
	background-color: var(--titlebg);
	font-family: var(--ff-bold);
	font-size: 25pt;
	padding-left: 30px;
	letter-spacing: .15rem;
}

/*HERO*/
.hero {	
	/* grid styles */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	align-items: center;
}
.pg-home {
	background: url("file:///Z:/_McCloud/Sync/WEB/BnBGlass/Web/images/glassInstall-web-01.jpg") center;
	background-size: cover;
	padding: 15rem 2rem;
}
.pg-about {
	background: url("file:///Z:/_McCloud/Sync/WEB/BnBGlass/Web/images/installer-web-01.jpg") center;
	background-size: cover;
	padding: 15rem 2rem;
}
.pg-wwd {
	background: url("file:///Z:/_McCloud/Sync/WEB/BnBGlass/Web/images/glassTinting-web-01.jpg") center;
	background-size: cover;
	padding: 15rem 2rem;
}
.hero > * {
	color: white;
}
.hero > h1 {
	font-size: 4rem;
	padding-bottom: 1rem;
}
.hero > article > p {
	font-size: 1.5rem;
	font-weight: 200;
}
.hero > article > a {
	padding: 1rem;
	margin-top: .75rem;
}


/* SECTIONS */
.content {
	padding: 1rem;
}
.content > ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-gap: 1rem;
}
.content > ul > li {
	border: 1px solid #333333;
	border-radius: .5rem;
}
.content > ul > li > figure {
	max-height: 220px;
	overflow: hidden;
	border-top-left-radius: .5rem;
	border-top-right-radius: .5rem;
	position: relative;
}
.content > ul > li > figure > img {
	width: 100%;
}
.content > ul > li > figure > figcaption {
	position: absolute;
	bottom: 0;
	background-color: rgba(0,0,0,.7);
	width: 100%;
}
.content > ul > li > figure > figcaption > h3 {
	color: white;
	padding: .75rem;
	font-size: 1.25rem;
}
.content > ul > li > p {
	font-size: 1rem;
	line-height: 1.5;
	padding: 1rem .75rem;
	color: #666666;
}
.content > ul > li > a {
	padding: .5rem 1rem;
	margin: .5rem;
}
.bgc-prim {
	background-color: var(--blueLL);
}
.bgc-sec {
	background-color: var(--redLL);
} 

/* CUSTOM LIST MARKERS */
/*::marker {
	color: var(--primary);
	font-size: 1em;
	font-weight: bold;

	content: "\2695";	
}

li::marker {
	padding-left: .5em;
}*/


.legal {
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: var(--footerbg);
	color: var(--bgc);
	width: 100%;
	font-size: 85%;
}
.legal > div > a {
	color: var(--logo2);
}
.footer-grid {
	margin: 1rem 0 0 1rem;
	display: grid;
	/*grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));*/
	grid-template-columns: min-content max-content auto;
	align-items: left;

}
.foot-short {
	margin-right: 40px;
}
.foot-short-mid {
	margin: 0 40px 0 50px;
}
.foot-icos {
	text-align: right;
	margin: 0 20px 0 0;
}
.footer-grid > article > a {
	color: white;
}


@media screen and (max-width: 800px){
	.call {
		display: none;
	}
	.logo1 {
		display: none;
	}
	.logo1m {
		display: block;
	}
}