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

/*-------------------------------|
|--------------------------------|
|         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) 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: 550px;
	height: 155px;
	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: 250px;}

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

	/*Position content within screen*/
.content {
	margin: 0;
	grid-area: content;
	padding-bottom: 75px;
	width: 77vw;
	}

.content {
	border-image-source: url(../Images/GrnNeonLinePattern.png);
	border-image-repeat: stretch;
	border-image-slice: 6 0 0 0;
	border-image-width: 4px;
	}
.item1.text {
	height: auto;
	grid-area: pr1;	
	}
.item1.img {
	height: auto;
	grid-area: pri1;
	}
.item2.text {
	height: auto;
	grid-area: pr2;
	}

.item2.img {
	height: auto;
	grid-area: pri2;
	}

.promo.adv {
	height: 100px;
	width: calc(77vw - (78vw * .5));
	grid-area: pradv;
	align-self: start;
	margin-bottom: -10px;
	}

.promo.hdg {
	height: 100px;
	width: calc(77vw - (78vw * .5));
	grid-area: prhdg;
	align-self: end;
	margin-top: 20px;
	}

.promo h2 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 300;
	font-style: italic;
	margin: 8px 0 0 0;
	color: rgba(0,204,51,1);
	}

.item3.img {
	height: auto;
	grid-area: pri3;
	}
.item3.text {
	height: auto;
	grid-area: pr3;
	}

.item4.img {
	height: auto;
	grid-area: pri4;
	}
.item4.text {
	height: auto;
	grid-area: pr4;
	}

.text p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.6;
	text-align: left;
	margin-top: 0;
	margin-left: 10px;
	}
	
.content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
	"pr1 pri1 prhdg prhdg"
	"pr2 pri2 pri3 pr3"
	"pradv pradv pri4 pr4";
	}

.indent {
    display: block;
    width: 315px;
    margin: -20px 0 -10px 20px;
	}
	
.item1.text, .item2.text, .item3.text, .item4.text {
	width: calc(77vw - (77vw * .65));
	}
.item1.text {margin-top: 25px;}
.item1.text img {margin-left: 10px;}
.item1.text p {margin-top: 10px;}

.item2.text {margin-top: 25px;}
.item2.text img {margin-left: 10px;}
.item2.text p {margin-top: 10px;}

.item3.text {margin-top: 25px;}
.item3.text p {margin-top: -12px;}

.item4.text {margin-top: 25px;}
.item4.text img {width: 175px; margin-left: 25px;}
.item4.text p {margin-top: 15px;}
	
.item3.rt .indent, .item4.rt .indent {width: 250px;}

.item1.img {margin-top: 177px; margin-left: 15px; width: 10vw;}
.item1.img p, .item2.img p {margin-left: 5px;}
.item2.img {margin-top: 157px; margin-left: 15px; width: 10vw;}

.item3.img {margin-top: 157px; margin-left: 15px; width: 10vw;}
.item3.img p {margin-left: 5px;}

.item4.img {margin-top: 136px; margin-left: 15px; width: 10vw;}
.item4.img p {margin-left: 5px;}

.btnGallery {width: 135px; height: 45px; margin-bottom: 20px;}
#btn {display: inline-block; width: 135px; margin-top: -15px; margin-left: -20px;}
}

