<style>
* {
  box-sizing: border-box;
}

:root {
  --blue: #4274ba;
  --orange: #fdb913;
  --green: #8fb24c;
  --bggray: #f1f1f1;
  --gray: #555555;
  --white: #ffffff;
  --black: #000000;
}

* {
    color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

html, body {
  margin: 0;

}

p {
  font-family: Avenir Next;
  margin: 0;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* Content Headline */
h1 {
  font-family: Avenir Next Condensed;
  margin: 0px 0px 10px 0px;
  color: var(--blue);
  font-weight: 600;
}

/* Inline Head */
h2 {
  font-family: Avenir Next Condensed;
  margin: 15px 0px 10px 0px;
  color: var(--blue);
  font-weight: 600;
}

/* Feature Box Text */
h3 {
  font-family: Avenir Next Condensed;
  margin: 15px 0px 10px 0px;
  color: var(--blue);
  font-weight: 500;
  font-size: 14pt;
  vertical-align: middle;
  text-align: center;
}


/* Site Container handling min and max width */
.site-container {
  max-width: 1300px;
  min-width: 480px;
  margin: auto;
}


/* Header/logo Title */
.header {
  padding: 0px;
  background-color: var(--white);
  color: var(--white); 
}

.logo-container {
  position: relative;
  top: 0;
  left: 0;
  margin-top: -44px;
}

.contact {
  position: relative;
  top: 31px;
  background-color: none;
  text-align: right;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Avenir Next Condensed;
  color: var(--white);
  font-weight: 600;
  font-size: 14pt;
  padding-right: 25px;
}

.logo {
  position: relative;
  width: 230px;
  top: 73px;
  background-color: none;
  margin-top: -80px;
  margin-bottom: 0px;
  padding-left: 28px;
}

.headerbandimg {
  height: 67.5px;
}

.headerimg {
  margin-top: -37px;
}

/* Column container */
.content-container {  
  display: flex;
  flex-direction: row;
  
}

/* Sidebar/left column */
.side {
  flex: 21.5%;
  background-color: var(--white);
  padding: 20px;
}

.nav {
  display: flex;
  flex-direction: column;
  width: 80%;
  background-color: var(--blue);
  border: 3px solid var(--white);
  color: var(--white);
  padding: 10px 20px 10px 20px;
  margin-top: -50px;
}

.navtext {
  font-family: Avenir Next Condensed;
  margin: 10px 0px 10px 0px;
  font-weight: 500;
  font-size: 11pt;
}

.servingtext {
  font-family: Avenir Next Condensed;
  text-align: left;
  color: var(--gray);
  padding: 15px 0px 5px 3px;
  font-size: 11pt;
}

/* Side bar for subpages */
.navpage {
  display: flex;
  flex-direction: column;
  width: 80%;
  background-color: var(--blue);
  border: 3px solid var(--white);
  color: var(--white);
  padding: 10px 20px 10px 20px;
  margin-top: 0px;
}

/* Navigation Links */
.navlink {
  color: white;
  text-decoration: none;
}

.navlink:hover {
  color: var(--green);
}

.navfilters {
  color: white;
  text-decoration: none;
}

/* Articles Tags for Navigation */
ul.navfilters {
  list-style-type: none;
  margin: 0;
  padding: 0px 20px 10px 0px;
  font-family: Avenir Next Condensed;
  font-weight: 500;
  font-size: 11pt;
}
li {
    padding: 10px 0px 10px 0px;
}
a {
    text-decoration: none;
    color: white;
}
a:hover {
  color: var(--green);
}
.tl-tag {
    color: var(--blue);
}



/* Main column */
.main {
  flex: 78.5%;
  height: 80%;
  background-color: var(--white);
  padding: 20px;
}

.feature-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.feature {
  flex-basis: 48%;

  padding: 0;
  background-color: var(--white);
  margin: 10px 0px 10px 0px;
  font-family: Avenir Next Condensed;
  color: var(--blue);
  font-weight: 600;
  align-items: center;
  align-self: center;
}

.featureimg{
  width: 100%;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}



/* Subpages */
.subpageimgtext {
  color: white;
  background-color: var(--blue);
  margin-top: -38px;
  position: relative;
  bottom: 0px;
  left: 0px;
  padding: 8px 12px;
  font-family: Avenir Next Condensed;
  font-size: 12pt;
}

.imglink {
  color: white;
  text-decoration: none;
  border: none;
}




/* Item Pages */
.itemimgmain {
  width: 100%;
  vertical-align: middle;
  padding: 0;
  margin: 3px 0px 20px 0px;
}

.itemimgsm {
  width: 100%;
  vertical-align: middle;
  padding: 0;
  margin: 0;
}

.buttonlink:link, .buttonlink:visited {
  background-color: var(--orange);
  color: white;
  padding: 14px 25px;
  text-align: center;
  
  display: inline-block;
  font-family: Avenir Next Condensed;
  font-size: 12pt;
  font-weight: 600;
  margin: 10px 10px 10px 0px;
}
 
.buttonlink:hover, .buttonlink:active {
  background-color: var(--green);
}

.bottom-main {
  margin: 20px 0px;
  font-size: 12pt;
  font-weight: 600;
  color: var(--green);
}

.bottomlinks:link, .bottomlinks:visited {
  font-family: Avenir Next Condensed;
  color: var(--green);
  text-decoration: none;
}
.bottomlinks:hover, .bottomlinks:active {
  color: var(--blue);
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: var(--bggray);
}

.footertext {
  font-family: Avenir Next Condensed;
  color: var(--gray);
  font-size: 10pt;
}


/* Contact Form Styling */
    input[type=text], select, textarea {
  width: 100%; 
  padding: 12px;   
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box; 
  margin-top: 0px; 
  margin-bottom: 16px; 
  resize: vertical; 
}

/* Submit Button Styling */
input[type=submit] {
  background-color: var(--orange);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Submit Button Hover */
input[type=submit]:hover {
  background-color: var(--blue);
}

/* Form Error Message Styling */
.inlinered {
  font-family: Avenir Next Condensed;
  text-align: left;
  color: var(--orange);
  padding: 15px 0px 5px 3px;
  font-size: 11pt;
}






/* Responsive layout - when the screen is less than 700px wide, 
make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 720px) {
  .content-container, .feature-container {   
    flex-direction: column;
  }
  .headerbandimg {
  height: 60px;
  margin-left: -25px;
  }
  .logo {
  width: 180px;
  top: 65px;
}
  .nav, .navpage {
    display: flex;
    flex-direction: column;
	width: 92%;
	margin-top: -3px;
  }
  .navlink {
  flex-basis: 20px;
  margin: 0px 0px 0px 0px;
  }
  .contact {
  top: 28px;
  font-size: 12pt;
  }
  .main {
  padding-top: 0px;
  }
  .feature {
  width: 100%;
  max-width: 100%;
  }
  
  
  
}


</style>