

.circut{
    margin-top:50px;
}

@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger:hover {
  opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block; }

.hamburger-inner::before {
  top: -10px; }

.hamburger-inner::after {
  bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg); }

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; }

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease; }

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0; }

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease; }

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0; }

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in; }

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent; }

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in; }

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent; }

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }

.hamburger--slider .hamburger-inner::after {
  top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0; }

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s; }

.hamburger--slider-r .hamburger-inner::after {
  top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0; }

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease; }

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease; }

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear; }

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity; }

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s; }

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; }

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear; }

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity; }

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s; }

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; }

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg); }

/*  MENU   ***************************************************/
.menu_wrapper {
  /*position: relative; Might need*/
  box-sizing: content-box;
  padding: 11px; }

.hamburger {
  position: absolute;
  top: 11px;
  right: 10px;
  padding: 10px 16px; }

.hamburger-box {
  width: 27px; }

.menu ul {
  border-bottom: 1px solid #0053a0; }

.menu ul li a {
  display: block;
  width: 100%;
  padding: 5px 5px;
  color: #0F0F0F;
  text-decoration: none; }

.menu ul li a.is-active {
  background-color: red; }

.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  width: 27px;
  height: 2px;
  background-color: #074783; }

header .menu_wrapper .menu {
  position: absolute;
  width: 100%;
  background-color: #F5F5F5;
  top: 71px;
  left: 0;
  padding: 12px 16px;
  box-sizing: border-box;
  display: none; }

header .menu_wrapper .menu.is-active {
  display: block;
  -webkit-animation-name: menu-slide-down;
  animation-name: menu-slide-down;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 10000; }

@-webkit-keyframes menu-slide-down {
  0% {
    opacity: 0;
    z-index: 0;
    -webkit-transform: translateY(-200px); }
  100% {
    opacity: 1;
    z-index: 1;
    -webkit-transform: translateY(0px); } }
@keyframes menu-slide-down {
  0% {
    opacity: 0;
    z-index: 0;
    transform: translateY(-200px); }
  100% {
    opacity: 1;
    z-index: 1;
    transform: translateY(0px); } }
header .menu_wrapper .menu ul {
  padding: 0;
  margin: 0;
  max-height: 500px;
  overflow-y: auto; }

header .menu_wrapper .menu ul ul {
  padding: 0 0 0 15px; }

header .menu_wrapper .menu ul li {
  text-decoration: none;
  list-style-type: none; }

.menu-accordian {
  position: relative; }

.menu-accordian .show-menu {
  display: block; }

/* Arrows for menu-accordian
_______________*/
.menu-accordian:after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(-90deg); }

.menu-accordian.arrow-down:after {
  content: '⌄';
  transform: unset; }

