/*COLORS*/
:root {	
  --color-default: #333333; 	
  --color-primary: #648b80; /*ORIGINAL #648b80;*/ /*options: #2C5E8A*/  /* chosen blue #2f6a97 */   /*this ---#73aad4*/
  --color-secondary: #e3e7e5; /*ORIGINAL #d9e3e0*/                      /* warm gray-green */
  --color-accent: #d4a373; /*or #C97A4A - #e89a4a*/                     /* warm honey gold */
  --color-black: #231f20;
  --color-gray-light: #ebefef; /*ORIGINAL #f0f4f3*/ /*options: #f1f4f4*/
  --color-gray-dark: #4F7573;
  --color-btn: #648b80; 
  --color-btn-hover: #231f20;   
  --color-blue: #777;
  --color-blue: orange;
  --color-white: #fff;
  --color-off-white: #f5f5f5; 
}


:root{
  --font-banner: "Candal", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

:root {
  --space-section: clamp(2rem, 6vw, 4rem);      /* vertical */
  --space-section-inline: clamp(1rem, 4vw, 2rem); /* horizontal (mobile emphasis) */
}

section {
  padding-block: var(--space-section);
  padding-inline: var(--space-section-inline);
}

/*SCROLL*/
:root {
  scroll-behavior: smooth;
}

/*---------------------------------------------------
GLOBAL
---------------------------------------------------*/

/*ICONS*/
@font-face {
  font-family: 'Bootstrap Icons';
  src: url('/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display: swap;
}

/*NAVBAR INCLUDE*/
.icon { width: 1em; height: 1em; vertical-align: -0.125em; } 

*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
    scrollbar-gutter: stable;  
    font-size: clamp(17px, 0.8vw + 0.75rem, 18px);
}

body {
    font-family: var(--font-body);
    color: var(--color-default);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 375; 
    overflow-x: hidden;
    margin: 0;
    padding-top: 90px;  
    transition: padding-right 0.2s ease; 
}

@media only screen and (max-width: 768px)  { body{margin-top: 50px;} }

body.modal-open { overflow: hidden; scrollbar-gutter: stable; }

/*TYPOGRAPHY*/

p { 
    font-family: var(--font-body); 
    font-size: 1rem; 
    line-height: 1.55;
    margin: 0 0 1em 0; 
    font-weight: 375; 
}

p strong {
	/*text-transform: uppercase;*/
	font-weight: 600;
	margin-bottom: 0;
}

.title-inline  {
	display: inline;
	padding-right: 10px;
	font-weight: 600;
	text-transform: none;
}


.lead { 
    font-weight: 375; 
	font-size: 1.15rem;
}

@media only screen and (max-width: 768px)  { .lead {font-size: 1rem} }

h2, .h2 { 
	font-family: var(--font-body); 
	color: var(--color-black); 
	font-size: clamp(1.625rem, 2.5vw + 1rem, 2rem);
	font-weight: 700; 
	line-height: 1.22; 
	margin: 0 0 0.7em 0;} 

h3, .h3 { 
	font-family: var(--font-body); 
	color: var(--color-black); 
	font-size: clamp(1.25rem, 1.8vw + 0.9rem, 1.4rem); 
	font-weight: 700; 
	line-height: 1.25; 
	margin: 0 0 0.6em; 
	text-transform: capitalize;} /*margin-top 1.6em*/

h3 span {
	text-transform:lowercase; }

@media (max-width: 575px){
	h3 {
		text-align: center;
	}
}

h4, .h4 { 
	font-family: var(--font-body); 
	color: var(--color-black); 
	font-size: clamp(1.1875rem, 1.2vw + 0.8rem, 1.3125rem); 
	font-weight: 600; 
	line-height: 1.3;  
	margin: 1.2em 0 0.5em; }

h5, .h5 { 
	font-family: var(--font-body); 
	color: var(--color-black); 
	font-size: clamp(.8rem, 1vw + 0.75rem, .9rem); /*1.0625/1.125*/
	font-weight: 600; 
	text-transform: uppercase;
	line-height: 1.35; 
    letter-spacing: 0.1rem;
	margin: 0 0 0.5rem;  }

h6 {
	font-family: var(--font-body); 
    color: var(--color-primary);
    font-size: clamp(.8rem, 1vw + 0.75rem, .9rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.35; 
    letter-spacing: 0.1rem;
    margin: 0 0 0.8rem;
    opacity: 0.95;
}

h7 {
    font-family: var(--font-body); 
	color: dimgray; 
	font-size: 15px;
	font-weight: 600; 
	text-transform: uppercase;
	line-height: 1.35; 
	margin: 0 0 1rem 0;  
}

h2 span, h3 span, h4 span, h5 span {
	text-transform: lowercase;
}

strong {
	font-weight: 600;
}

.fw-4 { font-weight: 400; }
.fw-5 { font-weight: 500; }
.fw-6 { font-weight: 600; }
.fw-7 { font-weight: 700; }
.fw-8 { font-weight: 800; }
.fw-9 { font-weight: 900; }




/*ANCHOR TAG*/
a { 
	color: #0080fe; 
	text-decoration: none; 
	transition: all ease-in-out 0.3s;
	font-weight: 400; }

a:hover { 
	color: var(--color-black); }

/*HORIZONTAL RULER*/
hr { 
	width: 70%; 
	margin-left: auto; 
	margin-right: auto; 
	color: var(--color-gray-dark); 
	padding-bottom: 20px; }

@media only screen and (max-width: 991px) { 
	hr { display: none;} }

@media only screen and (max-width: 575px) { 
	hr { display: none;} }

hr .show { 
	width: 70%; 
	margin-left: auto; 
	margin-right: auto; 
	color: var(--color-gray-dark); 
	padding-bottom: 20px; }

/*HEADER*/

@media only screen and (max-width: 575px) { .header { height: 50px;} }

@media only screen and (min-width: 576px) and (max-width: 767px) {.header {height: 50px;}} 
.header.sticked { border-color: #fff; border-color: #eee; }

.header {  background: #fff; transition: all 0.5s; z-index: 997; height: 90px; border-bottom: 2px solid #777; }

/*BRAND*/

@media (min-width: 1200px) {
  .brand {
	margin-top: 80px;
	}
  .brand img {
	max-height: 160px;
	}
}
@media (max-width: 1199px) {
  .brand {
	margin-top: 40px;
	}
  .brand img {
	max-height: 120px;
	}
}
@media (max-width: 768px) {
  .brand {
	margin-top: 50px;
	}
  .brand img {
	max-height: 100px;
	}
}


/*LOGO STACKING*/

body {
  margin: 0;
  padding-top: 90px;           
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: #fff;
  border-bottom: 2px solid #777;
  z-index: 997;
  overflow: visible;            
}

.brand {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
  margin-top: 0 !important;     
}

/* responsive for logo stacking */

/* min 1200px */
@media (min-width: 1200px) {
  .brand img { max-height: 130px;}
}

/* max 1199px */
@media (max-width: 1199px) {
  .brand img { max-height: 120px;}
}

/* 992px */
@media (max-width: 992px) {
  body { padding-top: 80px; }
  .header { height: 80px; }
  .brand { height: 80px; }
  
}

/* 768px */
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .header { height: 64px; }
  .brand { height: 64px; }
 .brand img { max-height: 100px; }
}

/* 480px */
@media (max-width: 480px) {
  body { padding-top: 56px; }
  .header { height: 56px; }
  .brand { height: 56px; }
 
}

/*NAVBAR*/

@media (min-width: 992px) { /*1280*/
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-body); 
    font-size: 14px;
    font-weight: 700;
	text-transform: uppercase;
    color: var(--color-black);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

   .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
  }

  .navbar .dropdown ul a i {
    font-size: 14px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    background: var(--color-primary);
	color: #fff;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 992px) { 

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*NAVBAR MOBILE*/

@media (max-width: 991px) { 
  .navbar {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-body); 
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 700;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    background: var(--color-primary);
	color: #fff;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }
	
  .cat-bg-home:hover {
	  color: white;
	}
	
  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #37373f;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: #37373f;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}
@media only screen and (min-width: 1051px) {.hazards {display: none }.hazardous {display: inline} }
@media only screen and (min-width: 991px) and (max-width: 1050px) {.hazards {display: inline} .hazardous {display: none} }
@media only screen and (max-width: 990px) {.hazards {display: none} .hazardous {display: inline} }

/*************************************************************Cat-bg on nav include*/
.cat-bg-leave {
	color: var(--color-primary);
}

@media (max-width: 1279px) { .cat-bg-leave:hover {
	  color: #fff;
	}
}

/*BREADCRUMBS*/

.breadcrumbs{
  padding: 15px 0;
  background: var(--color-primary);
  color: #fff;
  
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 0;
  }
}

.breadcrumbs h2 {
  font-size: 16px;
  font-family: var(--body);
  color: #fff;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media only screen and (min-width: 769px) {
	.breadcrumbs ol {
		text-align: right;
	}
}
@media only screen and (max-width: 768px) {
	.breadcrumbs ol {
		text-align: center;
	}
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

.breadcrumbs ol li a {
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

.breadcrumbs ol li a:hover {
  color: #222;
  text-decoration: none;
}

.breadcrumbs ol li a:active{
  color: #fff;
  font-weight: 700;
}

.breadcrumbs strong {
  font-weight: 700;
}

@media (max-width: 992px) {
	.breadcrumbs .d-flex {
	display: block !important;
	text-align: right;
	}

	.breadcrumbs h2 {
	display: none;
	}

	.breadcrumbs ol {
	display: block;
	}

	.breadcrumbs ol li {
	display: inline-block;
	} 
}


/* OLD BANNER*/


/*#banner {
  max-width: 100%;
  min-height: 30vh;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  position: relative;
}

#banner:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0; top: 0; left: 0; right: 0;
}

#banner .banner-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}
#banner h1 {
  font-family: var(--font-banner);
  margin: 0;
  font-size: 2.3rem; 
  font-weight: 500;
  color: #fff;
}

@media (min-width: 1024px) {
	#banner {
		background-attachment: scroll;
	}
}

@media only screen and (max-width: 575px){
	#banner {
		margin-top: 50px;
	}
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
	#banner .banner-container {
		min-height: 35vh;
	}
	#banner .banner-container h1 {
		font-size: 1.8em;
	}
}

@media only screen and (min-width: 751px) and (max-width: 768px) {
	#banner .banner-container {min-height: 20vh;}
	#banner .banner-container h1 {font-size: 1.8em;}
} 

@media only screen and (min-width: 701px) and (max-width: 750px) {
	#banner .banner-container {min-height: 50vh;} 
	#banner .banner-container h1 {font-size: 1.5em; margin-bottom: 2.5em;} 
}

@media (max-width: 700px) {   
	#banner .banner-container {
		height: 35vh;
	}

	#banner .banner-container h1 {
		font-size: 1.5em;
		margin-bottom: 1em; 
	}
}
			
@media only screen and (max-width : 318px ){
	#banner .banner-container {
		min-height: 100vh;
	}
	#banner .banner-container h1 {
		font-size: 1.5em;
	}
}		  

#banner h1 .span {
	display: block;
	line-height: 2;
	font-family: var(--font-default);
	font-size: 18px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}
@media only screen and (max-width: 991px) {
	#banner h1 .span {
		display: none;
	}
}

@media (max-width: 575px) {
  #banner { margin-top: 0}  
}*/


/*NEW BANNER CODE  - can delete .banner-container in HTML*/

#banner {
  max-width: 100%;
  min-height: 30vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}


#banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}


#banner h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-banner);
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #fff;
}

@media (max-width: 575px) {
  #banner {
    margin-top: 0;
  }
}



/*NEW BANNER CODE END*******************************/




/*SECTION, SECTION PADDING*/

section {
  padding-block: var(--space-section);
}

/**********************************delete this*/
section .mobile { 
	margin-top: 0;
}

/*SECTION H2 FOR INTRO*/

section .bottom-line h2 {
  font-family: var(--font-body);
  color: var(--color-black);
  font-size: clamp(26px, 2.5vw + 1rem, 32px);
  font-weight: 700;
  line-height: 1.22; 
  text-transform: capitalize;
  position: relative;
  text-align: center;
  margin: 0 0 30px 0;
  padding-bottom: 20px;
}

@media (max-width: 575px) {
  section .bottom-line h2 {
	  margin: 30px 0 30px 0;
	  padding-bottom: 20px;
	} 
}

section .bottom-line h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: var(--color-primary);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*SECTION-HEADER*/

.eyebrow {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 0 0.1em 0;
  opacity: 0.85;
}

.section-header {
  margin-top: 0;
  text-align: center;
  padding-bottom: 15px;
}


@media only screen and (max-width: 575px) {
	.section-header {
	padding-top: 25px;
	}
}

.section-header h2 {  /*.section-title*/
  font-family: var(--font-body); 
  color: var(--color-black);
  font-size: clamp(26px, 2.5vw + 1rem, 32px); 
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.22; 
  margin-bottom: 20px;
}

.section-header h2 {  /*.section-title*/
  content: none;
}

.section-header h2 span {
	text-transform: lowercase;
}

/*SPACING*/

/*padding*/
.p-4a {
	padding: 2rem;
}

.p-4b {
	padding: 2.5rem;
}

.p-lg-4a {
	padding: 2rem;
}

.p-lg-4b {
	padding: 2.5rem;
}

/*padding bottom*/
.pb-4a {
	padding-bottom: 2rem;
}
.pb-4b {
	padding-bottom: 2.5rem;
}

.pb-lg-4a {
	padding-bottom: 2rem;
}

/*for fresnel lens page*/
@media (min-width: 576px) and (max-width: 990px){
	.pad-bottom {
		padding-bottom: 0;
	}
}



/*padding-top*/
.pt-4a {
	padding-top: 2rem;
}
.pt-4b {
	padding-top: 2.5rem;
}

/*margin*/
.m-4a {
	margin: 2rem;
}

.m-4b {
	margin: 2.5rem;
}

/*margin bottom*/
.mb-4a {
	margin-bottom: 2rem;
}
.mb-4b {
	margin-bottom: 2.5rem;    
}
.mb-lg-4a {
	margin-bottom: 2rem;
}
.mb-lg-4b {
	margin-bottom: 2.5rem;    
}

/*margin-top*/
.mt-4a {
	margin-top: 2rem;
}
.mt-4b {
	margin-top: 2.5rem;
}

@media(max-width: 991px){
	.nudge {
		margin-left: 5px;
	}	
}

/*Helps to align background images with divs below*/
@media (min-width: 991px){
	.margin-nudge-right {
		margin-right: 1px;
	}	
}

@media (min-width: 991px){
	.margin-nudge-left {
		margin-left: 1px;
	}	
}

@media (min-width: 991px){
	.margin-nudge {
		margin-left: 1px;
		margin-right: 1px;
	}	
}

@media(max-width: 575px){
	.nudge-3 {
		margin-left: 3px;
	}	
}


/*spacing only*/
.pad {
	padding: 20px 30px 5px 30px;
}

/*spacing with outline*/
@media (min-width: 576px){
.pad-outline {
	padding: 30px 30px;
	outline: 2px solid #fff;
	outline-offset: -5px;
    }
    
.pad-outline-dark {
	padding: 30px 30px;
	outline: 2px solid #999;
	outline-offset: -2px;
    border-radius: 7px;
    }
    
.pad-outline-shadow {
	padding: 30px 30px;
	outline: 2px solid #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
	outline-offset: -2px;
    border-radius: 7px;
    }
}





@media (max-width: 575px){
	.pad-outline {
		padding: 0;
		padding-left: .3rem;
		outline: 0;
		outline-offset: 0;
	}
	.pad-outline-dark {
		padding: 0;
		padding-left: .3rem;
		outline: 0;
		outline-offset: 0;
	}
    
    .pad-outline-shadow {
        padding: 0px;
        outline: 0px;
        outline: none;
        box-shadow: 0px 0px 0px rgba(#fff, #fff, #fff, 0);
        outline-offset: 0px;
    }
    
    .pad {
        padding: 0;
        }
    
}

/*COLORS AND SECTION BACKGROUND COLORS*/

/*colors*/

.primary {
	color: var(--color-primary);
}

.secondary {
	color: var(--color-secondary);
}

/*background colors on all devices*/

.bg-sec {
	background: var(--color-secondary); 
}

@media (max-width: 575px){
	.bg-sec {
		background: var(--color-gray-light); 
	}
}

.bg-gray {
	background: var(--color-gray-light); 
}

.bg-black {
	background: var(--color-black);
}

.bg-off-white {
	background: #f5f5f5; 
}


/*section background colors - tablet and desktop = white or inherit on mobile*/

.background-1 {
	
	background: var(--color-gray-light);
	padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.background-2 {
	margin-top: 1.5rem;
	background: var(--color-secondary);
	padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.background-3 {
    margin-top: 1.5rem;
	background: var(--color-off-white);
	padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.background-4 {
    margin-top: 1.5rem;
	background: var(--color-white);
	padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.background-5 {
    margin-top: 1.5rem;
	box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
	background: var(--color-white);
	padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.background-6 {
    margin-top: 1.5rem;
	box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
	background: var(--color-white);
	padding: 1.5rem 2.2rem 1rem 2.2rem; /*1.5rem 2.3rem 1rem 2.3rem*/
}

@media (max-width: 575px){
    .background-1, .background-2, .background-3, .background-4 {
        margin-top: 0;
        background: inherit;
        padding: 0;
    }
    
    .background-5, .background-6 {
        margin-top: 0;
        box-shadow: none;
        background: inherit;
        padding: 0;
    }
}


/*for box shadow surrounding "during" section on each before/during/after pages*/

.box-shadow { box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1) }
@media (max-width: 575px){
.box-shadow { box-shadow: none }   
} 

/*mobile background only color*/

.bg-mobile {
    background: var(--color-gray-light);    
}

/*bounding box*/

.info {
	border: solid 1px var(--color-primary);
}

.info-right {
    border-right: solid 1px var(--color-primary);
}

@media (max-width: 991px){
    .info-right {
        border-right: none;
        border-bottom: solid 1px var(--color-primary);
    }
}

.primary-bg {
	display: block;
	background: var(--color-primary);
	outline: 2px solid var(--color-primary);
	color: #fff;
	text-align: center;
}

@media only screen and (max-width: 575px) {
	.primary-bg {
		display: block;
		background: var(--color-white);
		outline: none;
		color: var(--color-default);
		text-align: center;
	}
}

.section-bg {
  background: var(--color-secondary);	
}

@media only screen and (max-width: 575px) {
	.section-bg {
	  background: #fff;	
	}
}

.bg-second {
	background: var(--color-secondary);
}

.section-bg-gray {
  background-color: var(--color-gray-light);
}

@media only screen and (max-width: 575px) {
	.section-bg-gray {
		background: inherit; 
	}
}

/*section border background colors - white on mobile*/

.section-bg-white {
	background-color: #fff;
	padding: 2rem ;
}

@media(max-width: 575px){
	.section-bg-white {
		background-color: inherit;
		padding: 0;
	}
}

.section-white {
	box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
	background: #fff;
	padding: 2rem 2.7rem 2rem 2.7rem; /*2rem 2.5rem .8rem;*/
	/*margin-left: .1em;*/
}

@media only screen and (max-width: 990px) {
	.section-white.tablet {
		box-shadow: none;
		background: inherit;
		padding: 0;
	    margin-left: 0;
		padding-right: .6em;

	}
}

@media only screen and (max-width: 575px) {
	.section-white {
		box-shadow: none;
		background: inherit;
		padding: 0;
	    margin-left: 0;
		/*padding-right: .6em;*/

	}
}

/*fix/change**************************************************delete eventually*/

.black-bg {
	background: var(--color-black);
}

@media only screen and (max-width: 575px) {
	.section-white.bg { /*for solar generator page */
		background-color: var(--color-gray-light);
	}
}

/*COLORS AND SECTION BACKGROUND COLORS************************delete eventually*/
.secondary-background {
	background: var(--color-secondary);
}

.gray-background {
	background: var(--color-gray-light);
}

.secondary-bg {
	background: var(--color-secondary);
	/*font-family: var(--body);*/
	font-size: 18px;
	line-height: 24px;
	/*padding: 1.2rem 1.5rem;*/
	padding: 1.4em 2em;
	border-radius: 10px;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

@media only screen and (max-width: 575px) {
	.secondary-bg {
		background: #fff;
		/*font-family: var(--body);*/
		font-size: 18px;
		line-height: 24px;
		padding: 0;
		border-radius: 0;
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	
	.bg-mobile {
		background-color: var(--color-gray-light);
	}
}

@media only screen and (min-width: 576px) {
	.bg-mobile {
		background-color: #fff;
	}
}

.secondary-xp-bg {
	background: var(--color-secondary);
	font-size: 14px;
	line-height: 24px;
	padding: 1.8rem 2.2rem 1.5rem 1.5rem;
	border-radius: 20px;
	margin-top: 2rem;
	margin-bottom: 1rem;
	outline: 1px solid var(--color-primary);
}

/*SEPARATORS*/

.separator-left {
	border-left: 2px solid var(--color-primary);
	margin-left: 2px
}

.separator-left-bg {
	border-left: 2px solid var(--color-primary);
	margin-left: 2px;
	background: var(--color-off-white);
	padding-top: .5rem;
	padding-right: .8rem;
	padding-bottom: 1rem;
}

.separator-right {
	border-right: 2px solid var(--color-primary);
}

.separator-middle {
	border-right: 2px solid var(--color-primary);
	margin-left: auto;
	margin-right: auto;
}

/*BACKGROUND IMAGES AND BORDERS*/

.img-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}

.vertical-line {
	border-left: solid 2px var(--color-primary);
	padding-left: 20px;
}

/*box designs with text and background color*/
.cap { 
	display: inline;
	font-size: 17px; /*(matched 18px better)*/
    color: var(--color-primary);
    letter-spacing: 1px;
    font-weight: 600;  
    text-transform: uppercase;
    margin: 0 0 0.5em; }

.tip {
	font-family: var(--font-body);
    color: #fff;
	display: inline;
	font-size: 17px;
    letter-spacing: 1px;
    font-weight: 500;  
    text-transform: uppercase;
	padding-right: 5px;
    margin: 0;
}


.tip-bg {
	padding: 20px 30px 25px 30px;
	outline: 2px solid #fff;
	outline-offset: -5px;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.45;
	margin-bottom: 0;
}

.gradient {
	position: relative;
	isolation: isolate;
}

.gradient::after {
	content:'';
	background-image: linear-gradient(90deg, #4F7573, #648b80, #4F7573 ); /*(45deg, #12c2e9, #c471ed, #f64f59);*/
	position: absolute;
	z-index: -1;
	inset: 0;
	/*transform: skewY(-2deg);*/
}

.gradient-1 {
	position: relative;
	isolation: isolate;
}

.gradient-1::after {
	content:'';
	background-image: linear-gradient(45deg, #4F7573, #648b80);
	position: absolute;
	z-index: -1;
	inset: 0;
	/*transform: skewY(-2deg);*/
}

.alert {
	font-size: 1.2rem;
	padding: 2rem;
	background: var(--color-secondary);
	margin-bottom: 1rem;
	margin-left: 0px;
}

.primary-outline-text {
	outline: 1px solid var(--color-accent);
	color: var(--color-black);
	background: var(--color-secondary);
	/*font-family: var(--body);*/
	font-weight: 400;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 1.5em;
}

.primary-bg-text {
	background: var(--color-primary);
	color: #fff;
	padding: 5px 7px 3px 7px;
	display: inline-block;
	border-radius: 7px 0px 7px 0px;
	margin-bottom: 1rem;
}

.primary-text {
	color: var(--color-accent);
	/*font-family: var(--font-body);*/
	font-weight: 700;
	line-height: 1.5;
	
}

.primary-outline {
	padding: 1.8rem 1.5rem 1.5rem 1.5rem;
	border-radius: 20px;
	margin-top: 2rem;
	margin-bottom: 1rem;
	outline: 1px solid var(--color-primary);
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

/*FRAME AND OUTLINE AFFECTS*/

/*frame affect*/
.image-border {
  padding: 10px;
  background-color: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); 
}

/*outline affect*/
.photo-outline {
	outline: 2px solid #fff;
	outline-offset: -5px;
}

@media (max-width: 575px){
    .photo-outline {
        outline: none;
        outline-offset: 0;
    }   
}

/*.photo-outline {
    position: relative;
}

.photo-outline::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px solid #fff;
    pointer-events: none;
}

@media (max-width: 575px){
    .photo-outline::after {
        display: none;
    }
}
*/


/*SCROLL TOP & BACK*/

.scroll-top, .scroll-back {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  z-index: 3980;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top {
  bottom: 75px;
}

.scroll-back {
  bottom: 15px;
}

.scroll-top i, .scroll-back i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top i:hover, .scroll-back i:hover {
  font-size: 24px;
  color: var(--color-primary);
  line-height: 0;
}

.scroll-top:hover, .scroll-back:hover {
  background-color: #fff;
  color: var(--color-primary);
  border: solid 2px var(--color-primary);
}

.scroll-top.active, .scroll-back.active {
  visibility: visible;
  opacity: 1;
}

/*FOOTER*/

.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .social-links a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.bi-rumble {
	background-image: url("../img/social/rumble.png");
	height: 16px;
	width: 16px;
}

.footer .copyright {
  font-size: 12px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 12px;
  padding-bottom: 10px;
}

.footer .credits .ensign {
  font-size: 10px;
}

.footer .credits .link {
  font-size: 10px;
}

.footer .credits a {
  color: rgba(255, 255, 255, 0.7);
}


/*ICONS & LISTS*/

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list ul {
	padding-left: 0;
	margin-left: 0;
}

.list li {
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 10px;
  line-height: 1.45;
  color: var(--color-default);
}

.list li i {
  color: var(--color-primary);
  flex-shrink: 0;
}

.list .number {
	font-weight: 700;
	color: var(--color-primary);
	margin-right: 5px;
}

/*BULLET POINTS*/

.point ul {
	margin-left: 0;
	padding-left: 0;
	list-style-position: outside;
}

.point li::marker {
	color: var(--color-primary);
}

.point li {
	color: var(--color-default);
    margin-bottom: 0.4rem;
    line-height: 1.5;
    gap: 0.75rem;     
	padding-left: 0;
    margin-left: 0;
}

/*For icon-less LIST ITEMS************************delete eventually*/
.lists  ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lists  ul li {
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--color-default);
  font-weight: 400;
  gap: 0.75rem; 
}

.lists  ul i {
  font-size: 1rem; 
  color: var(--color-default);
} 

/*REGULAR BULLETS FOR LIST ITEMS************************delete eventually*/

.home-list ul {
	margin-left: 0;
	padding-left: 0;
    margin-left: 1.25rem;
}

.home-list li::marker {
	color: var(--color-primary);
}

.home-list li {
	color: var(--color-default);
    margin-bottom: 0.4rem;
    line-height: 1.5;
    gap: 0.75rem; 
}


/*CTA*/

/*1920 x 995 images*/
.cta-purification {
	background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/stay/water/water-purification/cta/water-utility-report.jpg") fixed center center;
}

.cta-non-potable {
	background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/stay/water/non-potable/cta/lake.jpg") fixed bottom center;
}

.cta {
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
	line-height: 1.5;
}

.cta .cta-btn {
  /*font-family: var(--body);*/
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*********************************************SPACING HACKS TO FIX AND DELETE*/

/*line-height and font reduced*/

/*.lh-reduced {
	display: block;
	line-height: 1.3em;
	font-size: 14px;
}

.lh-reduced-marg {
	margin-top: 10px;
	display: block;
	line-height: 1.3em;
	font-size: 14px;
	padding: 0;
}*/

/*********************************************SPACING HACKS TO FIX AND DELETE END*/

/*Search  & Search Modal Styles*/
/* Trigger button */
.search-trigger {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

/* Modal Overlay (hidden by default) */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.search-modal.active {
  opacity: 1;
  pointer-events: auto;
  animation: zoomIn 0.3s ease forwards;
}

.search-modal.closing {
  animation: zoomOut 0.3s ease forwards;
}

/* Modal Content Box for Search */
.search-box {
  background: white;
  padding: 2rem;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  border-radius: 8px;
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes zoomOut {
  from { transform: scale(1); opacity: 1; }
  to   { transform: scale(0.95); opacity: 0; }
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

/*MISC*/

/*Make divs the same height*/

.example {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.example .type {
  display: flex;
}

.example .type .type-info {
  flex: 1 1 auto;
}

/*404 Error*/
@media only screen and (min-width: 991px) {
	.page-not-found {
		background-color: #05070a;
		display: flex; 
		min-height: 10vh; 
		flex-direction: column; 
		justify-content: space-between;
	}
}

/*print margins*/
@media print {
  @page {
    margin: 10mm !important;
  }
}

/*trademark style and positioning*/
.tm {
	font-size: 10px;
	font-weight: 300;
	vertical-align: super;
	position: relative;
	top: -0.5em;
}
.trademark {
	font-size: 14px;
	font-weight: 400;
	vertical-align: text-top;
	position: relative;
	padding-top: 0.5em;
}

/*placeholder classes only*/
.bg-image {
	/*padding: 9em;*/
	background-image: url("../img/template/image1.jpg");
	background-repeat: no-repeat;
	background-position: center;
}

@media only screen and (max-width: 1199px) {
	.img-border-placeholder {
		background-image: url("../img/template/bg-placeholder.png");
		object-fit: cover;
		padding: 6em;
	}	
	.bg-image {
		margin-bottom: 2em;
		min-height: 300px;
	}
}

/* for linking from one page to another using smooth scroll*******DELETE?*/
.anchor-target {
  scroll-margin-top: 90px; 
}

/*-----------------------------------------------------------------------------------------
INDIVIDUAL SECTION CATEGORIES AND PAGES OF SITE
-----------------------------------------------------------------------------------------*/

/******HOMEPAGE******/

#categories { /*for cta button*/
	scroll-margin-top: 300px;
}

/*Hero*/

#hero {
  max-width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 75vh;
  margin-top: 0;
}

@media only screen and (max-width: 991px) {
	#hero {
	  min-height: 90vh;
	}
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}


.hero h1 {
  font-size: clamp(40px, 4.5vw + 1rem, 48px); /*3em*/
  font-weight: 900;
  line-height: 1.2em;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-body); 
  justify-content: center;
}

.hero h2 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw + 0.9rem, 24px); /*24px*/
  margin-bottom: 40px;
  opacity: 0.85;
  line-height: 36px;
  text-transform: lowercase;
}

.hero h2 span {
	text-transform: uppercase;  
}

.hero h2:after {
  content: none
}

.hero .btn{
  /*font-family: var(--font-body);*/ 
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-btn);
}

.hero .btn:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero-bg {
   background: url("../img/home/hero/hero-image-2300.png") center right;
}
@media only screen and (max-width: 1600px) {
	.hero-bg {
	   background: url("../img/home/hero/hero-img.jpg") center right;
	}
	.hero h5 {
	   text-align: center;
	}
}

@media only screen and (max-width: 1200px) {
	.hero-bg {
	   background: url("../img/home/hero/1200x700.jpg") center center;
	}
	.hero h5 {
	   text-align: center;
	}
}
@media only screen and (max-width: 900px) {
	.hero-bg {
	   background: url("../img/home/hero/900x700.jpg") center center;
	}
	.hero h5 {
	   text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	#hero {
		  min-height: 90vh;
		  margin-top: 0px;
		}
}

/*Intro*/

.intro {
	background-color: black;
	border-top: 1px solid #a9a9a9;
	padding-top: 3em;
	margin-bottom: 0;
	padding-bottom: 2em;
}

.intro p {
	font-size: 1.25em;
	color: #fff;
	font-weight: 400;
	text-align: center;
	
}

@media only screen and (max-width: 575px) {
	.intro {
		padding-top: 2.3em;
	}
}

.categories {
	padding: 60px 0 10px 0;
}

/*images*/

#category-1 {
  background: url("../img/stay/house.jpg") center center no-repeat fixed;
  background-size: cover;
  position: relative;
}

#category-1::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9); 
  z-index: -1;
}

#category-2 {
  background: url("../img/go/freeway.jpg") center center no-repeat fixed;
  background-size: cover;
  position: relative;
}

#category-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

#category-3 {
  background: url("../img/plan/plan.jpg") center center no-repeat fixed;
  background-size: cover;
  position: relative;
}

@media only screen and (max-width: 991px) {
	#category-3 {
	  background: url("../img/plan/plan.jpg") bottom left no-repeat fixed;
	}
}

@media only screen and (max-width: 575px) {
	#category-3 {
	  background: url("../img/plan/plan.jpg") bottom left no-repeat fixed;
	}
}

.categories .img img {
  transition: 0.6s;
}

.categories .details {
  padding: 50px 30px;
  margin: -100 20px 0 20px; 
  transition: all ease-in-out 0.3s;
  background: #ffffff;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.2);
}

.categories .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid #ffffff;
}

.categories .details h3 {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
  text-align: center;
  margin-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #fff;
} 
.categories .details h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: var(--color-primary);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.categories .details p {
  margin-top: 30px;
  margin-bottom: 0;
}

.categories .category-name:hover .details .icon {
  background: #ffffff;
  border: 2px solid var(--color-primary);
}

.categories .category-name:hover .details .icon i {
  color: var(--color-primary);
}

.categories .category-name:hover .details:hover .icon i {
  color: var(--color-primary);
}

.categories .category-name:hover .img img {
  transform: scale(1.2);
}

/*Home-faq*/

/* Custom accordion colors */
.accordion-button {
  background-color: var(--color-primary);
  color: #fff;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1); /* Make arrow white */
}

.accordion-body {
  background-color: #fff;
  color: #000;
}

/*Home-cta*/
.cta-after-faq {
	background: var(--color-secondary);
}

.cta-after-faq h3 {
	margin-top: 20px;
}

 .cta-after-faq .btn { 
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-btn);
  margin-bottom: 20px;
}

