/*
LAYOUT
*/

/*
CSS RESET: https://www.joshwcomeau.com/css/custom-css-reset/
Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
box-sizing: border-box;
}
/*
Remove default margin
*/
* {
margin: 0;
}

/*
Improve media defaults
*/
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
height: auto;
object-fit: contain;
}

/* Formie forms */
.fui-checkbox-label, .fui-radio-label {
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #333;
}

.fui-legend {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 1.3em;
  color: #333;
}

.fui-error-message {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 1em;
  color: #c21010;
  margin-top: 5px;
}


/* Custom ModalVideo.css styles
*/
/* Modal Overlay */
.modal-overlay {
  display: flex; /* For centering */
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999999;
  padding: 10%; /* Add some padding for small screens */
  box-sizing: border-box;
  visibility: hidden;
}

/* Modal Content */
.modal-content {
  max-width: 75vw; /* Max width relative to viewport */
  max-height: 75vh; /* Max height relative to viewport */
  width: 100%; /* Takes available width */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  outline: none; /* Remove focus outline while maintaining accessibility */
}

/* 16:9 Aspect Ratio Container */
.ifHolder {
  position: relative;
  height: auto;
  min-height: max-content;
  width: 100%;
  max-width: 100%;
  padding-top: 56.25%; /* (9 / 16) * 100% */
  margin: 0;
}

/* The actual video element */
.ifHolder iframe,
.ifHolder video {
  position: absolute;
top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

#vidModal.active {
  visibility: visible;
}

#modalClose {
  z-index: 5;
  position: absolute;
  top: 0px;
  right: -24px;
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
  margin-top: -24px;
}

#modalClose:hover {
  background: #80c342;
}

/* Quotes */

.quoteDisplay {
  width: 100%;
  height: auto;
  min-height: calc(max-content + 70px;);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  background: #efefef;
  margin: 20px 0px 20px 0px;
  border-radius: 10px;
  position: relative;
}

.quotation {
  width: 100%;
  display: none;
}

#quote1 {
  display: block;
}

.quoteTxt {
  font-size: 1.5em;
  font-weight: 700;
  width: 100%;
  text-align: center;
  line-height: 1.3;
}

.quoteAttr {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1em;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.25;
  height: 22px;
}

.quoteNav {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  width: 100%;
  cursor: pointer;
  position: relative; 
  height: 23px;          
}

.quoteNav .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: auto;
  height: 20px;
}
/* Article List */

.articleListArticle {
margin-bottom: 20px;
border-bottom: 1px solid #efefef;
padding-bottom: 20px;
}


.articleListTitle {
font-size: 1.4em;
font-weight: 600;
margin: 0;
line-height: 1.2;
}

.articleListByline {
  font-size: .95em;
  font-weight: 600;
  margin-right: 8px;
}

.articleListPubdate {
  font-size: .95em;
  font-weight: 400;
}

.articleListFilter_head {
  font-weight: 500;
}

.articleListSummary {
font-size: .9em;
font-weight: 400;
}

.articleListLink {
margin-top: 4px;
}

.articleListFilter {
  display: none;
}

#filter {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: #efefef;
  padding: 1% 3%;
  border-radius: 10px;
  margin: 0px 0px 30px 0px;
}

.filtered {
  font-size: 1.2em;
  font-weight: 500;
}

#articleListHeading {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 10px 0px;
}

#articleListHr {
  margin: 8px 0px 20px 0px;
  border-color: #efefef;
}

#articleListHeading h1 {
  padding: 0;
  margin: 0;
  line-height: 1;
}

.articleTitleWrap {
  width: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items:flex-start;
  margin-bottom: 4px;
}

.articleListByline {
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  color: #333;
}

#filterType {
  margin-right: 14px;
}

#filter select {
  appearance: base-select;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1em;
  font-weight: 400;
  padding: 2px 8px;
  border: 1px solid #d9d9d9;
  color: #333;
}

#filter select::picker-icon {
  color: #80c342;
}

.noarts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c21010;
}

/* Social Proof Slideshow (new)
*/

.spContHead {
  font-size: 1.55em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #567639;
  max-width: 100%;
}

.spWrap {
  width: 100%;
  border-radius: 0;
  background: none;
  max-height: 300px;
}

#SocProofSS {
width: 100%;
background: #95cd62;
height: 300px;
max-height: 300px;
overflow:hidden;
padding: 0% 10%;
margin: 30px 0px 15px 0px;
display: flex;
justify-content: center;
align-items: center;
}

#SocProof {
width: 100%;
background: #fff;
height: auto;
min-height: max-content;
padding: 0% 10%;
margin: 30px 0px 15px 0px;
}

.spSs {
width: 100%;
background: #efefef;
height: auto;
min-height: max-content;
padding: 5% 10%;
margin: 30px 0px 15px 0px;
border-radius: 10px;
}

.mrSlide {
  cursor: pointer;
}

#SocProofSS .mrSlide {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#SocProofSS .mrWrap {
width: 100%;
height: 100%;
}

.spContWImg {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.spContWImg .spContTxt {
  max-width: 75%;
}

.spTxt {
  font-size: .95em;
  line-height: 1.3;
  font-weight: 500;
  color: #567639;
}

.spContImg {
  width: 25%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  margin: 0% 2% 0% 0%;
}

.spContImage {
  width: 100%;
  max-width: 250px;
  max-height: 230px;
}

.spCont {
  height: 100%;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.attrTxt {
  color: #dfffc2;
  font-size: .95em;
  margin-top: 10px;
  padding: 0;
  font-weight: 500;
  line-height: 1.1;
}


#spNav {
width: 100%;
height: auto;
min-height: max-content;
display: flex;
justify-content: center;
align-items: center;
}

.spNavInner {
       width: auto;
       min-width: max-content; 
       display: flex;
       flex-direction: row;
       justify-content: center;
       align-items: center;
       height: auto;
       min-height: max-content;
}

 .mrNav {
        width: 100%;
        min-width: 100%;
        height: auto;
        min-height: max-content;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 14px;
        }

      
    .mrNav .inner {
        width: auto;
        min-width: max-content; 
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
        height: auto;
        min-height: max-content;
    }

 .navDot {
    width: 12px !important;
    min-width: 12px !important;
    height: 12px !important;
    margin: 0% 10%;
    border-radius: 6px;
    background: #d6d6d6;
    }

    .navDot:hover {
    background: #80c342;
    }

    .navDot.dotActive {
    background: #80c342;
    transform: scale(1.2);
    }

 .quoteNavDot {
    width: 12px !important;
    min-width: 12px !important;
    height: 12px !important;
    margin: 0% 10%;
    border-radius: 6px;
    background: #d6d6d6;
    }

    .quoteNavDot:hover {
    background: #80c342;
    }

    .quoteNavDot.dotActive {
    background: #80c342;
    transform: scale(1.2);
    }

        
/*
User warnings
*/

.warn {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  color: #333;
}

.warn_img {
  margin-right: 15px;
  width: 30px;
  height: 30px;
}

.warn b {
  font-weight: 700;
}

/*
BROWSER SPECIFIC  
*/

.input::-moz-placeholder { color:#333; opacity: 1; } /* FF 19+ */
.input:-moz-placeholder { color:#333; opacity: 1; } /* FF 18- */

::-moz-selection { /* Code for Firefox */
color: #80c342;
}

/*
GENERAL
*/

.footer_link {
font-family: "Nunito Sans", sans-serif;
font-weight: 600;
text-decoration: none;
color: #fff;
font-size: 94%;
}

.footer_link:hover {
color: #80c342;
}

.outline_box {
width: 100%;
padding: 1% 5%;
border: 1px solid #e3e3e3;
border-radius: 10px;
}

.form-control:focus {
border-color: #80c342;
box-shadow: 0 0 0 0.2rem rgba(128, 195, 66, 0.25);
} 

#content {
width: 80%;
margin: 0 auto;
padding: 0;
text-align: left;
margin-top: 50px;
}

main {
  padding: 0px 0px 30px 0px;
  margin: 0;
  position: relative;
}

#content1 {
width: 80%;
margin: 0 auto;
padding: 0;
text-align: left;
margin-top: 30px;
}

.inset_content {
width: 80%;
margin: 0 auto;
padding: 0;
text-align: left;
}


#content_wrapper {
width: 100%;
text-align: center;
margin: 0;
padding: 0;
}

#content_wrap {
width: 80%;
text-align: center;
margin: 0 auto;
padding: 0;
display: flex;
flex-direction: row;
justify-content: left;
align-items: flex-start;
margin-top: 40px;
}

#content_wrapper_right {
width: 85%;
padding: 0% 0% 0% 6%;
text-align: left;
margin: 0;
}

#content_side {
width: 15%;
max-width: 15%;
padding: 0%;
border-right: 1px solid #efefef;
text-align: left;
}

.flexmain {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
}

.fboxrow {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}

.fboxrow_spaced {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}

.spacer_bottom {
width: 100%;
height: 60px;
}

#ulhid {
display:none;
}

/*
TYPOGRAPHY
*/

@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 200, 300, 400, 500, 600, 700;
  font-display: swap;
  src: 
    local("Nunito Sans"),
    url("../fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.woff2");
}


  html {
    overflow-x: hidden; /* Hides content that overflows horizontally */
    max-width: 100%;    /* Ensures elements do not exceed the viewport width */
  }

  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 300;
    font-size: 1em;
    color: #333;
    overflow-x: hidden; /* Hides content that overflows horizontally */
    max-width: 100%;    /* Ensures elements do not exceed the viewport width */
  }

  /*
    6. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #333;
  }

  .fui-input::placeholder {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 1em !important;
    color: #333 !important;
  }

  .fui-input {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 1em !important;
    color: #333 !important;
  }

  .fui-select {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 1em !important;
    color: #333 !important;
  }

  .fui-btn, .fui-submit {
    background: #80c342 !important;
    border: none !important;
  }

  .fui-alert {
    max-width: 90% !important;
  }

  /*
    7. Avoid text overflows
  */
  h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
  }

  #content h1 {
    margin-top: 40px;
  }

  h1 {
    font-size: 1.95em;
    margin-bottom: 25px;
    line-height: 1.15;
  }

  h2 {
    font-size: 1.45em;
  }

  h3 {
    font-size: 1.25em;
    margin: 0px 0px 10px 0px;
  }

  h4 {
    font-size: 1.15em;
  }

  p {
    overflow-wrap: break-word;
    font-weight: 400;
  }
  /*
    8. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }

  a {
    color: #80c342;
    font-weight: 700;
  }

  a:hover {
    color: #5d8d31;
  }

  hr {
    margin: 30px 0px 30px 0px;
    border-color: #efefef;
    border-style: solid;
    border-width: 1px;
  }

  /* previous
  sup {
    font-size: 40%;
    position: relative;
    top: -.75em;
  }
    */

  sub, sup {
  /* Specified in % so that the sup/sup is the
     right size relative to the surrounding text */
  font-size: 50%;

  /* Zero out the line-height so that it doesn't
     interfere with the positioning that follows */
  line-height: 0;

  /* Where the magic happens: makes all browsers position
     the sup/sup properly, relative to the surrounding text */
  position: relative;

  /* Note that if you're using Eric Meyer's reset.css, this
     is already set and you can remove this rule */
  }

  sup {
    /* Move the superscripted text up */
    vertical-align: 0.62em;
  }

  sub {
    /* Move the subscripted text down, but only
      half as far down as the superscript moved up */
    bottom: -0.25em;
  }

  .indented {
    padding-left: 2%;
  }


  /*
  LISTS
  */
  .readlist {
    list-style: square;
  }

  .readlist li {
    margin-bottom: 10px;
  }

  .disclaimer {
    font-size: 80%;
    font-weight: 400;
  }


/*
  CUSTOM STYLES
*/
.sp_img {
  width: auto;
  max-height: 120px;
  margin: 0 auto;
}

.small_prompt {
  font-size: .8em;
  line-height: 1.2;
  clear: both;
  padding-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.sub_header_med_headline {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}

.product_benefits {
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 20px;
  list-style: square;
}

.product_benefits li {
  line-height: 1.2;
  margin-bottom: 18px;
}




/*
HEADER
*/


/*  MAIN SITE NAV */

.unistNav {
  position: relative;
  display: inline-block;   
  background: #000 !important;
  margin: 0;
  height: 114px;
  max-height: 114px;
  width: 100%;
  padding: 0;
}

header {
  display: inline-block;
  position: sticky; top: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  height: 114px;
  max-height: 114px;
  width: 100%;
  min-width: 100%;
  z-index: 99999;
  }


#unavFlex {
  padding: 0% 10% 0% 10%;
  margin: 0;
  background: #000;
  height: 114px;
  max-height: 114px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border: none;
}

.unavBrand {
  order: 1;

}


.unavToggler {
  background-color: transparent;
  order: 5;
  display: none;
  border: none;
  margin-left: 14px;
}

.unavToggler-icon {
  display: inline-block;
  width: 24px;
  height: 18px;
  vertical-align: middle;
  border: none;
}

.unavToggler:hover .hburg path {
  fill: #80c342;
}

.unavCollapse {
  order: 2;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  display: flex;
  align-items: center;
}

.unavDropUL {
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  list-style: none;
  
}

.unav-link {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 1.15em;
  margin-right: 26px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2 !important;
  height: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.unav-link a.active {
  color: #80c342;
}

.unav-link:hover {
  color: #80c342;
}

.unav-item-last, .unav-item {
  width: auto;
  text-align: left;
  margin: 0;
  padding: 0;
  height: 48px;
  min-height: 48px;
}


#unav_search_form {
  order: 4;
  width: auto;
  padding: 0;
  margin: 0;
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  }

#unav_searchBox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 165px;
  max-width: 165px;
  min-width: 165px;
  padding: 0;
  margin: 0;
  background: #fff;
  border: none;
  height: 36px;
  border-radius: 18px;
  padding-left: 9px;
}

 .ais-SearchBox-input  {
  width: 152px;
  min-width: 152px;
  max-width: 152px;
  padding: 0%;
  padding-left: 10px;
  margin: 0%;
  border: none;
  height: 32px;
  max-height: 32px;
  position: relative !important;
  background: none;
}

.ais-SearchBox-input:focus {
  outline: none;
}

.ais-SearchBox {
  width: 100%;
  min-width: 100%;
}

.ais-SearchBox-resetIcon {
  width: 10px;
  height: 10px;
  border: 0;
}

.ais-SearchBox-reset.searchReset {
  width: 36px;
  height: 36px;
  background: #fff;
position: relative;
  text-align: center;
  padding: 14px;
  margin-left: -32px;
  border-radius: 18px;
  }

.ais-SearchBox-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 100%;
}

  
#unav_contact_btn_icon:hover {
  background: #80c342;
}
  
  
#unav_contact_btn_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 2px;
  background: #fff;
  border-radius: 18px;
  margin: 0;
  order: 3;
  margin-left: auto;
}
  
.unav_contact_icon {
  width: 34px;
  height: 34px;
  margin: 0;
}


