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

html,
html * {
	padding:0;
	margin:0;
	box-sizing:border-box;
	font-family: Helvetica, Arial, "sans-serif";
}
/*body {background-color: FFFDD0;} */

body{
	font-family: Arial,sans-serif;
	color: #000000;
	line-height: normal;
	margin-left: auto;
	padding: 0px;
	font-weight: bold;
	width: 90%;
}

.style-siteName{
	margin-left: auto;
	margin-right: auto;
	padding: 20;
	display: block;
}
.style-navBar ul {
	list-style-type: none;
	
}

.style-navBar ul li {
	text-decoration: none;
	color:#000000;
	text-align: center;
	display:block;
	text-transform:capitalize;
	padding: 10px;
	font-size: 100%;
	font-weight: bold;
	}

a:link, a:visited, a:hover {
	color: #000000;
	text-decoration:underline;
	 text-decoration: none;
        border: 0px solid #000;
        background: #e6e4e4;
        padding: 5px;
        border-radius: 10px;
	/* text-transform:capitalize; */
		}

a:hover {
	color: #ffffff;
	background-color: #f7e34a;
}/* overrides decoration from previous rule for hovered links */

ul.style1 {
	margin-left: 25em
}

ul.style2 {
	margin-left: 3em
}

h1, h2, h3, h4, h5, h6, h7 {
	font-family: Arial,sans-serif;
	margin: 0px;
	padding: 0px;
	}
/* ^ added h7 on 3/15/22*/

/******* default font size is set at 12 px. Example: font-size: 100% means font-size: 12px or 9pt or 1rem****/

h1{
 font-family: Verdana,Arial,sans-serif;
 font-size: 130%;
	/**font-size is 15.6px**/
 color: #333333;
}

h2{
 font-size: 120%;
	/**font-size is 14.4px**/
 color: #000;
}

h3{
 font-size: 95%;
 color: #334d55;
}

h4{
 font-size: 100%;
 font-weight: normal;
 color: #333333;
}

/*increased font size for h5*/
h5{
 font-size: 115%;
	/**font-size is 13.8px**/
 color: #334d55;
}

h6{
	font-size: 140%;
	/**font-size is 16.8px**/
	color: #000;
}

.b {
  word-break: keep-all;
}

/**===================================================
	 h7 used for HELIUM page "Explore Helium" 
=======================================================**/

h7 {
	font-size: clamp(1.667rem, 0.3035rem + 4.5450vw, 8.333rem);
	
	color: #000;
	font-family: "Bookman Old Style";
	font-style: italic;
}

/**===================================================
	h8 used for HELIUM page "Example: Tohache Wash"
=======================================================**/

h8{
	font-size: clamp(2.5rem, 0.9185rem + 5.2717vw, 5.417rem);
	color: #000;
	font-family: "Bookman Old Style";
    font-style: italic;
}

/**===================================================
	h9 used on pages:
    
    Sale Data
    Services
    Case Histories
    Publications
=======================================================**/
h9{
	font-size: clamp(1.3rem, 1.1916rem + 0.3614vw, 1.5rem);
	color: #333333;
	font-family: Verdana,Arial,sans-serif;
	font-style: normal;
    }
/**==================================================================================================
	h10 used for HELIUM page, inside workflow banner "Sample Collection>>Analysis>>Interpretation"
======================================================================================================**/
h10{
	font-size: clamp(1.3rem, 1.1916rem + 0.3614vw, 1.5rem);
	color: #333333;
	font-family: Verdana,Arial,sans-serif;
	font-style: italic;
}

/**===================================================
	h11 used for ABOUT page "Location" & "Key Personnel"
=======================================================**/

h11{
	font-size: clamp(1.3rem, 1.1916rem + 0.3614vw, 1.5rem);
	color: #666666;
	font-family: "Bookman Old Style";
    font-style: italic;
    }
/**=========================================================================================================
	
		font-size:clamp is  linearly scaled
	
	--------------------------------------------------------------------------------------------------------
	Reference:
	
		https://css-tricks.com/linearly-scale-font-size-with-css-clamp-based-on-the-viewport/
	--------------------------------------------------------------------------------------------------------
	Conversion for px to rem:
		----NOTE: make sure to set "root font-size" to 12 pixels !!!!-----
	
			https://nekocalc.com/px-to-rem-converter
	
	Conversion for px to %:
		----NOTE: make sure to set "root font-size" to 12 pixels !!!!-----
			https://nekocalc.com/px-to-percentage-converter
	--------------------------------------------------------------------------------------------------------
	
	Build the clamp function (does the alegbra for you):
	
		https://codesandbox.io/s/clamp-linear-intepolation-based-on-viewport-width-builder-xgkft?from-embed
	
	Set viewport widths to:
		min = 360px
		max = 1024 px
============================================================================================================**/