.cta-after-faq .btn:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-black);
}


/******CATEGORY PAGES*****/

/*breadcrumb fix for 3 category pages*/
.breadcrumb-fix {}

@media only screen and (max-width: 575px){
	section .breadcrumb-fix {
	margin: 0;
	}
}

@media only screen and (min-width: 769px) and (max-width: 991px) {
	section .breadcrumb-fix {
	margin: 0;
	}
}

@media only screen and (max-width: 575px) and (max-width: 768px) {
	section .breadcrumb-fix {
	margin: 0;
	}
}

/*@media (max-height: 575px) {
	section  .banner-container {
	margin: 0;
	}
}*/

@media ( max-width : 318px ){
	section .breadcrumb-fix {
	margin: 0;
	}
}

#category-3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}

.category {
	z-index: 1;
}

.category h3 {
  text-transform: capitalize;
  color: var(--color-black);
  font-size: 1.2em;
  position: relative;
  text-align: left; 
  font-weight: 900;
}

/*.category p {
  font-size: 1.25rem;
  line-height: 1.5em;
  text-align: left;
  color: var(--color-black);
}*/

.category .img {
  border-radius: 3px;
  overflow: hidden;
}

.category .img img {
  transition: 0.6s;
}

.category .details {
  padding: 10px 30px 30px;
  margin: -60px 10px 0 10px;
  transition: all ease-in-out 0.3s;
  background: #ffffff;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 3px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.category .details h3 {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 1.8vw + 0.9rem, 1.4rem); 
  font-weight: 700;
  position: relative;
  text-align: center;
  margin-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #fff;
} 
.category .details h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  background: var(--color-primary);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.category .details h3 span {
    text-transform: lowercase;
}