.hrline hr {
  border: none;
  border-top: 1px solid #666 !important;
  width: 100%;
  color: #666;
}

.hrline {
  min-width: 40%;
  margin-left: 20px;
  flex-grow: 1;
  height: auto;
  border: none;
}


.nav-link:hover {
color: #80c342;
}

.nav-link > .active > a {
color: #80c342;
}


.header_logo {
width: 150px;
max-width: 150px;
margin-right: 40px;
margin-left: 0px;
}


.cleanLink {
text-decoration: none;
font-weight: inherit;
}

.clblk {
  color: #333;
}

.LinkNoCol {
color: #333;
font-weight: inherit;
}

/*
BENEFITS BOX(ES)
*/

#benefits_div {
width: 100%;
padding: 0;
margin: 0;
background: #bee09f;
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 10px;
border-radius: 10px;
}

#benefits_div_fw {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #bee09f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
  border-radius: 0px;
  }

#benefits_div .prod_benefits_sb {
width: auto;
max-width: 75%;
height: 40px;
border-radius: 20px;
background: #80c342;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin: 0 auto;
margin-top: -20px;
color: #fff;
font-size: 1.3em;
font-weight: 600;
padding: 0px 25px 0px 25px;
}

.fw_heading {
margin-left: 10%;
margin-top: 26px;
}



.benefit_item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: 31%;
min-width: 31%;
max-width: 31%;
margin: 0% 1% 0% 1%;
margin-bottom: 30px;
padding: 0;
}

.benefit_icon {
width: 45px;
min-width: 45px;
height: 45px;
margin-right: 15px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.benefit_icon img {
max-height: 100%;
max-width: 45px !important;
}

.benefit_text {
font-weight: 700;
font-size: 1em;
line-height: 1.2;
max-width: 83%;
padding: 0;
text-align: left;
}


.fpheading {
  font-size: 1.4em;
  font-weight: 700;
}




/*
tables
*/

.std_table {
  width: 100%;
  font-size: .85em;
  line-height: 1.3;
  background: #efefef;
  border-collapse: collapse;
  margin-bottom: 30px;
  }
  
  .std_table th {
  background: #c9c9c9;
  color: #333;
  font-weight: 700;
  font-size: .85em;
  padding: 10px;
  border: 1px solid #c9c9c9;
  line-height: 1.1;
  }
  
  .std_table td {
  font-weight: 500;
  line-height: 1.3;
  max-width: 40%;
  padding: 10px;
  font-size: .85em;
  border: 1px solid #999;
  }

/*
SINGLES
*/

.wperc10 {
width: 10%;
}
.wperc15 {
width: 15%;
}

.wperc20 {
  width: 20%;
}

.wperc25 {
  width: 25%;
}

.wperc30 {
  width: 30%;
}

.wperc33 {
  width: 33%;
}

.wperc40 {
  width: 40%;
}

.wperc50 {
  width: 50%;
}

.wperc66 {
  width: 66%;
}

.wperc100 {
  width: 100%;
}



.singleTitle {
  margin-bottom: 30px;
}

.singleHr {
  margin: 30px 0px 30px 0px;
}

.singleRow {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: top;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.singleRowCenter {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
  padding: 0;  
}

.sing_img_row {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  max-height: 140px;
  min-height: 50px;
}

.single_img_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 4%;
  height: auto;
  max-height: min-content;
}

.single_text {
  width: auto;
  height: min-content !important;
  padding: 0;
  font-size: 1em;
  line-height: 1.4;
}

.single_text p {
  margin: 0;
  padding: 0;
}

.single_mctxt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.single_mctxt_row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.singleCol {
  width: 100%;
  font-size: 1em;
}

.doubleCol {
  width: 48%;
  font-size: .9em;
}

.tripleCol {
  width: 31%;
  font-size: .9em;
}

.quadCol {
  width: 22%;
  font-size: .9em;
}

/*
SOCIAL PROOF ROTATOR 
*/

.swiper-pagination, .swiper-pagination1 {
  --swiper-pagination-color: #80c342;
  --swiper-pagination-bullet-inactive-color: #666;

  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;

  position: relative;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  min-height: 22px;
  text-align: center;
}

.swiper-wrapper {
  margin: 0;
  padding: 0;
}


#spRotator {
  border-radius: 10px;
  overflow: hidden;
}

.attrAndBtn {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.rslide {
display: flex;
justify-content: center;
align-items: center;
position: relative;
width: 100%
max-width: 100%;
padding: 0;
text-align: left;
height: 300px;
background: #95cd62;
padding-top: 20px;
padding-bottom: 20px;
}

.slideTypeInd {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  width: auto;
  padding: 1% 2% 1% 2%;
  border-radius: 14px;
  background: #669C35;
  color: #91d74f;
  position: absolute;
  right: 10%;
  top: 30px;
  font-weight: 700;
  font-size: .85em;
}

.rslide_inner {
max-width: 80%;
width: 80%;
min-width: 80%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.rs_left_img {
width: 40%;
height: 100%;
max-height: 100%;
max-width: 40%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
z-index: 999;
padding: 0;
}

.limg {
width: 100%;
height: 100%;
max-height: 100%;
}

.rs_right_text {
max-width: 30% !important;
min-width: 30%;
height: 100%;
padding: 0;
display: flex;
flex-direction: column;
justify-content: left;
margin-left: 5%;
}

.rtTxt {
font-weight: 700;
margin-bottom: 5px;
}

.rtAttr {
color: #dfffc2;
font-size: .95em;
margin-top: 10px;
padding: 0;
font-weight: 500;
line-height: 1.1;
}

.rtArrowBox {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;width: auto;
min-width: 40%;
max-width: 380px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background:#d6feb2;
padding: 0% 3% 0% 3%;
cursor: pointer;
position: relative;
color: #668b43;
height: 42px;
max-height: 42px;
min-height: 42px !important;
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
margin-top: 20px;
text-decoration: none;
}

.rtArrowBox:hover {
background:#668b43;
color: #d6feb2;
}

.rtArrowBox:hover .rabLeft {
  border-right: 1px solid #d6feb2;

  }

.rtArrowBox:hover::after {
border-left-color:#668b43; 
}

.rtArrowBox:after {
  content:"";
  position: absolute;
  top:0;
  left:100%;
  width:0;
  height:42px;  
  max-height: 42px;
  min-height: 42px;
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:#d6feb2; 
  /* the opposite of the pointing direction */
  border-top-width:21px;
  border-right-width:1rem;
  border-bottom-width:21px;
  border-left-width:1em;
  border-style:solid;
}

.rabLeft {
font-weight: 700;
line-height: 1.15;
margin-right: 5%;
padding-right: 5%;
font-size: .9em;
border-right: 1px solid #71994b;
}

.rabRight {
font-weight: 500;
line-height: 1.25;
font-size: .8em;
}

.spr_headline {
  font-size: 1.55em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
  color: #567639;
  max-width: 100%;
}

.spr_text {
  font-size: 1.15em;
  line-height: 1.3;
  font-weight: 500;
  color: #567639;
  max-width: 90%;
}

.testiMore {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #567639;
  background:#d6feb2;
  padding: 2%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 42px;
  min-height: 42px;
  max-height: 42px;
  width: 160px;
  font-size: .85em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
}

.testiMore:hover {
  background:#668b43;
  color: #d6feb2;
  }

  .testiMore:hover::after {

    border-left-color:#668b43; 
    }

.testiMore:after {
  content:"";
  position: absolute;
  top:0;
  left:100%;
  width:0;
  height:100%; 
  border-top-color:transparent;
  border-right-color:transparent;
  border-bottom-color:transparent;
  border-left-color:#d6feb2; 
  /* the opposite of the pointing direction */
  border-top-width:21px;
  border-right-width:1rem;
  border-bottom-width:21px;
  border-left-width:1rem;
  border-style:solid;
  }

/*
SPECIAL LAYOUT ITEMS
*/

.page_section {
margin: 0;
margin-bottom: 40px;
margin-top: 40px;
}

.svgImg {
width: 100%;
height: auto;
min-height: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 0;

}

#top_content a {
  height: auto;
  width: auto;
  display: inline-block;
 
  border: none;
  border-radius: 0;
  padding: 0%;
  margin: 0px 5px 0px 5px;
}
  


/*
FOOTER
*/

.footer_cont h4 {
  font-size: 1.2em;
  margin-top: 7px;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
  font-weight: 700;
  }

.socnav .nav-item {
  margin-right: 10px;
}

footer {
background: #000;
margin: 0;
padding: 0;
color: #FAF9F6;
margin-top: 0px;
}

.footer_logo {
width: 70px;
max-width: 100px;
margin-right: 20px;
}

.footer_top {
width: 100%;
padding: 3%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}

.footer_brand {
width: 90px;
text-align: right;
}

.footer_cont {
width: auto;
margin: 0% 2% 0% 2%;
padding: 0;
text-align: left;
}

.footer_bottom {
border-top: 1px solid #999;
width: 100%;
padding: 3%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.footer_copyright {
width: auto;
height: 50px;
font-size: .88em;
font-weight: 600;
}

.footer_smlinks {
width: 30%;
min-width: 300px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin: 0;
}

.image_subs {
width: 100%;
height: 100px;
background: #999;
}

.item_list_row {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}

.prod_list_row {
display: flex;
flex-direction: row;
justify-content: left;
align-items: center;
margin-bottom: 4px;
}

.prod_list {
margin: 30px 0px 30px 0px;
}

.item_list {
margin: 0px 0px 30px 0px;
}

.eighth {
width: 11.75%;
max-width: 11.75%;
height: 120px;
margin: .375%;
}

.sixth {
width: 15.5%;
margin: .58%;
line-height: 1.3;
height: 150px;
}

.fifth {
width: 18%;
margin: 1%;
line-height: 1.3;
height: 140px;
}

.quarter {
width: 23%;
max-width: 23%;
min-width: 23%
line-height: 1.3;
height: auto;
margin: 1%;
}

.threequarter {
width: 72%;
max-width: 72%;
line-height: 1.3;
height: auto;
}

.third {
width: 32%;
line-height: 1.3;
height: 150px;
font-size: 12px;
margin: 1%;
}

.choice_prompt {
width: 100%;
text-align:center;
margin-bottom: 20px;
font-size: 1.3em;
}

#row2, #row3, #row4 {
display: none;
}

nav {
height: auto;
}

.btn-group button {
padding:  10px 20px;
font-family: 'Nunito Sans', sans-serif;
font-weight: 700;
}

.sideMenuItem {
font-size: .9em;
color: #333;
font-weight: 600;
text-decoration: none;
margin-bottom: 5px;
width: 100%;
max-width: 100%;
padding: 5px;
display: inline-block;
line-height: 1.1;
}

.sideMenu {
position: relative;
}

/*
Contact Us
*/

#contentDiv {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
  padding: 0;
  margin: 0;
}

#top_content {
padding-right: 20px;
border-right: 1px solid #efefef;
}

#top_continfo {
padding-left: 20px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: top;
}

.add {
  padding-right: 20px;
  border-right: 1px solid #efefef;
  font-weight: 500;
  line-height: 1.3;
  font-size: .9em;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.add p {
  margin: 0;
  padding: 0;
}

.phone {
  padding-left: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: .9em;
}

.pin {
  margin-right: 20px;
}


/*
Entry Error Block - Displays if error producing entry
*/

#entryErr {
width: 100%;
min-height: 400px;
display: flex;
justify-content: center;
align-items: center;
}

#entryErr .inner {
width: auto;
max-width: 50%;
padding: 5%;
}

#entryErr .entryErr_subhead {
font-size: 1.2em;
line-height: 1.4;
font-weight: 400;
color: #999;
margin-top: 10px;
margin-bottom: 10px;
}

#entryErr .entryErr_txt {
font-size: 1em;
line-height: 1.4;
font-weight: 400;
color: #333;
}

/*
CUSTOM UNIST ELEMENTS
*/

#getReader {
width: auto;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin-bottom: 40px;
}

.gReadImg {
width: 40px;
margin-right: 6px;
}

.grLink {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
font-size: 85%;
font-weight: 400;
}

.step_heading {
width: 100%;
padding: 0;
font-size: 1em;
font-weight: 700;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}

.step_heading .step_indicator {
width: 30px;
height: 30px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
border-radius: 15px;
background: #80c342;
color: #fff;
margin-right: 20px;
}

#sample_request_form_heading {
margin: 40px 0px 30px 0px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 100%;
padding: 5%;
border-radius: 10px;
background: rgb(222,222,222);
background: linear-gradient(0deg, rgba(222,222,222,1) 0%, rgba(213,213,213,1) 35%, rgba(239,239,239,1) 100%);
height: 200px;
}

#sample_request_form_heading .image {
width: 50px;
max-height: 150px;
margin-right: 30px;
padding: 0;
}

#sample_request_form_heading .text {
width: auto;
text-align: left;
}

.sample_request_heading_image {
width: 200px;
}

#form_close_btn {
position: relative;
float: right;
margin-top: -40px;
margin-right: -10px;
width: 48px;
height: 48px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
font-size: 1.25em;
color: #333;
cursor: pointer;
}

#form_close_btn:hover {
color: #80c342;
}

#form_close_btn1 {
position: relative;
float: right;
margin-top: -40px;
margin-right: -10px;
width: 48px;
height: 48px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
font-size: 1.25em;
color: #333;
cursor: pointer;
}

#form_close_btn1:hover {
color: #80c342;
}

.drop_form {
margin: 0;
width: 100%;
padding: 4%;
background: #E5E4E2;
height: auto;    
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: inset 0px 4px 8px -6px #333;
border-radius: 0px 0px 10px 10px;
position: relative;
}

.formTitle {
font-size: 1.3em;
font-weight: 700;
color: #333;
margin-bottom: 20px;
}

.formTitle .sub {
font-weight: 400;
}

#page_content {
margin-top: 30px;
margin-bottom: 90px;
width: 100%;
padding: 0;
}

.inneralt {
display: none;
padding: 10px;
padding-top: 30px;
}

.innermain {
width: 100%;
height: inherit;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1em;
padding: 0;
margin: 0;
color: #333;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
z-index: 1;
}

.prod_card_info {
position: absolute;
top: 0;
right: 0;
width: 28px;
height: 28px;
margin: 6px 6px 0px 0px;
border-radius: 4px;
padding: 0px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
color: #bfbfbf;
border: 1px solid #bfbfbf;
font-weight: 800;
cursor: pointer;
z-index: 99;
}

.prod_card_info:hover  .prod_card_info i {
color: #000;
}

