@charset "UTF-8";

sup {line-height: 0;}

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

/*-------------------------------------------
|    Mobile device Portrait      	 	    | 
| 	 Grid layout tweak	 	  				|
-----------------------------------------  */

/*Default-  Basic about layout portrait phone <=320 */
	/*Keep default of logo and tag at top of screen*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(75px, auto) minmax(30px, auto) auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}
	
.masthead {width: 265px;}

.Full {top: 155px;}

.content {
	margin: 0;
	grid-area: content;
	width: 290px;
	}

.promo, .Trl {
	width: 275px;
	margin: 8px 0 0 0;
	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: 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"colrt" 
	"prgallery";	
	}

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

.descp {   /*  container  */
	margin-top: 12px;
	align-self: center;
	width: 275px;
	grid-area: colrt;
	}
	
.promo {
	grid-area: prhdg;
	}
.copy {
	grid-area: text;
	}
.Trl {grid-area: Trailer;}

.descp {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prhdg"
	"text"
	"Trailer";
	}

h3.promo, h2.Trailer {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 100;
	font-style: italic;
	color: rgba(0,204,51,1);
	margin-bottom: 0;
	}
	
h3.SubHdr {
	font-family:  'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 100;
	font-style: italic;
	margin: 4px 0 0 0;
	color: rgba(0,204,51,1);
	text-align: center;
	}
	
.descp p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.6;
	padding: 0 15px 0 10px;
	margin-left: 10px;
	text-align: right;
	}

.copy a {text-decoration: none; color: #06F;}

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

.Products {
	width: 270px;
	height: 270px;
	margin-top: 40px;
	grid-area: prgallery;
}

.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 270px);
	height: calc(.33 * 270px);
	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 * 270px); width: calc(.33 * 270px); object-fit: cover;}

.qBox1, .qBox2, .qBox3 {
	width: calc(.33 * 270px);
	height: calc(.33 * 270px);
	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 * 270px); width: calc(.33 * 270px); object-fit: cover;}

.eBox1, .eBox2, .eBox3 {
	width: calc(.33 * 270px);
	height: calc(.33 * 270px);
	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 * 270px); width: calc(.33 * 270px); object-fit: cover;}

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

 /*------------------------------|
|     Style phone portrait      |
|         Mobile 5              |
|------------------------------*/

@media screen and (min-width: 320px) and (max-height: 568px) {		/*portrait phone 5*/
	/*Tweak content positioning*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 75px 30px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}
	
.Full {
	top: 165px;
	}

.content {
	width: 290px;
	}

.descp {margin-bottom: 12px;}
}


/*------------------------------|
|     Style phone portrait      |
|         Mobile 6-7-8          |
|------------------------------*/

@media screen and (min-width: 375px) and (max-height: 667px) {  	/*portrait phone 6-7-8*/
	/*Tweak logo menu and content positioning*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 73px 35px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.Full {
	top: 170px;
	}
	
.content {
	width: 335px;
	}

.promo, .Trl {
	width: 300px;
	}

.descp {
	margin-top: 12px;
	padding-right: 15px;
	margin-left: 15px;
	padding-left: 10px;	
	width: 300px;
	}
	
.Products {
	margin-top: 40px;
	justify-self: center;
	width: 300px;
	grid-area: prgallery;
	}

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

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

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


/*-----------------------------|
|     Style Dphone portrait    |
|        Mobile 10 size        |
|------------------------------*/

@media screen and (min-width: 375px) and (max-height: 812px) { 	/*portrait phone 10*/
	/*Tweak logo menu and content positioning*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 73px 35px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.Full {top: 165px;}

.content {
	width: 335px;
	}

.promo, .Trl {
	width: 300px;
	}
	
.descp {
	padding-right: 15px;
	margin-left: 15px;
	padding-left: 10px;
	width: 300px;
	}

.Products {
	margin-top: 40px;
	justify-self: center;
	width: 300px;
	height: 300px;
	grid-area: prgallery;
	}	

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

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

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


/*------------------------------|
|     Style phone portrait      |
|         Mobile 8 plus         |
|------------------------------*/

@media screen and (min-width: 414px) and (max-height: 896px) { 	/*portrait phone 8 plus, phone 11 */
	/*Tweak logo menu and content positioning*/
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 80px 35px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.masthead {width: 295px;}

.Full {
	top: 180px;
	}

.content {
	width: 365px;
	}

.promo, .Trl {
	width: 325px;
	}

.descp {
	padding-right: 15px;
	margin-left: 15px;
	padding-left: 10px;
	width: 325px;
	}

.Products {
	margin-top: 40px;
	justify-self: center;
	width: 325px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 325px);
	height: calc(.33 * 325px);
	border: solid thin grey;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 325px); width: calc(.33 * 325px); object-fit: cover;}

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

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


@media screen and (min-width: 360px) and (min-height: 780px) {   /*portrait phone 12 5+in */
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 80px 35px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}
	
.masthead {width: 295px;}

.Full {
	top: 170px;
	}
	
.content {width: 315px;}

.promo, .Trl {
	width: 295px;
	}

.descp {
	padding-right: 15px;
	margin-left: 15px;
	padding-left: 10px;
	width: 295px;
	}

.Products {
	margin-top: 40px;
	justify-self: center;
	width: 285px;
	height: 285px;
	grid-area: prgallery;
	}
}


@media screen and (min-width: 390px) and (min-height: 844px) {   /*portrait phone 12 6in */
	/*Tweak content width*/
.content {width: 345px;}

.promo, .Trl {
	width: 315px;
	}

.descp {
	padding-right: 15px;
	margin-left: 15px;
	padding-left: 10px;
	width: 325px;
	}

.Products {
	margin-top: 40px;
	justify-self: center;
	width: 315px;
	height: 315px;
	grid-area: prgallery;
	}

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

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

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


@media screen and (min-width: 428px) and (min-height: 926px) {   /*portrait phone 12  6+in */
	/*Tweak content width*/
.masthead {width: 315px;}
.tagline {margin-left: 120px;}

.content {width: 385px;}

.promo, .Trl {
	width: 350px;
	}

.descp {
	padding-right: 15px;
	margin-left: 15px;
	padding-left: 10px;
	width: 360px;
	}

.Products {
	margin-top: 40px;
	justify-self: center;
	width: 345px;
	height: 345px;
	grid-area: prgallery;
	}
	
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 325px);
	height: calc(.33 * 325px);
	border: solid thin grey;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 325px); width: calc(.33 * 325px); object-fit: cover;}

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

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