.category .details p {
  font-size: 1rem;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 0; 
}

.sidebar h3 {
	font-family: var(--font-body);
}

/*@media (max-width: 575px){
	.sidebar h3 {
		text-align: center;
	}	
}

.sidebar p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}*/

.category .category-name:hover .details h3 {
  color: var(--color-black);
}
.category .category-name:hover .img img {
  transform: scale(1.2);
}

/*for equal div heights*/

#category-2 .col-12 {
  display: flex;
  flex-direction: column;
}

#category-2 .category-name {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#category-2 .details {
  flex-grow: 1;
}

#category-3 .col-12 {
  display: flex;
  flex-direction: column;
}

#category-3 .category-name {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#category-3 .details {
  flex-grow: 1;
}

/*overlay*/

.darkened-image {
    position: relative;
    display: inline-block;
}

.darkened-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.darkened-image img {
    display: block;
    width: 100%;
    height: auto;
}


/*----------------------------------------------------------------------------------------------------------------
STAY & LEAVE SHARED TAB ELEMENTS
----------------------------------------------------------------------------------------------------------------*/

/*Methods - tabs used: water purification, water sanitation, short-term food, go-bag contents*/
/*#methods { padding: 30px 0 25px 0; }*/

/*@media only screen and (max-width: 575px) {
	#methods {
		margin-right: 10px;
	}
}*/