.sub_header_emph_box {
width: 40%;
padding: 0;
color: #fff;
font-size: .9em;
font-weight: 400;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

.scream_box {
width: 100%;
padding: 2% 1.5%;
color: #fff;
font-size: 1em;
font-weight: 500;
border-radius: 8px;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
overflow: hidden;
background: rgb(101,145,60);
background: linear-gradient(0deg, rgba(101,145,60,1) 21%, rgba(128,195,66,1) 60%, rgba(164,222,111,1) 100%);
}

.scream_box_headline_med {
font-size: 1.3em;
font-weight: 700;
line-height: 1.2;
margin: 0;
text-shadow: #3d4c2d 1px 1px 1px;
}

.scream_box_headline_sml {
font-size: 1.1em;
font-weight: 700;
line-height: 1.2;
margin: 0;
text-shadow: #3d4c2d 1px 1px 1px;
}

.whitecircaccent {
width: 100px;
height: 100px;
background: #efefef;
border-radius: 50px;
}

.sub_header_quote
{
padding: 1%;
color: #fff;
max-width: 40%;
display: flex;
flex-direction: row;
justify-content: space-between;
}  

.sub_header_quote .headline {
font-size: 1em;
font-weight: 500;
}

.sub_header_quote .quotee {
font-size: .85em;
font-weight: 300;
margin-top: 10px;
}

.sub_header_quote_icon {
width: 30px;
}

.intro_headline {
font-size: 2em;
font-weight: 500;
margin-bottom: 5px;
}

#gen_support_info {
display: none;
}

#support_product_picker {
display: none;
}

#product_picker {
margin-bottom: 90px;
}

.splist_holder {
box-sizing: border-box;
display: flex;
justify-content: space_evenly;
flex-direction: row;
align-items: center;
margin-top: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}


.plist_holder {
box-sizing: border-box;
display: flex;
justify-content: space_evenly;
flex-direction: row;
align-items: center;
margin-top: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}

.u_card {
position: relative;
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1em;
padding: 1%;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
border-radius: 8px;
border: 1px solid #efefef;
color: #333;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
height: 150px;
}

.u_card .icon {
max-width: 25%;
height: 50px;
display: flex;
flex-direction: row;
align-items: flex-end;
}

.u_card .icon img {
max-height: 50px;
}

.u_card .titl {
font-size: .9em;
font-weight: 700;
top: 70%;
}


.small_prod_card {
position: relative;
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1em;
padding: 1%;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
border-radius: 8px;
border: 1px solid #efefef;
color: #333;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
height: 150px;

}

.small_prod_card .titl {
font-size: 1.3em;
font-weight: 700;
max-width: 100%;
}

.small_prod_card .desc {
font-size: .9em;
font-weight: 400;
max-width: 90%;
line-height: 1.2;
}

.small_prod_card:hover {
background: #80c342;
color: #fff;
}

.small_prod_card .small_prod_img {
width: 50%;
margin-bottom: 6px;
}

.small_prod_card .small_prod_name {
width: 100%;
font-size: 1em;
font-weight: 700;
line-height: 1.1;
text-align: center;
}


.prodfamily {
width: 100%;
margin: 0;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;

}

.pfamily {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin-bottom: 20px;
}

.pfamily_name {
white-space: nowrap;
font-size: 1.15em;
font-weight: 700;
color: #7f7f7f;
text-align: left;
line-height: 1.2;
text-decoration: none;
cursor: pointer;
margin-right: 20px;

}

.pfhr {
border-top: 1px solid #999;;
float: left;
overflow: hidden;
width: 100%;
margin: 30px 0px 30px 0px;
}

.u_prod_card {
text-decoration: none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 1em;
padding: 2%;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
border-radius: 15px;
border: 1px solid #efefef;
color: #333;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
}

.u_prod_card .prod_img {
width: 100%;
height: 50%;
margin: 0 auto;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background: #333;
}

.u_prod_card .prod_img img {
width: 100%;
min-width: 100px;
border: 1px solid #fff;
display: inline-block;
}

.u_prod_card .titl {
font-size: 1.2em;
color: #333;
font-weight: 800;
width: 100%;
padding: 0;
margin-top: 5px;
text-align: center;

}

.u_prod_card .desc {
color: #333;
font-size: .88em;
}

.horiznote {
width: 100%;
text-align: center;
font-size: 1em;
font-family: 'Nunito Sans', sans-serif;
font-weight: 400;
margin: 0px 0px 30px 0px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}

#support_search {
width: 40%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
border-radius: 10px;
}

.support_panel {
height: 240px;
min-height: 240px;
padding: 2% 2% 0% 2%;
background: #fff;
border: 1px solid #dbdbdb;
font-size: 96%;
margin: 30px 0px 30px 0px;
border-radius: 10px;
position: relative;
}

.panel {
height: auto;
padding: 2%;
background: #fff;
border: 1px solid #dbdbdb;
font-size: 96%;
margin: 1%;
border-radius: 10px;
position: relative;
}

.panel p {
margin: 8px 0px 4px 0px;
line-height: 1.2;
}

.panel_link {
font-weight: 700;
width: 100%;
text-align: right;

}

.support_panel .morelink {
font-size: 1em;
color: #333;
text-decoration: underline;
font-weight: 600;
margin: 0;
position: absolute;
bottom: 0;
right: 0;
top: 100%;
margin: -40px 16px 0px 0px;
}

.support_panel_full_accnt {
width: 100%;
padding: 1.5%;
background: #efefef;
border-radius: 10px;
margin: 0px;
display: flex;
flex-direction: row; 
justify-content: center;
align-items: center;
color: #333;
font-family: 'Nunito Sans', sans-serif;
font-weight: 400;
font-size: 1.1em;
}

.support_panel_full_accnt a {
color: #333;
}

.support_panel_full_accnt h3 {
margin: 0;
}

.support_panel_full_accnt .heading {
font-size: 1em;
font-weight: 700;
margin-right: 20px;
}


.support_panel li {
font-size: 1em;
margin-bottom: 6px;
}

.support_panel ul {
font-size: 1em;
font-family: 'Nunito Sans', sans-serif;
font-weight: 500;
}

#supportsubhead {
display: none;
}

#support_init_nav .left {
width: 40%;
margin-right: 2.5%;
}

#support_init_nav .right {
width: 40%;
margin-left: 2.5%;
}

#support_init_nav .icon {
width: 10%;
}

.livesupport_status_active {
width: 20px;
height: 20px;
border-radius: 10px;
margin-right: 10px;
background: #68b322;
}

.ls_status {
color: #68b322;
font-size: 1em;
font-weight: 800;
margin-right: 20px;
}


.emphbox {
width: 100%;
padding: 3%;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
background: #efefef;
border-radius: 15px;
margin-bottom: 30px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;
}

.emphbox_tight {
width: 100%;
padding: 1.5%;
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
background: #efefef;
border-radius: 15px;
margin-bottom: 30px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
font-family: 'Nunito Sans', sans-serif;
font-weight: 300;

}

.inner_left {
width: 100%;
}

.inner_right {
width: 40%;
}

.hworkscopy {
font-size: 1em;
line-height: 1.3;
}

.hworkscopy p {
line-height: 1.3;
margin-top: 10px;
width: 90%;
}

.hworksIcons {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-start;
flex-wrap: nowrap;
padding: 0;
margin: 0;
margin-top: 25px;
}

.hworksIcon {
width: auto;
text-align: center;
padding: 2.5%;
margin-right: 5px;
}

.hworksIconImg {
margin-bottom: 8px;
}

.hworksIconImg img {
height: 30px;
margin: 0 auto;
}

.hworksIconTitle {
font-size: .8em;
color: #333;
font-family: 'Nunito Sans';
font-weight: 700;
text-align: center;
line-height: 1.2;
}

.hworksLink {

}

.ubtn {
background: #80c342;
color: #fff;
font-weight: 600;
cursor: pointer;
border-radius: 6px;
border: none;
display: flex;
justify-content: center;
align-items: center;
height: 48px;
text-decoration: none;
vertical-align: center;
padding: 8px 16px;
font-size: 1em;
}

.abtn {
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
color: #333;
border: 1px solid #efefef;
font-weight: 600;
cursor: pointer;
border-radius: 6px;
display: flex;
justify-content: center;
align-items: center;
height: 48px;
text-decoration: none;
vertical-align: center;
padding: 8px 16px;
font-size: 1em;
}


.ubtnbk {
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 8px 16px;
  height: 48px;
  font-size: 1em;
}

.ubtnbk:hover {
  background: #000;
  color: #999;
  border: 1px solid #999;
  }

.ubtn_white {
background: rgb(228,228,228);
background: linear-gradient(0deg, rgba(228,228,228,1) 0%, rgba(242,242,242,1) 49%, rgba(255,255,255,1) 100%); 
color: #333;
border: 1px solid #efefef;
line-height: 1.2;
font-weight: 600;
}

.ubtn_light {
background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
color: #333;
border: 1px solid #efefef;
line-height: 1.2;
font-weight: 600;
border-radius: 6;
}

.ubtn_light {
font-size: 1em;
}

.ubtn_light i {
margin-right: 8px;
padding: 0;
}

.ubtn_white:hover {
background: rgb(176,176,176);
background: linear-gradient(0deg, rgba(176,176,176,1) 0%, rgba(219,219,219,1) 49%, rgba(241,241,241,1) 100%); 
border: none;
}

.ubtn_light:hover {
background: #999;
color: #fff;
}

.ubtn:hover {
background: #629136;
color: #fff;
}

.abtn:hover {
background: #80c342;
color: #fff;
}

/*
Applications/Sub-Applicaitons pages
*/

.app_prod_list {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}

.app_prod_fam_row {
width: 96%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
margin: 0;
border: 1px solid #eeeeee;
border-radius: 10px;
padding: .5%;
margin-bottom: 30px;
}


.app_fboxrow {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
justify-content: flex-start;
float: right;
}


.jumplist {
width: 96%;
padding: 2%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
}

.jumplist a {
font-size: .95em;
margin: .5%;
}


.logo_list {
width: 100%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
}

.oem_logo {
width: 20%;
max-width: 20%;
min-width: 20%;
margin-bottom: 0px;
margin-top: 0;
height: 90px;
max-height: 90px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: space-between;
}

.logo_name {
font-size: .9em;
font-weight: 500;
margin-top: 8px;
width: 100%;
text-align: center;
}

.logo_container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 110px;
}


.oem_logo_img {
max-width: 60%;
max-height: 90px;
display: inline-block;
margin: 0 auto;
}

.oem_logos_list {
width: 100%;
max-width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
}


.visWrap {
height: 90px;
max-height: 90px;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}

#chooser {
background: #80c342;
border-radius: 5px;
padding: 10px;
border: 0;
color: #fff;
font-weight: 600;
padding-right: 10px;
margin: 0;
}
/*
Other
*/

.third .titl {
font-size: 1.2em;
margin-top: 8px;
}

.quarter .titl {
font-size: .95em;
margin-top: 8px;
}

.hidrows {
display: none;
}

.expander {
width: 100%;
margin-bottom: 30px;
text-align: center;
}

.showhid {
margin: 0 auto;
font-size: 1.2em;
padding: 8px;
border-radius: 8px;
background: #fff;
color: #333;
max-width: 40%;
}

.showhid:hover {
background: #80c342;
color: #fff;
}

/*
Table
*/

.table table {
  margin-left: 15%;
  background: none;
}

.table table td {
  border: none;
  padding: 10px;
  vertical-align: top;
  font-weight: 500;
  background: none;
  line-height: 1.15;

}

.table table tr {
  border: none;
  background: none;

}

.table table td strong {
  font-weight: 700;
  line-height: 1.1;
}

#contactInfo_div {
padding: 3%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
border-radius: 10px;
background: #efefef;
}

/*PRODUCT PAGE / PRODUCTS*/

.prod_il_cta {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 30px 0px 30px 0px;
  background: #dff0d0;
  border-radius: 10px;
}

.prod_il_cta_headline {
  font-size: 1.3em;
  font-weight: 700;
  white-space: nowrap;
  width: auto;
}

.prod_il_cta_copy {
  font-size: 1.2em;
  font-weight: 400;
  margin: 0% 3% 0% .5%;
  width: 45%;
  text-align: left;
}