/*------------------------------------------|
|-------------------------------------------|
| 	  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;
	margin-left: calc(60vw - 75%);
	}

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

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

.content {
	margin: 0;
	grid-area: content;
	padding-bottom: 75px;
	width: 79vw;
	}
	
.promo.hdg, .promo.adv {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-style: italic;
	margin: 8px 0 0 0;
	color: rgba(0,204,51,1);
	}

.promo.adv {
	height: 100px;
	width: calc(79vw - (79vw * .5));
	grid-area: pradv;
	align-self: start;
	margin-top: 20px;
	}

.promo.hdg {
	height: 100px;
	width: calc(79vw - (79vw * .5));
	grid-area: prhdg;
	align-self: end;
	margin-bottom: -10px;
	}	

.text p {
	font-size: 12px;
	padding-left: 10px;
	}
.adv h2, .hdg h2 {
    font-size: 18px;}
		
.content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
	"pr1 pri1 prhdg prhdg"
	"pr2 pri2 pri3 pr3"
	"pradv pradv pri4 pr4";
	}

.indent {
    display: block;
    width: 315px;
    margin: -20px 0 -10px 20px;
	}

.item1.text, .item2.text, .item3.text, .item4.text {width: calc(79vw - (79vw * .65)); margin-top: 25px; padding-left: 10px; font-size: 18px;}	
.item1.text img, .item2.text img, .item3.text img {margin-left: 20px;}
.item4.text img {width: 175px; margin-left: 25px;}

.item3.rt .indent, .item4.rt .indent {width: 250px;}

.item1.text p {margin-top: 10px;}
.item2.text p {margin-top: 10px;}
.item3.text p {margin-top: -15px;}
.item4.text p {margin-top: 10px;}

.item1.img {margin-top: 182px; margin-left: 15px; width: 10vw;}
.item1.img p, .item2.img p, .item3.img p, .item4.img p {margin-left: 5px;}
.item2.img, .item3.img {margin-top: 156px; margin-left: 15px; width: 10vw;}
.item3.img {padding-right: 0;}
.item4.img {margin-top: 136px; padding-right: 0; margin-left: 15px; width: 10vw;}

.btnGallery {width: 135px; height: 45px; margin-bottom: 20px;}
#btn {display: inline-block; width: 135px; margin-top: -15px; margin-left: -20px;}
}

/*------------------------------------------|
|-------------------------------------------|
|                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(300px, auto) minmax(auto, 300px) 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 - 75%);
	}

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

.content {
	margin: 0;
	grid-area: content;
	padding-bottom: 75px;
	width: 78vw;
	}

.promo.hdg, .promo.adv {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-style: italic;
	margin: 8px 0 0 0;
	color: rgba(0,204,51,1);
	}

.promo.adv {
	height: 100px;
	grid-area: pradv;
	align-self: start;
	margin-bottom: -10px;
	}

.promo.hdg {
	height: 100px;
	grid-area: prhdg;
	align-self: end;
	margin-top: 20px;
	}

.promo.hdg, .promo.adv {
	justify-self: center;
	width: calc(78vw - (78vw * .65));
	}	

.adv h2, .hdg h2 {
    font-size: 18px;}
					
.content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
	"pr1 pri1 prhdg prhdg"
	"pr2 pri2 pri3 pr3"
	"pradv pradv pri4 pr4";
	}

.indent {
    display: block;
    width: 310px;
    margin: -20px 0 -10px 20px;
	}
	
.item1.text, .item2.text, .item3.text, .item4.text {
	margin-top: 25px;
	width: calc(78vw - (78vw * .68));
	font-size: 12px;
	}

.item1.text, .item2.text {padding-right: 10px; margin-left: 20px; padding-left: 10px;}	

.item1.text img, .item2.text img {margin-left: -10px;}
.item1.text p {margin-top: 10px; margin-left: 0;}
.item2.text p {margin-top: 10px; margin-left: 0;}
.item3.text img {margin-left: 5px;}
.item3.text p {margin-top: -15px; margin-left: 10px;}
.item4.text img {width: 175px; margin-left: 10px;}
.item4.text p {margin-top: 15px; margin-left: 10px;}

.item3.rt .indent, .item4.rt .indent {width: 250px;}
	
.text p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 10px;
	}
	
.item1.img, .item2.img, .item3.img, .item4.img {align-self: center; justify-self: center;}
	
.item1.img {margin-top: 176px; margin-left: 15px; width: 10vw;}
.item2.img {margin-top: 154px; margin-left: 15px; width: 10vw;}

.item3.img {margin-top: 154px; padding-right: 0; margin-left: 15px; width: 10vw;}
.item3.img p {margin-right: 5px;}

.item4.img {margin-top: 136px; padding-right: 0; margin-left: 15px; width: 10vw;}
.item4.img p {margin-right: 5px;}

.btnGallery {width: 160px; height: 45px; margin-bottom: 30px;}
#btn {display: inline-block; width: 160px; margin-top: -20px; margin-left: -20px;}
}

/*------------------------------------------|
|-------------------------------------------|
|      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(425px, 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 {
	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: 0;
	grid-area: content;
	padding-bottom: 75px;
	width: 76vw;
	}
	
.content {
	border-image-source: url(../Images/GrnNeonLinePattern.png);
	border-image-repeat: stretch;
	border-image-slice: 6 0 0 0;
	border-image-width: 4px;
	}

.promo.adv {
	height: 100px;
	width: calc(76vw - (76vw * .5));
	grid-area: pradv;
	align-self: start;
	margin-top: 20px;
	}

.promo.hdg {
	height: 100px;
	width: calc(76vw - (76vw * .5));
	grid-area: prhdg;
	align-self: end;
	margin-bottom: -10px;
	}	

.promo h2 {
	font-weight: 300;
	font-style: italic;
	margin: 8px 0 0 0;
	font-size: 18px;
	width: 500px;
	}
		
.content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
	"pr1 pri1 prhdg prhdg"
	"pr2 pri2 pri3 pr3"
	"pradv pradv pri4 pr4";
	}

.indent {
    display: block;
    width: 315px;
    margin: -20px 0 -10px 20px;
	}
	
.item1.text {margin-top: 25px; width: calc(76vw - (76vw * .65));}
.item1.text, .item2.text {margin-right: 20px; margin-left: 15px; padding-left: 0;}	

.item2.text, .item3.text {margin-top: 20px; width: calc(76vw - (76vw * .65));}
.item4.text {margin-top: 20px; width: calc(76vw - (76vw * .65));}

.item1.text img, .item2.text img, .item3.text img {margin-left: 20px;}
.item4.text img {width: 175px; margin-left: 30px;}

.item1.text p, .item4.text p {margin-top: 10px; margin-left: 25px;}
.item2.text p {margin-top: 15px; margin-left: 25px;}
.item3.text p {margin-top: -5px; margin-left: 25px;}
.item4.text p {margin-top: 15px; margin-left: 25px;}

.text p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 10px;	
	}

.item3.rt .indent, .item4.rt .indent {width: 250px;}
	
.item1.img, .item2.img, .item3.img, .item4.img {align-self: center; justify-self: center;}
	
.item1.img {margin-top: 178px; margin-left: 15px; width: 10vw;}
.item2.img, .item3.img {margin-top: 156px; padding-right: 0; margin-left: 15px; width: 10vw;}
.item3.img p, .item4.img p {margin-right: 5px;}
.item4.img {margin-top: 132px; padding-right: 0; margin-left: 15px; width: 10vw;}

.btnGallery {width: 160px; height: 45px; margin-bottom: 30px;}
#btn {display: inline-block; width: 160px; margin-top: -20px; margin-left: -20px;}
}


@media screen and (min-width: 1680px) and (min-height: 1050px) { /*tweak Big Sur default rez*/
.masthead {
	margin-left: calc(60vw - 70%);
	}	
	