/*.tab-content {
    padding-right: 10px;
}*/

#methods .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
}

#methods .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 10px;
}

#methods .pathogen .nav-tabs li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

#methods .nav-tabs li:last-of-type {
  margin-right: 0px;
}

#methods .nav-tabs a {
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
  border-radius: 7px;
  transition: ease-in-out 0.3s;
}

#methods .nav-tabs a:hover {
  background-color: var(--color-black);
}

#methods .nav-tabs a.active {
  background-color: var(--color-white);
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
}

#methods h4 {
	font-size: 21px;
	/*font-family: var(--font-body);*/ 
	color: var(--color-black);
	font-weight: 700;
}

@media (max-width: 991px) {
  #methods .nav-tabs a {
    padding: 5px 10px;
  }
}

@media only screen and (min-width: 321px) and (max-width: 767px) {
	#methods .nav-tabs a {
	padding: 5px 10px;
	margin-bottom: 10px;
	}
}

#methods .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
	#methods .sub-heading {
	width: 75%;
	}
}

#methods .tab-pane {
  transition: ease-in-out 0.2s;
}

#methods .method:hover {
  background-color: #fff;
}

.method {
	margin-top: 30px;
}

.method h3{
	margin-top: 10px;
	font-weight: 700;
}

#methods .method h4 {
	/*font-family: var(--font-body);*/ 
	margin-top: 0px;
	font-weight: 600;
}

#methods h6 {
	text-align: left;
	margin: 0 0 1em 0;
}

/*---------------------------------------------------
STAY
---------------------------------------------------*/
/*************WATER STORAGE*************/

/*HOW MUCH PAGE*/

.how-much .about .content {
  background: #fff;
  padding: 40px;
  color: var(--color-default);
}

.how-much .about h3 {
  font-weight: 700;
  color: var(--color-black);
  text-align: left;
}

.how-much .about p {
	font-size: 18px;
}

.how-much .stats {
	border-left: solid 2px var(--color-primary);
	padding-left: 20px;
}
.how-much .about .title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
  text-align: left;
}

.how-much .about .title:last-of-type {
	margin-top: -10px;
}

.how-much .about .description {
  display: block;
  font-weight: 400;
  font-size: 18px;
  margin-top: -1px;
}

.quote-box {
	/*font-family: var(--font-body);*/ 
	font-weight: 400!important;
	margin: 50px;
	padding: 20px;
	background: rgba(33,37,41,.7);
	color: #fff;
	font-size: 21px;
	line-height: 31px;
}

@media only screen and (max-width: 991px) {
	.quote-box {
		background: rgba(33,37,41,.5);
		padding: 20px;
	    font-size: 19px;
	    line-height: 1.5;
		font-weight: 500;
	}
}

@media only screen and (max-width: 767px) {
	.quote-box {
		background: rgba(33,37,41,.7);
		margin: 0px;
		padding: 15px;
		font-weight: 500;
	}
}

#car p {
	text-align: left;
}

/*CONTAINER OPTIONS PAGE*/

/*Container Types*//*This code does not belong to this page*/

.container-types {
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.container-types img {
  border-radius: 0;
}
.container-types .card {
  outline: 1px solid var(--color-gray-light);
  text-align: center;
}
/*for options page*/
#fuel-option-categories .container-types .card {
  outline: 10px solid var(--color-gray-light);
  text-align: center;
}
/*.container-types .card-body {
  -moz-text-align-last: center;
  text-align-last: center;
}
.container-types .card-title a {
  font-weight: 600;
  font-size: 18px;
  color: #334240;
  transition: ease-in-out 0.3s;
}
.container-types .card-title a:hover {
  color: var(--color-primary);
}
.container-types .card-text {
	font-size: 14px;
}

.container-types .btn {
  border-radius: 50px;
  padding: 5px 25px 6px 25px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  font-size: .7em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.container-types .btn:hover {
  color: #fff;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}*/

/*Container Options*/

/*#container-options .box-pad {
	background: red;
	padding: 18px;
	margin: 0px;
	margin-top: 0px;
	margin-bottom: 18px;
}

#container-options .box-options .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
  margin: 0px
}

#container-options .box-options .option-item .card-bg { 
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#container-options .box-options .option-item .card-body {
  padding: 25px; 
}

#container-options  .box-options .option-item .card-title h4  {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 10px;
}

#container-options p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	#container-options  .card-body {
	padding: 20px 30px;
	}
}

#container-options .weight-info {
  margin-top: 1rem;
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}*/

/*@media only screen and (max-width: 1199px) {
	#container-options .box-options .option-item .card-bg {
	min-height: 300px;
	}

	#container-options .box-options .option-item h4 {
	margin-top: 1rem;
	text-align: center;
	}
}*/

.proper-plastic {
	margin-top: -1.5rem;
}

/*CONTAINER OPTIONS PAGE*/
#water-containers h3 {
	color: var(--color-primary);
	text-transform: uppercase;
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-align: center;
}

#water-containers h3 span {
	text-transform: lowercase;
}

.container-types {
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.container-types img {
  border-radius: 0;
}
.container-types .card {
  outline: 1px solid var(--color-gray-light);
  text-align: center;
}
.container-types .card-body {
  -moz-text-align-last: center;
  text-align-last: center;
  position: relative;
  padding-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	#container-types  .card-body {
	padding: 20px 30px;
	}
}

.container-types .card-title a {
  font-weight: 700;
  font-size: 20px;
  color: #334240;
  transition: ease-in-out 0.3s;
}
.container-types .card-title a:hover {
  color: var(--color-primary);
}
.container-types .card-text {
	font-size: 1rem;
	color: var(--color-black);
	font-weight: 400;
}

.container-types .btn {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 4px 10px 4px 12px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
	
}
.container-types .btn:hover {
  color: #fff;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	#container-types  .card-body {
	padding: 20px 30px;
	}
}

#container-types .weight-info {
  margin-top: 1rem;
  font-size: 13px;
  font-style: normal;
  line-height: 20px;
}

@media only screen and (max-width: 1199px) {
	#container-types .box-options .option-item .card-bg {
	min-height: 300px;
	}

	#container-types .box-options .option-item h4 {
	margin-top: 1rem;
	text-align: center;
	}
}

/*CONTAINER OPTIONS PAGE Cont */

#water-container .box-padding {
	background: var(--color-secondary);
	padding: 18px;
	margin: 0px;
	margin-top: 0px;
	margin-bottom: 18px;
}
@media only screen and (max-width: 991px) {
	#water-container .box-padding {
	background: none;
	padding: 0;
	margin: 0;
	margin-bottom: 32px;
	}
	
	#water-container .box-padding .photo-outline {
		border-radius: 7px 7px 0 0;
	}
}

#water-container .box-padding .option-item-border {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

@media only screen and (max-width: 991px) {	
	#water-container .box-padding .option-item-border {
	border-radius: 7px;
	}
}

#water-container .card-body  {
	padding: .5rem 1rem .5rem .5rem;
}

@media (max-width: 991px){
	#water-container .card-body  {
		padding: 1rem 2rem 1rem 2rem;
	}
}

#water-container h3 {
	font-weight: 700;
	color: var(--color-black);
	font-size: clamp(1.25rem, 1.8vw + 0.9rem, 1.4rem); 
	text-transform: capitalize; 
	margin: 0.8em 0 0.6em 0;
	line-height: 1.25;
}

#water-container h3 span {
	text-transform: lowercase;
}

#water-container p {
  color: var(--color-default);
  line-height: 1.55;
  margin: 0 0 1.2em 0;
}

#water-container .background-1 {
	margin-top: 1.5rem;
	background: var(--color-gray-light);
	padding: 0 1.5rem 1rem 1.5rem;
}

#water-container .background-2 {
	margin-top: 1.75rem;
	background: var(--color-secondary);
	padding: 0 1.5rem 1rem 1.5rem;
}

#water-container .card-body button {
	color: #0080fe;
	text-decoration: none;
	transition: all ease-in-out 0.3s;
}

#water-container .card-body button:hover {
	color: var(--color-black);
}

/*read-more drop down*/
#water-container .read-more .collapse:not(.show) { /*(hides padding on collapsed panel before its clicked open)*/
  padding: 0;
}

#water-container .read-more .card-body-bottom {
  border: none;
  outline: none;
}

#water-container .card-body-bottom  {
	padding: 0 2rem 1.3rem 2rem;
}

#water-container .read-more .collapsible {
  background-color: #fff;
  color: #0080fe;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  margin-bottom: 0px;
  transition: all ease-in-out;
}

#water-container .read-more .active, .collapsible:hover {
  color: var(--color-black);
}

/*quick look*/
#water-container h6 { font-size: 1rem; font-weight: 600; color: #648b80; margin-top: 1.8rem; }
#water-container .quick { line-height: 1.8;}
#water-container .quick span { font-weight: 600; color: #648b80; }
#water-container .quick p { line-height: 1.55; margin-bottom: .5rem}