.pointer_div {
  background: #6ba238;
  width: 100%;
  color: #fff;
  margin: 0;
  margin-left: 1.5%;
  height: 90px;
  padding: 2%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.point {
  background: #dff0d0;
  height: inherit;
  min-width: 25px;
}

.point_img {
  height: 90px;
}

.pointer_div_icon {
  width: 60px; 
  height: 60px;
  margin-right: 10px;
}

.left_int {
  margin-right: 3.5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  width: 25%;
}


.section_heading {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.section_heading .heading_left {
  width: auto;
  max-width: 50%;
  margin-right: 5%;
}

.small_app_prod_card {
  width: 25%;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  padding: 1%;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
  border-radius: 8px;
  border: 1px solid #efefef;
  color: #333;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  height: 220px;
  margin: 1%;
}

.small_app_prod_card .small_prod_name {
  width: 100%;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.small_app_prod_card .titl {
  font-size: 1.3em;
  font-weight: 700;
  max-width: 100%;
}

.small_app_prod_card .small_prod_desc {
  font-size: .9em;
  font-weight: 500;
  max-width: 90%;
  line-height: 1.2 !important;
  color: #333;
  text-align: center;
}

.small_app_prod_card:hover {
  background: #80c342;
  color: #fff;
}

.small_app_prod_card .small_prod_img {
  width: 45%;
  margin-bottom: 6px;
}


.inneralt {
  display: none;
  padding: 10%;
  padding-top: 30px;
  height: 100%;
}

.inneralt p {
  font-size: 1.1em;
  line-height: 1.2;
}

.inneralt .small_prod_name {
  width: 100%;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 6px;
}


.small_app_prod_card_sml {
  width: 23.5%;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: .9em;
  padding: 1%;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
  border-radius: 8px;
  border: 1px solid #efefef;
  color: #333;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  height: 190px;
  margin: 1%;
}

.legacy {
  background: #fff;
}

.legacyTxt {
  font-size: 80%;
  font-weight: 400;
}

.small_app_prod_card_sml .small_prod_name {
  width: 100%;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.small_app_prod_card_sml .titl {
  font-size: 1em;
  font-weight: 700;
  max-width: 100%;
}

.small_app_prod_card_sml .desc {
  font-size: 1.2em;
  font-weight: 400;
  max-width: 90%;
  line-height: 1.2;
}

.small_app_prod_card_sml .small_prod_desc {
  font-size: .88em;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  padding: 0% 3% 0% 3%;
  margin-top: 3px;
  color: #333;
}

.small_app_prod_card_sml:hover {
  background: #80c342;
  color: #fff;
}

.small_app_prod_card_sml .small_prod_img {
  width: 70%;
  height: 100px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.small_app_prod_card_sml .small_prod_img img {

  max-height: 100px;
}

.small_app_prod_card_sml .inneralt {
  display: none;
  padding: 10%;
  padding-top: 30px;
  height: 100%;
}

.small_app_prod_card_sml .inneralt p {
  font-size: .8em;
  line-height: 1.2;
}

.small_app_prod_card_sml .inneralt .small_prod_name {
  width: 100%;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 6px;
}





/*
BLOG
*/



.blog_list_img {
  width: 45%;
  height: auto;
  margin: 0px;
  background: #333;
  margin-right: 5%;
}

.blog_list_txt {
  width: 50%;
}

.feature-image {
  width: 100%;
  height: auto;
  margin: 10px 0px 10px 0px;
}

article {
  width: 100%;
  height: auto;
  padding: 2%;
  border: 1px solid #efefef;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin: 10px 0px 10px 0px;
}

.textblock_holder {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: top;
  flex-wrap: wrap;
  background: #efefef;
}

.text_block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: top;
  padding: 0;
  margin: 20px 0px 20px 0px !important;
}

.tb_image_left {
  max-width: 55%;
  margin-right: 5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
}

.tb_image_right {
  width: auto;
  max-width: 55%;
  margin-left: 5%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: top;
}

.tb_image {
  max-width: 100%;
  
  min-height: 180px;
  max-height: 220px;
}

.tb_text {
  width: auto;
  max-width: 65%;
  font-size: 1em;
  padding: 0;
  margin: 0;
}

.product_benefit {
  width: 30%;
  margin: 1%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.3;
  text-align: center;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 1%;
}

.product_benefit_img { 
  max-width: 90%;
  padding-top: 4%
}

.product_benefit_title {
  font-size: 1.1em;
  font-weight: 600;
  padding: 12px 0px 6px 0px;
}

.vidPlayBtn {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  border-radius: 25px;
  background: rgb(255 255 255 / 60%);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25em;
  z-index: 999;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  padding-left: 4px;
  padding-top: 4px;
  cursor: pointer;
  margin: 0 auto;
}

.vidPlayBtn:hover {
  background: #80c342;
  color: #333;
}

.vidStill {
  max-width: 100%;
  width: 100%;
  z-index: 99;
}

.vid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.boxChart
{
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.chartBox { 
  padding: 0%;
  min-height: 200px;
  max-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #333;
  background: #e2e5e4;
  border-radius: 10px;
  margin: 1%;
  position: relative;
} 

.green {
  background: #80c342;
  color: #fff;
}

.one {
  width: 100%;
  max-width: 100%;
  margin: 0%;
}

.two {
  width: 48%;
  max-width: 48%;
  margin: 0% 1% 0% 1%;
}

.three {
  width: 32%;
  max-width: 32%;
  margin: 0% .5% 0% .5%;
}

.four {
  width: 24%;
  max-width: 24%;
  margin: 0% .5% 0% .5%;
}

.five {
  max-width: 19%;
  width: 19%;
  margin: 0% .5% 0% .5%;
}

.six {
  max-width: 15.66%;
  width: 15.66%;
  margin: 0% .5% 0% .5%;
}

.boxChartCenter {
  width: 100%;
  text-align: center;
  font-size: 2.25em;
  font-weight: 700;
  position: relative;
  height: 50px;
  padding: 0;
  margin-bottom: 20px;
}

.boxChartDesc {
  font-size: .87em;
  line-height: 1.2;
  text-align: center;
  padding: 0px 10% 0px 10%;
  max-width: 100%;
  width: 100%;
  font-weight: 400;
  min-height: 45px;
}

.fw_image {
  width: 90%;
  margin: 0 auto;
}

.fw_image_wrap {
  width: 100%;
  padding: 0% 5% 0% 5%;
  text-align: center;
  margin-top: 30px;
}

.spaced_hr {
  margin: 60px 0px 60px 0px;
  border-top: 1px solid #999;
}

.spaced_hr_lt {
  margin: 40px 0px 40px 0px;
  border-top: 1px solid #999;
}

#content_sproof_bubble {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 3%;
  color: #333;
  border: 1px solid #efefef;
  margin: 40px 0px 40px 0px;
  position: relative;
  min-height: 230px;
  height: auto;
  }

  .testimonial {
    width: auto;
    position: relative;
    font-size: 1em;
  }

  .testimonials {
    width: 80%;
    min-width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  
  .content_sproof_bubble p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0;
  }
  
  .sproof_headline {
  font-size: 1.2em;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 7px;
  width: 100%;
  text-align: center;
  }

  .leftControl {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 10%;
  }
  
  .rightControl {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 10%;
  }

  .directional_btn {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 9px;
    z-index: 99;
  }

  .qticon {
    position: absolute;
    top: 10;
    left: 20;
    width: 20px;
    margin-left: -30px;
    z-index: 9;
  }

  .qticon img {
    max-width: 20px;
  }
  
  .sproof_byline {
  font-size: .95em;
  font-weight: 700;
  margin-bottom: 8px;
  }
  
  .sproof_link {
  font-size: 1em;
  font-weight: 500;
  width: 100%;
  text-align: center;
  padding-right: 2%;
  margin-top: 20px;
  }

.fw_bo_box {
width: 100%;
min-width: 100% !important;
background: #efefef;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: left;
padding: 2% 10% 4% 10%;
height: auto;
min-height: 220px;
}

#social_proof {
height: 275px;
max-height: 275px;
min-height: 275px;
}

#topNavBar {
  background: #000;
  margin: 0;
  padding: 0;
}

#clBtn:hover {
  background: #80c342;;
  color: #333;
  cursor: pointer;
}

#viewAll:hover {
  background: #80c342;;
  color: #fff;
  cursor: pointer;
}

/*instantsearch_reset.css*/

.ais-Breadcrumb-list,
.ais-Carousel-list,
.ais-CurrentRefinements-list,
.ais-HierarchicalMenu-list,
.ais-Hits-list,
.ais-FrequentlyBoughtTogether-list,
.ais-LookingSimilar-list,
.ais-RelatedProducts-list,
.ais-TrendingItems-list,
.ais-Results-list,
.ais-InfiniteHits-list,
.ais-InfiniteResults-list,
.ais-Menu-list,
.ais-NumericMenu-list,
.ais-Pagination-list,
.ais-RatingMenu-list,
.ais-RefinementList-list,
.ais-ToggleRefinement-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.ais-Carousel-navigation,
.ais-ClearRefinements-button,
.ais-CurrentRefinements-delete,
.ais-CurrentRefinements-reset,
.ais-GeoSearch-redo,
.ais-GeoSearch-reset,
.ais-HierarchicalMenu-showMore,
.ais-InfiniteHits-loadPrevious,
.ais-InfiniteHits-loadMore,
.ais-InfiniteResults-loadMore,
.ais-Menu-showMore,
.ais-RangeInput-submit,
.ais-RefinementList-showMore,
.ais-SearchBox-submit,
.ais-SearchBox-reset,
.ais-VoiceSearch-button {
    padding: 0;
    overflow: visible;
    font: inherit;
    line-height: normal;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.ais-Carousel-navigation::-moz-focus-inner,
.ais-ClearRefinements-button::-moz-focus-inner,
.ais-CurrentRefinements-delete::-moz-focus-inner,
.ais-CurrentRefinements-reset::-moz-focus-inner,
.ais-GeoSearch-redo::-moz-focus-inner,
.ais-GeoSearch-reset::-moz-focus-inner,
.ais-HierarchicalMenu-showMore::-moz-focus-inner,
.ais-InfiniteHits-loadPrevious::-moz-focus-inner,
.ais-InfiniteHits-loadMore::-moz-focus-inner,
.ais-InfiniteResults-loadMore::-moz-focus-inner,
.ais-Menu-showMore::-moz-focus-inner,
.ais-RangeInput-submit::-moz-focus-inner,
.ais-RefinementList-showMore::-moz-focus-inner,
.ais-SearchBox-submit::-moz-focus-inner,
.ais-SearchBox-reset::-moz-focus-inner,
.ais-VoiceSearch-button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.ais-Carousel-navigation[disabled],
.ais-ClearRefinements-button[disabled],
.ais-CurrentRefinements-delete[disabled],
.ais-CurrentRefinements-reset[disabled],
.ais-GeoSearch-redo[disabled],
.ais-GeoSearch-reset[disabled],
.ais-HierarchicalMenu-showMore[disabled],
.ais-InfiniteHits-loadPrevious[disabled],
.ais-InfiniteHits-loadMore[disabled],
.ais-InfiniteResults-loadMore[disabled],
.ais-Menu-showMore[disabled],
.ais-RangeInput-submit[disabled],
.ais-RefinementList-showMore[disabled],
.ais-SearchBox-submit[disabled],
.ais-SearchBox-reset[disabled],
.ais-VoiceSearch-button[disabled] {
    cursor: default
}

.ais-InfiniteHits-loadPrevious,
.ais-InfiniteHits-loadMore,
.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore {
    overflow-anchor: none
}

.ais-Breadcrumb-list,
.ais-Breadcrumb-item,
.ais-Pagination-list,
.ais-RangeInput-form,
.ais-RatingMenu-link,
.ais-PoweredBy {
    display: flex;
    align-items: center
}

.ais-GeoSearch,
.ais-GeoSearch-map {
    height: 100%
}

.ais-HierarchicalMenu-list .ais-HierarchicalMenu-list {
    margin-left: 1em
}

.ais-PoweredBy-logo {
    display: block;
    height: 1.2em;
    width: auto
}

.ais-PoweredBy-text {
    margin-right: .3rem
}

.ais-RatingMenu-starIcon {
    display: block;
    width: 20px;
    height: 20px
}

.ais-SearchBox-input::-ms-clear,
.ais-SearchBox-input::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

.ais-SearchBox-input::-webkit-search-decoration,
.ais-SearchBox-input::-webkit-search-cancel-button,
.ais-SearchBox-input::-webkit-search-results-button,
.ais-SearchBox-input::-webkit-search-results-decoration {
    display: none
}

.ais-RangeSlider .rheostat {
    overflow: visible;
    margin-top: 40px;
    margin-bottom: 40px
}

.ais-RangeSlider .rheostat-background {
    height: 6px;
    top: 0px;
    width: 100%
}

.ais-RangeSlider .rheostat-handle {
    margin-left: -12px;
    top: -7px
}

.ais-RangeSlider .rheostat-background {
    position: relative;
    background-color: #fff;
    border: 1px solid #aaa
}

.ais-RangeSlider .rheostat-progress {
    position: absolute;
    top: 1px;
    height: 4px;
    background-color: #333
}

.rheostat-handle {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 50%;
    cursor: grab
}

.rheostat-marker {
    margin-left: -1px;
    position: absolute;
    width: 1px;
    height: 5px;
    background-color: #aaa
}

.rheostat-marker--large {
    height: 9px
}

.rheostat-value {
    margin-left: 50%;
    padding-top: 15px;
    position: absolute;
    text-align: center;
    transform: translateX(-50%)
}

.rheostat-tooltip {
    margin-left: 50%;
    position: absolute;
    top: -22px;
    text-align: center;
    transform: translateX(-50%)
}

.ais-Carousel {
    position: relative
}

.ais-Carousel-list {
    grid-auto-columns: 42%;
    display: grid;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity
}

@media(min-width: 999px) {
    .ais-Carousel-list {
        grid-auto-columns: 20%
    }
}

.ais-Carousel-navigation {
    position: absolute;
    top: 35%;
    z-index: 1
}

.ais-Carousel-navigation--previous {
    left: 0;
    transform: translateX(-25%)
}

.ais-Carousel-navigation--next {
    right: 0;
    transform: translateX(25%)
}

.ais-Carousel-item {
    scroll-snap-align: start
}


/* SEARCH */


/* Search Drop */


#all_video {
  margin-top: -14px;
}

#searchDropContent {
  opacity: 1.0;
  position: relative;
  z-index: 9998;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin: 0;
  box-shadow: none;
  padding: 10px;
  }

  #searchDropWrap {
    background: #000;
    width: 100%;
    min-width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 0px;
    z-index: 9998;
    padding-top: 0px;
    height: 0px;
    max-height: 0px;
    padding-right: 8%;
    }

    #searchDropBack {
      position: absolute;
      top: 0;
      left: 0;
      margin-left: 0 !important;
      z-index: -10;
      display: inline-block;
      background: #000;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      padding: 0;
      height: 100%;
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";

      /* IE 5-7 */
      filter: alpha(opacity=90);

      /* Netscape */
      -moz-opacity: 0.90;

      /* Safari 1.x */
      -khtml-opacity: 0.90;

      /* Good browsers */
      opacity: 0.90;

      box-shadow: none;

      }
/* Hits */


.video_hit {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
  font-size: .9em;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  line-height: 1.2;  
  text-decoration: none;
  padding: 1.25%;
}


.product_hit {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  font-size: .95em;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  width: 100%;
  padding: 3%;
  line-height: 1.2;
  border-radius: 4px !important;
}

.kbase_hit {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    font-size: .88em;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    min-width: 100% !important;
    padding: 1%;
    border-radius: 4px;
    margin: 0 !important;
    margin-bottom: 4px !important;
    height: auto;
    min-height: 35px;
    max-height: 57px;
    padding-top: 6px;
}

.kbaseasset_hit {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-decoration: none;
    font-size: .88em;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    min-width: 100% !important;
    padding: 1%;
    border-radius: 4px;
    margin: 0 !important;
    margin-bottom: 4px !important;
    height: auto;
    min-height: 35px;
    max-height: 57px;
    padding-top: 6px;
}


.kbase_hit:hover {
  background: #80c342;
  color: #333;
}

.kbase_hit .icon{
  padding-top: 2px !important;
}

.kbaseasset_hit:hover {
  background: #80c342;
  color: #333;
}

.kbaseasset_hit .icon{
  padding-top: 2px !important;
}

.pages_hit .icon {
  padding-top: 0px !important;
}

.application_hit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  width: 100%;
  font-size: .88em;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  line-height: 1.2;  
  text-decoration: none;
  height: auto;
  margin-bottom: 2px;
  border-radius: 4px;
  padding: 1.5%;
}

.pages_hit {
    text-decoration: none;
    font-size: .88em;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    width: 100% !important;
    min-width: 100% !important;
    padding: 1%;
    margin-bottom: 4px;
    border-radius: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pages_hit:hover {
    background: #80c342;
    color: #333;
}

.kb_hit  {
  display: block;
  text-decoration: none; 
  color: #333;
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 10px;
}

.app_hit  {
  display: block;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1em;
  color: #333;
}

/* Hit wrappers */


#hits-products .ais-Hits .ais-Hits-list {
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  padding: 0;
}

#hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
  }
  
#hits-products .ais-Hits .ais-Hits-list .ais-Hits-item:hover {
  background: #80c342;
}

#hits-products .ais-Hits .ais-Hits-list .ais-Hits-item:hover .product_hit {
    color: #333;
}

#hits-applications {
    margin: 0;
}

#hits-applications .ais-Hits .ais-Hits-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start !important;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  margin: 0;
}

#hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
  width: 50%;
  max-width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center !important;
  padding: 1%;
}

#hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item:hover  {
  background: #80c342;
}

#hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item:hover .application_hit {
  color: #333;
}

#hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item:hover .application_hit .appicon img {
filter: invert(1);
}



#hits-kbase {
    margin: 0;
}

#hits-kbase .ais-Hits .ais-Hits-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}

#hits-kbase .ais-Hits .ais-Hits-list .ais-Hits-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

