@charset "UTF-8";
/* CSS Document */

sup {line-height: 0;}

/*------------------------------------------|
|-------------------------------------------|
|  		     Gallery Pages                  | 
|      3 column gallery of products with    |
|      descriptive text col to right         |
|-------------------------------------------|
|------------------------------------------*/


/*-------------------------------|
|--------------------------------|
|         Desktop 	 	         | 
| 	 Portrait Grid layout	  	 |
|--------------------------------|
|------------------------------ */

/*Contemporary Desktop screens*/
@media screen and (max-width: 1279px) and (min-width: 1243px) and (min-height: 720px) {  /*desktop*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(205px, 205px) minmax(55px, 55px) minmax(150px, auto) minmax(auto, 150px) 100px;
	grid-template-areas: 
	"masthead masthead masthead . ."
	". tagline tagline tagline menu"
	"content content content content menu"
	"content content content content menu"
	"footer footer footer footer footer";
	}

.masthead {
	width: 550px;
	height: 155px;
	align-self: end;
	justify-self: end;
	}

.tagline {
	width: 460px;
	margin-top: 0;
	margin-left: 170px;
	align-self: center;
	}
	
ul.vNav.About {margin-top: 250px;}

ul.vNav li a:visited {color: #FFF;}	
ul.vNav li a:hover {color: #0C6;}

	/*Position content within screen*/
.content {
	margin-bottom: 30px;
	grid-area: content;
	width: 77vw;
	}
	
h3.promo, .Trl {
	width: calc(77vw - 350px);
	margin: 8px 0 0 25px;
	padding: 0 15px 0 10px;
	align-self: center;
	text-align: center;
	}

.content {
	border-image-source: url(../Images/GrnNeonLinePattern.png);
	border-image-repeat: stretch;
	border-image-slice: 6 0 0 0;
	border-image-width: 4px;
	}

.content {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}

/*------------------------------|
|   text to right of gallery  |
|------------------------------*/

.descp {        /* container */
	margin-top: 65px; 
	margin-bottom: 25px;
	align-self: start;
	width: calc(77vw - 300px);
	}
.descp p {margin-left: 30px; padding: 0; width: calc(77vw - 350px);}


h3.promo, h2.Trailer {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	}
h3.SubHdr {font-size: 16px;}

p.copy {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	text-align: right;
	}

/*----------------------------|
|    gallery setup in grid    |
|----------------------------*/

.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 75px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.umBox1 {
	grid-area: umb1;
	}
.umBox2 {
	grid-area: umb2;
	}
.umBox3 {
	grid-area: umb3;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}

.qBox1, .qBox2, .qBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.qBox1 {
	grid-area: qb1;
	}
.qBox2 {
	grid-area: qb2;
	}
.qBox3 {
	grid-area: qb3;
	}
.qBox1 img, .qBox2 img, .qBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}

.eBox1, .eBox2, .eBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.eBox1 {
	grid-area: eb1;
	}
.eBox2 {
	grid-area: eb2;
	}
.eBox3 {
	grid-area: eb3;
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}	

.Products {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: minmax(auto, 450px);
	grid-template-areas:
	"umb1 umb2 umb3"
	"qb1 qb2 qb3"
	"eb1 eb2 eb3";
	}
}

/*------------------------------------------|
|-------------------------------------------|
| 	  Larger Desktop Grid layout		    |
|-------------------------------------------|
|----------------------------------------- */

/*Large Desktop Screens*/
@media screen and (max-width: 1365px) and (min-width: 1280px) and (min-height: 800px) {	/*larger desktop screens*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(190px, 190px) minmax(55px, 55px) minmax(150px, auto) minmax(auto, 150px) 100px;
	grid-template-areas: 
	"masthead masthead masthead . ."
	". tagline tagline tagline menu"
	"content content content content menu"
	"content content content content menu"
	"footer footer footer footer footer";
	}

.masthead {
	margin: 0;
	width: 550px;
	height: 150px;
	align-self: end;
	justify-self: end;
	}

.tagline {
	width: 460px;
	margin-top: 0;
	margin-left: 190px;
	align-self: center;
	}

ul.vNav.About {margin-top: 235px;}

.content {
	margin-bottom: 30px;
	grid-area: content;
	width: 79vw;
	}

.promo, .Trl {
	width: calc(79vw - 380px);
	margin-left: 30px;
	padding: 0 15px 0 10px;
	}

.content {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}
	
h3.promo, h3.SubHdr {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	}
p.copy {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	text-align: right;
	}
	
.descp {        /* container */
	margin-top: 65px; 
	margin-bottom: 25px;
	align-self: start;
	width: calc(77vw - 300px);
	}