@media(max-width: 575px) {
    #water-container h6 {
        padding-left: 8px;
    }
    #water-container .quick {
        padding-left: 8px;
    }
    #water-container .quick span {
        font-weight: 700;
    }
}

#water-container .read-more h4 {
	margin-top: 1.5rem;
	margin-bottom: .8rem;
}

#water-container .read-more .em {
	font-style: italic;
	font-size: 16px;
}

#water-container .point span { font-weight: 500; color: var(--color-default); }

#water-container .read-more .middle-border {
    position: relative;
}

@media (min-width: 992px) {
	#water-container .middle-border::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 80%;
	background-color: #ccc;
	}
}

@media (max-width: 991px) {
    #water-container .middle-border::before {
        display: none;
    }
}

/*genertic column count within read-more*/

#water-container .column-count-2 {
	column-count: 2;
}

#water-container .column-count-3 {
	column-count: 3;
}

@media (max-width: 991px) {
	#water-container .column-count-2 {
		column-count: 1;
	}
}

/*generic read-more drop-down - within column*/
#water-container .collapsible { 	/*button style*/
  background-color: #fff;
  color: var(--color-blue);
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  margin-bottom: 16px;
}
#water-container .active, .collapsible:hover {
  color: var(--color-primary);
}

/* general for collapse. Note: hidden by default */
#water-container .box-pad .content {
   padding: 0;
   background-color: #fff;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.2s ease-out;
}

/*PREPARING CONTAINERS PAGE*/



/*PLACING CONTAINERS PAGE*/

.drums .weight-info {
	marin-top:2rem;
	font-size: 13px;
	font-style: normal;
	line-height: 20px;
	/*font-family: var(--font-body);*/ 
}

/*NON-POTABLE PAGE*/

#non-potable .photo-container {
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

#non-potable .photo-container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#non-potable .photo-container .box {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding: 0 15px;
}

#non-potable .photo-container .box h4 {
  font-weight: 700;
  color: #fff;
  display: inline-block;
  border-radius: 7px;
  justify-content: center;
  align-items: center
}

#non-potable .source {
  /*font-family: var(--font-body);*/ 
  color: var(--color-default);
  font-size: 17px;
  line-height: 1.45;
  background: var(--color-gray-light); 
  padding: 24px 16px 24px 24px; 
  text-align: left; 
  margin-bottom; 0;
}

@media only screen and (max-width: 575px) {
	#non-potable .source {
		padding: 24px 0 0 0; 
	}
	#non-potable .source {
		background: #fff; 
	}
}

#non-potable .col-12 {
  display: flex;
  flex-direction: column;
}

#non-potable .source {
  flex-grow: 1;
}

/*PURIFICATION PAGE*/

/*for impurities */
.impurities .box-options .option-items {}

.impurities .photo-container {
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.impurities .photo-container:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.impurities .photo-container .box {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding: 0 15px;
}

.impurities .photo-container .box h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  /*font-family: var(--font-body);*/  
  display: inline-block;
  border-radius: 7px;
  justify-content: center;
  align-items: center
}

.outline {
	border: 1px solid var(--color-black);
}

.impurities .box-options .option-items .card-body {
  border: 1px solid rgba(82, 86, 94, 0.2);
  padding: 30px;
  background: #fff;
  position: relative;
  border-radius: 7px;
  margin-top: 4px;
}

.impurities .box-options .option-items .card-body .content {
	text-align: center;
	margin-top: 1rem;
}
.impurities .content .btn {
	/*font-family: var(--font-body);*/ 
	display: inline-block;
	text-align: center;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: var(--color-primary);
    border-radius: 7px;
    transition-color: 0.15s ease-in-out; 
    background-color: 0.15s ease-in-out; 
}
@media (prefers-reduced-motion: reduce) {
  .impurities .content .btn {
    transition: none;
  }
}
.impurities .content .btn:hover {
    color:#fff ;
    background-color: var(--color-black);
}

.impurities .content .btn:focus {
	outline: none;
}
		@media only screen and (max-width: 575px) {
			.impurities .content .btn:focus {
			  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
			}

			.impurities h5 {
				text-align: center;
			}
		}

.impurities .treatment{
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-primary);
}

.impurities h5 {
	text-align: center;
}

.impurities .content .card .treatment span{
	text-transform: lowercase;
}

.impurities .details {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 20px;
}

.impurities .details:last-of-type {
	margin-bottom: 0px;
}

.impurities .content .learn-more {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 10px;
}

/*methods of purification*/ /*******************************************WHERE DOES THIS GO?*/

/*.water-purification .box-options .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  border-radius: 7px;
}

.water-purification .box-options .option-item .card-bg {
  min-height: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.water-purification .box-options .option-item .card-body {
  padding: 0px;
}

@media only screen and (min-width: 768px)and (max-width: 1199px) {
	.water-purification .box-options .option-item .card-body {
	padding: 30px;
	}
}

@media only screen and (max-width: 767px) {
	.water-purification .box-options .option-item .card-body {
	padding: 30px;
	}
}

.water-purification .box-options .option-item .card-body .card-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
}
	
@media only screen and (max-width: 575px) {
	.water-purification .box-options .option-item .card-body .card-title {
	font-size: 19px;
	}
}

.water-purification .box-options .option-item .card-body p {
  color: var(--color-black);
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (max-width: 1199px) {
	.water-purification .box-options .option-item .card-bg { 
	  min-height: 250px;
	}
}*/

#impurities .col-lg-6 {
  display: flex;
  flex-direction: column;
}

# impurities .option-items {
  display: flex; 
  flex-direction: column;
  height: 100%;
}

# impurities .card-body {
  flex-grow: 1;
}

/*Tab Section*/
/*Path Wrapper UV*/

#methods .path-wrapper-ultra {
	margin-bottom: 1em;
	padding: 1.7em 1.7em .5em 1.7em;
}

/*Path Wrapper Distillation*/ 
	
#methods h4 {
	font-size: clamp(1.1875rem, 1.2vw + 0.8rem, 1.3125rem); 	
}
	
#methods .path-wrapper-dist {
	margin-bottom: 1em;
	padding: 1.6em 1.7em 1.7em 1.7em;
}

/*Path Wrapper Chemical*/

#methods .path-wrapper {
padding: 1.5em 2.2em .1em 2.3em;
margin-bottom: 1em;
}

/*Path Wrapper Reverse Osmosis*/

#methods .path-wrapper-ro {
	padding: 1.5em 1.5em .4em 1.5em;
	margin-bottom: 1em;
}


@media only screen and (max-width: 575px) {		
	#methods .path-wrapper {
		padding: 0;			
	}
	#methods .path-wrapper-ultra {
		padding: 0;
	}

	#methods .path-wrapper-dist {
		padding: 0;
	}

	#methods .path-wrapper-ro {
		padding: 0;
	}
}

.method span {
	color: var(--color-primary);
	font-weight: 600;
}

/*reverse osmosis types - equal length divs*/
.ro-systems {
	position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.ro-systems .type {
  position: relative;
  display: flex;
}

.ro-systems .type .type-info {
  position: relative;
  margin: 0 auto;
  flex-grow: 1;
}

/*water purification - filter section*/
.filtering p { 
	font-size: 16px;
	margin-bottom: 10px;
}
.filtering ul li {
	font-size: 16px;
}

@media only screen and (max-width: 1199px) {
	.filtering p { 
	font-size: 18px;
	}
	.filtering ul li {
	font-size: 18px;
	}
}

@media only screen and (max-width: 769px) {
	.filtering p { 
	font-size: 17px;
	}
	.filtering ul li {
	font-size: 17px;
	}
}

.pathogen strong {
	font-weight: 600;
}

/*water purification chemical section*/
.mixing-amounts strong {
	color: var(--color-black);
	font-weight: 500;
	margin-bottom: 0;
}

.mixing-amounts ul li {
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 5px;
}
/*Go back to menu*/
#methods .go-back {
	display: block;
	text-align: center;
	font-size: .8rem;
	margin-top: 20px;
	margin-bottom: 1.5rem;
}




/*************FOOD STORAGE*************/
/*SHORT-TERM FOOD PAGE*/

/*pantry*/
.pantry-item .item-box {
  margin-bottom: 0;
  text-align: center;
}

#methods .pantry-item .title {
  /*font-family: var(--font-body);*/ 
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 20px;
}

#methods p {
	color: var(--color-default);
}

.pantry-item .title a {
  color: var(--color-black);
  transition: 0.3s;
}

.pantry-item .title a:hover {
  color: var(--color-primary); 
}

.pantry-item .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 25px);
}

.pantry-item .description {
  line-height: 24px;
  font-size: 16px;
  margin-top: -5px;
  color: var(--color-black);
}



/*fridge*/
.fridge .box-options .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  padding: 1rem 1.7rem;
}

.fridge .box-options .option-item .card-body {
  padding: 10px;
  background: #fff;
}

.fridge .box-options .option-item .card-bg {
  min-height: 200px;
}

.fridge .box-options .option-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-black);
}

.fridge .box-options .option-item p {
  color: var(--color-black);
}

@media only screen and (max-width: 1199px) {
	
	.fridge .box-options .option-item .card-bg { 
	  min-height: 300px;
	}
	
	.fridge .box-options .option-item h4 {
		margin-top: 1rem;
		text-align: center;
	}
}

@media only screen and (max-width: 991px) {
	.fridge .box-options .option-item .card-body {
	  padding: 0;
	  margin-left: -5px;
	}
}




/*freezer*/
.freezer h5 {
  /*font-family: var(--font-body);*/ 
  font-weight: 500;
  font-size: 24px;
}	

.freezer .item-box {
  text-align: center;
  margin-top: -30px;
}

#methods .freezer .title {
  /*font-family: var(--font-body);*/ 
  color: var(--color-black);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-bottom: 20px;
	padding-top: 30px;
}

.freezer .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 25px);
}

.freezer .description {
  line-height: 26px;
  font-size: 16px;
  margin-top: -5px;
}

/*do not store*/
.do-not-store .section-header p {
  padding: 0 200px;
}
.do-not-store h5 {
  /*font-family: var(--font-body);*/ 
  font-weight: 500;
  font-size: 21px;
}		
.do-not-store .item-box {
  text-align: center;
}
.do-not-store .title {
  /*font-family: var(--font-body);*/ 
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 21px;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}
.do-not-store .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 25px);
}
.do-not-store .description {
  line-height: 26px;
  font-size: 18px;
  margin-bottom: 30px;
  padding: 0 100px;
  margin-top: -5px;
  
}
@media only screen and (max-width: 1199px) {
.do-not-store .section-header p {
	  padding: 0 20px;
	}
.do-not-store .description {
	  padding: 0 20px;
	}		
}

/*LONG-TERM FOOD PAGE*/

/*packaging options*/
#packaging .box-options .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  background: #fff;
  position: relative;
  border-radius: 0;
}

#packaging .box-options .option-item .card-bg {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#packaging .box-options .option-item .card-body {
  padding: 0px 20px 15px 30px;
  background: #fff;
}

/*.box-options .option-item .card-body .button{
  color: var(--color-primary);
}

.box-options .option-item .card-body .button:hover{
  color: var(--color-black);
}

.box-options .option-item h4 {
  font-weight: 700;
  color: var(--color-black);
  text-align: left;
}

.box-options .option-item p {
  font-size: 1rem;
  color: var(--color-black);
  line-height: 1.55;
}

.box-options .weight-info {
	margin-top: 2rem;
	font-size: 13px;
	font-style: normal;
	line-height: 20px; 
}*/

