/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********
FONT FACE
**********/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/** Montserrat Regular **/
@font-face {
  font-family: "Montserrat Regular";
  font-style: normal;
  font-weight: 500 !important;
  src: url("../static/fonts/Montserrat-Regular.woff2") format("woff2"), url("../static/fonts/Montserrat-Regular.woff") format("woff");
  font-display: swap;
}
/** Montserrat Medium **/
@font-face {
  font-family: "Montserrat Medium";
  font-style: normal;
  font-weight: 500 !important;
  src: url("../static/fonts/Montserrat-Medium.woff2") format("woff2"), url("../static/fonts/Montserrat-Medium.woff") format("woff");
  font-display: swap;
}
/** Montserrat SemiBold **/
@font-face {
  font-family: "Montserrat Semi Bold";
  font-weight: 600;
  font-style: normal;
  src: url("../static/fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../static/fonts/Montserrat-SemiBold.woff") format("woff");
  font-display: swap;
}
/** Montserrat Bold **/
@font-face {
  font-family: "Montserrat Bold";
  font-weight: 700;
  font-style: normal;
  src: url("../static/fonts/Montserrat-Bold.woff2") format("woff2"), url("../static/fonts/Montserrat-Bold.woff") format("woff");
  font-display: swap;
}
/** Montserrat Extra Bold **/
@font-face {
  font-family: "Montserrat Extra Bold";
  font-style: 700;
  src: url("../static/fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../static/fonts/Montserrat-ExtraBold.woff") format("woff");
  font-display: swap;
}
/** Montserrat Light **/
@font-face {
  font-family: "Montserrat Light";
  font-style: 300;
  src: url("../static/fonts/Montserrat-Light.woff2") format("woff2"), url("../static/fonts/Montserrat-Light.woff") format("woff");
  font-display: swap;
}
/** Montserrat Thin **/
@font-face {
  font-family: "Montserrat Thin";
  font-style: 300;
  src: url("../static/fonts/Montserrat-Thin.woff2") format("woff2"), url("../static/fonts/Montserrat-Thin.woff") format("woff");
  font-display: swap;
}
.text-medium {
  font-family: "Montserrat Medium";
  font-style: normal;
  font-weight: 500 !important;
}

.text-semi-bold {
  font-family: "Montserrat Semi Bold";
  font-style: normal;
  font-weight: 600 !important;
}

.text-bold {
  font-family: "Montserrat Bold";
  font-style: normal;
  font-weight: 700 !important;
}