.descp p {margin-left: 30px; width: calc(79vw - 380px);}

h3.promo {margin-left: 30px; padding: 0 15px 0 10px;}
h2.Trailer {font-size: 18px;}
h3.SubHdr {font-size: 16px;}

.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 75px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.qBox1, .qBox2, .qBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.qBox1 img, .qBox2 img, .qBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.eBox1, .eBox2, .eBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}		
}

/*------------------------------------------|
|-------------------------------------------|
|                Pro 12" 	                | 
| 	      Landscape Grid layout			    |
|-------------------------------------------|
|----------------------------------------- */

/*iPad Pro 12 inch Landscape Screens*/
@media screen and (max-width: 1366px) and (min-width: 1366px) and (min-height: 1024px) and (max-height: 1024px) {      /*Pro 12in land screens*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(240px, 240px) minmax(60px, 60px) minmax(150px, auto) minmax(auto, 150px) 100px;
	grid-template-areas: 
	"masthead masthead masthead . ."
	". tagline tagline tagline menu"
	"content content content content menu"
	"content content content content menu"
	"footer footer footer footer footer";
	}

.masthead {
	margin: 0;
	width: 550px;
	height: 150px;
	align-self: end;
	justify-self: end;
	}

.tagline {
	width: 460px;
	margin-top: 0;
	margin-left: 220px;
	align-self: center;
	}

ul.vNav.About {margin-top: 290px;}

.content {
	margin-bottom: 30px;
	grid-area: content;
	width: 78vw;
	}

.promo, .Trl {
	width: calc(78vw - 365px);
	margin-left: 40px;
	padding-left: 10px;
	padding-right: 15px;
	}
	
.content {
	border-image-source: url(../Images/GrnNeonLinePattern.png);
	border-image-repeat: stretch;
	border-image-slice: 6 0 0 0;
	border-image-width: 4px;
	}

.content {
	display: grid;
	grid-template-columns: minmax(300px, 325px) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}
	
h3.promo, h3.SubHdr {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	}
p.copy {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	text-align: right;
	}
	
.descp {        /* container */
	margin-top: 65px; 
	margin-bottom: 25px;
	align-self: start;
	width: calc(78vw - 300px);
	}
.descp p {margin-left: 40px; width: calc(78vw - 365px);}
h2.Trailer {font-size: 18px;}
h3.SubHdr {font-size: 16px;}

.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 75px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.qBox1, .qBox2, .qBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.qBox1 img, .qBox2 img, .qBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.eBox1, .eBox2, .eBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}			
}

/*------------------------------------------|
|-------------------------------------------|
|      Extra Large screen 	                | 
| 	    Desktop Grid layout		     	    |
|-------------------------------------------|
|----------------------------------------- */

/*Extra Large Desktop Screens*/
@media screen and (max-width: 1919px ) and (min-width: 1367px) and (min-height: 900px) {  /*X-Lg desktop*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(250px, 250px) minmax(60px, 60px) minmax(150px, auto) minmax(auto, 150px) 100px;
	grid-template-areas: 
	"masthead masthead masthead . ."
	". tagline tagline tagline menu"
	"content content content content menu"
	"content content content content menu"
	"footer footer footer footer footer";
	}

.masthead {
	margin: 0;
	width: 600px;
	height: 160px;
	align-self: end;
	margin-left: calc(60vw - 75%);
	}

.tagline {
	width: 460px;
	margin-top: 0;
	margin-left: calc(60vw - 78%);
	align-self: center;
	}

ul.vNav.About {margin-top: 305px;}
	
.content {
	margin-bottom: 30px;
	grid-area: content;
	width: 76vw;
	}

h3.promo, .Trl {
	width: calc(76vw - 350px);
	margin-left: 40px;
	padding-left: 10px;
	padding-right: 15px;
	}

.content {
	border-image-source: url(../Images/GrnNeonLinePattern.png);
	border-image-repeat: stretch;
	border-image-slice: 6 0 0 0;
	border-image-width: 4px;
	}

.content {
	display: grid;
	grid-template-columns: minmax(300px, 325px) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}
	
h3.promo, h3.SubHdr {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	}
p.copy {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	text-align: right;
	}
		
.descp {        /* container */
	margin-top: 65px; 
	margin-bottom: 25px;
	align-self: start;
	width: calc(76vw - 300px);
	}