/*Fix this for Long Term Food Packaging*/

/*@media only screen and  (max-width: 991px) {
	.box-options .option-item {
		box-shadow: none;
	  border: none;
	  background: none;
	  position: relative;
	  border-radius: 0;
	}
	
	.box-options .option-item .card-body {
	padding: 0;
	background: var(--color-gray-light);
	}
}*/

/*@media only screen and (max-width: 575px) {
	.box-options .option-item {
	  border: none;
	  margin-bottom: 15px;
	}
	.box-options .option-item .card-body {
		padding: 0;
		background: var(--color-gray-light);
	}
}*/

/*NEW PACKAGING START*/
#packaging .box-pad {
	background: var(--color-secondary);
	padding: 18px;
	margin: 0px;
	margin-top: 0px;
	margin-bottom: 18px;
}
@media only screen and (max-width: 991px) {
	#packaging  .box-pad {
	background: none;
	padding: 0;
	margin: 0;
	margin-bottom: 16px;
	}
	
	#packaging .box-pad .photo-outline {
		border-radius: 7px 7px 0 0;
	}
}

#packaging .box-pad .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

#packaging .option-item .card-body {
  padding: 0px 20px 20px 20px;
  background: #fff;
}



@media only screen and (max-width: 991px) {	
	#packaging .box-pad .option-item {
	border-radius: 7px;
	}
}

#packaging .card-body button {
	color: #0080fe;
	text-decoration: none;
	transition: all ease-in-out 0.3s;
}

#packaging .card-body button:hover {
	color: var(--color-black);
}

#packaging .card-title { /*same as h3*/
	font-weight: 700;
	color: var(--color-black);
	font-size: clamp(1.25rem, 1.8vw + 0.9rem, 1.4rem); 
	text-transform: capitalize; 
	margin: 0.8em 0 0.6em 0;
	line-height: 1.25;
}

#packaging p {
  color: var(--color-default);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 1.2em 0;red
}

#packaging .background-1 {
	margin-top: 1.75rem;
	background: var(--color-gray-light);
	padding: 0 1.5rem 1rem 1.5rem;
}

#packaging .background-2 {
	margin-top: 1.75rem;
	background: var(--color-secondary);
	padding: 0 1.5rem 1rem 1.5rem;
}

#packaging .list li {
  font-size: 17px;
}


/*read-more drop down*/

#packaging .read-more .collapse:not(.show) { /*(hides padding on collapsed panel before its clicked open)*/
  padding: 0;
}

#packaging .read-more .card-body {
  border: none;
  outline: none;
}

#packaging .read-more .margin {
 margin-right: 20px;
 margin-left: 25px;
 margin-bottom: 15px;
}

@media (max-width: 990px){
 #packaging .read-more .margin {
     margin-right: 0;
     margin-left: 0;
     margin-bottom: 0;
    }  
}

#packaging .read-more .collapsible {
  background-color: #fff;
  color: #0080fe;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  margin-bottom: 0px;
  transition: all ease-in-out;
}

#packaging .read-more .active, .collapsible:hover {
  color: var(--color-black);
}

/*END*/


/*PET FOOD PAGE*/

#dry .background-dry {
	background-image: url("../img/stay/food/pets/dry-food.jpg");
	background-color: var(--color-gray-dark);
	background-blend-mode: multiply;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 4rem;
	text-align: center;
	display: block;
	margin-bottom: 2em;
}

#canned .background-canned {
	background-image: url("../img/stay/food/pets/canned-food.jpg");
	background-color: var(--color-gray-dark);
	background-blend-mode: darken;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 4rem;
	text-align: center;
	display: block;
	margin-bottom: 2em;
}

@media only screen and (max-width: 991px) {
.border-pet-food .background-dry {
	padding: 2rem;
	text-align: left;
	}
	
.border-pet-food .background-canned {
	padding: 1.5rem;
	text-align: left;
	}
}

/*.pet-food-steps {
	background: var(--color-black);
	padding-top: .5em;
	padding-bottom: 0em;
	margin-bottom: 1.5em;
	outline: 1px solid #fff;
	outline-offset: -5px;
} 

.pet-food-steps h3 {
	text-align: center;
	color: #fff;
}

@media (max-width: 575px){
	.pet-food-steps {
		background: var(--color-inherit);
		padding-top: 0;
		padding-bottom: 0;
		margin-bottom: 0;
	} 

	.pet-food-steps h3 {
		color: var(--color-default);
	}	
}*/

/*************NO ELECTRICITY*************/

/*POWER OUTAGE PAGE*/
.electricity .about {
 color: red;
}

.electricity .about .content {
  background: var(--color-primary);
  padding: 40px;
  color: var(--color-white);
}

.electricity .content .scenario {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  text-align: left;
}

.electricity .about h4 {
	color: var(--color-white);
	font-size: 1.5rem;
	line-height: 38px;
	margin-bottom: 1.5rem;
	text-transform: none;
}

.electricity .about p {
	font-size: 1.25rem;
	line-height: 1.6rem;
} 
.electricity .about p:last-of-type {
	margin-bottom: 10px;
}

/*FUEL OPTIONS AT-A-GLANCE PAGE*/

@media (min-width: 576px){
	.fuel-options-bg {
		background: var(--color-secondary);
	}	
}

@media (max-width: 575px){
	.fuel-options-bg {
		background: var(--color-white);
	}	
}

.fuel-options {
	box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding: 2rem 2.7rem 2rem 2.7rem;
}


@media (max-width: 575px){
	.fuel-options.margin-fix {
		margin-bottom: 30px;
	}
}

/*EMERGENCY FUEL CATEGORY PAGES*/

.fuel-options .fuel-type {
	font-family: var(--font-body);
	color: var(--color-white);
	line-height: 1;
	text-transform: capitalize;
	font-size: 1.75em;
	position: relative;
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 20px;
	font-weight: 900;
}

.fuel-options .fuel-type:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 50px;
	height: 4px;
	background: var(--color-primary);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.fuel-options  h2 { 
  color: var(--color-black);
  line-height: 1.22;
  padding-left: 0;
  margin-left: 0;
  font-size: clamp(1.625rem, 2.5vw + 1rem, 1.8rem);
  font-weight: 700;
}

.fuel-options  h2:after {
  content: none;
}

.fuel-options h2 span {
	text-transform: lowercase;
}


@media only screen and (max-width: 574px) {
	
	.fuel-options {
		box-shadow: none;
		padding: 0;
	}
    
	.fuel-options h3 {
		/*font-size: 1.35em;*/
		text-align: left;
	}
}

@media only screen (min-width: 575px) and (max-width: 786px) {
	.fuel-options h2 {
		font-size: 1.5em;
		text-align: center;
	}
	
	.fuel-options h3 {
		/*font-size: 1.35em;*/
		text-align: center;
	}
}

@media only screen and (min-width: 991px) {
	.fuel-options .border-left {
		border-left: 1px solid #ddd; 
		height: 100%;
		padding-right: 20px;
	}
	.fuel-options .border-right {
		border-right: 1px solid #ddd; 
		height: 100%;
	}
}

.fuel-options .info {
	outline: solid 1px var(--color-primary);
}

.fuel-options .alcohol p{
	font-size: 16px;
}

.fuel-options .alcohol ul li{
	font-size: 16px;
}

.fuel-options .button a{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 50px;
  padding: 6px 16px 10px 16px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

.fuel-options .button a:hover {
  background: var(--color-blue);
}

.fuel-options .modal-header h1 {
	/*font-family: var(--font-body);*/ 
}

.fuel-options .modal-body {
	/*font-family: var(--font-body);*/ 
}

/*fuel options for previous and next*/

.pagination {
	display: flex;
	justify-content: center;
	padding: 20px;
}
 .pagination a {
	margin: 0 10px;
	padding: 6px 12px 10px 12px;
	text-decoration: none;
	font-size: 14px;
	color: #fff;
	background-color: var(--color-primary);
	border-radius: 7px;
 }
.pagination a:hover {
 	background-color: #fff;
 	color: var(--color-primary);
 	outline: 2px solid var(--color-primary);
}
.pagination a:hover i {
  color: var(--color-primary);
}
.pagination a,
.pagination a i {
  transition: color 0.3s ease, background-color 0.3s ease;
}

/*Alt fuel additions

battery page - Battery warning*/

.battery-warning {
  background-color: #fff9e6; /*#FEFCE8 - RGB: rgb(254, 252, 232)*/
  border: 1px solid #f5d76e;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.battery-warning h3 {
  color: #b7791f;
}

/*firestarter page*/
/*.fuel-source strong {
	font-weight: 500;
}

.fuel-source.home-list strong {
	font-weight: 600;
}

.fuel-source ul  {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.fuel-source li::marker {
	color: var(--color-primary);
}

.fuel-source li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}*/

/*fresnel lens page ------------------remove*/
/*.fresnel-list ul {
	margin-left: 0;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.fresnel-list li {
	list-style-type: none;
}

.fresnel-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.fresnel-list span {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 500;
	padding-right: 5px;
}

#fresnel .tip {
	padding: 10px 10px 0 10px;
	font-size: 15px;
	color: var(--color-default);
}

#fresnel .tip span {
	color: var(--color-black);
	font-weight: 600;
}*/

/*added only to solar hub page*/ /*Delete this*/
.smaller-text {
	font-weight: 500;
	font-size: 16px;
	/*font-family: var(--font-body);*/ 
}

@media (max-width: 575px){
	.smaller-text {
		font-size: 18px;
	}
}

/*CTA for emergency fuel pages*/
.fuel-cta {
	background: var(--color-black);
	padding: 2.5em;
	line-height: 1.4;
	text-align: center;
	outline: 2px solid #fff;
	outline-offset: -5px;
}

.fuel-cta h3 {
	/*font-family: var(--font-body);*/ 
	color: var(--color-white);
	font-size: 1.4em;
	font-weight: 700;
	text-align: center;
}

.fuel-cta h4 {
	/*font-family: var(--font-body);*/ 
	color: var(--color-white);
	font-size: 1.2em;
	font-weight: 500;
	text-align: center;
}
.fuel-cta p {
	font-weight: 400;
	/*font-family: var(--font-body);*/ 
	color: var(--color-white);
	font-size: 1.1em;
}

.fuel-cta a {
	color: #75baff;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
}

.fuel-cta a:hover {
  color: var(--color-white);
}

@media only screen and (max-width: 991px) 
	.fuel-cta h3 {
		  font-size: 1.2rem;
		  font-weight: 700;
		}
	.fuel-cta p {
		font-size: 1em;
	}
}

@media only screen and (max-width: 575px) {
	.fuel-cta h3 {
		  font-size: 1.2rem;
		  font-weight: 700;
		}
}

/*fixing margin issues when using multiple .fuel-options on alt fuel page*/
/*used on solar, */

.marg-fix {margin-bottom: 30px;}
.marg-fix-last {margin-bottom: 50px;}

/*************DEVICE AND EQUIPMENT PAGES*************/ 

/*DEVICE TYPES - for container options, cooking, lighting, warming, communications PAGES*/ 
.device-types {
	margin-bottom: 0px;
	padding-bottom: 0px;
}
.device-types img {
  border-radius: 0;
}
.device-types .card {
  outline: 1px solid var(--color-gray-light);
  text-align: center;
}
.device-types .card-body {
  -moz-text-align-last: center;
  text-align-last: center;
  position: relative;
  padding-bottom: 50px;
}
.device-types .card-title a {
  font-weight: 700;
  font-size: 20px;
  color: #334240;
  transition: ease-in-out 0.3s;
}
.device-types .card-title a:hover {
  color: var(--color-primary);
}
.device-types .card-text {
	font-size: 1rem;
	color: var(--color-black);
	font-weight: 400;
}

