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

sup {line-height: 0;}

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


/*-----------------------------------|
|------------------------------------|
|    Laptop Desktop Landscape	     | 
| 	 Medium Screen Grid layout		 |
|       Overall                      |
|------------------------------------|
|-----------------------------------*/

@media screen and (max-width: 1023px) and (min-width: 835px) and (min-height: 720px) {	/*landscape tablet, desktops*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(175px, auto) minmax(45px, auto) auto auto 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: 450px;
	height: 125px;
	align-self: end;
	margin-left: calc(60vw - 80%);
	}

.tagline {
	width: 400px;
	margin-top: 0;
	align-self: center;
	margin-left: calc(60vw - 78%);
	}
	
ul.vNav.About {margin-top: 210px;}
	
	/*Position content within screen*/
.content {
	margin-bottom: 30px;
	grid-area: content; 
	width: 81vw;
	}

.promo, .Trl {
	width: calc(81vw - 275px);
	margin: 8px 0 0 25px;
	padding: 0 15px 0 10px;
	text-align: center;
	align-self: 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(275px, 1fr) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}

/*------------------------------|
|   text to right of gallery  |
|------------------------------*/
.descp {
	width: calc(81vw - 275px);
	margin-top: 30px;
	align-self: start;
	}
.Trl {width: calc(81vw - 300px);}

.descp p {margin-left: 25px; width: calc(81vw - 325px);}

h3.promo, .Trl {
	width: calc(81vw - 325px);
	}

h3.promo, h2.Trailer {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	}
h3.SubHdr {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;
	margin-left: 25px;
	text-align: center;
	}
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: 250px;
	height: 250px;
	margin-top: 85px;
	justify-self: center;
	grid-area: prgallery;
	}	

.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 250px);
	height: calc(.33 * 250px);
	border: solid thin grey;
	}
.umBox1 {
	grid-area: umb1;
	}
.umBox2 {
	grid-area: umb2;
	}
.umBox3 {
	grid-area: umb3;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 250px); width: calc(.33 * 250px); object-fit: cover;}

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

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

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


/*-------------------------------|
|--------------------------------|
|    Pad Mini and Pad 	 	     | 
| 	 Landscape Grid layout	  	 |
|--------------------------------|
|------------------------------ */

/*iPad Mini and iPad Landscape screens*/
@media screen and (min-width: 1024px) and (max-height: 768px) and (orientation: landscape), screen and (max-width: 1180px) and (min-width: 1025px) and (min-height: 769px) and (max-height: 1365px) and (orientation: landscape), screen and (max-width: 1180px) and (min-width: 1025px) and (min-height: 769px) and (max-height: 1365px) and (orientation: portrait) {  /*iPad and Mini land tweaks*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(170px, 170px) minmax(45px, 45px) 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: 450px;
	height: 130px;
	align-self: end;
	justify-self: end;
	}

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

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

.content {
	margin-bottom: 40px;
	grid-area: content;
	width: 76vw;
	}

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

.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";	
	}
	
h3.promo, h2.Trailer {font-size: 18px;}	
h3.SubHdr {font-size: 16px;}
	
.descp {
	margin-top: 65px;
	margin-bottom: 25px;
	align-self: start;
	width: calc(76vw - 285px);
	}
.descp p {margin-left: 30px; width: calc(76vw - 380px); font-size: 14px;}
	
.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 110px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	border: solid thin grey;
	}
.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);
	border: solid thin grey;
	}
.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);
	border: solid thin grey;
	}
.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: 1024px) and (max-height: 640px) { /* Large Read MacbookPro 15screen Tweaks */
	
ul.vNav li a:visited {color: #FFF;}	
ul.vNav li a:hover {color: #0C6;}
}


/*-------------------------------|
|--------------------------------|
|        Pro 12 in 	 	         | 
| 	 Portrait Grid layout	  	 |
|--------------------------------|
|------------------------------ */

/*iPad Pro 12 inch Portrait screens*/
@media screen and (max-width: 1024px) and (min-width: 1024px) and (min-height: 1366px) and (max-height: 1366px) {	/*portrait Pro 12inch tweaks*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(auto, 170px) minmax(auto, 45px) minmax(300px, auto) minmax(auto, 50px) 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: 450px;
	height: 130px;
	align-self: end;
	justify-self: end;
	}

.tagline {
	width: 400px;
	margin-top: 0;
	margin-left: 145px;
	align-self: center;
	}
	
	/*stops fragmented dot menu list*/
.slSectn .rtNav.About, .rtNav.Prod, .rtNav.Purch, .rtNav.Collab, .rtNav.Lic {
	margin: 0;
	}

ul.vNav.About {
	margin-top: 230px;
	}
	
.content {
	margin-bottom: 40px;
	grid-area: content;
	width: 76vw;
	}
	
.promo, .Trl {
	width: calc(76vw - 345px);
	}
	
.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";	
	}
	
.descp {
	width: calc(76vw - 290px);
	align-self: start;
	margin-top: 65px;
	margin-bottom: 25px;
	}
.descp p {margin-left: 30px; width: calc(76vw - 345px);}
h3.promo, .Trl {margin-left: 30px;}
	
.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 110px;
	grid-area: prgallery;
	}
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	border: solid thin grey;
	}
.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);
	border: solid thin grey;
	}
.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);
	border: solid thin grey;
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}
}


/*-------------------------------|
|--------------------------------|
|        Pro 10in   	 	     | 
| 	 Landscape Grid layout	  	 |
|--------------------------------|
|------------------------------ */

/*iPad Pro 10 inch Landscape screens*/
@media screen and (max-width: 1242px) and (min-width: 1112px) and (max-height: 834px) {  /*iPad pro 10inch land tweaks*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: minmax(220px, 220px) 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;
	margin-left: calc(60vw - 82%);
	}

.tagline {
	width: 460px;
	margin-top: 0;
	margin-left: calc(60vw - 82%);
	align-self: center;
	}
	
ul.vNav.About {margin-top: 265px;}

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

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

.content {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}
	
h3.promo, .Trl {
	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 - 285px);
	}
.descp p {margin-left: 30px; width: calc(76vw - 340px);}

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

.Products {
	width: 275px;
	height: 275px;
	justify-self: center;
	align-self: start;
	margin-top: 95px;
	grid-area: prgallery;
	}
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 275px);
	height: calc(.33 * 275px);
	border: solid thin grey;
	}
.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);
	border: solid thin grey;
	}
.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);
	border: solid thin grey;
	}
.eBox1 img, .eBox2 img, .eBox3 img {display: inline-block; height: calc(.33 * 275px); width: calc(.33 * 275px); object-fit: cover;}	
}