.item1.img, .item2.img, .item3.img, .item4.img {width: 8vw;}
.item1.img {
    margin-top: 178px;
	}
}


/*------------------------------------------|
|-------------------------------------------|
|    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, auto) minmax(70px, auto) 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: 0;
	grid-area: content;
	padding-bottom: 75px;
	width: 79vw;
	}

.promo.adv {
	height: 100px;
	width: calc(79vw - (79vw * .5));
	grid-area: pradv;
	align-self: start;
	margin-top: 20px;
	}

.promo.hdg {
	height: 100px;
	width: calc(79vw - (79vw * .5));
	grid-area: prhdg;
	align-self: end;
	margin-bottom: -10px;
	}
	
.hdg, .adv {
	align-self: center;
	justify-self: center;
	}	

.promo h2 {
	font-weight: 300;
	font-style: italic;
	margin: 8px 0 0 0;
	width: 700px;
	}

.adv h2, .hdg h2 {font-size: 20px;}

.content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-template-areas:
	"pr1 pri1 prhdg prhdg"
	"pr2 pri2 pri3 pr3"
	"pradv pradv pri4 pr4";
	}

.indent {
    display: block;
    width: 400px;
    margin: -25px 0 -10px 20px;
	}

.item1.text, .item2.text, .item3.text, .item4.text {margin-top: 35px; width: calc(79vw - (79vw * .65)); font-size: 20px;}
.item1.text, .item2.text {margin-right: 15px; padding-left: 0;}

.item1.text img, .item2.text img, .item3.text img {margin-left: 20px;}
.item1.text p {margin-top: 10px;}
.item4.text img {width: 175px; margin-left: 30px;}	
.item2.text p {margin-top: 15px;}
.item3.text p {margin-top: -5px;}
.item4.text p {margin-top: 15px;}

.text p {font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-top: 10px; padding-left: 25px;}
	
.item1 p, .item2 p, .item3 p, .item4 p {font-size: 16px;}

.item3.rt .indent, .item4.rt .indent {width: 310px;}

.item1.img {margin-top: 210px; margin-left: 35px; width: 8vw;}
.item1.img p, .item2.img p, .item3.img p, .item4.img p {font-size: 14px;}

.item2.img {margin-top: 206px; margin-left: 35px; width: 8vw;}
.item3.img {margin-top: 206px; padding-right: 0; margin-left: 25px; width: 8vw; justify-self: center;}
.item4.img {margin-top: 170px; padding-right: 0; margin-left: 25px; width: 8vw; justify-self: center;}
	
.btnGallery {width: 175px; height: 45px; margin-bottom: 40px;}
#btn {display: inline-block;width: 175px; margin-top: -20px; margin-left: -20px;}
}


@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, auto) 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";
	}

.item1.text, .item2.text, .item3.text, .item4.text {margin-top: 35px; margin-left: 25px; width: calc(79vw - (79vw * .65)); font-size: 20px;}
.item3.text, .item4.text {padding-left: 0;}
.item3.text p {margin-top: -10px;}
.item3.text img {margin-top: 0;}

.item1.img , .item2.img, .item3.img, .item4.img {width: 8vw; margin-left: 25px;}
.item2.img, .item3.img {margin-top: 194px;}
}