.device-types .btn {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 4px 10px 4px 12px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
	
}
.device-types .btn:hover {
  color: #fff;
  background: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

/*DEVICE OPTIONS - for cooking, lighting, warming, communications PAGES*/

#device-options .box-pad {
	background: var(--color-secondary);
	padding: 18px;
	margin: 0px;
	margin-top: 0px;
	margin-bottom: 18px;
}
@media only screen and (max-width: 991px) {
	#device-options .box-pad {
	background: none;
	padding: 0;
	margin: 0;
	margin-bottom: 16px;
	}
	
	#device-options .box-pad .photo-outline {
		border-radius: 7px 7px 0 0;
	}
}

#device-options .box-pad .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

#device-options .option-item .card-body {
  padding: 0px 20px 20px 20px;
  background: #fff;
}

@media only screen and (max-width: 991px) {	
	#device-options .box-pad .option-item {
	border-radius: 7px;
	}
    
    #device-options .option-item .card-body {  /*NEW ADDITION*/
      margin-left: 12px;
    }
}

.card-body button {
	color: #0080fe;
	text-decoration: none;
	transition: all ease-in-out 0.3s;
}

.card-body button:hover {
	color: var(--color-black);
}

#device-options .card-title { /*same as h3*/
	font-weight: 700;
	color: var(--color-black);
	font-size: clamp(1.25rem, 1.8vw + 0.9rem, 1.4rem); 
	text-transform: capitalize; 
	margin: 0.8em 0 0.6em 0;
	line-height: 1.25;
}

#device-options p {
  color: var(--color-default);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 1.2em 0;
}

#device-options .background-1 {
	margin-top: 1.75rem;
	background: var(--color-gray-light);
	padding: 0 1.5rem 1rem 1.5rem;
}

#device-options .background-2 {
	margin-top: 1.75rem;
	background: var(--color-secondary);
	padding: 0 1.5rem 1rem 1.5rem;
}

#device-options .list li {
  font-size: 17px;
}


/*read-more drop down*/

#device-options .read-more .collapse:not(.show) { /*(hides padding on collapsed panel before its clicked open)*/
  padding: 0;
}

#device-options .read-more .card-body {
  border: none;
  outline: none;
}

#device-options .read-more .margin { /*NEW TWEAK ADDITION*/
 margin-right: 28px;
 margin-left: 25px;
 margin-bottom: 15px;
}

@media (max-width: 991px){
 #device-options .read-more .margin { /*NEW TWEAK ADDITION*/
     margin-right: 10px;
     margin-left: 12px;
     margin-bottom: 7px;
    }  
}

#device-options .read-more .collapsible {
  background-color: #fff;
  color: #0080fe;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  margin-bottom: 0px;
  transition: all ease-in-out;
}

#device-options.read-more .active, .collapsible:hover {
  color: var(--color-black);
}

#device-options.read-more .middle-border {
    position: relative;
}

@media (min-width: 992px) {
	#device-options .middle-border::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 50%;
	background-color: #ccc;
	}
}

@media (max-width: 991px) {
    #device-options .middle-border::before {
        display: none;
    }
}

/*genertic column count within read-more*/

.column-count-2 {
	column-count: 2;
}

.column-count-3 {
	column-count: 3;
}

@media (max-width: 991px) {
	.column-count-2 {
		column-count: 1;
	}
}

/*generic read-more drop-down - within column*/
.collapsible { 	/*button style*/
  background-color: #fff;
  color: var(--color-blue);
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  margin-bottom: 16px;
}
.active, .collapsible:hover {
  color: var(--color-primary);
}

/* general for collapse. Note: hidden by default */
.box-pad .content {
   padding: 0;
   background-color: #fff;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.2s ease-out;
}

/*communication devices - additional code*/

#comm-options .box-pad {
	background: var(--color-secondary);
	padding: 18px;
	margin: 0px;
	margin-top: 0px;
	margin-bottom: 18px;
}
@media only screen and (max-width: 991px) {
	#comm-options .box-pad {
	background: none;
	padding: 0;
	margin: 0;
	margin-bottom: 16px;
	}
	
	#comm-options .box-pad .photo-outline {
		border-radius: 7px 7px 0 0;
	}
}

#comm-options .box-pad .option-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

#comm-options .option-item .card-body {
  padding: 0px 20px 20px 20px;
}

/*NEW*******************************************************************************/

@media only screen and (max-width: 991px) {	
	#comm-options .box-pad .option-item {
	border-radius: 7px;
	}
    
    #comm-options .option-item .card-body {  /*NEW ADDITION*/
      margin-left: 10px;
    }
}

/*NEW END****************************************************************************/

#comm-options .read-more .margin {
 margin-right: 20px;
 margin-left: 25px;
 margin-bottom: 5px;
}

@media (max-width: 990px){
 #comm-options .read-more .margin {
     margin-right: 0;
     margin-left: 0;
     margin-bottom: 0;
    }  
}

#comm-options .card-title { 
	font-weight: 700;
	color: var(--color-black);
	font-size: clamp(1.25rem, 1.8vw + 0.9rem, 1.4rem); 
	text-transform: capitalize; 
	margin: 0.8em 0 0.6em 0;
	line-height: 1.25;
}

#comm-options  h7 {
    font-family: var(--font-body); 
	color: var(--color-primary); 
	font-size: 16px;
	font-weight: 600; 
	text-transform: uppercase;
	line-height: 2; 
	margin: 0 0 0.5rem;  
}

#comm-options p {
  color: var(--color-default);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 1.2em 0;
}

#comm-options .list li {
  font-size: 17px;
}

#comm-options .point li {
  font-size: 17px;
}

#comm-options .background-1 {
	margin-top: 1.75rem;
	background: var(--color-gray-light);
	padding: 0 1.5rem 1rem 1.5rem;
}

#comm-options .background-2 {
	margin-top: 1.75rem;
	background: var(--color-secondary);
	padding: 0 1.5rem 1rem 1.5rem;
}

#comm-options .more-content img {
	float: right;
	width: 400px;
	height: auto;
	margin: 10px 0 20px 20px;
	outline: 2px solid #fff;
	outline-offset: -5px;
}

@media (min-width: 992px){
	#comm-options .more-content img {
		display: inline-block;
	}
}

@media (max-width: 991px){
	#comm-options .more-content img {
		display: none;
	}
}

#comm-options .read-more .card-body {
  border: none;
  outline: none;
}

/*NEW*********************************************************************/

#comm-options .read-more .margin { /*NEW TWEAK ADDITION*/
 margin-right: 15px;
 margin-left: 14px;
 margin-bottom: 15px;
 padding-bottom: 0; 
}

@media (max-width: 991px){
 #comm-options .read-more .margin { /*NEW TWEAK ADDITION*/
     margin-right: 10px;
     margin-left: 10px;
     margin-bottom: 10px;
    }  
}

/*NEW END***************************************************************/


/*Image Credits on Comms Device Page*/
section. #image-credits {
	padding: 0;
	margin: 0;
}
#image-credits {
	font-size: 10px;
	color: #999;
	padding: 0 50px 20px 50px;
}
#image-credits h5 {
    font-size: 10px;
	color: #999;
	margin-bottom: 2px;
}
#image-credits ul {
	margin-left: 0;
	padding-left: 12px;
}
#image-credits a {
	color: #999;
	text-decoration: underline;
}

/*********GENERATOR PAGES**********/

/*FUEL GENERATOR PAGE*/

#fuel-generator-sizing ul {
	margin-left: 0;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

#fuel-generator-sizing li {
	color: var(--color-default);
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

#fuel-generator-sizing .smaller li {
	color: inherit;
	font-weight: 500;
	font-size: 16px;
	/*font-family: var(--font-body);*/ 
}
@media (max-width: 575px){
	#fuel-generator-sizing .smaller li {
		font-size: 18px;
	}
}

#fuel-gen .background-1 {
	margin-top: 1.75rem;
	background: var(--color-gray-light);
	padding: 0 1.5rem 1rem 1.5rem;
}

#fuel-gen .background-2 {
	margin-top: 1.75rem;
	background: var(--color-secondary);
	padding: 0 1.5rem 1rem 1.5rem;
}

@media (max-width: 991px){
	#fuel-gen .background-1 {
		margin-top: 0;
		background: inherit;
		padding: 0;
	}

	#fuel-gen .background-2 {
		margin-top: 0;
		background: inherit;
		padding: 0;
	}	
}

/*SOLAR VS FUEL GENERATOR PAGE*/

.section-white-generators {
	box-shadow: 0px 0 25px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	padding: 2rem 2rem 1.1rem 2rem;
}

.images-generator-fuel h3, 
.images-generator-solar h3 {
	font-size: 26px;
	color: #fff;
	margin-bottom: 10px;
}

.images-generator-fuel p, 
.images-generator-solar p {
	color: #fff;
    font-weight: 500;
}

.images-generator-fuel ul li, 
.images-generator-solar ul li {
	/*font-family: var(--font-body);*/ 
	font-size: 16px;
	color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
}

.images-generator-fuel ul li i, 
.images-generator-solar ul li i {
	color: #fff;
}

.problem-to-solve {
	background: #000;
	color: #fff;
	padding: 1.5em;
	text-align: center;
}


/*SOLAR GENERATOR PAGE*/

.solar-pros-cons {
	box-shadow: 0px 0 25px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	padding: 2rem 2rem 1.1rem 2rem;
}

.images-generator-solar-strengths h3, 
.images-generator-solar-limitations h3 {
	font-size: 26px;
	color: #fff;
	margin-bottom: 10px;
}

.images-generator-solar-strengths p, 
.images-generator-solar-limitations p {
	color: #fff;
    font-weight: 400;
}

.images-generator-solar-strengths ul li, 
.images-generator-solar-limitations ul li { 
	font-size: 17px;
	color: #fff;
    font-weight: 400;
}

.images-generator-solar-strengths ul li i, 
.images-generator-solar-limitations ul li i {
	color: #fff;
}

/*solar and fuel generator pages*/

.pros-cons .combo-options {
	background: var(--color-primary);
	color: #fff;
	padding: 1.5em;
	text-align: center;
}

.pros-cons .combo-options {
	background: var(--color-primary);
	color: #fff;
	padding: 1.5em;
	text-align: center;
    font-weight: 400;
}

.combo-options a {
    color: #fff;
    transition: all ease-in-out 0.3s;
    font-weight: 700;
}

.combo-options a:hover {
    color: var(--color-secondary);
}


/*MATCH FUEL WITH DEVICES PAGE*/

/*Isotope*/
#iso .container {
	margin-top: -30px;
}
.finder #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.finder #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
}
.finder #menu-flters li:hover, #menu-flters li.filter-active {
  color: #fff;
  background: var(--color-primary);
}
.finder #menu-flters li:last-child {
  margin-right: 0;
}
.finder .equipment {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}
.finder .equipment a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: var(--color-black);
  transition: all ease in out;
}
.finder .equipment a:hover {
  color: var(--color-blue);
}
.finder .equipment span { /*(add $ range later)*/
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}
.finder .about-equipment {
  font-style: normal;
  font-size: 14px;
  /*font-family: var(--font-body);*/ 
  color: var(--color-black);
  text-align: center;
}