/* Tablet View */

@media (min-width: 768px){
	.style-navBar ul li {
		display: inline-block;
	}
	.style-navBar ul {
		text-align: center;
	}
}

/* Desktop View */

@media (min-width: 1024px){}

/* Phone View */
@media (min-width: 360px){
	.flex-container{
		flex-direction: column;
	}
}
#centered {margin: auto;}

.center-me {
  margin: auto;
}

figure{
display: flex; 
flex-direction: column;
justify-content: center;
max-width: 550px;
}

figcaption { text-align: center;}

.left{
float: left;
}

.img-containter{
	float:left;
	padding: 0px 15px 15px 15px;
}

.img-containter2{
	float:left;
	padding: 0px 15px 15px 15px;
}

.indentunder{
	padding-left: 6em;
	text-indent: -1.5em;
}

.indentunder2{
	padding-left: 24em;
	text-indent: -1.5em;
}

.listindent1{
    padding-left: 2rem;
}

.word-break{
	word-break: break-all;
}
word-break{
	word-break: break-all;
}
/* added March 15, 2022*/

.container {
  display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px; 
}

.container > div{
	flex-basis: auto;
	min-width: 20px;
	flex-direction: row;
	justify-content: space-around;
	align-self: auto;
}

.container img {
	max-width: 100%;
	max-height: auto;
	min-width: 20%;
	min-height: auto;
	align-self: flex-end;
	flex-basis: auto;
	justify-content: space-around;
	flex-grow: 0.5;
}


.container2{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 15px; 
}

.container2 > * {
flex-flow: row wrap;
flex: 1 auto;
}
.container2 > div{
max-width: 1550px;
flex: 1 1 0;
}


.container2 img {
	max-width: 100%;
	max-height: auto;
	min-width: 20%;
	min-height: auto;
}

@media all and (max-width: 1475px){
    .container2 {
        display: flex;
        flex-direction: column;
    }
}

.container3{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: stretch;
    align-items: flex-start;
   
}

.container3 > div {
    flex-flow: row wrap;
    flex: 2 1 auto;
    display: grid;
    place-items: center;
}

.container3 > div > ul {
   
}


#split{ 
    display: flex;
    flex-direction: column;        
   align-items: baseline;
   padding-left: 15px;
}

.indentunder3{
	padding-left: 2em;
	text-indent: -1.5em;
}
.pvw{
	font-size: 1vw;
}

strong150 {
	font-size: 150%;
	/**font-size is 18px**/
}

strong140{
	font-size: 140%;
	/**font-size is 16.8px**/
}


.flagshadow{
 
  height: 15px;
  background-color: white;
  box-shadow: 2px 2px 5px lightblue;
    
}

/* added March 23, 2022*/

/**** Don't remember what these left and right containers are for, need to check******/

.left-containter{
	float:left;
	padding: 30px 200px 30px 200px;
	align-content: center
}

.right-containter{
	align-content: center;
	float:inherit;
	padding: 30px 200px 30px 100px;
}


/**======================================
        Banners for pages:
    -----------------------
		Soil Gas Probe
		Sale Data
		Privacy Policy
		Doityourself
		Contact

----------------------------------------***/

.banner300 {
    text-align: center;
    width: 300px;
    background-color: #f7e34a;
}

.banner500 {
	text-align: center;
	max-width: 500px;
  background-color: #f7e34a;
}

.banner150 {
	text-align: center;
	width: 150px;
  background-color: #f7e34a;
}