/*********************
BUTTON DEFAULTS
*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  color: #ffffff;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.14s ease-in-out;
}
.blue-btn:hover, .blue-btn:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.blue-btn:active {
  top: 1px;
}

.blue-btn {
  background-color: #003C71;
}
.blue-btn:hover, .blue-btn:focus {
  background-color: #00315d;
}
.blue-btn:active {
  background-color: #002e58;
}

.button-solid-orange, .button-solid-green, .button-outline-orange {
  padding: 0.5rem 1rem;
  border: 1px solid #FF6720;
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  cursor: pointer;
  text-decoration: none;
  background-color: #FF6720;
  color: #ffffff;
  border-radius: 0 !important;
  text-align: center !important;
  transition: background-color 15ms ease-in-out;
}
.button-solid-orange:hover, .button-solid-green:hover, .button-outline-orange:hover, .button-solid-orange :focus, .button-solid-green :focus, .button-outline-orange :focus {
  outline: none;
  text-decoration: none;
}

.button-outline-orange {
  background-color: transparent !important;
  border: 1px solid #FF6720 !important;
  color: #FF6720 !important;
  transition: background-color 15ms ease-in-out;
}
.button-outline-orange:hover, .button-outline-orange :focus {
  background-color: #ffffff !important;
  text-decoration: none !important;
}

.button-solid-green {
  background-color: #7dd667 !important;
}

.button-solid-orange:hover, .button-solid-orange :focus {
  background-color: #003C71 !important;
}

.cta-xs {
  font-size: 1.5rem;
  padding: 0.8rem 1.5rem;
  color: #ffffff !important;
  background-color: #FF6720 !important;
  text-decoration: none;
  border: 1px solid #FF6720 !important;
  white-space: nowrap;
  width: auto !important;
  border-radius: 0 !important;
  cursor: pointer;
  display: inline-flex;
  text-transform: capitalize;
  transition: all 250ms;
  letter-spacing: 0.028rem;
}
.cta-xs:hover {
  text-decoration: none;
  background-color: #ffffff !important;
  color: #FF6720 !important;
}

.cta-sm {
  font-size: 1.4rem;
  padding: 1rem 1.4rem;
  color: #ffffff !important;
  background-color: #FF6720 !important;
  text-decoration: none;
  border: 1px solid #FF6720 !important;
  white-space: nowrap;
  width: auto !important;
  border-radius: 0 !important;
  cursor: pointer;
  display: inline-flex;
  text-transform: capitalize;
  transition: all 250ms;
  letter-spacing: 0.028rem;
}
.cta-sm:hover {
  text-decoration: none;
  background-color: #ffffff !important;
  color: #FF6720 !important;
}
@media (max-width: 767px) {
  .cta-sm {
    font-size: 1.2rem;
    padding: 0.7rem 1rem;
    color: #ffffff !important;
    background-color: #FF6720 !important;
    text-decoration: none;
    border: 1px solid #FF6720 !important;
    white-space: nowrap;
    width: auto !important;
    border-radius: 0 !important;
    cursor: pointer;
    display: inline-flex;
    text-transform: capitalize;
    transition: all 250ms;
  }
  .cta-sm:hover {
    text-decoration: none;
    background-color: #ffffff !important;
    color: #FF6720 !important;
  }
}

.cta-lg {
  font-size: 1.6rem;
  padding: 2rem 3.6rem;
  color: #ffffff !important;
  background-color: #FF6720 !important;
  text-decoration: none;
  border: 1px solid #FF6720 !important;
  white-space: nowrap;
  width: auto !important;
  border-radius: 0 !important;
  cursor: pointer;
  display: inline-flex;
  text-transform: capitalize;
  transition: all 250ms;
  letter-spacing: 0.032rem;
}
.cta-lg:hover {
  text-decoration: none;
  background-color: #ffffff !important;
  color: #FF6720 !important;
}
@media (max-width: 767px) {
  .cta-lg {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    color: #ffffff !important;
    background-color: #FF6720 !important;
    text-decoration: none;
    border: 1px solid #FF6720 !important;
    white-space: nowrap;
    width: auto !important;
    border-radius: 0 !important;
    cursor: pointer;
    display: inline-flex;
    text-transform: capitalize;
    transition: all 250ms;
  }
  .cta-lg:hover {
    text-decoration: none;
    background-color: #ffffff !important;
    color: #FF6720 !important;
  }
}

.cta-align-left {
  justify-content: flex-start;
}

.cta-align-center {
  justify-content: center;
}

.cta-align-right {
  justify-content: flex-end;
}

.cta-fullwidth {
  width: 100% !important;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  line-height: 1.6rem;
}

.section {
  width: 100%;
}

.content {
  max-width: 1140px;
  width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
  display: flex;
  flex-basis: 100%;
}
@media (max-width: 1139px) {
  .content {
    padding: 0 2.5rem;
  }
}

#content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#main {
  width: 100%;
}

header #logo {
  height: 6.5rem;
}
header #logo a {
  width: 14rem;
  background-image: url(/wp-content/themes/sdsRefresh/library/images/logo-ChemTreat.svg);
}
@media (min-width: 1200px) {
  header #logo a {
    width: 16.5rem;
  }
}
@media (min-width: 1200px) {
  header #logo {
    height: 8.5rem;
  }
}
header.header {
  position: -webkit-sticky;
  position: sticky;
  display: block !important;
}

.title-section {
  background-color: #003C71;
}
.title-section .title-content {
  color: #ffffff;
  font-size: 3.6rem;
  line-height: 3.6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .title-section .title-content {
    font-size: 4.6rem;
    line-height: 4.6rem;
  }
}

/**************
 * Site Footer
 **************/
/**************
 * Site Footer
 **************/
footer#footer-main {
  border-top: 0.4rem solid #789D4A;
  background-color: #003C71;
  font-size: 1.4rem;
  color: #ffffff;
  text-transform: uppercase;
}
footer#footer-main .footer-main {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  footer#footer-main .footer-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
footer#footer-main .footer-main .footer-brand-col {
  -webkit-box: 0;
  -moz-box: 0;
  -webkit-flex: 0 0 100%;
  -ms-flexbox: 0 0 100%;
  flex: 0 0 100%;
  text-align: center;
}
@media (min-width: 992px) {
  footer#footer-main .footer-main .footer-brand-col {
    text-align: left;
    -webkit-box: 0;
    -moz-box: 0;
    -webkit-flex: 0 0 270px;
    -ms-flexbox: 0 0 270px;
    flex: 0 0 270px;
    margin-right: 10rem;
  }
}
footer#footer-main .footer-main .footer-brand-col .logo {
  display: inline-block;
  width: 17.9rem;
  height: 5.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  footer#footer-main .footer-main .footer-brand-col .logo {
    margin-bottom: 0;
    width: 27rem;
    height: 8.2rem;
  }
}
footer#footer-main .footer-main .footer-brand-col .logo svg tspan {
  font-family: "Montserrat Light";
}
footer#footer-main .footer-main .footer-nav {
  display: flex;
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 100%;
  -ms-flexbox: 1 1 100%;
  flex: 1 1 100%;
  flex-wrap: wrap;
}
footer#footer-main .footer-main .footer-nav .nav-1,
footer#footer-main .footer-main .footer-nav .nav-2 {
  -webkit-box: 0;
  -moz-box: 0;
  -webkit-flex: 0 0 100%;
  -ms-flexbox: 0 0 100%;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1,