.iso-height-fix {
	display: flex; 
	min-height: 100vh; 
	flex-direction: column; 
	justify-content: space-between;
}

a.anchor {
    display: block;
    position: relative;
    top: -250px;
    visibility: hidden;
}

.filter-active {
    color: #fff;
	background: var(--color-primary);
}


/*************NO WATER PAGE*************/

/*About*/
.sanitation .about .content {
  background: var(--color-gray-light);
  padding: 40px;
  /*font-family: var(--font-body);*/ 
  color: var(--color-black);
}
.sanitation .how-much .about .content {
  background: #fff;
  padding: 40px;
  /*font-family: var(--font-body);*/ 
  color: var(--color-black);
	
}
.sanitation .about-border {
	border-top: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	border-left: 1px solid var(--color-primary);
}
.sanitation .content .scenario {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-black);
  text-align: left;
  /*font-family: var(--font-body);*/ 
} 
.sanitation .about h4 {
	font-size: 36px;
	line-height: 42px;
	margin-bottom: 1.6rem;
	text-transform: none;
} 
.sanitation .about p {
	font-size: 1.25rem;
	line-height: 1.6rem;
}

@media only screen and (max-width: 1199px) {
	.sanitation .about h4 {
		font-size: 32px;
		line-height: 36px;
	}
	.sanitation .about-border {
		border: 1px solid var(--color-primary);
	}
}

/*Other Items Needed*/
#other-items .list-item {
	display: block;
	line-height: 2rem;
}

#other-items .list-item .span {
	display: block;
	font-size: 14px;
	font-style: italic;
	line-height: 1rem;
	margin-bottom: 10px;
}

#other-items .list-item-pad {
	display: block;
	/*font-family: var(--font-body);*/ 
	line-height: 2.75rem;
}

@media only screen and (max-width: 991px) {
	#other-items .list-item-pad {
		margin-bottom: 10px;
	}
}

/*alignment fix for method one*/
@media(max-width: 575px){
	#sanitation .fix {
		padding-left: 30px;
	}
}
@media(max-width: 768px){
	#sanitation .fix {
		margin-left: -10px;
	}
}
@media(min-width: 992px){
	#sanitation .fix {
		margin-left: -14px;
	}
}




/*---------------------------------------------------
LEAVE
---------------------------------------------------*/
/*for go-bag columns for .point li*/
  
@media (min-width: 768px) { .point-col { column-count: 2; }}
@media (min-width: 992px) { .point-col { column-count: 3; }}

@media (min-width: 768px) { .point-column { column-count: 1; }}
@media (min-width: 992px) { .point-column { column-count: 2; }}

@media (min-width: 575px) { #binder .point-col { column-count: 2; }}
@media (min-width: 1199px) { #binder .point-col { column-count: 3; }}
 
@media (min-width: 768px) { #binder .point-column { column-count: 1; }}
@media (min-width: 992px) { #binder .point-column { column-count: 2; }}

.tip-box {
	width: 100%;
	height: auto;
	padding: 1.3em 1.3em .5em 1.3em ; 
	outline: 1px solid var(--color-primary);
	/*outline-offset: -10px;*/
	background: #fff;
}

.tip-box .tip {
	color: var(--color-primary);
	font-family: var(--font-banner);
	font-weight: 700;
	font-size: 1rem;
}

@media only screen and (max-width: 575px) {
    .tip-box, .tip {
        display: none;
    }  	
}

#shared p {
    color: var(--color-default);
}


/*forced color change for method tab tips*/
#methods .tip { 
	color: var(--color-primary);
}

#methods .nav-item {
	margin-top; 50px;
}

hr {
	width: 70%;
    margin-left: auto;
    margin-right: auto;
	color: var(--color-gray-dark);
	padding-bottom: 5px;
}

@media only screen and (max-width: 991px) {	
hr { display: none; }}

/*afh about page */     
    
.kits h4  { 
        color: red;
    } 

#afh .btn {
  font-family: var(--font); 
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 3px 15px 6px 15px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--color-primary);
}

#afh .btn:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background: #fff;
}

@media (max-width: 575px){
    #afh .btn {
        text-align: center
    }
}
			

/*this is for white space control on sub-banners on go bag page*/

#sub-banner {}

.sub-banner .core, .sub-banner .pet, .sub-banner .family, .sub-banner .evac  h2 {
	font-family: var(--font-body); 
	color: var(--color-white);
	font-weight: 700; 
	line-height: 1.25; 
	margin: 0; 
	text-transform: capitalize;} 

.sub-banner .pre {
    white-space: pre;
}
			
.sub-banner .pre-wrap {
    white-space: pre-wrap;
    color: var(--color-white);
}

.sub-banner h5 a {
    font-family: var(--font-body);
	color: #fff;
	text-transform: capitalize;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 1px;
    text-decoration: none;
}

.sub-banner h5 a:hover {
    color: var(--color-secondary);
}

.sub-banner p:last-of-type {
		margin-bottom: 0px;
	}

/*.sub-banner-sm*/
@media (min-width: 576px){
.sub-banner-sm {
    background: var(--color-primary);
}

.sub-banner-sm h4 {
	color: #fff;
	text-transform: capitalize!important;
	text-align: center;
	margin-bottom: .5em;
}

.sub-banner-sm h5 {
	color: #fff;
	text-transform: capitalize;
}

.sub-banner-sm p {
	color: var(--color-white);
	font-weight: 400!important;
	text-align: left;
    line-height: inherit;
	margin-bottom: .5em;
}

.sub-banner-sm p:last-of-type {
		margin-bottom: 0px;
	}

.sub-banner-sm a {
  color: #fff;
  text-decoration: underline;
  transition: all ease-in-out 0.3s;
}

.sub-banner-sm a:hover {
  text-decoration: none;
  color: var(--color-black);
}
 
/*family kit page */ 
    
#methods .adult { 
    font-size: 14px; 
} 
    
#methods .small { 
    font-size: 14px; 
    font-weight: 400; 
    color: #333;
}
    
#methods h3 { 
    text-align: center; 
}
    
@media (max-width: 575px){ 
    #methods h3 { 
        text-align: left; 
    }
}

 
    
       
/*---------------------------------------------------
EMERGENCY PLANS
---------------------------------------------------*/
.round .framed {
    border-radius: 50%;
    max-width: 300px;
    max-height: 300px;
    transition: all ease-in-out;
    position: relative;
}

/*****************************************************TYPES*/

/*fire safety plan*/


.characteristics .about .content {
  background: #fff;
  padding: 40px;
  font-family: var(--font-body);
  color: var(--color-black);
}
    
.characteristics .about .content.color {
  background: var(--color-gray-light);
  padding: 40px;
  font-family: var(--font-body);
  color: var(--color-black);
}

.characteristics .about h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black);
  text-align: left;
  text-transform: capitalize;
	margin-bottom: .5em;
}
.characteristics .about p {
	font-size: 18px;
}
.characteristics .stats {
	border-left: solid 2px var(--color-primary);
	padding-left: 20px;
}
.characteristics .about .title {
  font-size: 21px;
  font-family: var(--font);
  font-weight: 700;
  color: var(--color-black);
  text-align: left;
  text-transform: capitalize;
}

.characteristics .about .description {
  display: block;
  font-weight: 400;
  font-size: 16px;
  margin-top: -1px;
  margin-bottom: 15px;
}

.characteristics span {
  text-transform: lowercase;
}

.fire .contain {
	padding: 10px;
}

hr.style {
  border-top: 5px dotted var(--color-primary);
  padding: .5em 0 0 0;
}

/*this is for white space control on sub-banners*/

.sub-banner .pre {
    white-space: pre;
}
			
.sub-banner .pre-wrap {
    white-space: pre-wrap;
}

.sub-banner h5 {
	color: #fff;
	text-transform: capitalize;
}

.sub-banner p:last-of-type {
		margin-bottom: 0px;
	}

/*.sub-banner-sm*/

.sub-banner-sm {
	margin-bottom: 2em;
}

.sub-banner-sm h4 {
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: .5em;
}

.sub-banner-sm p {
	color: #fff;
	font-weight: 500;
	text-align: left;
	margin-bottom: .5em;
}

.sub-banner-sm p:last-of-type {
		margin-bottom: 0px;
	}

.sub-banner-sm a {
  color: #fff;
  text-decoration: underline;
  transition: all ease-in-out 0.3s;
}

.sub-banner-sm a:hover {
  text-decoration: none;
  color: var(--color-black);
}


/*@media only screen and (max-width: 767px) {
	.margin-reduced {
		margin-top: -50px;
	}
}*/

/*local & state*/

/*.highlight {
    background-color: yellow;
	display: inline;
}

@media only screen and (max-width: 575px) {
	.move-up {
		margin-top: -50px;
	}
	
	.less-pad {
		padding-bottom: 0px;
	}
}


/*---------------------------------------------------
LEGAL PAGES
---------------------------------------------------*/

/*DISCLAIMER*/

.disclaimer {
	margin-top: 0px;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.disclaimer a {
  font-size: 10px;
  font-family: var(--font-default);
  color: #ccc;
  font-weight: 500;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

.disclaimer a:hover {
  color: #fff;
  text-decoration: none;
}
	

@media only screen and (min-width: 992px) {
	.alcohol {
		flex-direction: row;
	}
}
@media only screen and (max-width: 991px) {
		flex-direction: column;	
} 

/*TEMP FIXES*/
/*h4 doesn't align or color properly*/
section h4 {
	font-family: var(--font-body); 
	color: var(--color-black); 
	font-size: clamp(19px, 1.2vw + 0.8rem, 21px); 
	font-weight: 600; 
	line-height: 1.3;  
	margin: 1.2em 0 0.5em;
	text-align: left; }

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 5px;
}
.faq .faq-list li {
  padding: 20px;
  background: var(--color-primary); 
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  padding: 0 20px;
  margin-left: 20px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--color-white);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 16px !important; 
  position: absolute;
  right: 10px; 
  top: 50%;
  transform: translateY(-50%); 
  line-height: 1;
}

.faq .faq-list p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  padding: 20px 0 0 40px;
}

.faq .faq-list .more {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
}

.faq .faq-list .more:hover {
  font-size: 14px;
  color: var(--color-white);
}

.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #fff;
  transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
  color: var(--color-secondary);
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.faq .faq-list a i,
  .faq .faq-list a:focus i {
    font-size: 14px;
    line-height: 0;
  }

/*SECTION MARGIN TOP FIXES*/

/*fireplace page to fix margin issue between sections*/
.section-mt {
	margin-top: -105px;
}

@media (min-width:992px) and (max-width:1199px){
	.section-mt {
		margin-top: -105px;
	}	
}

@media (min-width:768px) and  (max-width:991px){
	.section-mt {
		margin-top: -75px;
	}	
}

@media (min-width:575px) and  (max-width:767px){
	.section-mt {
		margin-top: -50px;
	}	
}


/*fire-starter page to fix margin issue between sections*/
.section-mt-1 {
	margin-top: -35px;
}

@media (min-width:992px) and (max-width:1199px){
	.section-mt-1 {
		margin-top: -20px;
	}	
}

@media (min-width:768px) and  (max-width:991px){
	.section-mt-1 {
		margin-top: -20px;
	}	
}

@media (min-width:575px) and  (max-width:767px){
	.section-mt-1 {
		margin-top: -10px;
	}	
}


/*MISC PROBLEMS*/
@media (max-width: 575px) {
    h4 {
        color: var(--color-black);
        text-align: left;
    } 
}
    
/*MISC*/
.unbreakable {
    white-space: nowrap;
}