#hits-pages {
    margin: 0;
}

#hits-pages .ais-Hits .ais-Hits-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start
  width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
}

#hits-pages .ais-Hits .ais-Hits-list .ais-Hits-item {
  margin: 0px 0px 10px 0px;
  width: 50%;
  max-width: 50%;
}

#hits-videos {
  margin: 0;
}

#hits-videos .ais-Hits .ais-Hits-list {
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}


#hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
width: 50%;
max-width: 50%;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center !important;
padding: 0;
border-radius: 4px;
}

#hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item:hover {
  background: #80c342;
}

#hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item:hover .video_hit {
  color: #333;
}


#content_wrapper {
  margin-top: 0;
  padding-top: 0;
}

.hide-when-no-result {
  position: relative;
  margin: 0;

}

#content {
  margin-top: 0;
  padding-top: 0;
}

.search_resulttype_title {
    font-size: 1em;
    font-weight: 700;
    color: #9f9f9f;

}

.allLink {
  display: inline-block;
  width: 100%;
  min-width: 100% !important;
  text-align: right;
  font-size: .88em;
  color: #80c342;
  padding-right: 10px;
  position: absolute;
  bottom: 30;
}

.kbarticon {
  width: 20px;
  height: 20px;
}


.vhTxt {
  padding-top: 3px;
}


/* icons */


.icon {
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  margin-right: 6px;
}

.icon img {
  width: 20px;
  height: 20px;
}

.appicon {
  width: 20px;
  height: 25px;
  max-width: 20px;
  max-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.appicon .img {
  width: 20px;
  height: auto;
  
}

#hits {
    display: none;
}

.ais-Highlight-highlighted {
    background: none;
    color: #80c342;
    padding: 0;
    margin: 0;
}

.dropSel {
    background: #80c342;
    color: #333;
}

#vaclose {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
}

.nofound {
    font-size: .75em;
    font-weight: 500;
    color: #333;
}

.nofound-ser {
    font-size: .9em;
    font-weight: 500;
    color: #333;
}

.res_info {
    color: #9f9f9f;
    font-size: .9em;
    font-weight: 500;
    margin-left: 8px;
    display: none;
}

.result_section_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2px;
    padding: 0;
}

#stats {
    font-size: .85em;
    color: #80c342;
    font-weight: 600;
    width: 100%;
    text-align: right;
    margin-bottom: -10px;
}

#stats2 {
    font-size: .8em;
    color: #666;
    font-weight: 400;
    width: 100%;
    text-align: right;
    margin-bottom: 6px;
}

.dropProdThumb {
    width: 65px;
    max-width: 65px;
    margin-right: 3%;
    max-height: 50px;
}

#hits-products {
    margin: 0;
}

#sr_products {
    margin: 0;
    margin-bottom: 12px;

}

#sr_applications {
    margin: 0;
    margin-bottom: 10px;

}

#sr_kbase {
    margin: 0;
    margin-bottom: 7px;

}

#sr_pages {
    margin: 0;
    margin-bottom: 16px;

}

.ais-Hits {
    margin: 0;
    padding: 0;
}

#searchResults {
    display: none;
    width: 100%;
    margin-top: 30px;
    min-height: 400px;
}

.resultpage_section_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    color: #b2b2b2;
    margin: 50px 0px 10px 0px;
}

.rp_hr {
    flex-grow: 1;
    margin-left: 3%;
}

.sr_prod {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 240px;
    width: 240px;
    background: #efefef;
    border-radius: 8px;
}

.pg_hit  {
    font-size: 1em;
    color: #333;
}

/* Results Page */

#hits-products-ser {
  width: 100%;
  min-width: 100%; 
}

#hits-products-ser .ais-Hits {
   width: 100%;
   display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

#hits-products-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
    width: 19%;
    min-width: 19%;
    display: inline-block;
    margin: .5%;
}

#hits-products-ser .ais-Hits .ais-Hits-list {
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: top;
    padding: 0;
    flex-wrap: wrap;
}

.small_app_prod_card_ser {
    width: 100%;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .9em;
    padding: 1%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 45%, rgba(231,231,231,1) 100%);
    border-radius: 8px;
    border: 1px solid #efefef;
    color: #333;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 300;
    height: 170px;
  }

  .small_app_prod_card_ser .small_prod_name {
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }

  .small_app_prod_card_ser .titl {
    font-size: 1em;
    font-weight: 700;
    max-width: 100%;
  }

  .small_app_prod_card_ser .desc {
    font-size: 1.2em;
    font-weight: 400;
    max-width: 90%;
    line-height: 1.2;
  }

  .small_app_prod_card_ser:hover {
    background: #80c342;
    color: #fff;
  }

  .small_app_prod_card_ser .small_prod_img {
    width: 50%;
    margin-bottom: 6px;
  }

  .small_app_prod_card_ser .inneralt {
    display: none;
    padding: 10%;
    padding-top: 30px;
    height: 100%;
  }

  .small_app_prod_card_ser .inneralt p {
    font-size: 1.1em;
    line-height: 1.2;
  }

  .small_app_prod_card_ser .inneralt .small_prod_name {
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 6px;
  }


  /* RESULTS PAGE HIT WRAPPERS */

  #hits-pages-ser .ais-Hits .ais-Hits-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }

  #hits-pages-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
    margin: 0px 0px 10px 0px;
    width: 100%;
  }

  #hits-pages-ser .ais-Hits .ais-Hits-list .ais-Hits-item .icon {
    width: 16px; 
    min-width: 16px;
    height: auto;
    margin-right: 7px;
    padding: 0;
    display: flex;
    align-items: flex-start;
  }

  #hits-pages-ser .ais-Hits .ais-Hits-list .ais-Hits-item .icon i {
    min-width: 90%;
    width: 90%;
    max-width: 90%;
  }

  #hits-applications-ser .ais-Hits .ais-Hits-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  #hits-applications-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center !important;
    padding: 1%;
  }

  #hits-kbase-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
    margin: 0;
    padding: 0%;
    width: 100%;
    margin-bottom: 20px;
  }

  #hits-kbase-ser .ais-Hits .ais-Hits-list .ais-Hits-item .icon {
    width: 16px; 
    min-width: 16px;
    height: auto;
    margin-right: 7px;
    padding: 0;
    display: flex;
    align-items: flex-start;
  }

  #hits-kbase-ser .ais-Hits .ais-Hits-list .ais-Hits-item .icon i {
    min-width: 100%;
    width: 100%;
  }

  #hits-kbase-ser .ais-Hits .ais-Hits-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }

/* RESULTS PAGE HIT */

  .pg_hit_ser {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .kb_hit_ser {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    line-height: 1.2;
  }

  .srKbArtIcon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    margin-right: 8px;
    padding-top: 3px;
  }

  .app_hit_ser {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    line-height: 1.1;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center !important;
    justify-content: flex-start;
  }

  .app_hit_ser .icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin-right: 6px;
  }

  #search_results_subheader {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    max-height: min-content;
  }

  #search_results_subheader h1 {
    margin: 40px 0px 8px 0px;
  }

  .srs_rt {
    width: 1px;
    height: 1px;
    display: none;
   
  }

  #stats_ser {
    font-size: .8em;
    color: #aeaeae;
    font-weight: 400;
    width: 100%;
    text-align: left;
    margin-bottom: 6px;
  }

  #threecol_ser {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #sr_applications_ser {
    width: 100%;
  }

  #sr_kbase_ser {
    width: 100%;
  }

  #ser_pages_ser {
    width: 24%;
  }


/* CULTURE.css */

#sShow {
  width: 100%;
  padding: 0;
  margin: 0;
  
}

#opener {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 30px 0px 60px 0px;
  padding: 0;
}

#opener .oTxtLeft {
  width: 65%;
  margin-right: 5%;
}

#opener .oImgRight {
  width: 35%;
  padding-top: 30px;
}

#corevalues {
  width: 100%;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

#cvSplit {
  width: 100%;
  margin: 0 auto;
  padding: 2% 2% 0% 2%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #dbeecc;
  position: relative;
  border-radius: 10px;
}

#cvTop {
  width: 100%;
  margin-bottom: -20px;
  position: relative;
  height: 40px;
  text-align: center;
  z-index: 999;
  display: flex;
  justify-content: center;
}

.cvTopSBox {
  width: 30%;
  position: absolute;
  top: -20;
  margin-top: -20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background: #80c342;
  border-radius: 20px;
  height: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;

}

#cvLeft {
  width: auto;
  height: 100%;
  margin-right: 5%;
  padding: 0;
  position: relative;
}

#cvRight {
  width: 55%;
  height: 100%;
  line-height: 1.25;
}

#cvList {
  width: 100;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 14px;
}

.cvListItem {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  padding: 0;
  width: 48%;
  max-width: 48%;
  min-width: 48%;
  margin: 0% 2% 10px 0%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  
}

.cvImg {
  position: relative;
  margin-top: -30px;
  margin-bottom: -10px;
  max-height: 280px;
}

.lotWImg {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.textLeft {
  width: 65%;
  max-width: 65%;
  margin-right: 5%;
}

.textLeft1 {
  width: 60%;
  max-width: 60%;
  margin-right: 5%;
}

.imageRight {
  width: 30%;
  max-width: 30%;
  padding: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-top: 0px;
  margin-left: 50px;
}

.imageRight1 {
  width: 35%;
  max-width: 35%;
  padding: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-top: 40px;

}

#facSlides {
  max-height: 100%;
}

.facSlide {
  width: 100%;
  max-width: 100%;
}

.fbImageRt {
  width: 65%;
  max-width: 65%;
  max-height: 200px;
  height: auto;
}

#ourbenefits {
  width: 100%;
  padding: 0;
  margin: 30px 0px 30px 0px;
}

#benefits {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 60px;
}

#benefits .cBenefit {
  width: 33.333%;
  min-width: 33.333%;
  padding: 0% 2% 0% 2%;
  margin: 0px 0px 40px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

.cBenIcon {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}

.cBenIcon img {
  max-width: 80px;
  max-height: 50px;
  margin: 0 auto;
}

.cBenTxt {
font-size: .9em;
font-weight: 400;
text-align: center;
width: 100%;
padding: 0% 10% 0% 10%;
line-height: 1.4;
color: #666;
}

.cBenTitle {
font-size: 1.2em;
font-weight: 700;
margin-bottom: 6px;
text-align: center;
padding: 0% 10% 0% 10%;
line-height: 1.2;
color: #444;
}

#jointeam {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #efefef;
  border-radius: 10px;
  padding: 2% 5% 2% 5%;
}

/*
MEDIA QUERIES
*/

@media only screen and (min-width: 320px) and (max-width: 480.98px) {

      .fui-checkbox-label, .fui-radio-label {
        display: flex;
        align-items: center;
        font-family: "Nunito Sans", sans-serif;
        font-weight: 400;
        font-size: .9em;
        color: #333;
      }

      .fui-legend {
        font-family: "Nunito Sans", sans-serif;
        font-weight: 600;
        font-size: .95em;
        color: #333;
      }

      .fui-error-message {
        font-family: "Nunito Sans", sans-serif;
        font-weight: 400;
        font-size: .9em;
        color: #c21010;
        margin-top: 5px;
      }

      .quoteDisplay {
        width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        padding: 5%;
      }

      .quoteTxt {
        font-size: 
        .9em;
        line-height: 1.2;
      }

      .quoteAttr {
        font-size: .8em;
      }


      .quoteNav {
      display: flex;
      justify-content: center;
      padding: 0;
      margin: 0;
      width: 100%;
      cursor: pointer;
      position: relative; 
      height: 23px;         
      }

      .quoteNav .inner {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        width: auto;
        height: 20px;
      }



      .section_heading .heading_left {
      width: auto;
      max-width: 100%;
      margin-right: 0%;
      }


      #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 99%;
      min-width: 99%;
      max-width: 99%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 49%;
        max-width: 49%;
        min-width: 49%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 6px;
        margin: .5%;
        height: 48px;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 49%;
          max-width: 49%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

      #searchDrop {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 40 !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100%;
        margin: 0;
        padding: 0px;
        z-index: 999;
        text-align: left;
        }

        #searchDropWrap {
          background: #000;
          width: 100%;
          min-width: 100%;
          position: relative;
          padding: 0;
          margin: 0;
          display: flex;
          flex-direction: row;
          justify-content: flex-end;
          align-items: flex-start;
          margin-top: 0px;
          z-index: 9998;
          padding-top: 0px;
          height: 0px;
          max-height: 0px;
          padding-right: 0;
          }

          #hits-products-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
            width: 48%;
            min-width: 48%;
            display: inline-block;
            margin: 1%;
        } 


.unistNav {
      position: relative;
      display: inline-block;   
      background: #000 !important;
      margin: 0;
      height: 136px;
      max-height: 136px;
      width: 100%;
      padding: 0;
  }

#unavFlex {
      padding: 0% 5% 40px 5%;
      margin: 0;
      background: #000;
      height: 136px;
      max-height: 136px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      border: none;
  }

   header {
      width: 100%;
      height: 136px;
      min-height: 136px;
  }

.unavToggler {
      background-color: transparent;
      order: 3;
      display: block;
      border: none;
      margin-left: 14px;
  }

  .unavCollapse {
      order: 5;
      width: 1px;
      min-height: 1px;
      max-height: 1px;
      background: none;
      display: flex;
      align-items: center;
  }

  #unav_contact_btn_icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 36px;
      min-width: 36px;
      height: 36px;
      padding: 2px;
      background: #fff;
      border-radius: 18px;
      margin: 0;
      order: 2;
      margin-left: auto;
  }

  #unav_search_form {
      order: 4;
      width: 80%;
      padding: 0;
      margin: 10px 0px 0px 0px;
      margin-left: 20px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      position: absolute;
      top: 76px;
      }

  #unav_searchBox {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      width: 80%;
      max-width: 80%;
      min-width: 80%;
      padding: 0;
      margin: 0;
      background: #fff;
      border: none;
      height: 36px;
      border-radius: 18px;
      padding-left: 9px;
  }

 .ais-SearchBox-input  {
    width: inherit;
    min-width: inherit;
    max-width: inherit;
    padding: 0%;
    padding-left: 10px;
    margin: 0%;
    border: none;
    height: 32px;
    max-height: 32px;
    position: relative !important;
    background: none;
}