footer#footer-main .footer-main .footer-nav .nav-2 {
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex: 1 1 50%;
    -ms-flexbox: 1 1 50%;
    flex: 1 1 50%;
    flex-direction: row;
    justify-content: space-between;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1,
footer#footer-main .footer-main .footer-nav .nav-2 {
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex: 1 1 50%;
    -ms-flexbox: 1 1 50%;
    flex: 1 1 50%;
    flex-direction: row;
  }
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget,
footer#footer-main .footer-main .footer-nav .nav-2 .widget {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1 .widget,
footer#footer-main .footer-main .footer-nav .nav-2 .widget {
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex: 1 1 100%;
    -ms-flexbox: 1 1 100%;
    flex: 1 1 100%;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1 .widget,
footer#footer-main .footer-main .footer-nav .nav-2 .widget {
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex: 1 1 50%;
    -ms-flexbox: 1 1 50%;
    flex: 1 1 50%;
  }
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block {
    justify-content: flex-end;
  }
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap {
  max-width: 14rem;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-cta, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-cta,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-cta,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-cta {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-cta, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-cta,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-cta,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-cta {
    margin-bottom: 2rem;
  }
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-cta .cta-xs, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-cta .cta-xs,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-cta .cta-xs,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-cta .cta-xs {
  font-family: "Montserrat Semi Bold";
  text-transform: uppercase;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-social ul, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-social ul,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-social ul,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-social ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-social ul li, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-social ul li,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-social ul li,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-social ul li {
  margin: 1rem 0 0;
  display: inline-block;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-social ul li a, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-social ul li a,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-social ul li a,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-social ul li a {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  font-size: 0;
}
@media (min-width: 768px) {
  footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_custom_html .connect-wrap .footer-social ul li a, footer#footer-main .footer-main .footer-nav .nav-1 .widget.widget_block .connect-wrap .footer-social ul li a,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_custom_html .connect-wrap .footer-social ul li a,
footer#footer-main .footer-main .footer-nav .nav-2 .widget.widget_block .connect-wrap .footer-social ul li a {
    width: 2.6rem;
    height: 2.6rem;
  }
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget ul,
footer#footer-main .footer-main .footer-nav .nav-2 .widget ul {
  margin: 0;
  padding-right: 4rem;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget ul li,
footer#footer-main .footer-main .footer-nav .nav-2 .widget ul li {
  margin: 2.5rem 0;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget ul li a,
footer#footer-main .footer-main .footer-nav .nav-2 .widget ul li a {
  color: #ffffff !important;
  text-transform: uppercase;
  font-family: "Montserrat Semi Bold";
  font-size: 1.4rem;
}
footer#footer-main .footer-main .footer-nav .nav-1 .widget ul li a:hover,
footer#footer-main .footer-main .footer-nav .nav-2 .widget ul li a:hover {
  color: #C1D3D6 !important;
}

footer#footer-utility {
  background-color: #789D4A;
  font-size: 1.2rem !important;
  color: #ffffff;
}
footer#footer-utility .footer-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  footer#footer-utility .footer-content {
    flex-wrap: no-wrap;
    flex-direction: row;
  }
}
footer#footer-utility .footer-content .footer-utility-copyright {
  text-align: center;
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 100%;
  -ms-flexbox: 1 1 100%;
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  footer#footer-utility .footer-content .footer-utility-copyright {
    text-align: left;
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex: 1 1 50%;
    -ms-flexbox: 1 1 50%;
    flex: 1 1 50%;
  }
}
footer#footer-utility .footer-content .menu-footer-utility-container {
  -webkit-box: 1;
  -moz-box: 1;
  -webkit-flex: 1 1 100%;
  -ms-flexbox: 1 1 100%;
  flex: 1 1 100%;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  footer#footer-utility .footer-content .menu-footer-utility-container {
    -webkit-box: 1;
    -moz-box: 1;
    -webkit-flex: 1 1 50%;
    -ms-flexbox: 1 1 50%;
    flex: 1 1 50%;
    margin-bottom: 0;
  }
}
footer#footer-utility .footer-content .menu-footer-utility-container ul.footer-utility-nav {
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  footer#footer-utility .footer-content .menu-footer-utility-container ul.footer-utility-nav {
    justify-content: flex-end;
  }
}
footer#footer-utility .footer-content .menu-footer-utility-container ul.footer-utility-nav li {
  border-right: 0.1rem solid #a7c87f;
  padding: 0.8rem 2rem;
}
footer#footer-utility .footer-content .menu-footer-utility-container ul.footer-utility-nav li:last-child {
  border: none;
  padding-right: 0;
}
footer#footer-utility .footer-content .menu-footer-utility-container ul.footer-utility-nav li a {
  color: #ffffff !important;
  text-transform: uppercase;
}
footer#footer-utility .footer-content .menu-footer-utility-container ul.footer-utility-nav li a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

section.content-section {
  padding: 0;
}

/*# sourceMappingURL=app.css.map*/