/*----------------------------------|
|-----------------------------------|
|          Tweaks-                  |
|    Mobile device landscape  	    | 
| 	 Grid layout					|
|-----------------------------------|
|----------------------------------*/

@media screen and (max-width: 480px) and (min-width: 415px) and (max-height: 320px) {    /*landscape phone 4*/
	/*Tweak content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(80px, auto) minmax(30px, auto) auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.masthead {width: 275px;}

.Full {top: 80px;}

.content {
	width: 430px;
	}

.promo, .Trl {
	width: 225px;
	}

.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(150px, 175px) 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prgallery colrt";
	}

.descp {margin-top: 5px; margin-bottom: 25px; width: 255px;}  /* container */
.descp p {padding: 0 15px 0 10px; margin-left: 10px; width: 220px;}

h3.promo, .Trl {padding: 0 10px 0 10px; margin-left: 10px;}

.descp {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prhdg"
	"text"
	"Trailer";
	}

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

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

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

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


@media screen and (max-width: 568px) and (min-width: 481px) and (max-height: 320px) {	/*landscape phone 5*/
	/*Tweak content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 80px 30px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.masthead {width: 275px;}

.Full {top: 80px;}

.content {
	width: 520px;
	}

.promo, .Trl {width: 225px;}

.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(175px, 200px) 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
	"prgallery colrt";	
	}
	
.descp {margin-top: 20px; margin-bottom: 25px; width: 320px;}
.descp p {margin-left: 20px; padding: 0 15px 0 10px; width: 275px;}

h3.promo, .Trl {padding: 0 15px 0 10px; margin-left: 20px; width: 275px;}

.Products {
	width: 175px;
	height: 175px;
	margin-top: 25px;
	justify-self: center;
	align-self: start;
	grid-area: prgallery;
	}
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 175px);
	height: calc(.33 * 175px);
	border: solid thin grey;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 175px); width: calc(.33 * 175px); object-fit: cover;}

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

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


@media screen and (max-width: 667px) and (min-width: 569px) and (max-height: 375px) {	/*landscape phone 6-7-8*/
	/*Tweak content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 92px 30px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.masthead {width: 325px;}
	
.Full {top: 130px;}

.content {
	width: 620px;
	}

.promo, .Trl {width: 395px;}

.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: 250px 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prgallery colrt";
	}
	
.descp {margin-top: 20px; margin-bottom: 25px; width: 340px;}
.descp p {margin-left: 20px; padding: 0 15px 0 10px; width: 305px;}

h3.promo, .Trl {margin-left: 20px; padding: 0 15px 0 10px; width: 305px;}

.Products {
	width: 220px;
	height: 220px;
	margin-top: 30px;
	justify-self: center;
	align-self: start;
	grid-area: prgallery;
	}
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 220px);
	height: calc(.33 * 220px);
	border: solid thin grey;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 220px); width: calc(.33 * 220px); object-fit: cover;}

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

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


@media screen and (max-width: 740px) and (min-width: 668px) and (max-height: 414px) {	/*landscape phone 8 plus*/
	/*Tweak content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 103px 30px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.masthead {width: 360px;}

.Full {top: 154px;}

.content {
	width: 695px;
	}

.promo, .Trl {width: 435px;}

.content {
	display: grid;
	grid-template-columns: 270px 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prgallery colrt";
	}
	
.descp {margin-top: 20px; padding-right: 0px; margin-bottom: 25px; margin-left: 0px; padding-left: 0px; width: 435px;}
.descp p {margin-left: 0; padding: 0 20px 0 20px; width: 390px;}
h3.promo, .Trl {margin-left: 0; padding: 0 20px 0 20px; width: 390px;}

.Products {
	width: 245px;
	height: 245px;
	margin-top: 30px;
	justify-self: center;
	align-self: start;
	grid-area: prgallery;
	}
.umBox1, .umBox2, .umBox3 {
	width: calc(.33 * 230px);
	height: calc(.33 * 230px);
	border: solid thin grey;
	}
.umBox1 img, .umBox2 img, .umBox3 img {display: inline-block; height: calc(.33 * 230px); width: calc(.33 * 230px); object-fit: cover;}

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

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


@media screen and (max-width: 833px) and (min-width: 741px) and (max-height: 375px) {	/*landscape phone 10*/
	/*Tweak content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 135px 30px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}

.masthead {
	margin-top: 25px;
	margin-left: 75px;
	width: 375px;
	}

.Full {top: 140px;}

.content {
	width: 785px;
	}

.promo, .Trl {
	width: 430px;
	margin-left: 25px;
	padding: 0 15px 0 15px;
	}

.content {
	display: grid;
	grid-template-columns: 300px 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prgallery colrt";
	}
	
.descp {width: 485px; margin-left: 0; padding: 0;}
.descp p {margin-left: 25px; padding-left: 15px; width: 430px;}
h3.Promo, .Trl {padding: 0 15px 0 15px; margin-left: 25px; width: 430px;}

.Products {
	width: 290px;
	height: 290px;
	margin-top: 20px;
	justify-self: center;
	align-self: start;
	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 (max-width: 896px) and (min-width: 834px) and (max-height: 414px) {  /*landscape iphone 11 */
	/*Keep default of logo and tag at top of screen; Tweak menu and content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 105px 40px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}
	
.masthead {
	margin-left: 75px;
	width: 375px;
	height: 110px;
	}

.tagline {width: 350px; align-self: center;}

.Full {
	top: 140px;
	}
	
.content {
	width: 94vw;
	}

.promo, .Trl {
	width: calc(88vw - 300px);
	margin-left: 25px;
	padding: 0 15px 0 15px;
	font-size: 18px;
	}

.content {
	display: grid;
	grid-template-columns: 300px 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prgallery colrt";
	}
	
.descp {width: calc(94vw - 300px); margin-left: 0; padding: 0;}
.descp p {margin-left: 25px; padding-left: 15px; width: calc(88vw - 300px); font-size: 14px;}
h3.Promo, .Trl {padding: 0 15px 0 15px; margin-left: 25px; width: calc(88vw - 300px);}

.Products {
	width: 290px;
	height: 290px;
	margin-top: 20px;
	justify-self: center;
	align-self: start;
	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: 926px) and (min-height: 428px) {  /* landscape iphone 12 */
	/*Keep default of logo and tag at top of screen; Tweak menu and content positioning*/	
#wrapper {
	margin: 0 auto;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 105px 40px auto 100px;
	grid-template-areas:
	"masthead"
	"tagline"
	"content"
	"footer";
	}
	
.masthead {
	margin-left: 75px;
	width: 375px;
	height: 110px;
	}

.tagline {
	margin-top: 0;
	margin-left: 240px;
	width: 350px;
	}
	
.Full {
	top: 170px;
	}
	
.content {
	width: 94vw;
	}

.promo, .Trl {
	width: calc(88vw - 360px);
	margin-left: 25px;
	padding: 0 15px 0 15px;
	font-size: 18px;
	}

.content {
	display: grid;
	grid-template-columns: 360px 1fr;
	grid-template-rows: auto;
	grid-template-areas:
	"prgallery colrt";
	}
	
.descp {width: calc(94vw - 360px); margin-left: 0; padding: 0;}
.descp p {margin-left: 25px; padding-left: 15px; width: calc(88vw - 360px); font-size: 14px;}
h3.Promo, .Trl {padding: 0 15px 0 15px; margin-left: 25px; width: calc(88vw - 360px);}
}