.unavDropUL {
      position: absolute;
      top: 136px !important;
      left: 0;
      width: 100%;
      margin: 0;
      padding: 0%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      list-style: none;
      background: #000;
      z-index: 999999;
      display: none;
  }

   .unavDropUL li {
      width: 100%;
      height: 48px;
      margin-bottom: 10px;
      border: 1px solid #333;
      border-radius: 6px;
      padding: 3%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .unav-link {
      width: 100%;
      text-align: center !important;
      color: #fff;
      font-size: 1.2em;
      margin: 0;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 600;
      text-decoration: none;
      line-height: 1.2 !important;
      height: 48px;
      min-height: 48px;
      display: flex;
  align-items: center;
  }


  .inset_content {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    }

  .contLink {
    height: 46px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 0% 3% 0% 3%;
    margin-top: 13px;
  }

  #top_content a {
    height: 46px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 0% 3% 0% 3%;
    margin: 0;
    margin-top: 4px;
  }


  #content {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    margin-top: 50px;
    }


  #contentDiv {
    display: none;
  }
  
  #top_content {
  padding-right: 0px;
  border-right: none;
  padding-bottom: 0px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 14px;
  }
  
  #top_continfo {
  padding-left: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: top;
  }
  
  .add {
    padding-right: 0px;
    border-right: none;
    font-weight: 500;
    line-height: 1.3;
    font-size: .9em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .add p {
    margin: 0;
    padding: 0;
  }
  
  .phone {
    padding-left: 0px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .9em;
    line-height: 1.2;
    width: 50%;
  }
  
  .pin {
    margin-right: 0px;
    margin-bottom: 6px;
  }
  .std_table  {
    width: 100%;
    max-width: 100%;
    font-size: .85em;
    line-height: 1.3;
    background: #efefef;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.std_table th {
    background: #c9c9c9;
    color: #333;
    font-weight: 700;
    font-size: .6em;
    padding: 3px;
    border: 1px solid #c9c9c9;
    max-width: 26% !important;
    }
    
    .std_table td {
    font-weight: 500;
    line-height: 1.3;
    max-width: 26% !important;
    padding: 5px;
    font-size: .6em;
    border: 1px solid #999;
    }


  #page_content {
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
    padding: 0;
    }

    #sp_slides {
      width: 90%;
      margin: 0% 5% 0% 5%;
      height: auto;
    }

    .spr_headline {
      font-size: 1.1em;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 5px;
      color: #567639 !important;
      max-width: 100%;
      min-width: 100%;
      width: 100%;
    }
    
    .spr_text {
      font-size: .87em;
      line-height: 1.27;
      font-weight: 500;
      color: #567639 !important;
      max-width: 100%;
      width: 100%;
      min-width: 100%;
    }


  

  .attrAndBtn {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .slideTypeInd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: auto;
    padding: 1% 2% 1% 2%;
    border-radius: 14px;
    background: #669C35;
    color: #91d74f;
    position: absolute;
    right: 5%;
    top: 18px;
    font-weight: 700;
    font-size: .85em;
  }

  .rtArrowBox {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 90%;
    min-width: 90%;
    max-width: 330px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background:#d6feb2;
    padding: 0% 3% 0% 3%;
    cursor: pointer;
    position: relative;
    color: #668b43;
    height: 54px;
    max-height: 54px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    margin-top: 20px;
    text-decoration: none;
    }
  
  
  .rtArrowBox::after {
    content:"";
    position: absolute;
    top:0;
    left: 100%;
    width:0;
    height:54px; 
    max-height: 54px;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color:#d6feb2;  
    /* the opposite of the pointing direction */
    border-top-width:27px;
    border-right-width:1rem;
    border-bottom-width:27px;
    border-left-width: 1em;
  }

  .rtAttr {
    color: #dfffc2;
    font-size: .85em;
    margin-top: 10px;
    padding: 0;
    font-weight: 500;
    line-height: 1.1;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start
    }

  .rabRight {
    font-weight: 500;
    line-height: 1.1;
    font-size: .8em;
    }
    
  .rabLeft {
    font-weight: 700;
    line-height: 1.15;
    margin-right: 5%;
    padding-right: 5%;
    padding-left: 2%;
    font-size: .8em;
    border-right: 1px solid #71994b;
    }

  
    #fc_products {
      order: 1;
    }

    #fc_unist {
      order: 2;
    }

    #fc_info {
      order: 4;
    }

    #fc_support {
      order: 4;
    }
  
      .testimonial {
      width: auto;
      position: relative;
      font-size: 1em;
      }

      .testimonials {
      width: 80%;
      min-width: 80%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      }

      .content_sproof_bubble p {
      font-size: 1em;
      font-weight: 300;
      line-height: 1.2;
      margin-top: 0;
      }

      .sproof_headline {
      font-size: 1.1em;
      line-height: 1;
      font-weight: 700;
      margin-bottom: 12px;
      width: 100%;
      text-align: left;
      }


      .sproof_byline {
        font-size: .8em;
        font-weight: 700;
        margin: 12px 0px 12px 0px;
        line-height: 1;
        max-width: 100%;
        }
        
      .sproof_link {
      
      }

      .sproof_link a {
        text-decoration: none;
        font-size: .9em !important;
        font-weight: 500;
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 2%;
        margin-top: 20px;
        border-radius: 10px;
        border: 1px solid #999;
        color: #999;
      }

      .sproof_link a:hover {
        background: #80c342;
        border: 1px solid #80c342;
      }

      .rslide {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%
        max-width: 100%;
        padding: 5% !important;
        text-align: left;
        height: 320px;
        background: #95cd62;
        margin: 0;
        border: none;
        }
    
        .rslide_inner {
          margin-top: 30px;
          width: 100%;
          min-width: 100%;
          max-width: 100%;
          max-height: 100%;
        }

      .rs_left_img {
      display: none;
      }

      .limg {
      min-width: 100px;
      max-height: 100px;
      }

      .rs_right_text {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      height: auto;
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: left;
      margin-left: 0%;
      }

      .rtTxt {
      font-size: 1em;
      font-weight: 700;
      color: #567639;
      line-height: 1.34;
      margin-bottom: 15px;
      }



      #topNavBar {
      background: #000;
      }

      #contact_btn {
      display: none;
      }

      #contact_btn_icon {
      display: inline-block;
      }

      .socnav {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        list-style-type: none;
        height: 48px;
        padding: 0;
        margin: 0;
        }
  
        .socnav li {
        max-width: 48px;
        width: 48px;
        min-width: 48px;
        display: inline-block;
        padding: 10px;
        border: none;
        margin: 1%;
        }

        .socnav .nav-item {
          width: 48px;
          height: 48px;
          padding: 0;
          border: 0;
        }

        .socnav .nav-item .nav-link {
          border: 0;
        }

        .bi {
          max-width: 24px;
          max-height: 24px;
          border: none;
        }

      .footer_link {
      font-family: "Nunito Sans", sans-serif;
      font-weight: 600;
      text-decoration: none;
      color: #fff;
      font-size: .9em;
      height: 48px;
      min-height: 48px;
      background: #000;
      border: 1px solid #333;
      border-radius: 10px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      }

      .footer_top {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      padding-bottom: 30px;
      }

      .footer_bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        background: #000;
        }

      .footer_cont {
      width: auto;
      min-width: 40%;
      }

      .footer_cont h4 {
      font-size: .9em;
      margin-top: 12px;
      margin-bottom: 8px;
      width: 100%;
      text-align: center;
      font-weight: 600;
      color: #999;
      }


      .footer_brand {
      display: none;
      }

      .footer_cont p {
      padding: 0;
      margin: 0;
      }


      .footer_copyright {
        margin: 0;
        width: 50%;
        min-width: 40%;
        max-width: 40%;
        height: 48px;
        font-size: .68em;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding-left: 2%;
        padding-right: 13px;
        line-height: 1.1;
        font-weight: 600;
        }

        .footer_smlinks {
          display: inline-block;
          width: 53%;
          max-width: 53% !important;
          margin: 0;
          }

      
      #vaBtn {
      width: 60%;
      }

      #viewAll {
      padding: 0;
      border-radius: 6px;
      color: #efefef;
      margin: 0px;
      font-size: .9em;
      font-weight: 700;
      border: 1px solid #919191;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      height: 48px;
      max-height: 48px;
      width: 100%;
      cursor: pointer;
      }

      #viewAll:hover {
      background: #80c342;;
      color: #fff;
      cursor: pointer;
      }


      #clBtn {
      width: 48px;
      height: 48px;
      border-radius: 6px;
      color: #efefef;
      font-size: 23px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0;
      font-weight: 400;
      cursor: pointer;
      }

      #clBtn:hover {
      background: #80c342;;
      color: #333;
      cursor: pointer;
      }


      .product_hit {
      display: flex;
      width: 100%;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      text-decoration: none;
      font-size: 1em;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      width: 100%;
      padding: 0% 1% 0% 1%;
      line-height: 1.2;
      }

      #tech1_cta_btn {
        margin-top: 14px;
      }

      .singleRowCenter {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;  
      }

      .single_img_row {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-right: 4%;
        height: auto;
        max-height: min-content;
        margin-bottom: 20px;
      }


      .wperc10 {
        width: 15%;
        }
        .wperc15 {
        width: 25%;
        min-width: 25%;
        }
        
        .wperc20 {
          width: 30%;
        }
        
        .wperc25 {
          width: 35%;
        }
        
        .wperc30 {
          width: 40%;
        }
        
        .wperc33 {
          width: 33%;
        }
        
        .wperc40 {
          width: 50%;
        }
        
        .wperc50 {
          width: 60%;
        }
        
        .wperc66 {
          width: 66%;
        }
        
        .wperc100 {
          width: 100%;
        }

#modalClose {
  z-index: 5;
  position: absolute;
  top: 0px;
  right: -24px;
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  cursor: pointer;
  margin-top: -24px;
}

.benefit_item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: auto;
min-width: 100%;
max-width: 100%;
margin: 0;
margin-bottom: 30px;
padding: 0;
}


#SocProofSS {
width: 100%;
background: #fff;
height: 400px;
max-height: 400px;
overflow:hidden;
padding: 0% 5%;
margin: 30px 0px 15px 0px;
display: flex;
justify-content: center;
align-items: center;
}


.mrWrap {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 10px;
}

#SocProofSS .mrWrap .mrSlide { 
  width: 100%;
  padding: 6%;
  min-height: 400px;
  border-radius: 10px !important;
}

.spCont {
width: 100%;
}

.spContWImg .spContTxt {
  width: 100%;
  max-width: 100%;
}

.spContImg {
  width: 0%;
  display: none;
}

.spContImage {
  width: 100%;
  max-width: 100%;
  max-height: 230px;
}

.spContHead {
  font-size: 1.2em;
}

.spContWImg {
  align-items: flex-start;
}

.spTxt {
  font-size: .88em;
  line-height: 1.25;
}

.attrTxt {
  font-size: .9em;
  margin-top: 8px;
}

}

@media only screen and (min-width: 481px) and (max-width: 768.98px) {

.fui-checkbox-label, .fui-radio-label {
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: .9em;
  color: #333;
}

.fui-legend {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: .95em;
  color: #333;
}

.fui-error-message {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: .9em;
  color: #c21010;
  margin-top: 5px;
}


.header_logo {
width: 150px;
max-width: 150px;
margin-right: 40px;
margin-left: 0px;
padding: 0px;
min-height: 56px !important;
}

.quoteDisplay {
  padding: 8%;
}

 .quoteTxt {
  font-size: 1.3em;
  line-height: 1.2;
}

.quoteAttr {
  font-size: 1em;
}


.unavBrand {
min-height: 56px !important;
}

.unistNav {
    position: relative;
    display: inline-block;   
    background: #000 !important;
    margin: 0;
    height: 156px;
    max-height: 156px;
    width: 100%;
    padding: 0;
}

#unavFlex {
      padding: 30px 5% 10px 5%;
      margin: 0;
      background: #000;
      height: 156px;
      max-height: 156px;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      width: 100%;
      max-width: 100%;
      border: none;
  }

  header {
    width: 100%;
    height: 156px;
    min-height: 156px;
  }

.unavToggler {
      background-color: transparent;
      order: 3;
      display: block;
      border: none;
      margin-left: 14px;
      margin-top: 14px;
  }

  .unavCollapse {
      order: 5;
      width: 1px;
      min-height: 1px;
      max-height: 1px;
      background: none;
      display: flex;
      align-items: center;
  }

    

  #unav_contact_btn_icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 36px;
      min-width: 36px;
      height: 36px;
      padding: 2px;
      background: #fff;
      border-radius: 18px;
      margin: 10px 0px 0px 0px;
      order: 2;
      margin-left: auto;
  }

  #unav_search_form {
      order: 4;
      width: 90%;
      padding: 0;
      margin: 0;
      margin-left: 0px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      position: absolute;
      top: 96px;
      }



  #unav_searchBox {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      width: 250px;
      max-width: 250px;
      min-width: 250px;
      padding: 0;
      margin: 0;
      background: #fff;
      border: none;
      height: 36px;
      border-radius: 18px;
      padding-left: 9px;
  }

 .ais-SearchBox-input  {
    width: inherit;
    min-width: inherit;
    max-width: inherit;
    padding: 0%;
    padding-left: 10px;
    margin: 0%;
    border: none;
    height: 32px;
    max-height: 32px;
    position: relative !important;
    background: none;
  }