.menu .active .arrow-down:after {
  color: #fff; }

.menu a.active {
  background-color: #0053a0;
  color: #fff; }

/*WCAG in the menu*/
.menu .has-submenu.open > ul {
  position: relative;
  top: 0;
  left: 0;
  background-color: #0053a0;
  width: 100%;
  color: #fff;
  display: block;
  padding: 0; }

.menu .has-submenu.open > ul li {
  padding: 5px 0px; }

.menu .has-submenu.open > ul li a {
  color: #fff; }

.menu .has-submenu.open > ul li a:focus {
  color: #0053a0;
  background-color: #fff; }

/* 600
_______________________________________*/
@media only screen and (min-width: 600px) {
  .menu .has-submenu.open > ul {
    position: absolute;
    top: 44px; } }
/* 768
_______________________________________*/
@media only screen and (min-width: 768px) {
  .menu .has-submenu.open > ul,
  header .menu_wrapper > .menu > ul ul {
    width: 100%;
    z-index: 5; }

  .menu .has-submenu.open > ul li {
    overflow: hidden; }

  .menu .has-submenu.open > ul {
    position: relative;
    top: 0;
    width: 100%; } }
/* 769
_______________________________________*/
@media only screen and (min-width: 769px) {
  .menu .has-submenu.open > ul {
    position: absolute;
    top: 44px;
    width: 340px; } }
/* 900
_______________________________________*/
@media only screen and (min-width: 900px) {
  /* Menu
   ______________________________*/
  .hamburger {
    display: none; }

  header {
    overflow: visible; }

  header .menu_wrapper > .menu {
    position: relative;
    background-color: #fff;
    top: 10px;
    right: 0;
    padding: 0;
    display: block;
    /* width: 100%; */ }

  header .menu_wrapper > .menu > ul {
    display: flex;
    box-sizing: border-box;
    justify-content: flex-end;
    border-bottom: none; }

  header .menu_wrapper > .menu > ul > li {
    position: relative; }

  header .menu_wrapper .menu ul li a {
    font-size: 17px; }

  header .menu_wrapper .menu > ul > li > a {
    display: table-cell;
    /*max-width: 128px;*/
    text-decoration: none;
    height: 44px;
    padding: 6px 15px;
    color: #0053a0;
    vertical-align: middle;
    text-align: left; }

  .menu a.active {
    background-color: transparent; }

  header .menu ul li > a.active {
    border-bottom: 3px solid #0053a0; }

  header .menu ul li ul > a.active {
    background-color: red; }

  /* sub menu (Drop down)
  ______________________________________*/
  header .menu_wrapper > .menu > ul ul {
    display: none; }

  header .menu_wrapper > .menu > ul ul li a {
    color: #fff; }

  header .menu_wrapper > .menu > ul ul li a.active,
  header .menu_wrapper > .menu > ul ul li a:hover {
    color: #0053a0;
    background-color: #fff; }

  header .menu_wrapper .menu > ul > li > a:hover {
    border-bottom: 3px solid #0053a0; }

  header .menu_wrapper .menu ul {
    overflow: visible; }

  header .menu_wrapper > .menu > ul > li:last-of-type ul {
    left: unset;
    right: 0; }

  /* Sub Sub menu (Drop down 2)
  ________________________________________________________*/
  header .menu_wrapper > .menu ul ul li.open ul {
    left: 340px;
    display: block;
    position: absolute; }

  header .menu_wrapper > .menu ul ul li.open {
    background-color: #fff; } }
.menu-tabs-news,
.menu-tabs-rebates {
  background-color: #3B86FF;
  border-radius: 3px;
  margin: 0;
  padding: 0; }

.menu-tabs-news li,
.menu-tabs-rebates li {
  list-style: none;
  /* float: left; */
  position: relative;
  top: 0;
  margin: 0 1em;
  padding: .5em .0em;
  border-bottom-width: 0;
  white-space: unset;
  display: block;
  max-width: 100%; }

.menu-tabs-news li a,
.menu-tabs-rebates li a {
  color: #82aff0 !important;
  clear: both;
  line-height: 1.3;
  text-decoration: underline;
  font-weight: bolder;
  padding: .5em .0em; }

.menu-tabs-news li a.active,
.menu-tabs-rebates li a.active {
  color: #fff !important; }

/* 900
_______________________________________*/
@media only screen and (min-width: 900px) {
  .menu-tabs-news li,
  .menu-tabs-rebates li {
    display: inline-block;
    max-width: 25%; } }
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  /* 1 */ }

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: none; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre {
    white-space: pre-wrap !important; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
#equipment_or_service {
  display: none; }

#contractor_type .p_category {
  padding: 0;
  margin: 0; }

#contractor_type span.title {
  font-size: 14px;
  float: left; }

#contractor_type .p_category li {
  float: left;
  list-style-type: none; }

#contractor_type .p_category li:last-child span {
  display: none; }

.find_contractor .flex-40-60 > .flex-item:nth-child(odd) {
  margin-right: 20px; }

.find_contractor .flex-40-60 > .flex-item:nth-child(even) {
  border: 1px solid #18589A;
  border-radius: 5px;
  padding-top: 0; }

.find_contractor .bh-sl-filters-container {
  margin-bottom: 20px; }

.find_contractor select#category-filters {
  margin-bottom: 20px; }

li.store > div {
  line-height: 1.5; }

li.store .loc-website a {
  font-size: 14px; }

.ui-tabs {
  padding: 0; }

.ui-widget.ui-widget-content {
  border: none; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: unset;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: unset; }

.ui-widget-header {
  border: none;
  background: transparent;
  color: #707070;
  font-weight: bold; }

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none;
  background: none;
  font-weight: normal;
  color: #454545; }

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #707070;
  text-decoration: none;
  font-weight: bolder; }

.ui-tabs .ui-tabs-panel {
  padding: 0; }

.ui-accordion .ui-accordion-header {
  padding: .5em 3.5em .5em 0.7em; }

.ui-state-active .ui-icon {
  background-image: url("https://code.jquery.com/ui/1.12.1/themes/smoothness/images/ui-icons_222222_256x240.png"); }

.ui-minus {
  background-position: -48px -128px; }

/* 768
_______________________________________*/
@media only screen and (min-width: 768px) {
  .rebates-tabs > .ui-tabs-nav > li {
    max-width: 25%; }

  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: unset;
    padding: .5em 1em;
    text-decoration: none; }

  .ui-tabs .ui-tabs-nav ul {
    display: table-row; }

  .ui-tabs .ui-tabs-nav li {
    list-style: none;
    /*float: left;*/
    position: relative;
    top: 0;
    /*margin: 1px .2em 0 0;*/
    margin: .5em .5em;
    border-bottom-width: 0;
    white-space: unset;
    display: table-cell; }

  .ui-tabs .ui-tabs-nav li a {
    display: table-cell;
    vertical-align: middle; } }


html {
  height: 100%; }

ul, ol {
  /*list-style-position: inside;*/
  list-style-position: outside;
  padding: 0 0 0 20px;
  margin: 15px 0; }

ol {
  list-style-position: outside; }

ol li {
  margin-bottom: 10px; }

button.hamburger:focus {
  outline: none; }

strong {
  font-weight: bold; }

img {
  width: 100%; }

header img{
    width: inherit;
}

iframe {
  width: 100%; }

p {
  margin: 15px 0; }

p + p {
  margin-top: 0; }

.notice,
.note {
  font-style: italic;
  font-weight: bold; }

a {
  cursor: pointer; }

/* unvisited link */


address {
  font-style: normal; }

p.error {
  border: 1px solid red;
  padding: 10px;
  box-sizing: border-box; }

.highlight_form {
  border: 1px solid red; }

input#password {
  padding: 5px; }

/*BODY links*/
/* unvisited link */
body > .content a:link {
  color: #2E9FC2;
  text-decoration: none; }

body > .content a:link:hover {
  text-decoration: underline; }

/* visited link */
body > .content a:visited {
  color: #4D51AA; }

/* mouse over link */
body > .content a:hover {
  color: #00BAF2; }

/* selected link */
body > .content a:active {
  color: #00BAF2; }

/*footer links*/
/* unvisited link */

footer .header, footer .copyright{
    color: white;
}
#google-badge img{
    width: auto;
}
#google-badge,#apple-badge{
    display: inline-block;
    position: relative;
}
body > footer a:link {
  color: #FFFFFF;
  text-decoration: none; }

body > footer a:link:hover {
  text-decoration: underline; }

/* visited link */
body > footer a:visited {
  color: #FFFFFF; }

/* mouse over link */
body > footer a:hover {
  color: #EC6B1F; }

/* selected link */
body > footer a:active {
  color: #EC6B1F; }

#main_tabs > .ui-widget-header:first-of-type {
  background: #3B86FF; }

#main_tabs > .ui-widget-header:first-of-type a {
  color: #82aff0;
  clear: both;
  line-height: 1.3;
  text-decoration: underline;
  font-weight: bolder; }

.faq h3.ui-state-active {
  font-weight: bold; }

.its-time .flex-30-70 .flex-item.main-content li {
  list-style-type: none; }

#main_tabs > .ui-widget-header:first-of-type .ui-state-hover a,
#main_tabs > .ui-widget-header:first-of-type .ui-state-active a {
  color: #fff; }

/*Tables*/
.allbut-first tbody tr td:not(:first-of-type) {
  text-align: center;
  white-space: nowrap; }

table {
  width: 100%;
  border-collapse: collapse; }

table thead {
  background-color: #0a559e; }

table thead tr th span,
table thead tr th sup,
table thead tr th {
  color: #fff; }

table tbody tr:nth-of-type(even) {
  background-color: #ccc; }

table tbody tr:nth-of-type(odd) {
  background-color: #fff; }

table th,
table td {
  padding: 5px 10px; }

.desktop-only {
  display: none; }

.header-slider {
  margin-top: 20px; }

.header-slider1 {
  overflow: hidden;
  padding: 28px 0; }

.footnote {
  font-size: 14px; }

.news-date {
  font-size: 12px;
  font-weight: 200;
  font-style: italic; }

.slider_wapper {
  position: relative; }

.slick-arrow-container {
  position: absolute;
  top: 43%;
  width: 100%;
  padding: 0; }

.slick-arrow {
  position: absolute;
  z-index: auto;
  list-style: none;
  max-width: 35px;
  width: 35px; }

.slick-prev {
  left: 0; }

.slick-next {
  right: 0; }

.accordion_header_text {
  padding: 20px 0 20px; }

h3.ui-accordion-header span {
  position: absolute;
  top: 15px;
  right: 20px;
  border: 1px solid #ccc; }

.rebate h3 {
  font-size: 1.2em;
  margin: 5px 0; }

.accordion_icon_wrapper {
  margin: 0 20px 20px;
  float: left; }

.accordion_header_text_wrapper h3,
.accordion_header_text_wrapper p {
  margin: 0; }

/*Blocks*/
.block {
  box-sizing: border-box;
  overflow: hidden;
  clear: both;
  margin-bottom: 20px;
  max-width: 497px; }

.home-main-content .block:nth-child(2) {
  margin: 0; }

.block > .content-wrapper h1 {
  font-size: 16px; }

.block > .content-wrapper p {
  font-size: 14px; }

.block img {
  height: 100%;
  width: 100%; }

.bottom-blocks .content-wrapper {
  padding: 15px;
  color: #fff; }

.bottom-blocks .block,
.bottom-blocks .block h1,
.bottom-blocks .block p {
  color: #fff; }

.bottom-blocks .block.block-1 .content-wrapper {
  background-color: rgba(96, 96, 96, 0.9); }

.bottom-blocks .block.block-2 .content-wrapper {
  background-color: rgba(0, 83, 160, 0.9); }

/*BTN*/
.btn {
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  box-sizing: content-box;
  line-height: 1;
  display: block; }

.btn.btn-main {
  background-color: #EE6B00;
  color: #fff; }

.btn.btn-blue {
  background-color: #4FA9E2;
  color: #fff; }

.btn.btn-dark {
  background-color: #535353;
  color: #fff; }

.btn.btn-outline {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff; }

/*Main*/
.btn.btn-main:link {
  color: #FFFFFF; }

.btn.btn-main:visited {
  color: #FFFFFF; }

.btn.btn-main:hover {
  color: #212121; }

.btn.btn-main:active {
  color: #212121; }

/*Blue*/
.btn.btn-blue:link {
  color: #FFFFFF; }

.btn.btn-blue:visited {
  color: #FFFFFF; }

.btn.btn-blue:hover {
  color: #212121; }

.btn.btn-blue:active {
  color: #212121; }

/*Dark*/
.btn.btn-dark:link {
  color: #FFFFFF; }

.btn.btn-dark:visited {
  color: #FFFFFF; }

.btn.btn-dark:hover {
  color: #F2BA92; }

.btn.btn-dark:active {
  color: #F2BA92; }

/*Outline*/
.btn.btn-outline:link {
  color: #FFFFFF; }

.btn.btn-outline:visited {
  color: #FFFFFF; }

.btn.btn-outline:hover {
  color: #EC6B1F; }

.btn.btn-outline:active {
  color: #EC6B1F; }

#how_to_get_started .btn {
  width: 54%; }

#how_to_get_started {
  margin-top: 20px; }

.city {
  text-transform: capitalize; }

/* Toolbar
_______________________________________*/
.toolbar {
  padding: 5px; }

.toolbar div {
  color: #fff;
  display: inline-block; }

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

#contact-us-link {
  margin-right: 40px; }

.toolbar .social-icons {
  margin: 0 2px;
  width: 20px;
  height: 20px; }

.toolbar .social-icons-wrapper .social-icons a {
  display: block;
  padding: 2px; }

/* Header
_______________________________________*/
header {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(204, 204, 204, 0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(204, 204, 204, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(204, 204, 204, 0.5); }

/* Quick Links
_______________________________________*/
.quick_links {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #EFEFEF;
  padding: 15px;
  text-align: center; }

.quick_links h2 {
  font-size: 20px; }

.quick_links .flex-default {
  flex-wrap: wrap;
  justify-content: space-between; }

.quick_links .flex-default .flex-item {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  /*border: 1px solid #ccc;*/
  border-radius: 5px;
  margin-bottom: 30px; }

.quick_links .flex-default .flex-item h1 {
  font-size: 16px; }

.quick_links ul {
  list-style-type: none;
  padding: 0; }

.quick_links ul > li {
  margin-bottom: 5px; }

.quick_links ul li a {
  font-size: 13px; }

.quick_links .btn {
  position: relative;
  bottom: 0;
  width: 55%;
  margin: 0 auto;
  left: 0; }

.flex-spacer {
  height: 1px;
  background-color: #707070; }

/*Squares*/
.rebates-tabs > .ui-tabs-active {
  font-weight: bold; }

.squares {
  display: flex;
  flex-wrap: wrap; }

.ui-tabs .squares.ui-tabs-nav li {
  text-align: center;
  box-shadow: 0px 0px 5px #1e5799; }

.ui-tabs .squares.ui-tabs-nav li,
.ui-tabs .squares.ui-tabs-nav li a {
  /*width: 135px;*/
  /*height: 135px;*/
  /*min-width: 135px;*/
  /*min-height: 135px;*/
  margin: .5em;
  overflow: hidden;
  width: 100%;
  height: 163px;
  min-width: 260px;
  min-height: 123px;
  opacity: .7; }

.ui-tabs .squares.ui-tabs-nav li a {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  color: #707070;
  background-color: #fff;
  /*border: 1px solid #1e5799;*/
  cursor: pointer;
  position: relative; }

.ui-tabs .squares.ui-tabs-nav li a:hover {
  box-shadow: 5px 5px 5px #ccc;
  opacity: 1; }

.ui-tabs .squares.ui-tabs-nav li a:hover span:nth-of-type(2) {
  color: #fff;
  background-color: #3B86FF;
  opacity: 1;
  white-space: normal; }

.ui-tabs .squares.ui-tabs-nav li a span:first-of-type {
  background-color: #fff;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1; }

.ui-tabs .squares.ui-tabs-nav li a span:nth-of-type(2) {
  font-size: 16px;
  position: absolute;
  bottom: 0;
  z-index: 2;
  background-color: #fff;
  width: 100%;
  left: 0;
  min-height: 38%;
  padding: 10px;
  box-sizing: border-box;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center; }

.ui-tabs .squares.ui-tabs-nav .ui-state-active,
.ui-tabs .squares.ui-tabs-nav .ui-state-active a,
.ui-tabs .squares.ui-tabs-nav .ui-state-active span:nth-of-type(1) {
  opacity: 1; }

.ui-tabs .squares.ui-tabs-nav .ui-state-active span:nth-of-type(2) {
  opacity: 1;
  color: #fff;
  background-color: #3B86FF; }

/*fix the long ones and te first one*/
#ui-id-12 span:nth-of-type(2),
#ui-id-70 span:nth-of-type(2),
#ui-id-81 span:nth-of-type(2),
#ui-id-80 span:nth-of-type(2),
#ui-id-71 span:nth-of-type(2),
#ui-id-77 span:nth-of-type(2),
#ui-id-76 span:nth-of-type(2),
#ui-id-54 span:nth-of-type(2),
#ui-id-55 span:nth-of-type(2),
#ui-id-54 span:nth-of-type(2),
#ui-id-58 span:nth-of-type(2),
#ui-id-59 span:nth-of-type(2),
#ui-id-63 span:nth-of-type(2),
#ui-id-66 span:nth-of-type(2),
#ui-id-62 span:nth-of-type(2),
#ui-id-46 span:nth-of-type(2),
#ui-id-42 span:nth-of-type(2),
#ui-id-37 span:nth-of-type(2),
#ui-id-36 span:nth-of-type(2),
#ui-id-29 span:nth-of-type(2),
#ui-id-27 span:nth-of-type(2),
#ui-id-25 span:nth-of-type(2),
#ui-id-24 span:nth-of-type(2),
#ui-id-22 span:nth-of-type(2),
#ui-id-20 span:nth-of-type(2),
#ui-id-19 span:nth-of-type(2),
#ui-id-32 span:nth-of-type(2),
#ui-id-16 span:nth-of-type(2),
#ui-id-17 span:nth-of-type(2),
#ui-id-7 span:nth-of-type(2),
#ui-id-3 span:nth-of-type(2) {
  /*font-size: 10px;*/ }

.ui-tabs .ui-tabs-nav {
  padding: 0; }

/*One large main tab*/
.ui-tabs-active a#ui-id-82 {
  font-size: 14px; }

/*Map Plugin Start*/
input#bh-sl-address {
  border: 1px solid #707070;
  border-radius: 13px;
  padding: 10px 20px;
  width: 100%;
  margin: auto;
  box-sizing: border-box; }

input#bh-sl-address::placeholder {
  color: #BFBEBE; }

.input-wrapper {
  position: relative;
  margin-bottom: 25px; }

#bh-sl-submit {
  background: url("../img/icons/search-button.svg");
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -4px;
  border: none;
  right: -5px; }

#category-filters2,
#category-filters {
  list-style: none; }

.store-list {
  padding: 0;
  margin: 0;
  max-height: 500px;
  overflow: scroll; }

.store-list .store {
  list-style: none;
  padding: 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #18589A; }

.store-list .store {
  background-color: #fff; }

li.store.list-focus {
  background-color: #ccc !important; }

.loc-name,
.loc-addr,
.loc-phone {
  font-size: 14px !important; }

.loc-dist {
  font-style: italic;
  font-size: 12px; }

.loc-name {
  font-weight: bold; }

.st_category li,
.p_category li {
  font-size: 14px; }

/*Map Plugin End*/
.square.active {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+15,1e5a96+100 */
  background: #1e5799;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #1e5799 15%, #1e5a96 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #1e5799 15%, #1e5a96 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #1e5799 15%, #1e5a96 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#1e5a96',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 5px 5px 5px #ccc; }

.squares.active .square {
  background-color: red; }

.squares.active {
  opacity: .5; }

.squares.next {
  opacity: 1; }

.flex-item .squares:nth-of-type(2) {
  opacity: .6; }

.flex-item .squares:nth-of-type(3) {
  opacity: .4; }

/*End squares*/
/*Promo Items*/
.promo-item {
  border: 1px solid #707070;
  padding: 25px;
  margin-bottom: 25px;
  max-width: 150px; }

.promo-item h1 {
  color: #363636;
  font-size: 15px; }

.promo-item p {
  font-size: 14px;
  color: #A0A0A0; }

.promo-item .btn {
  border-radius: 2px; }

.promo-item.webinarvideo {
  min-width: 300px;
  width: 100%;
  padding: 25px 0; }

.promo-item.webinarvideo h5 {
  text-align: center;
  padding-bottom: 10px; }

/*Promo squares*/
promo-item.tab-square {
  padding: 0;
  clear: both;
  width: 100%;
  /* max-width: 133px; */
  /* max-width: 168px; */
  /* float: right; */
  /* width: 168px; */ }

.promo-item.tab-square a {
  text-decoration: none; }

.promo-item.tab-square span:nth-of-type(1) {
  background-color: #3B86FF; }

.promo-item.tab-square span:nth-of-type(2) {
  padding: 10px;
  display: block;
  text-align: center;
  font-size: 12px; }

.promo-item.tab-square:hover span:nth-of-type(2) {
  color: #fff;
  background-color: #3B86FF; }

/*badges*/
.badge_selection {
  display: block;
  padding: 10px;
  padding-top: 35px;
  box-sizing: border-box; }

.badge_selection .badge {
  border: 1px solid #BEBEBE;
  padding: 15px;
  box-sizing: border-box;
  border-top: 15px solid #003f9c;
  box-shadow: 0px 5px 20px 5px #EBEBEB;
  position: relative;
  margin: 30px 0;
  margin-top: 55px; }

.badge_selection .badge:first-of-type {
  margin-top: 0; }

.badge_selection .badge:last-of-type {
  margin-bottom: 0; }

.badge_selection .badge .badge_icon {
  width: 100px;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  top: -11%;
  margin-top: 0%; }

.badge_selection .badge_content {
  padding-top: 45px; }

.badge_selection .badge_content h2 {
  color: #3b3b3b; }

.badge_selection .badge_content p {
  color: #676767; }

.gradient_line {
  margin: 15px 0;
  height: 1px;
  border: 0;
  background: #3b3b3b;
  background: -webkit-gradient(linear, 0 0, 100% 0, from(#ffffff), to(#ffffff), color-stop(50%, #3b3b3b)); }

/*Layout*/
.flex-30-40-30,
.flex-30-70,
.flex-default,
.flex-50-50,
.flex-40-60 {
  display: block; }

.flex-40-60 {
  padding: 0px 15px; }

.flex-40-60 > .flex-item:nth-child(odd) {
  max-width: 100%; }

.flex-40-60 > .flex-item:nth-child(even) {
  max-width: 100%; }

/*Fix the side next to content*/
.flex-40-60 > .flex-item:nth-child(even) {
  max-width: 100%;
  padding: 0px;
  box-sizing: border-box; }

.home .flex-40-60 > .flex-item:nth-child(even) {
  padding: 27px 20px 20px 20px; }

.flex-40-60 > .flex-item {
  flex: 1 0 0;
  /*padding: 20px;*/
  box-sizing: border-box; }

.flex-50-50 > .flex-item:nth-child(odd) {
  max-width: 100%; }

.flex-50-50 > .flex-item:nth-child(even) {
  max-width: 100%; }

.flex-50-50 > .flex-item {
  flex: 1; }

.flex-space-between {
  justify-content: space-between; }

.flex-space-around {
  justify-content: space-around; }

.secondary .flex-30-70 > .flex-item {
  box-sizing: border-box;
  padding: 0px 15px 15px 15px;
  /*padding-top: 30px;*/ }

.flex-30-70 > .flex-item:nth-child(1) {
  max-width: 100%; }

.flex-30-70 > .flex-item:nth-child(2) {
  max-width: 100%; }

.flex-30-70 > .flex-item {
  flex: 1; }

.flex-30-40-30 > .flex-item:nth-child(1) {
  max-width: 100%; }

.flex-30-40-30 > .flex-item:nth-child(2) {
  max-width: 100%; }

.flex-30-40-30 > .flex-item:nth-child(3) {
  max-width: 100%; }

.flex-30-40-30 > .flex-item {
  flex: 1; }

.description {
  display: none; }

header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  overflow: visible;
  top: 0; }

header .toolbar-wrapper {
  background-color: #074783;
  color: #fff; }

div#logo_wrapper {
  /*position: absolute;*/
  /*padding: 9px 4px;*/
  /*left: 15px;*/
  /*z-index: 10000;*/
  /*width: 95px;*/
  width: 120px;
  min-width: 75px;
  padding: 15px;
  box-sizing: content-box; }

div#logo_wrapper a {
  /*display: block;*/ }

footer .footer_wrapper,
.content,
header .toolbar-wrapper .toolbar,
header .content-wrapper {
  max-width: 1280px;
  margin: 0 auto; }

header .content-wrapper {
  height: 100px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

#screen {
  display: none; }

#screen.is-active {
  display: block;
  width: 100%;
  height: 1000px;
  opacity: 0.7;
  background-color: #000;
  z-index: 1;
  position: fixed; }

.content {
  margin-top: 155px; }

footer {
  background-color: #333843;
  color: #fff; }

footer .footer_wrapper {
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  height: 100%; }

footer .footer_wrapper section {
  width: 45%; }

footer .footer_wrapper section h2 {
  font-weight: bold;
  color: #fff;
  margin: 20px 0;
  font-size: 10px; }

footer .footer_wrapper section ul {
  list-style-type: none; }

footer .footer_wrapper section ul li a {
  font-size: 10px; }

footer .legal {
  font-weight: bold;
  font-size: 10px;
  color: #fff; }

/* Tools
-_______________________________________*/
.padded_content {
  padding: 15px;
  box-sizing: border-box; }

/* Secondary pages template
______________________________________*/
.secondary .content {
  margin-top: 50px;
  margin-bottom: 25px; }

.secondary .content .flex-head .content-wrapper {
  position: relative;
  background-color: #0954A0;
  padding: 15px;
  text-align: center; }

.secondary .content .flex-head .content-wrapper h1 {
  margin-top: 0;
  color: #fff;
  font-size: 20px; }

.secondary .content .flex-head .content-wrapper p {
  color: #fff;
  font-size: 14px; }

.secondary .content .flex-head .just-title {
  justify-content: center;
  display: flex;
  align-items: center; }

/* END Secondary pages template
______________________________________*/
/*Up pointing*/
.tri-container {
  position: relative; }

.triangle {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 40px 20px 40px;
  border-color: transparent transparent #0954A0 transparent;
  position: absolute;
  top: -20px;
  left: 0; }

/* Video
__________________________________*/
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0; }

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute; }

video {
  object-fit: cover; }

/* 425
_______________________________________*/
@media only screen and (min-width: 425px) {
  .content {
    margin-top: 135px; } }
/* 426
_______________________________________*/
@media only screen and (min-width: 426px) {
  .ui-tabs .squares.ui-tabs-nav li,
  .ui-tabs .squares.ui-tabs-nav li a {
    margin: .5em;
    overflow: hidden;
    width: 260px;
    height: 163px;
    min-width: 260px;
    min-height: 123px; } }
/* 620
_______________________________________*/
@media only screen and (min-width: 620px) {
  .block img {
    float: left;
    width: 25%;
    height: 100%; }

  .block .content-wrapper {
    padding: 25px;
    float: right;
    width: 75%;
    box-sizing: border-box; }

  .flex-40-60 > .flex-item:nth-child(odd) {
    width: 100%;
    min-width: 57%; }

  /*Home page layout*/
  .home-main-content > .flex-40-60 {
    flex-direction: column; }

  .promo-item.webinarvideo {
    min-width: 300px;
    padding: 25px 0; }

  .flex-40-60 > .flex-item:nth-child(even) {
    padding: 20px; }

  /*badges*/
  .badge_selection {
    display: flex;
    justify-content: space-between;
    padding: 0;
    padding-top: 70px; }

  .badge_selection .badge {
    margin: 0 15px; }

  .badge_selection .badge:first-of-type {
    margin-left: 0; }

  .badge_selection .badge:last-of-type {
    margin-right: 0; } }
/* 768
_______________________________________*/
@media only screen and (min-width: 768px) {
  /*Promo squares*/
  .promo-item.tab-square {
    padding: 0;
    clear: both;
    max-width: 133px;
    max-width: 168px;
    float: right;
    width: 168px; }

  #how_to_get_started {
    margin-top: 0px; }

  .ui-tabs .squares.ui-tabs-nav li,
  .ui-tabs .squares.ui-tabs-nav li a {
    margin: .5em;
    overflow: hidden;
    width: 260px;
    height: 163px;
    min-width: 260px;
    min-height: 123px; }

  div#logo_wrapper {
    /*position: absolute;*/
    /*top: 8px;*/
    /*left: 15px;*/
    /*z-index: 10000;*/
    /*padding: 0;*/
    /*width: 95px;*/ }

  /*Right pointing*/
  .triangle-right {
    width: 0;
    height: 0;
    border-top: 159.5px solid transparent;
    border-bottom: 159.5px solid transparent;
    border-left: 80px solid #0954A0;
    position: absolute; }

  .desktop-only {
    display: block; }

  .mobile-only {
    display: none; }

  footer .footer_wrapper section ul li a,
  footer .footer_wrapper section h2 {
    font-size: 14px; }

  .flex-30-70 > .flex-item:nth-child(1) {
    max-width: 30%; }

  .flex-30-70 > .flex-item:nth-child(2) {
    max-width: 70%; }

  .flex-30-70 > .flex-item {
    flex: 1; }

  .bottom-blocks .block {
    height: 304px;
    max-width: 100%; }

  .bottom-blocks .block p,
  .bottom-blocks .block h1 {
    color: #fff; }

  .bottom-blocks .block.block-1 {
    background-image: url("../img/Case-Studies.jpg");
    background-repeat: no-repeat;
    background-size: cover; }

  .bottom-blocks .block.block-2 {
    background-image: url("../img/News-and-Events-Landing-Page.jpg");
    background-repeat: no-repeat;
    background-size: cover; }

  .promo-item {
    /*max-width:168px;*/
    /*float: right;*/
    /*width: 168px;*/ }

  /*.flex-40-60 > .flex-item > .promo-item {*/
  /*float: right;*/
  /*}*/
  .quick_links {
    background-color: #fff; }

  .quick_links .flex-default .flex-item h1 {
    font-size: 18px;
    height: 35px; }

  .quick_links h2 {
    margin-bottom: 24px;
    text-align: left; }

  .quick_links .icon {
    padding: 0 25px 25px 0; }

  /*.quick_links p {*/
  /*text-align: left;*/
  /*font-size:14px;*/
  /*}*/
  /*.quick_links a.btn {*/
  /*margin-bottom:32px;*/
  /*}*/
  .quick_links .btn {
    position: absolute;
    bottom: 30px;
    width: 55%;
    margin: 0 auto;
    left: 17%; }

  .flex-30-40-30,
  .flex-30-70,
  .flex-default,
  .flex-50-50,
  .flex-40-60 {
    display: flex; }

  .flex-30-70 {
    margin-top: 30px; }

  .flex-30-70 .flex-40-60 {
    box-sizing: border-box; }

  .flex-30-40-30 > .flex-item:nth-child(1) {
    max-width: 30%; }

  .flex-30-40-30 > .flex-item:nth-child(2) {
    max-width: 40%; }

  .flex-30-40-30 > .flex-item:nth-child(3) {
    max-width: 30%; }

  .flex-30-40-30 > .flex-item {
    flex: 1; }

  .flex-40-60 > .flex-item {
    /*padding: 15px;*/ }

  /* Secondary template
  _________________________________________________*/
  /* Flex Head
  _________________________________________________*/
  .secondary .content .flex-head {
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden; }

  .secondary .content .flex-head .content-wrapper h1 {
    font-size: 35px; }

  .secondary .content .flex-head .flex-item:nth-of-type(2) {
    text-align: left;
    padding: 35px;
    max-width: 30%; }

  .secondary .content .flex-head .flex-item {
    flex: 1; }

  .secondary .content .flex-head .flex-item:nth-of-type(1) {
    max-width: 70%; }

  /*_________________________________________________
   End Flex Head
  _________________________________________________*/
  .secondary .flex-30-70 > .flex-item:nth-child(1) {
    border-right: .25px solid #707070;
    padding-right: 35px; }

  .secondary .flex-30-70 > .flex-item:nth-child(2) {
    padding-left: 30px;
    padding-bottom: 30px; }

  .quick_links .flex-default .flex-item {
    width: 31%;
    padding: 32px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    text-align: left; }

  .flex-50-50 > .flex-item:nth-child(even) {
    max-width: 50%; }

  .flex-50-50 > .flex-item:nth-child(odd) {
    max-width: 50%; }

  footer .footer_wrapper section {
    width: 33%;
    padding: 0% 10%;
    box-sizing: border-box; } }
/* 1024
_______________________________________*/
@media only screen and (min-width: 1024px) {
  /*Home page layout*/
  .home-main-content > .flex-40-60 {
    flex-direction: row; }

  .flex-40-60 > .flex-item:nth-child(odd) {
    width: 80%;
    min-width: 57%; }

  .block img {
    float: left;
    width: 50%;
    height: 100%; }

  .block .content-wrapper {
    padding: 25px;
    float: right;
    width: 50%;
    box-sizing: border-box; }

  .home-main-content .block img {
    float: left;
    width: 35%;
    height: 100%; }

  .home-main-content .block .content-wrapper {
    padding: 0px;
    float: right;
    width: 59%;
    box-sizing: border-box; }

  .bottom-blocks .block {
    height: 270px; }

  div#logo_wrapper {
    /*position: absolute;*/
    /*top: 2px;*/
    /*left: 15px;*/
    /*z-index: 10000;*/
    /*padding: 0;*/
    /*width: 95px;*/ }

  /*badges*/
  .badge_selection {
    padding-top: 50px; } }
/* 1200
_______________________________________*/
@media only screen and (min-width: 1200px) {
  .block img {
    float: left;
    width: 40%;
    height: 108%; }

  .home-main-content .block img {
    float: left;
    width: 40%;
    height: 108%; }

  .home-main-content .block .content-wrapper {
    padding: 0 25px;
    float: right;
    width: 60%;
    box-sizing: border-box; }

  .home-main-content > .flex-40-60 {
    max-height: 450px; }

  .bottom-blocks .block {
    height: 231px; } }

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