.descp p {margin-left: 40px; width: calc(76vw - 350px);}
h2.Trailer {font-size: 18px;}
h3.SubHdr {font-size: 16px;}

.Products {
	width: 295px;
	height: 295px;
	justify-self: center;
	align-self: start;
	margin-top: 75px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.qBox1, .qBox2, .qBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.qBox1 img, .qBox2 img, .qBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.eBox1, .eBox2, .eBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}	
}


@media screen and (min-width: 1680px) and (min-height: 1050px) { /*tweak Big Sur default rez*/
.masthead {
	margin-left: calc(60vw - 70%);
	}	
}


/*------------------------------------------|
|-------------------------------------------|
|    Presentatiobn screen / TV size 	    | 
| 	 and Lg Desktop Grid layout			    |
|-------------------------------------------|
|----------------------------------------- */

/*Presentation TV Screens*/
@media screen and (min-width: 1920px) and (min-height: 900px) {	/*presentation tv screens*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(270px, 270px) minmax(70px, 70px) minmax(150px, auto) minmax(auto, 150px) 100px;
	grid-template-areas: 
	"masthead masthead masthead . ."
	". tagline tagline tagline menu"
	"content content content content menu"
	"content content content content menu"
	"footer footer footer footer footer";
	}

.masthead {
	margin: 0;
	width: 800px;
	height: 220px;
	align-self: end;
	margin-left: calc(60vw - 75%);
	}

.tagline {
	margin-top: 0;
	width: 580px;
	margin-left: calc(60vw - 78%);
	}

ul.vNav.About {margin-top: 330px;}

ul.vNav li a {
	width: 250px;
	font-size: 16px;
	}
	
.content {
	margin-bottom: 50px;
	grid-area: content;
	width: 79vw;
	}
	
.promo, .Trl {
	width: calc(79vw - 390px);
	margin-left: 40px;
	padding-left: 10px;
	padding-right: 15px;
	}
	
.content {
	border-image-source: url(../Images/GrnNeonLinePattern.png);
	border-image-repeat: stretch;
	border-image-slice: 6 0 0 0;
	border-image-width: 4px;
	}
	
.content {
	display: grid;
	grid-template-columns: minmax(300px, 325px) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}
	
h3.promo, h3.SubHdr {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 400;
	}
p.copy {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	text-align: right;
	}
	
.descp {        /* container */
	margin-top: 65px; 
	margin-bottom: 25px;
	align-self: start;
	width: calc(79vw - 325px);
	}
.descp p {margin-left: 40px; width: calc(79vw - 390px);}

h2.Trailer {font-size: 20px;}
h3.SubHdr {font-size: 18px;}

.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 55px;
	grid-area: prgallery;
	}

umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.qBox1, .qBox2, .qBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.qBox1 img, .qBox2 img, .qBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
	
.eBox1, .eBox2, .eBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}	
}


@media screen and (min-width: 1920px) and (min-height: 1200px) {	/*presentation tv screens*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(270px, 270px) minmax(70px, 70px) minmax(150px, auto) minmax(auto, 150px) 100px;
	grid-template-areas: 
	"masthead masthead masthead . ."
	". tagline tagline tagline menu"
	"content content content content menu"
	"content content content content menu"
	"footer footer footer footer footer";
	}

ul.vNav.About {
	margin-top: 355px;
	}
}