.unavDropUL {
      position: absolute;
      top: 156px;
      left: 0;
      width: 100%;
      margin: 0;
      padding: 0%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      list-style: none;
      background: #000;
      z-index: 999999;
      display: none;
  }

   .unavDropUL li {
      width: 100%;
      height: 48px;
      margin-bottom: 10px;
      border: 1px solid #333;
      border-radius: 6px;
      padding: 3%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .unav-link {
      width: 100%;
      text-align: center !important;
      color: #fff;
      font-size: 1.2em;
      margin: 0;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 600;
      text-decoration: none;
      line-height: 1.2 !important;
      height: 48px;
      min-height: 48px;
      display: flex;
  align-items: center;
  }


  #spRotator {
    border-radius: 10px;
    height: 330px;
    overflow: hidden;
  }


  #sp_slides {
    width: 85% !important;
    margin: 0 auto;
    height: auto;
  }

  .inset_content {
    width: 85%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    }


  .contLink {
    height: 46px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 0% 3% 0% 3%;
    margin-top: 13px;
  }

  #top_content a {
    height: 46px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 0% 3% 0% 3%;
    margin: 0;
    margin-top: 4px;
  }


  #contentDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: top;
    padding: 0;
    margin: 0;
  }
  
  #top_content {
  padding-right: 0px;
  border-right: none;
  padding-bottom: 0px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 14px;
  }
  
  #top_continfo {
  padding-left: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: top;
  }
  
  .add {
    padding-right: 0px;
    border-right: none;
    font-weight: 500;
    line-height: 1.3;
    font-size: .9em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .add p {
    margin: 0;
    padding: 0;
  }
  
  .phone {
    padding-left: 0px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .9em;
    line-height: 1.2;
  }
  
  .pin {
    margin-right: 0px;
    margin-bottom: 6px;
  }

  .std_table  {
    width: 100%;
    max-width: 100%;
    font-size: .85em;
    line-height: 1.3;
    background: #efefef;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.std_table th {
    background: #c9c9c9;
    color: #333;
    font-weight: 700;
    font-size: .6em;
    padding: 3px;
    border: 1px solid #c9c9c9;
    max-width: 26% !important;
    }
    
    .std_table td {
    font-weight: 500;
    line-height: 1.3;
    max-width: 26% !important;
    padding: 5px;
    font-size: .6em;
    border: 1px solid #999;
    }



  .rs_left_img {
    display: none;
  }

  .rtAttr {
    color: #dfffc2;
    font-size: .85em;
    margin-top: 10px;
    padding: 0;
    font-weight: 500;
    line-height: 1.1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    }

  .rabRight {
    font-weight: 500;
    line-height: 1.1;
    font-size: .8em;
    }

    .rabLeft {
      font-weight: 700;
      line-height: 1.15;
      margin-right: 5%;
      padding-right: 5%;
      padding-left: 2%;
      font-size: .8em;
      border-right: 1px solid #71994b;
      min-width: 33%;
      }


  .rtArrowBox {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    width: 90%;
    min-width: 90%;
    max-width: 330px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background:#d6feb2;
    padding: 0% 3% 0% 3%;
    cursor: pointer;
    position: relative;
    color: #668b43;
    height: 52px !important;
    max-height: 52px !important;
    min-height: 52px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    margin-top: 26px;
    text-decoration: none;
    }


    .rtArrowBox::after {
      content:"";
      position: absolute;
      top:0;
      left: 100%;
      width:0;
      height: 52px !important; 
      max-height: 52px !important;
      min-height: 52px;
      border-top-color: transparent;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color:#d6feb2; 
      /* the opposite of the pointing direction */
      border-top-width: 26px;
      border-right-width: 1em;
      border-bottom-width: 25px;
      border-left-width: 1em;
    }



  .spr_headline {
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
    color: #567639;
    max-width: 100%;
  }
  
  .spr_text {
    font-size: .95em;
    line-height: 1.27;
    font-weight: 500;
    color: #567639;
    max-width: 100%;
    width: 100%;
  }

  .attrAndBtn {
    width: 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

  }

  .slideTypeInd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: auto;
    padding: 1% 2% 1% 2%;
    border-radius: 14px;
    background: #669C35;
    color: #91d74f;
    position: absolute;
    right: 5%;
    top: 18px;
    font-weight: 700;
    font-size: .85em;
  }

  #fc_products {
    order: 1;
  }

  #fc_unist {
    order: 2;
  }


  #fc_info {
    order: 4;
  }

  .footer_cont {
    margin-bottom: 8px;
  }

  #fc_support {
    order: 4;
  }

      .bi {
        max-width: 24px;
        max-height: 24px;
        border: none;
      }

      #topNavBar {
      background: #000;
      }

     
      #vaBtn {
      width: 60%;
      }

      #viewAll {
      padding: 1%;
      border-radius: 6px;
      color: #efefef;
      margin: 0px;
      font-size: .9em;
      font-weight: 700;
      border: 1px solid #919191;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      height: 36px;
      max-height: 36px;
      width: 100%;
      cursor: pointer;
      }

      #viewAll:hover {
      background: #80c342;;
      color: #fff;
      cursor: pointer;
      }


      #clBtn {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      color: #efefef;
      font-size: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0;
      font-weight: 400;
      cursor: pointer;
      }

      #clBtn:hover {
      background: #80c342;;
      color: #333;
      cursor: pointer;
      }


      .footer_bottom {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: #000;
      }

      .socnav {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: right;
      align-items: center;
      list-style-type: none;
      height: 48px;
      padding: 0;
      margin: 0;
      }

      .socnav li {
      max-width: 48px;
      width: 48px;
      min-width: 48px;
      display: inline-block;
      }

      .footer_copyright {
      width: 50%;
      min-width: 50%
      height: 48px;
      font-size: .88em;
      font-weight: 600;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      padding-left: 1%;
      }

      .socnav .nav-link {
      border: none;
      width: 48px;
      margin: 0;
      }

      .footer_smlinks {
      display: inline-block;
      width: 30%;
      max-width: 30% !important;
      margin: 0;
      }

      

      .footer_link {
      font-family: "Nunito Sans", sans-serif;
      font-weight: 600;
      text-decoration: none;
      color: #fff;
      font-size: .9em;
      height: 48px;
      min-height: 48px;
      background: #000;
      border: 1px solid #333;
      border-radius: 10px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      }

      .footer_top {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      flex-wrap: wrap;
      padding-bottom: 30px;
      }

      .footer_cont {
      width: auto;
      min-width: 40%;
      }

      .footer_cont h4 {
      font-size: 1.3em;
      margin-top: 16px;
      width: 100%;
      text-align: center;
      font-weight: 700;
      }

      .footer_brand {
      display: none;
      }

      .footer_cont p {
      padding: 0;
      margin: 0;
      }



      .rslide {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        width: 100%
        max-width: 100%;
        padding: 0;
        text-align: left;
        height: 100%;
        max-height: 100%;
        background: #95cd62;
        padding: 5% !important;
        }
        
        .rslide_inner {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 0px !important;
        height: auto;
        max-height: 100%;
        }
        
        
        .limg {
        min-width: 140px;
        max-height: 140px;
        }
        
        .rs_right_text {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: left;
        margin-left: 0%;
        }
        
        .rtTxt {
        font-size: 1em;
        font-weight: 700;
        color: #567639;
        line-height: 1.34;
        margin-bottom: 15px;
        }

        .wperc10 {
          width: 15%;
          }
          .wperc15 {
          width: 25%;
          min-width: 25%;
          }
          
          .wperc20 {
            width: 30%;
          }
          
          .wperc25 {
            width: 35%;
          }
          
          .wperc30 {
            width: 40%;
          }
          
          .wperc33 {
            width: 33%;
          }
          
          .wperc40 {
            width: 50%;
          }
          
          .wperc50 {
            width: 60%;
          }
          
          .wperc66 {
            width: 66%;
          }
          
          .wperc100 {
            width: 100%;
          }
          
          
.benefit_item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: auto;
min-width: 100%;
max-width: 100%;
margin: 0;
margin-bottom: 30px;
padding: 0;
}

#SocProofSS {
width: 100%;
background: #fff;
height: 350px;
max-height: 350px;
overflow:hidden;
padding: 0% 5%;
margin: 30px 0px 15px 0px;
display: flex;
justify-content: center;
align-items: center;
}


.mrWrap {
  width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 10px;
}

#SocProofSS .mrWrap .mrSlide { 
  width: 100%;
  padding: 6%;
  min-height: 350px;
  border-radius: 10px !important;
}

.spCont {
width: 100%;
}

.spContWImg .spContTxt {
  max-width: 100%;
}

.spContImg {
  width: 0%;
  display: none;
}

.spContImage {
  width: 100%;
  max-width: 100%;
  max-height: 230px;
}

.spContHead {
  font-size: 1.2em;
}

.spContWImg {
  align-items: flex-start;
}

.spTxt {
  font-size: .9em;
  line-height: 1.25;
}

.attrTxt {
  font-size: .9em;
  margin-top: 8px;
}


}


@media only screen and (min-width: 481px) and (max-width: 624.96px) {

    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 99%;
      min-width: 99%;
      max-width: 99%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 49%;
        max-width: 49%;
        min-width: 49%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 6px;
        margin: .5%;
        height: 48px;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 49%;
          max-width: 49%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

      #searchDrop {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 40 !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 100%;
        margin: 0;
        padding: 0px;
        z-index: 999;
        text-align: left;
        }

        #searchDropWrap {
          background: #000;
          width: 100%;
          min-width: 100%;
          position: relative;
          padding: 0;
          margin: 0;
          display: flex;
          flex-direction: row;
          justify-content: flex-end;
          align-items: flex-start;
          margin-top: 0px;
          z-index: 9998;
          padding-top: 0px;
          height: 0px;
          max-height: 0px;
          padding-right: 0;
          }

          #hits-products-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
            width: 48%;
            min-width: 48%;
            display: inline-block;
            margin: 1%;
        } 
  }


  @media only screen and (min-width: 625px) and (max-width: 768.98px) {


    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 49%;
      min-width: 49%;
      max-width: 49%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 49%;
        max-width: 49%;
        min-width: 49%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 6px;
        margin: .5%;
        height: 48px;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 49%;
          max-width: 49%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

    #searchDrop {
      display: flex;
      justify-content: center;
      position: absolute;
      top: 40 !important;
      max-width: 85% !important;
      width: 85% !important;
      min-width: 85%;
      margin: 0;
      padding: 0px;
      z-index: 999;
      text-align: left;
      }

      #searchDropWrap {
        background: #000;
        width: 100%;
        min-width: 100%;
        position: relative;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-start;
        margin-top: 0px;
        z-index: 9998;
        padding-top: 0px;
        height: 0px;
        max-height: 0px;
        padding-right: 8%;
        }

        #hits-products-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 48%;
          min-width: 48%;
          display: inline-block;
          margin: 1%;
      } 
  }




@media only screen and (min-width: 769px) and (max-width: 1059.98px) {

.quoteDisplay {
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  }

.quoteTxt {
  font-size: 1.3em;
  line-height: 1.2;
}


.unistNav {
      position: relative;
      display: inline-block;   
      background: #000 !important;
      margin: 0;
      height: 136px;
      max-height: 136px;
      width: 100%;
      padding: 0;
  }

  #unavFlex {
      padding: 2% 5% 0px 10%;
      margin: 0;
      background: #000;
      height: 136px;
      max-height: 136px !important;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      width: 100%;
      border: none;
      flex-wrap: wrap; 
  }

.unavBrand {
min-height: 56px !important;
margin: 0;
margin-bottom: -12px;
padding: 0px 0px 0px 0px;
}

header {
    width: 100%;
    height: 136px;
    min-height: 136px;
}


  .unavCollapse {
      width: 100%;
      min-width: 100%;
      position: relative;
      margin: 0px 0px 10px 0px;
      padding: 0%;
      background: none;
      min-height: 48px;
      max-height: 48px;
      display: flex;
      align-items: center;
      order: 5;
  }

    .unavDropUL {
      width: auto;
      margin: 0;
      padding: 0%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      list-style: none;
  }

  .unav-item-last, .unav-item {
      width: auto;
      text-align: left;
      margin: 0px 30px 0px 0px;
      padding: 0;
      display: inline-block;
      height: 48px;
      min-height: 48px;
  }

  .unav-link {
      width: 100%;
      text-align: left;
      color: #fff;
      font-size: 1.1em;
      margin: 0;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 600;
      text-decoration: none;
      line-height: 1.2 !important;
      height: 48px;
      min-height: 48px;
      display: flex;
  align-items: center;
  }

  
.unavToggler {
      display: none;
  }


   

  #unav_contact_btn_icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 36px;
      min-width: 36px;
      height: 36px;
      padding: 2px;
      background: #fff;
      border-radius: 18px;
      margin: 0;
      order: 2;
      margin-left: auto;
  }

#unav_search_form {
      order: 3;
      width: 25%;
      padding: 0;
      margin: 0;
      margin-left: 10px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      position: relative;
      }

  #unav_searchBox {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      padding: 0;
      margin: 0;
      background: #fff;
      border: none;
      height: 36px;
      border-radius: 18px;
      padding-left: 9px;
  }


  .rtAttr {
    color: #dfffc2;
    font-size: .95em;
    margin-top: 10px;
    padding: 0;
    font-weight: 500;
    line-height: 1.1;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    }

    .rtAttr .attr {
      margin-left: 3px;
      line-height: 1.3;
      width: 100%;
      min-width: 100%;
    }


  #contentDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: top;
    padding: 0;
    margin: 0;
  }
  
  #top_content {
  padding-right: 0px;
  border-right: none;
  padding-bottom: 0px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 14px;
  }
  
  #top_continfo {
  padding-left: 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: top;
  }
  
  .add {
    padding-right: 0px;
    border-right: none;
    font-weight: 500;
    line-height: 1.3;
    font-size: .9em;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-right: 5%;
  }
  
  .add p {
    margin: 0;
    padding: 0;
  }
  
  .phone {
    padding-left: 0px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: .9em;
    line-height: 1.2;
  }
  
  .pin {
    margin-right: 0px;
    margin-bottom: 6px;
  }

  body {
  position: relative;
  }

  .slideTypeInd {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: auto;
    padding: 1% 2% 1% 2%;
    border-radius: 14px;
    background: #669C35;
    color: #91d74f;
    position: absolute;
    right: 3%;
    top: 18px;
    font-weight: 700;
    font-size: .85em;
  }

  #sp_slides .bx-wrapper .bx-viewport {
    border-radius: 10px !important;
  }

  #sp_slides {
    width: 80%;
    margin: 0% 10% 20px 10%;
    height: auto;
  }


  .rs_left_img {
    display: none;
    }

    .limg {
      width: auto;
      max-width: 100%;
      height: 100%;
      max-height: 235px;
      }

  .rs_right_text {
    width: auto;
    min-width: 60%;
    max-width: 100% !important;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 0%;
    }

  .rslide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%
    max-width: 100%;
    padding: 0;
    text-align: left;
    height: 270px;
    background: #95cd62;
    padding-top: 20px;
    padding-bottom: 10px;
    }


    .rslide_inner {
      max-width: 90%;
      width: 90%;
      min-width: 90%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      }

  .sideMenuItem {
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    margin: 1%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 30px;
    display: inline-block;
    border-radius: 0px;
    }

  
.spr_headline {
font-size: 1.25em;
font-weight: 700;
line-height: 1.1;
margin-bottom: 5px;
color: #567639;
max-width: 100%;
}

.spr_text {
font-size: .95em;
line-height: 1.27;
font-weight: 500;
color: #567639;
width: 100%;
max-width: 100%;
min-width: 100%;
}

.attrAndBtn {
width: 100%;
min-width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
}

  .bi {
    max-width: 24px;
    max-height: 24px;
    border: none;
  }

  #topNavBar {
  background: #000 !important;
  }

  #vaBtn {
    width: 60%;
  }
  
  #viewAll {
      padding: 1%;
      border-radius: 6px;
      color: #efefef;
      margin: 0px;
      font-size: .9em;
      font-weight: 700;
      border: 1px solid #919191;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      height: 30px;
      max-height: 30px;
      width: 100%;
      cursor: pointer;
  }

  #clBtn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    color: #efefef;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    font-weight: 400;
    cursor: pointer;
  }
      
  .footer_bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #000;
  }

  .footer_top {
    width: 100%;
    padding: 3% 5% 3% 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    }

  .socnav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  list-style-type: none;
  height: 48px;
  padding: 0;
  margin: 0;
  }

  .socnav li {
  max-width: 24px;
  width: 24px;
  min-width: 24px;
  display: inline-block;
  }

  #xlogo {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
  }

  .footer_copyright {
  width: 50%;
  min-width: 50%
  height: 48px;
  font-size: .88em;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1%;
  }

  .footer_cont {
    width: auto;
    min-width: min-content;
    max-width: 23%;
    padding: 0;
    margin: 0;
    margin: 0% 2% 0% 2%;
    }

  .socnav .nav-link {
  border: none;
  width: 48px;
  margin: 1%;
  }

  .footer_smlinks {
  display: inline-block;
  width: 30%;
  max-width: 30% !important;
  margin: 0;
  }
          
  .footer_brand {
    display: none;
    }


  .wperc10 {
    width: 15%;
    }
    .wperc15 {
    width: 25%;
    min-width: 25%;
    }
    
    .wperc20 {
      width: 30%;
    }
    
    .wperc25 {
      width: 35%;
    }
    
    .wperc30 {
      width: 40%;
    }
    
    .wperc33 {
      width: 33%;
    }
    
    .wperc40 {
      width: 50%;
    }
    
    .wperc50 {
      width: 60%;
    }
    
    .wperc66 {
      width: 66%;
    }
    
    .wperc100 {
      width: 100%;
    }