/*--------------------------------------------------
        banners with gradient
        
        Pages: helium, hydrogen
===================================================*/
.banner-wkflw{
    background-color: white; 
background-image: linear-gradient(to right, #f7e34a, #f7e34a, white );
    width: 25%;
    min-width: 270px;
}

.banner-wkflw2{
    background-color: white;
    background-image: linear-gradient(to right, #f7e34a, #f7e34a, white );
    width: 75%;
    min-width: 270px;
    text-align: center
}


/*================================================
        this div makes a yellow border
===================================================*/
div.border-yellow{
	position: relative;
		padding: 20px;
	border: 4.5px solid #f7e34a;
	border-radius: 10px;
	margin: auto;
}

underline{
	text-decoration: underline;
}



.box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.box img {
	max-width: 100%;
	max-height: auto;
	min-width: 20%;
	min-height: auto;
	align-self: center;
	flex-basis: auto;
	justify-content: space-around;
	flex-grow: 0.5;
}

.imgwrap{
    display: flex;
	max-width: 70%;
	max-height: auto;
	min-width: 340px;
	min-height: auto;
	align-self: center;
	flex-basis: auto;
	justify-content: space-around;
	flex-grow: 2.5;
    
}
	
.flex-container{
	display: flex;
	flex-flow: row wrap;
	gap: 45px;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.flex-container > div {
    width: 420px; 
}

.flex-container > ul {
}

.about-container{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;  
}

.about-container div{ 
        max-width: 700px;
        padding: 0px 15px 20px 15px;
        align-self: stretch;
}

@media (max-width: 360px){}


/*===================================
	        Solid borders 
======================================*/
    hr.solid {
      border-top: 2px solid #000;
	    width: 95%;
	    margin: auto
    }

    hr.solid2 {
      border-top: 2px solid #000;
	    width: 100%;
	    margin: auto
    }

    ul.style3 {
	margin-left: 6em
    }

/*================================================
	SAMPLE DESIGN PAGE: Flexboxes for Tables 
================================================*/

.flex-container-table-a{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
    align-content: flex-start;
    column-gap: 35px;
}

.flex-container-table-a > div{ 
     max-width: 1000px;
    }

.flex-container-table-a > div > ul:nth-of-type(1){
    list-style: disc inside none;
    padding: 0px;
    padding-inline-start: 20px;
    padding-inline-end: 10px;
}

.flex-container-table-a > div > ul > li{list-style-position: inside;}

.flex-container-table-a img{ 
    max-width: 300px;
    max-height: auto;
    min-width: 275px;
    min-height: auto;
}

.flex-container-table-b{
	display: flex;
	flex-flow: row wrap-reverse;
	justify-content: center;
	align-items: center;
    align-content: flex-start;
    column-gap: 35px;
}

.flex-container-table-b > div {
    max-width: 1000px;
}

.flex-container-table-b > div > ul:nth-of-type(1){
    list-style: disc inside none;
    padding: 0px;
    padding-inline-start: 20px;
    padding-inline-end: 10px;
}

.flex-container-table-b > div > ul > li{list-style-position: inside;}

.flex-container-table-b img{ 
    max-width: 300px;
    max-height: auto;
    min-width: 275px;
    min-height: auto;
    }

#padding100px{
    padding-left: 100px;
    padding-right: 100px;
}


/*================================================
	    HOME PAGE: Flexboxes for Tables 
================================================*/

.flex-container-home-a{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	 gap: 20px;

}

.flex-container-home-a > div {
max-height: auto;
	min-width: 40%;
	min-height: auto;
	align-self: center;
	flex-basis: auto;
	justify-content: space-around;
	flex-grow: 0.5;
       max-width: 1100px;
    flex: 1 1 0;
        background-color: white; 
background-image: linear-gradient(to right, white, #f7e34a, #f7e34a, #f7e34a, #f7e34a, white);
}

.flex-container-home-a > img {
   max-width: 100%;
	max-height: auto;
	min-width: 20%;
	min-height: auto;
	align-self: flex-start;
	flex-basis: auto;
	justify-content: space-around;
}


.flex-container-home-b{
	display: flex;
	flex-flow: row wrap-reverse;
	justify-content: center;
	align-items: center;
    gap: 20px;
}

.flex-container-home-b > div {
	max-height: auto;
	min-width: 40%;
	min-height: auto;
	align-self: center;
	flex-basis: auto;
	justify-content: space-around;
	flex-grow: 0.5;
       max-width: 1100px;
    flex: 1 1 0;
    background-color: white; 
background-image: linear-gradient(to right, white, #f7e34a, #f7e34a, #f7e34a, #f7e34a, white);
}

.flex-container-home-b img {
  max-width: 100%;
	max-height: auto;
	min-width: 20%;
	min-height: auto;
	align-self: flex-start;
	flex-basis: auto;
	justify-content: space-around;
}


/***========================================
        HELIUM PAGE: big banner
===========================================**/

.banner{
	padding: 35px;
	background: #FFF087;
}

text-glow-w{
	text-shadow: 2px 2px 30px #FFFFFF;
}

text-glow-w2{
	text-shadow: 2px 2px 40px #FFFFFF;
}

text-glow-y1{
	text-shadow: 5px 5px 16px #FFF087;
}

.centered {margin-left: auto;
margin-right: auto;}



/***================================================

	    Tohache Wash Section for HELIUM page
        
====================================================***/

.flex-tohache-1{
	display:flex;
	flex-flow: row wrap;
	justify-content: center;
	align-content: flex-start;
	align-items: center;
}

.flex-tohache-1 div {}

.box-tohache{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin: auto;
}

.box-tohache > div{
	align-self: center;
}

.box-tohache img{
	max-width: 100%;
	max-height: auto;
	min-width: 20%;
	min-height: auto;
	align-self: flex-end;
	flex-basis: auto;
	justify-content: space-around;
	flex-grow: 0.5;
}

.box-tohache p{
	align-content: center;
	align-self: center;
}

.flex-tohache-1 ul:nth-of-type(1){
    list-style: disc inside none;
    font-size: 120%;
    padding: 0px;
}

    /***================================================ 

        TABLE MADE WITH FLEXBOX  FOR HELIUM PAGE 
Update 6/20/22: Replaced "Rtable" with "TWtable" in both css and html in helium page 

    ================================================***/


/* Variables
================================== */

/* Tables
================================== */
.TWtable {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 0;
  padding: 0;
	width: 100%;
  max-width: 600px;
	position: relative;
	
}
.TWtable-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  padding: 0.5em 1em;
  list-style: none;
  border: solid 0.01px white;

  background: white;
  align-items: center;
  text-align: center;
	margin: 0 0 0 0;
  background-color: white;
}

/* Table column sizing
================================== */
.TWtable--2cols > .TWtable-cell {
  width: 50%;
}

/* Cell styles
================================== */

.TWtable-cell--y1 {
  background-color: #f7e34a;
  border-color: #FFFFFF;
	
}
.TWtable-cell--y2 {
  background-color: #FFF087;
  border-color: #FFFFFF;
}
.TWtable-cell--y3 {
  background-color: #FFFFE1;
  border-color: #FFFFFF;
	
}
.TWtable-cell--y4 {
  background-color: #FFFFC8;
  border-color: #FFFFFF;
}


/* Responsive
==================================== */
@media all and (max-width: 550px) {
  .TWtable--collapse {
    display: block;
  }
  .TWtable--collapse > .TWtable-cell {
    width: 100% !important;
  }
  .TWtable--collapse > .TWtable-cell--foot {
    margin-bottom: 1em;
  }
}
.no-flexbox .TWtable {
  display: block;
}
.no-flexbox .TWtable > .TWtable-cell {
  width: 100%;
}
.no-flexbox .TWtable > .TWtable-cell--foot {
  margin-bottom: 1em;
}
.TWtable-cell.TWtable-cell--1of1 {
  width: 100%;
}
.TWtable-cell.TWtable-cell--1of2 {
  width: 100%;
}
.TWtable-cell.TWtable-cell--2of2 {
  width: 50%;
}
.TWtable-cell.TWtable-cell--2of3 {
  width: 66.66%;
}

@media all and (max-width: 550px) {
 
}
@media all and (min-width: 360px) {
  .hiddenLarge {
    display: flex;
  }
}

/****================================================

Websites for flexbox help

================================================

https://css-tricks.com/snippets/css/a-guide-to-flexbox/

https://css-tricks.com/accessible-simple-responsive-tables/

=============================================================***/



    /***================================================ 

            TABLE MADE WITH FLEXBOX 
        PAGES: WATERFLOOD, NAVIGATOR, THISTLE 

    ================================================***/
    
/* Tables
================================== */
.Rtable {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 1600px;
  position: relative;
  
}
.Rtable-cell {
  box-sizing: border-box;
  display: flex;
  flex-grow: 1;
  width: 100%;
  padding: 0.5em 1em;
  list-style: none;
  border: solid 0.001pt white;
  background: #FFF087;
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* Table column sizing
================================== */
.Rtable--2cols > .Rtable-cell {
  width: 50%;
}

.Rtable--3cols > .Rtable-cell {
  width: 33.33%;
}

/* Cell styles
================================== */

.Rtable-cell--y1 {
  background-color: #f7e34a;
  border-color: #FFFFFF;
}

.Rtable-cell--y2 {
  background-color: #FFF087;
  border-color: #FFFFFF;
}

.Rtable-cell--y3 {
  background-color: #FFFFC8;
  border-color: #FFFFFF;
}

.Rtable-cell--y4 {
  background-color: #FFFFE1;
  border-color: #FFFFFF;
}


/* Responsive
==================================== */
@media all and (max-width: 550px) {
  .Rtable--collapse {
    display: block;
  }
  .Rtable--collapse > .Rtable-cell {
    width: 100% !important;
  }
  .Rtable--collapse > .Rtable-cell--foot {
   
  }
}
.no-flexbox .Rtable {
  display: block;
}
.no-flexbox .Rtable > .Rtable-cell {
  width: 100%;
}
.no-flexbox .Rtable > .Rtable-cell--foot {
  margin-bottom: 1em;
}
.Rtable-cell.Rtable-cell--1of1 {
  width: 100%;
}
.Rtable-cell.Rtable-cell--1of2 {
  width: 100%;
}
.Rtable-cell.Rtable-cell--2of2 {
  width: 100%;
}
.Rtable-cell.Rtable-cell--2of3 {
  width: 33%;
}

@media all and (max-width: 550px) {
 
}
@media all and (min-width: 360px) {
  .hiddenLarge {
    display: flex;
  }
}