.benefit_item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: auto;
min-width: 48%;
max-width: 48%;
margin: 0;
margin-bottom: 30px;
padding: 0;
}

#SocProofSS {
width: 100%;
background: #fff;
height: 300px;
max-height: 300px;
overflow:hidden;
padding: 0% 5%;
margin: 30px 0px 15px 0px;
display: flex;
justify-content: center;
align-items: center;
}


.mrWrap {
  width: 100%;
  height: auto;
  min-height: 300px;
  border-radius: 10px;
}

#SocProofSS .mrWrap .mrSlide { 
  width: 100%;
  padding: 6%;
  min-height: 300px;
  border-radius: 10px !important;
}

.spCont {
width: 100%;
}

.spContWImg .spContTxt {
  max-width: 78%;
}

.spContImg {
  width: 20%;
}

.spContImage {
  width: 100%;
  max-width: 100%;
  max-height: 230px;
}

.spContHead {
  font-size: 1.3em;
}

.spContWImg {
  align-items: flex-start;
}

}

 @media only screen and (min-width: 769px) and (max-width: 913.98px) {

    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 49%;
      min-width: 49%;
      max-width: 49%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 49%;
        max-width: 49%;
        min-width: 49%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 6px;
        margin: .5%;
        height: 48px;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 32%;
          max-width: 32%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

      #searchDrop {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 40 !important;
        max-width: 85% !important;
        width: 85% !important;
        min-width: 85%;
        margin: 0;
        padding: 0px;
        z-index: 999;
        text-align: left;
        }

        #hits-products-ser .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 23%;
          min-width: 23%;
          display: inline-block;
          margin: 1%;
      } 
  }

  @media only screen and (min-width: 914px) and (max-width: 1059.98px) {

    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 32%;
      min-width: 32%;
      max-width: 32%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 32%;
        max-width: 32%;
        min-width: 32%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 6px;
        margin: .5%;
        height: 48px;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 32%;
          max-width: 32%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

      #searchDrop {
        display: flex;
        justify-content: center;
        position: absolute;
        top: 40 !important;
        max-width: 85% !important;
        width: 85% !important;
        min-width: 85%;
        margin: 0;
        padding: 0px;
        z-index: 999;
        text-align: left;
        }

  }


@media only screen and (min-width: 1060px) and (max-width: 1399.98px)  {

    .quoteDisplay {
    width: 100%;
    height: 186px;
    min-height: 186px;
    max-height: 186px;
    }


    .benefit_item {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      width: 30%;
      min-width: 30%;
      max-width: 30%;
      margin: 1%;
      margin-bottom: 30px;
      padding: 0;
      }


    .spContWImg .spContTxt {
      max-width: 75%;
    }

    #SocProofSS {
    width: 100%;
    background: #fff;
    height: 300px;
    max-height: 300px;
    overflow:hidden;
    padding: 0% 5%;
    margin: 30px 0px 15px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    }


    .mrWrap {
      width: 100%;
      height: auto;
      min-height: 300px;
      border-radius: 10px;
    }

    #SocProofSS .mrWrap .mrSlide { 
      width: 100%;
      padding: 6%;
      min-height: 300px;
      border-radius: 10px !important;
    }

    .unavDropUL {
      width: 100%;
      margin: 0;
      padding: 0%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      list-style: none;
  }



    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 49%;
      min-width: 49%;
      max-width: 49%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

    #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
    width: 49%;
    max-width: 49%;
    min-width: 49%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center !important;
    padding: 0;
    border-radius: 6px;
    margin: .5%;
    height: 48px;
    }

    #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 48%;
      max-width: 48%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center !important;
      padding: 1%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
    }

      #searchDrop {
      display: flex;
      justify-content: center;
      position: absolute;
      top: 40 !important;
      max-width: 45% !important;
      width: 45% !important;
      min-width: 45%;
      margin: 0;
      padding: 0px;
      z-index: 999;
      text-align: left;
      }

  }


@media only screen and (min-width: 1400px)   {

.benefit_item {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
width: 31%;
min-width: 31%;
max-width: 31%;
margin: 0% 1% 0% 1%;
margin-bottom: 30px;
padding: 0;
}

.spContWImg .spContTxt {
  max-width: 60%;
}

.spCont {
  width: 60%;
}

#SocProofSS {
width: 100%;
background: #fff;
height: 300px;
max-height: 300px;
overflow:hidden;
padding: 0% 5%;
margin: 30px 0px 15px 0px;
display: flex;
justify-content: center;
align-items: center;
}


.mrWrap {
  width: 100%;
  height: auto;
  min-height: 300px;
  border-radius: 10px;
}

#SocProofSS .mrWrap .mrSlide { 
  width: 100%;
  padding: 6%;
  min-height: 300px;
  border-radius: 10px !important;
}

}

@media only screen and (min-width: 1060px)  {

  .rs_right_text {
    width: auto;
    min-width: 60%;
    max-width: 100% !important;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 0%;
    }

    .rs_left_img {
      width: auto;
      min-width: 20%;
      max-width: 33% !important;
      height: 100%;
      max-height: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      z-index: 999;
      padding: 0;
      margin-right: 3%;
      }

      .limg {
        width: auto;
        max-width: 100%;
        height: 100%;
        max-height: 235px;
        }

        .spr_text {
          font-size: .98em;
          line-height: 1.27;
          font-weight: 500;
          color: #567639;
          max-width: 90%;
          width: 90%;
          padding: 0;
        }


        .rslide {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          position: relative;
          width: 100%
          max-width: 100%;
          padding: 0%;
          text-align: left;
          height: 300px;
          min-height: 300px;
          background: #95cd62;
          padding-top: 20px;
          padding-bottom: 20px;
          }
  
        .rslide_inner {
          max-width: 85%;
          width: 85%;
          min-width: 85%;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          margin: 0;
          margin-top: 20px;
          }



      .attrAndBtn {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

  .rtAttr {
    color: #dfffc2;
    font-size: .95em;
    margin-top: 10px;
    padding: 0;
    font-weight: 500;
    line-height: 1.1;
    max-width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    }

    .rtAttr .attr {
      margin-left: 3px;
      line-height: 1.3;
    }


  #spRotator {
    border-radius: 0px;
    height: 300px;
    overflow: hidden;
  }


      body {
      position: relative;
      }

      #sp_slides {
        width: 100%;
        padding: 0% 10% 0% 10%;
        height: 300px;
        background: #95cd62;
      }

      #spRotator .swiper-wrapper {
        height: 100%;
        margin: 0;
        padding: 0;
      }

      #spRotator .swiper-wrapper .swiper-slide {
        height: 300px;
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
      }

     


      .spr_headline {
        font-size: 1.5em;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 5px;
        color: #567639;
        max-width: 90%;
      }
    


      #topNavBar {
      display: flex;
      align-items: center;
      background: #000 !important;
      padding: 0 !important;
      margin: 0;
      height: 100%;
      }



      #search_btn img {
      width: 20px;
      height: 20px;
      padding: 0;
      margin: 0;
      }

      .navbar-brand img {
      max-width: 100%;
      margin: 0;
      padding: 0;
      }

     
      .footer_bottom {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: #000;
      }

      .footer_top {
        width: 100%;
        padding: 3% 10% 3% 10%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        }

        .footer_copyright {
          width: 50%;
          min-width: 50%
          height: 48px;
          font-size: .88em;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center;
          padding-left: 1%;
          font-weight: 600;
          }

          .footer_brand {
            width: 18%;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            }
            
            .footer_cont {
            width: auto;
            margin: 0%;
            margin-right: 80px;
            padding: 0;
            text-align: left;
            }
    
            .footer_logo {
              width: 75%;
              max-width: 75%;
              margin-right: 0;
              }

      .socnav {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: right;
      align-items: center;
      list-style-type: none;
      height: 48px;
      padding: 0;
      margin: 0;
      }

      .socnav li {
      max-width: 24px;
      width: 24px;
      min-width: 24px;
      display: inline-block;
      }

      .bi {
        max-width: 24px;
        max-height: 24px;
        border: none;
      }


      .socnav .nav-link {
      border: none;
      width: 48px;
      margin: 2%;
      }

      .footer_smlinks {
      display: inline-block;
      width: 30%;
      max-width: 30% !important;
      margin: 0;
      }


      #contact_btn {
      display: none;
      }

      #contact_btn_icon {
      display: inline-block;
      }

      #contact_btn {
      order: 2;
      }


      #navbarSupportedContent {
      order: 1;
      }




      #vaBtn {
        width: 60%;
      }
      
      #viewAll {
          padding: 1%;
          border-radius: 6px;
          color: #efefef;
          margin: 0px;
          font-size: .9em;
          font-weight: 700;
          border: 1px solid #919191;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          text-decoration: none;
          height: 30px;
          max-height: 30px;
          width: 100%;
          cursor: pointer;
      }

      #clBtn {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        color: #efefef;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        font-weight: 400;
        cursor: pointer;
      }

      .wperc10 {
        width: 15%;
        }
        .wperc15 {
        width: 25%;
        min-width: 25%;
        }
        
        .wperc20 {
          width: 30%;
        }
        
        .wperc25 {
          width: 35%;
        }
        
        .wperc30 {
          width: 40%;
        }
        
        .wperc33 {
          width: 33%;
        }
        
        .wperc40 {
          width: 50%;
        }
        
        .wperc50 {
          width: 60%;
        }
        
        .wperc66 {
          width: 66%;
        }
        
        .wperc100 {
          width: 100%;
        }
    
}


@media only screen and (min-width: 1060px) and (max-width: 1259.98px) {


.unistNav {
      position: relative;
      display: inline-block;   
      background: #000 !important;
      margin: 0;
      height: 136px;
      max-height: 136px;
      width: 100%;
      padding: 0;
  }

  #unavFlex {
      padding: 2% 5% 0px 10%;
      margin: 0;
      background: #000;
      height: 136px;
      max-height: 136px !important;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      width: 100%;
      border: none;
      flex-wrap: wrap; 
  }

.unavBrand {
min-height: 56px !important;
margin: 0px 0px -12px 0px;
padding: 0px 0px 0px 0px;
}

header {
    width: 100%;
    height: 136px;
    min-height: 136px;
}


  .unavCollapse {
      width: 100%;
      min-width: 100%;
      position: relative;
      margin: 0px 0px 10px 0px;
      padding: 0%;
      background: none;
      min-height: 48px;
      max-height: 48px;
      display: flex;
      align-items: center;
      order: 5;
  }



  
    .unavDropUL {
      width: auto;
      margin: 0;
      padding: 0%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      list-style: none;
  }


  .unav-item-last, .unav-item {
      width: auto;
      text-align: left;
      margin: 0px 30px 0px 0px;
      padding: 0;
      display: inline-block;
      height: 48px;
      min-height: 48px;
  }

  .unav-link {
      width: 100%;
      text-align: left;
      color: #fff;
      font-size: 1.1em;
      margin: 0;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 600;
      text-decoration: none;
      line-height: 1.2 !important;
      height: 48px;
      min-height: 48px;
      display: flex;
  align-items: center;
  }

}



@media only screen and (min-width: 1400px) and (max-width: 1699.98px) {

    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 49%;
      min-width: 49%;
      max-width: 49%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 32%;
        max-width: 32%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 4px;
        margin: .5%;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 32%;
          max-width: 32%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

        #searchDrop {
          display: flex;
          justify-content: center;
          position: absolute;
          top: 40 !important;
          max-width: 45% !important;
          width: 45% !important;
          min-width: 45%;
          margin: 0;
          padding: 0px;
          z-index: 999;
          text-align: left;
          }
  }



  @media only screen and (min-width: 1700px)  {

    #hits-products .ais-Hits .ais-Hits-list .ais-Hits-item {
      width: 32%;
      min-width: 32%;
      max-width: 32%;
      border: 1px solid #4e4d4d;
      border-radius: 6px;
      margin: .5%;
      }

      #hits-videos .ais-Hits .ais-Hits-list .ais-Hits-item {
        width: 32%;
        max-width: 32%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center !important;
        padding: 0;
        border-radius: 4px;
        margin: .5%;
        }

        #hits-applications .ais-Hits .ais-Hits-list .ais-Hits-item {
          width: 32%;
          max-width: 32%;
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: center !important;
          padding: 1%;
          border: 1px solid #4e4d4d;
          border-radius: 6px;
          margin: .5%;
        }

        #searchDrop {
          display: flex;
          justify-content: center;
          position: absolute;
          top: 40 !important;
          max-width: 45% !important;
          width: 45% !important;
          min-width: 45%;
          margin: 0;
          padding: 0px;
          z-index: 999;
          text-align: left;
          }
  }

  @media only screen and (min-width: 1400px) and (max-width: 1599.98px)  {

  .quoteDisplay {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }


  .rs_right_text {
    width: 40%;
    max-width: 40%;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin-left: 0%;
    }


  .wperc10 {
    width: 15%;
    }
    .wperc15 {
    width: 25%;
    }
    
    .wperc20 {
      width: 30%;
    }
    
    .wperc25 {
      width: 35%;
    }
    
    .wperc30 {
      width: 40%;
    }
    
    .wperc33 {
      width: 33%;
    }
    
    .wperc40 {
      width: 50%;
    }
    
    .wperc50 {
      width: 60%;
    }
    
    .wperc66 {
      width: 66%;
    }
    
    .wperc100 {
      width: 100%;
    }
  

}

@media only screen and (min-width: 1600px) and (max-width: 1899.98px)  {


.quoteDisplay {
  width: 100%;
  height: 216px;
  min-height: 216px;
  max-height: 216px;
}


.wperc10 {
  width: 15%;
  }
  .wperc15 {
  width: 20%;
  }
  
  .wperc20 {
    width: 25%;
  }
  
  .wperc25 {
    width: 30%;
  }
  
  .wperc30 {
    width: 35%;
  }
  
  .wperc33 {
    width: 33%;
  }
  
  .wperc40 {
    width: 45%;
  }
  
  .wperc50 {
    width: 55%;
  }
  
  .wperc66 {
    width: 66%;
  }
  
  .wperc100 {
    width: 100%;
  }

}

@media only screen and (min-width: 1900px) {
 
 
.quoteDisplay {
  width: 100%;
  height: 251px;
  min-height: 251px;
  max-height: 251px;
}

  .quoteTxt {
  font-size: 1.5em; 
}

.quoteAttr {
  font-size: 1.35em;
}

}